@charset "UTF-8";

:root {
  --primary: #040c32;
  --secondary: #edf2f5;
  --gray-primary: #576f84;
  --blue-light: #01b3ff;
  --blue-dark: #016fff;
  --blue-primary: #215dce;
}

@font-face {
  font-family: "Geometria";
  font-display: swap;
  src: url("../fonts/Geometria-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Geometria";
  font-display: swap;
  src: url("../fonts/Geometria-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Geometria";
  font-display: swap;
  src: url("../fonts/Geometria-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Mallory";
  font-display: swap;
  src: url("../fonts/Mallory-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Mallory";
  font-display: swap;
  src: url("../fonts/Mallory-BookItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Mallory";
  font-display: swap;
  src: url("../fonts/Mallory-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Mallory";
  font-display: swap;
  src: url("../fonts/Mallory-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 22px;
}

@media (max-width: 767.98px) {
  html {
    font-size: 16px;
  }
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: Geometria, sans-serif;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: Geometria, sans-serif;
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  font-family: Geometria, sans-serif;
  color: var(--primary);
  line-height: 1.3;
  scroll-behavior: smooth;
}

body._lock {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  direction: ltr !important;
  background: var(--secondary);
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1 1 auto;
}

._container {
  max-width: 1360px;
  margin: 0 auto;
}

@media (max-width: 1420px) {
  ._container {
    max-width: none;
    padding: 0 30px;
  }
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.tabs-block-js {
  display: none;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.tabs-block-js._active {
  display: block;
}

.tabs-block-js._opacity {
  opacity: 1;
  transform: translateY(0);
}

.title {
  font-size: 54px;
  font-family: Mallory, sans-serif;
  font-weight: 700;
  line-height: 114%;
  /* 61.56px */
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .title {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  .title {
    font-size: 24px;
  }
}

.title i,
.title span {
  font-weight: 400;
}

.btn-primary {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  padding: 0 25px;
  border-radius: 10px;
  font-family: Mallory, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
  background: linear-gradient(98deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.btn-primary::before,
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.btn-primary::before {
  background: linear-gradient(98deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
}

.btn-primary::after {
  background: linear-gradient(98deg, #3ac4ff 4.12%, #308aff 100%);
  opacity: 0;
}

.btn-primary>* {
  position: relative;
  z-index: 1;
}

@media (any-hover: hover) {
  .btn-primary:hover::after {
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  .btn-primary {
    height: 34px;
    padding: 0 20px;
    font-size: 14px;
  }
}

.btn-primary--black {
  background: linear-gradient(98deg, #3a3f41 4.12%, #222425 100%);
}

.btn-primary--black::before {
  background: linear-gradient(98deg, #3a3f41 4.12%, #222425 100%);
}

.btn-primary--black::after {
  background: linear-gradient(98deg, #4e585b 4.12%, #32383c 100%);
}

.btn-primary--white {
  color: var(--primary);
  background: #fff;
}

.btn-primary--white::before,
.btn-primary--white::after {
  background: #fff;
}

.btn-primary--s {
  height: 34px;
  padding: 0 20px;
  font-size: 14px;
}

.btn-primary--s .btn-primary__icon {
  width: 18px;
  height: 18px;
}

.btn-primary__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .btn-primary__icon {
    width: 18px;
    height: 18px;
  }
}

.btn-primary__icon::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18.5 12H5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 18C13 18 19 13.5811 19 12C19 10.4188 13 6 13 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: block;
  width: 24px;
  height: 24px;
}

@media (max-width: 767.98px) {
  .btn-primary__icon::before {
    width: 18px;
    height: 18px;
  }
}

.custom-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select__btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 32px;
  padding-right: 38px;
  color: var(--primary);
  font-size: 20px;
  line-height: 160%;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.custom-select__btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  background: url("../img/icons/ico__arrow-down__2-102.svg") center/contain no-repeat;
  pointer-events: none;
  transform: translateY(-50%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

@media (max-width: 767.98px) {
  .custom-select__btn::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M5.5 8.25005C5.5 8.25005 9.55066 13.75 11 13.75C12.4494 13.75 16.5 8.25 16.5 8.25' stroke='%23040C32' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  }
}

.open .custom-select__btn::after {
  filter: drop-shadow(0 5px 8px rgba(1, 111, 255, 0.28));
  transform: translateY(-50%) rotate(180deg);
}

.custom-select__btn:focus {
  outline: none;
}

@media (max-width: 767.98px) {
  .custom-select__btn {
    min-height: 22px;
    padding-right: 30px;
    font-size: 14px;
    line-height: 150%;
  }

  .custom-select__btn::after {
    width: 22px;
    height: 22px;
  }
}

.custom-select__dropdown {
  position: absolute;
  left: 0px;
  right: 0px;
  top: calc(100% + 0px);
  z-index: 10;
  display: grid;
  gap: 0;
  max-height: 224px;
  padding: 0;
  border-radius: 0 0 15px 15px;
  background: #dee9f6;
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

@-moz-document url-prefix() {
  .custom-select__dropdown {
    scrollbar-width: thin;
    scrollbar-color: #a8c5e3 rgba(4, 12, 50, 0.06);
  }
}

.custom-select__dropdown::-webkit-scrollbar {
  width: 5px;
}

.custom-select__dropdown::-webkit-scrollbar-button {
  display: none;
  width: 0;
  min-width: 0;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: #dee9f6;
}

.custom-select__dropdown::-webkit-scrollbar-button:vertical {
  display: none;
  width: 0;
  min-width: 0;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: #dee9f6;
}

.custom-select__dropdown::-webkit-scrollbar-button:vertical {
  display: none;
  width: 0;
  min-width: 0;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: #dee9f6;
}

.custom-select__dropdown::-webkit-scrollbar-track {
  margin: 0 0 10px 0;
  border-radius: 10px;
  background: #dee9f6;
}

.custom-select__dropdown::-webkit-scrollbar-thumb {
  background: #dee9f6;
  border-radius: 10px;
  background: linear-gradient(96deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%), #dee9f6;
}

.open .custom-select__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@media (max-width: 767.98px) {
  .custom-select__dropdown {
    max-height: 174px;
  }
}

.custom-select__option {
  min-height: 41px;
  padding: 10px 25px;
  border-radius: 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 131%;
  text-align: left;
  background: #dee9f6;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}

.custom-select__option.active {
  color: var(--primary);
  background: linear-gradient(96deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%), #dee9f6;
}

@media (any-hover: hover) {
  .custom-select__option:not(.active):hover {
    color: var(--primary);
    background: linear-gradient(96deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%), #dee9f6;
  }
}

.custom-select__option:focus {
  outline: none;
  color: var(--primary);
  background: linear-gradient(96deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%), #dee9f6;
}

.custom-select__option:empty {
  display: none;
}

@media (max-width: 767.98px) {
  .custom-select__option {
    min-height: 35px;
    padding: 8px 15px;
    font-size: 14px;
  }
}

.ellipse {
  position: absolute;
  border-radius: 50%;
  filter: blur(200px);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
  --scroll-progress: 0.5;
}

.lang-switcher-icon {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22C16.9458 22 21.053 18.4096 21.8573 13.693C21.9511 13.1427 22 12.5771 22 12C22 7.11857 18.5024 3.05405 13.8766 2.17579C13.2687 2.06039 12.6414 2 12 2C9.26969 2 6.79495 3.09421 4.99037 4.86802C3.14465 6.68227 2 9.20746 2 12C2 17.5228 6.47715 22 12 22ZM12 22C11.037 21.2864 11.1907 20.4555 11.6738 19.6247C12.4166 18.3474 12.4166 18.3474 12.4166 16.6444C12.4166 14.9414 13.4286 14.1429 17 14.8571C18.6047 15.1781 19.7741 12.9609 21.8573 13.693M4.99037 4.86802C5.83966 4.95765 6.31517 5.41264 7.10496 6.24716C8.6044 7.83152 10.1038 7.96372 11.1035 7.4356C12.6029 6.64343 11.3429 5.3603 13.1027 4.66298C14.1816 4.23551 14.3872 3.11599 13.8766 2.17579' stroke='white' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ui-slider-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .ui-slider-pagination {
    gap: 8px;
  }
}

.ui-slider-pagination span {
  border-radius: 5px;
  width: 20px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ui-slider-pagination span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(91deg, #01b3ff -4.12%, #016fff 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.ui-slider-pagination span:hover::before {
  opacity: 0.3;
}

@media (max-width: 767.98px) {
  .ui-slider-pagination span {
    width: 10px;
    height: 3px;
  }
}

.ui-slider-pagination span.swiper-pagination-bullet-active {
  width: 40px;
  height: 6px;
  pointer-events: none;
}

.ui-slider-pagination span.swiper-pagination-bullet-active::before {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .ui-slider-pagination span.swiper-pagination-bullet-active {
    width: 20px;
    height: 4px;
  }
}

.ui-slider-prev,
.ui-slider-next {
  cursor: pointer;
  pointer-events: auto;
}

.ui-slider-prev::before,
.ui-slider-next::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60' fill='none'%3E%3Cpath d='M37.4999 15C37.4999 15 22.5 26.0473 22.5 30C22.5 33.953 37.5 45 37.5 45' stroke='%23040C32' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 60px;
  height: 60px;
  display: block;
}

.ui-slider-prev.swiper-navigation-disabled,
.ui-slider-next.swiper-navigation-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.ui-slider-next::before {
  transform: rotate(180deg);
}

.rounded-arrow-prev,
.rounded-arrow-next {
  border-radius: 50%;
  background: linear-gradient(91deg, #3a3f41 -4.12%, #222425 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

@media (max-width: 991.98px) {

  .rounded-arrow-prev,
  .rounded-arrow-next {
    width: 34px;
    height: 34px;
  }
}

.rounded-arrow-prev[disabled],
.rounded-arrow-next[disabled] {
  opacity: 0.8;
  pointer-events: none;
}

.rounded-arrow-prev::before,
.rounded-arrow-next::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M11.25 4.5C11.25 4.5 6.75 7.81418 6.75 9C6.75 10.1859 11.25 13.5 11.25 13.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: block;
  width: 24px;
  height: 24px;
  line-height: 0;
}

@media (max-width: 991.98px) {

  .rounded-arrow-prev::before,
  .rounded-arrow-next::before {
    width: 18px;
    height: 18px;
  }
}

.rounded-arrow-next::before {
  transform: rotate(180deg);
}

.ui-text {
  color: inherit;
}

.ui-text ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 767.98px) {
  .ui-text ul {
    gap: 10px;
  }
}

.ui-text ul li {
  line-height: 160%;
  position: relative;
  gap: 15px;
  padding-left: 50px;
}

@media (max-width: 991.98px) {
  .ui-text ul li {
    padding-left: 40px;
  }
}

@media (max-width: 767.98px) {
  .ui-text ul li {
    padding-left: 30px;
  }
}

.ui-text ul li strong {
  font-weight: 500;
}

.ui-text ul li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19' fill='none'%3E%3Cpath d='M15.8334 4.75L7.12508 13.4583L3.16675 9.5' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: linear-gradient(91deg, #01b3ff -4.12%, #016fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
  position: absolute;
  top: 2px;
  left: 0;
}

@media (max-width: 767.98px) {
  .ui-text ul li::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 19 19' fill='none'%3E%3Cpath d='M15.8334 4.75L7.12508 13.4583L3.16675 9.5' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    top: 2px;
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 767.98px) {
  .ui-text ul li {
    line-height: 150%;
    padding-top: 3px;
  }
}

/**
 * Swiper 12.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 29, 2026
 */
:root {
  --swiper-theme-color: #007aff;
}

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

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

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

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

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

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

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

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

.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 {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.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-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-inline-start: var(--swiper-slides-offset-before);
  scroll-margin-inline-start: var(--swiper-slides-offset-before);
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper>.swiper-slide:last-child {
  margin-inline-end: var(--swiper-slides-offset-after);
}

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

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

.swiper-css-mode.swiper-vertical>.swiper-wrapper>.swiper-slide:last-child {
  margin-block-end: var(--swiper-slides-offset-after);
}

.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 {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%;
}

.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 {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

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

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

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

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

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

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

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

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

.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 {
  height: var(--swiper-virtual-size);
  width: 1px;
}

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

.swiper-horizontal .swiper-button-next,
.swiper-horizontal .swiper-button-prev,
.swiper-horizontal~.swiper-button-next,
.swiper-horizontal~.swiper-button-prev {
  margin-left: 0;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

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

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

.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl .swiper-button-next ::slotted(.swiper-navigation-icon),
.swiper-horizontal.swiper-rtl~.swiper-button-next .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl~.swiper-button-next ::slotted(.swiper-navigation-icon),
.swiper-horizontal~.swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal~.swiper-button-prev ::slotted(.swiper-navigation-icon),
.swiper-horizontal .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal .swiper-button-prev ::slotted(.swiper-navigation-icon) {
  transform: rotate(180deg);
}

.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl .swiper-button-prev ::slotted(.swiper-navigation-icon),
.swiper-horizontal.swiper-rtl~.swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl~.swiper-button-prev ::slotted(.swiper-navigation-icon) {
  transform: rotate(0deg);
}

.swiper-vertical .swiper-button-next,
.swiper-vertical .swiper-button-prev,
.swiper-vertical~.swiper-button-next,
.swiper-vertical~.swiper-button-prev {
  left: var(--swiper-navigation-top-offset, 50%);
  margin-left: calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: 0;
  right: auto;
}

.swiper-vertical .swiper-button-prev,
.swiper-vertical~.swiper-button-prev {
  bottom: auto;
  top: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-vertical .swiper-button-prev .swiper-navigation-icon,
.swiper-vertical .swiper-button-prev ::slotted(.swiper-navigation-icon),
.swiper-vertical~.swiper-button-prev .swiper-navigation-icon,
.swiper-vertical~.swiper-button-prev ::slotted(.swiper-navigation-icon) {
  transform: rotate(-90deg);
}

.swiper-vertical .swiper-button-next,
.swiper-vertical~.swiper-button-next {
  bottom: var(--swiper-navigation-sides-offset, 4px);
  top: auto;
}

.swiper-vertical .swiper-button-next .swiper-navigation-icon,
.swiper-vertical .swiper-button-next ::slotted(.swiper-navigation-icon),
.swiper-vertical~.swiper-button-next .swiper-navigation-icon,
.swiper-vertical~.swiper-button-next ::slotted(.swiper-navigation-icon) {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
  backface-visibility: hidden;
  height: 100%;
  pointer-events: none;
  transform-origin: 0 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}

.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 {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  z-index: 0;
}

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

.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 {
  backface-visibility: hidden;
  z-index: 0;
}

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

.swiper-flip .swiper-slide {
  backface-visibility: hidden;
  pointer-events: none;
  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 {
  backface-visibility: hidden;
  z-index: 0;
}

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

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

.swiper-cards .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transform-origin: center bottom;
}

.scroll-reveal-item-js {
  opacity: 0;
  will-change: opacity, transform, clip-path;
}

.scroll-reveal-item-js:not([data-reveal=fade]) {
  transform: translateY(35px);
}

.show-reveal .scroll-reveal-item-js {
  animation: reveal-up var(--reveal-duration, 0.7s) ease forwards;
  animation-delay: calc(var(--reveal-delay, 0s) + var(--reveal-index, 0) * var(--reveal-stagger, 0.12s));
}

.scroll-reveal-item-js[data-reveal=left] {
  transform: translateX(-35px);
}

.show-reveal .scroll-reveal-item-js[data-reveal=left] {
  animation-name: reveal-left;
}

.scroll-reveal-item-js[data-reveal=right] {
  transform: translateX(100%);
}

.show-reveal .scroll-reveal-item-js[data-reveal=right] {
  animation-name: reveal-right;
}

.show-reveal .scroll-reveal-item-js[data-reveal=fade] {
  animation-name: reveal-fade;
}

.scroll-reveal-item-js[data-reveal=clip-left] {
  opacity: 1;
  transform: none;
  clip-path: inset(0 100% 0 0);
}

.show-reveal .scroll-reveal-item-js[data-reveal=clip-left] {
  animation-name: reveal-clip-left;
  animation-duration: 0.8s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
  }
}

@keyframes reveal-fade {
  to {
    opacity: 1;
    will-change: auto;
  }
}

@keyframes reveal-left {
  to {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
  }
}

@keyframes reveal-right {
  to {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
  }
}

@keyframes reveal-clip-left {
  to {
    clip-path: inset(var(--reveal-clip-top, 0) var(--reveal-clip-right, 0) var(--reveal-clip-bottom, 0) var(--reveal-clip-left, 0));
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {

  .scroll-reveal-item-js,
  .scroll-reveal-item-js[data-reveal=left],
  .scroll-reveal-item-js[data-reveal=right],
  .scroll-reveal-item-js[data-reveal=fade],
  .scroll-reveal-item-js[data-reveal=clip-left] {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none;
  }
}

.header-sentinel {
  position: absolute;
  top: 1px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  transition: all 0.5s ease;
  height: 113px;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 30px rgba(4, 12, 50, 0);
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #395698 0%, #243e78 100%);
  transition: all 0.5s ease;
  opacity: 0;
}

@media (max-width: 991.98px) {
  .header {
    height: 70px;
  }
}

.header.short {
  color: #fff;
  box-shadow: 0 12px 30px rgba(4, 12, 50, 0.14);
}

.header.short::before {
  opacity: 1;
}

@media (min-width: 992px) {
  .header.short {
    height: 90px;
  }
}

@media (max-width: 991.98px) {
  .header.short {
    height: 60px;
  }
}

.header__container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-grow: 1;
  max-width: 1660px;
  padding: 0 30px;
  transition: all 0.3s ease;
}

@media (max-width: 1420px) {
  .header__container {
    gap: 30px;
  }
}

@media (max-width: 991.98px) {
  .header__container {
    gap: 20px;
  }
}

.header__logo {
  position: relative;
  z-index: 2;
  display: block;
  width: 227px;
  height: 53px;
  flex-shrink: 0;
}

@media (max-width: 1420px) {
  .header__logo {
    width: 190px;
    height: 44px;
  }
}

@media (max-width: 991.98px) {
  .header__logo {
    width: 143px;
    height: 34px;
  }
}

.header__logo-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.3s ease;
}

.header__nav {
  flex: 1 1 auto;
}

@media (max-width: 991.98px) {
  .header__nav {
    display: none;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  top: 4px;
}

@media (max-width: 1420px) {
  .header__menu {
    gap: 30px;
  }
}

.header__menu>li {
  position: relative;
  display: flex;
}

.header__menu>li>a,
.header__menu>li .header__menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding-bottom: 12px;
  color: currentColor;
  font-family: Mallory, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
  transition: all 0.3s ease;
}

@media (max-width: 1420px) {

  .header__menu>li>a,
  .header__menu>li .header__menu-link {
    font-size: 16px;
  }
}

.header__menu>li>a::after,
.header__menu>li .header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.6);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.header__menu>li.active>a::after,
.header__menu>li.active .header__menu-link::after {
  transform: scaleX(1);
  background: linear-gradient(98deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
}

@media (any-hover: hover) {

  .header__menu>li:hover>a::after,
  .header__menu>li:hover .header__menu-link::after {
    transform: scaleX(1);
  }
}

.header__menu>li:not(.header__menu-item--detailed)>ul {
  position: absolute;
  z-index: 5;
  top: calc(100% + 5.5px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  min-width: 175px;
  max-height: calc(100vh - 130px);
  border-radius: 0 15px 15px 15px;
  background: #fff;
  box-shadow: 5px 20px 50px rgba(23, 45, 91, 0.5);
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
}

.header__menu>li:not(.header__menu-item--detailed)>ul.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__menu>li:not(.header__menu-item--detailed)>ul li {
  position: relative;
  background: #dee9f6;
}

.header__menu>li:not(.header__menu-item--detailed)>ul li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #dee9f6;
  opacity: 0;
  background: linear-gradient(96deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%), #dee9f6;
  transition: all 0.5s ease;
  z-index: 0;
}

@media (any-hover: hover) {
  .header__menu>li:not(.header__menu-item--detailed)>ul li:hover::before {
    opacity: 1;
  }
}

.header__menu>li:not(.header__menu-item--detailed)>ul a {
  display: block;
  min-height: 44px;
  padding: 10px 25px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 131%;
  white-space: nowrap;
  transition: background 0.3s ease;
  position: relative;
}

@media (max-width: 991.98px) {
  .header__menu>li:not(.header__menu-item--detailed)>ul {
    display: none;
  }
}

.header__menu>li:not(.header__menu-item--detailed):hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__menu-item--detailed>ul {
  display: grid;
  position: fixed;
  top: 85.5px;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  grid-template-columns: repeat(3, 380px);
  gap: 0;
  width: 1200px;
  max-width: calc(100vw - 60px);
  min-width: 0;
  padding: 20px 30px;
  border-radius: 20px;
  background: linear-gradient(171deg, rgba(255, 255, 255, 0.9) 6.9%, rgba(230, 234, 244, 0.86) 69.16%);
  box-shadow: 5px 20px 50px rgba(23, 45, 91, 0.5);
  backdrop-filter: blur(19px);
  overflow: hidden;
  transition: all 0.3s ease;
}

@media (max-width: 1420px) {
  .header__menu-item--detailed>ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 945px;
    padding: 20px 30px;
  }
}

.header__menu-item--detailed>ul>li {
  background: transparent;
}

.header__menu-item--detailed>ul>li::before {
  display: none;
}

.header__menu-item--detailed>ul>li>a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 380px;
  max-width: 100%;
  min-height: 91px;
  padding: 20px 20px 20px 25px;
  border-radius: 20px;
  color: var(--primary);
  white-space: normal;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 1420px) {
  .header__menu-item--detailed>ul>li>a {
    gap: 16px;
    padding: 20px 18px;
  }
}

.header__menu-item--detailed>ul>li>a>img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  opacity: 0.7;
}

.header__menu-item--detailed>ul>li>a>span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 3px;
}

.header__menu-item--detailed>ul>li>a>span>span:first-child {
  width: 186px;
  max-width: 100%;
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

@media (max-width: 1420px) {
  .header__menu-item--detailed>ul>li>a>span>span:first-child {
    font-size: 18px;
  }
}

.header__menu-item--detailed>ul>li>a>span>span:last-child {
  color: #576f84;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

@media (max-width: 1420px) {
  .header__menu-item--detailed>ul>li>a>span>span:last-child {
    font-size: 15px;
  }
}

@media (any-hover: hover) {
  .header__menu-item--detailed>ul>li>a:hover {
    background: rgba(255, 255, 255, 0.38);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  }
}

.header__menu-item--detailed:hover>ul,
.header__menu-item--detailed>ul.open {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.header.short .header__menu-item--detailed>ul {
  top: 74px;
}

.header__right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 991.98px) {
  .header__right {
    margin-left: auto;
    gap: 20px;
  }
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 767.98px) {
  .header__socials {
    gap: 10px;
  }
}

.header__social {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.header__social img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .header__social:hover {
    filter: brightness(1.15);
  }
}

@media (max-width: 991.98px) {
  .header__lang {
    display: none;
  }
}

.header__burger {
  position: relative;
  z-index: 2;
  display: none;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: transparent;
  margin-left: 6px;
}

.header__burger span,
.header__burger::before,
.header__burger::after {
  content: "";
  position: absolute;
  left: 4px;
  height: 2px;
  border-radius: 2px;
  background: white;
  transition: width 0.3s ease, transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.header__burger::before {
  top: 5px;
  width: 14px;
}

.header__burger span {
  top: 11px;
  width: 16px;
}

.header__burger::after {
  top: 17px;
  width: 8px;
}

@media (max-width: 991.98px) {
  .header__burger {
    display: block;
  }
}

.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  color: currentColor;
  font-size: 16px;
  font-weight: 500;
  line-height: 131%;
  background: transparent;
  transition: opacity 0.3s ease;
}

@media (max-width: 991.98px) {
  .lang-switcher__btn {
    font-size: 18px;
    font-weight: 700;
    line-height: 114%;
  }
}

.lang-switcher__btn::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6.00004C4 6.00004 6.94593 10 8 10C9.05413 10 12 6 12 6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 2px;
  display: block;
  transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
  .lang-switcher__btn::after {
    display: none;
  }
}

@media (any-hover: hover) {
  .lang-switcher__btn:hover {
    opacity: 0.8;
  }
}

.lang-switcher__btn span {
  position: relative;
  top: 2px;
}

.lang-switcher__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  margin-right: 8px;
}

@media (max-width: 991.98px) {
  .lang-switcher__icon {
    width: 19px;
    height: 19px;
  }
}

.lang-switcher__dropdown {
  position: absolute;
  z-index: 5;
  top: calc(100% + 12px);
  right: -9px;
  width: 106px;
  min-width: 106px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 5px 20px 50px rgba(23, 45, 91, 0.5);
  border-radius: 15px;
}

@media (max-width: 991.98px) {
  .lang-switcher__dropdown {
    position: fixed;
    inset: 0;
    z-index: 150;
    width: 100%;
    min-width: 0;
    transform: none;
    border-radius: 0;
  }

  .lang-switcher__dropdown>span {
    position: absolute;
    inset: 0;
    background: rgba(26, 49, 96, 0.8);
    z-index: 0;
    transition: opacity 0.6s ease;
    opacity: 0;
  }

  .lang-switcher__dropdown.open {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 991.98px) {
  .lang-switcher__dropdown.open .lang-switcher__list {
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .lang-switcher__dropdown.open>span {
    opacity: 1;
  }
}

.lang-switcher__list {
  background: #dee9f6;
  overflow: hidden;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

@media (max-width: 991.98px) {
  .lang-switcher__list {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 118px;
    height: 100%;
    max-height: none;
    background: linear-gradient(180deg, #445e94 0%, #29478b 100%);
    overflow-y: auto;
    transform: translateX(100%);
  }
}

.lang-switcher__list li {
  position: relative;
}

.lang-switcher__list li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(93deg, rgba(119, 179, 228, 0.51) 4.12%, rgba(78, 143, 190, 0.51) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lang-switcher__list li.active {
  background: linear-gradient(93deg, #77a7e4 4.12%, #4e7bbe 100%);
}

.lang-switcher__list li.active a {
  color: #fff;
}

@media (any-hover: hover) {
  .lang-switcher__list li:not(.active):hover::before {
    opacity: 1;
  }
}

.lang-switcher__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 25px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 131%;
  white-space: nowrap;
  position: relative;
}

@media (max-width: 991.98px) {
  .lang-switcher__list a {
    color: #fff;
  }
}

.lang-switcher__list a span {
  position: relative;
  top: 2px;
}

.lang-switcher {
  /* Desktop only: mobile fullscreen dropdown is toggled via .open (JS). Touch devices can keep :hover after tap and would leave an invisible fullscreen layer blocking clicks. */
}

@media (min-width: 992px) and (any-hover: hover) {
  .lang-switcher:hover .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.mobile-nav {
  position: fixed;
  z-index: 1000;
  inset: 0;
  height: 100vh;
  color: #fff;
  background: #334b85;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}

.mobile-nav__bg img {
  width: 100%;
}

.mobile-nav__inner {
  position: relative;
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 30px;
  position: relative;
}

.mobile-nav__logo {
  width: 143px;
  height: 34px;
}

.mobile-nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  position: fixed;
  line-height: 0;
  z-index: 1;
  top: 23px;
  right: 30px;
}

.mobile-nav__close::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 6L6.00081 17.9992M17.9992 18L6 6.00085' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  line-height: 0;
}

.mobile-nav__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: calc(100vh - 70px);
  min-height: calc(100dvh - 70px);
  padding: 30px;
  position: relative;
}

.mobile-nav__nav {
  width: 100%;
}

.mobile-nav__nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.mobile-nav__nav-list>li {
  width: 100%;
}

.mobile-nav__nav-list>li>a,
.mobile-nav__nav-list>li>div>a {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  color: #fff;
  font-family: Mallory, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
}

.mobile-nav__nav-list>li>div {
  display: flex;
  align-items: center;
}

.mobile-nav__nav-list>li>div>button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  color: #fff;
  background: transparent;
}

.mobile-nav__nav-list>li>div>button::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M5.5 8.25005C5.5 8.25005 9.55066 13.75 11 13.75C12.4494 13.75 16.5 8.25 16.5 8.25' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: block;
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.mobile-nav__nav-list>li>ul {
  display: none;
  padding: 0 0 12px;
}

.mobile-nav__nav-list>li>ul a {
  display: block;
  width: 276px;
  max-width: 100%;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 150%;
}

.mobile-nav__nav-list>li.open>div>button:before {
  transform: rotate(-180deg);
}

.mobile-nav__lang {
  padding: 20px 0;
}

.mobile-nav__bottom {
  display: grid;
  gap: 15px;
}

.mobile-nav__address {
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-style: normal;
  line-height: 150%;
}

.mobile-nav__socials {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
}

.mobile-nav__socials-left,
.mobile-nav__socials-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav__social {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.mobile-nav__social img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer {
  position: relative;
  padding: 80px 0 40px;
  color: #fff;
  background: linear-gradient(169deg, rgba(23, 63, 99, 0.96) 33.77%, rgba(1, 9, 20, 0.96) 106.58%);
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .footer {
    padding: 30px 0;
    background: linear-gradient(122deg, rgba(23, 63, 99, 0.96) 33.77%, rgba(1, 9, 20, 0.96) 106.58%);
  }
}

.footer__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__bg-center {
  position: relative;
}

.footer__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
  position: absolute;
  top: -602px;
  left: -608px;
  width: 579.201px;
  height: 1392.163px;
  transform: rotate(-79.056deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.3 + var(--scroll-progress) * 0.59);
  background: #02162e;
}

@media (max-width: 767.98px) {
  .footer__ellipse {
    top: -755px;
    left: 100px;
  }
}

.footer__container {
  position: relative;
  max-width: 1660px;
  padding: 0 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: 227px 1fr auto;
  align-items: start;
  gap: 100px;
  margin-bottom: 80px;
}

@media (max-width: 1420px) {
  .footer__top {
    grid-template-columns: 200px 1fr;
    gap: 45px;
  }
}

@media (max-width: 991.98px) {
  .footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 35px;
    margin-bottom: 45px;
  }
}

@media (max-width: 767.98px) {
  .footer__top {
    gap: 30px;
    margin-bottom: 30px;
  }
}

.footer__logo {
  display: block;
  width: 227px;
}

.footer__logo img {
  display: block;
  width: 100%;
}

@media (max-width: 1420px) {
  .footer__logo {
    width: 200px;
  }
}

@media (max-width: 767.98px) {
  .footer__logo {
    width: 198px;
  }
}

.footer__nav {
  display: flex;
  gap: 40px;
  padding-top: 10px;
}

@media (max-width: 991.98px) {
  .footer__nav {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .footer__nav {
    display: grid;
    gap: 30px;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .footer__col {
    width: 100%;
  }
}

.footer__title {
  margin-bottom: 15px;
  font-family: Mallory, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .footer__title {
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
  }
}

.footer__list {
  display: grid;
  margin: -5px 0;
  color: #7ca1b1;
  font-size: 20px;
  line-height: 160%;
}

.footer__list a {
  display: block;
  padding: 5px 0;
  color: inherit;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .footer__list a:hover {
    color: #fff;
  }
}

@media (max-width: 767.98px) {
  .footer__list {
    justify-items: center;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }
}

.footer__socials {
  display: flex;
  align-self: end;
  gap: 10px;
  padding-top: 10px;
}

@media (max-width: 1420px) {
  .footer__socials {
    grid-column: 1/-1;
    justify-self: end;
  }
}

@media (max-width: 991.98px) {
  .footer__socials {
    justify-self: center;
  }
}

.footer__social {
  width: 34px;
  height: 34px;
  transition: transform 0.3s ease;
}

.footer__social img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .footer__social:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 767.98px) {
  .footer__social {
    width: 30px;
    height: 30px;
  }
}

.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  color: #4c6988;
}

.footer__bottom p {
  font-size: 20px;
  line-height: 160%;
}

.footer__bottom span {
  white-space: nowrap;
}

.footer__bottom strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .footer__bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .footer__bottom {
    gap: 20px;
  }

  .footer__bottom p {
    font-size: 14px;
    line-height: 150%;
  }

  .footer__bottom strong {
    font-size: 16px;
  }
}

.intro {
  padding: 123px 0 75px;
  position: relative;
}

@media (max-width: 991.98px) {
  .intro {
    padding: 123px 0 50px;
  }
}

@media (max-width: 767.98px) {
  .intro {
    padding: 80px 0 40px;
  }
}

@media (max-width: 479.98px) {
  .intro {
    padding: 80px 0 25px;
  }
}

@media (max-width: 767.98px) {
  .intro--no-advantages {
    padding: 80px 0 120px;
  }
}

@media (max-width: 479.98px) {
  .intro--no-advantages {
    padding: 80px 0 40px;
  }
}

.intro__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.intro__bg-absolute {
  position: absolute;
  right: 0;
  z-index: 2;
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.intro__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.intro__ellipse--1 {
  width: 1296.643px;
  height: 579.201px;
  transform: rotate(11deg);
  background: rgba(130, 171, 227, 0.89);
  left: 43%;
  bottom: -34%;
}

@media (max-width: 767.98px) {
  .intro__ellipse--1 {
    width: 600px;
    height: 400px;
    left: 43%;
    bottom: -19%;
  }
}

.intro__bg-img--desktop {
  width: 100%;
  height: 1100px;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 767.98px) {
  .intro__bg-img--desktop {
    display: none;
  }
}

.intro__bg-img--desktop img {
  object-position: center top;
}

.intro__bg-img--mobile {
  display: none;
  position: relative;
  padding-bottom: 115%;
}

@media (max-width: 767.98px) {
  .intro__bg-img--mobile {
    display: block;
  }

  .intro__bg-img--mobile::before {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -30px;
    right: -20px;
    height: 60px;
    /* border-radius: 1335px; */
    background: #2b4c8f;
    filter: blur(18px);
    z-index: 2;
  }
}

.intro__bg-img img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.intro__container {
  min-height: 728px;
  position: relative;
}

@media (max-width: 991.98px) {
  .intro__container {
    min-height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .intro__container {
    min-height: 0;
    justify-content: flex-start;
    padding-top: 70vw;
  }
}

@media (max-width: 479.98px) {
  .intro__container {
    padding-top: 65vw;
  }
}

@media (max-width: 767.98px) {
  .intro__container::before {
    content: "";
    position: absolute;
    left: -50vw;
    bottom: 100px;
    top: 65vw;
    width: 200vw;
    background: #2b4c8f;
    filter: blur(70px);
    z-index: 0;
  }
}

@media (max-width: 767.98px) {
  .intro--no-advantages .intro__container::before {
    bottom: -160px;
  }
}

@media (max-width: 479.98px) {
  .intro--no-advantages .intro__container::before {
    bottom: -100px;
  }
}

@media (max-width: 430px) {
  .intro--no-advantages .intro__container::before {
    bottom: -80px;
  }
}

@media (max-width: 400px) {
  .intro--no-advantages .intro__container::before {
    bottom: -50px;
  }
}

.intro__content {
  max-width: 700px;
  padding: 150px 0;
  display: grid;
  align-content: center;
}

@media (max-width: 991.98px) {
  .intro__content {
    max-width: 500px;
    padding: 100px 0;
  }
}

@media (max-width: 767.98px) {
  .intro__content {
    padding: 0;
    align-content: end;
  }
}

.intro__title {
  font-family: Mallory, sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
  color: #fff;
}

.intro__title i,
.intro__title span {
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .intro__title {
    font-size: 44px;
  }
}

@media (max-width: 767.98px) {
  .intro__title {
    font-size: 36px;
  }
}

@media (max-width: 479.98px) {
  .intro__title {
    font-size: 28px;
  }
}

.intro__text {
  margin-top: 20px;
  font-size: 22px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767.98px) {
  .intro__text {
    font-size: 18px;
  }
}

@media (max-width: 479.98px) {
  .intro__text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}

.intro__actions {
  display: flex;
  gap: 10px;
  padding-top: 30px;
}

@media (max-width: 767.98px) {
  .intro__actions {
    padding-top: 20px;
  }
}

@media (max-width: 479.98px) {
  .intro__actions {
    padding-top: 15px;
  }
}

.intro__btn {
  min-width: 230px;
}

.intro__btn--white {
  min-width: 224px;
}

.intro__btn--mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .intro__btn {
    min-width: auto;
  }

  .intro__btn.intro__btn--desktop {
    display: none;
  }

  .intro__btn.intro__btn--mobile {
    display: inline-flex;
  }
}

.intro__advantages-clip {
  --reveal-clip-top: -90px;
  --reveal-clip-right: -120px;
  --reveal-clip-bottom: -120px;
  --reveal-clip-left: -20px;
  margin-top: 30px;
}

@media (max-width: 767.98px) {
  .intro__advantages-clip {
    --reveal-clip-top: -70px;
    --reveal-clip-right: -70px;
    --reveal-clip-bottom: -90px;
    --reveal-clip-left: -20px;
    margin-top: 40px;
  }
}

@media (max-width: 479.98px) {
  .intro__advantages-clip {
    margin-top: 30px;
  }
}

.intro__advantages {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(134deg, rgba(255, 255, 255, 0.71) 31.55%, rgba(230, 234, 244, 0.9) 65.72%);
  box-shadow: 48px 14px 81.1px rgba(45, 70, 123, 0.2);
  backdrop-filter: blur(3.5px);
}

@media (max-width: 1420px) {
  .intro__advantages {
    gap: 40px;
    padding-right: 60px;
  }
}

@media (max-width: 991.98px) {
  .intro__advantages {
    padding: 25px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .intro__advantages {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 25px;
    background: linear-gradient(96deg, rgba(255, 255, 255, 0.71) 31.55%, rgba(230, 234, 244, 0.9) 65.72%);
  }
}

.intro__advantage {
  --reveal-delay: 0.35s;
  --reveal-stagger: 0.18s;
  text-align: center;
}

@media (max-width: 767.98px) {
  .intro__advantage {
    position: relative;
    padding-left: 25px;
    text-align: left;
  }

  .intro__advantage::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -1px;
    width: 10px;
    height: 10px;
    border-radius: 1px;
    background: linear-gradient(91deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
    transform: rotate(45deg);
  }
}

@media (max-width: 479.98px) {
  .intro__advantage {
    padding-left: 20px;
  }
}

.intro__advantage-title {
  font-family: Mallory, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 114%;
}

@media (max-width: 991.98px) {
  .intro__advantage-title {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .intro__advantage-title {
    font-size: 16px;
  }
}

.intro__advantage-text {
  margin-top: 10px;
  font-size: 20px;
  line-height: 110%;
  color: var(--gray-primary);
}

@media (max-width: 991.98px) {
  .intro__advantage-text {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .intro__advantage-text {
    font-size: 16px;
  }
}

.service-card {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 30px 50px 40px;
  border-radius: 20px;
  box-shadow: 2px 33px 50px rgba(115, 141, 165, 0);
  transition: box-shadow 0.3s ease;
  color: var(--primary);
}

@media (max-width: 767.98px) {
  .service-card {
    padding: 20px 30px 25px;
    border-radius: 15px;
    gap: 15px;
  }
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(144deg, rgba(255, 255, 255, 0.7) 33.77%, rgba(144, 166, 186, 0.7) 106.58%);
  backdrop-filter: blur(3.5px);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  backdrop-filter: blur(3.5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card.active {
  box-shadow: 2px 33px 50px rgba(115, 141, 165, 0.26);
  background: transparent;
}

.service-card.active::before {
  opacity: 0;
}

.service-card.active::after {
  opacity: 1;
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card__name {
  font-family: Mallory, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 114%;
  flex-grow: 1;
}

@media (max-width: 1420px) {
  .service-card__name {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .service-card__name {
    font-size: 18px;
  }
}

.service-card__icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  opacity: 0.7;
  flex-shrink: 0;
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .service-card__icon {
    width: 48px;
    height: 48px;
  }
}

.service-card__body {
  position: relative;
  z-index: 1;
}

.service-card__list {
  display: grid;
  gap: 5px;
  font-size: 18px;
  line-height: 150%;
}

.service-card__list li {
  position: relative;
  padding-left: 34px;
}

.service-card__list li::before,
.service-card__list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.service-card__list li::before {
  background: #576f84;
}

.service-card__list li::after {
  background: linear-gradient(98deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
  opacity: 0;
}

.service-card.active .service-card__list li::after {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .service-card__list {
    font-size: 16px;
    line-height: 140%;
  }

  .service-card__list li {
    padding-left: 26px;
  }

  .service-card__list li::before,
  .service-card__list li::after {
    width: 18px;
    height: 18px;
  }
}

.service-card__more {
  display: none;
  margin-top: 20px;
}

.service-card__more p {
  font-size: 18px;
  line-height: 150%;
}

@media (max-width: 767.98px) {
  .service-card__more p {
    font-size: 16px;
    line-height: 140%;
  }
}

.service-card__btn {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 25px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(97deg, var(--blue-light) 4.12%, var(--blue-dark) 100%);
  color: #fff;
  cursor: pointer;
  font-family: Mallory, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: filter 0.3s ease;
  margin-top: 20px;
}

.service-card__btn::after {
  content: "";
  width: 24px;
  height: 24px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18.5 12H5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 18C13 18 19 13.5811 19 12C19 10.4188 13 6 13 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.3s ease;
}

.service-card__btn--desktop {
  display: flex;
}

@media (max-width: 767.98px) {
  .service-card__btn--desktop {
    display: none;
  }
}

.service-card__btn--mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .service-card__btn--mobile {
    display: flex;
  }
}

@media (any-hover: hover) {
  .service-card__btn:hover {
    filter: brightness(1.05);
  }

  .service-card__btn:hover::after {
    transform: translateX(4px);
  }
}

.services {
  position: relative;
  padding: 75px 0;
}

@media (max-width: 991.98px) {
  .services {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .services {
    padding: 25px 0;
  }
}

.services__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 479.98px) {
  .services__bg {
    display: none;
  }
}

.services__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.services__ellipse--1 {
  width: 688px;
  height: 1726px;
  transform: rotate(-79deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.3 + var(--scroll-progress) * 0.59);
  background: #6785af;
  left: 566px;
  top: -67px;
}

@media (max-width: 767.98px) {
  .services__ellipse--1 {
    left: 439px;
    top: -113px;
  }
}

.services__desc {
  margin-top: 20px;
  font-size: 22px;
  line-height: 160%;
}

@media (max-width: 767.98px) {
  .services__desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}

.services__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 991.98px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
}

.services__slider-wrap {
  position: relative;
  margin-top: 60px;
}

@media (max-width: 991.98px) {
  .services__slider-wrap {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .services__slider-wrap {
    margin-top: 20px;
  }
}

@media (max-width: 991.98px) {
  .services__slider {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.services__slide {
  height: auto;
}

.services__slide .service-card {
  height: 100%;
}

@media (max-width: 991.98px) {
  .services__slide {
    width: 380px;
  }
}

@media (max-width: 767.98px) {
  .services__slide {
    width: 250px;
  }
}

.services__controls {
  position: absolute;
  left: -120px;
  right: -120px;
  top: calc(50% - 40px);
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

@media (max-width: 1740px) {
  .services__controls {
    left: -100px;
    right: -100px;
  }
}

@media (max-width: 1560px) {
  .services__controls {
    left: -70px;
    right: -70px;
  }
}

@media (max-width: 1490px) {
  .services__controls {
    left: -55px;
    right: -55px;
  }
}

@media (max-width: 1420px) {
  .services__controls {
    display: none;
  }
}

.services__pagination {
  margin-top: 40px;
}

@media (max-width: 767.98px) {
  .services__pagination {
    margin-top: 20px;
  }
}

.services--single .services__grid {
  align-items: stretch;
}

.services--single .service-card,
.services--single .service-card__body,
.services--single .service-card__list {
  width: 100%;
}

@media (max-width: 767.98px) {
  .services--single .services__grid {
    justify-items: start;
  }
}

.providers {
  position: relative;
  padding: 75px 0;
}

@media (max-width: 991.98px) {
  .providers {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .providers {
    padding: 25px 0;
  }
}

.providers__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.providers__bg-center {
  width: 1px;
  height: 1px;
  position: relative;
}

.providers__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.providers__ellipse--1 {
  width: 579px;
  height: 1143px;
  opacity: calc(0.2 + var(--scroll-progress) * 0.8);
  transform: rotate(-79deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  background: #2f487c;
  left: -28px;
  top: -417px;
}

@media (max-width: 767.98px) {
  .providers__ellipse--1 {
    width: 166.873px;
    height: 329.35px;
    filter: blur(101px);
    left: 30px;
    top: -126px;
  }
}

.providers__ellipse--2 {
  width: 579.201px;
  height: 1123.209px;
  transform: rotate(-83deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.2 + var(--scroll-progress) * 0.43);
  background: #16359a;
  top: -404px;
  left: 457px;
}

@media (max-width: 767.98px) {
  .providers__ellipse--2 {
    display: none;
  }
}

.providers__ellipse--3 {
  width: 498.03px;
  height: 1392.163px;
  opacity: calc(0.2 + var(--scroll-progress) * 0.8);
  transform: rotate(-79.056deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  background: #cce7ff;
  left: 171px;
  top: -841px;
}

@media (max-width: 767.98px) {
  .providers__ellipse--3 {
    display: none;
  }
}

.providers__ellipse--4 {
  width: 411.365px;
  height: 1336.622px;
  transform: rotate(-79.056deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.2 + var(--scroll-progress) * 0.59);
  background: #032d51;
  left: -857px;
  top: -555px;
}

@media (max-width: 767.98px) {
  .providers__ellipse--4 {
    width: 186.248px;
    height: 605.162px;
    left: -177px;
    top: -191px;
  }
}

.providers__ellipse--5 {
  width: 579.201px;
  height: 1231.801px;
  transform: rotate(-64.51deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.2 + var(--scroll-progress) * 0.5);
  background: #aecbe4;
  top: -236px;
  left: -18px;
}

@media (max-width: 767.98px) {
  .providers__ellipse--5 {
    display: none;
  }
}

.providers__container {
  position: relative;
  z-index: 2;
}

.providers__description {
  font-size: 22px;
  line-height: 160%;
  margin-top: 20px;
}

@media (max-width: 767.98px) {
  .providers__description {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}

.providers__sliders {
  display: grid;
  gap: 20px;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 8px;
}

@media (max-width: 991.98px) {
  .providers__sliders {
    margin-top: 40px;
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .providers__sliders {
    margin-top: 20px;
    gap: 10px;
  }
}

.providers__slider {
  width: 100%;
}

.providers__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.providers__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

@media (max-width: 1740px) {
  .providers__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1420px) {
  .providers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991.98px) {
  .providers__grid {
    margin-top: 40px;
    margin-bottom: 0;
    grid-template-columns: repeat(6, 1fr);
    margin-right: -30px;
    margin-left: -30px;
    padding-right: 30px;
    padding-left: 30px;
    overflow-x: auto;
  }
}

@media (max-width: 767.98px) {
  .providers__grid {
    margin-top: 20px;
    gap: 10px;
  }
}

.providers__item {
  height: 140px;
  padding: 20px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  backdrop-filter: blur(3.5px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .providers__item {
    width: 130px;
    height: 68px;
    padding: 5px 10px;
    border-radius: 15px;
  }
}

.providers__slider .providers__item {
  width: 210px;
}

@media (max-width: 767.98px) {
  .providers__slider .providers__item {
    width: 130px;
  }
}

.providers__logo {
  width: 190px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .providers__logo {
    width: 110px;
    height: 58px;
  }
}

.providers__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.faq {
  padding: 75px 0;
}

@media (max-width: 991.98px) {
  .faq {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .faq {
    padding: 25px 0 50px;
  }
}

.faq__container {
  position: relative;
}

.faq__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.faq__glow {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.faq__glow--1 {
  background: rgba(3, 45, 81, 0.79);
  height: 411px;
  width: 886px;
  left: -115px;
  bottom: -44px;
  opacity: calc(1 - var(--scroll-progress) * 0.8);
  transform: rotate(11deg) scale(calc(0.5 + var(--scroll-progress) * 0.8));
}

@media (max-width: 991.98px) {
  .faq__glow--1 {
    height: 312px;
    width: 673px;
    left: -115px;
    bottom: -44px;
  }
}

@media (max-width: 479.98px) {
  .faq__glow--1 {
    height: 212px;
    width: 573px;
    bottom: 100px;
    filter: blur(150px);
  }
}

.faq__glow--2 {
  background: #9fc0dd;
  width: 488.649px;
  height: 1392.163px;
  right: 90px;
  top: -335px;
  opacity: calc(0.1 + var(--scroll-progress) * 0.9);
  transform: rotate(-79.056deg) scale(calc(1.5 - var(--scroll-progress) * 0.9));
}

@media (max-width: 991.98px) {
  .faq__glow--2 {
    display: none;
  }
}

.faq__glow--3 {
  left: -129px;
  top: 168px;
  height: 579px;
  width: 1214px;
  background: rgba(120, 147, 204, 0.89);
  opacity: calc(1 - var(--scroll-progress) * 0.7);
  transform: translateZ(0) rotate(11deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
}

@media (max-width: 991.98px) {
  .faq__glow--3 {
    height: 354px;
    width: 743px;
    left: -129px;
    top: 96px;
  }
}

@media (max-width: 479.98px) {
  .faq__glow--3 {
    filter: blur(150px);
    height: 254px;
    width: 543px;
  }
}

.faq__title {
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .faq__title {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .faq__title {
    margin-bottom: 20px;
  }
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
}

@media (max-width: 991.98px) {
  .faq__items {
    gap: 15px;
  }
}

@media (max-width: 767.98px) {
  .faq__items {
    gap: 10px;
  }
}

.faq__item {
  background-image: linear-gradient(167.65deg, rgba(255, 255, 255, 0.7) 33.77%, rgba(144, 166, 186, 0.7) 106.58%);
  backdrop-filter: blur(3.5px);
  border-radius: 20px;
}

@media (max-width: 767.98px) {
  .faq__item {
    border-radius: 15px;
  }
}

.faq__item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 30px 45px 30px 50px;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .faq__item-header {
    padding: 25px 35px 25px 40px;
  }
}

@media (max-width: 767.98px) {
  .faq__item-header {
    padding: 20px 25px 20px 30px;
  }
}

.faq__item-title {
  flex: 1 0 0;
  font-family: Mallory, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .faq__item-title {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .faq__item-title {
    font-size: 18px;
    line-height: 116%;
  }
}

.faq__item-icon {
  flex-shrink: 0;
  padding-top: 7px;
  transition: transform 0.3s ease;
  stroke: var(--primary);
}

@media (max-width: 991.98px) {
  .faq__item-icon {
    padding-top: 0;
  }
}

.faq__item-icon svg {
  display: block;
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

._active .faq__item-icon svg {
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .faq__item-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 767.98px) {
  .faq__item-icon svg {
    width: 22px;
    height: 22px;
  }
}

.faq__item-content {
  display: none;
  padding: 0 45px 30px 50px;
  margin-top: -10px;
}

@media (max-width: 991.98px) {
  .faq__item-content {
    padding: 0 35px 25px 40px;
  }
}

@media (max-width: 767.98px) {
  .faq__item-content {
    padding: 0 25px 20px 30px;
  }
}

.faq__item-text {
  line-height: 1.6;
  color: var(--gray-primary);
  margin: 0;
}

@media (max-width: 767.98px) {
  .faq__item-text {
    line-height: 150%;
  }
}

.summary {
  position: relative;
  padding: 150px 0 75px;
}

@media (max-width: 991.98px) {
  .summary {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .summary {
    padding: 25px 0;
  }
}

.summary__bg {
  --reveal-duration: 1.3s;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.summary__bg-img {
  position: absolute;
  width: 100%;
  height: 1200px;
}

.summary__bg-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.summary__bg-img--desktop {
  display: block;
  top: -200px;
  right: 0;
}

@media (max-width: 1420px) {
  .summary__bg-img--desktop {
    top: 0px;
    height: 800px;
  }
}

@media (max-width: 479.98px) {
  .summary__bg-img--desktop {
    display: none;
  }
}

.summary__bg-img--mobile {
  display: none;
}

@media (max-width: 479.98px) {
  .summary__bg-img--mobile {
    display: block;
    top: -135px;
  }
}

.summary__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.summary__ellipse--7 {
  height: 800px;
  width: 1800px;
  background: #163b6e;
  filter: blur(154px);
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}

@media (max-width: 991.98px) {
  .summary__ellipse--7 {
    height: 400px;
    width: 800px;
  }
}

@media (max-width: 479.98px) {
  .summary__ellipse--7 {
    height: 300px;
    width: 500px;
  }
}

.summary__ellipse--1 {
  height: 379.429px;
  width: 1345.185px;
  opacity: 0.67;
  background: #163b6e;
  filter: blur(154px);
  bottom: 0;
  right: -89px;
  transform: rotate(-2deg);
}

@media (max-width: 991.98px) {
  .summary__ellipse--1 {
    width: 600px;
    right: 0;
    height: 300px;
  }
}

.summary__ellipse--2 {
  height: 368.759px;
  width: 1048.942px;
  transform: rotate(11deg);
  opacity: 0.3;
  background: #163b6e;
  filter: blur(154px);
  bottom: 68px;
  right: 45vw;
}

@media (max-width: 991.98px) {
  .summary__ellipse--2 {
    bottom: 50px;
    left: -36px;
    width: 820px;
    right: auto;
  }
}

@media (max-width: 767.98px) {
  .summary__ellipse--2 {
    display: none;
  }
}

.summary__ellipse--3 {
  height: 469.406px;
  width: 1048.942px;
  transform: rotate(11deg);
  background: #163b6e;
  filter: blur(140px);
  bottom: -38px;
  right: 45vw;
}

@media (max-width: 991.98px) {
  .summary__ellipse--3 {
    left: auto;
    bottom: -60px;
    left: -19px;
    width: 820px;
  }
}

@media (max-width: 479.98px) {
  .summary__ellipse--3 {
    bottom: 50px;
    left: -150px;
  }
}

.summary__ellipse--5 {
  height: 119.914px;
  background: rgba(40, 79, 113, 0.35);
  filter: blur(27.5px);
  top: 70%;
  left: 100px;
  right: 0;
}

@media (max-width: 991.98px) {
  .summary__ellipse--5 {
    top: 80%;
  }
}

.summary__content {
  min-height: 800px;
  display: grid;
  align-content: end;
}

@media (max-width: 1420px) {
  .summary__content {
    min-height: 650px;
  }
}

@media (max-width: 991.98px) {
  .summary__content {
    min-height: 550px;
  }
}

@media (max-width: 767.98px) {
  .summary__content {
    min-height: 0;
    padding-top: 220px;
  }
}

@media (max-width: 479.98px) {
  .summary__content {
    padding-top: 320px;
  }
}

.summary__title {
  color: #fff;
  margin-bottom: 40px;
}

@media (max-width: 991.98px) {
  .summary__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .summary__title {
    margin-bottom: 20px;
  }
}

.summary__body-wrap {
  position: relative;
}

.summary__body-clip {
  --reveal-clip-top: -90px;
  --reveal-clip-right: -120px;
  --reveal-clip-bottom: -120px;
  --reveal-clip-left: -20px;
}

.summary__body {
  background: linear-gradient(177deg, rgba(255, 255, 255, 0.95) 7.22%, rgba(192, 213, 226, 0.95) 83.51%);
  backdrop-filter: blur(3.5px);
  border-radius: 20px;
  padding: 30px 80px 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1420px) {
  .summary__body {
    padding: 30px 40px;
    gap: 20px;
  }
}

@media (max-width: 991.98px) {
  .summary__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767.98px) {
  .summary__body {
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(95deg, rgba(255, 255, 255, 0.71) 31.55%, rgba(230, 234, 244, 0.9) 65.72%);
    box-shadow: 48px 14px 81.1px 0 rgba(45, 70, 123, 0.2);
    gap: 10px;
    padding: 25px 30px;
  }
}

@media (max-width: 479.98px) {
  .summary__body {
    grid-template-columns: 1fr;
    padding: 20px 25px;
  }
}

.summary__item {
  --reveal-delay: 0.55s;
  --reveal-stagger: 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1 1 auto;
  max-width: 140px;
}

@media (max-width: 991.98px) {
  .summary__item {
    max-width: none;
  }
}

@media (max-width: 479.98px) {
  .summary__item {
    align-items: flex-start;
    text-align: left;
    gap: 3px;
    padding-left: 24px;
    position: relative;
  }

  .summary__item::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    aspect-ratio: 1/1;
    border-radius: 1px;
    background: var(--Blue-Primary__grad, linear-gradient(91deg, #01b3ff -4.12%, #016fff 100%));
    position: absolute;
    top: 4px;
    left: 2px;
  }
}

.summary__value {
  font-family: Mallory, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.14;
}

@media (max-width: 1420px) {
  .summary__value {
    font-size: 26px;
  }
}

@media (max-width: 767.98px) {
  .summary__value {
    font-size: 20px;
  }
}

@media (max-width: 479.98px) {
  .summary__value {
    font-size: 16px;
  }
}

.summary__text {
  font-size: 20px;
  line-height: 1.1;
  color: var(--gray-primary);
}

@media (max-width: 1420px) {
  .summary__text {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .summary__text {
    font-size: 16px;
  }
}

@media (max-width: 479.98px) {
  .summary__text {
    line-height: 1.5;
  }
}

.img-text {
  position: relative;
  padding: 75px 0;
}

.img-text--reverse .img-text__body {
  grid-template-columns: 700px 1fr;
}

@media (max-width: 1420px) {
  .img-text--reverse .img-text__body {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .img-text--reverse .img-text__body {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.img-text--reverse .img-text__image-wrap {
  margin-left: 0;
  margin-right: -100px;
}

.img-text--reverse .img-text__content {
  order: -1;
}

@media (max-width: 991.98px) {
  .img-text--reverse .img-text__content {
    order: 1;
  }
}

.img-text--no-image .img-text__body {
  grid-template-columns: 1fr;
}

.img-text.main .img-text__content {
  padding-bottom: 120px;
}

@media (max-width: 991.98px) {
  .img-text.main .img-text__content {
    padding-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .img-text {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .img-text {
    padding: 25px 0;
  }
}

.img-text__body {
  display: grid;
  grid-template-columns: 1fr 700px;
  gap: 80px;
  position: relative;
}

@media (max-width: 1420px) {
  .img-text__body {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .img-text__body {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.img-text__body-ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
  position: absolute;
  top: 38px;
  right: 251px;
  background: #c1cfda;
  opacity: calc(0.3 + var(--scroll-progress) * 0.59);
  width: 579px;
  height: 1392px;
  transform: rotate(-79deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  z-index: -1;
}

@media (max-width: 991.98px) {
  .img-text__body-ellipse {
    top: 501px;
    right: auto;
    left: 460px;
  }
}

@media (max-width: 767.98px) {
  .img-text__body-ellipse {
    top: 0;
    right: auto;
    left: 580px;
  }
}

.img-text__image-wrap {
  position: relative;
  top: 25px;
  margin-bottom: -100px;
  margin-left: -100px;
}

@media (max-width: 1420px) {
  .img-text__image-wrap {
    margin-bottom: -50px;
    margin-left: -50px;
  }
}

@media (max-width: 991.98px) {
  .img-text__image-wrap {
    margin-bottom: -30px;
    margin-left: -30px;
    margin-right: -30px;
    top: 0;
  }
}

.img-text__img-ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
  position: absolute;
  top: -130px;
  left: 58px;
  width: 558px;
  height: 824px;
  transform: rotate(-76deg) scale(calc(0.6 + var(--scroll-progress) * 0.6));
  opacity: calc(0.12 + var(--scroll-progress) * 0.24);
  background: #21468c;
}

@media (max-width: 991.98px) {
  .img-text__img-ellipse {
    top: -41px;
    left: 177px;
  }
}

@media (max-width: 767.98px) {
  .img-text__img-ellipse {
    top: -85px;
    left: 88px;
  }
}

.img-text__image {
  padding-bottom: 100%;
  position: relative;
}

.img-text__image--desktop {
  display: block;
}

@media (max-width: 479.98px) {
  .img-text__image--desktop {
    display: none;
  }
}

.img-text__image--mobile {
  display: none;
}

@media (max-width: 479.98px) {
  .img-text__image--mobile {
    display: block;
  }
}

.img-text__image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
  position: absolute;
  inset: 0;
}

.img-text__text-block:not(:first-child) {
  margin-top: 60px;
}

@media (max-width: 991.98px) {
  .img-text__text-block:not(:first-child) {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .img-text__text-block:not(:first-child) {
    margin-top: 30px;
  }
}

.img-text__text-block>h2:not(:first-child) {
  margin-top: 60px;
}

@media (max-width: 991.98px) {
  .img-text__text-block>h2:not(:first-child) {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .img-text__text-block>h2:not(:first-child) {
    margin-top: 30px;
  }
}

.img-text__text {
  font-size: 22px;
  line-height: 1.6;
  margin-top: 20px;
  margin-top: 50px;
  display: grid;
  gap: 20px;
}

.img-text__text:first-of-type {
  margin-top: 20px;
}

@media (max-width: 991.98px) {
  .img-text__text {
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .img-text__text {
    margin-top: 20px;
  }
}

.img-text__text h3 {
  font-size: 42px;
  font-family: Mallory, sans-serif;
  font-weight: 700;
  line-height: 114%;
  /* 61.56px */
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .img-text__text h3 {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .img-text__text h3 {
    font-size: 20px;
  }
}

.img-text__text h3 i,
.img-text__text h3 span {
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .img-text__text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    margin-top: 15px;
  }
}

@media (max-width: 767.98px) {
  .img-text__text {
    margin-top: 10px;
  }
}

.img-text ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 767.98px) {
  .img-text ul {
    gap: 10px;
  }
}

.img-text ul li {
  line-height: 160%;
  position: relative;
  gap: 15px;
  padding-left: 50px;
}

@media (max-width: 991.98px) {
  .img-text ul li {
    padding-left: 40px;
  }
}

@media (max-width: 767.98px) {
  .img-text ul li {
    padding-left: 30px;
  }
}

.img-text ul li strong {
  font-weight: 500;
}

.img-text ul li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19' fill='none'%3E%3Cpath d='M15.8334 4.75L7.12508 13.4583L3.16675 9.5' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: linear-gradient(91deg, #01b3ff -4.12%, #016fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
  position: absolute;
  top: 2px;
  left: 0;
}

@media (max-width: 767.98px) {
  .img-text ul li::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 19 19' fill='none'%3E%3Cpath d='M15.8334 4.75L7.12508 13.4583L3.16675 9.5' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    top: 2px;
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 767.98px) {
  .img-text ul li {
    line-height: 150%;
    padding-top: 3px;
  }
}

.request {
  position: relative;
  padding: 75px 0;
}

@media (max-width: 991.98px) {
  .request {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .request {
    padding: 25px 0;
  }
}

.request__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.request__bg-img--desktop {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 130%;
}

@media (max-width: 479.98px) {
  .request__bg-img--desktop {
    display: none;
  }
}

.request__bg-img--desktop img {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  object-fit: cover;
  height: 100%;
}

@media (max-width: 991.98px) {
  .request__bg-img--desktop img {
    object-fit: cover;
    height: 120%;
  }
}

.request__bg-img--mobile {
  display: none;
  position: absolute;
  inset: 0;
  z-index: -1;
}

@media (max-width: 479.98px) {
  .request__bg-img--mobile {
    display: block;
  }
}

.request__bg-img--mobile img {
  display: block;
  width: 100%;
  position: absolute;
  top: -100vw;
}

.request__woman {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -413px;
  width: 927px;
  pointer-events: none;
}

.request__woman img {
  display: block;
  width: 100%;
}

@media (max-width: 1650px) {
  .request__woman {
    bottom: -286px;
    width: 600px;
  }
}

@media (max-width: 1350px) {
  .request__woman {
    bottom: -164px;
    width: 366px;
  }
}

@media (max-width: 991.98px) {
  .request__woman {
    display: none;
  }
}

.request__container {
  position: relative;
  z-index: 2;
}

.request__content {
  max-width: 800px;
}

@media (max-width: 767.98px) {
  .request__content {
    max-width: none;
  }
}

.request__head {
  max-width: 700px;
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .request__head {
    margin-bottom: 40px;
  }
}

@media (max-width: 479.98px) {
  .request__head {
    max-width: 201px;
    margin-bottom: 30px;
  }
}

.request__title {
  color: #fff;
}

@media (max-width: 767.98px) {
  .request__title {
    font-size: 24px;
  }
}

.request__text {
  font-size: 22px;
  line-height: 160%;
  margin-top: 20px;
  opacity: 0.8;
  color: #fff;
}

@media (max-width: 991.98px) {
  .request__text {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .request__text {
    font-size: 16px;
    line-height: 150%;
    margin-top: 10px;
  }
}

.request-contacts {
  position: relative;
  padding: 75px 0 100px;
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .request-contacts {
    padding: 50px 0 70px;
  }
}

@media (max-width: 767.98px) {
  .request-contacts {
    padding: 40px 0 50px;
  }
}

.request-contacts__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.request-contacts__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.request-contacts__ellipse--1 {
  left: 17%;
  top: 55%;
  height: 579.201px;
  width: 1392.163px;
  transform: rotate(11deg);
  background: rgba(193, 207, 218, 0.89);
}

@media (max-width: 767.98px) {
  .request-contacts__ellipse--1 {
    height: 460.54px;
    width: 661.208px;
    left: -36%;
    top: 32%;
  }
}

.request-contacts__container {
  position: relative;
  z-index: 1;
}

.request-contacts__grid {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(360px, 1fr);
  gap: 150px;
  align-items: start;
}

@media (max-width: 1420px) {
  .request-contacts__grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}

@media (max-width: 991.98px) {
  .request-contacts__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.request-contacts__head {
  max-width: 700px;
  margin-bottom: 40px;
}

@media (max-width: 767.98px) {
  .request-contacts__head {
    margin-bottom: 10px;
  }
}

.request-contacts__text {
  margin-top: 20px;
  font-size: 22px;
  line-height: 160%;
}

@media (max-width: 767.98px) {
  .request-contacts__text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}

.request-contacts__contacts {
  max-width: 700px;
}

.request-contacts__list {
  display: grid;
  gap: 5px;
}

@media (max-width: 767.98px) {
  .request-contacts__list {
    gap: 0;
  }
}

.request-contacts__item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 22px;
  line-height: 160%;
}

@media (max-width: 767.98px) {
  .request-contacts__item {
    gap: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}

.request-contacts__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 3px 2px 1px 0;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(91deg, #3a3f41 4.12%, #222425 100%);
}

@media (max-width: 767.98px) {
  .request-contacts__icon {
    margin: 3px 3px 1px 0;
  }
}

.request-contacts__icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

.request-contacts__icon--clean {
  background: transparent;
}

.request-contacts__icon--clean svg {
  width: 42px;
  height: 42px;
}

@media (max-width: 767.98px) {
  .request-contacts__icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .request-contacts__icon svg {
    width: 16px;
    height: 16px;
  }

  .request-contacts__icon--clean svg {
    width: 30px;
    height: 30px;
  }
}

.request-contacts__link {
  padding-top: 8px;
  color: var(--blue-primary);
  position: relative;
}

.request-contacts__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  right: 0;
  height: 1.5px;
  background-color: var(--blue-primary);
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

@media (any-hover: hover) {
  .request-contacts__link:hover::after {
    transform: scaleX(0);
  }
}

.request-contacts__address {
  display: grid;
  padding-top: 8px;
  font-style: normal;
}

@media (max-width: 767.98px) {
  .request-contacts__address {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.request-contacts__socials {
  max-width: 700px;
  padding-top: 60px;
}

@media (max-width: 767.98px) {
  .request-contacts__socials {
    padding-top: 30px;
  }
}

.request-contacts__socials-title {
  font-family: Mallory, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .request-contacts__socials-title {
    font-size: 18px;
  }
}

.request-contacts__socials-list {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  padding-top: 20px;
}

@media (max-width: 767.98px) {
  .request-contacts__socials-list {
    gap: 10px;
    padding-top: 10px;
  }
}

.request-contacts__social {
  display: block;
  width: 42px;
  height: 42px;
  line-height: 0;
  transition: transform 0.3s ease;
}

.request-contacts__social svg {
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .request-contacts__social:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 767.98px) {
  .request-contacts__social {
    width: 30px;
    height: 30px;
  }
}

.request-form {
  display: grid;
  gap: 15px;
  max-width: 800px;
  padding: 50px 60px;
  border-radius: 20px;
  background: linear-gradient(144deg, rgba(106, 139, 181, 0.89) 33.77%, rgba(47, 78, 118, 0.89) 106.58%);
  backdrop-filter: blur(3.5px);
}

@media (max-width: 991.98px) {
  .request-form {
    max-width: 620px;
    padding: 35px;
  }
}

@media (max-width: 767.98px) {
  .request-form {
    gap: 10px;
    max-width: none;
    padding: 20px 30px;
    border-radius: 15px;
  }
}

.request-form--contacts {
  max-width: 800px;
  width: 100%;
  background: linear-gradient(134deg, rgba(58, 93, 137, 0.89) 33.77%, rgba(47, 78, 118, 0.89) 106.58%);
}

@media (max-width: 1420px) {
  .request-form--contacts {
    padding: 30px 40px;
  }
}

@media (max-width: 991.98px) {
  .request-form--contacts {
    max-width: none;
  }
}

@media (max-width: 479.98px) {
  .request-form--contacts {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .request-form--contacts .request-form__btn {
    width: fit-content !important;
  }
}

@media (max-width: 767.98px) {
  .request-form--contacts .request-form__actions {
    display: flex;
    justify-content: flex-end;
  }
}

.request-form__field {
  position: relative;
  display: grid;
  gap: 0;
  padding: 9px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
  transition: all 0.3s ease;
}

.request-form__field::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.3s ease;
}

.request-form__field.open {
  z-index: 5;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 15px 15px 0 0;
}

.request-form__field.open::before {
  opacity: 1;
}

.request-form__field>span {
  color: var(--gray-primary);
  font-size: 16px;
  line-height: 160%;
}

.request-form__field input,
.request-form__field textarea {
  width: 100%;
  min-height: 32px;
  color: var(--primary);
  font-size: 20px;
  line-height: 160%;
  background: transparent;
}

.request-form__field input:focus,
.request-form__field textarea:focus,
.request-form__field button:focus {
  outline: none;
}

.request-form__field textarea {
  height: 64px;
  resize: none;
}

@media (max-width: 767.98px) {
  .request-form__field {
    padding: 4px 15px;
    border-radius: 10px;
  }

  .request-form__field>span {
    font-size: 13px;
  }

  .request-form__field input,
  .request-form__field textarea {
    min-height: 22px;
    font-size: 14px;
    line-height: 150%;
  }

  .request-form__field textarea {
    height: 22px;
  }
}

.request-form__actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .request-form__actions {
    display: block;
  }
}

.request-form__btn {
  border: 0;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .request-form__btn {
    width: 100%;
  }
}

.left-img-block {
  position: relative;
  padding: 75px 0;
}

@media (max-width: 991.98px) {
  .left-img-block {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .left-img-block {
    padding: 25px 0 50px;
  }
}

.left-img-block__container {
  position: relative;
  display: grid;
  grid-template-columns: 380px minmax(0, 800px);
  gap: 130px;
  align-items: start;
}

@media (max-width: 1420px) {
  .left-img-block__container {
    grid-template-columns: 36% minmax(0, 1fr);
    gap: 80px;
  }
}

@media (max-width: 991.98px) {
  .left-img-block__container {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 45px;
  }
}

@media (max-width: 767.98px) {
  .left-img-block__container {
    display: block;
    min-height: 0;
  }
}

.left-img-block__visual {
  padding: 30px 0;
}

@media (max-width: 767.98px) {
  .left-img-block__visual {
    display: none;
  }
}

.left-img-block__coin {
  position: relative;
  padding-bottom: 100%;
}

.left-img-block__coin img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.left-img-block__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.left-img-block__ellipse--1 {
  height: 579.201px;
  width: 1213.971px;
  transform: rotate(11deg);
  background: rgba(120, 147, 204, 0.89);
  filter: blur(200px);
  z-index: -1;
  top: -44px;
  left: -184px;
}

.left-img-block__ellipse--2 {
  width: 115%;
  height: 100%;
  background: rgba(38, 66, 114, 0.75);
  filter: blur(60px);
  top: 15%;
  right: 3%;
}

.left-img-block__content {
  position: relative;
  z-index: 1;
}

.left-img-block__title {
  color: var(--primary);
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .left-img-block__title {
    white-space: normal;
    margin-bottom: 10px;
  }
}

.left-img-block__text {
  display: grid;
  gap: 20px;
  font-size: 22px;
  line-height: 160%;
}

@media (max-width: 767.98px) {
  .left-img-block__text {
    gap: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}

.screens {
  position: relative;
  padding: 75px 0;
}

@media (max-width: 991.98px) {
  .screens {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .screens {
    padding: 25px 0;
  }
}

.screens__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.screens__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.screens__ellipse--1 {
  background: rgba(193, 207, 218, 0.89);
  height: 579.201px;
  width: 1392.163px;
  transform: rotate(11deg) translateX(-50%);
  top: 509px;
  left: 50%;
}

@media (max-width: 991.98px) {
  .screens__ellipse--1 {
    top: 600px;
  }
}

@media (max-width: 767.98px) {
  .screens__ellipse--1 {
    top: 400px;
  }
}

@media (max-width: 479.98px) {
  .screens__ellipse--1 {
    height: 316.293px;
    width: 760.238px;
    top: 309px;
  }
}

.screens__ellipse--2 {
  background: rgba(33, 70, 140, 0.36);
  height: 107%;
  width: 144%;
  transform: rotate(-7deg);
  top: 21%;
  right: 10%;
}

.screens__vector {
  position: absolute;
  display: flex;
  align-items: flex-end;
  z-index: -1;
}

.screens__vector--6 {
  bottom: -29%;
  left: 1%;
  right: 2%;
  transform: scaleY(0.5);
}

.screens__vector--7 {
  bottom: -13%;
  left: 6%;
  right: 8%;
  transform: scaleY(0.4);
}

.screens__container {
  position: relative;
}

.screens__grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  align-items: start;
}

@media (max-width: 1740px) {
  .screens__grid {
    grid-template-columns: 500px 1fr;
  }
}

@media (max-width: 1420px) {
  .screens__grid {
    grid-template-columns: 400px 1fr;
  }
}

@media (max-width: 991.98px) {
  .screens__grid {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
  }
}

.screens__col--laptop {
  margin-right: -95px;
}

@media (max-width: 1740px) {
  .screens__col--laptop {
    margin-right: 0;
  }
}

.screens__header {
  max-width: 500px;
}

@media (max-width: 991.98px) {
  .screens__header--desktop {
    display: none;
  }
}

.screens__header--mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .screens__header--mobile {
    display: block;
    padding-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .screens__header--mobile {
    padding-bottom: 20px;
  }
}

.screens__text {
  margin-top: 20px;
  font-size: 22px;
  line-height: 160%;
}

@media (max-width: 767.98px) {
  .screens__text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}

.screens__description-slider {
  --reveal-delay: 2s;
  margin-top: 50px;
}

@media (max-width: 1420px) {
  .screens__description-slider {
    margin-top: 40px;
  }
}

@media (max-width: 991.98px) {
  .screens__description-slider {
    margin-top: 50px;
  }
}

@media (max-width: 767.98px) {
  .screens__description-slider {
    margin-top: 33px;
  }
}

.screens__laptop {
  position: relative;
}

.screens__laptop>img {
  z-index: 1;
  width: 100%;
  display: block;
  position: relative;
}

.screens__slider-wrap {
  position: absolute;
  left: 10%;
  top: 6%;
  z-index: 0;
  right: 13%;
  bottom: 17%;
  background: #0b1323;
}

.screens__slider {
  position: absolute;
  inset: 0;
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.screens__controls {
  position: absolute;
  left: -120px;
  right: -120px;
  top: 267px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

@media (max-width: 1740px) {
  .screens__controls {
    left: -100px;
    right: -100px;
  }
}

@media (max-width: 1560px) {
  .screens__controls {
    left: -70px;
    right: -70px;
  }
}

@media (max-width: 1490px) {
  .screens__controls {
    left: -55px;
    right: -55px;
  }
}

@media (max-width: 1420px) {
  .screens__controls {
    display: none;
  }
}

.screens__pagination {
  margin-top: 62px;
}

@media (max-width: 991.98px) {
  .screens__pagination {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .screens__pagination {
    margin-top: 20px;
  }
}

.screens-description-slider {
  border-radius: 20px 0 20px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  box-shadow: 2px 33px 50px 0 rgba(115, 141, 165, 0.26);
  backdrop-filter: blur(3.5px);
  padding: 30px 50px;
  position: relative;
  overflow: visible !important;
  margin-right: 50px;
}

@media (max-width: 1420px) {
  .screens-description-slider {
    padding: 25px 40px;
  }
}

@media (max-width: 991.98px) {
  .screens-description-slider {
    padding: 20px 30px;
    border-radius: 15px;
    margin-right: 0;
  }
}

.screens-description-slider svg {
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
}

@media (max-width: 991.98px) {
  .screens-description-slider svg {
    display: none;
  }
}

.screens-description-slider__slide {
  display: grid;
  gap: 15px;
}

@media (max-width: 767.98px) {
  .screens-description-slider__slide {
    gap: 10px;
  }
}

.screens-description-slider__title {
  font-family: Mallory;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

@media (max-width: 991.98px) {
  .screens-description-slider__title {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .screens-description-slider__title {
    font-size: 18px;
    line-height: 114%;
  }
}

.screens-description-slider p {
  color: var(--gray-primary);
  font-size: 20px;
  line-height: 160%;
}

@media (max-width: 991.98px) {
  .screens-description-slider p {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .screens-description-slider p {
    font-size: 14px;
    line-height: 150%;
  }
}

.laptop-slider__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  position: relative;
  padding: 75px 0;
}

@media (max-width: 991.98px) {
  .timeline {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .timeline {
    padding: 25px 0;
  }
}

.timeline__container {
  position: relative;
}

.timeline__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.timeline__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.timeline__ellipse--1 {
  left: 5%;
  top: 26%;
  height: 579.201px;
  width: 1392.163px;
  transform: rotate(11deg);
  background: rgba(193, 207, 218, 0.89);
}

@media (max-width: 767.98px) {
  .timeline__ellipse--1 {
    height: 460.54px;
    width: 661.208px;
    left: -36%;
    top: 16%;
  }
}

.timeline__ellipse--2 {
  left: 4%;
  top: 55%;
  background: rgba(193, 207, 218, 0.89);
  height: 579.201px;
  width: 1392.163px;
  transform: rotate(11deg);
  filter: blur(80px);
}

@media (max-width: 767.98px) {
  .timeline__ellipse--2 {
    height: 460.54px;
    width: 661.208px;
    left: -36%;
    top: 52%;
  }
}

.timeline__ellipse--3 {
  left: 4%;
  top: 64%;
  position: absolute;
  height: 579.201px;
  width: 1392.163px;
  transform: rotate(11deg);
  background: rgba(193, 207, 218, 0.89);
  filter: blur(80px);
}

@media (max-width: 767.98px) {
  .timeline__ellipse--3 {
    display: none;
  }
}

.timeline__ellipse--4 {
  left: -10%;
  top: 2%;
  background: rgba(33, 70, 140, 0.36);
  height: 557.653px;
  width: 824.346px;
  transform: rotate(11deg);
}

@media (max-width: 767.98px) {
  .timeline__ellipse--4 {
    display: none;
  }
}

.timeline__header {
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .timeline__header {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .timeline__header {
    margin-bottom: 20px;
  }
}

.timeline__subtitle {
  font-size: 22px;
  line-height: 160%;
  margin-top: 20px;
  max-width: 800px;
}

@media (max-width: 767.98px) {
  .timeline__subtitle {
    font-size: 16px;
    line-height: 150%;
    margin-top: 10px;
  }
}

.timeline__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline__step {
  position: relative;
  width: 50%;
}

@media (max-width: 991.98px) {
  .timeline__step {
    width: 70%;
  }
}

@media (max-width: 767.98px) {
  .timeline__step {
    width: 100%;
  }
}

.timeline__step::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: calc(100% - 30px);
  width: 120px;
  height: 120px;
  border-radius: 0 25px 0 0;
  border-top: 4px solid rgba(255, 255, 255, 0.6);
  border-right: 4px solid rgba(255, 255, 255, 0.6);
}

@media (max-width: 767.98px) {
  .timeline__step::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: auto;
    top: 100%;
    width: 4px;
    border-top: none;
    height: 30px;
    border-radius: 0;
  }
}

.timeline__step:nth-child(even) {
  align-self: flex-end;
  padding-left: 30px;
}

.timeline__step:nth-child(even)::before {
  left: auto;
  right: calc(100% - 30px);
  transform: rotate(-90deg);
}

@media (max-width: 767.98px) {
  .timeline__step:nth-child(even)::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .timeline__step:nth-child(even) {
    padding-left: 0;
  }
}

.timeline__step:nth-child(odd) {
  align-self: flex-start;
  padding-right: 30px;
}

@media (max-width: 767.98px) {
  .timeline__step:nth-child(odd) {
    padding-right: 0;
  }
}

.timeline__step:last-child::before {
  display: none;
}

.timeline__card {
  border-radius: 20px;
  background: linear-gradient(144deg, rgba(255, 255, 255, 0.7) 33.77%, rgba(144, 166, 186, 0.7) 106.58%);
  backdrop-filter: blur(3.5px);
  padding: 30px 50px 40px 50px;
  display: flex;
  gap: 30px;
}

@media (max-width: 1420px) {
  .timeline__card {
    padding: 25px 40px 30px 40px;
  }
}

@media (max-width: 767.98px) {
  .timeline__card {
    padding: 20px 25px 25px 25px;
    gap: 20px;
    border-radius: 15px;
  }
}

.timeline__icon {
  flex-shrink: 0;
}

.timeline__icon img {
  width: 100px;
  height: 100px;
}

@media (max-width: 1420px) {
  .timeline__icon img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 767.98px) {
  .timeline__icon img {
    width: 40px;
    height: 40px;
  }
}

.timeline__label {
  font-family: Mallory, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 114%;
  /* 18.24px */
  text-transform: uppercase;
  margin-bottom: 5px;
}

@media (max-width: 767.98px) {
  .timeline__label {
    font-size: 13px;
    margin-bottom: 2px;
  }
}

.timeline__name {
  font-family: Mallory;
  font-size: 28px;
  font-weight: 700;
  line-height: 114%;
  /* 31.92px */
}

@media (max-width: 767.98px) {
  .timeline__name {
    font-size: 18px;
  }
}

.timeline__badge {
  margin-top: 10px;
  color: #fff;
  font-family: Mallory, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 114%;
  border-radius: 11px;
  background: #6f96b8;
  padding: 3px 10px;
  display: inline-block;
}

@media (max-width: 767.98px) {
  .timeline__badge {
    font-size: 14px;
    margin-top: 6px;
    padding: 0 10px 0 10px;
    line-height: 21px;
  }
}

.timeline__text {
  padding-top: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}

@media (max-width: 767.98px) {
  .timeline__text {
    padding-top: 10px;
    font-size: 16px;
    line-height: 150%;
  }
}

.timeline--contacts .timeline__text {
  padding-top: 10px;
}

.timeline {
  /** Панель с описанием: скрыта до hover (desktop) / tap (mobile), раскрывается через HoverExpandCards */
}

.timeline .timeline-expand-panel-js {
  display: none;
}

@media (max-width: 767.98px) {
  .timeline .timeline-expand-panel-js {
    display: block !important;
  }
}

.start {
  position: relative;
  padding: 75px 0;
}

@media (max-width: 991.98px) {
  .start {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .start {
    padding: 25px 0;
  }
}

.start__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.start__bg-img {
  position: absolute;
}

.start__bg-img--desktop {
  top: 50%;
  right: 50%;
  transform: translateX(50%) translateY(-50%);
}

@media (max-width: 1920px) {
  .start__bg-img--desktop {
    right: 0;
    transform: translateY(-50%);
  }
}

@media (max-width: 1420px) {
  .start__bg-img--desktop {
    right: -100px;
  }
}

@media (max-width: 991.98px) {
  .start__bg-img--desktop {
    right: -300px;
  }
}

@media (max-width: 767.98px) {
  .start__bg-img--desktop {
    display: none;
  }
}

.start__bg-img--desktop img {
  width: 1920px;
}

.start__bg-img--mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .start__bg-img--mobile {
    top: -100px;
    display: block;
  }
}

@media (max-width: 479.98px) {
  .start__bg-img--mobile {
    top: 50%;
    transform: translateY(-50%);
  }
}

.start__bg-img--mobile img {
  width: 100%;
}

.start__content {
  max-width: 840px;
  min-height: 600px;
  display: grid;
  align-content: center;
}

@media (max-width: 1420px) {
  .start__content {
    min-height: 400px;
    max-width: 650px;
  }
}

@media (max-width: 991.98px) {
  .start__content {
    min-height: 0;
    max-width: 500px;
  }
}

@media (max-width: 767.98px) {
  .start__content {
    padding-top: 70vw;
    padding-bottom: 50px;
  }
}

@media (max-width: 479.98px) {
  .start__content {
    padding-top: 85vw;
  }
}

.start__title {
  color: #fff;
}

.start__desc {
  margin-top: 20px;
  color: #fff;
  font-size: 22px;
  line-height: 160%;
  /* 35.2px */
}

@media (max-width: 767.98px) {
  .start__desc {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
  }
}

.start__actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 767.98px) {
  .start__actions {
    margin-top: 20px;
    gap: 30px;
  }
}

.start__socials {
  display: flex;
  gap: 15px;
}

@media (max-width: 767.98px) {
  .start__socials {
    gap: 10px;
  }
}

.start__social-link {
  transition: filter 0.3s ease;
}

.start__social-link svg {
  width: 40px;
  height: 40px;
}

@media (max-width: 767.98px) {
  .start__social-link svg {
    width: 34px;
    height: 34px;
  }
}

@media (any-hover: hover) {
  .start__social-link:hover {
    filter: brightness(1.15);
  }
}

.table-section {
  position: relative;
  padding: 75px 0;
}

@media (max-width: 991.98px) {
  .table-section {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .table-section {
    padding: 25px 0;
  }
}

.table-section__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.table-section__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.table-section__ellipse--1 {
  background: rgba(103, 133, 175, 0.89);
  height: 110%;
  width: 134%;
  left: -17%;
  top: 0%;
  transform: rotate(11deg);
}

@media (max-width: 767.98px) {
  .table-section__ellipse--1 {
    height: 229.473px;
    width: 681.502px;
    left: -37%;
    top: 25%;
  }
}

.table-section__header {
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .table-section__header {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
  }
}

@media (max-width: 767.98px) {
  .table-section__header {
    margin-bottom: 20px;
  }
}

.table-section__header-inner {
  flex-grow: 1;
}

.table-section__nav {
  display: none;
}

@media (max-width: 991.98px) {
  .table-section__nav {
    display: flex;
    gap: 5px;
  }
}

.table-section__subtitle {
  font-size: 20px;
  line-height: 160%;
  margin-top: 20px;
}

@media (max-width: 767.98px) {
  .table-section__subtitle {
    font-size: 16px;
    line-height: 150%;
    margin-top: 10px;
  }
}

.table-section__content {
  position: relative;
}

.table-section__table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}

@media (max-width: 991.98px) {
  .table-section__table-wrap {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    margin-right: -30px;
  }
}

.table-section__table-wrap::-webkit-scrollbar {
  display: none;
}

.compare-table {
  width: 100%;
  min-width: 960px;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  font-size: 22px;
  line-height: 1.6;
  border-radius: 20px;
}

@media (max-width: 991.98px) {
  .compare-table {
    min-width: 760px;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 15px;
    margin-right: 30px;
  }
}

@media (max-width: 767.98px) {
  .compare-table {
    min-width: 560px;
  }
}

.compare-table th,
.compare-table td {
  text-align: left;
  vertical-align: middle;
  padding: 20px 50px;
}

@media (max-width: 991.98px) {

  .compare-table th,
  .compare-table td {
    padding: 10px 20px;
  }
}

.compare-table thead {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(180deg, #3276a6 0%, #135688 100%);
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .compare-table thead {
    white-space: normal;
  }
}

.compare-table thead th:first-child {
  border-top-left-radius: 20px;
}

@media (max-width: 991.98px) {
  .compare-table thead th:first-child {
    border-top-left-radius: 15px;
  }
}

.compare-table thead th:last-child {
  border-top-right-radius: 20px;
}

@media (max-width: 991.98px) {
  .compare-table thead th:last-child {
    border-top-right-radius: 15px;
  }
}

.compare-table tbody tr td,
.compare-table tbody tr th {
  position: relative;
}

.compare-table tbody tr td::before,
.compare-table tbody tr th::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: 0;
}

.compare-table tbody tr th::after {
  content: "";
  position: absolute;
  /* inset: 0; */
  left: 100%;
  top: 0;
  bottom: 0;
  width: 10px;
  z-index: -1;
  pointer-events: none;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(103, 133, 175, 0.1490196078) 0%, transparent 100%);
}

.compare-table tbody tr:last-child>td:last-child::before {
  border-bottom-right-radius: 20px;
}

@media (max-width: 991.98px) {
  .compare-table tbody tr:last-child>td:last-child::before {
    border-bottom-right-radius: 15px;
  }
}

.compare-table tbody tr:last-child>th::before {
  border-bottom-left-radius: 20px;
}

@media (max-width: 991.98px) {
  .compare-table tbody tr:last-child>th::before {
    border-bottom-left-radius: 15px;
  }
}

.compare-table tbody tr:nth-child(odd)>td::before {
  background: rgba(243, 247, 251, 0.95);
}

.compare-table tbody tr:nth-child(odd)>th::before {
  background: rgba(243, 247, 251, 0.95);
}

@media (max-width: 991.98px) {
  .compare-table tbody tr:nth-child(odd)>th::before {
    background: rgb(243, 247, 251);
  }
}

.compare-table tbody tr:nth-child(even)>td::before {
  background: rgba(229, 236, 249, 0.95);
}

.compare-table tbody tr:nth-child(even)>th::before {
  background: rgba(229, 236, 249, 0.95);
}

@media (max-width: 991.98px) {
  .compare-table tbody tr:nth-child(even)>th::before {
    background: rgb(229, 236, 249);
  }
}

@media (max-width: 991.98px) {
  .compare-table {
    overflow: visible;
  }

  .compare-table tr> :first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    max-width: 42vw;
    min-width: 0;
    background-clip: padding-box;
  }

  .compare-table thead tr> :first-child {
    z-index: 3;
    background: linear-gradient(180deg, #3276a6 0%, #135688 100%);
  }
}

.events-slider {
  position: relative;
  padding: 75px 0;
}

@media (max-width: 991.98px) {
  .events-slider {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .events-slider {
    padding: 25px 0;
  }
}

.events-slider__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.events-slider__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.events-slider__ellipse--1 {
  width: 75%;
  height: 62%;
  right: 7%;
  top: 55%;
  background: rgba(193, 207, 218, 0.89);
  transform: rotate(11deg);
}

@media (max-width: 991.98px) {
  .events-slider__ellipse--1 {
    width: 84%;
    height: 60%;
    right: -15%;
    top: 44%;
  }
}

@media (max-width: 767.98px) {
  .events-slider__ellipse--1 {
    width: 798px;
    height: 332px;
    right: -100%;
    top: 60%;
  }
}

.events-slider__ellipse--2 {
  width: 69%;
  height: 58%;
  left: 4%;
  top: 39%;
  background: rgba(33, 70, 140, 0.36);
  transform: rotate(10deg);
}

@media (max-width: 991.98px) {
  .events-slider__ellipse--2 {
    width: 78%;
    height: 64%;
    left: -10%;
    top: 36%;
  }
}

@media (max-width: 767.98px) {
  .events-slider__ellipse--2 {
    width: 580px;
    height: 215px;
    left: -10%;
    top: 36%;
  }
}

.events-slider__container {
  position: relative;
}

.events-slider__header {
  max-width: 700px;
  margin-bottom: 60px;
}

@media (max-width: 767.98px) {
  .events-slider__header {
    margin-bottom: 20px;
  }
}

.events-slider__title {
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .events-slider__title {
    margin-bottom: 10px;
  }
}

.events-slider__subtitle {
  max-width: 800px;
  font-size: 22px;
  line-height: 160%;
}

@media (max-width: 767.98px) {
  .events-slider__subtitle {
    font-size: 16px;
    line-height: 150%;
  }
}

.events-slider__body {
  position: relative;
}

.events-slider__slider {
  overflow: hidden;
}

@media (max-width: 1420px) {
  .events-slider__slider {
    margin-right: -30px;
    padding-right: 30px;
    margin-left: -30px;
    padding-left: 30px;
  }
}

.events-slider__slide {
  height: auto;
}

.events-slider__slide .event-card {
  height: 100%;
}

@media (max-width: 767.98px) {
  .events-slider__slide {
    width: 300px;
  }
}

@media (max-width: 479.98px) {
  .events-slider__slide {
    width: 250px;
  }
}

.events-slider__controls {
  position: absolute;
  left: -120px;
  right: -120px;
  top: 220px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 1740px) {
  .events-slider__controls {
    left: -100px;
    right: -100px;
  }
}

@media (max-width: 1560px) {
  .events-slider__controls {
    left: -70px;
    right: -70px;
  }
}

@media (max-width: 1490px) {
  .events-slider__controls {
    left: -55px;
    right: -55px;
  }
}

@media (max-width: 1420px) {
  .events-slider__controls {
    display: none;
  }
}

.events-slider__pagination {
  margin-top: 60px;
}

@media (max-width: 991.98px) {
  .events-slider__pagination {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .events-slider__pagination {
    margin-top: 20px;
  }
}

.event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.5) 33.77%, rgba(144, 166, 186, 0.5) 106.58%), linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  backdrop-filter: blur(3.5px);
}

@media (max-width: 767.98px) {
  .event-card {
    border-radius: 15px;
  }
}

.event-card__image {
  height: 220px;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .event-card__image {
    height: 200px;
  }
}

@media (max-width: 479.98px) {
  .event-card__image {
    height: 150px;
  }
}

.event-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 50px;
}

@media (max-width: 767.98px) {
  .event-card__content {
    padding: 20px 30px;
  }
}

.event-card__title {
  margin-bottom: 15px;
  font-family: Mallory, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}

@media (max-width: 767.98px) {
  .event-card__title {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 114%;
  }
}

.event-card__list {
  display: grid;
  gap: 5px;
  margin-bottom: 15px;
}

@media (max-width: 767.98px) {
  .event-card__list {
    gap: 2px;
  }
}

.event-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  line-height: 150%;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .event-card__item {
    font-size: 16px;
  }
}

@media (max-width: 479.98px) {
  .event-card__item {
    font-size: 14px;
  }
}

.event-card__item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

@media (max-width: 767.98px) {
  .event-card__item svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

.event-card__button {
  width: 100%;
  margin-top: auto;
}

.media-slider {
  position: relative;
  padding: 75px 0;
}

@media (max-width: 991.98px) {
  .media-slider {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .media-slider {
    padding: 25px 0;
  }
}

.media-slider__bg {
  position: absolute;
  inset: 50% 50%;
}

.media-slider__ellipse {
  --reveal-delay: 1s;
  --reveal-duration: 2s;
}

.media-slider__ellipse--2 {
  width: 1322px;
  height: 491px;
  transform: rotate(10deg);
  background: rgba(33, 70, 140, 0.36);
  right: -426px;
  bottom: -262px;
}

@media (max-width: 767.98px) {
  .media-slider__ellipse--2 {
    width: 723px;
    height: 268px;
    right: -108px;
    bottom: -171px;
  }
}

.media-slider__header {
  display: flex;
  gap: 20px;
}

.media-slider__header-inner {
  flex-grow: 1;
}

.media-slider__desc {
  font-size: 22px;
  line-height: 160%;
  margin-top: 20px;
}

@media (max-width: 767.98px) {
  .media-slider__desc {
    font-size: 16px;
    line-height: 150%;
    margin-top: 10px;
  }
}

.media-slider__nav {
  display: flex;
  gap: 10px;
  align-self: flex-end;
}

@media (max-width: 991.98px) {
  .media-slider__nav {
    display: none;
  }
}

.media-slider__body {
  margin-top: 60px;
}

@media (max-width: 991.98px) {
  .media-slider__body {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .media-slider__body {
    margin-top: 20px;
  }
}

.media-slider__slider {
  overflow: visible;
}

.media-slider__slides {
  overflow: visible;
}

.media-slider__slide {
  width: 340px;
}

@media (max-width: 767.98px) {
  .media-slider__slide {
    width: 250px;
  }
}

.media-slider__slide-inner {
  border-radius: 20px;
  border: 10px solid #e7edf1;
  overflow: hidden;
  position: relative;
  display: block;
  background: linear-gradient(144deg, rgba(255, 255, 255, 0.5) 33.77%, rgba(144, 166, 186, 0.5) 106.58%), linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 231, 235, 0.7) 100%);
  box-shadow: 0 50px 150px 0 rgba(38, 73, 122, 0.67);
  backdrop-filter: blur(3.5px);
}

.media-slider__slide-image {
  padding-bottom: 88.2352941176%;
}

.media-slider__slide-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.media-slider__slide-desc {
  position: absolute;
  color: white;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  padding: 25px 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.media-slider__slide-desc>div {
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.media-slider__slide-desc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(181deg, rgba(28, 64, 115, 0) 12.44%, #173257 89.45%);
  opacity: 0;
  transition: opacity 0.7s ease;
}

.media-slider__slide-inner:hover .media-slider__slide-desc>div {
  transform: none;
  opacity: 1;
}

.media-slider__slide-inner:hover .media-slider__slide-desc::before {
  opacity: 1;
}

.media-slider__pagination {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .media-slider__pagination {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .media-slider__pagination {
    margin-top: 20px;
  }
}

.swiper-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
  transition: opacity 0.7s ease-in-out;
}