/* stylelint-disable */
:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

address {
  font-style: normal;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

a {
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
  touch-action: manipulation;
}

label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
  margin-bottom: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
}

button:focus {
  outline: none;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

input:focus {
  outline: none;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
     -moz-appearance: listbox;
          appearance: listbox;
}

textarea {
  resize: none;
  overflow: auto;
}

[hidden] {
  display: none !important;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

figure {
  margin: 0;
}

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

table {
  width: 100%;
}

:root {
  --scroll-width: 0px;
  --header-height: 3rem;
  --container-width: 67rem;
  --container-indent-x: 1rem;
  --border-radius-base: 0.8rem;
  --border-radius-sm: 0.2rem;
  --border-base: 0.05rem solid var(--color-stroke);
}
@media only screen and (min-width: 1025px) {
  :root {
    --header-height: 4rem;
  }
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  height: 100%;
  font-size: 125%;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font: var(--fs-base)/var(--lh-base) var(--ff-base);
  font-variation-settings: "wdth" 100;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  color: var(--color-primary-black);
  text-rendering: optimizelegibility;
  background-color: var(--color-page-bg);
}

body.preload * {
  transition: 0s !important;
  animation-duration: 0s !important;
}

::-moz-selection {
  color: var(--color-white);
  background-color: var(--color-blue);
}

::selection {
  color: var(--color-white);
  background-color: var(--color-blue);
}

main {
  flex: 1;
}

a {
  color: var(--color-link);
  background: transparent;
  transition: color 0.2s;
}
@media (hover: hover) {
  a:hover {
    text-decoration: none;
  }
}
@media (hover: none) {
  a:active {
    text-decoration: none;
  }
}

.overflow {
  overflow-y: hidden;
  height: 100%;
  margin-right: var(--scroll-width);
}

.page {
  padding-top: var(--header-height);
}

.truncate {
  display: grid;
  row-gap: 1rem;
}
.truncate__inner {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.scrollto {
  scroll-margin-top: var(--header-height);
}

@keyframes shaking {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotate(2deg);
  }
  50% {
    transform: translate(0, 0) rotate(0deg);
  }
  75% {
    transform: translate(-2px, 2px) rotate(-2deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/**
 * Swiper 12.1.2
 * 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: February 18, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

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

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

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

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

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

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

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

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

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

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}

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

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

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

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

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

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

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

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

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

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

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

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

:root {
  --swiper-pagination-height: 1.75rem;
}
@media only screen and (min-width: 1025px) {
  :root {
    --swiper-pagination-height: 2rem;
  }
}

.swiper {
  --swiper-scrollbar-drag-bg-color: var(--color-blue);
  --swiper-scrollbar-sides-offset: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.swiper-wrapper {
  cursor: grab;
}

.swiper-no-swiping .swiper-wrapper {
  cursor: auto;
}

.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-size: 3rem;
  --swiper-navigation-sides-offset: 0;
  --swiper-icon-color: var(--color-black);
  --swiper-icon-bg-color: var(--color-white);
  --swiper-icon-bd-color: var(--color-gray-dark);
  --swiper-icon-bg-disabled: transparent;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  background-color: var(--swiper-icon-bg-color);
  border: 0.05rem solid var(--swiper-icon-bd-color);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 0.45rem;
  height: 0.75rem;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNOC45Mzc1IDE1LjM4NEwwLjg1OTM2NiA4LjY1MjI1QzAuMzc5NjEyIDguMjUyNDYgMC4zNzk2MTIgNy41MTU2MSAwLjg1OTM2NiA3LjExNTgxTDguOTM3NSAwLjM4NDAzMyIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4=");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNOC45Mzc1IDE1LjM4NEwwLjg1OTM2NiA4LjY1MjI1QzAuMzc5NjEyIDguMjUyNDYgMC4zNzk2MTIgNy41MTU2MSAwLjg1OTM2NiA3LjExNTgxTDguOTM3NSAwLjM4NDAzMyIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4=");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--swiper-icon-color);
}
@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    --swiper-icon-bd-color: var(--color-black);
  }
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background: var(--swiper-icon-bg-disabled);
}

.swiper-navigation-icon {
  display: none;
}

.swiper-button-next::after {
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMC4zMjAzMTIgMTUuMzg0TDguMzk4NDUgOC42NTIyNUM4Ljg3ODIgOC4yNTI0NiA4Ljg3ODIgNy41MTU2MSA4LjM5ODQ1IDcuMTE1ODFMMC4zMjAzMTIgMC4zODQwMzMiIHN0cm9rZT0iYmxhY2siLz4KPC9zdmc+");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMC4zMjAzMTIgMTUuMzg0TDguMzk4NDUgOC42NTIyNUM4Ljg3ODIgOC4yNTI0NiA4Ljg3ODIgNy41MTU2MSA4LjM5ODQ1IDcuMTE1ODFMMC4zMjAzMTIgMC4zODQwMzMiIHN0cm9rZT0iYmxhY2siLz4KPC9zdmc+");
}

.swiper-scrollbar-box {
  margin-top: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .swiper-scrollbar-box {
    margin-bottom: 1.5rem;
  }
}

.swiper-horizontal .swiper-scrollbar-horizontal {
  --swiper-scrollbar-size: 0.1rem;
  position: static;
  cursor: grab;
}

.swiper-scrollbar-drag {
  top: -0.25rem;
  height: 0.6rem;
  background-color: var(--swiper-scrollbar-drag-bg-color);
  border-radius: 50%;
}
@media only screen and (min-width: 1025px) {
  .swiper-scrollbar-drag {
    top: -0.5rem;
    height: 1rem;
  }
}
.swiper-scrollbar-drag::before {
  content: "";
  position: absolute;
  top: calc(50% + 0.05rem);
  right: 0;
  width: 99999px;
  height: var(--swiper-scrollbar-size);
  background: var(--swiper-scrollbar-drag-bg-color);
  transform: translateY(-50%);
}

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

.swiper-pagination {
  --swiper-pagination-bullet-width: 0.5rem;
  --swiper-pagination-bullet-height: 0.5rem;
  --swiper-pagination-bullet-horizontal-gap: 0.35rem;
  --swiper-pagination-bullet-inactive-color: var(--color-gray);
  --swiper-pagination-bullet-inactive-opacity: 1;
  position: static;
  display: flex;
  justify-content: center;
  padding-top: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .swiper-pagination {
    padding-top: 1.5rem;
  }
}

.swiper-pagination-bullet {
  transition: background-color 0.3s;
}

.swiper-pagination-bullet-active {
  --swiper-pagination-color: var(--color-black);
}

.heading--h7, .heading--h4, .heading--h3, .heading--h2, .heading--h1, .heading {
  --h-w: 600;
  --h-fs: 1.5rem;
  --h-lh: 110%;
  --h-ls: normal;
  --h-mb: 0;
  --h-c: var(--color-black);
  margin-bottom: var(--h-mb);
  font-family: var(--ff-base), sans-serif;
  font-size: var(--h-fs);
  font-weight: var(--h-w);
  line-height: var(--h-lh);
  color: var(--h-c);
  letter-spacing: var(--h-ls);
}
.heading--h7:not(.accordion-item__heading) span, .heading--h4:not(.accordion-item__heading) span, .heading--h3:not(.accordion-item__heading) span, .heading--h2:not(.accordion-item__heading) span, .heading--h1:not(.accordion-item__heading) span, .heading:not(.accordion-item__heading) span {
  color: var(--color-blue);
}

.heading--h1 {
  --h-fs: 2rem;
}
@media only screen and (min-width: 1025px) {
  .heading--h1 {
    --h-fs: 4.5rem;
  }
}

.heading--h2 {
  --h-fs: 1.75rem;
}
@media only screen and (min-width: 1025px) {
  .heading--h2 {
    --h-fs: 2.25rem;
  }
}
@media only screen and (min-width: 1281px) {
  .heading--h2 {
    --h-fs: 3.5rem;
  }
}

.heading--h3 {
  --h-fs: 0.9rem;
  --h-lh: 120%;
}

.heading--h4 {
  --h-fs: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .heading--h4 {
    --h-fs: 1.75rem;
  }
}

.heading--h7 {
  --h-fs: 0.65rem;
}
@media only screen and (min-width: 1025px) {
  .heading--h7 {
    --h-fs: 0.75rem;
  }
}

.cookie__text, .paragraph--lg, .footer-nav__link, .header-nav__link, .paragraph--sm, .practice-slider__item-text, .breadcrumbs__link, .button, .paragraph {
  --p-ff: var(--ff-base);
  --p-fw: 400;
  --p-fs: 0.75rem;
  --p-lh: 170%;
  --p-c: var(--color-text);
  font-family: var(--p-ff), sans-serif;
  font-size: var(--p-fs);
  font-weight: var(--p-fw);
  line-height: var(--p-lh);
  color: var(--p-c);
}
@media only screen and (min-width: 1025px) {
  .cookie__text, .paragraph--lg, .footer-nav__link, .header-nav__link, .paragraph--sm, .practice-slider__item-text, .breadcrumbs__link, .button, .paragraph {
    --h-fs: 1rem;
  }
}

.practice-slider__item-text, .breadcrumbs__link, .button, .paragraph--sm {
  /* stylelint-disable order/order */
  --p-fs: 0.65rem;
}
@media only screen and (min-width: 1025px) {
  .practice-slider__item-text, .breadcrumbs__link, .button, .paragraph--sm {
    --h-fs: 0.75rem;
  }
}

.footer-nav__link, .header-nav__link, .paragraph--lg {
  /* stylelint-disable order/order */
  --p-fs: 1rem;
}
@media only screen and (min-width: 1025px) {
  .footer-nav__link, .header-nav__link, .paragraph--lg {
    --h-fs: 1.75rem;
  }
}

.icon {
  width: 1em;
  height: 1em;
  font-size: 1.2rem;
}

.lang-switcher {
  display: flex;
  gap: 1rem;
}
.lang-switcher__link {
  transition: color 0.3s;
  color: var(--color-black-50);
  font-size: 0.75rem;
}
.lang-switcher__link--active {
  color: var(--color-black);
}
@media (hover: hover) {
  .lang-switcher__link:hover:not(.lang-switcher__link--active) {
    color: var(--color-blue);
  }
}

.burger {
  --burger-width: 3rem;
  --burger-height: 3rem;
  --burger-padding: 0.6rem;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  width: var(--burger-width);
  height: var(--burger-height);
  padding: var(--burger-padding);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  transition: transform 0.2s;
}
.burger--active .burger__line {
  width: 1.4rem;
}
.burger--active .burger__line:nth-child(1) {
  transform: rotate(45deg) translate(0.1rem, 0.4rem);
}
.burger--active .burger__line:nth-child(2) {
  transform: rotate(-45deg) translate(0.1rem, -0.4rem);
}
.burger__line {
  will-change: transform, opacity, width;
  position: relative;
  width: 100%;
  height: 0.1rem;
  opacity: 1;
  background-color: var(--color-primary-white);
  border-radius: 0.2rem;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.burger:hover {
  cursor: pointer;
}

.button {
  --p-button-y: 0.9rem;
  --p-button-x: 1.75rem;
  --color-button: var(--color-primary-white);
  --color-button__hover: var(--color-primary-white);
  --bg-color-button: transparent;
  --bg-color-button__hover: var(--bg-color-button);
  --bd-color-button: var(--bg-color-button);
  --bd-color-button__hover: var(--bg-color-button);
  transition: all 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--p-button-y) var(--p-button-x);
  font-family: var(--ff-primary), sans-serif;
  font-weight: 400;
  color: var(--color-button);
  font-size: 0.65rem;
  line-height: normal;
  text-align: center;
  background: var(--bg-color-button);
  border: 0.05rem solid var(--bd-color-button);
  border-radius: 3rem;
}
@media (hover: hover) {
  .button:hover {
    color: var(--color-button__hover);
    background: var(--bg-color-button__hover);
    border-color: var(--bd-color-button__hover);
  }
}
@media only screen and (min-width: 1025px) {
  .button {
    font-size: 0.75rem;
  }
}
[disabled].button {
  pointer-events: none;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
/* stylelint-disable no-invalid-position-at-import-rule */
:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

/* stylelint-disable */
/* stylelint-disable */
.button--primary {
  --color-button: var(--color-white);
  --color-button__hover: var(--color-blue);
  --bg-color-button: var(--color-blue);
  --bg-color-button__hover: transparent;
  --bd-color-button: var(--bg-color-button);
  --bd-color-button__hover: var(--bg-color-button__hover);
  position: relative;
  overflow: hidden;
}
[disabled].button--primary {
  pointer-events: none;
  opacity: 0.7;
}

:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

/* stylelint-disable */
/* stylelint-disable */
.button--secondary {
  --color-button: var(--color-blue);
  --color-button__hover: var(--color-white);
  --bg-color-button: var(--color-white);
  --bg-color-button__hover: transparent;
  position: relative;
  overflow: hidden;
}
[disabled].button--secondary {
  pointer-events: none;
  opacity: 0.7;
}

:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

/* stylelint-disable */
/* stylelint-disable */
.button--ghost {
  --color-button: var(--color-blue);
  --bd-color-button: var(--color-blue);
  --color-button__hover: var(--color-white);
  --bg-color-button__hover: var(--color-blue);
  position: relative;
  overflow: hidden;
}
@media (hover: hover) {
  .button--ghost:hover::before {
    opacity: 1;
  }
}
.button--ghost:active::after {
  opacity: 1;
}
[disabled].button--ghost {
  pointer-events: none;
  opacity: 0.7;
}

:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

/* stylelint-disable */
/* stylelint-disable */
.button--ghost-light {
  --color-button: var(--color-white);
  --bd-color-button: var(--color-white);
  --bg-color-button__hover: var(--color-white);
  --color-button__hover: var(--color-blue);
  position: relative;
  overflow: hidden;
}
@media (hover: hover) {
  .button--ghost-light:hover::before {
    opacity: 1;
  }
}
.button--ghost-light:active::after {
  opacity: 1;
}
[disabled].button--ghost-light {
  pointer-events: none;
  opacity: 0.7;
}

/* stylelint-disable */
:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

.button--sm {
  --p-button-y: 0.5rem;
  --p-button-x: 1rem;
}

.form {
  --field-icon-indent: 1rem;
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}
@media only screen and (min-width: 1025px) {
  .form {
    grid-gap: 1.5rem;
  }
}
.form__field-group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}
@media only screen and (min-width: 1025px) {
  .form__field-group {
    grid-template-columns: 1fr 1fr;
  }
}
.form__label-box {
  display: flex;
  align-items: center;
}
@media (hover: hover) {
  .form__label-box:hover .form__checkbox-custom {
    border-color: var(--color-primary-red);
  }
}
@media (hover: none) {
  .form__label-box:active .form__checkbox-custom {
    border-color: var(--color-primary-red);
  }
}
.form__label-box .form__checkbox {
  margin-right: 0.5rem;
}
.form__label {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
@media (hover: hover) {
  .form__label:hover .form__label-text {
    opacity: 1;
  }
}
@media (hover: none) {
  .form__label:active .form__label-text {
    opacity: 1;
  }
}
.form__label-text {
  transition: opacity 0.3s;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.25rem;
  color: var(--color-black-50);
  font-size: 0.65rem;
  line-height: 170%;
}
@media only screen and (min-width: 1025px) {
  .form__label-text {
    font-size: 0.75rem;
  }
}
.form__label-text--required::after {
  content: "*";
  position: absolute;
  top: 0;
  left: calc(100% + 0.1rem);
  color: var(--color-primary-black);
}
.form__error-message-box--error {
  --field-border-color: var(--color-additional-red);
}
.form__error-message-box--error .form__label-text {
  color: var(--color-additional-red);
}
@media (hover: hover) {
  .form__error-message-box--error .form__field:hover {
    --field-border-color: var(--color-additional-red);
  }
}
@media (hover: none) {
  .form__error-message-box--error .form__field:active {
    --field-border-color: var(--color-additional-red);
  }
}
.form__error-message-box--error .form__field:focus {
  --field-border-color: var(--color-additional-red);
}
.form__error-message-box--error .form__error-icon {
  display: block;
}
.form__error-icon {
  position: absolute;
  top: calc(var(--field-indent-y) - 0.1rem);
  right: var(--field-indent-x);
  display: none;
}
.form__error-message {
  display: none;
  padding-top: 0.4rem;
  color: var(--color-additional-red);
  text-transform: uppercase;
}
.form__error-message--visible {
  display: block;
}
.form__control-text {
  display: block;
  padding-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.7;
}
@media only screen and (max-width: 1440px) {
  .form__control-text {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 1024px) {
  .form__control-text {
    font-size: 0.65rem;
  }
}
.form__control-text a {
  text-decoration: underline;
}
.form__submit {
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 576px) {
  .form__submit {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.form__radio-chips-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -0.6rem;
  padding-top: 0.4rem;
}
.form__radio-chip {
  display: flex;
  margin-right: 0.6rem;
  margin-bottom: 0.6rem;
}
.form__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
}
@media only screen and (max-width: 576px) {
  .form__footer {
    flex-direction: column;
    margin-top: 1rem;
  }
}
.form__note {
  color: var(--color-primary-blue);
}
@media only screen and (max-width: 576px) {
  .form__note {
    text-align: center;
  }
}
.form__loader {
  transition: opacity 0.3s;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue-70);
  opacity: 1;
}
.form__loader--disabled {
  opacity: 0;
  pointer-events: none;
}

:root {
  --field-height: 3rem;
  --field-indent-x: 1.25rem;
  --field-indent-y-top: 0.8rem;
  --field-indent-y-bottom: 0.8rem;
  --field-border-color: transparent;
  --field-bg-color: var(--color-white);
  --field-border-radius: 1.5rem;
}
@media only screen and (max-width: 1440px) {
  :root {
    --field-height: 2.8rem;
  }
}
@media only screen and (max-width: 576px) {
  :root {
    --field-height: 2.65rem;
  }
}

.form__field-box {
  position: relative;
}
.form__field {
  transition: all 0.3s;
  width: 100%;
  height: var(--field-height);
  padding: var(--field-indent-y-top) var(--field-indent-x) var(--field-indent-y-bottom);
  color: var(--color-black);
  background-color: var(--field-bg-color);
  border: 0.05rem solid var(--field-border-color);
  border-radius: var(--field-border-radius);
  overflow: hidden;
}
.form__field::-moz-placeholder {
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  line-height: 1.45rem;
}
.form__field::placeholder {
  transition: color 0.3s;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  line-height: 1.45rem;
}
.form__field:hover {
  border-color: var(--color-primary-light-blue);
}
.form__field:hover::-moz-placeholder {
  color: var(--color-primary-light-blue);
}
.form__field:hover::placeholder {
  color: var(--color-primary-light-blue);
}
.form__field:focus {
  border-color: var(--color-primary-light-blue);
}
.form__field--area {
  resize: none;
  --field-height: 12.5rem;
  overflow-y: auto;
}
@media only screen and (min-width: 1025px) {
  .form__field--area {
    --field-height: 11.5rem;
  }
}
.form__field--area::-webkit-scrollbar-track {
  margin: 0.25rem;
}

.form__control {
  display: inline-flex;
  margin-bottom: 0;
}
.form__control-label {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.form__control-label-text {
  padding-bottom: 0;
  color: var(--color-black);
}
.form__control-default {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form__control-default:checked + .form__control-custom::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0);
}
.form__control-custom {
  transition: all 0.3s;
  position: relative;
  display: flex;
}
.form__control-custom::before, .form__control-custom::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  display: block;
  opacity: 0;
}
.form__control-custom::before {
  width: 0.1rem;
  height: 0.1rem;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background-color: var(--color-blue);
  transform: translate(-50%, -50%) scale(2);
}
.form__control .form__checkbox-default:checked + .form__checkbox-custom::before {
  opacity: 0;
  transform: translate(-50%, -50%) scale(10);
}

@media (hover: hover) {
  .form__label:hover .form__checkbox-custom::before {
    opacity: 1;
  }
}

.form__checkbox {
  --checkbox-size: 1.5rem;
  --checkbox-marker-indent: 0.15rem;
  --checkbox-marker: calc(var(--checkbox-size) - var(--checkbox-marker-indent) * 2);
  position: relative;
}
.form__checkbox-default:checked ~ .form__checkbox-custom-checked {
  opacity: 1;
}
.form__checkbox-custom {
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  position: relative;
  background-color: var(--color-gray);
  border-radius: 50%;
}
.form__checkbox-custom::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 0.5rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxMCIgdmlld0JveD0iMCAwIDE1IDEwIiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMC42OTcyNjYgNi4wNDk1MkwzLjA2NDY5IDguMzU2MjRDMy44NDEzMyA5LjExMjk3IDUuMDc5NTIgOS4xMTI5NyA1Ljg1NjE1IDguMzU2MjVMMTMuNjk3MyAwLjcxNjE4NyIgc3Ryb2tlPSIjNDY4RkNEIiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+") center/cover no-repeat;
  transform: translate(-50%, -50%) rotate(-20deg);
}
.form__checkbox-custom-checked {
  transition: opacity 0.1s;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-primary-white);
  font-size: 1.2rem;
  opacity: 0;
}

.overlay {
  transition: opacity 0.3s;
  position: fixed;
  z-index: 1103;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: rgba(0, 62, 116, 0.7);
  opacity: 0;
  pointer-events: none;
}
@supports (height: 100dvh) {
  .overlay {
    height: 100dvh;
  }
}
@supports not (height: 100dvh) {
  .overlay {
    height: 100vh;
  }
}
.overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.section__content-inner {
  display: flex;
  flex-direction: column;
}
.section__content-inner .swiper {
  width: 100%;
}
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.section__controls {
  display: none;
  gap: 0.45rem;
}
@media only screen and (min-width: 1025px) {
  .section__controls {
    display: flex;
  }
}
.section__control {
  position: static;
  margin-top: 0;
}
.section__button-box {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .section__button-box {
    margin-top: 1.5rem;
  }
}

.cookie, .container {
  width: 100%;
  max-width: calc(var(--container-width) + var(--container-indent-x) * 2);
  margin: 0 auto;
  padding: 0 var(--container-indent-x);
}

.breadcrumbs {
  --breadcrumbs-indent: 1.4rem;
  --breadcrumbs-indent-total: calc(var(--header-height) + var(--breadcrumbs-indent) + 1rem);
  overflow-x: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 calc(var(--container-indent-x) * -1) 1.3rem;
  padding: 0 calc(var(--container-indent-x) * 1);
  white-space: nowrap;
}
.breadcrumbs::-webkit-scrollbar {
  display: none;
}
.breadcrumbs__item {
  display: flex;
}
.breadcrumbs__link {
  position: relative;
  color: #878C97;
}
@media (hover: hover) {
  .breadcrumbs__link:hover:not(.breadcrumbs__link--active) {
    color: var(--color-primary-light-blue);
  }
}
@media (hover: none) {
  .breadcrumbs__link:active:not(.breadcrumbs__link--active) {
    color: var(--color-primary-light-blue);
  }
}
.breadcrumbs__link--active {
  pointer-events: none;
  color: var(--color-additional-dark-gray);
}
.breadcrumbs__arrow {
  margin-right: 0.4rem;
  margin-left: 0.4rem;
  font-size: 0.35rem;
}

.cookie {
  pointer-events: none;
  position: fixed;
  z-index: 1100;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.cookie__inner {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  max-width: 20rem;
  padding: 0.75rem;
  background-color: var(--color-bg-2);
  border: var(--border-base);
  border-radius: var(--border-radius-base);
}
.cookie__content {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cookie__icon {
  flex-shrink: 0;
  margin-right: 0.8rem;
  font-size: 2.4rem;
}
.cookie--hide {
  display: none;
}

.search-open .header-search {
  transform: translateY(0);
  opacity: 1;
}

.header-search {
  transition: all 0.3s;
  z-index: 11;
  position: fixed;
  top: var(--header-height);
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8rem;
  padding: 0 var(--container-indent-x);
  background-color: var(--color-white);
  transform: translateY(-100%);
  opacity: 0;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .header-search {
    height: 13rem;
  }
}
.header-search__form {
  position: relative;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 33.5rem;
}

.search-field {
  position: relative;
}
.search-field__box {
  flex: 1;
}
.search-field__field {
  height: 3rem;
  padding-right: 4rem;
  background-color: var(--color-gray);
}
.search-field__button {
  transition: background-color 0.3s;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-blue);
  border-radius: 50%;
}
@media (hover: hover) {
  .search-field__button:hover {
    background-color: var(--color-dark-blue);
  }
}
.search-field__button-icon {
  color: var(--color-white);
  font-size: 0.8rem;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (min-width: 681px) {
  .socials {
    margin-top: 0;
  }
}
.socials__link {
  display: flex;
}
.socials__icon {
  transition: color 0.3s;
  font-size: 2.15rem;
}
.socials__icon .animated {
  transition: scale 0.3s;
  fill: var(--color-blue);
  scale: 0;
  transform-origin: center;
}
@media (hover: hover) {
  .socials__icon:hover {
    color: var(--color-white);
  }
  .socials__icon:hover .animated {
    scale: 1;
  }
}

.contact-link {
  transition: all 0.3s;
  padding: 0.4rem 0.75rem;
  font-size: 0.5rem;
  letter-spacing: 0.05rem;
  line-height: normal;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .contact-link {
    font-size: 0.6rem;
    letter-spacing: 0.06rem;
  }
}
@media (hover: hover) {
  .contact-link:hover {
    color: var(--color-white);
    background-color: var(--color-blue);
  }
}

body {
  position: relative;
  overflow-x: hidden;
}
body > .over-menu {
  transition: all 0.3s;
  position: fixed;
  height: 100%;
  content: "";
  width: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
}
body.open-menu > .over-menu {
  visibility: visible;
  opacity: 1;
}
body.open-menu .header__search-trigger {
  margin-right: auto;
  margin-left: 1.5rem;
}
body.open-menu .header__logo {
  display: none;
}
body.open-menu .header__lang-switcher {
  display: flex;
}
body.open-menu .menu-container {
  right: 0 !important;
}

.header {
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: 100%;
  height: var(--header-height);
  float: left;
  position: fixed;
  z-index: 99;
}
.header::before {
  transition: all 0.3s ease;
  transform-origin: 0;
  background: var(--color-white);
  position: absolute;
  width: 100%;
  content: "";
  top: 0;
  right: 0;
  height: 0;
}
.header__container {
  height: 100%;
}
.header__logo {
  width: 6.25rem;
  margin-right: auto;
}
@media only screen and (min-width: 1025px) {
  .header__logo {
    width: 7.5rem;
  }
}
@media only screen and (min-width: 1281px) {
  .header__logo {
    width: 9.35rem;
  }
}
.header .desk-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  float: left;
}
.header .desk-menu .box-menu {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  float: right;
  text-align: center;
}
.header .desk-menu .menu-container {
  float: left;
}
.header__lang-switcher {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .header__lang-switcher {
    display: flex;
    margin-left: 1rem;
  }
}
.header__search-trigger {
  transition: color 0.3s;
  width: 0.8rem;
  height: 0.8rem;
  position: relative;
  display: flex;
  margin-right: 1rem;
  margin-left: 2rem;
  padding: 0.5rem;
  box-sizing: content-box;
  cursor: pointer;
}
@media only screen and (max-width: 1280px) {
  .header__search-trigger {
    margin-left: 0.5rem;
  }
}
@media (hover: hover) {
  .header__search-trigger:hover {
    color: var(--color-blue);
  }
}
.header__search-icon, .header__close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__search-icon {
  font-size: 0.8rem;
  opacity: 1;
}
.header__close-icon {
  font-size: 0.7rem;
  opacity: 0;
}
.header__cta {
  --bd-color-button__hover: var(--color-semidark-blue);
  --bg-color-button__hover: var(--color-semidark-blue);
  --color-button__hover: var(--color-white);
}
.header__cta--desktop {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .header__cta--desktop {
    display: flex;
  }
}
.header__cta--mobile {
  z-index: 1;
  height: 2.6rem;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 500;
}
@media only screen and (min-width: 1025px) {
  .header__cta--mobile {
    display: none;
  }
}

.menu {
  transition: all 0.3s ease-in-out;
  position: relative;
  float: left;
  padding: 0;
  list-style: none;
}
.menu__back-button {
  display: none;
}
.menu__item {
  transition: all 0.33s ease;
  float: left;
  cursor: pointer;
  position: relative;
  overflow: inherit;
}
@media only screen and (min-width: 1025px) {
  .menu__item--active-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 60px);
    height: 0.35rem;
    background-color: var(--color-blue);
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 1280px) {
  .menu__item--active-item::after {
    width: calc(100% - 20px);
  }
}
.menu > .menu__item .menu__link {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  color: #000;
  font-size: 15px;
}
@media only screen and (max-width: 1280px) {
  .menu > .menu__item .menu__link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}
.menu > .menu__item--has-children > .menu__link {
  position: relative;
  gap: 5px;
}
.menu > .menu__item--has-children > .menu__link::after {
  transition: all 0.3s ease-in-out;
  content: "";
  width: 11px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 1L4.73178 6.07814C5.13157 6.55789 5.86843 6.55789 6.26822 6.07813L10.5 1' stroke='black'/%3E%3C/svg%3E%0A");
}
@media only screen and (max-width: 1024px) {
  .menu > .menu__item--has-children > .menu__link::after {
    width: 0.8rem;
    height: 0.45rem;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-90deg) translateY(-50%);
    background-position: center;
  }
}
@media (hover: hover) {
  .menu > .menu__item--has-children:hover > .menu__link::after {
    transform: scaleY(-1);
  }
}
.menu__submenu {
  transition: all 0.1s ease-in-out;
  -webkit-overflow-scrolling: touch;
  min-width: 212px;
  position: absolute;
  list-style: none;
  background: var(--color-white);
  padding: 0;
  float: left;
  display: table;
  left: 0;
  width: 100%;
  float: left;
  display: none;
  text-align: center;
}
.menu__submenu .menu__item {
  transition: all 0.33s ease;
  width: 100%;
}
.menu__submenu .menu__item .menu__link {
  padding: 0;
  color: var(--color-black);
  line-height: 200%;
}
@media only screen and (max-width: 1024px) {
  .menu__submenu .menu__item .menu__link {
    padding-left: 1rem;
    font-size: 0.65rem;
    line-height: 33.5px;
    text-transform: none;
  }
}
.menu__submenu .menu__item .menu__submenu {
  display: none;
}
.menu__submenu .menu__item:not(.menu__tab):hover .menu__link {
  color: rgb(70, 143, 205);
}
.menu__submenu .menu__submenu {
  left: 100vw;
  margin-top: -43px;
}
@media only screen and (min-width: 1025px) {
  .menu__item--full-width > .menu__submenu {
    position: fixed;
    left: 50%;
    width: var(--container-width);
    padding-top: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 1025px) {
  .menu__item--full-width > .menu__submenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: calc(100% + 20px);
    background-color: var(--color-white);
    transform: translateX(-50%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
  }
}
@media only screen and (min-width: 1025px) {
  .menu__item--full-width > .menu__submenu::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: -0.1rem;
    width: 100%;
    height: 0.1rem;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.menu__item--full-width > .menu__submenu .menu__submenu {
  position: fixed;
  top: 100%;
  left: 0;
  display: none;
  grid-template-columns: max-content max-content;
  grid-column-gap: 102px;
  width: var(--container-width);
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu .menu__submenu {
    width: 100%;
    padding: 0 1rem 1rem;
    text-align: left;
  }
}
@media only screen and (min-width: 1025px) {
  .menu__item--full-width > .menu__submenu .menu__submenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background-color: var(--color-white);
    transform: translateX(-50%);
    pointer-events: none;
  }
}
.menu__item--full-width > .menu__submenu .menu__tab:not(.menu__item--active) > .menu__link {
  color: var(--color-black-50);
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu .menu__tab:not(.menu__item--active) > .menu__link {
    color: var(--color-black);
  }
}
.menu__item--full-width > .menu__submenu .menu__item--active .menu__submenu {
  display: grid;
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu .menu__item--active .menu__submenu {
    margin-top: var(--header-height) !important;
  }
}
.menu__item--full-width > .menu__submenu .menu__item--active > .menu__link {
  color: var(--color-black);
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu .menu__tab {
    position: relative;
  }
  .menu__item--full-width > .menu__submenu .menu__tab::after {
    transition: all 0.3s ease-in-out;
    content: "";
    position: absolute;
    top: 0.8rem;
    right: 0.5rem;
    width: 0.9rem;
    height: 0.45rem;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 1L4.73178 6.07814C5.13157 6.55789 5.86843 6.55789 6.26822 6.07813L10.5 1' stroke='black'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
    background-position: center;
    transform-origin: top center;
  }
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu .menu__tab > .menu__link {
    position: relative;
    padding-left: 1rem;
    font-weight: 500;
    color: var(--color-black);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
  }
}
.menu__item--full-width > .menu__submenu .menu__item--active > .menu__link::after {
  background-color: #000;
}
.menu__item--full-width > .menu__submenu > .menu__tab {
  width: auto;
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu > .menu__tab {
    width: 100%;
  }
}
.menu > .menu__item--has-children:not(.menu__item--full-width) > .menu__submenu {
  padding: 1.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .menu > .menu__item--has-children:not(.menu__item--full-width) > .menu__submenu {
    padding: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .menu > .menu__item--has-children:not(.menu__item--full-width) > .menu__submenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: calc(100% + 20px);
    background-color: var(--color-white);
    box-shadow: inset 0 1px 9px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    pointer-events: none;
  }
}
.menu > .menu__item--has-children:hover > .menu__submenu {
  display: block;
}
.menu > .menu__item--full-width:hover > .menu__submenu {
  display: flex;
}
.menu__line {
  transition: all 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  pointer-events: none;
  border: 0.05rem solid #4285f4;
  background: #4285f4;
  transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
  opacity: 0;
  display: block;
}
.menu__submenu .menu__tab > .menu__link {
  position: relative;
  display: flex;
  width: 345px;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  padding-left: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .menu__submenu .menu__tab > .menu__link {
    width: 100%;
    height: 1.5rem;
    margin-bottom: 0.5rem;
    padding: 0;
  }
}
.menu__submenu .menu__tab > .menu__link::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: transparent;
}
@media only screen and (max-width: 1024px) {
  .menu__submenu .menu__tab > .menu__link::after {
    display: none;
  }
}
.menu__item-title-box {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .menu__item-title-box {
    position: sticky;
    top: 4.75rem;
    z-index: 1;
    display: block;
    padding-top: 1.5rem;
    background-color: var(--color-white);
  }
}
@media only screen and (max-width: 1024px) {
  .menu__title {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-blue);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.8;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 1.8px;
  }
}

.hamburger-menu {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .search-open .header {
    box-shadow: none;
  }
}

.search-open .header__search-trigger .header__search-icon {
  opacity: 0;
}
@media only screen and (min-width: 1025px) {
  .search-open .header__search-trigger .header__close-icon {
    opacity: 1;
  }
}

@media only screen and (max-width: 1024px) {
  .hamburger-menu {
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-right: calc(var(--container-indent-x) * -1);
    background-color: var(--color-blue);
    cursor: pointer;
    right: 0;
    z-index: 11;
  }
  .hamburger-menu span {
    text-transform: uppercase;
    left: calc(-100% - 5px);
    padding: 8px 9px 8px 0;
    top: calc(50% - 18px);
    position: absolute;
    font-size: 13px;
    color: var(--color-white);
  }
  .hamburger-menu__bar::after, .hamburger-menu__bar::before {
    width: 35px;
    height: 3px;
  }
  .hamburger-menu__bar {
    position: relative;
    height: 100%;
    transition: all 0.1s ease;
  }
  .hamburger-menu__bar::before, .hamburger-menu__bar::after {
    position: absolute;
    background: var(--color-white);
    content: "";
    left: 50%;
    transform: translateX(-50%);
  }
  .hamburger-menu__bar::before {
    bottom: 1.15rem;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .hamburger-menu__bar::after {
    top: 1.15rem;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .hamburger-menu__bar.animate {
    background: rgba(255, 255, 255, 0);
  }
  .hamburger-menu__bar.animate::after {
    top: 50%;
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(-50%, 0) rotate(45deg);
  }
  .hamburger-menu__bar.animate::before {
    bottom: 50%;
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(-50%, 3px) rotate(-45deg);
  }
  .desk-menu .menu-container {
    transition: all 0.3s;
    position: fixed;
    top: var(--header-height);
    right: -100vw;
    width: 100%;
    height: calc(100% - var(--header-height));
    padding: 0 1rem 1rem;
    background-color: var(--color-white);
  }
  .desk-menu .menu-container .menu-header-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .desk-menu .menu-container .menu {
    margin: 0;
    padding-top: 1.5rem;
  }
  .desk-menu .menu-container .menu li.menu__back-button {
    z-index: 1;
    position: sticky;
    top: 0;
    display: block;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: var(--color-white);
    border-bottom: 0.1rem solid #E4E4E4;
  }
  .desk-menu .menu-container .menu li.menu__back-button a {
    padding: 0 0 0 2rem !important;
    text-transform: none;
  }
  .desk-menu .menu-container .menu li.menu__back-button a::before {
    transition: all 0.3s ease-in-out;
    content: "";
    position: absolute;
    top: 2.25rem;
    left: 0.5rem;
    width: 0.9rem;
    height: 0.45rem;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 1L4.73178 6.07814C5.13157 6.55789 5.86843 6.55789 6.26822 6.07813L10.5 1' stroke='black'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(90deg);
    background-position: center;
    transform-origin: top center;
  }
  .desk-menu .menu-container .menu li.line {
    display: none !important;
  }
  .desk-menu .menu-container .menu > li {
    width: 100%;
    height: 1.5rem;
    float: left;
    margin: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
  }
  .desk-menu .menu-container .menu > li a {
    color: var(--color-black);
  }
  .desk-menu .menu-container .menu > li.menu__item--has-children {
    position: initial;
  }
  .desk-menu .menu-container .menu > li.menu__item--has-children a {
    justify-content: space-between;
    gap: 0.5rem;
    font-weight: 400;
  }
  .desk-menu .menu-container .menu > li.menu__item--has-children .menu__submenu {
    box-shadow: none;
    transition: all 0.3s ease-in-out;
    display: block !important;
    background: var(--color-white);
    z-index: 1;
    top: 0;
    left: 100vw;
    height: 100%;
  }
  .desk-menu .menu-container .menu > li.menu__item--has-children .menu__submenu .menu__submenu {
    margin-top: 0;
  }
  .desk-menu .menu-container .menu > li.menu__item--has-children .menu__submenu.open-sub {
    left: 0%;
    height: calc(100vh - var(--header-height) - 20px - 70px);
    overflow-y: auto;
  }
}
.menu__item.menu__item--has-children.menu__tab.menu__item--active {
  z-index: 1;
}

.header-nav {
  transition: all 0.3s;
  position: fixed;
  top: var(--header-height);
  right: 0;
  transform: translateX(100vw);
  overflow-y: auto;
  width: 100%;
  padding: 0.8rem var(--container-indent-x);
  opacity: 0;
  background-color: #0D0B6A;
}
@supports (height: 100dvh) {
  .header-nav {
    height: calc(100dvh - var(--header-height));
  }
}
@supports not (height: 100dvh) {
  .header-nav {
    height: calc(100vh - var(--header-height));
  }
}
@media only screen and (min-width: 1025px) {
  .header-nav {
    position: static;
    transform: translateX(0);
    width: auto;
    height: auto;
    margin-left: auto;
    padding: 0;
    opacity: 1;
    background-color: transparent;
  }
}
.header-nav--visible {
  transform: translateX(0);
  opacity: 1;
}
.header-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media only screen and (min-width: 1025px) {
  .header-nav__list {
    flex-direction: row;
    gap: 1rem;
  }
}
.header-nav__dropdown {
  background-color: var(--color-primary-black);
}
.header-nav__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.5rem 0.8rem;
  font-weight: 500;
  color: var(--color-primary-white);
}
@media only screen and (min-width: 1025px) {
  .header-nav__link {
    padding: 0;
  }
}
@media (hover: hover) {
  .header-nav__link:hover {
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .header-nav__link:active {
    color: var(--color-accent);
  }
}
.header-nav__link--active {
  color: var(--color-accent);
}
.header-nav__link-text {
  display: flex;
}

.footer {
  overflow: hidden;
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.25rem;
  align-items: flex-start;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media only screen and (min-width: 681px) {
  .footer__main {
    grid-gap: 2.5rem 3rem;
    grid-template-columns: repeat(3, auto);
  }
}
@media only screen and (min-width: 1025px) {
  .footer__main {
    grid-template-columns: repeat(5, auto);
  }
}
@media only screen and (min-width: 681px) {
  .footer__col:nth-child(1) {
    order: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .footer__col:nth-child(1) {
    order: unset;
  }
}
@media only screen and (min-width: 681px) {
  .footer__col:nth-child(2) {
    order: 1;
  }
}
@media only screen and (min-width: 1025px) {
  .footer__col:nth-child(2) {
    order: unset;
  }
}
@media only screen and (min-width: 681px) {
  .footer__col:nth-child(3) {
    order: 3;
  }
}
@media only screen and (min-width: 1025px) {
  .footer__col:nth-child(3) {
    order: unset;
  }
}
@media only screen and (min-width: 681px) {
  .footer__col:nth-child(4) {
    order: 4;
  }
}
@media only screen and (min-width: 1025px) {
  .footer__col:nth-child(4) {
    order: unset;
  }
}
.footer__heading {
  color: #808080;
  font-size: 0.6rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}
.footer__heading-button {
  cursor: text;
}
@media only screen and (max-width: 680px) {
  .footer__heading-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    padding: 0.2rem 0;
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.09rem;
  }
  .footer__heading-button::after {
    transition: transform 0.3s;
    width: 1.5rem;
    height: 1.5rem;
    content: "";
    display: block;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIxMCIgdmlld0JveD0iMCAwIDE3IDEwIiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMC4zNzUgOC45OTQ2M0w3LjYyNzU5IDAuODM1NDY0QzguMDI1MzggMC4zODc5NSA4LjcyNDYyIDAuMzg3OTUgOS4xMjI0MSAwLjgzNTQ2NEwxNi4zNzUgOC45OTQ2MyIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4=") center/auto no-repeat;
    transform: scale(1, -1);
  }
}
.footer__heading-button--open::after {
  transform: scale(-1, 1);
}
@media only screen and (max-width: 680px) {
  .footer__nav-box {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s;
  }
}
@media only screen and (max-width: 680px) {
  .footer__nav-box--open {
    grid-template-rows: 1fr;
  }
}
.footer__nav-box--open .footer__nav {
  visibility: visible;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-left: 1rem;
  transition: visibility 1s;
  visibility: hidden;
}
@media only screen and (min-width: 681px) {
  .footer__nav {
    padding-left: 0;
    visibility: visible;
  }
}
.footer__nav-link {
  transition: color 0.3s;
  font-size: 0.65rem;
  line-height: 1.675rem;
}
@media only screen and (min-width: 681px) {
  .footer__nav-link {
    font-size: 0.75rem;
  }
}
@media (hover: hover) {
  .footer__nav-link:hover {
    color: var(--color-blue);
  }
}
.footer__socials {
  margin-top: 1.25rem;
}
@media only screen and (min-width: 681px) {
  .footer__socials {
    order: 2;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .footer__socials {
    order: unset;
  }
}
.footer__bottom-header {
  margin-bottom: 0.75rem;
  line-height: normal;
}
@media only screen and (min-width: 681px) {
  .footer__bottom-header {
    display: grid;
    grid-template-columns: 1fr 7.5rem;
    margin-left: -1rem;
    margin-bottom: 0.5rem;
    padding: 0 1rem 0.5rem;
  }
}
.footer__bottom-heading:last-child {
  display: none;
}
@media only screen and (min-width: 681px) {
  .footer__bottom-heading:last-child {
    display: block;
  }
}
.footer__bottom {
  position: relative;
  padding: 0.75rem;
  background-color: var(--color-gray);
  border-top-left-radius: 0.5rem;
}
@media only screen and (min-width: 681px) {
  .footer__bottom {
    display: grid;
    grid-template-columns: 1fr 7.5rem;
    padding: 1rem;
  }
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  background-color: var(--color-gray);
}
.footer__bottom-info {
  display: flex;
  flex-direction: column;
}
.footer__bottom-text {
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  line-height: 124%;
}
@media only screen and (min-width: 1025px) {
  .footer__bottom-text {
    margin-bottom: 1rem;
  }
}
.footer__bottom-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
@media only screen and (min-width: 1025px) {
  .footer__bottom-contact {
    gap: 0.5rem;
  }
}
.footer__bottom-qr {
  display: none;
}
@media only screen and (min-width: 681px) {
  .footer__bottom-qr {
    display: flex;
  }
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  justify-content: center;
  padding-right: 0.6rem;
  padding-left: 0.6rem;
}
.footer-nav__item {
  display: flex;
}
.footer-nav__link {
  /* stylelint-disable order/order */
  --p-fw: 700;
  --p-c: var(--color-primary-white);
}
@media (hover: hover) {
  .footer-nav__link:hover {
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .footer-nav__link:active {
    color: var(--color-accent);
  }
}

.chip {
  transition: all 0.3s;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  line-height: normal;
  background-color: var(--color-gray);
  border-radius: 3rem;
}

:root {
  --circle-button-bg-c: var(--color-white);
  --circle-button-bd-c: var(--color-gray-dark);
  --circle-button-arrow-c: var(--color-black);
}

.circle-button {
  width: 3rem;
  height: 3rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--circle-button-bg-c);
  border-radius: 50%;
  border: 0.05rem solid var(--circle-button-bd-c);
}
.circle-button::after {
  content: "";
  width: 0.45rem;
  height: 0.75rem;
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMC4zMjAzMTIgMTUuMzg0TDguMzk4NDUgOC42NTIyNUM4Ljg3ODIgOC4yNTI0NiA4Ljg3ODIgNy41MTU2MSA4LjM5ODQ1IDcuMTE1ODFMMC4zMjAzMTIgMC4zODQwMzMiIHN0cm9rZT0iYmxhY2siLz4KPC9zdmc+") center/cover no-repeat;
          mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMC4zMjAzMTIgMTUuMzg0TDguMzk4NDUgOC42NTIyNUM4Ljg3ODIgOC4yNTI0NiA4Ljg3ODIgNy41MTU2MSA4LjM5ODQ1IDcuMTE1ODFMMC4zMjAzMTIgMC4zODQwMzMiIHN0cm9rZT0iYmxhY2siLz4KPC9zdmc+") center/cover no-repeat;
  background-color: var(--circle-button-arrow-c);
}
.circle-button--sm {
  width: 1.5rem;
  height: 1.5rem;
}
@media only screen and (min-width: 1025px) {
  .circle-button--sm {
    width: 2rem;
    height: 2rem;
  }
}
.circle-button--sm::after {
  content: "";
  width: 0.3rem;
  height: 0.5rem;
}
.circle-button--download::after {
  width: 0.6rem;
  height: 0.5rem;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMC4zMjAwNjhMNS4yMzE3OCA1LjM5ODJDNS42MzE1NyA1Ljg3Nzk2IDYuMzY4NDMgNS44Nzc5NiA2Ljc2ODIyIDUuMzk4MkwxMSAwLjMyMDA2OCIgc3Ryb2tlPSJ3aGl0ZSIvPgo8bGluZSB5MT0iOC44MjAwNyIgeDI9IjEyIiB5Mj0iOC44MjAwNyIgc3Ryb2tlPSJ3aGl0ZSIvPgo8L3N2Zz4K");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMC4zMjAwNjhMNS4yMzE3OCA1LjM5ODJDNS42MzE1NyA1Ljg3Nzk2IDYuMzY4NDMgNS44Nzc5NiA2Ljc2ODIyIDUuMzk4MkwxMSAwLjMyMDA2OCIgc3Ryb2tlPSJ3aGl0ZSIvPgo8bGluZSB5MT0iOC44MjAwNyIgeDI9IjEyIiB5Mj0iOC44MjAwNyIgc3Ryb2tlPSJ3aGl0ZSIvPgo8L3N2Zz4K");
}

.marquee-slider {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
}
.marquee-slider .swiper-wrapper {
  transition-timing-function: linear;
  align-items: center;
}
.marquee-slider__slide {
  display: flex;
  align-items: center;
  width: auto;
}
.marquee-slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-slider .swiper-scrollbar-box {
  display: none;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .marquee-slider .swiper-scrollbar-box {
    margin-top: 1.25rem;
  }
}

.awards-slider {
  overflow: unset;
}
@media only screen and (min-width: 1025px) {
  .awards-slider {
    max-width: 53.75rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    overflow: hidden;
  }
}
.awards-slider__slide {
  width: 13.75rem;
}
@media only screen and (min-width: 577px) {
  .awards-slider__slide {
    width: 15.25rem;
  }
}
.awards-slider .swiper-slide {
  transition: 0.4s opacity;
}
.awards-slider .swiper-slide-prev,
.awards-slider .swiper-slide-next + .swiper-slide + .swiper-slide {
  opacity: 0;
}
.awards-slider__control {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .awards-slider__control {
    display: flex;
  }
}
@media (hover: hover) {
  .awards-slider__control:hover {
    --swiper-icon-bd-color: var(--color-black);
  }
}

.practice-slider {
  overflow: unset;
}
.practice-slider__slide {
  max-width: 38.2rem;
  height: 100% !important;
  background-color: var(--color-white);
  border-radius: 0.35rem;
}
.practice-slider__slide:nth-child(even) {
  background: rgba(196, 196, 196, 0.2);
  border-radius: 0.5rem;
}
.practice-slider__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem 1.5rem 1.5rem;
}
@media only screen and (min-width: 1025px) {
  .practice-slider__item {
    padding: 1rem;
  }
}
.practice-slider__item-title {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1025px) {
  .practice-slider__item-title {
    margin-bottom: 2.5rem;
  }
}
.practice-slider__item-text {
  margin-bottom: 0.7rem;
}
@media only screen and (min-width: 1025px) {
  .practice-slider__item-text {
    --p-fs: 0.75rem;
    --p-lh: 170%;
    margin-bottom: 2.8rem;
  }
}
.practice-slider__item-expert-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
}
.practice-slider__item-expert-title {
  display: block;
  margin-top: auto;
  margin-bottom: 1rem;
  color: var(--color-black);
  font-size: 0.5rem;
  letter-spacing: 0.05rem;
  line-height: normal;
  text-transform: uppercase;
  opacity: 0.5;
}
@media only screen and (min-width: 1025px) {
  .practice-slider__item-expert-title {
    margin-bottom: 1.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.06rem;
  }
}
.practice-slider__item-expert {
  display: flex;
  gap: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .practice-slider__item-expert {
    gap: 1rem;
  }
}
.practice-slider__item-expert-image-box {
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .practice-slider__item-expert-image-box {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.practice-slider__item-expert-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.practice-slider__item-expert-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.practice-slider__item-expert-name {
  margin-bottom: 0.3rem;
}
@media only screen and (min-width: 1025px) {
  .practice-slider__item-expert-name {
    margin-bottom: 0.2rem;
  }
}
.practice-slider__item-expert-position {
  opacity: 0.5;
}

.team-slider {
  --swiper-scrollbar-drag-bg-color: var(--color-white);
  --swiper-scrollbar-bg-color: #668BAC;
  overflow: unset;
}
.team-slider .swiper-slide {
  max-width: 14.1rem;
  height: auto;
}
@media only screen and (min-width: 1025px) {
  .team-slider .swiper-slide {
    max-width: 17.25rem;
  }
}
.team-slider__item {
  height: 100%;
}

.project-card {
  transition: background-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  background-color: var(--color-white);
  border-radius: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .project-card {
    padding: 1rem;
  }
}
@media (hover: hover) {
  .project-card:hover {
    background-color: var(--color-light-blue);
  }
  .project-card:hover .project-card__title {
    color: var(--color-blue);
  }
  .project-card:hover .project-card__link {
    --circle-button-bd-c: var(--color-white);
    transform: translateX(-20%);
  }
  .project-card:hover .chip {
    background-color: var(--color-white);
  }
}
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #E4E4E4;
}
.project-card__date {
  margin-bottom: 0.5rem;
  color: #808080;
  font-size: 0.5rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  line-height: normal;
}
@media only screen and (min-width: 1025px) {
  .project-card__date {
    margin-bottom: 20px;
    font-size: 0.75rem;
  }
}
.project-card__title {
  transition: color 0.3s;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 150%;
}
@media only screen and (min-width: 1025px) {
  .project-card__title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: normal;
  }
}
@media only screen and (min-width: 1281px) {
  .project-card__title {
    margin-bottom: 0.95rem;
    font-size: 1.75rem;
  }
}
.project-card__tag-list {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .project-card__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 0.5rem;
    margin-top: auto;
  }
}
.project-card__link {
  align-self: center;
  margin-left: auto;
}

:root {
  --team-card-bg: rgba(196, 196, 196, 0.20);
  --team-card-color: var(--color-black);
}

.team-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  color: var(--team-card-color);
  border-radius: 0.35rem;
  background-color: var(--team-card-bg);
}
.team-card__name {
  margin-bottom: 0.5rem;
  color: inherit;
  font-size: 1.25rem;
  line-height: 110%;
  word-spacing: 4999.95rem;
}
@media only screen and (min-width: 1025px) {
  .team-card__name {
    margin-bottom: 1rem;
  }
}
.team-card__position {
  margin-bottom: 1rem;
}
.team-card__image-box {
  aspect-ratio: 1/1;
  margin-top: auto;
  border-radius: 0.25rem;
  overflow: hidden;
}
.team-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

:root {
  --post-card-detailed-bg: var(--color-white);
}

.post-card-detailed {
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 11.55rem;
  padding: 0.75rem;
  background-color: var(--post-card-detailed-bg);
  border-radius: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .post-card-detailed {
    min-height: auto;
    padding: 1.5rem;
    border-radius: 0.35rem;
  }
}
@media (hover: hover) {
  .post-card-detailed:hover {
    background-color: var(--color-light-blue);
  }
  .post-card-detailed:hover .post-card-detailed__title {
    color: var(--color-blue);
  }
  .post-card-detailed:hover .post-card-detailed__link {
    --circle-button-bg-c: var(--color-white);
    --circle-button-bd-c: var(--color-white);
    transform: translateX(-20%);
  }
}
.post-card-detailed__date {
  margin-bottom: 0.5rem;
  color: #808080;
  font-size: 0.5rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1025px) {
  .post-card-detailed__date {
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 0.075rem;
  }
}
.post-card-detailed__title {
  transition: color 0.3s;
  font-weight: 400;
  font-size: 1rem;
  line-height: normal;
}
@media only screen and (min-width: 1025px) {
  .post-card-detailed__title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1281px) {
  .post-card-detailed__title {
    font-size: 1.75rem;
  }
}
.post-card-detailed__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}
.post-card-detailed__text {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .post-card-detailed__text {
    display: block;
    max-width: 22.5rem;
    font-size: 0.75rem;
    line-height: 170%;
  }
}
.post-card-detailed__link {
  --circle-button-bg-c: var(--post-card-detailed-bg);
}

.event-card {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 0.1rem solid #E4E4E4;
}
@media only screen and (min-width: 1025px) {
  .event-card {
    padding: 1.5rem 0;
  }
}
@media (hover: hover) {
  .event-card:hover .event-card__title {
    color: var(--color-blue);
  }
  .event-card:hover .event-card__image {
    transform: scale(1.1);
  }
}
.event-card__info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #808080;
  font-size: 0.5rem;
  letter-spacing: 0.05rem;
  line-height: normal;
  text-transform: uppercase;
}
@media only screen and (min-width: 1025px) {
  .event-card__info {
    gap: 1.8rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.075rem;
  }
}
.event-card__date {
  padding: 0.25rem;
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 0.15rem;
}
@media only screen and (min-width: 1025px) {
  .event-card__date {
    padding: 0.5rem;
    border-radius: 0.25rem;
  }
}
.event-card__title {
  transition: color 0.3s;
  font-weight: 400;
  font-size: 1rem;
  line-height: normal;
}
@media only screen and (min-width: 1025px) {
  .event-card__title {
    max-width: 44.75rem;
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1281px) {
  .event-card__title {
    font-size: 1.75rem;
  }
}
.event-card__image-box {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .event-card__image-box {
    width: 7.95rem;
    height: 7.95rem;
    display: block;
    flex-shrink: 0;
    border-radius: 0.25rem;
    overflow: hidden;
  }
}
.event-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.event-card__button {
  margin-top: 1rem;
}
@media only screen and (min-width: 1025px) {
  .event-card__button {
    display: none;
  }
}

:root {
  --award-card-bg: transparent;
}

.award-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 13.75rem;
  padding: 1.65rem 0.5rem 1rem;
  background-color: var(--award-card-bg);
  text-align: center;
  border: 0.05rem solid var(--color-gray-dark);
  border-radius: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .award-card {
    height: 15.25rem;
    padding: 1.8rem 0.5rem 1rem;
  }
}
.award-card__image {
  margin: auto;
}
.award-card__content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: flex;
  flex-direction: column;
  height: 3.5rem;
}
.award-card__title {
  color: #000;
  font-size: 0.75rem;
  line-height: 170%;
}
.award-card__text {
  color: #848484;
  font-size: 0.7rem;
  line-height: 170%;
}
@media only screen and (min-width: 1025px) {
  .award-card__text {
    font-size: 0.65rem;
  }
}

.section-intro {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: calc(100vh - var(--header-height));
  background: gray;
  overflow: hidden;
}
.section-intro__video-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-intro__video-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.section-intro__slider-box {
  width: 100%;
}
.section-intro__content {
  position: relative;
  margin-bottom: 2.5rem;
}
.section-intro__heading {
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.5rem;
  color: var(--color-white);
  background-color: rgba(196, 196, 196, 0.1);
  border-radius: 0.35rem;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}
@media only screen and (min-width: 1025px) {
  .section-intro__heading {
    max-width: 49.2rem;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
  }
}
.section-intro__text {
  max-width: 8.75rem;
  margin-bottom: 1rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(196, 196, 196, 0.1);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 400;
  line-height: 170%;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  border-radius: 0.35rem;
}
@media only screen and (min-width: 1025px) {
  .section-intro__text {
    max-width: 14.3rem;
    margin-bottom: 2.5rem;
    padding: 0.75rem 0.45rem 0.8rem 1.2rem;
    font-size: 1rem;
    line-height: 130%;
    border-radius: 0.5rem;
  }
}
.section-intro__button {
  margin-bottom: 0.1rem;
}

.section-marquee {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: var(--color-gray);
}
@media only screen and (min-width: 1025px) {
  .section-marquee {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.section-marquee__inner {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1025px) {
  .section-marquee__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }
}
.section-marquee .section__control {
  --swiper-icon-bd-color: var(--color-gray-dark);
  --swiper-icon-bg-color: transparent;
}
@media (hover: hover) {
  .section-marquee .section__control:hover {
    --swiper-icon-bd-color: var(--color-black);
  }
}

.section-awards {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .section-awards {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.section-awards__heading {
  max-width: 54.4rem;
  margin: 0 auto 1.25rem;
  text-align: center;
}
@media only screen and (min-width: 1025px) {
  .section-awards__heading {
    margin-bottom: 2.5rem;
  }
}
.section-awards__text {
  max-width: 40.25rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-awards__slider-title {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  color: var(--color-black);
  font-size: 0.6rem;
  letter-spacing: 0.06rem;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.5;
}

.section-practice {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: var(--color-gray);
  overflow: hidden;
}
.section-practice__header {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .section-practice__header {
    margin-bottom: 2.5rem;
  }
}
.section-practice .section__control {
  --swiper-icon-bg-color: transparent;
  --swiper-icon-bd-color: var(--color-black);
}
@media (hover: hover) {
  .section-practice .section__control:hover {
    --swiper-icon-bg-color: var(--color-white);
  }
}
.section-practice .section__control.swiper-button-disabled {
  --swiper-icon-bd-color: var(--color-gray-dark);
}

.section-projects {
  padding-top: 2.5rem;
  padding-bottom: 2.1rem;
}
@media only screen and (min-width: 1025px) {
  .section-projects {
    padding-top: 5rem;
    padding-bottom: 3.65rem;
  }
}
.section-projects__header {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .section-projects__header {
    margin-bottom: 2.5rem;
  }
}
.section-projects__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.5rem;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .section-projects__list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
    margin-bottom: 2rem;
  }
}
.section-projects__button-box {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .section-projects__button-box {
    margin-bottom: 1.5rem;
  }
}
.section-projects__more {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 681px) {
  .section-projects__more {
    width: auto;
  }
}

.section-team {
  --team-card-color: var(--color-white);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  color: var(--color-white);
  background-color: var(--color-dark-blue);
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .section-team {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.section-team__header {
  margin-bottom: 1.2rem;
}
@media only screen and (min-width: 1025px) {
  .section-team__header {
    margin-bottom: 1.5rem;
  }
}
.section-team__heading {
  margin-bottom: 0.8rem;
  color: inherit;
}
.section-team__text {
  max-width: 34.35rem;
}
.section-team .section__control {
  --swiper-icon-color: var(--color-white);
  --swiper-icon-bg-color: transparent;
}
@media (hover: hover) {
  .section-team .section__control:hover {
    --swiper-icon-color: var(--color-blue);
    --swiper-icon-bg-color: var(--color-white);
    --swiper-icon-bd-color: var(--color-white);
  }
}
.section-team .section__control.swiper-button-disabled {
  opacity: 0.4;
}
.section-team__more {
  width: 100%;
}
@media only screen and (min-width: 681px) {
  .section-team__more {
    width: auto;
  }
}

.section-presscenter {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: var(--color-gray);
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .section-presscenter {
    padding-top: 5rem;
    padding-bottom: 0;
  }
}
.section-presscenter__header {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .section-presscenter__header {
    margin-bottom: 2.5rem;
  }
}
.section-presscenter__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .section-presscenter__list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
  }
}
.section-presscenter__footer {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.5rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 1025px) {
  .section-presscenter__footer {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
.section-presscenter__block {
  position: relative;
}
@media only screen and (min-width: 1025px) {
  .section-presscenter__block::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: var(--color-white);
    border-top-right-radius: 0.75rem;
  }
}
.section-presscenter__categories {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .section-presscenter__categories {
    grid-gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.section-presscenter__categories::before, .section-presscenter__categories::after {
  content: "";
  z-index: -1;
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  width: 1.5rem;
  height: 2.5rem;
  background-color: var(--color-white);
}
.section-presscenter__categories::after {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-gray);
  border-radius: 0.75rem;
}
.section-presscenter__category {
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.5rem;
  font-size: 13px;
  line-height: 170%;
  background-color: var(--color-white);
  border-radius: 0.35rem;
}
@media only screen and (min-width: 1025px) {
  .section-presscenter__category {
    gap: 1.5rem;
    padding: 1rem 1.1rem;
    font-size: 20px;
    line-height: 112%;
    background-color: #EAEAEA;
    border-radius: 0.5rem;
  }
}
@media (hover: hover) {
  .section-presscenter__category:hover {
    background-color: var(--color-white);
  }
  .section-presscenter__category:hover .section-presscenter__category-link {
    transform: translateX(20%);
  }
}
.section-presscenter__category-link {
  --circle-button-bg-c: transparent;
}

.section-events {
  padding-top: 1.5rem;
}
.section-events__heading {
  position: relative;
  max-width: 90%;
  margin-bottom: 1.25rem;
  line-height: 100%;
}
@media only screen and (min-width: 1025px) {
  .section-events__heading {
    max-width: 20rem;
    margin-top: -7.75rem;
    margin-bottom: 1.5rem;
    line-height: 90%;
  }
}
.section-events__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section-events__list:not(.expanded) > *:nth-child(n+5) {
  display: none;
}

.section-subscription {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  max-height: calc(100vh - var(--header-height));
  height: 32.5rem;
  color: var(--color-white);
  text-align: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, #000 24.84%, rgba(0, 0, 0, 0) 69.15%), url("/img/subscribe.png") center/cover no-repeat;
}
@media only screen and (min-width: 1025px) {
  .section-subscription {
    height: 38.65rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.section-subscription__heading {
  margin: 0 auto 1.25rem;
  color: inherit;
}
@media only screen and (min-width: 681px) {
  .section-subscription__heading {
    max-width: 22.5rem;
  }
}
@media only screen and (min-width: 1025px) {
  .section-subscription__heading {
    max-width: 30rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 1281px) {
  .section-subscription__heading {
    max-width: 51.6rem;
    margin-bottom: 6.5rem;
  }
}
.section-subscription__form {
  max-width: 30.1rem;
  width: 100%;
  margin: 0 auto;
}
.section-subscription__field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .section-subscription__field-wrapper {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
.section-subscription__input {
  text-align: center;
}
@media only screen and (min-width: 1025px) {
  .section-subscription__input {
    text-align: left;
  }
}
.section-subscription__button {
  --color-button__hover: var(--color-blue);
  --bg-color-button__hover: var(--color-white);
  --bd-color-button__hover: var(--color-white);
  flex-shrink: 0;
  width: 100%;
  padding-right: 1.75rem;
  padding-left: 1.75rem;
}
@media only screen and (min-width: 1025px) {
  .section-subscription__button {
    width: auto;
  }
}
.section-subscription__privacy {
  display: block;
  font-size: 0.5rem;
  line-height: normal;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1025px) {
  .section-subscription__privacy {
    font-size: 0.6rem;
    letter-spacing: 0.06rem;
  }
}
.section-subscription__privacy a {
  text-decoration: underline;
}
@media (hover: hover) {
  .section-subscription__privacy a:hover {
    text-decoration: none;
  }
}