/* Fonts */

@font-face {
  font-family: 'ttrunstrialblack';   
  src: url('../fonts/ttrunstrialblack.woff2') format('woff2'),
      url('../fonts/ttrunstrialblack.woff') format('woff'),
      url('../fonts/ttrunstrialblack.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'ttrunstrialbold';   
  src: url('../fonts/ttrunstrialbold.woff2') format('woff2'),
      url('../fonts/ttrunstrialbold.woff') format('woff'),
      url('../fonts/ttrunstrialbold.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}


@font-face {
  font-family: 'ttrunstrialdemibold';   
  src: url('../fonts/ttrunstrialdemibold.woff2') format('woff2'),
      url('../fonts/ttrunstrialdemibold.woff') format('woff'),
      url('../fonts/ttrunstrialdemibold.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}



@font-face {
  font-family: 'ttrunstrialextrabold';   
  src: url('../fonts/ttrunstrialextrabold.woff2') format('woff2'),
      url('../fonts/ttrunstrialextrabold.woff') format('woff'),
      url('../fonts/ttrunstrialextrabold.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'ttrunstrialextralight';   
  src: url('../fonts/ttrunstrialextralight.woff2') format('woff2'),
      url('../fonts/ttrunstrialextralight.woff') format('woff'),
      url('../fonts/ttrunstrialextralight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}


@font-face {
  font-family: 'ttrunstriallight';   
  src: url('../fonts/ttrunstriallight.woff2') format('woff2'),
      url('../fonts/ttrunstriallight.woff') format('woff'),
      url('../fonts/ttrunstriallight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}


@font-face {
  font-family: 'ttrunstrialmedium';   
  src: url('../fonts/ttrunstrialmedium.woff2') format('woff2'),
      url('../fonts/ttrunstrialmedium.woff') format('woff'),
      url('../fonts/ttrunstrialmedium.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}


@font-face {
  font-family: 'ttrunstrialregular';   
  src: url('../fonts/ttrunstrialregular.woff2') format('woff2'),
      url('../fonts/ttrunstrialregular.woff') format('woff'),
      url('../fonts/ttrunstrialregular.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}



@font-face {
  font-family: 'ttrunstrialthin';   
  src: url('../fonts/ttrunstrialthin.woff2') format('woff2'),
      url('../fonts/ttrunstrialthin.woff') format('woff'),
      url('../fonts/ttrunstrialthin.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}


@font-face {
  font-family: 'ttrunstrialvariableroman';   
  src: url('../fonts/ttrunstrialvariableroman.woff2') format('woff2'),
      url('../fonts/ttrunstrialvariableroman.woff') format('woff'),
      url('../fonts/ttrunstrialvariableroman.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer{
  
  background: #101010;
  width: 100%;
  bottom: 0;
  padding-bottom: 48px;
  left: 0;
}
footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  
}
footer .footer-content{
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 20px 40px;
}
footer .footer-content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.footer-content .top .logo-details{
  color: #ffffff;
  font-size: 30px;
  font-family: 'firago-bold';
}
.footer-content .top .media-icons{
  display: flex;
}
.footer-content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 3px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}




section .footer-content{
  width: 75%;
  margin: 0px auto;
}


footer .footer-content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
}
footer .footer-content .link-boxes .box{
  width: calc(100% - 100px);
}
.footer-content .link-boxes .box .link_name{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #ffffff;
}
.footer-content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.footer-content .link-boxes .box li a{
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.4s ease;
  font-family: 'ttrunstrialthin';
}
.footer-content .link-boxes .box li a:hover{
  color: #fd42ff;
  
}
.footer-content .link-boxes .input-box{
  margin-right: 55px;
}
.link-boxes .input-box input{
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #140B5C;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
  color: #AFAFB6;
  font-size: 16px;
}
.link-boxes .input-box input[type="button"]{
  background: #fff;
  color: #140B5C;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
  opacity: 1;
}
footer .bottom-details{
  width: 100%;
  background: #0F0844;
}
footer .bottom-details .bottom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}



.footer-facebook, .footer-tiktok, .footer-instagram {
  width: 20px;
}




.footer-facebook:hover {
  filter: invert(46%) sepia(35%) saturate(6971%) hue-rotate(274deg) brightness(104%) contrast(108%);
  transition: all 0.3s ease;
}


.footer-tiktok:hover {
  filter: invert(46%) sepia(35%) saturate(6971%) hue-rotate(274deg) brightness(104%) contrast(108%);
  transition: all 0.3s ease;
}


.footer-instagram:hover {
  filter: invert(46%) sepia(35%) saturate(6971%) hue-rotate(274deg) brightness(104%) contrast(108%);
  transition: all 0.3s ease;
}




@media (max-width: 900px) {
  footer .footer-content .link-boxes{
    flex-wrap: wrap;
  }

  footer .footer-content{
    
    
    padding-top: 30px;
    padding-bottom: 0px;
    padding-left: 25px;
    padding-right: 25px;
  }
  
}
@media (max-width: 700px){
 

  footer{
    position: relative;
    
  }
  .footer-content .top .logo-details{
    font-size: 26px;
  }
  .footer-content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
  }

  .footer-content .link-boxes .box li{
    list-style: none;
    font-family: 'firago-regular';
      margin: 3px 0;
      list-style: none;
      line-height: 16px;
  }



  footer .footer-content .link-boxes .box{
    margin-left: 1px;
  }
  
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }

footer .logo-photo {

  width: 170px;
}

.footer-facebook {

  width: 23px;

}

.footer-tiktok {

  width: 23px;

}

.footer-instagram {

  width: 23px;

}


.footer-content .link-boxes .box li a{
  color: #ffffff;
  margin: 0px 0;
  list-style: none;
  font-size: 13px;
  line-height: 2px;
  opacity: 0.7;
  transition: all 0.4s ease;
  font-family: 'firago-regular';
}
.footer-content .link-boxes .box li a:hover{
  opacity: 1;
  
}

footer .footer-content .link-boxes .box{
  width: calc(100% / 2 - 0px);
}





@media (max-width: 520px){
  footer::before{
    
  }
  footer .footer-content .top{
    flex-direction: column;
  }
  .footer-content .top .media-icons{
    margin-top: 16px;
  }
  footer .footer-content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  



}




