:root{
    --background-color: #31072B;
    --light-color: #F2F2F2;
    --secondary-color: #89002C;
}





*,
*::before,
*::after {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #31072B;
    
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
img {
    width: 100%;
}
.container {
    position: relative;
    z-index: 5;
    max-width: 92rem;
    background-color:transparent;
    margin: 0 auto;
    padding: 0 4rem;
}
/* Header */

header {
    width: 100%;
    background-color: var(--background-color);
    
}

nav {
    width: 100%;
    position: relative;
    z-index: 50;
}

nav .container{
    display: flex;
    justify-content: space-between;
    height: 6rem;
    align-items: center;
}

.logo {
    width: 160px;
    display: flex;
    margin-bottom: 1em;
    align-items: center;
  
    
}
.nav-list ul {
    display: flex;
}

.nav-list a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    
    color: var(--light-color);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1;
    transition: 0.3s;
}

.nav-list a:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.nav-list a.bn53 {
    border: solid 1px #F2F2F2;
    border-radius: 10px;
    background-color: var(--background-color);
    animation: bn53bounce 4s infinite;
    
}
.nav-list a.bn53:hover {
    border-color: var(--secondary-color);
    
}

.mobile-menu div {
    
    display: none;
    cursor: pointer;
    width: 32px;
    height: 2px;
    
    background: var(--light-color);
    margin: 8px;
    border-radius: 1px;
}

@keyframes bn53bounce {
    5%,
    50% {
      transform: scale(1);
    }
  
    10% {
      transform: scale(1);
    }
  
    15% {
      transform: scale(1);
    }
  
    20% {
      transform: scale(1) rotate(-5deg);
    }
  
    25% {
      transform: scale(1) rotate(5deg);
    }
  
    30% {
      transform: scale(1) rotate(-3deg);
    }
  
    35% {
      transform: scale(1) rotate(2deg);
    }
  
    40% {
      transform: scale(1) rotate(0);
    }
  }
  
@media (max-width: 999px) {

      .nav-list a.bn53 {
        color: var(--light-color);
        background: none;
        border: none;  
        animation: none;
      }

     .nav-list a {
        margin-top: 100px; 
        font-size: 18px;
        border-bottom: 2px solid rgba(0, 0,0, .09);
       
     } 
    
    .nav-list ul {
        
        position: absolute;
    top: 0vh;
    right: 0;
    width: 100vw;
    height: 150vh;
    background: var(--secondary-color);
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in;
    z-index: -1;
    
    }
    .nav-list li {
        margin-left: 0;
        opacity: 0;
        
    }
    .container {
      padding: 0px;
    }
    .logot {
      width: 100%;
      margin-left: 10px;
    }
    
    .mobile-menu div {
        transition: 0.3s;
        display: block;
        justify-content: space-between;
        margin-left: 7rem;
        
    }
    
    .mobile-menu div {
        transition: 0.3s;
        display: block;
        justify-content: space-between;
        margin-left: 16rem;
        
    }
    .nav-list.active ul {
        
        transform: translateY(0%);
    }


    @keyframes navLinkFade {
        from {
          opacity: 0;
          transform: translateY(-100px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .mobile-menu.active .line1 {
        transform: rotate(-45deg) translate(-8px, 8px);
      }
      
      .mobile-menu.active .line2 {
        opacity: 0;
      }
      
      .mobile-menu.active .line3 {
        transform: rotate(45deg) translate(-5px, -7px);
      }

}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    border: none;
    background-color: var(--secondary-color);
    right: 20px;
    display: none;
  }

  #btn-back-to-top:hover {
      background-color: #cf1f57;
  }

/* .cursor {
    position: fixed;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 999 ;
    background: var(--light-color);
    transition: 0.1s;
    user-select: none;
    pointer-events: none;
    mix-blend-mode: difference;

    
}
.cursor-follower {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    z-index: 998;
    transition: 0.15s;
    user-select: none;
    pointer-events: none;
    transform: translate(-20px, -20px);
    top: -8px;
    left: -8px;
    mix-blend-mode: difference;
} */

.motionblur {
    position: relative;
    width: 60px;
    height: 20px;
    animation: slide 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.line {
    position: absolute;
    left: calc(50% - 50px);
    width: 100px;
    height: 5%;
    background: #f2f2f2;
    animation: slide 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.line::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, rgba(242, 242, 242, 0.5) 50%, rgba(242, 242, 242, 0) 100%);
    transform-origin: 0 0;
    animation: scale 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) -1.5s infinite;
}
.line::after {
    content: '';
    position: absolute;
    left: -100px;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 0.5) 50%);
    transform-origin: 100% 0;
    animation: scale 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
@keyframes scale {
    0% {
        transform: scale3d(0.5, 1, 1);
   }
    30% {
        transform: scale3d(0.8, 1, 1);
   }
    55% {
        transform: scale3d(0.5, 1, 1);
   }
    100% {
        transform: scale3d(0.5, 1, 1);
   }
}
@keyframes slide {
    0% {
        transform: translate3d(-30px, 0, 0);
   }
    100% {
        transform: translate3d(30px, 0, 0);
   }
}







.terms-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
 
.title h1 {
    font-weight: 700;
    color: var(--light-color);
    margin: 0px 15px;
}
.title {
    display: flex;
    justify-content: center;
    padding: 8rem;
    align-items: center;
}

.terms_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
}

.subtitle {
    color: var(--light-color);
    font-weight: 500;
    margin: 0 auto;
    padding: 0.5rem 4rem;
}
.desc {
    color: var(--light-color);
    font-weight: 200;
    margin: 0 auto;
    padding: 0.5rem 4rem;
}
.erin {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0px -80px;
  }
  .erin p{
    text-decoration: none;
    font-weight: 300;
    color: var(--light-color);
  }
  .erin a{
   
    font-weight: 600;
    color: var(--light-color);
  }

.footer {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    margin-top: 5em;
    padding: 50px;
    border-radius: 25px 25px 0px 0px ;
    color: var(--light-color);
    background: var(--secondary-color);
}

.footer > *{
    flex: 1 100%
}
.l-footer {
    margin-right: 1.25em;
    margin-bottom: 2em;
}
.f-logo {
    max-width:50%;
max-height:50%;
width: auto;
height: auto;
}
.footer h2 {
    font-weight: 800;
    font-size: 16px;
}
.footer p {
    font-weight: 300;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer li {
    line-height: 2em;
}

.footer a {
    text-decoration: none;
    color: var(--light-color);
    font-weight: 300;
}
.r-footer {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
}

.r-footer > *{
    flex: 1 50%;
    margin-right: 1.25em;
    
}

.box a {
    text-decoration: none;
}

.h-box {
    column-count: 1;
    column-gap: 1.25em;
}
.b-footer {
    text-align: center;
    color: var(--light-color);
    padding-top: 50px;
    font-weight: 200;
}
.l-footer p {
padding-right: 20%;
color: var(--light-color);

}

/* Footer responsivo */

@media screen and (min-width:600px) {
    .r-footer > *{
        flex: 1;
    }
    .features {
        flex-grow: 0.8;
    }
    .l-footer {
        flex: 1 0px;
    }
    .r-footer {
        flex: 2 0px;
    }
}

body {
    width:100%;
    height: 100%;
}
