:root {
  --container-width: 1980px;
  --container-gap: 30px;
  --row-cols: 12;
  --row-gap-x: 10px;
  --row-gap-y: 10px;
  --body-ff: 'Neue Montreal', Arial, Helvetica, sans-serif;
  --body-fz: 20px;
  --body-lh: 1.4;
  --body-fc: var(--black);
  --body-bg: var(--white);
  --h-ff: var(--body-fc);
  --h-fw: 500;
  --h-lh: 0.95;
  --h-mb: 0 0 24px 0;
  --h1-fz: 90px;
  --h2-fz: 70px;
  --h3-fz: 56px;
  --h4-fz: 36px;
  --h5-fz: 32px;
  --h6-fz: 28px;
  --p-mb: 0 0 25px 0;
  --sec-p: 120px;
  --sec-p-double: 200px;
  --sec-h-mb: 40px;
  --sec-h-t-mb: 24px;
  --black: #17181B;
  --white: #ffffff;
  --gray: #F3F4F5;
  --gray-deep: rgba(225, 228, 230, 0.40);
  --gray-light: rgba(225, 228, 230, 0.15);
  --gray-dark: #D2D5DD;
  --gray-black: #6F7278;
  --gray-strong: #E5E7E9;
  --turquoise: #18B8AE;
  --green: #2DA850;
  --blue: #248AC3;
  --blue-deep: #3B6ED5;
  --red: #DB2A2A;
  --accent: var(--green);
  --base-radius: 12px;
  --half-radius: calc(var(--base-radius) - 4px);
}

@media screen and (max-width: 1650px) {
  :root {
    --body-fz: 16px;
    --h1-fz: 70px;
    --h2-fz: 48px;
    --h3-fz: 40px;
    --h4-fz: 28px;
    --h5-fz: 26px;
    --h6-fz: 24px;
    --h-mb: 0 0 16px 0;
    --sec-p: 100px;
    --sec-p-double: 140px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --container-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --container-gap: 16px;
    --h1-fz: 62px;
    --h2-fz: 42px;
    --h3-fz: 36px;
    --h4-fz: 32px;
    --h5-fz: 22px;
    --h6-fz: 20px;
    --sec-p: 80px;
    --sec-h-mb: 32px;
    --sec-h-t-mb: 16px;
  }
}
@media screen and (max-width: 576px) {
  :root {
    --h1-fz: 48px;
    --h2-fz: 32px;
    --h3-fz: 32px;
    --h4-fz: 24px;
    --h5-fz: 20px;
    --h6-fz: 18px;
  }
}
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: var(--white);
  left: 0;
  top: 0;
  will-change: opacity;
}
.preloader.active {
  pointer-events: none;
}

.container {
  max-width: var(--container-width);
  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;
}
.row.gy-medium {
  --row-gap-y: 32px;
}
.row.gx-medium {
  --row-gap-x: 32px;
}
.row.gy-0 {
  --row-gap-y: 0;
}

.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: 1650px) {
  .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: "Neue Montreal";
  src: url("../img/NeueMontreal-Regular.woff2") format("woff2"), url("../img/NeueMontreal-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../img/NeueMontreal-Medium.woff2") format("woff2"), url("../img/NeueMontreal-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../img/NeueMontreal-Bold.woff2") format("woff2"), url("../img/NeueMontreal-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.text-start {
  text-align: start;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: end;
}

.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-turquoise {
  color: var(--turquoise) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-red {
  background-color: var(--red) !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: 1650px) {
  .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;
}

.mt-auto {
  margin-top: auto !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;
}

.base-radius {
  border-radius: var(--base-radius);
}

.overflow-hidden {
  overflow: hidden;
}

.object-fit-cover {
  object-fit: cover;
}

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

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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.color-white *::selection,
.bg-black *::selection {
  color: var(--black);
  background-color: var(--white);
}

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

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-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  cursor: pointer;
  padding: 5px;
  box-sizing: border-box;
  border-radius: var(--half-radius);
  background-color: var(--white);
  border: 1px solid var(--gray-dark);
  box-sizing: border-box;
  transition: opacity ease-in-out 0.2s, background-color ease-in-out 0.2s, color ease-in-out 0.2s, border-color ease-in-out 0.2s, transform ease-in-out 0.2s;
}
.button:active {
  transform: scale(0.99);
}
.button-text {
  flex: 1;
  text-align: left;
  padding: 0 10px;
  box-sizing: border-box;
}
.button-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  border-radius: calc(var(--half-radius) - 2px);
  transition: background-color ease-in-out 0.2s;
}
.button-icon path {
  transition: fill ease-in-out 0.2s;
}
.button-white {
  background-color: var(--gray-light);
  color: var(--white);
}
.button-white .button-icon {
  background-color: var(--gray-light);
}
.button-small .button-text {
  padding: 0 2px 0 9px;
}
.button-small .button-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.button-box {
  width: 46px;
  height: 46px;
  border-radius: var(--half-radius);
  background-color: var(--white);
  border: 1px solid var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity ease-in-out 0.2s, transform ease-in-out 0.2s;
}
.button-box:hover {
  opacity: 0.8;
}
.button-box:active {
  transform: scale(0.99);
}
@media (max-width: 576px) {
  .button {
    font-size: 14px;
  }
}

.input-group:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .input-group:not(:last-child) {
    margin-bottom: 16px;
  }
}
.input-field {
  position: relative;
}
.input-placeholder {
  display: flex;
  align-items: center;
  gap: 7px;
  position: absolute;
  left: 0;
  top: 21px;
  font-weight: 400;
  font-size: 32px;
  line-height: 0.95;
  color: var(--gray-black);
  pointer-events: none;
  will-change: font-size;
  transition: top ease-in-out 0.3s, font-size 0.4s;
}
.input-placeholder.active {
  top: 0;
  font-size: 14px;
}
@media (max-width: 1650px) {
  .input-placeholder {
    font-size: 26px;
    top: 18px;
  }
}
@media (max-width: 768px) {
  .input-placeholder {
    font-size: 24px;
  }
}
.input-label {
  display: block;
  margin-bottom: 5px;
}
.input-info {
  padding: 8px 0;
  box-sizing: border-box;
  color: var(--gray-black);
  font-size: 16px;
}
@media (max-width: 1200px) {
  .input-info {
    padding: 16px 0;
  }
}
@media (max-width: 768px) {
  .input-info {
    font-size: 14px;
  }
}
.input-info a {
  color: var(--black);
}
.input-control {
  font-family: inherit;
  font-weight: 400;
  font-size: 32px;
  line-height: 0.95;
  color: var(--black);
  background-color: transparent;
  max-width: 100%;
  width: 100%;
  padding: 18px 0 10px 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid var(--gray-dark);
  border-radius: 0;
  outline: none;
  transition: border-bottom ease-in-out 0.2s;
}
.input-control::-webkit-input-placeholder {
  color: var(--gray-black);
}
.input-control:-moz-placeholder {
  color: var(--gray-black);
}
.input-control::-moz-placeholder {
  color: var(--gray-black);
}
.input-control:-ms-input-placeholder {
  color: var(--gray-black);
}
.input-control:focus {
  border-bottom: 1px solid var(--black);
}
@media (max-width: 1650px) {
  .input-control {
    font-size: 26px;
    padding: 15px 0 8px 0;
  }
}
@media (max-width: 768px) {
  .input-control {
    font-size: 24px;
  }
}
.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: 30px;
}
.input-checkbox span:before, .input-checkbox span:after, .input-radio span:before, .input-radio span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 1px;
  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(--s-black);
}
.input-checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.input-checkbox span:before {
  border: 1px solid var(--s-black);
}
.input-checkbox span:after {
  left: 6px;
  top: 11px;
  background-color: var(--s-white);
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 var(--s-white), 4px 0 0 var(--s-white), 4px -2px 0 var(--s-white), 4px -4px 0 var(--s-white), 4px -6px 0 var(--s-white), 4px -8px 0 var(--s-white);
  transform: rotate(45deg);
  opacity: 0;
}
.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);
}
.input-dropdown {
  position: relative;
}
.input-dropdown-current {
  cursor: pointer;
  position: relative;
  padding: 18px 0 14px 0;
  transition: color ease-in-out 0.2s, border-color ease-in-out 0.2s;
}
@media (max-width: 1650px) {
  .input-dropdown-current {
    padding: 17px 0 13px 0;
  }
}
.input-dropdown-current:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url("data:image/svg+xml,%3csvg%20width='22'%20height='12'%20viewBox='0%200%2022%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.75%200.75L10.75%2010.75L20.75%200.75'%20stroke='black'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform ease-in-out 0.2s;
}
.input-dropdown-current:not(.active) {
  color: var(--gray-black);
}
.input-dropdown-current.open:after {
  transform: translate(0, -50%) rotate(180deg);
}
.input-dropdown-current:hover, .input-dropdown-current:active {
  border-color: var(--black);
}
.input-dropdown-items {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 100%;
  background-color: var(--gray);
  z-index: 4;
  max-height: 420px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: visibility ease-in-out 0.2s, opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
.input-dropdown-items.active {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 16px);
}
.input-dropdown-item {
  cursor: pointer;
  font-size: 32px;
  line-height: 0.95;
  padding: 24px;
  box-sizing: border-box;
}
@media (max-width: 1650px) {
  .input-dropdown-item {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .input-dropdown-item {
    font-size: 24px;
  }
}
.input-dropdown-item.current, .input-dropdown-item:hover {
  background-color: var(--gray-strong);
  transition: background-color ease-in-out 0.2s;
}

select.input-control {
  background-image: url("data:image/svg+xml,%3csvg%20width='22'%20height='12'%20viewBox='0%200%2022%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.75%200.75L10.75%2010.75L20.75%200.75'%20stroke='black'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

textarea.input-control {
  height: 67px;
  padding-bottom: 0;
  resize: none;
}
@media (max-width: 1650px) {
  textarea.input-control {
    height: 55.5px;
    padding-bottom: 0;
    padding-top: 17px;
  }
}

.input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  overflow: hidden;
}

.section {
  padding-top: var(--sec-p);
  padding-bottom: var(--sec-p);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .section.pt-double {
    padding-top: var(--sec-p-double);
  }
  .section.pb-double {
    padding-bottom: var(--sec-p-double);
  }
}
@media screen and (min-width: 1200px) {
  .section.pt-half {
    padding-top: calc(var(--sec-p-double) / 2);
  }
  .section.pb-half {
    padding-bottom: calc(var(--sec-p-double) / 2);
  }
}
@media (max-width: 576px) {
  .section.pb-mobile-0 {
    padding-bottom: 0;
  }
}
@media (max-width: 576px) {
  .section.pt-mobile-0 {
    padding-top: 0;
  }
}
.section.pt-single {
  padding-top: 135px;
}
@media (max-width: 991px) {
  .section.pt-single {
    padding-top: 110px;
  }
}
.section-header {
  display: flex;
  flex-direction: column;
}
.section-header:not(:last-child) {
  margin-bottom: var(--sec-h-mb);
}
.section-tags {
  display: flex;
  gap: 10px;
}
.section-tags:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .section-tags:not(:last-child) {
    margin-bottom: 16px;
  }
}
.section-tags-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 12px 8px 30px;
  box-sizing: border-box;
  position: relative;
  font-weight: 500;
  background-color: var(--gray);
  border-radius: var(--half-radius);
}
.section-tags-tag.color-white {
  background-color: var(--gray-light);
}
.section-tags-tag.color-white:before {
  background-color: var(--white);
}
.section-tags-tag:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 1px;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: var(--black);
}
.section-tags-tag span {
  display: inline-block;
  align-items: center;
  font-size: 17px;
  position: relative;
  padding-right: 6px;
  padding-left: 3px;
  padding-bottom: 3px;
}
@media (max-width: 576px) {
  .section-tags-tag span {
    padding-left: 0;
  }
}
.section-tags-tag span:after {
  content: "";
  height: 20px;
  width: 2px;
  border-radius: 10px;
  background-color: var(--turquoise);
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translate(0, -50%);
}
.section-tags-tag img {
  max-width: 100px;
}
@media (max-width: 576px) {
  .section-tags-tag img {
    max-width: 90px;
  }
}
.section-tags-tag.custom {
  display: flex;
  padding: 8px 12px;
}
.section-tags-tag.custom:before {
  display: none;
}
.section-title {
  max-width: 740px;
  margin-bottom: var(--sec-h-t-mb);
}
@media (max-width: 1650px) {
  .section-title {
    max-width: 510px;
  }
}
.section-title:last-child {
  margin: 0;
}
.section-desc {
  max-width: 772px;
}
@media (max-width: 1650px) {
  .section-desc {
    font-size: 18px;
    max-width: 472px;
  }
}
.section-desc:last-child {
  margin: 0;
}
.section-footer {
  margin-top: 32px;
}
.section-bg {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.has-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.has-overlay {
  position: relative;
  overflow: hidden;
}
.has-overlay:before {
  content: "";
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.has-overlay > div {
  position: relative;
  z-index: 2;
}

.has-overlay:before {
  background-color: var(--overlay-bg, rgba(23, 24, 27, 0.3));
}

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

.socials {
  gap: 8px;
}

@media (max-width: 768px) {
  .mobile-scroll {
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .mobile-scroll-offers {
    width: calc(100% + 16px);
    gap: 10px;
    padding: 0 16px 0 0;
    margin: 0;
    flex-wrap: nowrap;
    padding-bottom: 40px;
    overflow-x: auto;
    box-sizing: border-box;
  }
  .mobile-scroll-offers .col-md-6 {
    min-width: 320px;
    padding: 0;
  }
}
@media (max-width: 576px) {
  .mobile-scroll-offers {
    padding-bottom: 24px;
  }
  .mobile-scroll-offers .col-md-6 {
    min-width: 80vw;
  }
}
@media (max-width: 1200px) {
  .mobile-scroll-solutions {
    display: flex;
    width: calc(100% + 20px);
    gap: 10px;
    padding: 0 20px 0 0;
    margin: 0;
    flex-wrap: nowrap;
    padding-bottom: 40px;
    overflow-x: auto;
    box-sizing: border-box;
  }
  .mobile-scroll-solutions .solutions-item {
    min-width: 457px;
  }
}
@media (max-width: 576px) {
  .mobile-scroll-solutions {
    padding: 0 16px 0 0;
    padding-bottom: 24px;
  }
  .mobile-scroll-solutions .solutions-item {
    min-width: 80vw;
  }
}
.mobile-scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: var(--gray-deep);
}
.mobile-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--gray-dark);
}
.mobile-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: var(--gray-deep);
}

@media (max-width: 1200px) {
  .scroll-img {
    overflow-x: auto;
    padding-bottom: 24px;
    width: calc(100% + 16px);
  }
  .scroll-img-inner {
    min-width: 800px;
  }
}
@media (max-width: 991px) {
  .scroll-img-inner {
    min-width: 700px;
  }
}
.scroll-img::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: var(--gray-deep);
}
.scroll-img::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--gray-dark);
}
.scroll-img::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: var(--gray-deep);
}

.mobile-slider {
  overflow: inherit;
}
.mobile-slider .swiper-slide {
  height: auto;
}
.mobile-slider.swiper-initialized .swiper-wrapper {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
}
.mobile-slider.swiper-initialized .swiper-slide {
  min-width: 80vw;
  max-width: 80vw;
  padding: 0;
  margin: 0;
}
.mobile-slider-header {
  text-align: right;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .mobile-slider-header {
    margin-bottom: 16px;
  }
}
.mobile-slider-header-text {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: var(--gray-black);
  padding-right: 21px;
  box-sizing: border-box;
  line-height: 1.1;
}
.mobile-slider-header-text:after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml,%3csvg%20width='6'%20height='10'%20viewBox='0%200%206%2010'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.499999%209L4.75%204.75L0.5%200.500001'%20stroke='%236F7278'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.mobile-slider-progress {
  position: relative;
  height: 4px;
  background-color: var(--gray-deep);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px;
}
@media (max-width: 576px) {
  .mobile-slider-progress {
    margin-top: 24px;
  }
}
.mobile-slider-progress .swiper-pagination-progressbar-fill {
  border-radius: 10px;
  background-color: var(--gray-dark);
}

.accent-color {
  color: var(--accent);
}

.slide-anim-inner {
  overflow: hidden;
  position: relative;
  display: inline-flex;
}
.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%);
}

@keyframes spin-anim {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.line,
.has-animation {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}

.parallax {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.parallax-inner {
  width: 100%;
  min-height: calc(100% + 50px);
  object-fit: cover;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
  position: relative;
  top: -25px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 15px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  transition: color ease-in-out 0.2s, background-color ease-in-out 0.2s, box-shadow ease-in-out 0.2s, border-color ease-in-out 0.2s, transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.header-logo {
  display: inline-block;
  max-width: 166px;
  position: relative;
}
@media (max-width: 576px) {
  .header-logo {
    max-width: 140px;
  }
}
.header-logo img {
  display: block;
  width: 100%;
  transition: opacity ease-in-out 0.2s;
}
.header-logo-black {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.header-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1200px) {
  .header-nav {
    position: absolute;
    max-width: 100%;
    width: 100%;
    left: 50%;
    top: 100%;
    background-color: var(--white);
    padding: 32px 20px;
    box-sizing: border-box;
    transform: translate(-50%, 0);
    border-top: 1px solid var(--gray-dark);
    opacity: 0;
    visibility: hidden;
    border-radius: 0 0 var(--base-radius) var(--base-radius);
    transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
  }
  .header-nav.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 768px) {
  .header-nav {
    padding: 24px 16px;
  }
}
.header-nav-header {
  gap: 8px;
  margin-bottom: 24px;
}
.header-nav-header .button {
  flex: 1;
}
.header-nav-footer .row {
  --row-gap-y: 24px;
}
.header-nav-footer .footer-contact-val {
  font-size: 28px;
}
.header-nav-list {
  gap: 24px;
}
@media (max-width: 1650px) {
  .header-nav-list {
    gap: 16px;
  }
}
@media (max-width: 1200px) {
  .header-nav-list {
    flex-direction: column;
    gap: 0;
    margin-bottom: 175px;
  }
}
@media (max-width: 768px) {
  .header-nav-list {
    margin-bottom: 100px;
  }
}
.header-nav-list li a {
  font-size: 18px;
  text-decoration: none;
}
@media (max-width: 1650px) {
  .header-nav-list li a {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .header-nav-list li a {
    font-size: 36px;
    font-weight: 500;
  }
}
.header-actions {
  gap: 12px;
}
.header-toggle {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  position: relative;
  width: 30px;
  height: 32px;
  cursor: pointer;
  margin-left: 8px;
}
.header-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--white);
  position: absolute;
  transition: transform ease-in-out 0.2s, opacity ease-in-out 0.2s, top ease-in-out 0.2s, bottom ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
.header-toggle span:nth-child(1) {
  top: 8px;
}
.header-toggle span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.header-toggle span:nth-child(3) {
  bottom: 8px;
}
.header-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
.header-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header-toggle.active span:nth-child(3) {
  bottom: inherit;
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
}
.header .button {
  border-color: transparent;
  font-size: 14px;
}
.header-fixed {
  box-shadow: -1px 3px 8px 0px rgba(34, 60, 80, 0.05);
}
.header-active, .header-fixed, .header-black, .header-single {
  background-color: var(--white);
  color: var(--black);
}
.header-active .button, .header-fixed .button, .header-black .button, .header-single .button {
  border-color: var(--gray-dark);
}
.header-active .button.button-white, .header-fixed .button.button-white, .header-black .button.button-white, .header-single .button.button-white {
  color: var(--black);
}
.header-active .button.button-white .button-icon, .header-fixed .button.button-white .button-icon, .header-black .button.button-white .button-icon, .header-single .button.button-white .button-icon {
  background-color: var(--gray-deep);
}
.header-active .button.button-white .button-icon path, .header-fixed .button.button-white .button-icon path, .header-black .button.button-white .button-icon path, .header-single .button.button-white .button-icon path {
  fill: var(--black);
}
.header-active .header-logo .header-logo-white, .header-fixed .header-logo .header-logo-white, .header-black .header-logo .header-logo-white, .header-single .header-logo .header-logo-white {
  opacity: 0;
}
.header-active .header-logo .header-logo-black, .header-fixed .header-logo .header-logo-black, .header-black .header-logo .header-logo-black, .header-single .header-logo .header-logo-black {
  opacity: 1;
}
.header-active .header-toggle span, .header-fixed .header-toggle span, .header-black .header-toggle span, .header-single .header-toggle span {
  background-color: var(--black);
}
.header-single {
  border-color: var(--gray-dark);
}
.header:before {
  content: "";
  width: 100%;
  height: calc(100dvh - 100%);
  position: absolute;
  background: rgba(23, 24, 27, 0.3);
  backdrop-filter: blur(20px);
  z-index: -1;
  top: calc(100% + 1px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
}
.header-active:before {
  opacity: 1;
  visibility: visible;
}
.header.header-fixed {
  border-color: transparent;
}
@media screen and (min-width: 768px) {
  .header.hidden {
    transform: translate(0, -100%);
  }
}

.hero {
  min-height: 100svh;
  padding-top: 96px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 991px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 110px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding-top: 85px;
    padding-bottom: 60px;
  }
}
.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-title {
  margin-bottom: 32px;
  max-width: 830px;
  position: relative;
  left: -4px;
}
@media (max-width: 1650px) {
  .hero-title {
    max-width: 630px;
  }
}
@media (max-width: 991px) {
  .hero-title {
    left: 0;
  }
}
@media (max-width: 768px) {
  .hero-title {
    max-width: 530px;
  }
}
@media (max-width: 576px) {
  .hero-title {
    max-width: 100%;
    margin-bottom: 16px;
  }
}
.hero-footer {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 456px;
}
@media (max-width: 1650px) {
  .hero-footer {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .hero-footer {
    margin-top: inherit;
    padding-bottom: 400px;
  }
}
@media (max-width: 576px) {
  .hero-footer {
    padding-bottom: 250px;
  }
}
.hero-footer-line {
  flex: 1;
  width: 1px;
  height: 100%;
  margin-bottom: 32px;
  position: relative;
}
.hero-footer-line-inner {
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  position: absolute;
  left: 0;
  top: 0;
}
.hero-desc {
  font-weight: 500;
  margin-bottom: 32px;
}
@media (max-width: 1650px) {
  .hero-desc {
    font-size: 18px;
  }
}
.hero-info {
  position: absolute;
  bottom: 32px;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 3;
  color: var(--white);
}
.hero-info-inner {
  max-width: 457px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 1650px) {
  .hero-info-inner {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  .hero-info-inner {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .hero-info {
    bottom: 110px;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .hero-info {
    bottom: 60px;
  }
}
.hero-info-item {
  font-weight: 500;
  padding: 23px 0;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: all;
}
@media (max-width: 1650px) {
  .hero-info-item {
    padding: 16px 0;
  }
}
@media (max-width: 991px) {
  .hero-info-item {
    padding: 23px 0 16px 0;
  }
  .hero-info-item:nth-child(1), .hero-info-item:nth-child(2) {
    width: calc(50% - 5px);
  }
  .hero-info-item:nth-child(3) {
    width: 100%;
    flex: 1;
  }
}
@media (max-width: 768px) {
  .hero-info-item {
    padding: 16px 0;
  }
}
.hero-info-item-val {
  font-size: 56px;
}
@media (max-width: 1650px) {
  .hero-info-item-val {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .hero-info-item-val {
    font-size: 32px;
  }
}
@media (max-width: 1650px) {
  .hero-info-item-desc {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .hero-info-item-desc {
    font-size: 16px;
  }
}
.hero-slider {
  overflow: hidden;
  position: relative;
}
.hero-slider-pagination {
  position: absolute;
  left: 50% !important;
  bottom: 18px !important;
  display: flex;
  z-index: 3;
  gap: 0px;
  transform: translate(-50%, 0);
  justify-content: center;
  pointer-events: none;
}
.hero-slider-pagination span {
  display: block;
  width: 52px;
  height: 30px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  border-radius: 0px;
  opacity: 1 !important;
  outline: none;
  background-color: transparent;
  pointer-events: all;
}
.hero-slider-pagination span:before, .hero-slider-pagination span:after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 3px;
  width: 46px;
}
.hero-slider-pagination span:before {
  background-color: var(--white);
  height: 2px;
  width: 0;
}
.hero-slider-pagination span:after {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
.hero-slider.swiper-initialized .swiper-pagination-bullet-active:before {
  animation-name: countingBar;
  animation-duration: var(--dots-delay);
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@keyframes countingBar {
  0% {
    width: 0;
  }
  100% {
    width: 46px;
  }
}
.hero-single {
  position: relative;
}
@media (max-width: 991px) {
  .hero-single {
    padding-bottom: 32px;
  }
  .hero-single .hero-footer {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.offers-row {
  background-image: url("data:image/svg+xml,%3csvg%20width='429'%20height='429'%20viewBox='0%200%20429%20429'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M233.429%20183.355C223.026%20193.93%20205.975%20193.93%20195.573%20183.355L96.4179%2082.5499C79.9046%2065.7618%2091.7983%2037.3802%20115.347%2037.3802L313.657%2037.3802C337.205%2037.3803%20349.098%2065.7618%20332.584%2082.5499L233.429%20183.355Z'%20fill='%23F3F6F9'/%3e%3cpath%20d='M195.574%20245.489C205.977%20234.913%20223.028%20234.913%20233.431%20245.489L332.586%20346.294C349.099%20363.082%20337.205%20391.463%20313.657%20391.463H115.347C91.7985%20391.463%2079.9061%20363.082%2096.4194%20346.294L195.574%20245.489Z'%20fill='%23F3F6F9'/%3e%3cpath%20d='M183.435%20195.494C194.01%20205.897%20194.011%20222.948%20183.435%20233.351L82.63%20332.505C65.8419%20349.019%2037.4603%20337.125%2037.4603%20313.577L37.4603%20115.267C37.4603%2091.7181%2065.8419%2079.8257%2082.63%2096.339L183.435%20195.494Z'%20fill='%23F3F6F9'/%3e%3cpath%20d='M245.567%20233.349C234.992%20222.946%20234.992%20205.896%20245.567%20195.493L346.372%2096.3379C363.16%2079.8246%20391.542%2091.7183%20391.542%20115.267L391.542%20313.577C391.542%20337.125%20363.16%20349.018%20346.372%20332.504L245.567%20233.349Z'%20fill='%23F3F6F9'/%3e%3cpath%20d='M226.455%20176.495C219.885%20183.174%20209.116%20183.174%20202.546%20176.495L103.391%2075.6898C92.9614%2065.0868%20100.473%2047.162%20115.346%2047.162L313.656%2047.162C328.528%2047.162%20336.04%2065.0868%20325.61%2075.6898L226.455%20176.495Z'%20fill='%23248AC3'/%3e%3cpath%20d='M202.546%20252.505C209.117%20245.826%20219.886%20245.826%20226.456%20252.505L325.611%20353.31C336.04%20363.913%20328.529%20381.838%20313.656%20381.838H115.346C100.473%20381.838%2092.962%20363.913%20103.391%20353.31L202.546%20252.505Z'%20fill='%233B6ED5'/%3e%3cpath%20d='M176.495%20202.545C183.174%20209.116%20183.174%20219.884%20176.495%20226.455L75.6898%20325.61C65.0868%20336.039%2047.162%20328.528%2047.162%20313.655L47.162%20115.345C47.162%20100.472%2065.0868%2092.9609%2075.6898%20103.39L176.495%20202.545Z'%20fill='%232DA850'/%3e%3cpath%20d='M252.505%20226.455C245.826%20219.884%20245.826%20209.116%20252.505%20202.545L353.31%20103.39C363.913%2092.9608%20381.838%20100.472%20381.838%20115.345L381.838%20313.655C381.838%20328.528%20363.913%20336.039%20353.31%20325.61L252.505%20226.455Z'%20fill='%2314AEA5'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .offers-row {
    background-image: none;
  }
}
.offers-box {
  padding: 32px;
  box-sizing: border-box;
  backdrop-filter: blur(32.5px);
  align-items: flex-start;
  position: relative;
  transition: backdrop-filter ease-in-out 0.2s, background-color ease-in-out 0.2s, color ease-in-out 0.2s;
}
.offers-box:hover {
  background-color: var(--accent-color) !important;
  color: var(--white);
  backdrop-filter: none;
}
@media screen and (min-width: 1200px) {
  .offers-box:hover .offers-box-content {
    top: -70px;
  }
  .offers-box:hover .offers-box-more {
    transition-delay: 0.4s;
    pointer-events: all;
    opacity: 1;
  }
}
.offers-box:hover .offers-box-header:before {
  opacity: 1;
}
@media (max-width: 576px) {
  .offers-box {
    padding: 24px;
  }
}
.offers-box-header {
  margin-bottom: 120px;
  text-align: end;
  width: 100%;
  position: relative;
}
.offers-box-header:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
}
@media (max-width: 1650px) {
  .offers-box-header:before {
    width: 10px;
    height: 10px;
    border-radius: 2px;
  }
}
@media (max-width: 1650px) {
  .offers-box-header {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .offers-box-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .offers-box-header {
    margin-bottom: 24px;
  }
}
.offers-box-content {
  margin-top: auto;
  position: relative;
  top: 0;
  transition: top 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (max-width: 768px) {
  .offers-box-content {
    flex: 1;
  }
}
@media (max-width: 1200px) {
  .offers-box-content {
    margin-bottom: 24px;
  }
}
.offers-box-num {
  font-size: 18px;
  line-height: 0.95;
  font-weight: 500;
}
@media (max-width: 1650px) {
  .offers-box-num {
    font-size: 16px;
  }
}
.offers-box-title {
  margin-bottom: 24px;
  font-size: 40px;
  line-height: 1.2;
}
@media (max-width: 1650px) {
  .offers-box-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
@media (max-width: 1200px) {
  .offers-box-title {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .offers-box-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .offers-box-more {
    position: absolute;
    bottom: 32px;
    left: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out 0.2s;
  }
}

@media (max-width: 1200px) {
  .solutions {
    padding-top: 0;
  }
}
.solutions-inner {
  border-top: 1px solid var(--gray-dark);
  padding-top: 10px;
}
@media (max-width: 1200px) {
  .solutions-inner {
    padding-top: 0;
    border: none;
  }
}
.solutions-item {
  display: flex;
  gap: 10px;
  --img-width: 456px;
}
@media (max-width: 1650px) {
  .solutions-item {
    --img-width: 350px;
  }
}
@media (max-width: 1200px) {
  .solutions-item {
    --img-width: 100%;
    flex-direction: column;
    width: 457px;
    min-width: 457px;
  }
}
@media (max-width: 576px) {
  .solutions-item {
    width: 80vw;
    min-width: 80vw;
  }
}
.solutions-item.prev .solutions-item-inner {
  border-color: transparent;
}
@media screen and (min-width: 1200px) {
  .solutions-item.active .solutions-item-img {
    opacity: 1;
  }
  .solutions-item.active .solutions-item-inner {
    background-color: var(--gray-deep);
    border-radius: var(--base-radius);
    border-color: transparent;
  }
  .solutions-item.active .solutions-item-header {
    padding-left: 32px;
  }
  .solutions-item.active .solutions-item-content {
    opacity: 1;
  }
}
.solutions-item-img {
  max-width: var(--img-width);
  width: 100%;
  overflow: hidden;
  opacity: 0;
  position: relative;
  transition: opacity ease-in-out 0.2s;
}
.solutions-item-img-inner {
  overflow: hidden;
  border-radius: var(--base-radius);
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .solutions-item-img {
    opacity: 1;
  }
}
.solutions-item-img img {
  object-fit: cover;
  min-width: var(--img-width);
}
@media (max-width: 1650px) {
  .solutions-item-img img {
    min-width: var(--img-width);
  }
}
.solutions-item-inner {
  flex: 1;
  padding: 32px 32px 32px 0;
  box-sizing: border-box;
  border-bottom: 1px solid var(--gray-dark);
  transition: background-color ease-in-out 0.2s, border-radius ease-in-out 0.2s, border-color ease-in-out 0.2s;
}
@media (max-width: 1200px) {
  .solutions-item-inner {
    display: flex;
    flex-direction: column;
  }
}
.solutions-item-inner .row {
  --row-gap-y: 32px;
}
@media (max-width: 1200px) {
  .solutions-item-inner .row {
    flex: 1;
    flex-direction: column;
  }
  .solutions-item-inner .row .col-xl-6:nth-child(1) {
    flex: 1;
  }
}
@media (max-width: 576px) {
  .solutions-item-inner .row {
    --row-gap-y: 16px;
  }
}
@media (max-width: 1200px) {
  .solutions-item-inner {
    padding: 32px;
    box-sizing: border-box;
    border: none;
    background-color: var(--gray-deep);
    border-radius: var(--base-radius);
  }
}
@media (max-width: 576px) {
  .solutions-item-inner {
    padding: 24px;
  }
}
.solutions-item-header, .solutions-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.solutions-item-header {
  max-width: 542px;
  transition: padding 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (max-width: 1650px) {
  .solutions-item-header {
    max-width: 320px;
  }
}
@media screen and (min-width: 1200px) {
  .solutions-item-content {
    opacity: 0;
    transition: opacity ease-in-out 0.2s;
  }
}
.solutions-item-title {
  margin-bottom: 16px;
  font-size: 36px;
  line-height: 1.2;
}
@media (max-width: 1650px) {
  .solutions-item-title {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .solutions-item-title {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .solutions-item-title {
    font-size: 24px;
  }
}
.solutions-item-title[data-num] {
  font-size: 28px;
  max-width: 720px;
  position: relative;
  padding-left: 88px;
}
@media (max-width: 1650px) {
  .solutions-item-title[data-num] {
    font-size: 22px;
    max-width: 450px;
    padding-left: 75px;
  }
}
@media (max-width: 1200px) {
  .solutions-item-title[data-num] {
    padding-left: 0;
    padding-top: 75px;
  }
}
.solutions-item-title[data-num]:before {
  content: attr(data-num);
  font-size: 20px;
  font-weight: 500;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-dark);
  border-radius: 100%;
}
@media (max-width: 1650px) {
  .solutions-item-title[data-num]:before {
    font-size: 18px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1200px) {
  .solutions-item-title[data-num]:before {
    font-size: 16px;
  }
}
.solutions-item-desc {
  margin-top: auto;
  color: var(--gray-black);
}
@media (max-width: 1200px) {
  .solutions-item-desc {
    margin-top: inherit;
  }
}
.solutions-item-text {
  flex: 1;
}

.solutions-header {
  min-height: var(--solutions-h);
}
@media screen and (min-width: 1200px) {
  .solutions-header {
    flex: 1;
  }
}
@media (max-width: 1200px) {
  .solutions-title {
    font-size: 44px;
    max-width: 100%;
  }
}
.solutions-toc {
  position: sticky;
  top: 48px;
  z-index: 3;
  transition: top ease-in-out 0.4s;
}
.solutions-toc.active {
  top: 110px;
}
@media (max-width: 1650px) {
  .solutions-toc {
    top: 32px;
  }
}
.solutions-toc li:not(:last-child) {
  margin-bottom: 8px;
}
.solutions-toc li a {
  font-size: 18px;
  color: var(--gray-black);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  position: relative;
  transition: padding ease-in-out 0.2s, color ease-in-out 0.2s;
}
@media (max-width: 1650px) {
  .solutions-toc li a {
    font-size: 14px;
  }
}
.solutions-toc li a:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 1px;
  position: absolute;
  left: 0;
  top: 10px;
  background-color: var(--black);
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
}
@media (max-width: 1650px) {
  .solutions-toc li a:before {
    top: 7px;
  }
}
.solutions-toc li a:hover, .solutions-toc li a.active {
  color: var(--black);
}
.solutions-toc li a.active {
  padding-left: 16px;
}
.solutions-toc li a.active:before {
  opacity: 1;
}

.stats {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.stats-inner {
  height: 100vh;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .stats-inner {
    min-height: 100svh;
  }
}
.stats-loader {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 24px;
  display: flex;
  gap: 12px;
  z-index: 2;
}
.stats-loader-item {
  width: 46px;
  height: 2px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.stats-loader-item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
.stats-loader-item-fill {
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--white);
  transform-origin: left center;
  will-change: width;
}
.stats-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}
.stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stats-content {
  position: absolute !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 1100px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 2;
}
@media (max-width: 1650px) {
  .stats-content {
    max-width: 1000px;
  }
  .stats-content.stats-line-1 {
    max-width: 800px;
  }
  .stats-content.stats-line-2 {
    max-width: 800px;
  }
}

.my {
  position: relative;
}
@media (max-width: 1650px) {
  .my-desc {
    max-width: 700px;
  }
}
.my:before {
  content: "";
  width: calc(100% - 20px);
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  background: linear-gradient(180deg, rgba(225, 228, 230, 0) 0%, rgba(225, 228, 230, 0.4) 100%);
  border-radius: var(--base-radius);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .my:before {
    width: 100%;
  }
}
.my-wide:before {
  background: linear-gradient(180deg, rgba(225, 228, 230, 0.4) 0%, rgba(225, 228, 230, 0) 100%);
}
.my-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media (max-width: 1200px) {
  .my-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
  }
}
@media (max-width: 576px) {
  .my-grid {
    display: flex;
    flex-direction: column;
  }
}
.my-grid-col {
  display: flex;
  flex-direction: column;
  background-color: var(--gray-deep);
  border-radius: var(--base-radius);
}
.my-grid-col:nth-child(1) {
  grid-area: 1/2/3/4;
}
@media (max-width: 1200px) {
  .my-grid-col:nth-child(1) {
    grid-area: 1/1/3/4;
  }
}
.my-grid-col:nth-child(2) {
  grid-area: 1/1/2/2;
}
@media (max-width: 1200px) {
  .my-grid-col:nth-child(2) {
    grid-area: 3/1/4/2;
  }
}
.my-grid-col:nth-child(3) {
  grid-area: 2/1/3/2;
}
@media (max-width: 1200px) {
  .my-grid-col:nth-child(3) {
    grid-area: 3/2/4/3;
  }
}
.my-grid-col:nth-child(4) {
  grid-area: 1/4/3/5;
}
@media (max-width: 1200px) {
  .my-grid-col:nth-child(4) {
    grid-area: 3/3/4/4;
  }
}
.my-img {
  padding: 15px;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .my-img {
    padding: 5px;
  }
}
.my-img img {
  border-radius: var(--half-radius);
}
.my-box {
  padding: 24px;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.my-box-val {
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9;
  margin-bottom: 40px;
}
@media (max-width: 1650px) {
  .my-box-val {
    font-size: 42px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1200px) {
  .my-box-val {
    font-size: 40px;
    margin-bottom: 24px;
  }
}
.my-box-val sub {
  display: inline-block;
  font-size: 18px;
  line-height: 1.4;
  vertical-align: bottom;
  padding-left: 5px;
}
@media (max-width: 1650px) {
  .my-box-val sub {
    font-size: 16px;
  }
}
.my-box-desc {
  margin-top: auto;
}

.cta-header {
  max-width: 531px;
}
.cta-row {
  --row-gap-y: 80px;
}
@media (max-width: 768px) {
  .cta-row {
    --row-gap-y: 32px;
  }
}

@media (max-width: 991px) {
  .about-row {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 1200px) {
  .about-img {
    height: 100%;
  }
  .about-img img {
    height: 100%;
    object-fit: cover;
  }
}
.about-desc {
  margin-bottom: 32px;
}
.about-desc p {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .about-desc p {
    margin-bottom: 16px;
  }
}
.about-meta {
  max-width: 750px;
}
.about-meta-title {
  margin-bottom: 32px;
  color: var(--gray-black);
}
@media (max-width: 1650px) {
  .about-meta-title {
    margin-bottom: 24px;
  }
}
.about-meta-row {
  --row-gap-x: 25px;
  --row-gap-y: 32px;
}
@media (max-width: 1650px) {
  .about-meta-row {
    --row-gap-x: 10px;
    --row-gap-y: 16px;
  }
}
@media (max-width: 576px) {
  .about-meta-row {
    --row-gap-y: 10px;
  }
}
.about-meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-meta-item-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--half-radius);
}
.about-meta-item-icon img {
  max-width: 28px;
}
@media (max-width: 1650px) {
  .about-meta-item-icon {
    width: 48px;
    height: 48px;
  }
  .about-meta-item-icon img {
    max-width: 24px;
  }
}
.about-meta-item-text {
  flex: 1;
  font-weight: 500;
  max-width: 315px;
}
.about-us {
  padding-bottom: 60px;
}
@media (max-width: 1650px) {
  .about-us {
    padding-bottom: 50px;
  }
}
.about-us-header {
  margin-bottom: 32px;
}
.about-us-principles {
  position: relative;
  padding: 32px 0;
  box-sizing: border-box;
}
.about-us-principles-header {
  max-width: 690px;
  margin-bottom: 555px;
}
@media (max-width: 1650px) {
  .about-us-principles-header {
    margin-bottom: 400px;
    max-width: 550px;
  }
}
@media (max-width: 1200px) {
  .about-us-principles-header {
    margin-bottom: 300px;
  }
}
.about-us-principles-title {
  font-size: 36px;
}
@media (max-width: 1650px) {
  .about-us-principles-title {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  .about-us-principles-title {
    font-size: 28px;
  }
}
.about-us-principles-box {
  padding-left: 32px;
  box-sizing: border-box;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 1650px) {
  .about-us-principles-box {
    padding-left: 24px;
  }
}
.about-us-principles-box-num {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 1650px) {
  .about-us-principles-box-num {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .about-us-principles-box-num {
    font-size: 14px;
  }
}
.about-us-principles-box-title {
  font-size: 40px;
  max-width: 300px;
  margin-bottom: 80px;
  flex: 1;
}
@media (max-width: 1650px) {
  .about-us-principles-box-title {
    font-size: 28px;
    max-width: 250px;
    margin-bottom: 60px;
  }
}
@media (max-width: 1200px) {
  .about-us-principles-box-title {
    font-size: 24px;
    margin-bottom: 32px;
    max-width: 180px;
  }
}
.explore-box {
  padding: 32px;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .explore-box {
    padding: 24px;
  }
}
.explore-box-icon {
  margin-bottom: 75px;
  --size: 100px;
  height: var(--size);
}
@media (max-width: 1650px) {
  .explore-box-icon {
    --size: 80px;
  }
}
@media (max-width: 768px) {
  .explore-box-icon {
    --size: 55px;
    margin-bottom: 55px;
  }
}
.explore-box-icon img {
  max-height: var(--size);
  max-width: var(--size);
}
.explore-box-desc {
  padding-right: 20px;
}

.expertise-inner {
  max-width: 1390px;
  margin: 0 auto;
}
@media (max-width: 1650px) {
  .expertise-inner {
    max-width: 1100px;
  }
}
.expertise-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .expertise-box {
    padding: 24px;
  }
}
.expertise-box-header {
  text-align: center;
  margin-bottom: 32px;
  min-height: 87px;
}
@media (max-width: 1650px) {
  .expertise-box-header {
    min-height: 68px;
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .expertise-box-header {
    min-height: auto;
    margin-bottom: 16px;
  }
}
.expertise-box-content {
  flex: 1;
  margin-bottom: 24px;
}
.expertise-box-footer {
  margin-top: auto;
  text-align: center;
}
.expertise-box-title {
  font-size: 36px;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 1650px) {
  .expertise-box-title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .expertise-box-title {
    font-size: 24px;
  }
}
.expertise-box-line {
  padding: 24px 0 24px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--gray-dark);
}
@media (max-width: 1650px) {
  .expertise-box-line {
    padding: 20px 0 20px 20px;
  }
}
@media (max-width: 576px) {
  .expertise-box-line {
    padding: 16px 0 16px 20px;
  }
}
.expertise-box-line:first-child {
  border-top: 1px solid var(--gray-dark);
}
.expertise-box-line-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  margin-bottom: 16px;
}
@media (max-width: 1650px) {
  .expertise-box-line-title {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .expertise-box-line-title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .expertise-box-line-title {
    margin-bottom: 8px;
  }
}
.expertise-box-line-title:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background-color: var(--black);
  opacity: 0.2;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translate(0, -50%);
}
.expertise-box-line-desc {
  color: var(--gray-black);
}
.expertise-box.active {
  background-image: url("../img/expertise-bg-active.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.expertise-box.active span {
  color: var(--blue);
}
.expertise-box.active .expertise-box-line-title:before {
  background-color: var(--blue);
  opacity: 1;
}

.advantages-item {
  padding-top: 32px;
  border-top: 1px solid var(--gray-dark);
}
@media (max-width: 576px) {
  .advantages-item {
    border: none;
    padding-top: 40px;
  }
  .advantages-item:first-child {
    padding-top: 0;
  }
}
.advantages-item:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .advantages-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.advantages-item:nth-child(even) .advantages-row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .advantages-item-content {
    text-align: center;
  }
  .advantages-item-content .section-header {
    align-items: center;
  }
}
.advantages-item-img {
  padding: 16px;
  box-sizing: border-box;
}
.advantages-item-img img {
  border-radius: var(--half-radius);
}
@media (max-width: 576px) {
  .advantages-item-img {
    padding: 5px;
  }
}

@media (max-width: 991px) {
  .steps {
    padding-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .steps {
    padding-bottom: 24px;
  }
}
.steps-row {
  --row-gap-y: 200px;
}
@media screen and (min-width: 991px) {
  .steps-items {
    flex-direction: column;
  }
}
.steps-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  .steps-item {
    padding-top: 0;
    padding-bottom: 24px !important;
  }
}
.steps-item:first-child {
  padding-top: 0;
}
.steps-item-inner {
  max-width: 690px;
}
@media (max-width: 1650px) {
  .steps-item-inner {
    max-width: 550px;
  }
}
.steps-item-tag {
  position: relative;
  padding-left: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}
.steps-item-tag:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.steps-item-title {
  font-size: 40px;
}
@media (max-width: 1650px) {
  .steps-item-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .steps-item-title {
    font-size: 28px;
  }
}
.steps-item-desc p:last-child {
  margin: 0;
}

.rp-form, .rp-image {
  height: 100%;
}
.rp-form {
  padding: 48px;
  box-sizing: border-box;
}
@media (max-width: 1650px) {
  .rp-form {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .rp-form {
    padding: 32px;
  }
}
.rp-image {
  position: relative;
}
.rp-image-logo {
  position: absolute;
  max-width: 238px;
  top: 48px;
  left: 48px;
  z-index: 2;
}
@media (max-width: 1650px) {
  .rp-image-logo {
    max-width: 200px;
    top: 40px;
    left: 40px;
  }
}

.faq-item {
  border-bottom: 1px solid var(--gray-dark);
  padding: 40px 0;
  box-sizing: border-box;
  position: relative;
  transition: border-color ease-in-out 0.2s;
}
.faq-item:first-child {
  border-top: 1px solid var(--gray-dark);
}
@media (max-width: 1650px) {
  .faq-item {
    padding: 32px 0;
  }
}
@media (max-width: 576px) {
  .faq-item {
    padding: 24px 0;
  }
}
.faq-item:before {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: var(--gray-deep);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
}
.faq-item-row {
  --row-gap-y: 0;
}
.faq-item-title {
  max-width: 740px;
  font-size: 28px;
  line-height: 1.2;
  cursor: pointer;
}
@media (max-width: 1650px) {
  .faq-item-title {
    font-size: 22px;
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .faq-item-title {
    font-size: 20px;
    max-width: 100%;
    padding-right: 75px;
  }
}
.faq-item-content {
  max-width: 714px;
  display: none;
}
@media (max-width: 1650px) {
  .faq-item-content {
    max-width: 500px;
  }
}
@media (max-width: 1200px) {
  .faq-item-content {
    padding-top: 32px;
    max-width: 800px;
  }
}
@media (max-width: 991px) {
  .faq-item-content {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .faq-item-content {
    padding-top: 24px;
  }
}
.faq-item-text {
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
}
.faq-item-text.active {
  opacity: 1;
}
.faq-item-toggle {
  position: absolute;
  right: 0;
  top: 40px;
  cursor: pointer;
  outline: none;
}
@media (max-width: 1650px) {
  .faq-item-toggle {
    top: 32px;
  }
}
@media (max-width: 576px) {
  .faq-item-toggle {
    top: 24px;
  }
}
.faq-item-toggle svg {
  will-change: transform;
  transition: transform ease-in-out 0.2s, opacity ease-in-out 0.2s;
}
.faq-item:not(.active) {
  cursor: pointer;
}
.faq-item.active {
  border-color: transparent;
}
.faq-item.active:before {
  opacity: 1;
}
.faq-item.active .faq-item-toggle svg {
  opacity: 0.5;
  transform: rotate(45deg);
}
.faq-item.prev-item {
  border-bottom-color: transparent;
}

.main {
  padding-top: 71px;
}
@media (max-width: 768px) {
  .main {
    padding-top: 65px;
  }
}
@media (max-width: 576px) {
  .main {
    padding-top: 63px;
  }
}
.main-row {
  display: flex;
}
@media (max-width: 1200px) {
  .main-row {
    flex-direction: column;
  }
}
.main-row-col {
  --col-padding: 48px;
  padding-top: var(--col-padding);
  padding-bottom: var(--col-padding);
  box-sizing: border-box;
}
@media (max-width: 1650px) {
  .main-row-col {
    --col-padding: 32px;
  }
}
@media (max-width: 1200px) {
  .main-row-col {
    --col-padding: 38px;
  }
}
.main-row-col:nth-child(1) {
  width: 450px;
  border-right: 1px solid var(--gray-dark);
  padding-right: 32px;
}
@media (max-width: 1650px) {
  .main-row-col:nth-child(1) {
    width: 350px;
    padding-right: 24px;
  }
}
@media (max-width: 1200px) {
  .main-row-col:nth-child(1) {
    width: 100%;
    padding-right: 0;
    border: none;
  }
}
.main-row-col:nth-child(2) {
  flex: 1;
  padding-left: 32px;
  box-sizing: border-box;
}
@media (max-width: 1650px) {
  .main-row-col:nth-child(2) {
    padding-left: 24px;
  }
}
@media (max-width: 1200px) {
  .main-row-col:nth-child(2) {
    padding-left: 0;
  }
}
.main-section {
  padding: 60px 0;
  box-sizing: border-box;
}
@media (max-width: 1650px) {
  .main-section {
    padding: 50px 0;
  }
}
.main-section-header {
  max-width: 780px;
}
@media (max-width: 1650px) {
  .main-section-header {
    max-width: 650px;
  }
}
.main-section-title {
  max-width: 650px;
  font-size: 40px;
}
@media (max-width: 1650px) {
  .main-section-title {
    font-size: 32px;
    max-width: 550px;
  }
}
@media (max-width: 1650px) {
  .main-section-desc {
    max-width: 100%;
  }
}

.ecosystem-img {
  position: relative;
}
.ecosystem-img:after {
  width: calc(100% + 32px);
  left: -32px;
  border-bottom: 1px solid var(--gray-dark);
  bottom: 0;
  position: absolute;
}
@media (max-width: 1650px) {
  .ecosystem-img:after {
    width: calc(100% + 24px);
    left: -24px;
  }
}
@media (max-width: 1200px) {
  .ecosystem-img:after {
    display: none;
  }
}
.ecosystem-legend {
  gap: 8px 24px;
}
@media (max-width: 768px) {
  .ecosystem-legend {
    margin-top: 24px;
  }
}
.ecosystem-legend li {
  position: relative;
  padding-left: 18px;
  font-weight: 500;
}
.ecosystem-legend li:before {
  content: "";
  background-color: var(--dot-color);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
}
@media (max-width: 1650px) {
  .ecosystem-legend li:before {
    top: 6.5px;
  }
}
.ecosystem-slider {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 32px;
}
@media (max-width: 1650px) {
  .ecosystem-slider {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .ecosystem-slider {
    width: calc(100% + 16px);
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
.ecosystem-slider:before {
  content: "";
  width: calc(100% - 16px);
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid var(--gray-dark);
}
@media (max-width: 768px) {
  .ecosystem .swiper-slide {
    min-width: 830px;
  }
}

.campaigns-inner {
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .campaigns-inner-img {
    max-height: 640px;
  }
}
.campaigns-inner-items {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.campaigns-inner-item {
  flex: 1;
  padding: 32px;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .campaigns-inner-item {
    padding: 24px;
  }
}
.campaigns-inner-item:not(:last-child) {
  margin-bottom: 10px;
}
.campaigns-inner-item-header {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.campaigns-inner-item-icon {
  border: 1px solid var(--gray-dark);
  width: 56px;
  height: 56px;
}
@media (max-width: 1650px) {
  .campaigns-inner-item-icon {
    width: 46px;
    height: 46px;
  }
  .campaigns-inner-item-icon img {
    max-height: 20px;
  }
}
.campaigns-inner-item-num {
  color: var(--gray-black);
  font-size: 18px;
}
@media (max-width: 1650px) {
  .campaigns-inner-item-num {
    font-size: 16px;
  }
}
.campaigns-inner-item-title {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 1650px) {
  .campaigns-inner-item-title {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .campaigns-inner-item-title {
    font-size: 20px;
  }
}
.campaigns-info {
  overflow: hidden;
  padding: 120px 32px;
  box-sizing: border-box;
}
@media (max-width: 1650px) {
  .campaigns-info {
    padding: 100px 32px;
  }
}
@media (max-width: 991px) {
  .campaigns-info {
    padding: 32px;
  }
}
.campaigns-info .section-desc {
  max-width: 855px;
}
.campaigns-info-img {
  max-width: 800px;
  margin: 0 auto 32px auto;
}
@media (max-width: 1200px) {
  .campaigns-info-img {
    width: calc(100% + 32px);
  }
}
@media (max-width: 768px) {
  .campaigns-info-img {
    margin: 0;
  }
}
.campaigns-info-legend {
  justify-content: center;
}
@media (max-width: 768px) {
  .campaigns-info-legend {
    justify-content: flex-start;
  }
}
.campaigns .ecosystem-slider {
  padding: 0;
}
.campaigns .ecosystem-slider:before {
  display: none;
}
@media (max-width: 768px) {
  .campaigns .swiper-slide {
    padding-right: 30px;
    min-width: 600px;
    box-sizing: border-box;
  }
}
.campaigns .mobile-slider-progress {
  width: calc(100% - 32px);
}

.platform-item:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 1650px) {
  .platform-item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.platform-item-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .platform-item-box {
    padding: 24px;
  }
}
.platform-item-box-inner {
  flex: 1;
  margin-bottom: 32px;
}
.platform-item-title {
  font-size: 32px;
  line-height: 1.2;
}
@media (max-width: 1650px) {
  .platform-item-title {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .platform-item-title {
    font-size: 24px;
  }
}
.platform-item-img {
  padding: 16px;
}
@media (max-width: 576px) {
  .platform-item-img {
    padding: 5px;
  }
}
.platform-item-img img {
  border-radius: var(--half-radius);
}
@media (max-width: 991px) {
  .platform-item-row {
    flex-direction: column-reverse;
  }
}

.for-who-row {
  --row-gap-y: 32px;
  --row-gap-x: 24px;
}
.for-who-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.for-who-box-img {
  padding-top: 61%;
  position: relative;
  margin-bottom: 24px;
}
.for-who-box-img img {
  position: absolute;
  left: 0;
  top: 0;
}
.for-who-box-content {
  margin-bottom: 42px;
  flex: 1;
  max-width: 540px;
}
@media (max-width: 1650px) {
  .for-who-box-content {
    margin-bottom: 32px;
  }
}
.for-who-box-content p:last-child {
  margin: 0;
}
.for-who-box-title {
  font-size: 32px;
  line-height: 1.2;
}
@media (max-width: 1650px) {
  .for-who-box-title {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .for-who-box-title {
    font-size: 24px;
  }
}
.for-who-box-tag {
  color: var(--gray-black);
}
.partner-header {
  max-width: 470px;
}
.loop {
  overflow: hidden;
}
.loop-inner {
  position: relative;
  margin-top: 68px;
}
@media (max-width: 1650px) {
  .loop-inner {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .loop-inner {
    margin-top: 32px;
    flex-direction: column;
    gap: 32px;
  }
}
.loop-inner:before, .loop-inner:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
  width: calc(100vw - 20px);
}
.loop-inner:before {
  height: 100%;
  bottom: 50%;
  background: linear-gradient(180deg, rgba(225, 228, 230, 0) 0%, rgba(225, 228, 230, 0.4) 100%);
  border-radius: var(--base-radius);
  z-index: -1;
}
.loop-inner:after {
  width: calc(100vw - 40px);
  height: 1px;
  bottom: 50%;
  background: linear-gradient(to right, rgba(210, 213, 221, 0), rgb(210, 213, 221), rgba(210, 213, 221, 0));
  z-index: -1;
}
.loop-tag {
  font-size: 24px;
  font-weight: 500;
  position: absolute;
  top: calc(50% - 30px);
  transform: translate(0, -50%);
}
.loop-tag:first-child {
  left: 0;
}
.loop-tag:last-child {
  right: 0;
}
@media (max-width: 1650px) {
  .loop-tag {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .loop-tag {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .loop-tag {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .loop-tag {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
  }
}
.loop-round {
  position: relative;
  --size: 653px;
  --gutter: 50px;
  pointer-events: none;
}
@media (max-width: 1650px) {
  .loop-round {
    --size: 500px;
    --gutter: 30px;
  }
}
@media (max-width: 991px) {
  .loop-round {
    --size: 400px;
  }
}
@media (max-width: 576px) {
  .loop-round {
    --size: 320px;
    --gutter: 20px;
  }
}
.loop-round-inner {
  width: var(--size);
  height: var(--size);
  position: relative;
  border-radius: 100%;
  background-color: var(--white);
}
.loop-round-inner:before, .loop-round-inner:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100%;
}
.loop-round-inner:before {
  width: 100%;
  height: 100%;
  margin-top: calc(var(--size) / -2);
  margin-left: calc(var(--size) / -2);
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='653'%20height='653'%20viewBox='0%200%20653%20653'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_3002_6143)'%3e%3ccircle%20cx='326.462'%20cy='326.38'%20r='325.407'%20stroke='url(%23paint0_linear_3002_6143)'%20stroke-width='1.5'/%3e%3ccircle%20cx='326.457'%20cy='326.381'%20r='325.407'%20transform='rotate(150%20326.457%20326.381)'%20stroke='url(%23paint1_linear_3002_6143)'%20stroke-width='1.5'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_3002_6143'%20x1='326.462'%20y1='0.222656'%20x2='326.462'%20y2='424.951'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23D2D5DD'/%3e%3cstop%20offset='1'%20stop-color='%23D2D5DD'%20stop-opacity='0'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint1_linear_3002_6143'%20x1='326.457'%20y1='0.223694'%20x2='326.457'%20y2='108.164'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23D2D5DD'/%3e%3cstop%20offset='1'%20stop-color='%23D2D5DD'%20stop-opacity='0'/%3e%3c/linearGradient%3e%3cclipPath%20id='clip0_3002_6143'%3e%3crect%20width='653'%20height='653'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  animation: spin-anim 25s linear infinite;
}
.loop-round-inner:after {
  width: calc(var(--size) - var(--gutter));
  height: calc(var(--size) - var(--gutter));
  margin-top: calc((var(--size) - var(--gutter)) / -2);
  margin-left: calc((var(--size) - var(--gutter)) / -2);
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='592'%20height='592'%20viewBox='0%200%20592%20592'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_3002_6143)'%3e%3ccircle%20cx='295.875'%20cy='296.197'%20r='294.909'%20transform='rotate(50.5068%20295.875%20296.197)'%20stroke='url(%23paint0_linear_3002_6143)'%20stroke-width='1.5'/%3e%3ccircle%20cx='295.873'%20cy='296.198'%20r='294.909'%20transform='rotate(-127.222%20295.873%20296.198)'%20stroke='url(%23paint1_linear_3002_6143)'%20stroke-width='1.5'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_3002_6143'%20x1='295.875'%20y1='0.537353'%20x2='295.875'%20y2='213.598'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23D2D5DD'/%3e%3cstop%20offset='1'%20stop-color='%23D2D5DD'%20stop-opacity='0'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint1_linear_3002_6143'%20x1='295.873'%20y1='0.538757'%20x2='295.873'%20y2='98.3859'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23D2D5DD'/%3e%3cstop%20offset='1'%20stop-color='%23D2D5DD'%20stop-opacity='0'/%3e%3c/linearGradient%3e%3cclipPath%20id='clip0_3002_6143'%3e%3crect%20width='592'%20height='592'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  animation: spin-anim 25s linear infinite reverse;
}
.loop-round-info, .loop-round-decor {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.loop-round-info, .loop-round-decor {
  z-index: 2;
  width: calc(var(--size) - var(--gutter) * 2);
  height: calc(var(--size) - var(--gutter) * 2);
}
.loop-round-decor {
  z-index: 1;
  --cf: 7;
  width: calc(var(--size) - var(--gutter) * var(--cf));
  height: calc(var(--size) - var(--gutter) * var(--cf));
}
@media (max-width: 1650px) {
  .loop-round-decor {
    --cf: 9;
  }
}
@media (max-width: 991px) {
  .loop-round-decor {
    --cf: 7;
  }
}
@media (max-width: 576px) {
  .loop-round-decor {
    --cf: 8;
  }
}
.loop-round-decor img {
  filter: blur(20px);
  animation: spin-anim 35s linear infinite;
}
@media (max-width: 576px) {
  .loop-round-decor img {
    filter: blur(14px);
  }
}

.team-line {
  border-top: 1px solid var(--gray-dark);
  padding-top: 32px;
  box-sizing: border-box;
}
.team-line:not(:last-child) {
  margin-bottom: 160px;
}
@media (max-width: 1650px) {
  .team-line:not(:last-child) {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .team-line:not(:last-child) {
    margin-bottom: 32px;
  }
}
@media (max-width: 576px) {
  .team-line:not(:last-child) {
    padding-top: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .team-line:last-child {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-dark);
  }
}
.team-line-header {
  margin-bottom: 32px;
}
@media screen and (max-width: 1350px) {
  .team-line-header {
    max-width: 250px;
  }
}
@media (max-width: 576px) {
  .team-line-header {
    margin-bottom: 24px;
  }
}
.team-line-title {
  margin-bottom: 24px;
  font-size: 40px;
}
@media (max-width: 1650px) {
  .team-line-title {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  .team-line-title {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .team-line-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.team-line-desc {
  max-width: 410px;
}
@media (max-width: 1650px) {
  .team-line-desc {
    max-width: 320px;
  }
}
.team-box {
  perspective: 1000px;
  will-change: transform;
}
.team-box-img {
  padding-top: 100%;
  position: relative;
  margin-bottom: 24px;
}
.team-box-img.flip {
  will-change: transform;
  transition: transform 1s;
  transform-style: preserve-3d;
}
.team-box-img-inner img {
  width: 100%;
  height: 100%;
}
.team-box-img-inner, .team-box-img-info {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.team-box-img-info {
  background-color: var(--gray-strong);
  padding: 32px;
  box-sizing: border-box;
  transform: rotateY(180deg);
}
@media (max-width: 1650px) {
  .team-box-img-info {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .team-box-img-info {
    padding: 16px;
  }
}
.team-box-img-info-img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 32px;
}
@media screen and (max-width: 1900px) {
  .team-box-img-info-img {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
}
@media (max-width: 1650px) {
  .team-box-img-info-img {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1900px) {
  .team-box-img-info-desc {
    font-size: 18px;
  }
}
@media (max-width: 1650px) {
  .team-box-img-info-desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 1430px) {
  .team-box-img-info-desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 1350px) {
  .team-box-img-info-desc {
    font-size: 13px;
  }
}
@media screen and (max-width: 1220px) {
  .team-box-img-info-desc {
    font-size: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .team-box-img-info-desc {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .team-box-img-info-desc {
    font-size: 14px;
  }
}
.team-box-name {
  margin-bottom: 16px;
  font-size: 32px;
}
@media (max-width: 1650px) {
  .team-box-name {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .team-box-name {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .team-box-name {
    margin-bottom: 16px;
  }
}
.team-box-position {
  margin: 0;
  color: var(--gray-black);
}
.team-box-position:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .team-box-position:not(:last-child) {
    margin-bottom: 16px;
  }
}
.team-box-desc {
  padding-right: 100px;
  box-sizing: border-box;
}
@media (max-width: 1650px) {
  .team-box-desc {
    padding-right: 50px;
  }
}
@media (max-width: 576px) {
  .team-box-desc {
    padding-right: 0;
  }
}
@media screen and (min-width: 991px) {
  .team-box:hover .team-box-img.flip {
    transform: rotateY(180deg);
  }
}
@media (max-width: 991px) {
  .team-box .team-box-img.flip.hidden {
    transform: rotateY(180deg);
  }
}

@media (max-width: 991px) {
  .flip .team-box-img-inner:after,
  .flip .team-box-img-info:after {
    content: "";
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: var(--white);
    border: 1px solid var(--gray-dark);
    position: absolute;
    right: 24px;
    top: 24px;
    background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12%203.75C7.44365%203.75%203.75%207.44365%203.75%2012C3.75%2016.5563%207.44365%2020.25%2012%2020.25C16.5563%2020.25%2020.25%2016.5563%2020.25%2012C20.25%2011.5858%2020.5858%2011.25%2021%2011.25C21.4142%2011.25%2021.75%2011.5858%2021.75%2012C21.75%2017.3848%2017.3848%2021.75%2012%2021.75C6.61522%2021.75%202.25%2017.3848%202.25%2012C2.25%206.61522%206.61522%202.25%2012%202.25C14.771%202.25%2017.2715%203.40622%2019.046%205.26091V3C19.046%202.58579%2019.3817%202.25%2019.796%202.25C20.2102%202.25%2020.546%202.58579%2020.546%203V7.5C20.546%207.91421%2020.2102%208.25%2019.796%208.25H15.375C14.9608%208.25%2014.625%207.91421%2014.625%207.5C14.625%207.08579%2014.9608%206.75%2015.375%206.75H18.3644C16.8505%204.91682%2014.5612%203.75%2012%203.75Z'%20fill='%2317181B'/%3e%3c/svg%3e");
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (max-width: 991px) and (max-width: 768px) {
  .flip .team-box-img-inner:after,
  .flip .team-box-img-info:after {
    right: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
    background-size: 15px;
  }
}

.map-header {
  margin-bottom: var(--sec-h-mb);
}
.map-inner {
  min-height: 500px;
}
.map-inner iframe {
  filter: grayscale(100%);
  opacity: 0.8;
  height: 1000px;
}
@media (max-width: 1650px) {
  .map-inner iframe {
    height: 700px;
  }
}
@media (max-width: 1200px) {
  .map-inner iframe {
    height: 600px;
  }
}

.footer {
  position: relative;
  padding: 0 0 10px 0;
  box-sizing: border-box;
  font-size: 18px;
}
@media (max-width: 1650px) {
  .footer {
    font-size: 16px;
  }
}
.footer-inner {
  padding: 32px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer-inner {
    padding: 24px 0;
  }
}
.footer-inner:before {
  content: "";
  width: calc(100% - 20px);
  height: 101%;
  border-radius: var(--base-radius);
  background: linear-gradient(to bottom, rgba(225, 228, 230, 0.4) 0%, rgba(225, 228, 230, 0) 103.9%);
  backdrop-filter: blur(25px);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  z-index: -1;
}
@media (max-width: 1200px) {
  .footer-inner:before {
    width: 100%;
  }
}
.footer-top {
  margin-bottom: 230px;
}
@media (max-width: 1650px) {
  .footer-top {
    margin-bottom: 130px;
  }
}
@media (max-width: 1200px) {
  .footer-top {
    position: relative;
  }
}
@media (max-width: 768px) {
  .footer-top {
    margin-bottom: 215px;
  }
}
.footer-top .row {
  --row-gap-y: 32px;
}
.footer-bottom-row {
  align-items: flex-end;
}
@media (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.footer-bottom .row {
  --row-gap-y: 24px;
}
.footer-logo {
  display: inline-block;
  max-width: 166px;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .footer-logo {
    position: relative;
    top: 3px;
  }
}
.footer-desc {
  max-width: 476px;
  margin-bottom: 34px;
  font-size: 20px;
}
@media (max-width: 1650px) {
  .footer-desc {
    font-size: 18px;
    max-width: 420px;
  }
}
@media (max-width: 1200px) {
  .footer-desc {
    margin-bottom: 25px;
    font-size: 16px;
  }
}
.footer-contact-item:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 1650px) {
  .footer-contact-item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.footer-contact-val {
  text-decoration: none;
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 1650px) {
  .footer-contact-val {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .footer-contact-val {
    font-size: 24px;
  }
}
.footer-item-title {
  margin-bottom: 24px;
  color: var(--gray-black);
}
@media screen and (max-width: 1900px) {
  .footer-item-title {
    max-width: 180px;
  }
}
@media (max-width: 1650px) {
  .footer-item-title {
    max-width: 170px;
  }
}
@media (max-width: 991px) {
  .footer-item-title {
    margin-bottom: 16px;
  }
}
.footer-item-nav li:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 1650px) {
  .footer-item-nav li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.footer-item-nav li a {
  text-decoration: none;
}
.footer-gdpr {
  max-width: 100px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer-gdpr {
    max-width: 80px;
    margin-bottom: 24px;
  }
}
.footer-copyright {
  color: var(--gray-black);
}
.footer-meta {
  justify-content: flex-end;
  gap: 16px 24px;
}
@media (max-width: 1650px) {
  .footer-meta {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .footer-meta {
    justify-content: flex-start;
    gap: 4px 8px;
  }
}
.footer-meta li a {
  text-decoration: none;
}
.footer-back-logo {
  position: absolute;
  width: 617px;
  bottom: -308.5px;
  left: 50%;
  z-index: -2;
  transform: translate(-50%, 0);
}
@media (max-width: 1650px) {
  .footer-back-logo {
    width: 500px;
    bottom: -250px;
  }
}
@media (max-width: 1200px) {
  .footer-back-logo {
    width: 266px;
    bottom: inherit;
    top: 100%;
  }
}
@media (max-width: 768px) {
  .footer-back-logo {
    top: calc(100% + 20px);
  }
}
.footer-back-logo img {
  position: relative;
  animation: spin-anim 35s linear infinite;
}
@media (max-width: 576px) {
  .footer-back-logo img {
    animation: spin-anim 15s linear infinite;
  }
}
.footer .container {
  position: relative;
}
.footer-up {
  position: absolute;
  right: 30px;
  top: 31px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .footer-up {
    right: 20px;
  }
}
@media (max-width: 768px) {
  .footer-up {
    right: 16px;
  }
}