: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%);
    }

    .j-img {
        width: 80%;
    }


.j-img img {
    opacity: 0.4;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    transform-origin: 50% center;
}



    @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);
      }
     
    
}

/* media query end */

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12rem;
}
.title h1 {
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 25px;
}
.works-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8rem;
    flex-direction: column;
}
.prices-port h2 {
   font-size: 1.3rem;
   margin-top: 10px;
   font-weight: 600;
   color: var(--light-color);
}
.j-img {
    margin: 1em 10em;
    
}
.j-img {
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}
.j-img img {
    opacity: 0.4;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    transform-origin: 50% center;
}

.j-img:hover img {
    opacity: 0.8;
    transform: scale(1.2);
} 

/* .j-img:hover  {
    transform: translateX(-1.75rem);
} */


/* input[type=radio] {
    position: absolute;
    visibility: hidden;
    display: none;
    
}
label {
    color: #9a929e;
    display: inline-block;
    
    font-weight: 400;
    padding: 5px 20px;
    margin-right: 0px;
}
input[type=radio]:checked + label {
    color: #f2f2f2;
    background: #89002c;
}
label + input[type=radio] + label {
    border-left: solid 2px #f2f2f2;
}
.radio-group {
    border: solid 2px #f2f2f2;
    display: inline-block;
    margin: 20px;
    border-radius: 7px;
    overflow: hidden;
} */
.filter {
    display: flex;
    justify-content: center;
    
}

.bn54 {
    position: relative;
    outline: none;
    text-decoration: none;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-left: 10px;
    height: 40px;
    width: 130px;
    opacity: 1;
    background-color: var(--light-color);
    border: none;
  }
  
  .bn54 .bn54span {
    
    color:var(--background-color);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.7px;
  }
  
  .bn54:hover {
      
    animation: bn54rotate 0.7s ease-in-out both;
  }
  
  .bn54:hover .bn54span {
      
    animation: bn54storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
  }
  
  @keyframes bn54rotate {
    0% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
    25% {
      transform: rotate(3deg) translate3d(0, 0, 0);
    }
    50% {
      transform: rotate(-3deg) translate3d(0, 0, 0);
    }
    75% {
      transform: rotate(1deg) translate3d(0, 0, 0);
    }
    100% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
  }
  
  @keyframes bn54storm {
    0% {
      transform: translate3d(0, 0, 0) translateZ(0);
    }
    25% {
      transform: translate3d(4px, 0, 0) translateZ(0);
    }
    50% {
      transform: translate3d(-3px, 0, 0) translateZ(0);
    }
    75% {
      transform: translate3d(2px, 0, 0) translateZ(0);
    }
    100% {
      transform: translate3d(0, 0, 0) translateZ(0);
    }
  }



.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);

}

#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;
  }




.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);
  }
/* .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;
} */


/* 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;
    }
}


