:root {
  --font-family: "HalvarEng", sans-serif;
  --content-width: 1280px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "HalvarEng";
  src: url("../fonts/HalvarEng-Rg.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "HalvarEng";
  src: url("../fonts/HalvarEng-Md.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "HalvarEng";
  src: url("../fonts/HalvarEng-Bd.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "HalvarEngSl";
  src: url("../fonts/HalvarEng-BdSlanted.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "HalvarEng";
  src: url("../fonts/HalvarEng-XBd.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "HalvarEng";
  src: url("../fonts/HalvarEng-BlkSlanted.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
  background-color: #060502;
}

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

a {
  text-decoration: none;
}

.site-container {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

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

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.lang-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.lang-btn svg {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.lang-btn span {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.lang-btn__dropdown {
  position: absolute;
  left: 50%;
  bottom: -19px;
  -webkit-transform: translate(-50%, 103%);
  -ms-transform: translate(-50%, 103%);
  transform: translate(-50%, 103%);
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3.5px);
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.lang-btn__dropdown--active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}
.lang-btn__dropdown-link {
  padding: 7px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.lang-btn__dropdown-link--active {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
}
.lang-btn--active > svg {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}

.swiper-button-prev,
.swiper-button-next {
  position: initial;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  margin: 0;
  width: 70px;
  height: 70px;
  background-color: #463816;
  border-radius: 16.3333px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 20px;
  height: 30px;
}
.swiper-button-prev svg path,
.swiper-button-next svg path {
  -webkit-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: initial;
  top: 455px;
  left: 31px;
  width: 100%;
  max-width: 450px;
}

.swiper-pagination {
  text-align: initial;
  -webkit-transform: rotate(-3.81deg);
  -ms-transform: rotate(-3.81deg);
  transform: rotate(-3.81deg);
}

.swiper-pagination-bullet {
  width: 78px;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 18px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}

.title {
  font-weight: 900;
  font-size: 110px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}
.title span {
  background: linear-gradient(135deg, #FED90E 0%, #FBAC33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding: 0 5px;
}

section {
  scroll-margin-top: 120px;
}

.burger-wrapper {
  width: 35px;
  height: 35px;
  background-color: #FFFFFF;
  border-radius: 8.75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
  z-index: 100;
}
.burger-wrapper.burger--active .burger::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger-wrapper.burger--active .burger::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger-wrapper.burger--active .burger .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger {
  --burger-width: 18px;
  --burger-height: 13px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #060502;
  z-index: 999;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.loader--hide {
  opacity: 0;
  visibility: hidden;
}
.loader__spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #FED90E;
  border-radius: 50%;
  -webkit-animation: loader-spin 0.8s linear infinite;
  animation: loader-spin 0.8s linear infinite;
}

@-webkit-keyframes loader-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.reveal {
  opacity: 0;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
.reveal--visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.benefit-reveal {
  opacity: 0;
  -webkit-transform: translateY(30px) scale(0.95);
  -ms-transform: translateY(30px) scale(0.95);
  transform: translateY(30px) scale(0.95);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.benefit-reveal--visible {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

.header {
  padding: 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

.hero {
  padding-top: 200px;
  padding-bottom: 67px;
  position: relative;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 1080px;
  z-index: -1;
  pointer-events: none;
}
.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 780px;
}
.hero__content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 878px;
  height: 325px;
  background-color: #000000;
  opacity: 0.8;
  -webkit-filter: blur(125px);
  filter: blur(125px);
  pointer-events: none;
}
.hero__content > * {
  position: relative;
  z-index: 1;
}
.hero__logo {
  -webkit-transform: translate(-9px, 5px);
  -ms-transform: translate(-9px, 5px);
  transform: translate(-9px, 5px);
  position: relative;
  z-index: 1;
  -webkit-filter: drop-shadow(0px 4px 68px rgba(0, 0, 0, 0.6));
  filter: drop-shadow(0px 4px 68px rgba(0, 0, 0, 0.6));
}
.hero__title {
  font-weight: 800;
  font-size: 72px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 20px;
  position: relative;
}
.hero__descr {
  font-weight: 400;
  font-size: 32px;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 50px;
}
.hero__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 103px;
}
.hero__social-link {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  position: relative;
}
.hero__social-link,
.hero__social-link img {
  display: block;
}
.hero__social-link--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: auto;
}
.hero__social-link--disabled:hover {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}
.hero__social-link--disabled::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(254, 217, 14, 0.4);
  border-radius: 8px;
  color: #FED90E;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  pointer-events: none;
}
.hero__social-link--disabled:hover::after {
  opacity: 1;
  visibility: visible;
}
.hero__benefits-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  width: 100%;
  max-width: 764px;
  margin-bottom: 72px;
}
.hero__benefits-item {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
  border: 0.855863px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3.39492px);
  border-radius: 19.1px;
  padding: 35px 10px 36px;
  padding-left: 123px;
}
.hero__benefits-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/hero/hero-benefits-item-bg.png");
  pointer-events: none;
}
.hero__benefits-item-text {
  font-weight: 500;
  font-size: 25.6759px;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 90%;
}
.hero__benefits-item-text-primary {
  background: linear-gradient(135deg, #FED90E 0%, #FBAC33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero__benefits-item-text-opacity {
  color: rgba(255, 255, 255, 0.5);
}
.hero__benefits-item-img {
  position: absolute;
  left: -10px;
  top: 0;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.hero__down-link {
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.hero__down-link svg {
  display: block;
}

.details {
  position: relative;
  padding-top: 21px;
  padding-bottom: 155px;
  min-height: 943px;
}
.details__swiper-container {
  position: relative;
}
.details__img {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-45%);
  -ms-transform: translateX(-45%);
  transform: translateX(-45%);
  width: 1920px;
  max-width: initial;
  z-index: -1;
  pointer-events: none;
}
.details__img-1 {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.details__img-2 {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.details__title {
  font-weight: 900;
  font-size: 110px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 107px;
  text-align: center;
  position: relative;
}
.details__swiper-nav {
  position: absolute;
  top: 105px;
  left: 10px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-transform: rotate(-3.81deg);
  -ms-transform: rotate(-3.81deg);
  transform: rotate(-3.81deg);
}
.details .swiper-slide {
  padding-top: 188px;
  padding-bottom: 80px;
  padding-left: 10px;
}
.details__slide-content {
  position: relative;
}
.details__slide-text {
  width: 100%;
  max-width: 660px;
  -webkit-transform: rotate(-3.81deg);
  -ms-transform: rotate(-3.81deg);
  transform: rotate(-3.81deg);
}
.details__slide-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  -webkit-transform: translate(140px, -110px);
  -ms-transform: translate(140px, -110px);
  transform: translate(140px, -110px);
}
.details__slide-img--1 {
  width: 598px;
  height: 360px;
  -webkit-transform: translate(-40px, -110px);
  -ms-transform: translate(-40px, -110px);
  transform: translate(-40px, -110px);
}
.details__slide-img--2 {
  -webkit-transform: translate(50px, -180px);
  -ms-transform: translate(50px, -180px);
  transform: translate(50px, -180px);
  width: 833px;
  height: 468px;
}
.details__slide-img--3 {
  -webkit-transform: translate(20px, -160px);
  -ms-transform: translate(20px, -160px);
  transform: translate(20px, -160px);
  width: 724px;
  height: 478px;
}
.details__slide-img--4 {
  -webkit-transform: translate(30px, -176px);
  -ms-transform: translate(30px, -176px);
  transform: translate(30px, -176px);
  width: 692px;
  height: 450px;
}
.details__slide-img--5 {
  -webkit-transform: translate(60px, -196px);
  -ms-transform: translate(60px, -196px);
  transform: translate(60px, -196px);
  width: 770px;
  height: 508px;
}
.details__swiper-title {
  font-weight: 800;
  font-size: 90px;
  line-height: 90%;
  text-transform: uppercase;
  color: #2B1F07;
  margin: 0;
  margin-bottom: 60px;
}
.details__swiper-descr {
  font-weight: 500;
  font-size: 32px;
  line-height: 85%;
  color: #2B1F07;
  margin: 0;
}

.about {
  padding-bottom: 125px;
  position: relative;
  overflow: hidden;
}
.about__img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 140px;
  z-index: -1;
  width: 1282px;
  max-width: initial;
  border-radius: 50px;
}
.about__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 110px;
}
.about__subtitle {
  font-weight: 700;
  font-size: 45px;
  color: #FFFFFF;
  text-shadow: 0px 0px 37.8px rgb(0, 0, 0);
  margin: 0;
}
.about__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 15px;
}
.about__content {
  width: 100%;
  max-width: 849px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
}
.about__media {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 31px;
}
.about__video {
  position: relative;
  min-height: 250px;
  cursor: pointer;
}
.about__video video {
  width: 100%;
  height: 100%;
}
.about__video--active .about__video-play,
.about__video--active .about__video-play-btn {
  display: none;
}
.about__video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 94px;
  height: 94px;
  background: rgba(48, 48, 48, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(7.5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.about__video-play-btn {
  position: absolute;
  bottom: 0;
  right: 31px;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  padding: 15px 20px;
  background: linear-gradient(135deg, #FED90E 0%, #FBAC33 100%);
  border-radius: 12px;
  text-transform: uppercase;
}

.reviews {
  padding-top: 40px;
}
.reviews__title {
  font-weight: 700;
  font-size: 45px;
  color: #FFFFFF;
  text-shadow: 0px 0px 19.8px rgba(0, 0, 0, 0.25);
  margin: 0;
  margin-bottom: 35px;
}
.reviews__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 69px;
  margin-bottom: 52px;
}
.reviews__list-divider {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 1px;
  margin-bottom: 82px;
}
.reviews__item {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.15)), to(rgba(255, 255, 255, 0.01)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(7.5px);
  border-radius: 21px;
  padding: 29px 19px 22px;
  padding-left: 136px;
  overflow: hidden;
}
.reviews__item-img {
  position: absolute;
  left: -20px;
  top: 0;
  height: 100%;
  z-index: -1;
}
.reviews__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.reviews__item-title {
  font-weight: 800;
  font-size: 30px;
  background: linear-gradient(135deg, #FED90E 0%, #FBAC33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-transform: uppercase;
  margin: 0;
}
.reviews__item-descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 85%;
  color: #FFFFFF;
  margin: 0;
}
.reviews__item-hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}
.reviews__item-hours-primary {
  color: rgba(255, 255, 255, 0.5);
}
.reviews__solutions-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 42px;
  position: relative;
}
.reviews__solutions-container-wrapper {
  position: relative;
}
.reviews__solutions-content-img {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-55%);
  -ms-transform: translateY(-55%);
  transform: translateY(-55%);
  pointer-events: none;
  z-index: -1;
}
.reviews__solutions-content-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 182%;
  z-index: -1;
  pointer-events: none;
}
.reviews__solutions-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 41px;
  width: 100%;
  max-width: 767px;
}
.reviews__solutions-title {
  font-weight: 700;
  font-size: 72px;
  color: #FFFFFF;
  margin: 0;
}
.reviews__solutions-list {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 112px;
}
.reviews__solutions-list-img {
  position: absolute;
  right: -60px;
  top: -224px;
  z-index: -1;
}
.reviews__solutions-list-divider {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 1px;
  margin-bottom: 56px;
}
.reviews__solutions-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 227px;
  background: linear-gradient(153.54deg, rgba(255, 255, 255, 0.15) 14.43%, rgba(255, 255, 255, 0.01) 89.25%);
  -webkit-box-shadow: 0px 0px 15.5393px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 15.5393px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(7.5px);
  border-radius: 25px;
  padding: 38px 27px;
  overflow: hidden;
  border: 3px solid transparent;
  -webkit-transition: border 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}
.reviews__solutions-item-img {
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: -1;
  pointer-events: none;
}
.reviews__solutions-item-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 70%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 21px;
}
.reviews__solutions-item-title span {
  background: linear-gradient(135deg, #FED90E 0%, #FBAC33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.reviews__solutions-item-descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 70%;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  width: 100%;
  max-width: 143px;
}

.servers__title {
  margin-bottom: 60px;
}
.servers__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
  margin-bottom: 61px;
}
.servers__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: linear-gradient(153.54deg, rgba(255, 255, 255, 0.15) 14.43%, rgba(255, 255, 255, 0.05) 69.1%);
  -webkit-box-shadow: 0px 0px 19.0032px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 19.0032px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(9.17184px);
  border-radius: 30.5728px;
  padding: 31px 20px 31px 31px;
}
.servers__item-svg {
  position: absolute;
  left: 31px;
  top: 31px;
  z-index: -1;
}
.servers__item-header {
  margin-bottom: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  padding-left: 39px;
}
.servers__item-number {
  font-weight: 900;
  font-size: 88.0497px;
  line-height: 70%;
  color: #FFFFFF;
}
.servers__item-val {
  font-weight: 800;
  font-size: 39px;
  line-height: 65%;
  text-align: right;
  color: #FFFFFF;
}
.servers__item-val span {
  font-size: 31px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}
.servers__item-text {
  font-weight: 700;
  font-size: 39.1332px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}
.servers__item-progress {
  position: relative;
  width: 100%;
  height: 14.67px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 55.031px;
}
.servers__item-progress span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 3px;
  height: 9.5px;
  background-color: #91FF62;
  border-radius: 55.031px;
}
.servers__online {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.servers__online-label {
  font-weight: 500;
  font-size: 45px;
  letter-spacing: 0.38em;
  color: #FFFFFF;
}
.servers__online-val {
  font-weight: 700;
  font-size: 90px;
  background: linear-gradient(135deg, #FED90E 0%, #FBAC33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.servers__online-divider {
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

.news {
  position: relative;
  padding-top: 30px;
  padding-bottom: 94px;
}
.news__img {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  min-width: 1920px;
}
.news__title {
  margin-bottom: 57px;
  text-align: initial;
}
.news__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
  margin-bottom: 40px;
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  border-radius: 32.31px;
  background: linear-gradient(153.54deg, rgba(255, 255, 255, 0.15) 14.43%, rgba(255, 255, 255, 0.05) 69.1%), #13120F;
  -webkit-box-shadow: 0px 0px 17.9445px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 17.9445px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8.66086px);
  border-radius: 32.3135px;
}
.news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  padding: 23px 27px;
}
.news__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  font-weight: 700;
  font-size: 23.6072px;
  line-height: 85%;
  color: #FFFFFF;
  text-transform: uppercase;
}
.news__item-text a {
  font-weight: 400;
  font-size: 18.8858px;
  background: linear-gradient(135deg, #FED90E 0%, #FBAC33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-transform: initial;
}
.news__item-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 19px;
}
.news__item-social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 5px;
}
.news__item-social-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 15.1086px;
  color: rgba(255, 255, 255, 0.35);
}
.news__btn-more {
  display: block;
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFD52B), to(#FFB52B));
  background: linear-gradient(180deg, #FFD52B 0%, #FFB52B 100%);
  -webkit-box-shadow: 0px 0px 90px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 90px rgba(0, 0, 0, 0.5);
  border-radius: 16.8px;
  padding: 20px 28px;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.social {
  position: relative;
  padding: 60px 0 77px;
}
.social__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.social__title {
  font-weight: 900;
  font-size: 72px;
  line-height: 85%;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 40px;
}
.social__title span {
  background: linear-gradient(135deg, #FED90E 0%, #FBAC33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding: 0 3px;
}
.social__list {
  position: relative;
  width: 100%;
  max-width: 714px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.social__list-img {
  position: absolute;
  right: 0;
  top: -220px;
  -webkit-transform: translateX(78%);
  -ms-transform: translateX(78%);
  transform: translateX(78%);
  width: 1040px;
  max-width: initial;
  z-index: -1;
  pointer-events: none;
}
.social__item {
  border-radius: 22px;
  padding: 22px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.social__item--tg {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 160, 219, 0)), to(#16A0DB));
  background: linear-gradient(180deg, rgba(22, 160, 219, 0) 0%, #16A0DB 100%);
}
.social__item--tg .social__item-link {
  background: -webkit-gradient(linear, left top, left bottom, from(#60CFFF), to(#2AACE5));
  background: linear-gradient(180deg, #60CFFF 0%, #2AACE5 100%);
}
.social__item--ds {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(88, 101, 242, 0)), to(#5865F2));
  background: linear-gradient(180deg, rgba(88, 101, 242, 0) 0%, #5865F2 100%);
}
.social__item--ds .social__item-link {
  background: -webkit-gradient(linear, left top, left bottom, from(#8D97FF), to(#5865F2));
  background: linear-gradient(180deg, #8D97FF 0%, #5865F2 100%);
}
.social__item--yt {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(219, 29, 22, 0)), to(#DB1D16));
  background: linear-gradient(180deg, rgba(219, 29, 22, 0) 0%, #DB1D16 100%);
}
.social__item--yt .social__item-link {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF6D60), to(#E52A2A));
  background: linear-gradient(180deg, #FF6D60 0%, #E52A2A 100%);
}
.social__item--tt {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(64, 64, 64, 0)), to(#7D7D7D));
  background: linear-gradient(180deg, rgba(64, 64, 64, 0) 0%, #7D7D7D 100%);
}
.social__item--tt .social__item-link {
  background: -webkit-gradient(linear, left top, left bottom, from(#B4B4B4), to(#747474));
  background: linear-gradient(180deg, #B4B4B4 0%, #747474 100%);
}
.social__item--vk {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 119, 255, 0)), to(#0077FF));
  background: linear-gradient(180deg, rgba(0, 119, 255, 0) 0%, #0077FF 100%);
}
.social__item--vk .social__item-link {
  background: -webkit-gradient(linear, left top, left bottom, from(#469CFF), to(#0077FF));
  background: linear-gradient(180deg, #469CFF 0%, #0077FF 100%);
}
.social__item-title {
  font-weight: 800;
  font-size: 33.493px;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 25px;
}
.social__item-text {
  font-family: "HalvarEngSl", sans-serif;
  font-weight: 700;
  font-size: 25.436px;
  line-height: 85%;
  color: #FFFFFF;
  margin-bottom: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
}
.social__item-text span {
  font-family: "HalvarEng", sans-serif;
  font-weight: 400;
  font-size: 10.5814px;
  line-height: 85%;
  letter-spacing: 0.27em;
  color: #FFFFFF;
  text-transform: uppercase;
}
.social__item-link {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  padding: 15px;
  width: 100%;
  -webkit-box-shadow: 0px 0px 51.4286px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 51.4286px rgba(0, 0, 0, 0.5);
  border-radius: 9.6px;
  text-transform: uppercase;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.history {
  padding: 325px 0 45px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/history/history-bg.png");
}
.history__img {
  margin-bottom: 16px;
  position: relative;
}
.history__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.history__content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -40%);
  -ms-transform: translate(-50%, -40%);
  transform: translate(-50%, -40%);
  width: 645px;
  height: 241px;
  background-color: #000000;
  opacity: 0.8;
  -webkit-filter: blur(65.8px);
  filter: blur(65.8px);
}
.history__title {
  font-weight: 800;
  font-size: 72px;
  line-height: 85%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 26px;
  position: relative;
}
.history__social-list {
  position: relative;
}

.footer {
  padding: 50px 0;
  background-color: #060502;
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}
.footer__link {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}
.footer__social-link {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.footer__social-link,
.footer__social-link svg {
  display: block;
}

.legal-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(6, 5, 2, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.legal-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 60px;
}
.legal-header__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.legal-header__back svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.legal-header__back:hover {
  color: #fff;
}
.legal-header__lang {
  position: relative;
}
.legal-header__lang-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.legal-header__lang-btn img {
  border-radius: 2px;
}
.legal-header__lang-btn span {
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.legal-header__lang-btn svg {
  width: 10px;
  height: 10px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.legal-header__lang-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.legal-header__lang-btn:hover span {
  color: #fff;
}
.legal-header__lang-btn--active svg {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
.legal-header__lang-btn--active .legal-header__lang-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.legal-header__lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.legal-header__lang-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.legal-header__lang-link svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 2px;
}
.legal-header__lang-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.legal {
  padding: 100px 0 80px;
}
.legal__content {
  max-width: 900px;
  margin: 0 auto;
}
.legal__title {
  font-weight: 900;
  font-size: 64px;
  color: #fff;
  margin: 0 0 10px;
  text-align: center;
  background: linear-gradient(135deg, #FED90E 0%, #FBAC33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.legal__subtitle {
  font-weight: 700;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 40px;
}
.legal__notice {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #FBAC33;
  padding: 20px 25px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 30px;
}
.legal__date {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}
.legal h2 {
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  margin: 40px 0 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.legal h3 {
  font-weight: 700;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin: 25px 0 12px;
}
.legal p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 15px;
}
.legal p strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.legal ul {
  margin: 0 0 20px;
  padding: 0 0 0 20px;
}
.legal ul li {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  padding-left: 10px;
  margin-bottom: 6px;
}
.legal ul li::marker {
  color: #FBAC33;
}

@media (max-width: 768px) {
  .legal {
    padding: 80px 0 60px;
  }
  .legal__title {
    font-size: 36px;
  }
  .legal__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .legal h2 {
    font-size: 22px;
  }
  .legal h3 {
    font-size: 17px;
  }
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}
.nav__link {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.nav__link--active {
  position: relative;
  color: rgb(255, 255, 255);
}
.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 4px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/header/header-active-link.svg");
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.nav__inner--mobile {
  display: none;
}
.nav__download-link {
  font-weight: 700;
  font-size: 20.0697px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 13px 16px;
  background-color: #000000;
  border-radius: 11px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .nav__link:not(.nav__link--active):hover {
    color: rgba(255, 255, 255, 0.6);
  }
  .nav__download-link:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .lang-btn:hover span {
    color: #000;
  }
  .lang-btn__dropdown-link:not(.lang-btn__dropdown-link--active):hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .hero__social-link:not(.hero__social-link--disabled):hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .hero__down-link:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: #FFFFFF;
    border: 0.061vw solid rgba(255, 255, 255, 0.5);
  }
  .swiper-button-prev:hover svg path,
  .swiper-button-next:hover svg path {
    fill: #13120F;
  }
  .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .about__video:hover .about__video-play {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
  .reviews__solutions-item:hover {
    border: 0.156vw solid #FED90E;
    -webkit-box-shadow: 0vw 0vw 1.823vw rgba(254, 217, 14, 0.65), 0vw 0vw 0.809vw rgba(0, 0, 0, 0.45);
    box-shadow: 0vw 0vw 1.823vw rgba(254, 217, 14, 0.65), 0vw 0vw 0.809vw rgba(0, 0, 0, 0.45);
  }
  .news__btn-more:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .social__item-link:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .footer__link:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .footer__social-link:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@media (min-height: 1080px) and (min-width: 1200px) {
  :root {
    --content-width: 118.519vh;
    --container-offset: 1.388vh;
  }
  .page__body {
    min-width: 33.333vh;
    font-size: 1.481vh;
  }
  .visually-hidden {
    margin: -0.092vh;
    width: 0.092vh;
    height: 0.092vh;
  }
  .lang-btn {
    gap: 0.462vh;
  }
  .lang-btn > svg {
    width: 1.111vh;
    height: 1.111vh;
  }
  .lang-btn > img {
    width: 1.111vh;
    height: 1.111vh;
  }
  .lang-btn span {
    font-size: 1.481vh;
  }
  .lang-btn__dropdown {
    bottom: -1.76vh;
    padding: 0.462vh;
    backdrop-filter: blur(0.324vh);
    border-radius: 0.741vh;
  }
  .lang-btn__dropdown-link {
    padding: 0.649vh 1.296vh;
    gap: 0.37vh;
    font-size: 1.203vh;
  }
  .lang-btn__dropdown-link--active {
    border-radius: 0.37vh;
  }
  .lang-btn__dropdown-link svg {
    width: 0.924vh;
    height: 0.924vh;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 6.482vh;
    height: 6.482vh;
    border-radius: 1.513vh;
  }
  .swiper-button-prev svg,
  .swiper-button-next svg {
    width: 1.852vh;
    height: 2.778vh;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 43.127vh;
    left: 2.111vh;
    max-width: 41.667vh;
  }
  .swiper-pagination-bullet {
    width: 7.223vh;
    height: 0.556vh;
    border-radius: 1.667vh;
  }
  .title {
    font-size: 10.185vh;
  }
  .title span {
    padding: 0 0.462vh;
  }
  section {
    scroll-margin-top: 11.111vh;
  }
  .social {
    padding: 3.703vh 0 7.129vh;
  }
  .social__title {
    font-size: 6.667vh;
    margin-bottom: 3.703vh;
  }
  .social__title span {
    padding: 0 0.277vh;
  }
  .social__list {
    max-width: 66.111vh;
    gap: 1.388vh;
  }
  .social__list-img {
    top: -20.37vh;
    width: 96.296vh;
  }
  .social__item {
    border-radius: 2.037vh;
    padding: 2.037vh 2.407vh;
  }
  .social__item > svg {
    width: 8.978vh;
    height: 8.978vh;
  }
  .social__item-title {
    font-size: 3.1vh;
    margin-bottom: 2.314vh;
  }
  .social__item-text {
    font-size: 2.356vh;
    margin-bottom: 2.871vh;
    gap: 0.649vh;
  }
  .social__item-text span {
    font-size: 0.98vh;
  }
  .social__item-link {
    font-size: 1.481vh;
    padding: 1.388vh;
    -webkit-box-shadow: 0vh 0vh 4.76vh rgba(0, 0, 0, 0.5);
    box-shadow: 0vh 0vh 4.76vh rgba(0, 0, 0, 0.5);
    border-radius: 0.889vh;
  }
  .servers__title {
    margin-bottom: 5.556vh;
  }
  .servers__list {
    gap: 2.5vh;
    margin-bottom: 5.648vh;
  }
  .servers__item {
    -webkit-box-shadow: 0vh 0vh 1.76vh rgba(0, 0, 0, 0.35);
    box-shadow: 0vh 0vh 1.76vh rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(0.85vh);
    border-radius: 2.83vh;
    padding: 2.871vh 1.852vh 2.871vh 2.871vh;
  }
  .servers__item-svg {
    left: 2.871vh;
    top: 2.871vh;
    width: 5.369vh;
    height: 6.204vh;
  }
  .servers__item-header {
    margin-bottom: 1.203vh;
    gap: 1.388vh;
    padding-left: 3.611vh;
  }
  .servers__item-number {
    font-size: 8.153vh;
  }
  .servers__item-val {
    font-size: 3.611vh;
  }
  .servers__item-val span {
    font-size: 2.871vh;
  }
  .servers__item-text {
    font-size: 3.622vh;
    margin-bottom: 2.222vh;
  }
  .servers__item-progress {
    height: 1.358vh;
    border-radius: 5.096vh;
  }
  .servers__item-progress span {
    left: 0.277vh;
    height: 0.88vh;
    border-radius: 5.096vh;
  }
  .servers__online {
    margin-bottom: 4.63vh;
  }
  .servers__online-label {
    font-size: 4.167vh;
  }
  .servers__online-val {
    font-size: 8.334vh;
  }
  .servers__online-divider {
    height: 0.092vh;
  }
  .reviews__title {
    font-size: 4.167vh;
    text-shadow: 0vh 0vh 1.833vh rgba(0, 0, 0, 0.25);
    margin-bottom: 3.241vh;
  }
  .reviews__list {
    gap: 6.389vh;
    margin-bottom: 4.814vh;
  }
  .reviews__list-divider {
    height: 0.092vh;
    margin-bottom: 7.593vh;
  }
  .reviews__item {
    backdrop-filter: blur(0.695vh);
    border-radius: 1.944vh;
    padding: 2.684vh 1.76vh 2.037vh;
    padding-left: 12.593vh;
  }
  .reviews__item-img {
    left: -1.852vh;
  }
  .reviews__item-text {
    gap: 1.388vh;
  }
  .reviews__item-title {
    font-size: 2.778vh;
  }
  .reviews__item-descr {
    font-size: 1.481vh;
  }
  .reviews__item-hours {
    gap: 0.277vh;
    font-size: 1.296vh;
  }
  .reviews__item-hours svg {
    width: 1.209vh;
    height: 1.209vh;
  }
  .reviews__solutions-content {
    gap: 3.889vh;
  }
  .reviews__solutions-content-img {
    width: 46.293vh;
  }
  .reviews__solutions-inner {
    gap: 3.792vh;
    max-width: 71.019vh;
  }
  .reviews__solutions-title {
    font-size: 6.667vh;
  }
  .reviews__solutions-list {
    gap: 1.388vh;
    margin-bottom: 10.37vh;
  }
  .reviews__solutions-list-img {
    right: -5.556vh;
    top: -20.741vh;
    width: 31.685vh;
    height: 31.685vh;
  }
  .reviews__solutions-list-divider {
    height: 0.092vh;
    margin-bottom: 5.185vh;
  }
  .reviews__solutions-item {
    min-height: 21.019vh;
    -webkit-box-shadow: 0vh 0vh 1.438vh rgba(0, 0, 0, 0.45);
    box-shadow: 0vh 0vh 1.438vh rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(0.695vh);
    border-radius: 2.314vh;
    padding: 3.516vh 2.5vh;
    border: 0.277vh solid transparent;
  }
  .reviews__solutions-item-img {
    right: -0.926vh;
    bottom: -0.926vh;
    width: 13.333vh;
    height: 11.481vh;
  }
  .reviews__solutions-item-title {
    font-size: 2.778vh;
    margin-bottom: 1.94vh;
  }
  .reviews__solutions-item-descr {
    font-size: 1.481vh;
    max-width: 13.245vh;
  }
  .news {
    padding-top: 2.778vh;
    padding-bottom: 8.704vh;
  }
  .news__title {
    margin-bottom: 5.278vh;
  }
  .news__list {
    gap: 2.5vh;
    margin-bottom: 3.703vh;
  }
  .news__item {
    border-radius: 2.991vh;
    -webkit-box-shadow: 0vh 0vh 1.66vh rgba(0, 0, 0, 0.35);
    box-shadow: 0vh 0vh 1.66vh rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(0.802vh);
    border-radius: 2.991vh;
  }
  .news__item-inner {
    gap: 1.388vh;
    padding: 2.129vh 2.5vh;
  }
  .news__item-text {
    gap: 1.852vh;
    font-size: 2.185vh;
  }
  .news__item-text a {
    font-size: 1.747vh;
  }
  .news__item-social {
    gap: 1.76vh;
  }
  .news__item-social-links {
    gap: 0.462vh;
  }
  .news__item-social-links svg {
    width: 3.236vh;
    height: 3.236vh;
  }
  .news__item-social-date {
    gap: 0.462vh;
    font-size: 1.399vh;
  }
  .news__item-social-date svg {
    width: 1.476vh;
    height: 1.476vh;
  }
  .news__btn-more {
    font-size: 2.592vh;
    -webkit-box-shadow: 0vh 0vh 8.334vh rgba(0, 0, 0, 0.5);
    box-shadow: 0vh 0vh 8.334vh rgba(0, 0, 0, 0.5);
    border-radius: 1.556vh;
    padding: 1.852vh 2.592vh;
  }
  .nav {
    gap: 1.388vh;
  }
  .nav__list {
    gap: 4.629vh;
  }
  .nav__link {
    font-size: 1.481vh;
  }
  .nav__link--active::after {
    bottom: -0.649vh;
    height: 0.37vh;
  }
  .nav__inner {
    gap: 1.852vh;
  }
  .nav__download-link {
    font-size: 1.858vh;
    gap: 0.556vh;
    padding: 1.203vh 1.481vh;
    border-radius: 1.019vh;
  }
  .nav__download-link svg {
    width: 1.667vh;
    height: 1.667vh;
  }
  .history {
    padding: 30.092vh 0 4.167vh;
  }
  .history__img {
    margin-bottom: 1.481vh;
    width: 31.573vh;
    height: 14.453vh;
  }
  .history__title {
    font-size: 6.667vh;
    margin-bottom: 2.407vh;
  }
  .hero {
    padding-top: 18.519vh;
    padding-bottom: 6.204vh;
  }
  .hero__content {
    max-width: 72.222vh;
  }
  .hero__logo {
    -webkit-transform: translate(-0.83vh, 0.46vh);
    -ms-transform: translate(-0.83vh, 0.46vh);
    transform: translate(-0.83vh, 0.46vh);
    -webkit-filter: drop-shadow(0vh 0.37vh 6.3vh rgba(0, 0, 0, 0.6));
    filter: drop-shadow(0vh 0.37vh 6.3vh rgba(0, 0, 0, 0.6));
    width: 60.9vh;
    height: 24.9vh;
  }
  .hero__title {
    font-size: 6.667vh;
    margin-bottom: 1.852vh;
  }
  .hero__descr {
    font-size: 2.963vh;
    margin-bottom: 4.629vh;
  }
  .hero__social-list {
    gap: 1.388vh;
    margin-bottom: 9.536vh;
  }
  .hero__social-link-img-1 {
    width: 14.169vh;
    height: 5.556vh;
  }
  .hero__social-link-img-2 {
    width: 12.871vh;
    height: 5.556vh;
  }
  .hero__social-link-img-3 {
    width: 12.32vh;
    height: 5.556vh;
  }
  .hero__social-link-img-4 {
    width: 8.889vh;
    height: 5.556vh;
  }
  .hero__benefits-list {
    gap: 1.019vh;
    max-width: 70.741vh;
    margin-bottom: 6.667vh;
  }
  .hero__benefits-item {
    border: 0.08vh solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(0.315vh);
    border-radius: 1.769vh;
    padding: 3.241vh 0.926vh 3.333vh;
    padding-left: 11.388vh;
  }
  .hero__benefits-item-text {
    font-size: 2.376vh;
  }
  .hero__benefits-item-img {
    left: -0.926vh;
  }
  .hero__down-link svg {
    width: 4.444vh;
    height: 4.444vh;
  }
  .header {
    padding: 1.852vh;
  }
  .footer {
    padding: 4.629vh 0;
  }
  .footer__content {
    gap: 1.388vh;
  }
  .footer__content > img {
    width: 10.276vh;
    height: 4.16vh;
  }
  .footer__list {
    gap: 4.629vh;
  }
  .footer__link {
    font-size: 1.481vh;
  }
  .footer__social {
    gap: 0.834vh;
  }
  .footer__social-link svg {
    width: 2.773vh;
    height: 2.773vh;
  }
  .details {
    padding-top: 1.945vh;
    padding-bottom: 14.352vh;
    min-height: 87.316vh;
  }
  .details__img {
    width: 177.78vh;
  }
  .details__img-1 {
    width: 22.87vh;
    height: 22.87vh;
  }
  .details__img-2 {
    width: 25.09vh;
    height: 25.09vh;
  }
  .details__title {
    font-size: 10.185vh;
    margin-bottom: 6.61vh;
  }
  .details__swiper-nav {
    top: 11.093vh;
    gap: 1.388vh;
    left: 0.7vh;
  }
  .details .swiper-slide {
    padding-top: 18.704vh;
    padding-bottom: 7.407vh;
    padding-left: 0.7vh;
  }
  .details__slide-text {
    max-width: 61.111vh;
  }
  .details__slide-img {
    -webkit-transform: translate(12.963vh, -10.185vh);
    -ms-transform: translate(12.963vh, -10.185vh);
    transform: translate(12.963vh, -10.185vh);
  }
  .details__slide-img--1 {
    width: 55.37vh;
    height: 33.33vh;
    -webkit-transform: translate(-3.7vh, -10.19vh);
    -ms-transform: translate(-3.7vh, -10.19vh);
    transform: translate(-3.7vh, -10.19vh);
  }
  .details__slide-img--2 {
    width: 77.13vh;
    height: 43.33vh;
    -webkit-transform: translate(4.63vh, -16.67vh);
    -ms-transform: translate(4.63vh, -16.67vh);
    transform: translate(4.63vh, -16.67vh);
  }
  .details__slide-img--3 {
    width: 67.04vh;
    height: 44.26vh;
    -webkit-transform: translate(1.85vh, -14.81vh);
    -ms-transform: translate(1.85vh, -14.81vh);
    transform: translate(1.85vh, -14.81vh);
  }
  .details__slide-img--4 {
    width: 64.07vh;
    height: 41.67vh;
    -webkit-transform: translate(2.78vh, -16.3vh);
    -ms-transform: translate(2.78vh, -16.3vh);
    transform: translate(2.78vh, -16.3vh);
  }
  .details__slide-img--5 {
    width: 71.3vh;
    height: 47.04vh;
    -webkit-transform: translate(5.56vh, -18.15vh);
    -ms-transform: translate(5.56vh, -18.15vh);
    transform: translate(5.56vh, -18.15vh);
  }
  .details__swiper-title {
    font-size: 8.334vh;
    margin-bottom: 5.556vh;
  }
  .details__swiper-descr {
    font-size: 2.963vh;
  }
  .about {
    padding-bottom: 11.574vh;
  }
  .about__img {
    top: 12.96vh;
    width: 118.7vh;
    border-radius: 4.63vh;
  }
  .about__title {
    gap: 1.388vh;
    margin-bottom: 10.185vh;
  }
  .about__title svg {
    width: 7.22vh;
    height: 8.33vh;
  }
  .about__subtitle {
    font-size: 4.167vh;
    text-shadow: 0vh 0vh 3.5vh rgb(0, 0, 0);
  }
  .about__content-wrapper {
    padding-right: 1.39vh;
  }
  .about__content {
    max-width: 78.611vh;
    gap: 3.241vh;
  }
  .about__media {
    gap: 2.871vh;
  }
  .about__video {
    min-height: 23.149vh;
  }
  .about__video-play {
    width: 8.704vh;
    height: 8.704vh;
    border: 0.185vh solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(0.695vh);
  }
  .about__video-play-btn {
    right: 2.871vh;
    gap: 0.556vh;
    font-size: 1.852vh;
    padding: 1.388vh 1.852vh;
    border-radius: 1.111vh;
  }
}
@media (max-width: 1199.98px) {
  .hero__img {
    max-width: initial;
    width: initial;
    left: -770px;
  }
  .about__img {
    left: 0;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
    border-radius: initial;
  }
  .about__title svg {
    display: none;
  }
  .details__slide-img {
    opacity: 0.7;
  }
  .details__slide-img--2 {
    -webkit-transform: translate(50px, -130px);
    -ms-transform: translate(50px, -130px);
    transform: translate(50px, -130px);
  }
  .details__slide-img--4 {
    -webkit-transform: translate(50px, -136px);
    -ms-transform: translate(50px, -136px);
    transform: translate(50px, -136px);
  }
  .details .swiper-slide {
    padding: 148px 10px 80px;
  }
  .details__swiper-nav {
    left: 13px;
    top: 85px;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 26px;
    top: 419px;
  }
  .about__content {
    max-width: initial;
  }
  .reviews__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .reviews__solutions-inner {
    max-width: initial;
  }
  .reviews__solutions-content-img {
    opacity: 0.7;
  }
  .reviews__solutions-list-img {
    opacity: 0.7;
  }
  .servers__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .social__list-img {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-35%);
    -ms-transform: translateX(-35%);
    transform: translateX(-35%);
    opacity: 0.7;
  }
  .social__list {
    max-width: initial;
  }
}
@media (max-width: 991.98px) {
  .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero {
    padding-top: 300px;
  }
  .hero__img {
    left: 50%;
    -webkit-transform: translateX(-67%);
    -ms-transform: translateX(-67%);
    transform: translateX(-67%);
    height: 750px;
  }
  .hero__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .hero__social-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__benefits-list {
    max-width: initial;
  }
  .hero__benefits-item-img {
    left: -35px;
  }
  .hero__benefits-item {
    padding-left: 98px;
  }
  .details__img-1 {
    width: 200px;
    top: 50px;
  }
  .details__img-2 {
    width: 240px;
    top: 50px;
  }
  .details__title {
    font-size: 90px;
  }
  .details__slide-img--1 {
    -webkit-transform: translate(70px, -70px);
    -ms-transform: translate(70px, -70px);
    transform: translate(70px, -70px);
  }
  .details__slide-img--2 {
    -webkit-transform: translate(140px, -70px);
    -ms-transform: translate(140px, -70px);
    transform: translate(140px, -70px);
  }
  .details__slide-img--3 {
    -webkit-transform: translate(100px, -70px);
    -ms-transform: translate(100px, -70px);
    transform: translate(100px, -70px);
  }
  .details__slide-img--4 {
    -webkit-transform: translate(130px, -96px);
    -ms-transform: translate(130px, -96px);
    transform: translate(130px, -96px);
  }
  .details__slide-img--5 {
    -webkit-transform: translate(120px, -126px);
    -ms-transform: translate(120px, -126px);
    transform: translate(120px, -126px);
  }
  .title {
    font-size: 90px;
    line-height: 1;
  }
  .servers__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .news__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .burger-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
  }
  .nav__inner {
    margin-left: auto;
  }
  .nav__list {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3.5px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    padding-top: 90px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .nav__list.menu--active {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav__link {
    color: #fff;
    font-size: 25px;
  }
  .hero {
    padding-top: 300px;
    padding-bottom: 30px;
  }
  .hero__img {
    left: 50%;
    -webkit-transform: translateX(-67%);
    -ms-transform: translateX(-67%);
    transform: translateX(-67%);
    width: initial;
    max-width: initial;
    height: 630px;
    min-height: initial;
  }
  .hero__logo {
    width: 400px;
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  .hero__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .hero__title {
    font-size: 55px;
    line-height: 1;
  }
  .hero__descr {
    font-size: 27px;
    margin-bottom: 30px;
  }
  .hero__social-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 70px;
  }
  .hero__benefits-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 50px;
  }
  .details {
    min-height: 863px;
    padding-bottom: 115px;
  }
  .details__img {
    top: -50px;
  }
  .details__img-1 {
    width: 170px;
    top: 40px;
  }
  .details__img-2 {
    width: 200px;
    top: 20px;
  }
  .details__title {
    font-size: 70px;
    margin-bottom: 50px;
  }
  .details__swiper-title {
    font-size: 60px;
  }
  .details__swiper-descr {
    font-size: 25px;
  }
  .details .swiper-slide {
    padding-top: 260px;
  }
  .details__slide-img {
    -webkit-transform: translate(40px, -260px);
    -ms-transform: translate(40px, -260px);
    transform: translate(40px, -260px);
  }
  .details__slide-img--1 {
    -webkit-transform: translate(60px, -160px);
    -ms-transform: translate(60px, -160px);
    transform: translate(60px, -160px);
    height: 310px;
  }
  .details__slide-img--2 {
    -webkit-transform: translate(30px, -160px);
    -ms-transform: translate(30px, -160px);
    transform: translate(30px, -160px);
    width: 500px;
    height: 330px;
  }
  .details__slide-img--3 {
    -webkit-transform: translate(50px, -160px);
    -ms-transform: translate(50px, -160px);
    transform: translate(50px, -160px);
    height: 350px;
  }
  .details__slide-img--4 {
    width: 490px;
    -webkit-transform: translate(20px, -190px);
    -ms-transform: translate(20px, -190px);
    transform: translate(20px, -190px);
    height: 360px;
  }
  .details__slide-img--5 {
    -webkit-transform: translate(20px, -190px);
    -ms-transform: translate(20px, -190px);
    transform: translate(20px, -190px);
    width: 490px;
    height: 370px;
  }
  .details__swiper-nav {
    top: 181px;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 438px;
  }
  .title {
    font-size: 70px;
    text-align: center;
    width: 100%;
  }
  .about {
    padding-bottom: 80px;
  }
  .about__title {
    margin-bottom: 350px;
  }
  .about__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .about__media {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .reviews__title {
    text-align: center;
  }
  .reviews__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .reviews__solutions-title {
    font-size: 60px;
    text-align: center;
  }
  .reviews__solutions-content-img {
    display: none;
  }
  .reviews__solutions-list-img {
    display: none;
  }
  .reviews__solutions-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews__solutions-content-bg {
    width: 100%;
    height: 162%;
  }
  .servers__title {
    margin-bottom: 40px;
  }
  .servers__list {
    gap: 20px;
  }
  .servers__online-label {
    font-size: 38px;
  }
  .servers__online-val {
    font-size: 75px;
  }
  .news__img {
    min-width: initial;
    top: -130px;
    height: initial;
  }
  .news__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .social__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .social__list-img {
    display: none;
  }
  .history {
    background-position: 47% center;
  }
  .history__title {
    font-size: 60px;
  }
}
@media (max-width: 575.98px) {
  .header {
    padding: 20px 0;
  }
  .news__title {
    margin-bottom: 40px;
  }
  .news__btn-more {
    font-size: 25px;
  }
  .history__title {
    font-size: 50px;
  }
  .about {
    padding-bottom: 50px;
  }
  .nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .nav__inner {
    display: none;
    margin: 0;
  }
  .nav__inner--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .lang-btn > svg {
    display: none;
  }
  .lang-btn span {
    color: #fff;
  }
  .lang-btn__dropdown {
    background-color: rgb(0, 0, 0);
  }
  .hero__title {
    font-size: 43px;
  }
  .hero__descr {
    font-size: 24px;
  }
  .hero__social-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__social-link img {
    width: 100%;
    height: 68px;
    border-radius: 12px;
  }
  .hero__benefits-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .hero__down-link {
    display: none;
  }
  .hero__benefits-item-img {
    height: 130%;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 512px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 60px;
    height: 60px;
  }
  .swiper-button-prev svg,
  .swiper-button-next svg {
    width: 45%;
    height: 45%;
  }
  .details .swiper-slide {
    padding-top: 400px;
    padding-bottom: 120px;
  }
  .details__swiper-title {
    font-size: 53px;
    min-width: 346px;
  }
  .details__swiper-title br {
    display: none;
  }
  .details__swiper-descr {
    font-size: 23px;
    min-width: 439px;
  }
  .details__swiper-nav {
    top: 640px;
    left: 50%;
    -webkit-transform: rotate(-3.81deg) translateX(-50%);
    -ms-transform: rotate(-3.81deg) translateX(-50%);
    transform: rotate(-3.81deg) translateX(-50%);
  }
  .details__img {
    top: 0px;
    width: 110%;
    min-width: 570px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .details__img-1 {
    width: 140px;
    top: 70px;
  }
  .details__img-2 {
    width: 160px;
    top: 60px;
  }
  .details__slide-img {
    opacity: 1;
    left: 50%;
    width: 100%;
    height: auto;
  }
  .details__slide-img--1 {
    -webkit-transform: translate(-50%, -290px);
    -ms-transform: translate(-50%, -290px);
    transform: translate(-50%, -290px);
    min-width: 380px;
  }
  .details__slide-img--2 {
    -webkit-transform: translate(-50%, -310px);
    -ms-transform: translate(-50%, -310px);
    transform: translate(-50%, -310px);
    min-width: 450px;
  }
  .details__slide-img--3 {
    -webkit-transform: translate(-50%, -290px);
    -ms-transform: translate(-50%, -290px);
    transform: translate(-50%, -290px);
    min-width: 450px;
  }
  .details__slide-img--4 {
    -webkit-transform: translate(-50%, -350px);
    -ms-transform: translate(-50%, -350px);
    transform: translate(-50%, -350px);
    min-width: 450px;
  }
  .details__slide-img--5 {
    min-width: 450px;
    -webkit-transform: translate(-50%, -350px);
    -ms-transform: translate(-50%, -350px);
    transform: translate(-50%, -350px);
  }
  .title {
    font-size: 50px;
  }
  .reviews__solutions-title {
    font-size: 40px;
  }
  .reviews__solutions-item-img {
    width: 250px;
  }
  .reviews__list {
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .reviews__list-divider {
    margin-bottom: 50px;
  }
  .reviews__solutions-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .reviews__solutions-item-img {
    right: 0;
    bottom: 0;
  }
  .reviews__solutions-item {
    min-height: 222px;
    padding: 23px 36px;
    gap: 0;
  }
  .reviews__solutions-item-title {
    font-size: 29px;
    margin-bottom: 22px;
    max-width: 180px;
    line-height: 85%;
  }
  .reviews__solutions-item-descr {
    max-width: 180px;
    font-size: 16px;
    line-height: 70%;
  }
  .reviews__solutions-item-descr br {
    display: none;
  }
  .reviews__solutions-list-divider {
    margin-bottom: 50px;
  }
  .reviews__solutions-content-bg {
    height: 135%;
  }
  .servers__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .servers__online-label {
    font-size: 24px;
  }
  .servers__online-val {
    font-size: 40px;
  }
  .social__title {
    font-size: 55px;
    text-align: center;
  }
  .social__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 419.98px) {
  .details__swiper-title {
    font-size: 47px;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 496px;
  }
  .reviews__solutions-item-img {
    width: 180px;
  }
  .reviews__solutions-item-img--chars {
    width: 210px;
  }
}/*# sourceMappingURL=main.css.map */
