:root {
    --yellow: #F7EA48;
	--white: #fff;
}
html { 
	scroll-behavior: smooth; 
}
h1, h2, h3, h4, h5, h6 {
    font-family: "MangoGrotesque", Sans-serif; 
}
body {
	font-family: "Nexa", Sans-serif;
}
a {
	text-decoration: none;
}
.primary-color {
	color: var(--yellow);
}

strong {
    font-weight: 800;
}
.big-h {
    font-size: 200px;
}

.footer-top{
  position:relative;
  z-index:5;
  text-align:center;
  margin-bottom:80px;
}
/*  */
.footer-top h4{
  font-size:40px;
  color:white;
  font-weight:100;
  text-transform:uppercase;
}

.footer-top .impact{
  display:inline-block;
  background:white;
  color:#111;
  padding:4px 18px;
  transform:rotate(-4deg);
  margin:0 8px;
  font-weight:100;
}

.footer-top .mail{
  margin-top:10px;
  display:block;
  color: var(--yellow);
  font-size:40px;
  text-decoration:none;
  font-weight:100;
}
/* Footer Logo Icons */
.big-logo:hover {
    transform: translateY(-100px) rotate(-2deg);
    color: #fff95c;
}
.big-logo{
  display:inline-block;
  cursor:pointer;
  transition:
  transform .700s cubic-bezier(.2,1,.3,1),
  color .3s;
}


/* BUTTON */
.glass-btn a{
    position:relative;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    cursor:pointer;
    transition:color .5s ease;
    box-shadow:
        0 8px 32px rgba(255,255,255,0.12),
        inset 0 1px 1px rgba(255,255,255,0.3);
}
.glass-btn a:focus {
    text-decoration: none;
	color: var(--white); !important;
}

/* BLACK BG ANIMATION */
.glass-btn a::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:0%;
    height:100%;
    background:var(--yellow);
    border-radius:60px;
    transition:width .5s ease;
    z-index:0;
}

/* TEXT */
.glass-btn a span{
    position:relative;
    z-index:2;
}

/* HOVER EFFECT */

.glass-btn a:hover::before{
    width:100%;
    left:0;
    right:auto;
}

.glass-btn a:hover{
    color:var(--white);;
    border-color:rgba(255,255,255,0.2);
}

  /* Custom Cursor */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}
  .cursor-follower {
    width: 40px; height: 40px;
    border: 1px solid rgba(232,240,25,0.4);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
  }
.scroll-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--yellow);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}
/* Media */
@media only screen and (max-width: 767px) {
	/*  */
.footer-top h4{
  font-size:25px;
}
.footer-top .mail{
  font-size:25px;
}
}