@charset "UTF-8";
/* stylelint-disable */
/* stylelint-disable */
body,
html,
p,
h1,
h2,
h3,
h4,
a,
label,
button,
input,
ul {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-family: "Gilroy", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #46433E;
  box-sizing: border-box;
}

div {
  outline: none;
  box-sizing: border-box;
}

button {
  border: none;
}

input,
button,
a {
  outline: none;
  text-decoration: none;
}
input:hover,
button:hover,
a:hover {
  text-decoration: none;
}

button {
  background: transparent;
}
button:active {
  outline: none;
}

li {
  list-style-type: none;
}

.dist ul li {
  list-style-type: disc !important;
}

.number_list ol li {
  list-style-type: decimal;
}
.number_list ul {
  margin: 0px 0px 0px 40px;
}

html {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.mfp-hide {
  display: none !important;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

:root {
  --btn-color: #ffa800;
  --btn-hover: #ffaa00de;
  --font-color: #fff;
  --title-color: #fff;
  --color-light: #fff;
  --color-dark: #000;
  --ff: "Gilroy";
  --accent-gradien: linear-gradient(to right, #0201ff, #23cccd, #fff);
}

html,
body {
  height: 100%;
  font-family: var(--ff);
  background: var(--color-dark);
  overflow-x: clip;
  font-size: 1rem;
}

a {
  color: var(--color-light);
}

.container {
  max-width: 1560px;
  padding: 0 15px;
  margin: auto;
  width: 100%;
}
@media only screen and (max-width: 765px) {
  .container {
    padding: 0 10px;
  }
}

.none {
  display: none !important;
}

::-webkit-scrollbar {
  width: 0.3125rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--accent-gradien);
}

body {
  position: relative;
}
body a {
  font-family: inherit;
}
body {
  color: var(--font-color);
  font-weight: 400;
  line-height: 1.6;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: flex;
  max-width: 100%;
  height: auto;
}

.section {
  min-height: 100vh;
}

.language_swither {
  display: flex;
  padding: 0.6875rem 0.0625rem;
  flex-direction: column;
  border-radius: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.language_swither a {
  display: flex;
  padding: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  transition: color linear 0.3s;
}
.language_swither a:hover {
  color: #fff;
}
.language_swither li.current-lang a {
  background-color: #0201ff;
  border-radius: 50%;
  color: #fff;
}

/* === Основной контейнер === */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0d0d0d;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* === Контентная часть === */
.preloader__content {
  position: relative;
  width: 100vw;
  height: 100vh;
  border: 5px solid rgba(255, 255, 255, 0.72);
  border-radius: 25px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.72);
}

/* === Слои === */
.preloader__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 21px;
  transform: translateX(-100vw);
  animation: preloader-slide 2s forwards;
}

.preloader__layer--white {
  background-color: #fff;
  animation-delay: 0s;
  z-index: 1;
}

.preloader__layer--blue {
  background-color: #0b36f2;
  animation-delay: 0.2s;
  z-index: 2;
}

.preloader__layer--black {
  background-color: #000;
  animation-delay: 0.8s;
  z-index: 3;
}

@keyframes preloader-slide {
  from {
    transform: translateX(-100vw);
  }
  to {
    transform: translateX(0);
  }
}
.preloader__info {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 5px 10px;
  z-index: 10;
}

.preloader__text {
  width: 80%;
}
@media only screen and (max-width: 600px) {
  .preloader__text {
    width: 100%;
  }
}

.preloader__text,
.preloader__percent {
  color: var(--color-light);
  font-size: clamp(2.1875rem, 1.489684466rem + 2.9773462783vw, 5.0625rem);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.253125rem;
}
@media only screen and (max-width: 980px) {
  .preloader__text,
  .preloader__percent {
    letter-spacing: -0.109375rem;
  }
}
.preloader__text *,
.preloader__percent * {
  color: var(--color-light);
  font-size: clamp(2.1875rem, 1.489684466rem + 2.9773462783vw, 5.0625rem);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.253125rem;
}
@media only screen and (max-width: 980px) {
  .preloader__text *,
  .preloader__percent * {
    letter-spacing: -0.109375rem;
  }
}
.preloader__text em,
.preloader__percent em {
  font-style: normal;
  padding-left: 10%;
}
.preloader__text strong,
.preloader__percent strong {
  background: linear-gradient(to right, #0201ff, #23cccd, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader__percent {
  text-align: right;
}

@media (max-width: 600px) {
  .preloader__info {
    flex-direction: column;
    gap: 3.125rem;
    justify-content: center;
  }
  .preloader__percent {
    width: 100%;
    text-align: center;
  }
}
/* This stylesheet generated by Transfonter (https://transfonter.org) on July 4, 2017 2:48 AM */
@font-face {
  font-family: "Gilroy";
  src: url("../../build/fonts/Gilroy-Light.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../build/fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../build/fonts/Gilroy-Semibold.woff2") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../build/fonts/Gilroy-Bold.woff2") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../build/fonts/Gilroy-Extrabold.woff2") format("woff");
  font-weight: 900;
  font-style: normal;
}
.header {
  transform: translateY(-400px);
  padding-block: clamp(1.25rem, 0.875rem + 1.875vw, 3.125rem);
  padding-inline: clamp(1.25rem, 0.875rem + 1.875vw, 3.125rem);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
}
.header.fixed-header {
  position: fixed;
  padding-block: 1.25rem;
  animation: headerAnimation 1s ease-in-out;
  background-color: #020202;
}
.header.fixed-header .header_left,
.header.fixed-header .header_right {
  align-items: center;
}
.header.fixed-header .header_right {
  grid-template-columns: 1fr auto;
}
@media screen and (min-width: 980px) {
  .header.fixed-header .header_language {
    position: relative;
    right: 0;
    flex-direction: row;
    padding: 0.25rem;
  }
}
.header_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.header_left, .header_right {
  display: grid;
}
.header_left {
  gap: 1.25rem;
  grid-template-columns: 7.0625rem 1fr;
  justify-content: space-between;
}
.header_menu {
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}
.header_menu > ul {
  padding: 0px clamp(0.625rem, -0.6781914894rem + 2.1276595745vw, 1.875rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.625rem, -1.9813829787rem + 4.2553191489vw, 3.125rem);
}
@media only screen and (max-width: 980px) {
  .header_menu > ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
}
.header_menu > ul a {
  color: var(--color-light);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 980px) {
  .header_menu {
    position: fixed;
    height: 100dvh;
    width: 100%;
    top: 0%;
    right: 0;
    left: 0;
    transition: transform 0.5s;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5333333333);
    padding: 2.25rem;
    display: flex;
    align-items: start;
    flex-direction: column;
    row-gap: 2.25rem;
    transform: translateY(-150%);
  }
  .header_menu.is-open {
    transform: translateY(0%);
  }
  .header_menu .header_cta {
    display: flex;
  }
}
.header_right {
  position: relative;
  grid-template-columns: 1fr 2.5rem;
}
@media only screen and (max-width: 980px) {
  .header_right {
    grid-template-columns: 1fr;
  }
}
.header_cta {
  justify-content: center;
  display: flex;
  justify-content: center;
  height: -moz-max-content;
  height: max-content;
  align-items: center;
  gap: 0.625rem;
  text-decoration: underline;
  font-size: clamp(0.875rem, 0.2302631579rem + 1.0526315789vw, 1.125rem);
  cursor: pointer;
}
.header_cta img {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}
@media only screen and (max-width: 980px) {
  .header_cta {
    display: none;
  }
}
.header_language {
  position: absolute;
  right: 0;
}
@media only screen and (max-width: 980px) {
  .header_language {
    display: none;
    position: relative;
    flex-direction: row !important;
  }
}
.header_close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 1.875rem;
  height: 1.875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='25' viewBox='0 0 26 25' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.4949 9.66626L3.82861 0L1.00019 2.82843L10.6664 12.4947L0.988281 22.1729L3.81671 25.0013L13.4949 15.3231L22.2134 24.0416L25.0418 21.2132L16.3233 12.4947L25.0299 3.78808L22.2015 0.959648L13.4949 9.66626Z' fill='%23D9D9D9'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.4949 9.66626L3.82861 0L1.00019 2.82843L10.6664 12.4947L0.988281 22.1729L3.81671 25.0013L13.4949 15.3231L22.2134 24.0416L25.0418 21.2132L16.3233 12.4947L25.0299 3.78808L22.2015 0.959648L13.4949 9.66626Z' fill='url(%23paint0_linear_2006_606)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_2006_606' x1='-64.5' y1='12' x2='28' y2='12' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23EFEDF4'/%3E%3Cstop offset='0.135' stop-color='%2323CCCD'/%3E%3Cstop offset='0.335' stop-color='%230201FF'/%3E%3Cstop offset='0.505' stop-color='%23EFEDF4'/%3E%3Cstop offset='0.68' stop-color='%230201FF'/%3E%3Cstop offset='0.89' stop-color='%2323CCCD'/%3E%3Cstop offset='1' stop-color='%23EFEDF4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cscript xmlns=''/%3E%3C/svg%3E");
  background-size: 1.875rem;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
}
.header_burger {
  display: none;
}
@media only screen and (max-width: 980px) {
  .header_burger {
    display: flex;
    width: 1.25rem;
    height: 1.875rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='20' viewBox='0 0 30 20' fill='none'%3E%3Crect width='30' height='4' fill='%23D9D9D9'/%3E%3Crect width='30' height='4' fill='url(%23paint0_linear_400_977)'/%3E%3Crect x='7' y='8' width='23' height='4' fill='%23D9D9D9'/%3E%3Crect x='7' y='8' width='23' height='4' fill='url(%23paint1_linear_400_977)'/%3E%3Crect y='16' width='30' height='4' fill='%23D9D9D9'/%3E%3Crect y='16' width='30' height='4' fill='url(%23paint2_linear_400_977)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_400_977' x1='-74.3363' y1='2' x2='26.9469' y2='2' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23EFEDF4'/%3E%3Cstop offset='0.135' stop-color='%2323CCCD'/%3E%3Cstop offset='0.335' stop-color='%230201FF'/%3E%3Cstop offset='0.505' stop-color='%23EFEDF4'/%3E%3Cstop offset='0.68' stop-color='%230201FF'/%3E%3Cstop offset='0.89' stop-color='%2323CCCD'/%3E%3Cstop offset='1' stop-color='%23EFEDF4'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_400_977' x1='-49.9912' y1='10' x2='27.6593' y2='10' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23EFEDF4'/%3E%3Cstop offset='0.135' stop-color='%2323CCCD'/%3E%3Cstop offset='0.335' stop-color='%230201FF'/%3E%3Cstop offset='0.505' stop-color='%23EFEDF4'/%3E%3Cstop offset='0.68' stop-color='%230201FF'/%3E%3Cstop offset='0.89' stop-color='%2323CCCD'/%3E%3Cstop offset='1' stop-color='%23EFEDF4'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_400_977' x1='-74.3363' y1='18' x2='26.9469' y2='18' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23EFEDF4'/%3E%3Cstop offset='0.135' stop-color='%2323CCCD'/%3E%3Cstop offset='0.335' stop-color='%230201FF'/%3E%3Cstop offset='0.505' stop-color='%23EFEDF4'/%3E%3Cstop offset='0.68' stop-color='%230201FF'/%3E%3Cstop offset='0.89' stop-color='%2323CCCD'/%3E%3Cstop offset='1' stop-color='%23EFEDF4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cscript xmlns=''/%3E%3C/svg%3E");
    background-size: 1.25rem;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: auto;
  }
}

@keyframes headerAnimation {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
.footer {
  position: relative;
  margin-top: 5.5rem;
  min-height: calc(100vh - 5.5rem);
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.footer_wrapper {
  padding-top: 1.25rem;
  max-width: calc(100% - clamp(2.5rem, 1.5898058252rem + 3.8834951456vw, 6.25rem));
  width: 100%;
  margin: 0 auto clamp(7.5rem, 4.1883116883rem + 6.9264069264vw, 12.5rem);
  display: grid;
  grid-template-columns: 45% auto 40%;
}
@media only screen and (max-width: 1150px) {
  .footer_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer_image {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.footer_left__title {
  color: var(--color-light);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: normal;
}
@media only screen and (max-width: 980px) {
  .footer_left__title {
    font-size: 1.25rem;
  }
}
.footer_sicials {
  margin-top: clamp(2.5rem, 0.0162337662rem + 5.1948051948vw, 6.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: normal;
}
@media only screen and (max-width: 765px) {
  .footer_sicials {
    font-size: 0.9375rem;
  }
}
.footer_sicials__list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer_sicials__list--item img {
  width: clamp(1.625rem, 0.7142857143rem + 1.9047619048vw, 3rem);
  height: clamp(1.625rem, 0.7142857143rem + 1.9047619048vw, 3rem);
}
.footer_left__mail {
  display: inline-flex;
  margin-top: clamp(1.125rem, 1.0422077922rem + 0.1731601732vw, 1.25rem);
  color: var(--color-light);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: normal;
  text-decoration: underline;
}
@media only screen and (max-width: 980px) {
  .footer_left__mail {
    font-size: 0.9375rem;
  }
}
.footer_middle #footer-menu {
  width: -moz-max-content;
  width: max-content;
  padding-inline: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: clamp(0.9375rem, 0.0166666667rem + 1.9259259259vw, 1.75rem);
}
@media only screen and (max-width: 1150px) {
  .footer_middle #footer-menu {
    margin-left: auto;
  }
}
@media only screen and (max-width: 1150px) {
  .footer_right {
    margin-top: 3.125rem;
    grid-column: -1/1;
  }
}
.footer_right__top, .footer_right__bottom {
  display: grid;
  grid-template-columns: 1fr 7.5rem;
  align-items: flex-start;
}
@media only screen and (max-width: 765px) {
  .footer_right__top {
    grid-template-columns: 7.5rem 1fr;
  }
}
.footer_btn.btn {
  margin: 0;
  padding: 0.375rem;
  padding-left: clamp(1.25rem, -0.875rem + 4.4444444444vw, 3.125rem);
  width: clamp(10.9375rem, 9.625rem + 6.5625vw, 17.5rem);
  background: linear-gradient(45deg, #0b36f2, #21bdd1);
  border: 1px solid transparent;
  transition: border 0.3s ease;
  min-height: 4.25rem;
  font-size: 1rem;
}
.footer_btn.btn:hover {
  color: var(--color-light);
  border: 1px solid var(--color-light);
}
.footer_btn.btn .btn_cicle {
  border: 0px;
  background: var(--color-light);
  width: 3.625rem;
  height: 3.625rem;
}
@media only screen and (max-width: 980px) {
  .footer_btn.btn .btn_cicle {
    width: 2.3125rem;
    height: 2.3125rem;
  }
}
@media only screen and (max-width: 980px) {
  .footer_btn.btn {
    min-height: 2.5625rem;
    font-size: 0.8125rem;
    padding: 0.125rem;
    padding-left: clamp(1.25rem, -0.875rem + 4.4444444444vw, 3.125rem);
  }
}
@media only screen and (max-width: 765px) {
  .footer_btn.btn {
    grid-column: 2;
    margin-left: auto;
  }
}
.footer_language {
  margin-left: auto;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width: 1150px) {
  .footer_language {
    width: 100%;
    flex-direction: row;
    padding: 0;
  }
}
@media only screen and (max-width: 765px) {
  .footer_language {
    grid-column: 1;
    grid-row: 1;
  }
}
.footer_right__bottom {
  margin-top: 3.125rem;
}
@media only screen and (max-width: 1150px) {
  .footer_right__bottom {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    justify-content: center;
  }
}
.footer_right__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width: 1150px) {
  .footer_right__left {
    width: auto;
    text-align: center;
  }
}
.footer_right__left * {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: normal;
}
.footer_right__left a {
  text-decoration: underline;
}
.footer_right__left p {
  margin-top: 0.75rem;
}
@media only screen and (max-width: 1150px) {
  .footer_right__right {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
  }
}
.footer_bottom {
  margin-top: auto;
  color: var(--color-light);
  text-align: center;
  font-size: clamp(6.25rem, -10.7224025974rem + 35.4978354978vw, 31.875rem);
  font-weight: 500;
  line-height: 70%;
  letter-spacing: 0rem;
  z-index: 0;
}

.btn {
  width: clamp(15rem, 13.5rem + 7.5vw, 22.5rem);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--color-light);
  border-radius: 5.625rem;
  padding-left: clamp(2.5rem, -0.1063829787rem + 4.2553191489vw, 5rem);
  background: linear-gradient(to bottom, #000 50%, #fff 50.01%);
  background-size: 100% 200%;
  background-position: 0% 0%;
  transition: background-position 0.5s;
  font-size: clamp(0.9375rem, 0.6117021277rem + 0.5319148936vw, 1.25rem);
  font-weight: 600;
}
.btn:hover {
  color: var(--color-dark);
  background-position: 0% 100%;
}
.btn_cicle {
  border: 0.625rem solid var(--color-light);
  width: 4.875rem;
  height: 4.875rem;
  background: linear-gradient(45deg, #0b36f2, #21bdd1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
@media only screen and (max-width: 765px) {
  .btn_cicle {
    border: 0.5rem solid var(--color-light);
    width: 4.25rem;
    height: 4.25rem;
  }
}

.hero {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 980px) {
  .hero {
    min-height: 400px;
    height: calc(100vh - 60px);
  }
}
.hero_video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_wrapper {
  position: relative;
  z-index: 5;
  max-width: calc(100% - clamp(2.5rem, 1.5898058252rem + 3.8834951456vw, 6.25rem));
  width: 100%;
  margin: auto auto 2.5rem;
}
@media screen and (min-width: 1921px) {
  .hero_wrapper {
    max-width: 120rem;
  }
}
.hero_bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
}
@media only screen and (max-width: 765px) {
  .hero_bottom {
    grid-template-columns: 1fr;
    gap: 1.6875rem;
  }
}
.hero_title * {
  color: var(--color-light);
  font-size: clamp(2.1875rem, 1.489684466rem + 2.9773462783vw, 5.0625rem);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.253125rem;
}
@media only screen and (max-width: 980px) {
  .hero_title * {
    letter-spacing: -0.109375rem;
  }
}
.hero_title em {
  font-style: normal;
  padding-left: 10%;
}
.hero_title strong {
  background: linear-gradient(to right, #0201ff, #23cccd, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero_title p .line {
  display: block;
  opacity: 0;
  transform: translateY(50%);
}
.hero_btn {
  transform: translateX(calc(100% + 25rem));
}

.text_wrapper {
  max-width: calc(100% - clamp(2.5rem, 1.5898058252rem + 3.8834951456vw, 6.25rem));
  padding: clamp(2.5rem, -10.3571428571rem + 26.8907563025vw, 12.5rem) 0;
  margin-inline: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (min-width: 1921px) {
  .text_wrapper {
    max-width: 120rem;
  }
}
.text_title {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.9375rem, -0.2558236273rem + 2.4958402662vw, 1.875rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.09375rem;
  margin-bottom: clamp(2.5rem, 2.0226705491rem + 0.9983361065vw, 2.875rem);
}
@media only screen and (max-width: 980px) {
  .text_title {
    letter-spacing: -0.046875rem;
    color: var(--color-light);
  }
}
.text_inner {
  width: 70%;
}
.text_arc {
  width: clamp(2.5rem, -0.6821963394rem + 6.6555740433vw, 5rem);
  height: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='73' height='343' viewBox='0 0 73 343' fill='none'%3E%3Cpath d='M71.8814 341.813C49.2506 319.402 31.2989 292.797 19.0514 263.515C6.80374 234.234 0.5 202.85 0.5 171.157C0.5 139.463 6.80379 108.079 19.0514 78.7977C31.299 49.5164 49.2506 22.911 71.8814 0.5' stroke='white' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.text_content {
  color: rgba(255, 255, 255, 0.5);
  text-align: justify;
  font-size: clamp(0.9375rem, -1.846921797rem + 5.8236272879vw, 3.125rem);
  font-weight: 300;
  line-height: 1;
}
@media only screen and (max-width: 980px) {
  .text_content {
    color: var(--color-light);
  }
}
.text_arc_right {
  scale: -1;
}

.ourservise {
  background-color: #f0f0f0;
}

.advantages {
  position: relative;
}
@media only screen and (max-width: 980px) {
  .advantages {
    display: flex;
    flex-direction: column-reverse;
  }
}
.advantages_image {
  top: -47%;
  right: -35%;
  position: absolute;
  width: clamp(175rem, 82.6866883117rem + 193.0735930736vw, 314.375rem);
  max-width: -moz-max-content;
  max-width: max-content;
  height: clamp(85.625rem, 40.7930194805rem + 93.7662337662vw, 153.3125rem);
  z-index: -1;
  mix-blend-mode: hard-light;
  transform: translateY(100%);
}
@media only screen and (max-width: 980px) {
  .advantages_image {
    top: -10%;
    right: -50%;
  }
}
.advantages_wrapper {
  position: relative;
  max-width: calc(100% - clamp(2.5rem, 1.5898058252rem + 3.8834951456vw, 6.25rem));
  padding: clamp(2.5rem, 1.6964285714rem + 1.6806722689vw, 3.125rem) 0;
  margin-inline: auto;
}
@media screen and (min-width: 1921px) {
  .advantages_wrapper {
    max-width: 120rem;
  }
}
.advantages_items {
  display: grid;
  grid-template-columns: repeat(2, 41%);
  justify-content: space-between;
  row-gap: 2.5rem;
}
@media only screen and (max-width: 1600px) {
  .advantages_items {
    grid-template-columns: repeat(2, 48%);
  }
}
@media only screen and (max-width: 980px) {
  .advantages_items {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.advantages_item {
  display: grid;
  grid-template-columns: auto 39%;
}
.advantages_item:nth-child(odd) {
  transform: translateX(calc(-100% - 25rem));
}
.advantages_item:nth-child(even), .advantages_item:last-of-type {
  transform: translateX(calc(100% + 25rem));
}
@media only screen and (max-width: 1600px) {
  .advantages_item {
    grid-template-columns: auto 45%;
  }
}
@media only screen and (max-width: 980px) {
  .advantages_item {
    grid-template-columns: repeat(1, 60%);
    gap: 1.25rem;
  }
  .advantages_item:nth-child(2) {
    margin-top: -3.75rem;
  }
  .advantages_item:nth-child(even) {
    justify-content: flex-end;
    text-align: end;
  }
}
.advantages_item:last-child {
  grid-column: 2;
}
@media only screen and (max-width: 980px) {
  .advantages_item:last-child {
    grid-column: 1;
  }
}
.advantages_item_left, .advantages_item_right {
  color: var(--color-light);
  font-weight: 500;
}
.advantages_item_left {
  color: var(--color-light);
  font-size: clamp(4.375rem, 1.4772727273rem + 6.0606060606vw, 8.75rem);
  line-height: 100%;
  letter-spacing: -0.4375rem;
}
@media only screen and (max-width: 980px) {
  .advantages_item_left {
    letter-spacing: -0.21875rem;
  }
}
.advantages_item_right {
  font-size: clamp(0.9375rem, 0.5357142857rem + 0.8403361345vw, 1.25rem);
  line-height: 130%;
}
.advantages_content {
  margin-top: -9.375rem;
}
@media only screen and (max-width: 980px) {
  .advantages_content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 765px) {
  .advantages_content {
    margin-top: clamp(2.5rem, 2.0505617978rem + 2.2471910112vw, 3.125rem);
  }
}
.advantages_title {
  color: var(--color-light);
  font-size: clamp(1.875rem, -0.2362012987rem + 4.4155844156vw, 5.0625rem);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.253125rem;
  width: 41%;
  text-align: end;
  opacity: 0;
  transform: translateY(20%);
}
@media only screen and (max-width: 980px) {
  .advantages_title {
    width: calc(100% - 2.5rem);
    letter-spacing: -0.09375rem;
  }
}
.advantages_text {
  background: linear-gradient(to right, #fff, #0201ff, #23cccd, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: clamp(6.75rem, -11.0917207792rem + 37.316017316vw, 33.6875rem);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -1.684375rem;
}
.advantages_text:has(> img) {
  margin-top: clamp(0rem, 10.4255319149rem + -17.0212765957vw, -10rem);
}
@media only screen and (max-width: 1150px) {
  .advantages_text:has(> img) {
    padding-top: 2.5rem;
  }
}
@media only screen and (max-width: 980px) {
  .advantages_text:has(> img) {
    padding-top: 0;
  }
}
.advantages_text img {
  max-width: calc(100% - 6.25rem);
  margin: 0 auto;
  width: 100%;
  display: flex;
  height: clamp(6.75rem, -11.0917207792rem + 37.316017316vw, 33.6875rem);
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 1330px) {
  .advantages_text {
    letter-spacing: -0.625rem;
    margin-top: 2.8125rem;
  }
}
@media only screen and (max-width: 765px) {
  .advantages_text {
    letter-spacing: -0.3375rem;
  }
}

.about {
  position: relative;
}
.about_image {
  bottom: 0%;
  left: -38%;
  position: absolute;
  width: clamp(172.5625rem, 100.7816558442rem + 150.1298701299vw, 280.9375rem);
  max-width: -moz-max-content;
  max-width: max-content;
  height: clamp(101.9375rem, 59.5478896104rem + 88.658008658vw, 165.9375rem);
  z-index: 0;
  mix-blend-mode: hard-light;
}
@media only screen and (max-width: 1400px) {
  .about_image {
    bottom: 0%;
    left: -77%;
  }
}
@media only screen and (max-width: 765px) {
  .about_image {
    bottom: -10%;
    transform: translateX(-20%);
  }
}
@media only screen and (max-width: 540px) {
  .about_image {
    bottom: -5%;
  }
}
.about_wrapper {
  max-width: calc(100% - clamp(2.5rem, 1.5898058252rem + 3.8834951456vw, 6.25rem));
  padding: clamp(2.5rem, -10.3571428571rem + 26.8907563025vw, 12.5rem) 0;
  padding-bottom: 0;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 46%;
  gap: clamp(1.25rem, -2.5998376623rem + 8.0519480519vw, 7.0625rem);
}
@media screen and (min-width: 1921px) {
  .about_wrapper {
    max-width: 120rem;
  }
}
@media only screen and (max-width: 980px) {
  .about_wrapper {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 980px) {
  .about_title p {
    text-align: center;
  }
}
@media only screen and (max-width: 465px) {
  .about_title p {
    text-align: left;
  }
}
.about_title * {
  color: var(--color-light);
  font-size: clamp(4.375rem, -1.0064935065rem + 11.2554112554vw, 12.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 80%;
  letter-spacing: -0.625rem;
}
@media only screen and (max-width: 980px) {
  .about_title * {
    letter-spacing: -0.4375rem;
  }
}
@media only screen and (max-width: 765px) {
  .about_title * {
    letter-spacing: -0.28125rem;
  }
}
.about_title > p .line:nth-of-type(1) {
  padding-left: 5%;
}
.about_title > p .line:nth-of-type(2) {
  padding-left: 35%;
}
.about_btn {
  position: relative;
  margin-top: clamp(2.0625rem, -7.6655844156rem + 20.3463203463vw, 16.75rem);
}
@media only screen and (max-width: 980px) {
  .about_btn {
    margin: 0 auto;
  }
}
.about_items {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 980px) {
  .about_items {
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
}
.about_item {
  border-radius: 16px;
  padding-block: clamp(1.875rem, 0.6816763727rem + 2.4958402662vw, 2.8125rem);
  padding-inline: clamp(1.25rem, -2.7277454243rem + 8.3194675541vw, 4.375rem);
  width: 100%;
  min-height: 200px;
  counter-increment: item;
}
@media only screen and (max-width: 980px) {
  .about_item {
    min-height: auto;
  }
}
.about_item:nth-child(3n+1) {
  background: radial-gradient(circle at 30%, #0201ff, #10103d);
}
.about_item:nth-child(3n+2) {
  background: radial-gradient(circle at 70%, #23cccd, #152e2e);
}
.about_item:nth-child(3n+3) {
  background: radial-gradient(circle at 30%, #efedf4, #a1a1a1);
}
.about_item:nth-child(3n+3) * {
  color: #000;
}
.about_items_title, .about_items_text {
  color: var(--color-light);
}
.about_items_title {
  position: relative;
  font-size: clamp(1.25rem, 0.4544509151rem + 1.6638935108vw, 1.875rem);
  font-weight: 600;
  line-height: 100%;
  padding-right: 1.875rem;
}
.about_items_text {
  margin-top: clamp(1.25rem, -0.7388727121rem + 4.159733777vw, 2.8125rem);
  font-size: clamp(0.9375rem, 0.5397254576rem + 0.8319467554vw, 1.25rem);
  font-weight: 400;
  line-height: 130%;
}
.about_bottom {
  position: relative;
}
.about_bottom::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 2562px;
  bottom: 0;
  background: #f0f0f0;
  filter: blur(72.5999984741px);
  height: clamp(47.5rem, 43.5389871383rem + 17.3633440514vw, 64.375rem);
  z-index: -1;
}
@media screen and (min-width: 1921px) {
  .about_bottom::before {
    width: calc(100% + 10vw);
  }
}
.about_bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 50%;
  background: #f0f0f0;
  z-index: 0;
}
.about_bottom.text .text_arc {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='73' height='343' viewBox='0 0 73 343' fill='none'%3E%3Cpath d='M71.8814 341.813C49.2506 319.402 31.2989 292.797 19.0514 263.515C6.80374 234.234 0.5 202.85 0.5 171.157C0.5 139.463 6.80379 108.079 19.0514 78.7977C31.299 49.5164 49.2506 22.911 71.8814 0.5' stroke='%230201FF' stroke-linecap='round'/%3E%3C/svg%3E");
}
.about_bottom.text .text_content {
  padding-block: clamp(3.125rem, 1.4691558442rem + 3.4632034632vw, 5.625rem);
  color: #0201ff;
}
.about_bottom .text_wrapper {
  position: relative;
  z-index: 1;
  padding-top: clamp(11.25rem, 8.3522727273rem + 6.0606060606vw, 15.625rem);
}

.services {
  background: #f0f0f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block-end: clamp(2.5rem, 1.6720779221rem + 1.7316017316vw, 3.75rem);
}
@media only screen and (max-width: 980px) {
  .services {
    min-height: auto;
    gap: 2.5rem;
  }
}
.services_title {
  position: relative;
  z-index: 1;
  color: var(--color-dark);
  font-size: clamp(3.75rem, 2.8806818182rem + 1.8181818182vw, 5.0625rem);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.253125rem;
  text-align: center;
}
.services_wrapper {
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.services_item {
  display: flex;
  justify-content: center;
  vertical-align: center;
  margin: auto;
}
.services_item a {
  color: #c8cbd0;
  text-decoration: none;
  font-size: 100px;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
}
.services_item.active a {
  color: #111;
}
.services_btn.btn {
  margin: 0 auto;
  position: relative;
  font-size: 0.875rem;
}
@media only screen and (max-width: 1400px) {
  .services_btn.btn {
    padding-left: 1.25rem;
  }
}

.stage {
  background-color: #f0f0f0;
  position: static;
  width: 100vw;
  height: 60vh;
  overflow: hidden;
}
@media only screen and (max-width: 980px) {
  .stage {
    width: 100%;
    height: auto;
  }
}
.stage .ring,
.stage .item {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 980px) {
  .stage .ring,
  .stage .item {
    transform-style: unset;
  }
}
.stage div,
.stage ul,
.stage li {
  position: absolute;
}
@media only screen and (max-width: 980px) {
  .stage div,
  .stage ul,
  .stage li {
    position: relative;
  }
}
.stage ul {
  list-style: none;
  padding: 0;
}
@media only screen and (max-width: 980px) {
  .stage ul {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
  }
}
.stage .item {
  display: flex;
  justify-content: center;
  vertical-align: center;
  margin: auto;
}
@media only screen and (max-width: 980px) {
  .stage .item {
    justify-content: start;
  }
}
.stage .item a {
  color: rgba(2, 1, 255, 0.2);
  text-decoration: none;
  font-size: clamp(1.875rem, -0.4017857143rem + 4.7619047619vw, 5.3125rem);
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  text-align: center;
  justify-content: center;
  font-style: normal;
  font-weight: 400;
  line-height: 99.528%;
  letter-spacing: -0.159375rem;
}
@media only screen and (max-width: 980px) {
  .stage .item a {
    text-align: left;
    color: #0201ff;
  }
}
.stage .item.active a {
  color: #0201ff;
}
.stage .container {
  perspective: 2000px;
  width: 100vw;
  height: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 980px) {
  .stage .container {
    perspective: none;
    width: 100%;
    height: auto;
    left: auto;
    top: 0;
    transform: translate(0);
  }
}
.stage:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f0f0f0 0%, #f0f0f0 10%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, #f0f0f0 90%, #f0f0f0 100%);
  content: " ";
  pointer-events: none;
}
@media only screen and (max-width: 980px) {
  .stage:after {
    display: none;
  }
}

.lines {
  overflow: hidden;
  background-color: #f0f0f0;
}
.lines .linee {
  background-color: var(--color-dark);
  height: 3.75rem;
  width: 100vw;
  display: block;
  position: relative;
}
@media only screen and (max-width: 765px) {
  .lines .linee {
    height: 2.5rem;
  }
}

.miniblog {
  position: relative;
  background-color: #000;
  padding-block-start: clamp(4.0625rem, -1.112012987rem + 10.8225108225vw, 11.875rem);
}
.miniblog_title {
  margin: 0 auto;
  max-width: 60%;
  color: var(--color-light);
  text-align: center;
  font-size: clamp(2.8125rem, -11.5528846154rem + 13.8461538462vw, 5.0625rem);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.253125rem;
}
@media only screen and (max-width: 1660px) {
  .miniblog_title {
    letter-spacing: -0.09375rem;
  }
}
@media only screen and (max-width: 765px) {
  .miniblog_title {
    max-width: calc(100% - 2.5rem);
    text-align: left;
    letter-spacing: -0.140625rem;
  }
}
.miniblog_slider {
  margin-top: 3.75rem;
  margin-bottom: 2.5rem;
  padding-top: 4.0625rem !important;
  padding-bottom: 4.0625rem !important;
}
@media only screen and (max-width: 1660px) {
  .miniblog_slider {
    margin-top: 1.25rem;
  }
}
@media only screen and (max-width: 765px) {
  .miniblog_slider {
    margin: 0 !important;
  }
}
.miniblog .swiper {
  position: relative;
}
.miniblog .swiper::before, .miniblog .swiper::after {
  content: "";
  top: 0;
  bottom: 0;
  position: absolute;
  height: 100%;
  display: flex;
  width: 30%;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.miniblog .swiper::before {
  left: 0;
}
.miniblog .swiper::after {
  right: 0;
  scale: -1;
}
@media only screen and (max-width: 765px) {
  .miniblog .swiper::before, .miniblog .swiper::after {
    display: none;
  }
}
.miniblog .swiper-wrapper {
  align-items: center;
}
.miniblog .swiper-slide {
  padding: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  border-radius: 0.625rem;
  background-color: var(--color-light);
  box-shadow: 0 0 82px 0 rgba(0, 0, 0, 0.42);
  width: 30.3125rem !important;
  opacity: 0.5;
  transition: scale 0.3s ease, opacity 0.3s ease;
}
@media only screen and (max-width: 1660px) {
  .miniblog .swiper-slide {
    width: 25rem !important;
  }
}
@media only screen and (max-width: 765px) {
  .miniblog .swiper-slide {
    width: 18.4375rem !important;
    padding: 1.625rem;
  }
}
.miniblog .swiper-slide.swiper-slide-active {
  scale: 1.2;
  z-index: 9;
  opacity: 1;
}
@media only screen and (max-width: 765px) {
  .miniblog .swiper-slide.swiper-slide-active {
    scale: 1.1;
  }
}
.miniblog_card {
  display: flex;
  flex-direction: column;
  min-height: clamp(15.625rem, 8.5416666667rem + 14.8148148148vw, 21.875rem);
}
.miniblog_top {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
}
.miniblog_top_item {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  font-weight: 400;
  line-height: 99.528%;
}
.miniblog_image {
  margin-top: 1.25rem;
  display: flex;
  height: clamp(7.5rem, 4.6666666667rem + 5.9259259259vw, 10rem);
  border-radius: 0.625rem;
  overflow: hidden;
}
.miniblog_bottom {
  margin-top: 0.625rem;
}
.miniblog_tag {
  color: var(--color-dark);
  font-size: 1rem;
  font-weight: 600;
}
.miniblog_bottom_title {
  margin-top: 0.625rem;
  color: #0201ff;
  font-size: clamp(1.125rem, 1.0535714286rem + 0.3571428571vw, 1.375rem);
  font-weight: 700;
  line-height: 99.528%;
}
.miniblog_content {
  margin-top: 0.625rem;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 99.528%;
}
.miniblog_slider_nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2.25rem, -0.2142857143rem + 12.3214285714vw, 10.875rem);
  z-index: 0;
}
.miniblog .swiper-button-prev,
.miniblog .swiper-button-next {
  position: relative;
  right: 0;
  left: 0;
  top: 0;
  transform: translate(0, 0);
}
.miniblog .swiper-button-prev::after,
.miniblog .swiper-button-next::after {
  color: var(--color-light);
}
.miniblog .text_wrapper {
  padding-block: 12.5rem;
}
@media only screen and (max-width: 1660px) {
  .miniblog .text_wrapper {
    padding-block: 12.5rem 4.375rem;
  }
}
@media only screen and (max-width: 980px) {
  .miniblog .text_wrapper {
    padding-block: 4.375rem;
  }
}
.miniblog .text_content {
  padding-block: clamp(3.125rem, 1.4691558442rem + 3.4632034632vw, 5.625rem);
}

.split-word {
  display: inline-block;
  white-space: nowrap;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}
/*# sourceMappingURL=main.css.map */
