@import '../../node_modules/swiper/swiper-bundle.min.css';
@font-face {
  font-family: Nohemi;
  src: url(fonts/Nohemi.otf);
}
@font-face {
  font-family: Nohemi-Regular;
  src: url(fonts/Nohemi-Thin.otf);
}
@font-face {
  font-family: Orbitron;
  src: url(fonts/Orbitron.ttf);
}
@font-face {
  font-family: "Robot Dreamer";
  src: url(fonts/RobotDreamer.otf);
}
.table-responsive {
  padding-bottom: 10px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #b1b1b1;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #888888;
}

.site-container {
  width: 1620px;
  margin: auto;
}
@media screen and (max-width: 1650px) {
  .site-container {
    width: 1420px;
  }
}
@media screen and (max-width: 1450px) {
  .site-container {
    width: 1220px;
  }
}
@media screen and (max-width: 1250px) {
  .site-container {
    width: 1020px;
  }
}
@media screen and (max-width: 1150px) {
  .site-container {
    width: 900px;
  }
}
@media screen and (max-width: 950px) {
  .site-container {
    width: 95%;
  }
}

.primary-btn {
  color: #fff;
  font-family: "Nohemi-Regular";
  font-size: 17px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 24px;
  border: 0.3px solid #fff;
  background: none;
  padding: 10px 15px;
  outline: 0;
  display: block;
  text-align: center;
}

.btn-features {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  border-radius: 12.264px;
  background: #9dba9a;
  padding: 15px 20px;
  color: #040405;
  font-family: "Orbitron";
  font-size: 15.828px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .btn-features {
    padding: 10px 15px;
    font-size: 13px;
  }
}
.btn-features svg {
  margin-left: 10px;
}

.curve {
  width: 100%;
  position: relative;
  z-index: 5;
}
.curve svg {
  width: 100%;
}

.head h1 {
  color: #9dba9a;
  font-family: "Robot Dreamer";
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 1450px) {
  .head h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1250px) {
  .head h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .head h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 550px) {
  .head h1 {
    font-size: 35px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #050505;
}

nav {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
nav.animated .inner {
  transform: translateY(0);
}
nav .inner {
  transition: all 2s;
  transform: translateY(-1000%);
  width: 1700px;
  margin: auto;
}
@media screen and (max-width: 1730px) {
  nav .inner {
    width: 1500px;
  }
}
@media screen and (max-width: 1530px) {
  nav .inner {
    width: 1300px;
  }
}
@media screen and (max-width: 1330px) {
  nav .inner {
    width: 100%;
  }
}
@media screen and (max-width: 1130px) {
  nav .inner {
    display: none;
  }
}
nav ul {
  display: flex;
  justify-content: end;
  gap: 20px;
  margin-top: 70px;
}
@media screen and (max-width: 1530px) {
  nav ul {
    margin-top: 30px;
    justify-content: center;
  }
}
@media screen and (max-width: 1130px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
nav ul li {
  list-style: none;
}
nav ul li a {
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nohemi-Regular";
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 24px;
  border: 0.5px solid #fff;
  background: rgba(37, 37, 37, 0.753);
  backdrop-filter: blur(12px);
  padding: 8px 15px;
}
nav ul li a.active {
  color: #d9d9d9;
  font-family: "Nohemi";
  font-weight: bold;
  border: 0;
}
nav .mobile {
  padding: 30px;
}
@media screen and (min-width: 1131px) {
  nav .mobile {
    display: none;
  }
}
nav .mobile .menu {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: 1s;
  backdrop-filter: blur(0px);
  background-color: rgba(0, 0, 0, 0);
  transform: translateY(-350%);
}
nav .mobile .menu.open {
  background-color: rgba(0, 0, 0, 0.1647058824);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  animation: mobileNavAnim 1s linear;
}
nav .mobile .menu .icon {
  margin-right: 30px;
  margin-top: 30px;
}
nav .mobile .menu .bg {
  text-align: center;
  margin-top: -30px;
}
nav .mobile .menu .nav-items {
  margin-top: -30px;
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  margin: auto;
}
nav .mobile .menu .nav-items ul {
  width: max-content;
  margin: auto;
}
nav .mobile .menu .nav-items ul li {
  list-style: none;
}
nav .mobile .icon {
  margin: auto;
  margin-right: 0;
  width: max-content;
  position: relative;
}

.hero {
  background-image: url(/assets/images/hero/bg-1.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  height: 1000px;
  position: relative;
}
.hero::before {
  content: "";
  display: block;
  background-image: url(/assets/images/hero/bg-2.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s;
}
@media screen and (max-width: 1730px) {
  .hero {
    height: 900px;
  }
}
@media screen and (max-width: 1530px) {
  .hero {
    height: 850px;
  }
}
@media screen and (max-width: 1330px) {
  .hero {
    height: 750px;
  }
}
@media screen and (max-width: 1130px) {
  .hero {
    height: 650px;
  }
}
@media screen and (max-width: 575px) {
  .hero {
    height: max-content;
    overflow: unset;
  }
}
.hero.animated .product .product-1 {
  transform: scale(1);
  top: 200px;
}
@media screen and (max-width: 1130px) {
  .hero.animated .product .product-1 {
    top: 100px;
  }
}
.hero.animated .product .product-2 {
  transform: scale(0.5) translate(-260%, -300px);
}
@media screen and (max-width: 1730px) {
  .hero.animated .product .product-2 {
    transform: scale(0.5) translate(-280%, -230px);
  }
}
@media screen and (max-width: 1530px) {
  .hero.animated .product .product-2 {
    transform: scale(0.5) translate(-260%, -230px);
  }
}
@media screen and (max-width: 1330px) {
  .hero.animated .product .product-2 {
    transform: scale(0.5) translate(-270%, -150px);
  }
}
@media screen and (max-width: 768px) {
  .hero.animated .product .product-2 {
    transform: scale(0.5) translate(-180%, -250px);
  }
}
.hero.animated a {
  transform: translateX(0%);
}
.hero.animated .bottom-caption {
  transform: translateX(0%);
}
.hero.animated .translate {
  transform: translate(0, 0);
}
.hero.animated .right-caption {
  transform: translate(0, 0);
}
.hero.animated .video {
  transform: translate(0, 0);
}
.hero.bg-2::before {
  opacity: 1;
}
.hero .inner {
  position: relative;
  width: 1700px;
  margin: auto;
  height: 100%;
  padding-top: 50px;
}
@media screen and (max-width: 1730px) {
  .hero .inner {
    width: 1500px;
  }
}
@media screen and (max-width: 1530px) {
  .hero .inner {
    width: 1300px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 1330px) {
  .hero .inner {
    width: 1100px;
  }
}
@media screen and (max-width: 1130px) {
  .hero .inner {
    width: 95%;
    padding-top: 30px;
  }
}
.hero .bg-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
}
@media screen and (max-width: 575px) {
  .hero .bg-pattern {
    display: none;
  }
}
.hero .bg-pattern img {
  width: 100%;
  animation: patternAnimate 6s linear infinite;
}
.hero .bg-vector {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 575px) {
  .hero .bg-vector {
    z-index: 0;
  }
}
.hero .bg-vector img {
  position: absolute;
  left: 0;
}
.hero .bg-vector .vector-1,
.hero .bg-vector .vector-2 {
  width: 100%;
  transition: all 1s;
}
@media screen and (max-width: 1130px) {
  .hero .bg-vector .vector-1,
  .hero .bg-vector .vector-2 {
    height: 550px;
  }
}
.hero .bg-vector .vector-1.hide,
.hero .bg-vector .vector-2.hide {
  opacity: 0;
}
@media screen and (max-width: 575px) {
  .hero .bg-vector .vector-1 {
    position: relative;
    content: url(/assets/images/hero/vector1-small.png);
  }
}
@media screen and (max-width: 575px) {
  .hero .bg-vector .vector-2 {
    content: url(/assets/images/hero/vector2-small.png);
  }
}
.hero .bg-vector .vector-pattern {
  width: 60%;
  top: 0px;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 575px) {
  .hero .bg-vector .vector-pattern {
    width: 90%;
    top: -120px;
  }
}
.hero .video {
  position: absolute;
  z-index: 1;
  bottom: 170px;
  right: 50px;
  transition: 2s;
  transform: translate(200%, -150px);
}
@media screen and (max-width: 1530px) {
  .hero .video {
    bottom: 100px;
  }
}
@media screen and (max-width: 575px) {
  .hero .video {
    position: static;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    transform: translate(0);
  }
}
@media screen and (max-width: 1130px) {
  .hero .video svg {
    width: 200px;
  }
}
@media screen and (max-width: 575px) {
  .hero .video svg {
    width: 280px;
  }
}
.hero .translate {
  position: absolute;
  z-index: 1;
  right: 50px;
  top: 25%;
  transition: 2s;
  display: flex;
  background-color: #050505;
  border-radius: 5px;
  transform: translate(300%, -150px);
}
@media screen and (max-width: 575px) {
  .hero .translate {
    transform: translate(0);
    top: 10%;
    right: 20px;
  }
}
.hero .translate a.tab {
  background-color: transparent;
  border: 0;
  outline: none;
  color: #fff;
  font-family: "Nohemi";
  font-size: 15.294px;
  letter-spacing: 1px;
  padding: 10px;
  padding-top: 14px;
  cursor: pointer;
  display: block;
  width: max-content;
  text-decoration: none;
}
.hero .translate a.tab.active {
  background-color: #fff;
  color: #050505;
  border-radius: 5px;
}
.hero .bottom-caption {
  color: #fcfcfc;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Orbitron";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 300px;
  position: absolute;
  bottom: 130px;
  left: 100px;
  z-index: 1;
  transition: 2s;
  transform: translateX(-200%);
}
@media screen and (max-width: 1330px) {
  .hero .bottom-caption {
    left: 50px;
  }
}
@media screen and (max-width: 1130px) {
  .hero .bottom-caption {
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .hero .bottom-caption {
    position: static;
    width: 100%;
    text-align: center;
    transform: translateX(0);
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.hero .right-caption {
  color: #fff;
  text-align: justify;
  font-family: "Nohemi-Regular";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px; /* 155.556% */
  letter-spacing: 1px;
  width: 280px;
  position: absolute;
  z-index: 1;
  right: 50px;
  top: 35%;
  transition: 2s;
  transform: translate(200%, -150px);
}
@media screen and (max-width: 1130px) {
  .hero .right-caption {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 575px) {
  .hero .right-caption {
    position: static;
    width: 100%;
    text-align: center;
    transform: translate(0);
  }
}
.hero .product {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.hero .product img {
  width: 500px;
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}
@media screen and (max-width: 1730px) {
  .hero .product img {
    width: 400px;
  }
}
@media screen and (max-width: 1330px) {
  .hero .product img {
    width: 300px;
  }
}
@media screen and (max-width: 575px) {
  .hero .product img {
    top: 130px !important;
    width: 200px;
  }
}
.hero .product .product-1 {
  transition: 2s;
  transform: scale(1.2);
  top: 130px;
}
@media screen and (max-width: 1330px) {
  .hero .product .product-1 {
    top: 150px;
  }
}
.hero .product .product-2 {
  transition: 2s;
  transform: scale(0.5) translate(-460%, -300px);
}
@media screen and (max-width: 575px) {
  .hero .product .product-2 {
    transform: scale(0.4) translate(-80vw, 200px);
  }
}
.hero .primary-btn {
  width: 30%;
  position: absolute;
  bottom: 50px;
  z-index: 1;
  transition: 2s;
  transform: translateX(-150%);
}
@media screen and (max-width: 575px) {
  .hero .primary-btn {
    position: static;
    transform: translate(0);
    margin: auto;
    margin-top: 20px;
    width: 100%;
  }
}

@keyframes patternAnimate {
  0% {
    width: 100%;
  }
  50% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}
@keyframes mobileNavAnim {
  0% {
    backdrop-filter: blur(0px);
    background-color: rgba(0, 0, 0, 0);
    transform: translateY(-120%);
  }
  50% {
    transform: translateY(0%);
    backdrop-filter: blur(0px);
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.1647058824);
    backdrop-filter: blur(10px);
  }
}
.about {
  position: relative;
  height: 1080px;
}
@media screen and (max-width: 1650px) {
  .about {
    height: 900px;
  }
}
@media screen and (max-width: 1450px) {
  .about {
    height: 650px;
  }
}
@media screen and (max-width: 768px) {
  .about {
    height: 150vw;
  }
}
@media screen and (max-width: 575px) {
  .about {
    margin-top: 50px;
    height: 170vw;
  }
}
@media screen and (max-width: 475px) {
  .about {
    height: 200vw;
  }
}
.about.animated .inner .head {
  transform: scale(1);
  opacity: 1;
}
.about.animated .inner .product {
  padding-left: 150px;
}
.about.animated .inner .img {
  opacity: 1;
}
.about.animated .inner .caption {
  opacity: 1;
}
.about .bg-pattern {
  position: absolute;
  top: -10px;
  left: 0;
  transform: scaleY(-1);
}
@media screen and (max-width: 1650px) {
  .about .bg-pattern {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .about .bg-pattern {
    position: static;
    transform: none;
    width: 100%;
  }
}
.about .bg-pattern img {
  width: 100%;
  animation: patternAnimate 6s linear infinite;
}
@media screen and (max-width: 768px) {
  .about .bg-pattern img {
    content: url(/assets/images/about/bg.png?ver=1);
    animation: none;
  }
}
.about .inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.about .inner .head {
  transition: all 1s;
  transform-origin: left bottom;
  transform: scale(0.5);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .about .inner .head {
    font-size: 100px;
    text-align: center;
    position: relative;
    z-index: 3;
    opacity: 1;
    width: 100%;
    transform: none;
  }
}
.about .inner .head h1 {
  color: #fcfcfc;
  font-family: "Robot Dreamer";
  font-size: 270px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 1s;
}
@media screen and (max-width: 1650px) {
  .about .inner .head h1 {
    font-size: 200px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 1450px) {
  .about .inner .head h1 {
    padding-top: 0;
    font-size: 170px;
  }
}
@media screen and (max-width: 1050px) {
  .about .inner .head h1 {
    font-size: 130px;
  }
}
@media screen and (max-width: 768px) {
  .about .inner .head h1 {
    font-size: 100px;
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .about .inner .head h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 414px) {
  .about .inner .head h1 {
    font-size: 60px;
  }
}
.about .inner .head h1 .outline {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #fcfcfc;
  color: rgba(0, 0, 0, 0);
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .about .inner .head h1 .outline {
    -webkit-text-stroke-width: 0.5px;
    position: static;
  }
}
.about .inner .product {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  transition: all 1s;
}
@media screen and (max-width: 1650px) {
  .about .inner .product {
    top: 100px;
  }
}
@media screen and (max-width: 1450px) {
  .about .inner .product {
    top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .about .inner .product {
    top: 100px;
  }
  .about .inner .product::after {
    content: "";
    display: block;
    background: rgb(5, 5, 5);
    background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgb(5, 5, 5) 92%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 65%;
    height: 100px;
  }
}
@media screen and (max-width: 1650px) {
  .about .inner .product img {
    width: 800px;
  }
}
@media screen and (max-width: 1450px) {
  .about .inner .product img {
    width: 600px;
  }
}
@media screen and (max-width: 1050px) {
  .about .inner .product img {
    width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .about .inner .product img {
    width: 100%;
  }
}
.about .inner .img {
  position: absolute;
  z-index: 1;
  top: 70px;
  right: 0;
  opacity: 0;
  transition: all 1s;
}
@media screen and (max-width: 1650px) {
  .about .inner .img {
    width: 50%;
  }
}
@media screen and (max-width: 1450px) {
  .about .inner .img {
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .about .inner .img {
    display: none;
  }
}
@media screen and (max-width: 1650px) {
  .about .inner .img img {
    width: 100%;
  }
}
.about .inner .caption {
  width: 35%;
  margin-top: 100px;
  opacity: 0;
  transition: all 1s;
}
@media screen and (max-width: 1050px) {
  .about .inner .caption {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .about .inner .caption {
    width: 100%;
    opacity: 1;
    margin-top: 110vw;
  }
}
.about .inner .caption .c1 {
  color: #9dba9a;
  font-family: "Orbitron";
  font-size: 33px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px; /* 118.182% */
  margin-bottom: 30px;
}
@media screen and (max-width: 1450px) {
  .about .inner .caption .c1 {
    font-size: 27px;
    line-height: 32px;
  }
}
@media screen and (max-width: 1250px) {
  .about .inner .caption .c1 {
    font-size: 22px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1050px) {
  .about .inner .caption .c1 {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (max-width: 575px) {
  .about .inner .caption .c1 {
    text-align: center;
  }
}
.about .inner .caption .c2 {
  color: #fff;
  font-family: "Nohemi-Regular";
  letter-spacing: 1px;
  font-size: 24px;
  font-style: normal;
  line-height: 34px;
}
@media screen and (max-width: 1450px) {
  .about .inner .caption .c2 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1450px) {
  .about .inner .caption .c2 {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (max-width: 1050px) {
  .about .inner .caption .c2 {
    font-size: 13px;
    line-height: 23px;
  }
}
@media screen and (max-width: 575px) {
  .about .inner .caption .c2 {
    text-align: center;
  }
}

.description {
  position: relative;
  background-image: url(/assets/images/description/bg.png?ver=3);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 1920px 100%;
  height: 1900px;
}
@media screen and (max-width: 1250px) {
  .description {
    background-size: 1250px 100%;
    height: 1250px;
  }
}
@media screen and (max-width: 768px) {
  .description {
    background-image: url(/assets/images/description/bg-sm.png);
    background-size: 768px auto;
    height: 1000px;
  }
}
@media screen and (max-width: 544px) {
  .description {
    background-size: 544px auto;
    height: 850px;
  }
}
.description .curve {
  position: absolute;
}
.description.animated .inner .head {
  transform: translateY(0);
}
.description.animated .inner .product {
  width: 60%;
}
.description.animated .inner .product img {
  transform: scale(1);
}
.description.animated .inner .caption {
  transform: scale(1);
  opacity: 1;
}
.description .video {
  position: relative;
  z-index: 0;
  opacity: 0.6;
}
.description .video video {
  width: 100%;
  height: 1390px;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}
@media screen and (max-width: 1250px) {
  .description .video video {
    height: 950px;
  }
}
@media screen and (max-width: 768px) {
  .description .video video {
    height: 600px;
  }
}
@media screen and (max-width: 544px) {
  .description .video video {
    height: 430px;
  }
}
.description .inner {
  background-image: url(/assets/images/description/cover-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 1920px 100%;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 1250px) {
  .description .inner {
    background-size: 1250px 100%;
  }
}
@media screen and (max-width: 768px) {
  .description .inner {
    background-image: url(/assets/images/description/cover-bg-sm.png?ver=6);
    background-size: 768px auto;
  }
}
@media screen and (max-width: 544px) {
  .description .inner {
    background-size: 544px auto;
  }
}
.description .inner .head {
  padding-top: 220px;
  transition: all 1s;
  transform: translateY(-100%);
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1450px) {
  .description .inner .head {
    padding-top: 250px;
  }
}
@media screen and (max-width: 1450px) {
  .description .inner .head {
    padding-top: 200px;
  }
}
@media screen and (max-width: 768px) {
  .description .inner .head {
    transform: none;
    padding-top: 100px;
  }
}
@media screen and (max-width: 544px) {
  .description .inner .head {
    padding-top: 50px;
  }
}
.description .inner .head h1 {
  text-align: center;
}
.description .inner .product {
  position: absolute;
  z-index: 3;
  top: 200px;
  text-align: center;
  width: 100%;
  transition: all 1s;
  left: 0;
}
@media screen and (max-width: 768px) {
  .description .inner .product {
    position: static;
  }
}
.description .inner .product img {
  transition: all 1s;
  transform: scale(1.3);
}
@media screen and (max-width: 1250px) {
  .description .inner .product img {
    width: 550px;
  }
}
@media screen and (max-width: 768px) {
  .description .inner .product img {
    width: 280px;
  }
}
@media screen and (max-width: 544px) {
  .description .inner .product img {
    width: 200px;
  }
}
@media screen and (max-width: 474px) {
  .description .inner .product img {
    width: 180px;
  }
}
.description .inner .caption {
  width: 520px;
  margin: auto;
  top: 330px;
  left: 200px;
  transition: all 1s;
  transform: scale(0.3);
  opacity: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .description .inner .caption {
    top: 400px;
  }
}
@media screen and (max-width: 1250px) {
  .description .inner .caption {
    width: 420px;
    top: 100px;
    left: 160px;
  }
}
@media screen and (max-width: 1024px) {
  .description .inner .caption {
    top: 170px;
  }
}
@media screen and (max-width: 768px) {
  .description .inner .caption {
    transform: none;
    opacity: 1;
    width: 100%;
    left: 0;
    top: 30vw;
  }
}
@media screen and (max-width: 544px) {
  .description .inner .caption {
    top: 40vw;
  }
}
.description .inner .caption p {
  color: #fff;
  text-align: justify;
  font-family: "Orbitron";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1250px) {
  .description .inner .caption p {
    font-size: 20px;
    line-height: 32px;
  }
}
@media screen and (max-width: 768px) {
  .description .inner .caption p {
    font-size: 16px;
    line-height: 28px;
  }
}

.how-it-works {
  background-image: url(/assets/images/how-it-works/how-it-works-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.how-it-works::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7333333333);
  z-index: 0;
}
.how-it-works .inner {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
@media screen and (max-width: 575px) {
  .how-it-works .inner .head h1 {
    text-align: center;
  }
}
.how-it-works .inner .head p {
  color: #fcfcfc;
  font-family: "Nohemi-Regular";
  font-size: 30px;
  font-style: normal;
  font-weight: bold;
  line-height: 129%;
  margin-top: 50px;
}
@media screen and (max-width: 1150px) {
  .how-it-works .inner .head p {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 575px) {
  .how-it-works .inner .head p {
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 131%;
    text-align: center;
  }
}
.how-it-works .inner .img {
  margin-top: 40px;
  text-align: right;
  position: relative;
}
.how-it-works .inner .img img {
  width: 70%;
}
@media screen and (max-width: 1150px) {
  .how-it-works .inner .img img {
    width: 85%;
  }
}
@media screen and (max-width: 660px) {
  .how-it-works .inner .img img {
    width: 100%;
  }
}
@media screen and (max-width: 660px) {
  .how-it-works .inner .img img.desktop {
    display: none;
  }
}
.how-it-works .inner .img img.mobile {
  display: none;
}
@media screen and (max-width: 660px) {
  .how-it-works .inner .img img.mobile {
    display: inline;
  }
}
.how-it-works .inner .img a {
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 660px) {
  .how-it-works .inner .img a {
    position: static;
    margin: auto;
    margin-top: 40px;
  }
}
.how-it-works .inner .img video {
  position: absolute;
  width: 450px;
  top: 0;
  left: 280px;
  border-radius: 25px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1450px) {
  .how-it-works .inner .img video {
    left: 180px;
    width: 350px;
  }
}
@media screen and (max-width: 1150px) {
  .how-it-works .inner .img video {
    width: 250px;
    left: 20px;
  }
}
@media screen and (max-width: 660px) {
  .how-it-works .inner .img video {
    width: 50%;
    right: 0;
    margin-top: 200px;
  }
}
@media screen and (max-width: 500px) {
  .how-it-works .inner .img video {
    margin-top: 30vw;
  }
}
.how-it-works .inner .texture-wrap {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 100px;
}
@media screen and (max-width: 1250px) {
  .how-it-works .inner .texture-wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 660px) {
  .how-it-works .inner .texture-wrap {
    flex-direction: column;
  }
}
.how-it-works .inner .texture-wrap .header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 660px) {
  .how-it-works .inner .texture-wrap .header {
    gap: 10px;
  }
}
.how-it-works .inner .texture-wrap .header h5 {
  color: #fcfcfc;
  font-family: "Orbitron";
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 100.952%;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
@media screen and (max-width: 1450px) {
  .how-it-works .inner .texture-wrap .header h5 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1150px) {
  .how-it-works .inner .texture-wrap .header h5 {
    font-size: 30px;
  }
}
@media screen and (max-width: 660px) {
  .how-it-works .inner .texture-wrap .header h5 {
    font-size: 20px;
    line-height: 110%;
    text-align: center;
  }
}
.how-it-works .inner .texture-wrap .header h5::after {
  content: "";
  display: block;
  background-color: #fcfcfc;
  width: 100%;
  height: 1px;
  margin-top: 30px;
}
@media screen and (max-width: 660px) {
  .how-it-works .inner .texture-wrap .header h5::after {
    margin-top: 10px;
  }
}
.how-it-works .inner .texture-wrap .texture-img {
  text-align: right;
}
@media screen and (max-width: 660px) {
  .how-it-works .inner .texture-wrap .texture-img {
    text-align: center;
  }
}
@media screen and (max-width: 1450px) {
  .how-it-works .inner .texture-wrap .texture-img img {
    width: 170px;
  }
}
@media screen and (max-width: 660px) {
  .how-it-works .inner .texture-wrap .texture-img img {
    width: 100px;
    margin: 0 5px;
  }
}

.features {
  padding-top: 50px;
  padding-bottom: 200px;
  background-image: url(/assets/images/features/bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1150px) {
  .features {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
@media screen and (max-width: 768px) {
  .features {
    background: none;
    padding-bottom: 0;
  }
}
.features .curve {
  position: absolute;
  top: 0;
}
.features.animated > .inner .head {
  transform: translateY(0);
}
.features.animated > .inner .feature-wrap .feature .inner .img .feature-line {
  opacity: 1;
}
.features.animated > .inner .feature-wrap .feature .inner .img .product {
  transform: scale(1);
}
.features.animated > .inner .feature-wrap .feature .inner .content {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .features > .inner {
    width: 100%;
  }
}
@media screen and (max-width: 1150px) {
  .features > .inner.site-container {
    width: 1020px;
  }
}
@media screen and (max-width: 768px) {
  .features > .inner.site-container {
    width: 100%;
  }
}
.features > .inner .head {
  transform: translateY(-150%);
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .features > .inner .head {
    transform: translateY(0);
  }
}
.features > .inner .head h1 {
  text-align: center;
}
@media screen and (max-width: 522px) {
  .features > .inner .head h1 {
    padding: 0 20px;
  }
}
.features > .inner .feature-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .features > .inner .feature-wrap {
    flex-direction: column;
  }
}
.features > .inner .feature-wrap .feature {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .features > .inner .feature-wrap .feature {
    width: 100%;
    padding: 200px 0;
    background-image: url(/assets/images/features/bg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: end;
  }
}
@media screen and (max-width: 522px) {
  .features > .inner .feature-wrap .feature {
    padding: 100px 0;
  }
}
@media screen and (max-width: 450px) {
  .features > .inner .feature-wrap .feature {
    padding: 60px 0;
  }
}
.features > .inner .feature-wrap .feature:last-child .inner .img {
  width: 100%;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .features > .inner .feature-wrap .feature:last-child .inner .img {
    justify-content: center;
  }
}
.features > .inner .feature-wrap .feature .inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .features > .inner .feature-wrap .feature .inner {
    width: 500px;
    margin: auto;
  }
}
@media screen and (max-width: 522px) {
  .features > .inner .feature-wrap .feature .inner {
    transform: scale(0.8);
    transform-origin: center;
  }
}
@media screen and (max-width: 450px) {
  .features > .inner .feature-wrap .feature .inner {
    width: 300px;
    transform: scale(0.7);
  }
}
.features > .inner .feature-wrap .feature .inner .img {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .features > .inner .feature-wrap .feature .inner .img {
    justify-content: center;
  }
}
.features > .inner .feature-wrap .feature .inner .img .feature-line {
  transition: 1s;
  opacity: 0;
  height: 60%;
}
@media screen and (max-width: 1450px) {
  .features > .inner .feature-wrap .feature .inner .img .feature-line {
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .features > .inner .feature-wrap .feature .inner .img .feature-line {
    opacity: 1;
  }
}
.features > .inner .feature-wrap .feature .inner .img .product {
  transform: scale(1.2);
  transition: 1s;
}
@media screen and (max-width: 1450px) {
  .features > .inner .feature-wrap .feature .inner .img .product {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .features > .inner .feature-wrap .feature .inner .img .product {
    transform: scale(1);
    transform: scaleX(-1);
  }
}
.features > .inner .feature-wrap .feature .inner .img .product.left {
  margin-left: -150px;
}
@media screen and (max-width: 1450px) {
  .features > .inner .feature-wrap .feature .inner .img .product.left {
    margin-left: -70px;
  }
}
.features > .inner .feature-wrap .feature .inner .img .product.right {
  margin-right: -150px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1450px) {
  .features > .inner .feature-wrap .feature .inner .img .product.right {
    margin-right: -70px;
  }
}
.features > .inner .feature-wrap .feature .inner .content {
  position: absolute;
  top: 60px;
  transition: 1s;
  opacity: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .features > .inner .feature-wrap .feature .inner .content {
    opacity: 1;
  }
}
@media screen and (max-width: 450px) {
  .features > .inner .feature-wrap .feature .inner .content.left ul {
    margin-left: -50px;
  }
}
.features > .inner .feature-wrap .feature .inner .content.left ul li {
  margin-left: 110px;
}
@media screen and (max-width: 1450px) {
  .features > .inner .feature-wrap .feature .inner .content.left ul li {
    margin-left: 70px;
  }
}
@media screen and (max-width: 450px) {
  .features > .inner .feature-wrap .feature .inner .content.left ul li {
    margin-left: 0;
  }
}
.features > .inner .feature-wrap .feature .inner .content.left ul li:not(:nth-child(2)) {
  margin-left: 30px;
}
@media screen and (max-width: 450px) {
  .features > .inner .feature-wrap .feature .inner .content.left ul li:not(:nth-child(2)) {
    margin-left: 0;
  }
}
.features > .inner .feature-wrap .feature .inner .content.right {
  right: -150px;
}
@media screen and (max-width: 1650px) {
  .features > .inner .feature-wrap .feature .inner .content.right {
    right: -50px;
  }
}
@media screen and (max-width: 1450px) {
  .features > .inner .feature-wrap .feature .inner .content.right {
    right: 0px;
  }
}
@media screen and (max-width: 450px) {
  .features > .inner .feature-wrap .feature .inner .content.right {
    margin-right: -100px;
  }
}
.features > .inner .feature-wrap .feature .inner .content.right ul {
  align-items: start;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1650px) {
  .features > .inner .feature-wrap .feature .inner .content.right ul {
    align-items: center;
  }
}
@media screen and (max-width: 1450px) {
  .features > .inner .feature-wrap .feature .inner .content.right ul {
    align-items: end;
  }
}
@media screen and (max-width: 450px) {
  .features > .inner .feature-wrap .feature .inner .content.right ul li {
    width: 70%;
  }
}
.features > .inner .feature-wrap .feature .inner .content.right ul li:not(:nth-child(2)) {
  margin-right: 0px;
}
.features > .inner .feature-wrap .feature .inner .content ul {
  display: flex;
  flex-direction: column;
}
.features > .inner .feature-wrap .feature .inner .content ul li {
  list-style: none;
  color: #fcfcfc;
  font-family: "Nohemi-Regular";
  letter-spacing: 1px;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 129%;
  width: 60%;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 1450px) {
  .features > .inner .feature-wrap .feature .inner .content ul li {
    font-size: 15px;
  }
}
@media screen and (max-width: 450px) {
  .features > .inner .feature-wrap .feature .inner .content ul li {
    width: 80%;
  }
}
.features > .inner .feature-wrap .feature .inner .content ul li:nth-child(2) {
  margin-top: 140px;
}
@media screen and (max-width: 1450px) {
  .features > .inner .feature-wrap .feature .inner .content ul li:nth-child(2) {
    margin-top: 80px;
  }
}
.features > .inner .feature-wrap .feature .inner .content ul li:nth-child(3) {
  margin-top: 190px;
}
@media screen and (max-width: 1450px) {
  .features > .inner .feature-wrap .feature .inner .content ul li:nth-child(3) {
    margin-top: 110px;
  }
}

.variations {
  position: relative;
  padding-top: 100px;
}
.variations .curve {
  position: absolute;
  top: 0;
}
.variations .head {
  position: relative;
  z-index: 1;
}
.variations .head h1 {
  text-align: center;
}
.variations .inner {
  background-image: url(/assets/images/slider/summer-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 1150px;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: -200px;
}
@media screen and (max-width: 1024px) {
  .variations .inner {
    height: 950px;
  }
}
@media screen and (max-width: 768px) {
  .variations .inner {
    height: 800px;
  }
}
@media screen and (max-width: 550px) {
  .variations .inner {
    height: 900px;
  }
}
.variations .inner::before {
  content: "";
  display: block;
  background-image: url(/assets/images/slider/winter-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s;
}
.variations .inner.winter-bg::before {
  opacity: 1;
}
.variations .inner .swiper {
  height: 100%;
  overflow: hidden;
  padding-top: 270px;
  margin-left: -230px;
}
@media screen and (max-width: 1500px) {
  .variations .inner .swiper {
    margin-left: -270px;
  }
}
@media screen and (max-width: 1024px) {
  .variations .inner .swiper {
    margin-left: -90px;
  }
}
@media screen and (max-width: 768px) {
  .variations .inner .swiper {
    margin-left: 0;
    padding-top: 100px;
  }
}
.variations .inner .swiper .swiper-wrapper {
  align-items: center;
}
.variations .inner .swiper .swiper-wrapper .swiper-slide {
  height: max-content;
  transition: 1s;
}
.variations .inner .swiper .swiper-wrapper .swiper-slide.swiper-slide-prev {
  text-align: left;
}
.variations .inner .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  text-align: right;
}
.variations .inner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  text-align: center;
  margin: 0 170px;
}
@media screen and (max-width: 1024px) {
  .variations .inner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    margin: 0 80px;
  }
}
@media screen and (max-width: 768px) {
  .variations .inner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    margin: 0;
  }
}
.variations .inner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .variations .inner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
    width: 200px;
  }
}
.variations .inner .swiper .swiper-wrapper .swiper-slide img {
  transition: 1s;
  width: 600px;
}
@media screen and (max-width: 1024px) {
  .variations .inner .swiper .swiper-wrapper .swiper-slide img {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .variations .inner .swiper .swiper-wrapper .swiper-slide img {
    width: 200px;
  }
}
.variations .inner .controls {
  position: absolute;
  top: 55%;
  z-index: 2;
  left: 100px;
  right: 0;
  margin: auto;
  width: 400px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  .variations .inner .controls {
    left: 70px;
  }
}
@media screen and (max-width: 768px) {
  .variations .inner .controls {
    left: 0;
  }
}
@media screen and (max-width: 450px) {
  .variations .inner .controls {
    width: 100%;
    padding: 0 30px;
  }
}
.variations .inner .controls .swiper-btn {
  color: #fff;
  cursor: pointer;
}
.variations .inner .controls .swiper-btn svg {
  font-size: 40px;
}
.variations .caption {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.variations .caption .sliderTitle {
  color: #fff;
  text-align: center;
  font-family: "Orbitron";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 129%; /* 33.54px */
  letter-spacing: 2.86px;
}
@media screen and (max-width: 1024px) {
  .variations .caption .sliderTitle {
    font-size: 20px;
  }
}
.variations .caption .sub {
  color: #9dba9a;
  text-align: center;
  font-family: "Nohemi";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 129%; /* 25.8px */
  letter-spacing: 2.2px;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .variations .caption .sub {
    font-size: 15px;
  }
}

.testing {
  background-image: url(/assets/images/how-it-works/how-it-works-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding-top: 200px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1150px) {
  .testing {
    padding-top: 100px;
  }
}
.testing::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7333333333);
  z-index: 0;
}
.testing .inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1150px) {
  .testing .inner .head h1 {
    text-align: center;
  }
}
.testing .inner .wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1150px) {
  .testing .inner .wrap {
    flex-direction: column;
    gap: 50px;
    padding: 0 20px;
  }
}
.testing .inner .wrap .section:first-child {
  width: 60%;
  padding-right: 30px;
}
@media screen and (max-width: 1250px) {
  .testing .inner .wrap .section:first-child {
    width: 50%;
  }
}
@media screen and (max-width: 1150px) {
  .testing .inner .wrap .section:first-child {
    width: 100%;
    padding: 0;
  }
}
.testing .inner .wrap .section:last-child {
  width: 40%;
  padding-left: 30px;
}
@media screen and (max-width: 1150px) {
  .testing .inner .wrap .section:last-child {
    width: 100%;
    padding: 0;
  }
}
.testing .inner .wrap .section .video {
  margin-top: 50px;
}
@media screen and (max-width: 1450px) {
  .testing .inner .wrap .section .video {
    margin-top: 0;
  }
}
.testing .inner .wrap .section .video svg {
  width: 100%;
}
@media screen and (max-width: 1250px) {
  .testing .inner .wrap .section .video svg {
    height: 400px;
  }
}
@media screen and (max-width: 1150px) {
  .testing .inner .wrap .section .video svg {
    margin-top: 50px;
  }
}
@media screen and (max-width: 680px) {
  .testing .inner .wrap .section .video svg {
    height: 55vw;
  }
}
.testing .inner .wrap .section .img {
  margin-top: 70px;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .testing .inner .wrap .section .img {
    text-align: center;
    margin-top: 30px;
  }
}
.testing .inner .wrap .section .img img {
  width: 70%;
}
@media screen and (max-width: 680px) {
  .testing .inner .wrap .section .img img {
    width: 100%;
  }
}
.testing .inner .wrap .section .sub {
  color: #fcfcfc;
  font-family: "Nohemi-Regular";
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 136%; /* 40.8px */
  letter-spacing: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: max-content;
  width: 70%;
  padding: 30px;
}
@media screen and (max-width: 1450px) {
  .testing .inner .wrap .section .sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 1250px) {
  .testing .inner .wrap .section .sub {
    font-size: 15px;
  }
}
@media screen and (max-width: 1150px) {
  .testing .inner .wrap .section .sub {
    text-align: center;
    right: 0;
    left: 0;
  }
}
@media screen and (max-width: 680px) {
  .testing .inner .wrap .section .sub {
    width: 100%;
  }
}
.testing .inner .wrap .section a {
  width: 25%;
  transform: translateY(-40px);
}
@media screen and (max-width: 1650px) {
  .testing .inner .wrap .section a {
    transform: translateY(-70px);
  }
}
@media screen and (max-width: 1450px) {
  .testing .inner .wrap .section a {
    transform: translateY(-110px);
  }
}
@media screen and (max-width: 1250px) {
  .testing .inner .wrap .section a {
    transform: translateY(-30px);
    width: 35%;
  }
}
@media screen and (max-width: 1150px) {
  .testing .inner .wrap .section a {
    width: 70%;
    margin: auto;
    transform: none;
    margin-top: 30px;
  }
}
.testing .inner .wrap .section p {
  color: #fcfcfc;
  font-family: "Orbitron";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 136%; /* 54.4px */
  letter-spacing: 1.2px;
}
@media screen and (max-width: 1450px) {
  .testing .inner .wrap .section p {
    font-size: 30px;
  }
}
@media screen and (max-width: 1250px) {
  .testing .inner .wrap .section p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1150px) {
  .testing .inner .wrap .section p {
    text-align: justify;
  }
}
@media screen and (max-width: 680px) {
  .testing .inner .wrap .section p {
    font-size: 16px;
  }
}

footer {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}
footer .pattern {
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  text-align: end;
}
footer .pattern img {
  width: 100%;
  animation: patternAnimate 10s linear infinite;
}
@media screen and (max-width: 768px) {
  footer .pattern img {
    content: url(/assets/images/footer/pattern-small.png);
  }
}
footer .inner {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 50px;
}
footer .inner .upper {
  position: relative;
}
footer .inner .upper .img {
  text-align: center;
}
footer .inner .upper .img img {
  width: 90%;
}
@media screen and (max-width: 768px) {
  footer .inner .upper .img img {
    content: url(/assets/images/footer/abstract-small.png);
    width: 400px;
  }
}
@media screen and (max-width: 450px) {
  footer .inner .upper .img img {
    width: 370px;
  }
}
footer .inner .upper .content {
  position: absolute;
  top: 30px;
  right: 5%;
  width: 60%;
}
@media screen and (max-width: 768px) {
  footer .inner .upper .content {
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
    text-align: center;
    margin-top: -390px;
    position: relative;
  }
}
@media screen and (max-width: 450px) {
  footer .inner .upper .content {
    margin-top: -370px;
  }
}
footer .inner .upper .content .heading {
  padding-left: 140px;
}
@media screen and (max-width: 1650px) {
  footer .inner .upper .content .heading {
    padding-left: 110px;
  }
}
@media screen and (max-width: 1250px) {
  footer .inner .upper .content .heading {
    padding-left: 90px;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .upper .content .heading {
    padding-left: 0;
  }
}
footer .inner .upper .content .heading h4 {
  color: #fcfcfc;
  font-family: "Orbitron";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 125% */
  letter-spacing: 1.44px;
}
@media screen and (max-width: 1450px) {
  footer .inner .upper .content .heading h4 {
    font-size: 35px;
  }
}
@media screen and (max-width: 1250px) {
  footer .inner .upper .content .heading h4 {
    font-size: 25px;
    line-height: 125%;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .upper .content .heading h4 {
    height: 70px;
  }
}
footer .inner .upper .content .sub {
  color: #fcfcfc;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Orbitron";
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 60px; /* 125% */
  letter-spacing: 13.92px;
  margin-top: 70px;
}
@media screen and (max-width: 1650px) {
  footer .inner .upper .content .sub {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1450px) {
  footer .inner .upper .content .sub {
    font-size: 35px;
    margin-top: 0px;
  }
}
@media screen and (max-width: 1250px) {
  footer .inner .upper .content .sub {
    font-size: 25px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1150px) {
  footer .inner .upper .content .sub {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .upper .content .sub {
    margin-top: 0;
  }
}
footer .inner .upper .content .socials ul {
  display: flex;
  justify-content: start;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 1250px) {
  footer .inner .upper .content .socials ul {
    flex-direction: column;
    gap: 5px;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .upper .content .socials ul {
    margin-top: 280px;
  }
}
footer .inner .upper .content .socials ul li {
  list-style: none;
}
footer .inner .upper .content .socials ul li a {
  text-decoration: none;
  color: #fcfcfc;
  font-family: "Orbitron";
  font-size: 19.909px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.864px; /* 150% */
}
@media screen and (max-width: 1450px) {
  footer .inner .upper .content .socials ul li a {
    font-size: 15px;
  }
}
footer .inner .upper .content .socials ul li a svg {
  font-size: 25px;
  margin-right: 20px;
}
@media screen and (max-width: 1450px) {
  footer .inner .upper .content .socials ul li a svg {
    font-size: 20px;
  }
}
footer .inner .upper .content .socials .pc {
  width: 80%;
  margin-top: 20px;
}
@media screen and (max-width: 1250px) {
  footer .inner .upper .content .socials .pc {
    margin-top: 0px;
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .upper .content .socials .pc {
    display: none;
  }
}
footer .inner .upper .content .socials .mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  footer .inner .upper .content .socials .mobile {
    display: inline;
    margin-top: 280px;
  }
}
footer .inner .upper .content a {
  margin-top: 50px;
  width: 55%;
  text-align: center;
  align-items: center;
}
@media screen and (max-width: 1450px) {
  footer .inner .upper .content a {
    width: 50%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1250px) {
  footer .inner .upper .content a {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1150px) {
  footer .inner .upper .content a {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .upper .content a {
    margin: auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  footer .inner .upper .content a {
    width: 90%;
  }
}
footer .inner .upper .content a svg {
  font-size: 25px;
}
footer .brand-logo {
  text-align: center;
}
footer .brand-logo img {
  width: 200px;
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  footer ul {
    flex-direction: column;
    align-items: center;
  }
}
footer ul li {
  list-style: none;
}
footer ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Orbitron";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
footer .copyrights {
  color: #fff;
  font-family: "Nohemi-Regular";
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 300% */
  letter-spacing: 7.44px;
  text-transform: uppercase;
  opacity: 0.5;
  text-align: center;
  margin-top: 70px;
}
footer .copyrights a {
  text-decoration: none;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .russian .primary-btn {
    font-size: 13px;
  }
}
.russian nav .inner ul li a {
  font-size: 14px;
}
.russian .hero .right-caption {
  width: 350px;
  text-align: right;
}
@media screen and (max-width: 575px) {
  .russian .hero .right-caption {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 1750px) {
  .russian .hero .video {
    bottom: 100px;
  }
}
@media screen and (max-width: 1450px) {
  .russian .about .inner .caption {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .russian .about .inner .caption {
    margin-top: 110vw;
  }
}
.russian .about .inner .caption .c1 {
  font-size: 27px;
  line-height: 35px; /* 118.182% */
}
@media screen and (max-width: 1450px) {
  .russian .about .inner .caption .c1 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media screen and (max-width: 1250px) {
  .russian .about .inner .caption .c1 {
    font-size: 19px;
    line-height: 22px;
  }
}
@media screen and (max-width: 1050px) {
  .russian .about .inner .caption .c1 {
    font-size: 15px;
    line-height: 20px;
  }
}
.russian .about .inner .caption .c2 {
  font-size: 20px;
  line-height: 30px;
}
@media screen and (max-width: 1450px) {
  .russian .about .inner .caption .c2 {
    font-size: 15px;
    line-height: 25px;
  }
}
@media screen and (max-width: 1050px) {
  .russian .about .inner .caption .c2 {
    font-size: 12px;
    line-height: 22px;
  }
}
.russian .description .inner .caption {
  top: 300px;
}
@media screen and (max-width: 1440px) {
  .russian .description .inner .caption {
    top: 350px;
  }
}
@media screen and (max-width: 1250px) {
  .russian .description .inner .caption {
    top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .russian .description .inner .caption {
    top: 170px;
  }
}
@media screen and (max-width: 768px) {
  .russian .description .inner .caption {
    top: 25vw;
  }
}
@media screen and (max-width: 544px) {
  .russian .description .inner .caption {
    top: 40vw;
  }
}
.russian .description .inner .caption p {
  font-size: 25px;
  line-height: 37px;
}
@media screen and (max-width: 1250px) {
  .russian .description .inner .caption p {
    font-size: 20px;
    line-height: 32px;
  }
}
@media screen and (max-width: 768px) {
  .russian .description .inner .caption p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 425px) {
  .russian .description .inner .caption p {
    font-size: 13px;
    line-height: 20px;
  }
}
.russian .features > .inner .feature-wrap .feature .inner:last-child {
  transform: scale(0.7) translateX(-20px);
}
.russian .features > .inner .feature-wrap .feature .inner .content {
  margin-top: 0px;
}
@media screen and (max-width: 1450px) {
  .russian .features > .inner .feature-wrap .feature .inner .content {
    margin-top: 20px;
  }
}
.russian .features > .inner .feature-wrap .feature .inner .content ul li {
  font-size: 20px;
}
@media screen and (max-width: 1450px) {
  .russian .features > .inner .feature-wrap .feature .inner .content ul li {
    font-size: 13px;
  }
}
.russian .features > .inner .feature-wrap .feature .inner .content.left {
  padding-left: 20px;
}
@media screen and (max-width: 450px) {
  .russian .features > .inner .feature-wrap .feature .inner .content.left ul {
    margin-left: -100px;
  }
}
.russian .features > .inner .feature-wrap .feature .inner .content.left ul li:nth-child(2) {
  margin-top: 145px;
  margin-left: 60px;
}
@media screen and (max-width: 1450px) {
  .russian .features > .inner .feature-wrap .feature .inner .content.left ul li:nth-child(2) {
    margin-top: 80px;
    margin-left: 30px;
  }
}
.russian .features > .inner .feature-wrap .feature .inner .content.left ul li:nth-child(3) {
  margin-left: 10px;
  margin-top: 180px;
}
@media screen and (max-width: 1450px) {
  .russian .features > .inner .feature-wrap .feature .inner .content.left ul li:nth-child(3) {
    margin-top: 110px;
  }
}
.russian .features > .inner .feature-wrap .feature .inner .content.right {
  right: -270px;
}
@media screen and (max-width: 1650px) {
  .russian .features > .inner .feature-wrap .feature .inner .content.right {
    right: -140px;
  }
}
@media screen and (max-width: 1450px) {
  .russian .features > .inner .feature-wrap .feature .inner .content.right {
    right: -150px;
  }
}
.russian .features > .inner .feature-wrap .feature .inner .content.right ul {
  align-items: start;
}
@media screen and (max-width: 1650px) {
  .russian .features > .inner .feature-wrap .feature .inner .content.right ul {
    align-items: center;
  }
}
@media screen and (max-width: 450px) {
  .russian .features > .inner .feature-wrap .feature .inner .content.right ul li {
    width: 60%;
  }
}
.russian .features > .inner .feature-wrap .feature .inner .content.right ul li:nth-child(2) {
  margin-top: 135px;
  transform: translateX(70px);
}
@media screen and (max-width: 1450px) {
  .russian .features > .inner .feature-wrap .feature .inner .content.right ul li:nth-child(2) {
    margin-top: 70px;
    transform: none;
  }
}
.russian .features > .inner .feature-wrap .feature .inner .content.right ul li:nth-child(3) {
  transform: translateX(60px);
  margin-top: 190px;
}
@media screen and (max-width: 1450px) {
  .russian .features > .inner .feature-wrap .feature .inner .content.right ul li:nth-child(3) {
    margin-top: 110px;
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .russian .features > .inner .feature-wrap .feature .inner .content.right ul li {
    font-size: 13px;
  }
}
.russian .testing .inner .wrap .section p {
  font-size: 30px;
  line-height: 136%; /* 54.4px */
  letter-spacing: 1.2px;
}
@media screen and (max-width: 1450px) {
  .russian .testing .inner .wrap .section p {
    font-size: 30px;
  }
}
@media screen and (max-width: 1250px) {
  .russian .testing .inner .wrap .section p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1150px) {
  .russian .testing .inner .wrap .section p {
    text-align: center;
  }
}
@media screen and (max-width: 680px) {
  .russian .testing .inner .wrap .section p {
    font-size: 16px;
  }
}
.russian .testing .inner .wrap .section .sub {
  font-size: 16px;
}
.russian footer .inner .upper .content .heading {
  padding-left: 140px;
}
@media screen and (max-width: 1650px) {
  .russian footer .inner .upper .content .heading {
    padding-left: 110px;
  }
}
@media screen and (max-width: 1250px) {
  .russian footer .inner .upper .content .heading {
    padding-left: 90px;
  }
}
@media screen and (max-width: 768px) {
  .russian footer .inner .upper .content .heading {
    padding-left: 0;
  }
}
.russian footer .inner .upper .content .heading h4 {
  color: #fcfcfc;
  font-family: "Orbitron";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 125% */
  letter-spacing: 1.44px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1650px) {
  .russian footer .inner .upper .content .heading h4 {
    font-size: 35px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1450px) {
  .russian footer .inner .upper .content .heading h4 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1250px) {
  .russian footer .inner .upper .content .heading h4 {
    font-size: 25px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .russian footer .inner .upper .content .heading h4 {
    height: 70px;
  }
}
@media screen and (max-width: 510px) {
  .russian footer .inner .upper .content .heading h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .russian footer .inner .upper .content .sub {
    font-size: 15px;
    letter-spacing: 5px;
  }
}
.russian footer .inner .upper .content .socials .pc {
  width: 80%;
  margin-top: 20px;
}
@media screen and (max-width: 1250px) {
  .russian footer .inner .upper .content .socials .pc {
    margin-top: 0px;
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .russian footer .inner .upper .content .socials .pc {
    display: none;
  }
}
.russian footer .inner .upper .content .socials .mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .russian footer .inner .upper .content .socials .mobile {
    display: inline;
    margin-top: 280px;
    width: 200px;
  }
}
.russian footer .inner .upper .content a {
  margin-top: 50px;
  width: 55%;
  text-align: center;
  align-items: center;
}
@media screen and (max-width: 1450px) {
  .russian footer .inner .upper .content a {
    width: 50%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1250px) {
  .russian footer .inner .upper .content a {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1150px) {
  .russian footer .inner .upper .content a {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .russian footer .inner .upper .content a {
    margin: auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  .russian footer .inner .upper .content a {
    width: 90%;
  }
}
.russian footer .inner .upper .content a svg {
  font-size: 25px;
}
.russian footer .brand-logo {
  text-align: center;
}
.russian footer .brand-logo img {
  width: 200px;
}
.russian footer ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .russian footer ul {
    flex-direction: column;
    align-items: center;
  }
}
.russian footer ul li {
  list-style: none;
}
.russian footer ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Orbitron";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 800px) {
  .russian footer ul li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .russian footer ul li a {
    font-size: 15px;
  }
}
.russian footer .copyrights {
  color: #fff;
  font-family: "Nohemi-Regular";
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 300% */
  letter-spacing: 7.44px;
  text-transform: uppercase;
  opacity: 0.5;
  text-align: center;
  margin-top: 70px;
}
.russian footer .copyrights a {
  text-decoration: none;
  color: #fff;
  text-align: center;
}
.russian footer .copyrights span {
  font-family: "Nohemi-Regular" !important;
}

.spinner-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(41, 41, 51);
  z-index: 999999;
}

.sk-folding-cube {
  position: absolute;
  top: 48%;
  left: 48%;
  width: 40px;
  height: 40px;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}/*# sourceMappingURL=app.css.map */