:root {
  --container-width: 100%;
  --container-gap: 20rem;
  --row-cols: 12;
  --row-gap-x: 20rem;
  --row-gap-y: 20rem;
  --body-ff: "Inter Tight", Arial, Helvetica, sans-serif;
  --body-fz: 16rem;
  --body-lh: 1.4;
  --body-fc: var(--black);
  --body-bg: var(--black);
  --h-ff: "Bebas Neue Cyr", Arial, Helvetica, sans-serif;
  --h-fw: normal;
  --h-lh: 0.9;
  --h-mb: 0 0 24rem 0;
  --h1-fz: 72rem;
  --h2-fz: 64rem;
  --h3-fz: 52rem;
  --h4-fz: 48rem;
  --h5-fz: 42rem;
  --h6-fz: 36rem;
  --p-mb: 0 0 25px 0;
  --sec-p: 100rem;
  --sec-h-mb: 50rem;
  --sec-h-t-mb: 20rem;
  --black: #17181F;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray-deep: #C7C4C1;
  --gray-low: #EEE2D6;
  --orange: #DAAD77;
  --orange-dim: #FFFAF4;
  --orange-light: rgba(250, 234, 215, 0.85);
  --orange-deep: rgba(211, 168, 116, 0.2);
}

@media screen and (max-width: 1200px) {
  :root {
    --body-fz: 14rem;
    --h1-fz: 52rem;
    --h2-fz: 48rem;
    --h3-fz: 42rem;
    --h4-fz: 38rem;
    --h5-fz: 36rem;
    --h6-fz: 32rem;
    --sec-p: 75rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --body-fz: 14rem;
    --h1-fz: 42rem;
    --h2-fz: 40rem;
    --h3-fz: 36rem;
    --h4-fz: 32rem;
    --h5-fz: 28rem;
    --h6-fz: 26rem;
    --sec-p: 50rem;
    --sec-h-t-mb: 14rem;
  }
}
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--body-bg);
  z-index: 9999;
  left: 0;
  top: 0;
}
.preloader-logo {
  max-width: 239rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .preloader-logo {
    max-width: 180rem;
  }
}
.preloader.active {
  pointer-events: none;
}

.slide-anim-inner {
  overflow: hidden;
  position: relative;
}
.slide-anim-inner-text {
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.slide-anim-inner-text:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(110%);
}
.slide-anim:hover .slide-anim-inner-text:nth-child(1) {
  transform: translateY(-110%);
}
.slide-anim:hover .slide-anim-inner-text:nth-child(2) {
  transform: translateY(0%);
}

.container {
  max-width: var(--container-width);
  width: 100%;
  padding-left: var(--container-gap);
  padding-right: var(--container-gap);
  box-sizing: border-box;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--row-gap-x) * -0.5);
  margin-left: calc(var(--row-gap-x) * -0.5);
  margin-top: calc(var(--row-gap-y) * -1);
}
.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--row-gap-x) * 0.5);
  padding-left: calc(var(--row-gap-x) * 0.5);
  margin-top: var(--row-gap-y);
  box-sizing: border-box;
  flex-grow: 1;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  width: 100%;
}

@media screen and (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (min-width: 991px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
@font-face {
  font-family: "Bebas Neue Cyr";
  src: url("../img/BebasNeueCyrillic.woff2") format("woff2"), url("../img/BebasNeueCyrillic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.fw-100 {
  font-weight: 100 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.color-black {
  color: var(--black) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.color-white {
  color: var(--white) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.color-gray {
  color: var(--gray) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.reset-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}
.d-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

@media screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media screen and (min-width: 991px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
@media screen and (min-width: 1440px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
}
.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-items-start {
  align-items: flex-start !important;
}

.flex-items-center {
  align-items: center !important;
}

.flex-items-end {
  align-items: flex-end !important;
}

.flex-content-start {
  justify-content: start !important;
}

.flex-content-center {
  justify-content: center !important;
}

.flex-content-end {
  justify-content: flex-end !important;
}

.flex-content-between {
  justify-content: space-between !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-one {
  flex: 1 !important;
}

.no-wrap {
  flex-wrap: nowrap !important;
}

.w-100 {
  width: 100% !important;
}
.w-100-vw {
  width: 100vw !important;
}

.mw-100 {
  max-width: 100% !important;
}
.mw-100-vw {
  max-width: 100vw !important;
}

.h-100 {
  height: 100% !important;
}
.h-100-vh {
  height: 100vh !important;
}
.h-100-svh {
  height: 100svh !important;
}
.h-100-lvh {
  height: 100lvh !important;
}
.h-100-dvh {
  height: 100dvh !important;
}

.mh-100 {
  max-height: 100% !important;
}
.mh-100-vh {
  max-height: 100vh !important;
}
.mh-100-svh {
  max-height: 100svh !important;
}
.mh-100-lvh {
  max-height: 100lvh !important;
}
.mh-100-dvh {
  max-height: 100dvh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.position-relative {
  position: relative !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 0.0525vw;
}
@media (max-width: 1200px) {
  html {
    font-size: 1px;
  }
}

body {
  font-family: var(--body-ff);
  font-size: var(--body-fz);
  line-height: var(--body-lh);
  color: var(--body-fc);
  background-color: var(--body-bg);
  -webkit-tap-highlight-color: transparent;
  text-rendering: geometricPrecision;
}

* {
  outline-offset: 3px;
  outline-color: var(--black);
}
*::selection {
  color: var(--white);
  background: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-ff);
  font-weight: var(--h-fw);
  line-height: var(--h-lh);
  margin: var(--h-mb);
  letter-spacing: -1px;
}

h1,
.h1 {
  font-size: var(--h1-fz);
}

h2,
.h2 {
  font-size: var(--h2-fz);
}

h3,
.h3 {
  font-size: var(--h3-fz);
}

h4,
.h4 {
  font-size: var(--h4-fz);
}

h5,
.h5 {
  font-size: var(--h5-fz);
}

h6,
.h6 {
  font-size: var(--h6-fz);
}

p {
  margin: var(--p-mb);
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

b,
strong {
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

.button {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background-color: transparent;
  transition: opacity ease-in-out 0.2s;
}
.button:hover {
  opacity: 0.8;
}
.button-icon {
  width: 54rem;
  height: 54rem;
  border-radius: 100%;
  background-color: var(--orange);
}
@media (max-width: 768px) {
  .button-icon {
    width: 40rem;
    height: 40rem;
  }
}
.button-icon svg {
  width: 20rem;
  height: auto;
}
.button-small {
  gap: 8rem;
}
.button-small .button-icon {
  width: 32rem;
  height: 32rem;
}
.button-small .button-icon svg {
  width: 12rem;
}
.button-fill {
  background-color: var(--orange);
  border-radius: 50rem;
  padding: 8rem 8rem 8rem 28rem;
}
.button-fill .button-icon {
  width: 48rem;
  height: 48rem;
}
@media (max-width: 1200px) {
  .button-fill .button-icon {
    width: 40rem;
    height: 40rem;
  }
}

a path,
button path {
  transition: fill ease-in-out 0.2s;
}

.input-group:not(:last-child) {
  margin-bottom: 32rem;
}
@media (max-width: 1200px) {
  .input-group:not(:last-child) {
    margin-bottom: 24rem;
  }
}
.input-label {
  display: block;
  margin-bottom: 5px;
}
.input-control {
  font-family: var(--h-ff);
  text-transform: uppercase;
  font-weight: normal;
  font-size: 40rem;
  max-width: 100%;
  width: 100%;
  min-height: 48rem;
  padding: 0;
  border: none;
  box-sizing: border-box;
  outline: none;
  border-bottom: 1px solid var(--gray-deep);
}
@media (max-width: 1200px) {
  .input-control {
    font-size: 32rem;
  }
}
.input-control::-webkit-input-placeholder {
  opacity: 0.2;
}
.input-control:-moz-placeholder {
  opacity: 0.2;
}
.input-control::-moz-placeholder {
  opacity: 0.2;
}
.input-control:-ms-input-placeholder {
  opacity: 0.2;
}
.input-checkbox, .input-radio {
  display: block;
  margin: 0;
  position: relative;
}
.input-checkbox input[type=checkbox],
.input-checkbox input[type=radio], .input-radio input[type=checkbox],
.input-radio input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 1;
  visibility: hidden;
}
.input-checkbox span, .input-radio span {
  display: block;
  position: relative;
  padding-left: 30rem;
}
.input-checkbox span:before, .input-checkbox span:after, .input-radio span:before, .input-radio span:after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  left: 0;
  top: 1rem;
  border-radius: 2px;
  box-sizing: border-box;
  cursor: pointer;
  transition: top ease-in-out 0.2s, left ease-in-out 0.2s, opacity ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
.input-checkbox input[type=checkbox]:checked + span:before {
  background-color: var(--black);
}
.input-checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.input-checkbox span:before {
  border: 1px solid var(--black);
}
.input-checkbox span:after {
  background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='11'%20viewBox='0%200%2014%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M13.0303%202.03027L4.5%2010.5605L0.469727%206.53027L1.53027%205.46973L4.5%208.43945L11.9697%200.969727L13.0303%202.03027Z'%20fill='white'/%3e%3c/svg%3e");
  background-position: 57% 50%;
  background-repeat: no-repeat;
  background-size: 13rem;
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
}
.input-radio input[type=radio]:checked + span:before {
  background-color: var(--s-black);
}
.input-radio input[type=radio]:checked + span:after {
  opacity: 1;
}
.input-radio span:before, .input-radio span:after {
  border-radius: 100%;
}
.input-radio span:after {
  width: 12px;
  height: 12px;
  left: 5px;
  top: 6px;
  background-color: var(--s-white);
}
.input-radio span:before {
  border: 1px solid var(--s-black);
}

select.input-control {
  background-image: url("data:image/svg+xml,%3csvg%20width='19'%20height='11'%20viewBox='0%200%2019%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%201L9.5%209.5L18%201'%20stroke='black'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

button.button {
  font-family: inherit;
  border: none;
  outline: none;
  font-size: inherit;
  font-weight: normal;
}

.section {
  padding-top: var(--sec-p);
  padding-bottom: var(--sec-p);
  min-height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--orange-dim);
  position: relative;
}
.section-header {
  margin-bottom: var(--sec-h-mb);
}
.section-desc {
  max-width: 536rem;
}
.section-title {
  margin-bottom: var(--sec-h-t-mb);
}
.section-title:last-child {
  margin: 0;
}
.section.has-bg {
  background-position: center;
  background-size: cover;
  position: relative;
}
.section.has-bg:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  left: 0;
  top: 0;
  position: absolute;
}

.modal {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  padding: var(--container-gap);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.1s, visibility ease-in-out 0.1s;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal-inner {
  max-width: 500px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
  margin: 0 auto;
}
.modal-content {
  background-color: var(--white);
  padding: 35px;
  box-sizing: border-box;
  position: relative;
  pointer-events: initial;
}
.modal-close {
  cursor: pointer;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--gray);
  z-index: 2;
}
.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.1s, visibility ease-in-out 0.1s;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: relative;
}
.swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--black);
  opacity: 0.5 !important;
  transition: opacity ease-in-out 0.2s;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
}
.swiper-control {
  color: var(--white);
  font-family: inherit;
  font-size: 22px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border: none;
  background-color: var(--black);
  z-index: 2;
  width: 40px;
  height: 40px;
  transition: opacity ease-in-out 0.2s;
  --control-gap: -65px;
}
.swiper-control:hover {
  opacity: 0.5;
}
.swiper-control.prev {
  left: var(--control-gap);
}
.swiper-control.next {
  right: var(--control-gap);
}
.swiper-control.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.header {
  position: fixed;
  padding: 20rem 0;
  z-index: 999;
  width: 100%;
  left: 0;
  top: 0;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  transition: background-color ease-in-out 0.5s, backdrop-filter ease-in-out 0.2s, color ease-in-out 0.2s;
}
@media (max-width: 768px) {
  .header {
    padding: 15rem 0;
  }
}
.header.active {
  background-color: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(7.5px);
}
.header-container {
  gap: 16rem;
}
.header-logo {
  max-width: 218rem;
  width: 100%;
}
.header-logo svg {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .header-logo {
    margin-right: auto;
    max-width: 164rem;
  }
}
.header-toggle {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  position: relative;
  width: 50rem;
  height: 42rem;
  cursor: pointer;
  outline: none;
  will-change: transform;
  transition: transform cubic-bezier(0.76, 0, 0.24, 1) 0.6s;
}
@media (max-width: 576px) {
  .header-toggle {
    width: 37rem;
  }
}
.header-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--white);
  position: absolute;
  will-change: auto;
  transition: all cubic-bezier(0.76, 0, 0.24, 1) 0.6s;
}
.header-toggle span:nth-child(1) {
  top: calc(50% - 6rem);
}
.header-toggle span:nth-child(2) {
  top: calc(50% + 6rem);
}
.header-toggle.active {
  transform: rotate(180deg);
}
.header-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
.header-toggle.active span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
}
.header-black:not(.menu-active) {
  color: var(--black);
}
.header-black:not(.menu-active) .header-toggle span {
  background-color: var(--black);
}
.header-black:not(.menu-active) .header-logo path {
  fill: var(--black);
}
.header.menu-active {
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
}

.main {
  overflow: hidden;
}

.line {
  overflow: hidden;
}

.section-title.slide-up .line {
  padding-top: 10rem;
  margin-top: -10rem;
}

.hero {
  position: relative;
}
.hero-image {
  z-index: 3;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2, 0.2);
  text-align: center;
  width: 85%;
  height: 100%;
}
@media (max-width: 1200px) {
  .hero-image {
    width: 300rem;
    height: 200rem;
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (max-width: 991px) {
  .hero-image {
    width: 200rem;
    height: 150rem;
  }
}
@media (max-width: 768px) {
  .hero-image {
    width: 180rem;
    height: 120rem;
  }
}
@media (max-width: 576px) {
  .hero-image {
    height: 190rem;
    width: 80vw;
  }
}
.hero-image-inner {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  transition: clip-path 1.25s cubic-bezier(0.86, 0, 0.07, 1) 0s;
}
.hero-image-inner.animate {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.hero-image-inner video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-inner:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.hero-line {
  text-align: center;
  font-family: var(--h-ff);
  text-transform: uppercase;
}
.hero-line:nth-child(2) {
  position: relative;
  top: 100rem;
}
@media (max-width: 1200px) {
  .hero-line:nth-child(2) {
    top: 10vh;
  }
}
@media (max-width: 576px) {
  .hero-line:nth-child(2) {
    top: 10rem;
    margin-top: 200rem;
  }
}
.hero-line-text {
  font-size: 48rem;
  line-height: 1;
}
@media (max-width: 1200px) {
  .hero-line-text {
    font-size: 7vw;
  }
}
.hero-line-text.large {
  font-size: 13vw;
}
@media (max-width: 1200px) {
  .hero-line-text.large {
    font-size: 18vw;
  }
}
.hero-desc {
  position: absolute;
  bottom: 40rem;
  left: 20rem;
  border-radius: 16rem;
  background-color: var(--orange-light);
  backdrop-filter: blur(6.5px);
  padding: 32rem;
  box-sizing: border-box;
  font-size: 24rem;
  line-height: 1.2;
  max-width: 635rem;
  z-index: 2;
  text-align: left;
  transform: translate(0, 100%);
  opacity: 0;
}
@media (max-width: 1200px) {
  .hero-desc {
    font-size: 18rem;
    padding: 24rem;
    max-width: 450rem;
  }
}
@media (max-width: 991px) {
  .hero-desc {
    font-size: 16rem;
  }
}
@media (max-width: 576px) {
  .hero-desc {
    max-width: calc(100vw - 40rem);
  }
}

.about {
  position: relative;
}
.about video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
.about-desc {
  position: absolute;
  bottom: 40rem;
  left: 20rem;
  border-radius: 16rem;
  background-color: var(--orange-light);
  backdrop-filter: blur(6.5px);
  padding: 32rem;
  box-sizing: border-box;
  font-size: 24rem;
  line-height: 1.2;
  max-width: 635rem;
  z-index: 2;
}
@media (max-width: 1200px) {
  .about-desc {
    font-size: 18rem;
    padding: 24rem;
    max-width: 450rem;
  }
}
@media (max-width: 991px) {
  .about-desc {
    font-size: 16rem;
  }
}
@media (max-width: 576px) {
  .about-desc {
    max-width: calc(100vw - 40rem);
  }
}

.builder {
  position: relative;
  z-index: 9;
  scale: 0.85;
  padding-bottom: 0;
  border-radius: 16rem 16rem 0 0;
}
@media (max-width: 1200px) {
  .builder {
    scale: 1;
    min-height: auto;
  }
}
.builder-container {
  position: relative;
  height: 100%;
}
.builder-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.builder-inner-sequence {
  max-width: 50vw;
  width: 100%;
}
@media screen and (max-width: 1920px) {
  .builder-inner-sequence {
    max-width: 68vw;
  }
}
@media (max-width: 576px) {
  .builder-inner-sequence {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .builder-inner {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
  }
}
@media (max-width: 1200px) {
  .builder-markers {
    padding: 30rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10rem;
  }
}
@media (max-width: 576px) {
  .builder-markers {
    gap: 0;
  }
}
@media screen and (min-width: 1200px) {
  .builder-markers-item {
    position: absolute;
    box-sizing: border-box;
  }
  .builder-markers-item:nth-child(1) {
    left: 0;
    bottom: 0;
    padding-left: var(--container-gap);
  }
  .builder-markers-item:nth-child(2) {
    right: 0;
    top: 0;
    padding-right: var(--container-gap);
  }
}
@media (max-width: 1200px) {
  .builder-markers-item {
    width: 45%;
  }
  .builder-markers-item br {
    display: none;
  }
}
@media (max-width: 576px) {
  .builder-markers-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .builder-marker {
    padding: 5rem 0;
  }
}
@media (max-width: 576px) {
  .builder-marker {
    padding: 0;
  }
}
.builder-marker-num {
  position: absolute;
}
@media (max-width: 1200px) {
  .builder-marker-num {
    display: none;
  }
}
.builder-marker-num span {
  width: 50rem;
  height: 50rem;
  border-radius: 100%;
  background-color: var(--orange);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  position: relative;
}
.builder-marker-num:before {
  content: "";
  width: 88rem;
  height: 88rem;
  border-radius: 100%;
  background: rgba(217, 217, 217, 0.01);
  border: 1px solid var(--orange);
  backdrop-filter: blur(2px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.builder-marker-text {
  position: relative;
  font-family: var(--h-ff);
  padding-left: 26rem;
  text-transform: uppercase;
  padding-bottom: 10rem;
  font-size: 40rem;
  line-height: 1;
  letter-spacing: -0.6rem;
}
@media (max-width: 1200px) {
  .builder-marker-text {
    font-size: 24rem;
  }
}
@media (max-width: 576px) {
  .builder-marker-text {
    padding: 16rem 0 16rem 26rem;
    border-bottom: 1px solid var(--gray-deep);
  }
  .builder-marker-text br {
    display: none;
  }
}
.builder-marker-text:before {
  content: "";
  width: 10rem;
  height: 10rem;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  background-color: var(--orange);
}
@media (max-width: 576px) {
  .builder-marker-text:before {
    top: 16rem;
  }
}
.builder-marker-line {
  position: absolute;
}
.builder-marker-line-back {
  position: absolute;
  background-size: 100% 100%;
  opacity: 0;
}
.builder-marker-line-inner {
  position: relative;
}
@media (max-width: 1200px) {
  .builder-marker-line {
    display: none;
  }
}
.builder-marker-line svg:nth-child(1) {
  width: 100%;
  height: 100%;
}
.builder-marker-line svg path {
  stroke-opacity: 1;
  stroke: #C7C4C1;
}
@media screen and (min-width: 1200px) {
  .builder-marker {
    position: relative;
  }
  .builder-marker:not(:last-child) {
    margin-bottom: 25rem;
  }
  .builder-marker.marker-1 .builder-marker-line,
  .builder-marker.marker-1 .builder-marker-line-back {
    bottom: 0;
    left: 0;
    width: 612rem;
    height: 225rem;
  }
  .builder-marker.marker-1 .builder-marker-line:after,
  .builder-marker.marker-1 .builder-marker-line-back:after {
    left: 0;
  }
  .builder-marker.marker-1 .builder-marker-line-back {
    background-image: url("data:image/svg+xml,%3csvg%20width='613'%20height='227'%20viewBox='0%200%20613%20227'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20class='path-line'%20d='M-1.96701e-05%20226L445.612%20226C450.823%20226%20455.708%20223.462%20458.704%20219.198L612%201.00005'%20stroke='%23C7C4C1'%20stroke-opacity='1'%20stroke-width='2'/%3e%3c/svg%3e");
  }
  .builder-marker.marker-1 .builder-marker-num {
    right: -4%;
    top: -10%;
  }
  .builder-marker.marker-2 .builder-marker-line,
  .builder-marker.marker-2 .builder-marker-line-back {
    bottom: 0;
    left: 0;
    width: 749rem;
    height: 232rem;
  }
  .builder-marker.marker-2 .builder-marker-line-back {
    background-image: url("data:image/svg+xml,%3csvg%20width='750'%20height='234'%20viewBox='0%200%20750%20234'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20class='path-line'%20d='M0%20233H570.734C575.83%20233%20580.621%20230.572%20583.635%20226.463L749%201'%20stroke='%23C7C4C1'%20stroke-opacity='1'%20stroke-width='2'/%3e%3c/svg%3e");
  }
  .builder-marker.marker-2 .builder-marker-num {
    right: -3%;
    top: -10%;
  }
  .builder-marker.marker-3 {
    width: 444rem;
  }
  .builder-marker.marker-3 .builder-marker-line,
  .builder-marker.marker-3 .builder-marker-line-back {
    top: 100%;
    right: 0;
    width: 730rem;
    height: 186rem;
  }
  .builder-marker.marker-3 .builder-marker-line-back {
    background-image: url("data:image/svg+xml,%3csvg%20width='731'%20height='188'%20viewBox='0%200%20731%20188'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20class='path-line'%20d='M731%201.00045L226.464%201.00001C222.677%201%20219.013%202.34328%20216.123%204.79092L1%20187'%20stroke='%23C7C4C1'%20stroke-opacity='1'%20stroke-width='2'/%3e%3c/svg%3e");
  }
  .builder-marker.marker-3 .builder-marker-num {
    left: -5%;
    bottom: -12%;
  }
  .builder-marker.marker-4 {
    margin-left: auto;
    width: 300rem;
  }
  .builder-marker.marker-4 .builder-marker-line,
  .builder-marker.marker-4 .builder-marker-line-back {
    top: 100%;
    right: 0;
    width: 675rem;
    height: 185rem;
  }
  .builder-marker.marker-4 .builder-marker-line-back {
    right: -2rem !important;
    background-image: url("data:image/svg+xml,%3csvg%20width='676'%20height='187'%20viewBox='0%200%20676%20187'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20class='path-line'%20d='M676%201.00006L335.69%201.00003C332.954%201.00003%20330.263%201.70182%20327.875%203.03832L0.999984%20186'%20stroke='%23C7C4C1'%20stroke-opacity='1'%20stroke-width='2'/%3e%3c/svg%3e");
  }
  .builder-marker.marker-4 .builder-marker-num {
    left: -5%;
    bottom: -7%;
  }
}
.builder-marker.marker-1 .builder-marker-line-back, .builder-marker.marker-2 .builder-marker-line-back {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
  bottom: -1.7rem;
  left: -2rem;
}
.builder-marker.marker-3 .builder-marker-line-back, .builder-marker.marker-4 .builder-marker-line-back {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  top: 0;
  right: -4rem;
}
.builder-marker-num {
  z-index: 3;
}
.builder-button {
  position: absolute;
  right: var(--container-gap);
  bottom: 10rem;
}
@media (max-width: 1200px) {
  .builder-button {
    right: 0;
    bottom: 0;
    position: relative;
  }
}

canvas {
  position: relative;
  width: 100%;
  height: 100%;
  will-change: auto;
  display: block;
}

.builder-marker-text,
.builder-marker-num {
  opacity: 0;
}
@media (max-width: 1200px) {
  .builder-marker-text,
  .builder-marker-num {
    opacity: 1;
  }
}

.steps {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 9;
  padding-bottom: 0;
}
@media (max-width: 1200px) {
  .steps {
    min-height: auto;
  }
}
.steps-inner {
  padding-bottom: 20rem;
}
@media (max-width: 1200px) {
  .steps-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100vw;
    position: relative;
    left: -20rem;
    padding: 0 var(--container-gap);
    box-sizing: border-box;
  }
}
.steps-row {
  flex-wrap: nowrap;
}
.steps-row .col {
  width: 20%;
}
@media (max-width: 1200px) {
  .steps-row .col {
    width: 300rem;
    min-width: 300rem;
    max-width: 300rem;
  }
}
.steps-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.steps-box-img {
  overflow: hidden;
  max-height: 280rem;
}
.steps-box-img img {
  border-radius: 16rem;
  max-height: 95%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.steps-box-content {
  margin: 24rem 0;
  padding-left: 24rem;
  box-sizing: border-box;
  border-left: 1px solid var(--gray-deep);
  flex: 1;
}
@media (max-width: 1200px) {
  .steps-box-content {
    margin: 16rem 0;
    padding-left: 16rem;
  }
}
.steps-box-step, .steps-box-name {
  text-transform: uppercase;
  font-family: var(--h-ff);
  line-height: 1;
}
.steps-box-step {
  margin-bottom: 25rem;
  font-size: 24rem;
}
.steps-box-name {
  margin-bottom: 25rem;
  font-size: 32rem;
}
.steps-box-desc {
  max-width: 297rem;
}
.steps-progress {
  display: flex;
  gap: 20rem;
  position: relative;
  background-color: var(--orange-deep);
  height: 7rem;
  border-radius: 10rem;
}
@media (max-width: 1200px) {
  .steps-progress {
    display: none;
  }
}
.steps-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 10rem;
  background-color: var(--orange);
}
@media (max-width: 1200px) {
  .steps-progress-fill {
    width: 100%;
  }
}
.steps-progress-col {
  flex: 1;
  height: 100%;
  position: relative;
}
.steps-progress-col:before {
  content: "";
  width: 16rem;
  height: 16rem;
  border-radius: 100%;
  border: 3px solid var(--white);
  background-color: var(--orange);
  position: absolute;
  left: -10rem;
  top: 50%;
  transform: translate(0, -50%);
}

.projects {
  min-height: inherit;
  position: relative;
  z-index: 9;
}
.projects-inner, .projects-row {
  width: 900rem;
  height: 900rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1200px) {
  .projects-inner, .projects-row {
    width: 100%;
    height: auto;
  }
}
.projects-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  transform-style: preserve-3d;
  margin: -200rem auto 50rem auto;
  z-index: 2;
}
@media (max-width: 1200px) {
  .projects-row {
    margin: 40rem 0 0 0;
  }
}
.projects-box {
  position: absolute;
  border-radius: 16rem;
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--gray-low);
  width: 200rem;
  cursor: pointer;
  transition: opacity ease-in-out 0.2s;
}
@media (max-width: 1200px) {
  .projects-box {
    display: none;
  }
}
.projects-box:hover {
  opacity: 0.8;
}
.projects-box {
  top: calc(50% - 120rem);
  left: calc(50% - 100rem);
}
.projects-box:nth-child(1) {
  transform: rotate(0deg) translate(350rem, 0) rotate(90deg);
}
.projects-box:nth-child(2) {
  transform: rotate(45deg) translate(350rem, 0) rotate(90deg);
}
.projects-box:nth-child(3) {
  transform: rotate(90deg) translate(350rem, 0) rotate(90deg);
}
.projects-box:nth-child(4) {
  transform: rotate(135deg) translate(350rem, 0) rotate(90deg);
}
.projects-box:nth-child(5) {
  transform: rotate(180deg) translate(350rem, 0) rotate(90deg);
}
.projects-box:nth-child(6) {
  transform: rotate(225deg) translate(350rem, 0) rotate(90deg);
}
.projects-box:nth-child(7) {
  transform: rotate(270deg) translate(350rem, 0) rotate(90deg);
}
.projects-box:nth-child(8) {
  transform: rotate(315deg) translate(350rem, 0) rotate(90deg);
}
.projects-box-header {
  padding: 12rem;
  text-transform: uppercase;
  font-size: 14rem;
  font-weight: 500;
  position: relative;
}
.projects-box-header:after {
  content: "";
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  background-color: var(--orange);
  position: absolute;
  right: 12rem;
  top: 50%;
  transform: translate(0, -50%);
}
.projects-line {
  position: absolute;
  width: 100vw;
  display: flex;
  align-items: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.projects-line img {
  min-width: 3200rem;
  position: relative;
  left: -40%;
}
@media (max-width: 1200px) {
  .projects-line img {
    min-width: 2000rem;
  }
}
@media (max-width: 576px) {
  .projects-line img {
    min-width: 980rem;
  }
}

.achieve {
  position: relative;
  height: auto;
  min-height: inherit;
  z-index: 9;
}
.achieve-cloud {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 1200px) {
  .achieve-cloud {
    display: none;
  }
}
.achieve-cloud img {
  width: 100%;
  height: 100%;
}
.achieve-cloud.coloud-1 {
  width: 100%;
  left: 0;
  top: -100;
}
.achieve-cloud.coloud-2 {
  width: 940rem;
  left: 10%;
  top: 500rem;
}
@media (max-width: 991px) {
  .achieve:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 576px) {
  .achieve-img {
    min-height: 900rem;
    object-fit: cover;
  }
}
.achieve-video {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
@media (max-width: 576px) {
  .achieve-video {
    min-width: 629rem;
    left: inherit;
    right: 0;
  }
}
.achieve-person {
  display: flex;
  align-items: center;
  gap: 24rem;
}
@media (max-width: 768px) {
  .achieve-person {
    gap: 16rem;
    padding-bottom: 10rem;
  }
}
.achieve-person-img {
  width: 180rem;
  height: 180rem;
  border-radius: 100%;
  overflow: hidden;
  filter: grayscale(100%);
}
@media (max-width: 1200px) {
  .achieve-person-img {
    width: 100rem;
    height: 100rem;
  }
}
@media (max-width: 768px) {
  .achieve-person-img {
    width: 56rem;
    height: 56rem;
  }
}
.achieve-person-name {
  font-family: var(--h-ff);
  text-transform: uppercase;
  font-size: 36rem;
  line-height: 1;
}
@media (max-width: 1200px) {
  .achieve-person-name {
    font-size: 28rem;
  }
}
@media (max-width: 768px) {
  .achieve-person-name {
    font-size: 18rem;
  }
}
@media (max-width: 768px) {
  .achieve-person-desc {
    font-size: 12rem;
  }
}
@media (max-width: 576px) {
  .achieve-header {
    margin-bottom: 35rem;
  }
}
@media (max-width: 576px) {
  .achieve-header h2 {
    font-size: 32rem;
  }
}
.achieve-header p {
  max-width: 465rem;
}
.achieve-inner {
  position: absolute;
  left: 0;
  top: 170rem;
  width: 100%;
  margin-bottom: 80rem;
  z-index: 2;
}
@media (max-width: 1200px) {
  .achieve-inner {
    top: 75rem;
  }
}
@media (max-width: 768px) {
  .achieve-inner {
    top: 50rem;
  }
}
.achieve-stat {
  margin-bottom: 35rem;
}
@media screen and (min-width: 991px) {
  .achieve-stat-row .col-lg-3:last-child {
    margin-left: auto;
  }
}
.achieve-stat-box {
  position: relative;
}
.achieve-stat-img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .achieve-stat-img {
    display: none;
  }
}
.achieve-stat-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 290rem;
}
@media (max-width: 991px) {
  .achieve-stat-text {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    max-width: 100%;
    text-align: left;
  }
}
.achieve-stat-val {
  font-family: var(--h-ff);
  text-transform: uppercase;
  line-height: 1;
  font-size: 160rem;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .achieve-stat-val {
    font-size: 70rem;
  }
}
@media (max-width: 768px) {
  .achieve-stat-val {
    font-size: 40rem;
  }
}
.achieve-stat-desc {
  font-size: 20rem;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .achieve-stat-desc {
    font-size: 16rem;
  }
}
@media (max-width: 768px) {
  .achieve-stat-desc {
    font-size: 14rem;
  }
}
.achieve-footer {
  position: absolute;
  width: 100%;
  z-index: 1;
  width: 100%;
  bottom: 0;
  padding: 40rem 0;
}
@media (max-width: 991px) {
  .achieve-footer {
    padding: 20rem 0;
  }
}
.achieve-footer-container {
  justify-content: space-between;
  align-items: center;
  gap: 16rem;
}
@media (max-width: 991px) {
  .achieve-footer-container {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.achieve-footer a {
  text-decoration: none;
}
.achieve-footer-builder {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu {
  position: fixed;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.menu-marquee {
  width: 100%;
  top: 100rem;
  left: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.menu-marquee .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.menu-marquee .swiper-slide {
  width: auto;
  position: relative;
}
@media screen and (max-width: 1920px) {
  .menu-marquee .swiper-slide img {
    max-height: 300rem;
    width: auto;
  }
}
.menu {
  background-color: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 150rem 20rem 20rem 20rem;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .menu {
    padding: 100rem 20rem 20rem 20rem;
    gap: 50rem;
    overflow-y: auto;
  }
}
.menu a {
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.menu a:hover {
  color: var(--orange);
}
.menu-inner {
  flex: 1;
}
@media screen and (min-width: 1200px) {
  .menu-inner {
    display: flex;
    align-items: center;
  }
}
.menu-inner-nav {
  flex: 1;
}
.menu-inner-nav-item {
  overflow: hidden;
}
.menu-inner-nav-item:not(:last-child) {
  margin-bottom: 16rem;
}
@media (max-width: 1200px) {
  .menu-inner-nav-item:not(:last-child) {
    margin-bottom: 12rem;
  }
}
.menu-inner-nav-link {
  display: inline-block;
  font-family: var(--h-ff);
  font-size: 64px;
  line-height: 0.9;
  position: relative;
  padding-left: 40rem;
  transform: translate(0px, 115%);
}
@media (max-width: 1200px) {
  .menu-inner-nav-link {
    font-size: 48rem;
    padding-left: 32rem;
  }
}
.menu-inner-nav-link:before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--body-ff);
  opacity: 0.3;
  font-size: 14rem;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .menu-inner-nav-link:before {
    font-size: 12rem;
  }
}
.menu-inner-video {
  position: relative;
  max-width: 425rem;
  will-change: auto;
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  transition: clip-path 1.25s cubic-bezier(0.86, 0, 0.07, 1) 0s;
}
.menu-inner-video.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.menu-inner-video video {
  width: 100%;
  height: auto;
  display: block;
}
.menu-inner-video:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.menu-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
}
@media (max-width: 1200px) {
  .menu-footer-meta {
    flex-direction: column;
    align-items: flex-start;
    font-size: 18rem;
  }
  .menu-footer-meta li:not(:last-child) {
    margin-bottom: 12rem;
  }
}
.menu {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 1.25s cubic-bezier(0.86, 0, 0.07, 1) 0s;
}
.menu.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
}

.socials {
  display: flex;
  gap: 12rem;
}
@media (max-width: 1200px) {
  .socials {
    padding-top: 12rem;
    gap: 8rem;
  }
}
.socials-item {
  background-color: var(--orange);
  width: 54rem;
  height: 54rem;
  border-radius: 100%;
  transition: opacity ease-in-out 0.2s !important;
}
@media (max-width: 1200px) {
  .socials-item {
    width: 40rem;
    height: 40rem;
  }
}
.socials-item:hover {
  opacity: 0.8;
}
.socials-item svg {
  width: 24rem;
  height: 24rem;
}
@media (max-width: 1200px) {
  .socials-item svg {
    width: 18rem;
    height: 18rem;
  }
}

.panel {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  right: 0;
  top: 0;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
  will-change: auto;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color ease-in-out 0.3s;
}
.panel-inner {
  pointer-events: all;
  position: absolute;
  right: 0;
  top: 0;
  width: 630rem;
  height: 100dvh;
  overflow-y: auto;
  background-color: var(--white);
  padding: 32rem;
  box-sizing: border-box;
  transform: translate(100%, 0);
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .panel-inner {
    width: 100vw;
    padding: 30rem 20rem;
  }
}
.panel-close {
  position: absolute;
  width: 54rem;
  height: 54rem;
  border-radius: 100%;
  right: 20rem;
  top: 20rem;
  border: 1px solid var(--gray-deep);
  cursor: pointer;
  transition: border-color ease-in-out 0.2s;
}
@media (max-width: 1200px) {
  .panel-close {
    width: 40rem;
    height: 40rem;
  }
}
.panel-close:hover {
  border-color: var(--black);
}
.panel-close svg {
  width: 18rem;
  height: 18rem;
}
@media (max-width: 1200px) {
  .panel-close svg {
    width: 14rem;
    height: 14rem;
  }
}
.panel.active {
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: all;
}
.panel.active .panel-inner {
  transform: translate(0, 0);
}
.panel-header {
  margin-bottom: 32rem;
}
@media (max-width: 1200px) {
  .panel-header {
    margin-bottom: 24rem;
    padding-right: 50rem;
  }
}
.panel-content {
  flex: 1;
  margin-bottom: 24rem;
}
.panel-title {
  max-width: 452rem;
  margin-bottom: 20rem;
  font-size: 48rem;
  line-height: 0.9;
}
@media (max-width: 1200px) {
  .panel-title {
    font-size: 32rem;
  }
}
.panel-desc {
  font-size: 16rem;
}
.panel-product {
  display: flex;
  gap: 24rem;
}
@media (max-width: 576px) {
  .panel-product {
    flex-direction: column-reverse;
  }
}
.panel-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.panel-product-name {
  margin-bottom: 16rem;
  font-family: var(--h-ff);
  font-size: 24rem;
  text-transform: uppercase;
  line-height: 1;
}
.panel-product-price {
  margin-top: auto;
}
.panel-product-price-tag {
  text-transform: uppercase;
  opacity: 0.6;
  font-size: 14rem;
  margin-bottom: 8rem;
}
.panel-product-price-val {
  font-family: var(--h-ff);
  text-transform: uppercase;
  font-size: 32rem;
  line-height: 1;
}
.panel-product-img {
  max-width: 200rem;
  border-radius: 16rem;
  overflow: hidden;
}