@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --font1: "Nunito", sans-serif;
  --font2: "Poppins", sans-serif;
  font-size: 18px;
}
* {
  position: relative;
  margin: 0;
  padding: 0;
}
body {
  background: #000;
  color: #fff;
  font-family: var(--font1);
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 130%;
  position: relative;
}
a {
  color: #f5f5f5;
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  color: #7F7F7F;
  text-decoration: none;
}
img {
  max-width: 100%;
  transform: translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: initial !important;
  -webkit-transform-origin: 50% 50%;
}
svg {
  transform: translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
}
button{
  outline: none;
}
.invert {
  filter: invert(1);
}
.btn{
  border-radius: 5rem;
  padding: 0.5rem 2rem;
  font-size: 1rem;
}
.border-box{
  position: relative;
  padding: 1rem;
}
.border-box::after{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #7F7F7F;
  z-index: -1;
  clip-path: polygon(0 0, 20% 0, 20% 100%, 0% 100%);
  border-radius: 2px;
}
.border-box::before{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #7F7F7F;
  z-index: -1;
  clip-path: polygon(80% 0, 100% 0, 100% 100%, 80% 100%);
  border-radius: 2px;
}
.meta{
  display: none;
}
@media (min-width: 1200px){
  :root{
    font-size: 16px;
  }
  .container-xl{
      max-width: 1200px;
  }
}
@media (min-width: 1800px) {
  :root{
    font-size: 20px;
  }
  .container-xl{
    max-width: 1320px;
}
}
@media (max-width: 767px) {
  :root{
    font-size: 16px;
  }
  .mb-n1 {
      margin-bottom: -12px;
    }
}
@media (max-width: 375px) {
  :root{
    font-size: 14px;
  }
}

/* NAV */
.nav{
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  font-family: var(--font1);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  z-index: 100;
  transition: padding 0.3s;
}
.nav::after{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
  opacity: 0.85;
  border-bottom: solid 1px transparent;
}
.nav .logo{
  width: 280px;
  transition: all 0.3s;
}
.nav.min{
  padding: 1rem 0;
}
.nav.min .logo{
  width: 250px;
}
.nav > div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav .menu{
  margin-left: auto;
  display: flex;
  gap: 1rem;
}
.nav .menu .menu-item{
  border: none;
  display: block;
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #7f7f7f;
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s;
  min-width: 50px;
}
.nav .menu .menu-item a{
  color: #7f7f7f;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .menu .menu-item a::before{
  content: '';
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}
.nav .menu .menu-item a img{
  opacity: 0.6;
  transition: all 0.3s;
}
.nav .menu .menu-item a:hover img{
  opacity: 1;
}
.nav .menu .menu-item{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}
.nav .menu .menu-item::after{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #7F7F7F;
  z-index: -1;
  clip-path: polygon(0 0, 1rem 0, 1rem 100%, 0% 100%);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav .menu .menu-item::before{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #7F7F7F;
  z-index: -1;
  clip-path: polygon(calc(100% - 1rem) 0, 100% 0, 100% 100%, calc(100% - 1rem) 100%);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav .menu a.menu-item:hover::before,
.nav .menu a.menu-item:hover::after{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border: solid 1px #FFF;
}
.nav .menu a:hover,
.nav .menu .menu-item:hover {
  color: white;
}

button:active span::before {
  background: #2751cd;
}
@media (min-width: 1201px) {
    .nav .menu .menu-item.no-border{
        padding: 0.5rem 0.5rem;
    }
    .nav .menu .menu-item.no-border.mln1{
        margin-left: -1rem 
    }
    
    .nav .menu .menu-item.no-border::before,
    .nav .menu .menu-item.no-border::after
    {
        display: none;
    }
}
@media (max-width: 1200px) {
  .nav{
    padding: 1rem 0;
  }
  .nav .menu{
    position: fixed;
    display: flex;
    top:0;
    right: 0;
    position: fixed;
    top:0;
    right: 0;
    flex-direction: column;
    background: #000;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    z-index: 1;
    padding: 10rem 2rem 2rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: all 0.3s;
  }
  .nav .menu a{
    display: block;
  }
  .nav.open .menu{
    transform: translateX(0%);
  }
  .container-xl{
    padding-right: calc(var(--bs-gutter-x) * 2);
    padding-left: calc(var(--bs-gutter-x) * 2);
  }
  .nav .menu a {
    display: block;
    max-width: 200px;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  .nav .logo{
    width: 200px;
  }
  .nav.min .logo{
  width: 200px;
}
  .container-xl{
    padding-right: calc(var(--bs-gutter-x) * 1);
    padding-left: calc(var(--bs-gutter-x) * 1);
  }
  .nav .menu {
    gap: 1.5rem;
  }
  .nav .menu .menu-item{
    min-width: 80px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}
/* END NAV */

/* BURGER MENU */
.burger {
  display: none;
  width: 50px;
  height: 50px;
  font-size: 0px;
  position: relative;
  z-index: 3;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: transform 250ms ease-out;
  transform: rotate(180deg);
}
.burger span {
  width: 30px;
  height: 2px;
  background: #fff;
  transition: all 250ms ease-out;
}
.burger:before, .burger:after {
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  background: #fff;
  transition: all 250ms ease-out;
  will-change: transform;
}
.burger:before {
  transform: translateY(0px);
  top: 15px;
}
.burger:after {
  transform: translateY(0px);
  bottom: 15px;
}
.open .burger span {
  opacity: 0;
  width: 0;
}
.open .burger:after {
  transform: translateY(-9px) rotate(45deg);
}
.open .burger:before {
  transform: translateY(9px) rotate(-45deg);
}
@media (max-width: 1200px) {
  .burger {
    display: flex;
    justify-content: flex-start;
  }
}
/* END BURGER */

/* SLICK */
.slick-track, 
.slick-list{
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.slick-slide{
  margin: 0 0px;
}
.slick-list{
  margin-left: -15px;
  margin-right: -15px;
}
.slick-disabled {
  opacity:0.3;
}
.slick-disabled.slick-prev,
.slick-disabled.slick-next {
  background: transparent;
}
.slick-prev, 
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  z-index: 10;
  bottom: -4rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items:center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: 10px 10px 40px 0px rgba(0, 82, 255, 0.02);
  padding: 4px;
  border: solid 1px transparent;
  transition: all 0.5s;
} 
.slick-prev:hover, 
.slick-next:hover {
  border: solid 1px rgba(255, 255, 255, 0.2);
}
.slick-prev:before, 
.slick-next:before{
  line-height: 1;
  opacity: .75;
  color: white;
  width:100%;
  height:100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev{
  right: 3.5rem;
}
.slick-next{
  right: 0;
}
.slick-prev:before{
  content: ' ';
  background: url('../img/arrow.svg?vl') no-repeat center;
  background-size:contain;
  transform: rotate(180deg);
}
.slick-next:before{
  content: ' ';
  background: url('../img/arrow.svg?vl') no-repeat center;
  background-size:contain;
}


@media (max-width: 767px) {
  .slick-prev, 
  .slick-next {
    width: 3rem;
    height: 3rem;
    bottom: -4rem 
  }
}
/* END SLICK */

/* B1 */
.b-1{
  padding: 8rem 0;
  position: relative;
}
.b-1 .shadow{
  width: 1200px;
  height: 1200px;
  position: absolute;
  left: -700px;
  top: 400px;
  transform: rotate(80deg);
  z-index: -3;
}
.b-1 .o-1{
  width: 1200px;
  height: 1200px;
  position: absolute;
  left: -1000px;
  top: 0px;
  transform: rotate(80deg);
}
.b-1 .o-2{
  width: 300px;
  height: 300px;
  position: absolute;
  left: -50px;
  top: auto;
  bottom: -220px;
  transform: rotate(0deg);
  filter: blur(10px);
  opacity: 0.8;
}
.b-1 .o-1 span{
  animation: rotate infinite 300s linear;
}
.b-1 .o-2 span{
  animation: rotate2 infinite 200s linear;
}
.b-1 .title{
  font-family: var(--font2);
  font-size: 6rem;
  font-style: normal;
  font-weight: 900;
  line-height: 75%;
  text-transform: uppercase;
}
.b-1 .pos-1{
  position: absolute;
  top:0;
  left: 0;
  z-index: 2;
}
.b-1 .pos-2{
  position: absolute;
  bottom:0;
  right: 0;
  z-index: 2;
}
.b-1 .pos-3{
  position: absolute;
  bottom:6.5rem;
  right: 0;
  z-index: 3;
  height: 500px;
}
.b-1 .pos-3 .item{
  width: 3.5rem;
}
.b-1 .pos-3 a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  position: sticky;
  top: calc(100vh - 180px);
}
.b-1 .video-box{
  padding: 6.8rem 5.5rem 2.5rem 10rem;
  z-index: 0;
}
.b-1 .video-box > div{
  border-radius: 6px;
  overflow: hidden;
}
.b-1 .video-box .play{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-1 .video-box .play img{
  transition: all 0.3s;
}
.b-1 .video-box .play img:hover{
  transform: scale(1.5);
}
.updown{
  animation: updown infinite 3s ease-in-out;
}
@media (max-width: 992px) {
  .b-1 {
    padding: 150px 0 50px;
  }
  .b-1 .title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .b-1 .pos-1 {
    position: relative;
  }
  .b-1 .pos-1 .text{
    display: none;
  }
  .b-1 .video-box {
    padding: 0 3rem 5rem 0;
  }
  .b-1 .pos-2 {
    position: absolute;
    bottom: 0;
    right: auto;
    left: 0px;
    z-index: 2;
  }
  .b-1 .pos-2.title{
    display: flex;
    align-items: center;
    gap:1rem;
  }
  .b-1 .pos-3 {
    position: absolute;
    bottom: 7rem;
    right: 0;
    z-index: 3;
    height: 120px;
  }
  .b-1 .pos-3 .item {
    width: 2rem;
  }
  .b-1 .o-1{
    width: 1000px;
    height: 1000px;
    position: absolute;
    left: 150px;
    top: -260px;
    opacity: 0.5;
  }
}
/* END B1*/


/* B2 */
.b-2 {
  position: relative;
  padding: 150px 0;
}
.b-2 .shadow{
  width: 1800px;
  height: 1800px;
  position: absolute;
  left: auto;
  right: -1100px;
  top: 100px;
  transform: rotate(80deg);
  z-index: -1;
}
.b-2 .o-1{
  width: 1800px;
  height: 1800px;
  position: absolute;
  left: auto;
  right: -1100px;
  top: -300px;
  transform: rotate(-240deg);
}
.b-2 .o-1::after{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  transform: rotate(140deg);
}
.b-2 .o-1 span{
  animation: rotate2 infinite 300s linear;
}
.b-2 .title{
  font-family: var(--font2);
  font-size: 6rem;
  font-style: normal;
  font-weight: 900;
  line-height: 75%;
  text-transform: uppercase;
}
.b-2 .section-items .item{
  position: relative;
  display: none;
  flex-direction: column;
  color: #fff;
  padding: 12px;
}
.b-2 .section-items .item.filter {
    display: flex;
}
.b-2 .section-items .item .img{
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.b-2 .section-items .item .img::after{
  content: '';
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: url('/img/play-circle.svg') no-repeat center center;
  background-size: 64px;
  transition: all 0.3s;
  opacity: 0.3;
}
.b-2 .section-items .item:hover .img::after{
  content: '';
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: url('/img/play-circle.svg') no-repeat center center;
  background-size: 88px;
  opacity: 1;
}
.b-2 .section-items .item .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.b-2 .section-items .item::before{
  content: '';
  position: absolute;
  top:1px;
  left:1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: solid 2px transparent;
  transition: all 0.5s;
  z-index: -1;
  transform: scale(0.9);
  border-radius: 2px;
  clip-path: polygon(0 0, 20% 0, 20% 100%, 0% 100%);
}
.b-2 .section-items .item:hover::before{
  border: solid 2px #FFF;
  transform: scale(1);
}
.b-2 .section-items .item::after{
  content: '';
  position: absolute;
  top:1px;
  left:1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: solid 2px transparent;
  transition: all 0.5s;
  z-index: -1;
  transform: scale(0.9);
  border-radius: 2px;
  clip-path: polygon(80% 0, 100% 0, 100% 100%, 80% 100%);
}
.b-2 .section-items .item:hover::after{
  border: solid 2px #FFF;
  transform: scale(1);
}
.b-2 .section-items .item .subtitle{
  font-family: var(--font2);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  text-transform: uppercase;
}
.b-2 .section-items .item .text{
  font-size: 14px;
}

.b-2 .section-btn{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  flex-wrap: wrap;
}
.b-2 .section-btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background: transparent;
  color:#fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.b-2 .section-btn a::before{
  content: '';
  position: absolute;
  top:-4px;
  left:-4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: solid 1px #7F7F7F;
  transition: all 0.5s;
  z-index: -1;
  border-radius: 2px;
  clip-path: polygon(0 0, 1.5rem 0, 1.5rem 100%, 0% 100%);
}
.b-2 .section-btn a::after{
  content: '';
  position: absolute;
  top:-4px;
  left:-4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: solid 1px #7F7F7F;
  transition: all 0.5s;
  z-index: -1;
  border-radius: 2px;
  clip-path: polygon(calc(100% - 1.5rem) 0, 100% 0, 100% 100%, calc(100% - 1.5rem) 100%);
}
.b-2 .section-btn a:hover::before{
  border: solid 1px #fff;
  transform: scale(1);
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
}
.b-2 .section-btn a:hover::after{
  border: solid 1px #fff;
  transform: scale(1);
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
}
.b-2 .section-btn a.active{
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 992px) {
  .b-2 {
    position: relative;
    padding: 100px 0 50px;
  }
  .b-2 .title {
    font-size: 3rem;
  }
  .b-2 .section-btn a {
    padding: 0.5rem 0.5rem;
    font-size: 0.9rem;
    width: calc(50% - 1rem);
  }
  .b-2 .section-btn a.active {
    background: rgba(255, 255, 255, 0.3);
  }
  .b-2 .o-1{
    display: none;
  }
  .b-2 .section-items .item:hover::before {
    border: none;
    transform: scale(0.9);
  }
  .b-2 .section-items .item:hover::after {
    border: none;
    transform: scale(0.9);
  }
  .b-2 .section-items .item.slick-current::before {
    border: solid 1px #7f7f7f;
    transform: scale(1);
  }
  .b-2 .section-items .item.slick-current::after {
    border: solid 1px #7f7f7f;
    transform: scale(1);
  }
  .b-2 .section-items .item:hover .img::after{
      background-size: 64px;
      opacity: 0.3;
    }
}
/* END B2 */

/* B3 */
.b-3 {
  position: relative;
  padding: 150px 0;
}
.b-3 .title{
  font-family: var(--font2);
  font-size: 6rem;
  font-style: normal;
  font-weight: 900;
  line-height: 75%;
  text-transform: uppercase;
  padding-left: 12.5rem;
}
.b-3 .img-slide{
  width: 100%;
  border-radius: 2px;
}
.b-3 .img-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.b-3 .slick-list {
    margin-left: 0px;
    margin-right: 0px;
    overflow: hidden;
}
.b-3 .img-slide img.active{
  z-index: 1;
}
.b-3 .text.pos-1{
  position: absolute;
  top: 0;
  left: 1rem;
  line-height: 130%;
  font-size: 1rem;
}
.b-3 .flex-box-gap{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.b-3 .flex-box-gap > *{
    width: calc(50% - 1rem);
    padding: 0rem;
    font-family: var(--font2);
    text-transform: uppercase;
    font-size: 1.1rem;
}
@media (max-width: 1200px) {
  .b-3 .flex-box-gap {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
  }
  .b-3 .flex-box-gap > * {
    width: calc(50% - 0.5rem);
    padding: 0.5rem;
  }
}
@media (max-width: 992px) {
  .b-3 {
    position: relative;
    padding: 100px 0 50px;
  }
  .b-3 .title {
    font-size: 3rem;
    text-align: start!important;
     padding-left: 0;
  }
  .b-3 .text.pos-1 {
    top: 0;
    left: auto;
    right: 15px;
    line-height: 150%;
    font-size: 1rem;
    text-align: right;
  }
  .b-3 .flex-box-gap > * {
    width: 100%;
    padding: 0rem 1rem;
  }
  .b-3 .flex-box-gap {
    margin-top: 2rem;
  }
  .b-3 .slick-slide{
      max-height:300px;
      height: 300px;
  }
}
/* END B3 */

/* B4 */
.b-4 {
  position: relative;
  padding: 150px 0;
}
.b-4 .shadow{
  width: 1800px;
  height: 1800px;
  position: absolute;
  left: -1000px;
  top: 100px;
  transform: rotate(80deg);
  z-index: -3;
}
.b-4 .o-1{
  width: 2800px;
  height: 2800px;
  position: absolute;
  left: -1700px;
  top: -1100px;
  transform: rotate(-30deg);
  opacity: 0.5;
}
.b-4 .o-1 span{
  animation: rotate infinite 350s linear;
}
.b-4 .title{
  font-family: var(--font2);
  font-size: 6rem;
  font-style: normal;
  font-weight: 900;
  line-height: 75%;
  text-transform: uppercase;
}
.b-4 .text.pos-1{
  line-height: 150%;
  font-size: 1rem;
}
.b-4 .clients {
  padding: 100px 0 0;
}
.b-4 .clients .item{
  padding: 1rem;
  border: 1px solid #7f7f7f;
  height: 200px;
  padding: 2rem;
  margin: 0.5rem;
  border-radius: 6px;
  background: rgba(0,0,0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.b-4 .clients .item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slick-prev{
  right: auto;
  left: calc(50% - 3rem);
}
.slick-next{
  right: calc(50% - 3rem);
}
@media (max-width: 992px) {
  .b-4 {
    position: relative;
    padding: 100px 0 50px;
  }
  .b-4 .title {
    font-size: 3rem;
  }
  .b-4 .o-1{
    opacity: 0.2;
  }
}
/* END B4 */


/* B5 */
.b-5 {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}
.b-5 .title{
  font-family: var(--font2);
  font-size: 6rem;
  font-style: normal;
  font-weight: 900;
  line-height: 75%;
  text-transform: uppercase;
}
.b-5 .img{
  max-height: 500px;
  overflow: hidden;
  border-radius: 2px;
}
.b-5 .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b-5 .subtitle{
  font-family: var(--font2);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .b-5 {
    padding: 100px 0 150px;
  }
  .b-5 .title {
    font-size: 3rem;
  }
}
/* END B5 */


/* B6 */
.b-6 {
  position: relative;
  padding: 150px 0;
}
.b-6 .shadow{
  width: 1600px;
  height: 1600px;
  position: absolute;
  left:auto;
  right: -800px;
  top:-700px;
  transform: rotate(80deg);
  z-index: -3;
}
.b-6 .o-1{
  width: 1600px;
  height: 1600px;
  position: absolute;
  left:auto;
  right: -1100px;
  top:-800px;
  transform: rotate(327deg);
  opacity: 0.6;
}
.b-6 .o-2{
  width: 300px;
  height: 300px;
  position: absolute;
  left: auto;
  right: 30%;
  top: -300px;
  transform: rotate(0deg);
  filter: blur(10px);
  opacity: 0.8;
}
.b-6 .o-1 span{
  animation: rotate2 infinite 300s linear;
}
.b-6 .o-2 span{
  animation: rotate infinite 200s linear;
}
.b-6 .title{
  font-family: var(--font2);
  font-size: 6rem;
  font-style: normal;
  font-weight: 900;
  line-height: 75%;
  text-transform: uppercase;
}
.b-6 .flex-box-gap{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.b-6 .flex-box-gap > *{
  width: calc(50% - 1rem);
  padding: 1rem;
}
.b-6 .img img {
  background: #000;
}
.b-6 .form-box {
  padding: 0px 0 50px;
}
.b-6 .form-box .input span{
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #fff;
  width: 0%;
  transition: all 0.3s;
}
.b-6 .form-box .input input:focus-visible ~ span
{
  background: #fff;
  width: 100%;
}
.b-6 .form-box input{
  border-radius: 0px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: solid 1px #7f7f7f;
  padding: 1rem;
  width: 100%;
  color: #fff;
}
.b-6 .form-box textarea{
  background: transparent;
  outline: none;
  border: solid 1px #7F7F7F;
  padding: 1rem;
  width: 100%;
  color: #fff;
  border-radius: 4px;
}
.b-6 .form-box .input.error span{
  background: #ff0000;
}
.b-6 .form-box .input.error input:focus-visible ~ span
{
  background: #ff0000;
  width: 100%;
}
.b-6 .form-box .error input{
  border-bottom: solid 1px #ff0000;
  color: #ff0000;
}
.b-6 .form-box textarea.error{
  border: solid 1px #ff0000;
  color: #ff0000;
}

.b-6 .form-box textarea:focus-visible{
  border: solid 1px #FFF;
}
.error{
  animation: scale 0.3s ease-in-out;
}

.b-6 .form-box button {
  border: none;
  display: inline-flex;
  position: relative;
  padding: 1rem 2rem;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #7f7f7f;
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s;
  font-size: 1.5rem;
}
.b-6 .form-box button::after{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #7F7F7F;
  z-index: -1;
  clip-path: polygon(0 0, 20% 0, 20% 100%, 0% 100%);
  border-radius: 2px;
  transition: all 0.3s;
}
.b-6 .form-box button::before{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #7F7F7F;
  z-index: -1;
  clip-path: polygon(80% 0, 100% 0, 100% 100%, 80% 100%);
  border-radius: 2px;
  transition: all 0.3s;
}
.b-6 .form-box button:hover::before,
.b-6 .form-box button:hover::after{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border: solid 1px #FFF;
}
.b-6 .form-box button:hover {
  color: #fff;
}
.b-6 .text-1{
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 1rem;
}
.b-6 .text-2{
  font-family: var(--font2);
  font-size: 2rem;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .b-6 {
    position: relative;
    padding: 100px 0 0;
  }
  .b-6 .title {
    font-size: 3rem;
  }
  .b-6 .text {
    text-align: end;
    width: 100%;
  }
  .b-6 .text-2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
/* END B6 */

/* FOOTER */
.footer{
  position: relative;
  width: 100%;
  padding: 2rem 0;
  font-family: var(--font1);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  z-index: 100;
  transition: padding 0.3s;
}
.footer .logo{
  width: 300px;
  transition: all 0.3s;
}
.footer.min{
  padding: 1rem 0;
}
.footer.min .logo{
  width: 200px;
}
.footer > div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer .menu{
  display: flex;
  gap: 2rem;
}
.footer .menu a {
  border: none;
  display: block;
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #7f7f7f;
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s;
}
.footer .menu a::after{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #7F7F7F;
  z-index: -1;
  clip-path: polygon(0 0, 1rem 0, 1rem 100%, 0% 100%);
  border-radius: 2px;
  transition: all 0.3s;
}
.footer .menu a::before{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #7F7F7F;
  z-index: -1;
  clip-path: polygon(calc(100% - 1rem) 0, 100% 0, 100% 100%, calc(100% - 1rem) 100%);
  border-radius: 2px;
  transition: all 0.3s;
}
.footer .menu a:hover::before,
.footer .menu a:hover::after{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border: solid 1px #FFF;
}
.footer .menu a:hover {
  color: white;
}
@media (max-width: 1200px) {
  .footer .menu a {
    padding: 0.5rem 1rem;
  }
  .footer .logo {
    width: 250px;
    transition: all 0.3s;
  }
}
@media (max-width: 992px) {
  .footer .menu {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    width: 100%;
    text-align: center;
    max-width: 200px;
  }
  .footer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-direction: column;
  }
  .footer .logo {
    width: 200px;
    transition: all 0.3s;
  }
}
/* END FOOTER */

/* MODAL */
.modal-content::after{
  content: '';
  position: absolute;
  top:-1rem;
  left: -1rem;
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  border: solid 8px #fff;
  z-index: -1;
  clip-path: polygon(0 0, 20% 0, 20% 100%, 0% 100%);
  border-radius: 2px;
  transition: all 0.3s;
}
.modal-content::before{
  content: '';
  position: absolute;
  top:-1rem;
  left: -1rem;
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  border: solid 8px #fff;
  z-index: -1;
  clip-path: polygon(80% 0, 100% 0, 100% 100%, 80% 100%);
  border-radius: 2px;
  transition: all 0.3s;
}
.modal-content{
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.50);
  box-shadow: 0px 67px 83.1px 0px rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: none;
  padding: 2rem;
  padding-top: 2rem;
  margin: 2rem auto;
}
.modal-content iframe{
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.modal-content .title{
  font-family: var(--font2);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 1rem;
}
.modal-content .text{
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 120%;
}
.modal-content .btn-close{
  border: none;
  outline: none;
  position: absolute;
  right: 0;
  top:0;
  padding: 1rem;
  filter: invert(1);
  transition: all 0.3s;
}
.modal-content .btn-close:hover{
  transform: rotate(180deg);
}
@media (max-width: 992px) {
    .modal.show .modal-dialog {
        transform: none;
        padding: 2rem;
    }
    .modal-content::before,
    .modal-content::after{
        border: solid 3px #7F7F7F;
    }
}
@media (max-width: 767px) {
    .modal-content iframe{
      max-height: 200px;  
    }
    .modal-content{
        padding: 2.5rem 1rem;
    }
}
/* END MODAL */

/* OBJECT */
.object{
  position: absolute;
  top:0;
  left: 0;
  width: 1000px;
  height: 1000px;
  z-index: -2;
  overflow: hidden;
}
.object.o-2{
  z-index: -3;
}
.object span{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/img/object.png') no-repeat center;
  background-size: contain;
}
/* END OBJECT */

/* SHADOW */
.shadow{
  position: absolute;
  top:0;
  left: 0;
  width: 1000px;
  height: 1000px;
  z-index: -1;
  overflow: hidden;
}
.shadow span{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/img/shadow.svg') no-repeat center;
  background-size: contain;
}
/* END SHADOW */


@keyframes rotate{
  0%{
    transform: rotate(0deg)
  }
  100%{
    transform: rotate(360deg)
  }
}

@keyframes rotate2{
  0%{
    transform: rotate(0deg)
  }
  100%{
    transform: rotate(-360deg)
  }
}

@keyframes updown{
  0%{
    transform: translateY(0px)
  }
  50%{
    transform: translateY(80px)
  }
  100%{
    transform: translateY(0px)
  }
}

@keyframes scale{
  0%{
    transform: scale(1)
  }
  50%{
    transform: scale(1.1)
  }
  100%{
    transform: scale(1)
  }
}