@charset "UTF-8";
/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  line-height: 1.15;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dfe6e9;
}

a {
  color: inherit;
  background-color: transparent;
}

a:focus {
  outline: unset;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 0.875em;
}

img {
  height: auto;
}

main img {
  border-style: none;
}

picture img {
  display: block;
}

button,
input {
  font-family: inherit;
  color: inherit;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button {
  text-transform: none;
  -webkit-appearance: button;
}

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

button:-moz-focusring {
  outline: 1px dotted #fff;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
  color: #333;
  background: #fff;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*--------------------------------------------------------------
# Animation
--------------------------------------------------------------*/
._anim-items._anim-no-hide {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Ripple
========================= */
.a-ripple {
  position: relative;
  overflow: hidden;
  outline: none;
}
.a-ripple:hover {
  opacity: 1;
}
.a-ripple:before {
  content: "";
  position: absolute;
  display: block;
  background: var(--ripple-background, white);
  border-radius: 50%;
  pointer-events: none;
  top: calc(var(--y) * 1px);
  left: calc(var(--x) * 1px);
  width: calc(var(--d) * 1px);
  height: calc(var(--d) * 1px);
  opacity: calc(var(--o, 1) * var(--ripple-opacity, 0.4));
  transition: calc(var(--t, 0) * var(--ripple-duration, 600ms)) var(--ripple-easing, linear);
  transform: translate(-50%, -50%) scale(var(--s, 1));
  transform-origin: center;
}

/* =========================
   FLOAT / PARALLAX
========================= */
.parallax-scroll,
.parallax-mouse {
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  will-change: transform;
}

@keyframes a-float {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95) translateX(40px);
  }
  100% {
    transform: scale(1);
  }
}
.a-float {
  animation: a-float 6s ease infinite;
}

.a-parallax {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* =========================
   BASE FADE / SLIDE
========================= */
.a-fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
.a-fade-up._active {
  opacity: 1;
  transform: translateY(0);
}

.a-fade-down {
  opacity: 0;
  transform: translateY(-35px);
  transition: opacity 0.5s ease, transform 0.6s ease;
}
.a-fade-down._active {
  opacity: 1;
  transform: translateY(0);
}

.a-fade-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.a-fade-left._active {
  opacity: 1;
  transform: translateX(0);
}

.a-fade-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.a-fade-right._active {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   SCALE / BLUR
========================= */
.a-blur-up {
  opacity: 0;
  transform: translateY(35px);
  filter: blur(5px);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.a-blur-up._active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================
   IMAGE EFFECTS
========================= */
.a-reveal {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}
.a-reveal._active {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.a-zoom {
  opacity: 0;
  transform: scale(0.8);
  filter: blur(8px);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}
.a-zoom._active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.a-slide-left {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
}
.a-slide-left._active {
  opacity: 1;
  transform: translateX(0);
}

.a-slide-right {
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
}
.a-slide-right._active {
  opacity: 1;
  transform: translateX(0);
}

.a-flip {
  perspective: 1000px;
  opacity: 0;
}
.a-flip-inner {
  transform: rotateY(90deg);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  transform-style: preserve-3d;
}
.a-flip._active .a-flip-inner {
  transform: rotateY(0);
  opacity: 1;
}

/* =========================
   STAGGER LIST
========================= */
.a-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}
.a-stagger._active > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.a-stagger._active > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.a-stagger._active > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.a-stagger._active > *:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.a-stagger._active > *:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.a-stagger._active > *:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.a-stagger._active > *:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.a-stagger._active > *:nth-child(8) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.a-stagger._active > *:nth-child(9) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}
.a-stagger._active > *:nth-child(10) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.a-stagger._active > *:nth-child(11) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}
.a-stagger._active > *:nth-child(12) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.a-stagger-x > * {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.a-stagger-x._active > *:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}
.a-stagger-x._active > *:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.a-stagger-x._active > *:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}
.a-stagger-x._active > *:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}
.a-stagger-x._active > *:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}
.a-stagger-x._active > *:nth-child(6) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
.a-stagger-x._active > *:nth-child(7) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.7s;
}
.a-stagger-x._active > *:nth-child(8) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.8s;
}
.a-stagger-x._active > *:nth-child(9) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.9s;
}
.a-stagger-x._active > *:nth-child(10) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1s;
}
.a-stagger-x._active > *:nth-child(11) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.1s;
}
.a-stagger-x._active > *:nth-child(12) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.2s;
}

.a-rotate-in {
  opacity: 0;
  transform: rotate(-15deg) scale(0.9);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.a-rotate-in._active {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.a-bounce-up {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.a-bounce-up._active {
  opacity: 1;
  transform: translateY(0);
}

.a-gradient-move {
  background-size: 200% 200%;
  animation: a-gradient 6s ease infinite;
}

@keyframes a-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.a-hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.a-hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* =========================
   HOVER ZOOM IMAGE
========================= */
.a-hover-zoom {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .a-hover-zoom img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }
  .a-hover-zoom:hover img {
    transform: scale(1.05) rotate(0.7deg);
  }
}

/* =========================
   Soft drift
========================= */
@keyframes a-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(var(--drift-x, 0), var(--drift-y, -10px), 0) rotate(var(--drift-rotate, 0.4deg));
  }
}
.a-drift {
  --drift-x: 0;
  --drift-y: -10px;
  --drift-rotate: 0.4deg;
  --drift-duration: 7s;
  --drift-delay: 0s;
  animation: a-drift var(--drift-duration) ease-in-out infinite;
  animation-delay: var(--drift-delay);
  will-change: transform;
}

.a-drift--soft {
  --drift-y: -6px;
  --drift-rotate: 0.2deg;
  --drift-duration: 8s;
}

.a-drift--reverse {
  --drift-x: -5px;
  --drift-y: 8px;
  --drift-rotate: -0.35deg;
  --drift-duration: 8.5s;
  --drift-delay: -2.4s;
}

.a-drift--slow {
  --drift-y: -8px;
  --drift-rotate: 0.25deg;
  --drift-duration: 10s;
}

@media (prefers-reduced-motion: reduce) {
  .a-drift {
    animation: none;
  }
}
/*--------------------------------------------------------------
# Hover Accent Line
--------------------------------------------------------------*/
.a-hover-line {
  --hover-line-width: 2px;
  --hover-line-offset: 24px;
  --hover-line-color: #ed1c24;
  --hover-line-shadow: 0 0 12px rgba(237, 28, 36, 0.24);
  position: relative;
}
.a-hover-line::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset-block: var(--hover-line-offset);
  inset-inline-start: -1px;
  width: var(--hover-line-width);
  background: linear-gradient(180deg, transparent, var(--hover-line-color) 18%, var(--hover-line-color) 82%, transparent);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center;
  box-shadow: var(--hover-line-shadow);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .a-hover-line:hover::before {
    opacity: 1;
    transform: scaleY(1);
  }
}
.a-hover-line {
  /* Полезно для карточек с формами */
}
.a-hover-line:focus-within::before {
  opacity: 1;
  transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .a-hover-line::before {
    transition: none;
  }
}
/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
/* inter-regular - cyrillic_cyrillic-ext_latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-cyrillic_cyrillic-ext_latin_latin-ext-regular.woff2") format("woff2");
}
/* inter-500 - cyrillic_cyrillic-ext_latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter-v20-cyrillic_cyrillic-ext_latin_latin-ext-500.woff2") format("woff2");
}
/* inter-600 - cyrillic_cyrillic-ext_latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v20-cyrillic_cyrillic-ext_latin_latin-ext-600.woff2") format("woff2");
}
/* inter-700 - cyrillic_cyrillic-ext_latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v20-cyrillic_cyrillic-ext_latin_latin-ext-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/TitilliumWeb-SemiBold.woff") format("woff");
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  scrollbar-gutter: stable;
  background-color: #f3f3f3;
}
@supports not (scrollbar-gutter: stable) {
  html {
    padding-right: var(--scrollbar-offset);
  }
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(14px, 0.1851851852vw + 13.3333333333px, 16px);
  font-weight: 400;
  color: rgba(22, 34, 67, 0.7);
  line-height: 1.4;
  letter-spacing: -0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  display: block;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.main {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding-top: 94px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .main {
    padding-top: 80px;
  }
}
.main__scale {
  width: 100%;
}
.main__inner {
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
}

._container {
  position: relative;
  max-width: 1400px;
  padding-inline: 40px;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  ._container {
    padding-inline: 30px;
  }
}
@media (max-width: 991px) {
  ._container {
    padding-inline: 30px;
  }
}
._container:before, ._container:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  width: 1px;
  background-color: #d8dade;
}
._container:before {
  left: 0;
}
@media (max-width: 1366px) {
  ._container:before {
    left: 15px;
  }
}
._container:after {
  right: 0;
}
@media (max-width: 1366px) {
  ._container:after {
    right: 15px;
  }
}

._lock {
  overflow: hidden;
  touch-action: none;
}

.section {
  border-bottom: 1px solid #d8dade;
  overflow: hidden;
}
.section:not(:nth-child(-n+2)) {
  content-visibility: auto;
}
.section:not(:nth-child(-n+2)):has(.swiper) {
  content-visibility: visible;
}
.section :where(._container) {
  padding-block: 50px;
}
@media (max-width: 991px) {
  .section :where(._container) {
    padding-block: 30px;
  }
}
.section--dark {
  background-color: #162243;
  color: rgba(243, 243, 243, 0.7);
  border-block-color: #2b3c6d;
}
.section--dark h2,
.section--dark h3 {
  color: #f3f3f3;
}
.section--dark ._container:before, .section--dark ._container:after {
  z-index: 1;
  background-color: #2b3c6d;
}

.home-empty ._container {
  padding-block: 25px;
}
@media (max-width: 991px) {
  .home-empty ._container {
    padding-block: 15px;
  }
}

.l-grid-2 {
  display: grid;
  gap: var(--gap, 40px);
  align-content: center;
  grid-template-columns: minmax(0, var(--col-1, 1fr)) minmax(0, var(--col-2, 1fr));
}
@media (max-width: 1200px) {
  .l-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .l-grid-2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
  }
}

.l-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 991px) {
  .l-header {
    gap: 10px;
  }
}
.l-header--center {
  align-items: center;
  align-self: center;
  margin: 0 auto 40px;
  text-align: center;
}
@media (max-width: 991px) {
  .l-header--center {
    margin-bottom: 16px;
  }
}

.l-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
}
@media (max-width: 991px) {
  .l-stack {
    gap: 12px;
  }
}

.u-mt-20 {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .u-mt-20 {
    margin-top: 12px;
  }
}

/*--------------------------------------------------------------
# Headings
--------------------------------------------------------------*/
h1 {
  margin: 0;
  font-family: "Titillium Web", "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 1.8518518519vw + 21.3333333333px, 48px);
  color: #162243;
  line-height: 1.2;
}
h1 span {
  color: #0d89d5;
}

h2 {
  margin: 0;
  font-family: "Titillium Web", "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 1.2962962963vw + 17.3333333333px, 36px);
  color: #162243;
  line-height: 1.2;
}

h3 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(18px, 0.7407407407vw + 15.3333333333px, 26px);
  color: #162243;
  line-height: 1.2;
}

/*--------------------------------------------------------------
# Paragraphs
--------------------------------------------------------------*/
:where(p) {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  :where(p) {
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  p {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
p:empty {
  margin-block: 0;
}
p:last-child {
  margin-bottom: 0;
}
p:first-child {
  margin-top: 0;
}

.note {
  font-weight: 500;
  font-size: clamp(18px, 0.5555555556vw + 16px, 24px);
}

.text-light {
  color: rgba(22, 34, 67, 0.7);
  font-size: 18px;
  line-height: 1.35;
}
.text-light p {
  margin: 0;
}
.text-light p + p {
  margin-top: 24px;
}
.l-dark-bg .text-light, .popup--city .text-light {
  color: rgba(243, 243, 243, 0.68);
}
.text-light h2,
.text-light h3,
.text-light h3 {
  color: initial;
}

.content h2 {
  margin-bottom: 20px;
  font-size: clamp(18px, 1.2962962963vw + 13.3333333333px, 32px);
}
@media (max-width: 991px) {
  .content h2 {
    margin-bottom: 10px;
  }
}
.content h2:not(:first-child) {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .content h2:not(:first-child) {
    margin-top: 28px;
  }
}
.content ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.content ol {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.content figure {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.content figure img {
  display: block;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 28px;
  background-color: #b5dfff;
}
.content figcaption {
  padding-left: 12px;
  border-left: 2px solid #ed1c24;
  color: rgba(22, 34, 67, 0.7);
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
:where(a) {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}

/*--------------------------------------------------------------
# Images
--------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

.media {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .media {
    border-radius: 6px;
  }
}
.media img,
.media picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.media--contain img {
  -o-object-fit: contain;
     object-fit: contain;
}
.media--fixed {
  flex: 0 0 auto;
}

.icon {
  flex-shrink: 0;
}

.decor {
  position: absolute;
  z-index: -1;
  -webkit-mask-image: url("../images/global/decor.svg");
  mask-image: url("../images/global/decor.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-mode: alpha;
  pointer-events: none;
}
@media (max-width: 991px) {
  .decor {
    display: none;
  }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 0;
  border-radius: 10px;
  font-size: clamp(14px, 0.1851851852vw + 13.3333333333px, 16px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }
}
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.btn__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.btn__label {
  position: relative;
  z-index: 1;
}
.btn--primary, .btn--blue {
  isolation: isolate;
  overflow: hidden;
  color: var(--btn-color);
  background-color: var(--btn-bg);
  border: 2px solid var(--btn-border);
  box-shadow: var(--btn-shadow);
}
.btn--primary::before, .btn--blue::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block: 0;
  inset-inline-start: -60%;
  width: 45%;
  background: linear-gradient(90deg, transparent, var(--btn-shine), transparent);
  transform: translateX(0) skewX(-20deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover, .btn--blue:hover {
    transform: translateY(-3px);
    background-color: var(--btn-bg-hover);
    border-color: var(--btn-border-hover);
    box-shadow: var(--btn-shadow-hover);
  }
  .btn--primary:hover::before, .btn--blue:hover::before {
    transform: translateX(450%) skewX(-20deg);
  }
}
.btn--primary:active, .btn--blue:active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--btn-shadow-active);
}
.btn--primary:focus-visible, .btn--blue:focus-visible {
  outline: 3px solid var(--btn-focus);
  outline-offset: 4px;
}
.btn--primary {
  --btn-color: #f3f3f3;
  --btn-bg: #ed1c24;
  --btn-border: #f1545a;
  --btn-bg-hover: #d9141b;
  --btn-border-hover: #ed1c24;
  --btn-shine: rgba(255, 255, 255, 0.32);
  --btn-focus: rgba(237, 28, 36, 0.28);
  --btn-shadow: 0 8px 24px rgba(237, 28, 36, 0.24);
  --btn-shadow-hover:
    0 12px 32px rgba(237, 28, 36, 0.34), 0 0 18px rgba(237, 28, 36, 0.18);
  --btn-shadow-active: 0 5px 16px rgba(237, 28, 36, 0.25);
}
.btn--blue {
  min-height: 56px;
  padding: 16px 24px 18px;
  font-weight: 700;
  text-decoration: none;
  --btn-color: #f3f3f3;
  --btn-bg: #2e4aa2;
  --btn-border: #4966bd;
  --btn-bg-hover: #263f91;
  --btn-border-hover: #5d78d0;
  --btn-shine: rgba(255, 255, 255, 0.3);
  --btn-focus: rgba(73, 102, 189, 0.32);
  --btn-shadow: 0 8px 24px rgba(46, 74, 162, 0.28);
  --btn-shadow-hover:
    0 12px 32px rgba(46, 74, 162, 0.4), 0 0 18px rgba(73, 102, 189, 0.22);
  --btn-shadow-active: 0 5px 16px rgba(46, 74, 162, 0.28);
}
@media (max-width: 991px) {
  .btn--mob-icon {
    padding: 0;
    width: 48px;
    height: 48px;
  }
}
.btn--mob-icon .btn__icon {
  width: 28px;
  height: 28px;
  color: #f3f3f3;
}
@media (min-width: 992px) {
  .btn--mob-icon .btn__icon {
    display: none;
  }
}
@media (max-width: 991px) {
  .btn--mob-icon .btn__label {
    display: none;
  }
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 991px) {
  .form {
    gap: 10px;
  }
}
.form__row {
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .form__row {
    flex-direction: column;
    gap: 10px;
  }
}
.form--dark .form__row {
  gap: 10px;
}
.form__row > * {
  width: calc(50% - 7px);
}
@media (max-width: 991px) {
  .form__row > * {
    width: 100%;
  }
}
.form__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__grid {
  display: grid;
  gap: 20px;
}
.form__grid--col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form__grid--col-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 991px) {
  .form__grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 650px) {
  .form__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.form__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .form__actions {
    flex-direction: column;
    gap: 16px;
  }
}
.form__actions .form__button {
  flex-shrink: 0;
}
.form__actions .form__checkbox {
  max-width: 310px;
}
.form__actions--column {
  flex-direction: column;
  align-items: stretch;
}
.form__actions--column .form__checkbox {
  max-width: none;
}
.form__group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.form__field {
  position: relative;
  display: flex;
  align-items: stretch;
  transition: 0.3s ease;
}
.form__field--textarea {
  flex-grow: 1;
}
.form__field--textarea .form__control {
  padding: 16px 20px;
}
.form__field--select svg {
  display: none;
}
.form__field--select .form__control {
  padding-right: 48px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAxNiAxMCI+PHBhdGggc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Im0uNzA3LjcwNyA3IDcgNy03Ii8+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px 10px;
}
.form__control {
  flex-grow: 1;
  padding: 15px 20px;
  max-width: 100%;
  color: #0a0a0a;
  font-size: 16px;
  text-transform: uppercase;
  background-color: #f3f3f3;
  border: 1px solid rgba(22, 34, 67, 0.12);
  border-radius: 10px;
}
.form__field--textarea .form__control {
  resize: none;
}
.form--dark .form__control {
  color: #f3f3f3;
  background-color: transparent;
  border: 1px solid #f8fcff;
}
.form__control::-moz-placeholder {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  color: rgba(22, 34, 67, 0.7);
  text-overflow: ellipsis;
  opacity: 0.6;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form__control::placeholder {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  color: rgba(22, 34, 67, 0.7);
  text-overflow: ellipsis;
  opacity: 0.6;
  transition: 0.3s ease;
}
.form--dark .form__control::-moz-placeholder {
  color: rgba(248, 252, 255, 0.8);
}
.form--dark .form__control::placeholder {
  color: rgba(248, 252, 255, 0.8);
}
.form__control:focus {
  outline: none;
  border-color: #ed1c24;
}
.form__control:focus::-moz-placeholder {
  opacity: 0;
}
.form__control:focus::placeholder {
  opacity: 0;
}
.form__control:-webkit-autofill, .form__control:-webkit-autofill:hover, .form__control:-webkit-autofill:focus, .form__control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #d4d0d0 inset;
  -webkit-text-fill-color: #000;
  border-radius: 10px;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}
.form__control .form--dark .form__control:-webkit-autofill,
.form__control .form--dark .form__control:-webkit-autofill:hover,
.form__control .form--dark .form__control:-webkit-autofill:focus,
.form__control .form--dark .form__control:-webkit-autofill:active {
  -webkit-text-fill-color: #0a0a0a;
  -webkit-box-shadow: 0 0 0 1000px rgb(10, 10, 10) inset;
}
.form__button {
  width: 250px;
  max-width: 100%;
}
@media (max-width: 650px) {
  .form__button {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.checkbox {
  --size: 26px;
  --size-2: 12px;
  --gap: 12px;
}
.checkbox__label {
  display: grid;
  grid-template-columns: var(--size) auto;
  align-items: center;
  gap: var(--gap);
  cursor: pointer;
}
.checkbox--btn .checkbox__label {
  display: flex;
}
.checkbox__control {
  display: grid;
  place-content: center;
  margin-top: 2px;
  width: var(--size);
  height: var(--size);
  background-color: #ffffff;
  border: 0;
  border-radius: 50%;
  transform: translateY(-0.075em);
  transition: 0.3s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.checkbox--light .checkbox__control {
  border: 1px solid #162243;
}
.checkbox--square .checkbox__control {
  border-radius: 6px;
  background-color: transparent;
  border: 1px solid #fff;
}
.checkbox--square-dark .checkbox__control {
  border-radius: 6px;
  background-color: transparent;
  border: 1px solid #162243;
}
.form--outline .checkbox__control {
  border-color: #f3f3f3;
}
.form--dark .checkbox__control {
  border-color: #f3f3f3;
}
.checkbox__control:before {
  content: "";
  width: var(--size);
  height: var(--size);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxMiIgZmlsbD0ibm9uZSI+PGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj48cGF0aCBmaWxsPSIjMWUyYTNkIiBkPSJNMTQuODMgMGMuMjUuMDguMTkuMjIyLjA0LjM4My0uNTkzLjYzNS0xLjQ4MiAxLjI4My0yLjE0MyAxLjg4NC0yLjY5MiAyLjQ1MS00Ljk5OSA0LjkwNC03LjAxMyA4LjA2OS0uMjk4LjQ2OS0uNjA4IDEuMTE1LS45MTcgMS41MzYtLjA2OS4wOTQtLjE1Ni4xODQtLjI1OC4wODVMLjAwNyA2LjU1NGMtLjA0LS4xNDMuMDk0LS4yNDMuMTgtLjMzM2EzMiAzMiAwIDAgMSAyLjE3Ni0yLjA1M2MuMTUyLS4xMy4yNDUtLjI2LjM5Ny0uMDMybDEuNzMgMi44MTVDNy41MzggNC4wMjMgMTAuOTkgMS40ODggMTQuODMgMCIvPjwvZz48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0wIDBoMTV2MTJIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center;
  background-size: var(--size-2);
  transform: scale(0.6);
  transform-origin: center;
  opacity: 0;
  transition: transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 120ms ease;
}
.checkbox--square-dark .checkbox__control:before, .checkbox--light .checkbox__control:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxMiIgZmlsbD0ibm9uZSI+PGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTQuODMgMGMuMjUuMDguMTkuMjIyLjA0LjM4My0uNTkzLjYzNS0xLjQ4MiAxLjI4My0yLjE0MyAxLjg4NC0yLjY5MiAyLjQ1MS00Ljk5OSA0LjkwNC03LjAxMyA4LjA2OS0uMjk4LjQ2OS0uNjA4IDEuMTE1LS45MTcgMS41MzYtLjA2OS4wOTQtLjE1Ni4xODQtLjI1OC4wODVMLjAwNyA2LjU1NGMtLjA0LS4xNDMuMDk0LS4yNDMuMTgtLjMzM2EzMiAzMiAwIDAgMSAyLjE3Ni0yLjA1M2MuMTUyLS4xMy4yNDUtLjI2LjM5Ny0uMDMybDEuNzMgMi44MTVDNy41MzggNC4wMjMgMTAuOTkgMS40ODggMTQuODMgMCIvPjwvZz48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0wIDBoMTV2MTJIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=");
}
.checkbox--light .checkbox__control:checked {
  background-color: #ed1c24;
}
.checkbox--square .checkbox__control:checked {
  background-color: #ffffff;
}
.checkbox--square-dark .checkbox__control:checked {
  background-color: #162243;
}
.checkbox__control:checked:before {
  transform: scale(1);
  opacity: 1;
}
.checkbox__text {
  align-self: center;
  font-size: 16px;
  color: rgba(22, 34, 67, 0.7);
}
@media (max-width: 991px) {
  .checkbox__text {
    font-size: 15px;
  }
}
.form--dark .checkbox__text {
  color: rgba(248, 252, 255, 0.8);
}
.checkbox__text a {
  text-decoration: underline;
}
.checkbox__text a:hover {
  text-decoration: none;
}

.radio-button__label {
  display: grid;
  grid-template-columns: 18px auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.radio-button__control {
  display: grid;
  place-content: center;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border: 0;
  border-radius: 4px;
  transform: translateY(-0.075em);
  transition: 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.radio-button__control:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  transform: scale(0.6);
  transform-origin: center;
  opacity: 0;
  transition: transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 120ms ease;
}
.radio-button__control:checked:before {
  background-color: #ed1c24;
  transform: scale(1);
  opacity: 1;
}
.radio-button__text {
  align-self: center;
  font-size: clamp(14px, 0.1851851852vw + 13.3333333333px, 16px);
  opacity: 0.6;
}

/* ## CF7 */
.form .wpcf7-list-item-label,
.form .wpcf7-list-item,
.form .wpcf7-form-control-wrap,
.wpcf7-acceptance {
  display: contents;
}

.wpcf7-not-valid-tip {
  position: absolute;
  top: -17px;
  left: 15px;
  font-size: 13px;
}

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.wpcf7-response-output {
  display: none;
}

.form p {
  margin: 0;
}

.form .wpcf7-submit:disabled {
  filter: grayscale(0.4);
}

/* ## Social */
.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.socials__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: #ffffff;
  border-radius: 50%;
}
.socials__item img {
  width: auto;
  height: auto;
  max-width: 24px;
  max-height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* ## Tabs */
.tabs__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .tabs__list {
    gap: 12px;
    margin-bottom: 16px;
  }
}
.tabs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  color: #2e4aa2;
  font-size: clamp(10px, 0.5555555556vw + 8px, 16px);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #f3f3f3;
  border: 1px solid #d8dade;
  border-radius: 10px;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 650px) {
  .tabs__button {
    padding: 10px;
    border-radius: 6px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tabs__button:hover {
    color: #f3f3f3;
    background-color: #ed1c24;
    border-color: #f1545a;
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.24);
  }
}
.tabs__button._active {
  color: #f3f3f3;
  background-color: #ed1c24;
  border-color: #f1545a;
  box-shadow: 0 8px 24px rgba(237, 28, 36, 0.24);
}
.tabs__panel {
  display: none;
}
.tabs__panel._active {
  display: block;
}

/* ## Spoller */
.mob-spoller--white .spoller-toggle {
  color: #fff;
}

.spoller-toggle {
  display: inline-block;
  color: #ed1c24;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .spoller-toggle:hover {
    text-decoration: underline;
  }
}

.spoller-toggle:focus,
.spoller-toggle:active {
  outline: none;
}

.spoller__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: max-height 0.35s ease;
}

.spoller__content > p {
  margin: 0;
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/
.swiper {
  width: 100%;
}
.swiper-slide {
  position: relative;
  height: auto;
}
@media (max-width: 991px) {
  .swiper-nav {
    display: none;
  }
}
.swiper-nav--centered {
  --swiper-buttons-position: 0;
}
.swiper-nav--centered .swiper-nav__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.swiper-nav--centered .swiper-nav__button--prev {
  left: var(--swiper-buttons-position);
}
.swiper-nav--centered .swiper-nav__button--next {
  right: var(--swiper-buttons-position);
}
.swiper-nav--top {
  --swiper-buttons-position: 0;
}
@media (max-width: 991px) {
  .swiper-nav--top {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
}
.swiper-nav--top .swiper-nav__button {
  position: absolute;
  top: -60px;
  z-index: 5;
}
@media (max-width: 991px) {
  .swiper-nav--top .swiper-nav__button {
    position: initial;
    top: unset;
    transform: unset;
  }
}
.swiper-nav--top .swiper-nav__button--prev {
  left: var(--swiper-buttons-position);
}
.swiper-nav--top .swiper-nav__button--next {
  right: var(--swiper-buttons-position);
}
.swiper-nav--bottom {
  --swiper-buttons-position: 20px;
}
@media (max-width: 991px) {
  .swiper-nav--bottom {
    --swiper-buttons-position: 10px;
  }
}
.swiper-nav--bottom .swiper-nav__button {
  position: absolute;
  bottom: 20px;
  z-index: 5;
}
@media (max-width: 991px) {
  .swiper-nav--bottom .swiper-nav__button {
    bottom: 10px;
    width: 28px;
    height: 28px;
  }
  .swiper-nav--bottom .swiper-nav__button::before {
    width: 14px;
    height: 14px;
  }
}
.swiper-nav--bottom .swiper-nav__button--prev {
  left: var(--swiper-buttons-position);
}
.swiper-nav--bottom .swiper-nav__button--next {
  right: var(--swiper-buttons-position);
}
.swiper-nav__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 48px;
  height: 48px;
  height: 48px;
  color: #2e4aa2;
  background: #f3f3f3;
  border: 1px solid #d8dade;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .swiper-nav__button:hover {
    color: #ed1c24;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.14);
  }
}
.swiper-nav__button::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.swiper-nav__button--prev::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%232e4aa2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m16 20-8-8 8-8'/%3E%3C/svg%3E");
}
.swiper-nav__button--next::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%232e4aa2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m8 20 8-8-8-8'/%3E%3C/svg%3E");
}
@media (min-width: 1200px) {
  .swiper-nav__button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
}
.swiper-nav__button svg {
  width: 24px;
  height: 24px;
}
.swiper-pagination {
  --swiper-pagination-color: #223343;
  --swiper-pagination-bullet-inactive-color: #6fa5d8;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 2.5px;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/*--------------------------------------------------------------
# Popup
--------------------------------------------------------------*/
.popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  contain: layout paint;
}
.popup._active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popup._active .popup__content {
  transform: translateY(0);
}
.popup__body {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.35);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.popup__content {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 30px;
  width: 680px;
  max-width: 100%;
  background: #f3f3f3;
  overflow: hidden;
  transform: translateY(24px);
  transition: transform 0.4s ease;
}
@media (max-width: 991px) {
  .popup__content {
    gap: 24px;
    padding: 24px;
  }
}
@media (max-width: 650px) {
  .popup__content {
    padding: 15px;
  }
}
.popup__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 991px) {
  .popup__main {
    gap: 24px;
  }
}
.popup__content-col {
  gap: 36px;
}
.popup__header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 650px) {
  .popup__header {
    gap: 8px;
  }
}
.popup__title {
  padding-right: 30px;
  color: #162243;
  font-family: "Titillium Web", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(22px, 0.5555555556vw + 20px, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04;
}
.popup .form__button {
  width: 100%;
}
.popup__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 24px;
  height: 24px;
  color: rgba(0, 31, 62, 0.3);
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .popup__close:hover {
    color: #162243;
  }
}
@media (max-width: 991px) {
  .popup__close {
    top: 16px;
    right: 16px;
  }
  .popup__close svg {
    width: 20px;
    height: 20px;
  }
}
.popup__submit-wrap {
  position: relative;
}
.popup__submit-wrap .btn {
  width: 100%;
}
.popup--status .popup__content {
  width: 500px;
  min-height: 269px;
  padding: 30px;
  background: #f3f3f3;
  border: 0;
  border-radius: 10px 10px 110px 10px;
}
.popup--status .popup__close {
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  color: rgba(46, 74, 162, 0.28);
}
.popup--status .popup__close svg {
  width: 28px;
  height: 28px;
}
@media (hover: hover) and (pointer: fine) {
  .popup--status .popup__close:hover {
    color: #ed1c24;
  }
}
.popup--rzd .popup__content {
  gap: 40px;
  width: 800px;
  border-radius: 10px 10px 110px 10px;
}
@media (max-width: 991px) {
  .popup--rzd .popup__content {
    gap: 24px;
    border-radius: 10px 10px 80px 10px;
  }
}
.popup--rzd .popup__main {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 350px);
  align-items: stretch;
  gap: 24px 30px;
}
@media (max-width: 991px) {
  .popup--rzd .popup__main {
    grid-template-columns: minmax(0, 1fr);
  }
}
.popup--rzd .popup__submit {
  width: 100%;
  min-height: 56px;
}
.popup--rzd .popup__media {
  overflow: hidden;
  width: 350px;
  max-width: 100%;
  aspect-ratio: 350/348;
  border-radius: 10px 10px 80px 10px;
}
@media (max-width: 991px) {
  .popup--rzd .popup__media {
    aspect-ratio: 310/240;
  }
}
.popup--rzd .popup__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popup--city .popup__content {
  color: rgba(243, 243, 243, 0.8);
  background: #162243;
}
.popup--city .popup__close {
  color: rgba(243, 243, 243, 0.72);
}
@media (hover: hover) and (pointer: fine) {
  .popup--city .popup__close:hover {
    color: #f3f3f3;
  }
}
.popup--city .popup__title {
  color: #f3f3f3;
}
.popup--city .form__control {
  color: #f3f3f3;
  border-color: rgba(243, 243, 243, 0.22);
}
.popup--city .form__control::-moz-placeholder {
  color: rgba(243, 243, 243, 0.72);
}
.popup--city .form__control::placeholder {
  color: rgba(243, 243, 243, 0.72);
}
.popup--city .form__field--select {
  color: #f3f3f3;
}
.popup--city .popup__checkbox .checkbox__control {
  border-color: #f3f3f3;
}
.popup--city .popup__checkbox .checkbox__text {
  color: rgba(243, 243, 243, 0.72);
}
.popup--service .popup__content {
  width: 800px;
  border-radius: 10px;
}

.popup-status {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.popup-status__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  color: #ed1c24;
  background-color: #1f2e58;
  border-radius: 10px;
}
.popup-status__icon svg {
  width: 60px;
  height: 60px;
}
.popup--success .popup-status__icon {
  color: #44cc2f;
}
.popup--error .popup-status__icon {
  color: #ed1c24;
}
.popup-status__title {
  color: #162243;
  font-family: "Titillium Web", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(24px, 1.1111111111vw + 20px, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04;
}
.popup-status__text {
  max-width: 390px;
}

.popup-service {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .popup-service {
    gap: 24px;
  }
}
@media (max-width: 650px) {
  .popup-service {
    gap: 15px;
  }
}
.popup-service__title {
  color: #162243;
  font-family: "Titillium Web", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(22px, 0.5555555556vw + 20px, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04;
}
.popup-service__slider-wrap {
  position: relative;
  margin-right: -30px;
}
.popup-service__slider {
  overflow: hidden;
}
.popup-service__slide {
  overflow: hidden;
  width: 300px;
  aspect-ratio: 300/240;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .popup-service__slide {
    width: 140px;
    aspect-ratio: 140/120;
  }
}
.popup-service__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popup-service__navigation .swiper-nav__button--prev {
  left: -20px;
}
.popup-service__navigation .swiper-nav__button--next {
  right: 20px;
}
.popup-service__text {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(22, 34, 67, 0.12);
}
@media (max-width: 991px) {
  .popup-service__text {
    padding-bottom: 24px;
  }
}
@media (max-width: 650px) {
  .popup-service__form {
    margin-top: 9px;
  }
}
.popup-service__submit-wrap {
  position: relative;
}
.popup-service__submit-wrap .btn {
  width: 100%;
}
.popup-service__form-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 370px);
  gap: 30px;
  align-items: center;
}
@media (max-width: 650px) {
  .popup-service__form-footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background-color: #f3f3f3;
  border-bottom: 1px solid #d8dade;
  transition: padding-block 0.3s ease, box-shadow 0.3s ease;
}
.header._active {
  box-shadow: 0 12px 32px rgba(22, 34, 67, 0.08);
}
.header__container {
  padding-block: 20px;
}
@media (max-width: 991px) {
  .header__container {
    padding-block: 15px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: clamp(16px, 2.5vw + 7px, 43px);
}
.header__logo {
  display: flex;
  flex: 0 0 auto;
  width: 205px;
}
@media (max-width: 991px) {
  .header__logo {
    width: 180px;
  }
}
.header .logo__image {
  display: block;
  width: 100%;
  height: auto;
}
.header__nav {
  flex: 1 1 auto;
}
@media (max-width: 1280px) {
  .header__nav {
    display: none;
  }
}
.header__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__link {
  display: inline-flex;
  align-items: center;
  color: #162243;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__link:hover {
    color: #ed1c24;
  }
}
.header__btn {
  flex: 0 0 auto;
}
@media (max-width: 1280px) {
  .header__btn {
    margin-left: auto;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 1280px) {
  .header__burger {
    display: flex;
  }
}

.burger {
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  gap: 5px;
  padding: 0;
  color: #2e4aa2;
  background-color: transparent;
  border: 1px solid #d8dade;
  border-radius: 10px;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger._active {
  color: #ed1c24;
  border-color: rgba(237, 28, 36, 0.3);
  background-color: rgba(237, 28, 36, 0.06);
}
.burger._active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger._active span:nth-child(2) {
  opacity: 0;
}
.burger._active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ## Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 40;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.mobile-menu._active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  margin-left: auto;
  padding: 15px calc(30px + env(safe-area-inset-right)) calc(30px + env(safe-area-inset-bottom)) calc(30px + env(safe-area-inset-left));
  background: linear-gradient(#d8dade 0 0) 15px 0/1px 100% no-repeat, linear-gradient(#d8dade 0 0) calc(100% - 15px) 0/1px 100% no-repeat, linear-gradient(#d8dade 0 0) 0 calc(100% - 15px)/100% 1px no-repeat, #ffffff;
  box-shadow: -16px 0 40px rgba(22, 34, 67, 0.14);
  overflow-y: auto;
}
@media (max-width: 650px) {
  .mobile-menu__panel {
    width: 100%;
  }
}
.mobile-menu__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 15px;
}
.mobile-menu__header:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  z-index: 0;
  width: calc(100% + 60px);
  height: 1px;
  background-color: #d8dade;
}
.mobile-menu__logo {
  display: flex;
  flex: 0 0 auto;
  margin-right: auto;
  width: 180px;
}
.mobile-menu__logo img {
  width: 100%;
  height: auto;
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #ed1c24;
  background-color: transparent;
  border: 1px solid #d8dade;
  border-radius: 10px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .mobile-menu__close:hover {
    color: #ed1c24;
    border-color: rgba(237, 28, 36, 0.3);
  }
}
.mobile-menu__nav {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  padding-block: 10px;
  width: 100%;
  color: #162243;
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.mobile-menu__btn {
  margin-top: auto;
  width: 100%;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background-color: rgba(22, 34, 67, 0.38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay._active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 50px;
  width: 100%;
  gap: clamp(20px, 2.5vw, 43px);
}
@media (max-width: 991px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-block: 30px;
  }
}
.footer__top:after {
  content: "";
  position: absolute;
  bottom: 0;
  margin-left: -40px;
  z-index: -1;
  width: calc(100% + 80px);
  height: 1px;
  background-color: #d8dade;
}
@media (max-width: 1366px) {
  .footer__top:after {
    margin-left: -30px;
    width: calc(100% + 60px);
  }
}
@media (max-width: 1366px) {
  .footer__top:after {
    margin-left: -30px;
    width: calc(100% + 60px);
  }
}
.footer__logo {
  display: flex;
  width: 205px;
}
@media (max-width: 1500px) and (min-width: 992px) {
  .footer__logo {
    width: 185px;
  }
}
.footer__logo .logo__image {
  display: block;
  width: 100%;
  height: auto;
}
.footer__nav {
  min-width: 0;
}
.footer__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1280px) {
  .footer__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 650px) {
  .footer__item {
    width: calc(50% - 10px);
  }
}
.footer__link, .footer__doc-link, .footer__developer {
  color: #162243;
  text-decoration-color: currentColor;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__link:hover, .footer__doc-link:hover, .footer__developer:hover {
    color: #ed1c24;
  }
}
.footer__link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}
.footer__btn {
  justify-self: end;
}
@media (max-width: 650px) {
  .footer__btn {
    justify-self: stretch;
    width: 100%;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 50px;
  width: 100%;
  gap: clamp(20px, 2.5vw, 43px);
}
@media (max-width: 991px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 30px;
  }
}
.footer__copyright, .footer__doc-link, .footer__developer {
  font-size: 16px;
  line-height: 1.4;
}
.footer__copyright {
  color: #162243;
}
.footer__docs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
}
@media (max-width: 1200px) {
  .footer__docs {
    justify-content: flex-start;
  }
}
@media (max-width: 650px) {
  .footer__docs {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.footer__doc-link {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}
.footer__developer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .footer__developer {
    justify-self: start;
  }
}
.footer__developer-logo {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 34px;
  background: url("../images/global/ds.svg") center/contain no-repeat;
}