@charset "UTF-8";
@font-face {
  font-family: RobotoMono;
  font-display: swap;
  src: url("../fonts/RobotoMono-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: RobotoMono;
  font-display: swap;
  src: url("../fonts/RobotoMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: RobotoMono;
  font-display: swap;
  src: url("../fonts/RobotoMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
:root {
  --grey: #808080;
  --blue: #0075FF;
}
@media (prefers-color-scheme: dark) {
  :root {
    --primary-text: #ffffff;
    --primary-bg: linear-gradient(270deg, #0F0F0F 0%, #1F1F1F 100%);
    --secondary-bg: #212121;
  }
}
@media (prefers-color-scheme: light) {
  :root {
    --primary-bg: #FDFDFD;
    --primary-text: #000000;
    --secondary-bg: #ffffff;
  }
}

:root.dark {
  --primary-text: #ffffff;
  --primary-bg: linear-gradient(270deg, #0F0F0F 0%, #1F1F1F 100%);
  --secondary-bg: #212121;
}

:root.light {
  --primary-bg: #FDFDFD;
  --primary-text: #000000;
  --secondary-bg: #ffffff;
}

:root {
  --section-padding: 50px;
  --font-size: 22px;
}
@media (max-width: 1166px) {
  :root {
    --font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --font-size: 18px;
    --section-padding: 32px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --font-size: 16px;
  }
}

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

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

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

body {
  line-height: 1;
  font-family: "Roboto Mono", monospace;
  font-size: var(--font-size);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Roboto Mono", monospace;
  font-size: inherit;
  line-height: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

html {
  background: var(--primary-bg);
}

body {
  color: var(--primary-text);
}
body .theme-white {
  display: block;
}
.dark body .theme-white {
  display: none;
}
body .theme-dark {
  display: none;
}
.dark body .theme-dark {
  display: block;
}
body img {
  max-width: 100%;
}
.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
.page {
  padding-top: 162px;
  position: relative;
}
@media (max-width: 1500px) {
  .page {
    padding-top: 90px;
  }
}
@media (max-width: 991.98px) {
  .page {
    padding-top: 90px;
  }
}
.page__decor {
  position: absolute;
  left: 100px;
  top: 0;
  display: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/
[class*=__container] {
  max-width: 1166px;
  margin: 0 auto;
  padding: 0 30px;
}

[class*=__container-big] {
  max-width: 1580px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 0 30px;
}
@media (max-width: 1200px) {
  [class*=__container-big] {
    display: block;
  }
}

[class*=__container2] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 1600px) {
  [class*=__container2] {
    max-width: 1166px;
  }
}

[class*=__container3] {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 1800px) and (min-width: 1800px) {
  [class*=__container3] {
    max-width: 1440px;
  }
}
@media (max-width: 1800px) and (min-width: 1400px) and (max-width: 1800px) {
  @supports (max-width: clamp( 1120px , 0.000001px  +  80vw , 1440px )) {
    [class*=__container3] {
      max-width: clamp( 1120px , 0.000001px  +  80vw , 1440px );
    }
  }
  @supports not (max-width: clamp( 1120px , 0.000001px  +  80vw , 1440px )) {
    [class*=__container3] {
      max-width: calc(1120px + 20 * (100vw - 1400px) / 25);
    }
  }
}
@media (max-width: 1800px) and (max-width: 1400px) {
  [class*=__container3] {
    max-width: 1120px;
  }
}
@media (max-width: 1400px) {
  [class*=__container3] {
    max-width: 1166px;
  }
}

.page__blocks {
  padding: 100px 0px;
}
@media (max-width: 991.98px) {
  .page__blocks {
    padding: 60px 0;
  }
}
.page__block:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 991.98px) {
  .page__block:not(:last-child) {
    margin-bottom: 60px;
  }
}
.page__title {
  font-size: 48px;
  max-width: 1107px;
  font-weight: 500;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 991.98px) {
  .page__title {
    font-size: 32px;
  }
}
.page__title:not(:last-child) {
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.button--big {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: rgba(0, 117, 255, 0.12);
  border: 2px solid #0075FF;
  border-radius: 11px;
  line-height: 28px;
  padding: 6px 30px 6px 14px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 767.98px) {
  .button--big {
    gap: 12px;
    padding: 11px 15px 11px 15px;
  }
}
@media (hover: hover) {
  .button--big:hover {
    background: rgba(0, 117, 255, 0.32);
  }
}
.button--big svg {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .button--big svg {
    width: 30px;
    height: 30px;
  }
}

.s-button {
  min-height: 69px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 22px;
  text-align: left;
  padding: 5px 24px;
  line-height: 1.1;
  border-radius: 11px;
  border: 2px solid #0078FF;
  background: rgba(0, 120, 255, 0.12);
  transition: all 0.3s ease;
}
@media (max-width: 1166px) {
  .s-button {
    font-size: 20px;
    min-height: 60px;
  }
}
@media (max-width: 991.98px) {
  .s-button {
    font-size: 18px;
    min-height: 55px;
  }
}
@media (max-width: 767.98px) {
  .s-button {
    font-size: 16px;
    min-height: 50px;
    padding: 10px 16px;
  }
}
.s-button svg {
  fill: var(--blue);
  flex-shrink: 0;
  aspect-ratio: 1;
  width: 2em;
}
@media (max-width: 767.98px) {
  .s-button svg {
    width: 1.5em;
  }
}
@media (hover: hover) {
  .s-button:hover {
    background: rgba(0, 117, 255, 0.32);
  }
}
.s-button:active {
  background: rgba(0, 120, 255, 0.12);
}
.s-button--light {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.s-button--light svg {
  fill: #fff;
}
@media (hover: hover) {
  .s-button--light:hover {
    background: rgba(255, 255, 255, 0.22);
  }
}
.s-button--light:active {
  background: rgba(255, 255, 255, 0.12);
}

.s-button-circle {
  padding: 8px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  background: var(--blue);
  transition: all 0.3s ease;
  color: #fff;
}
@media (hover: hover) {
  .s-button-circle:hover {
    background: #0660c5;
  }
}
.s-button-circle:active {
  background: var(--blue);
}
.s-button-circle svg, .s-button-circle img {
  width: 32px;
  aspect-ratio: 1;
  flex-shrink: 0;
  fill: transparent;
  stroke: #fff;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  background: transparent;
  border-radius: 0 !important;
  width: 100%;
  display: block;
  border-bottom: 2px solid #0075FF;
  font-size: 16px;
  line-height: 19px;
  padding-bottom: 20px;
  color: var(--blue);
}
.input--small {
  padding-bottom: 9.5px;
}
.input::placeholder {
  color: var(--blue);
  white-space: pre-line;
  position: relative;
}
.input._form-focus {
  outline: none;
}
.input._form-error {
  color: red;
  border-color: red;
}
.input._form-error::placeholder {
  color: red;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  transition: opacity 0.3s;
}
.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}

textarea.input {
  resize: none;
  padding-bottom: 0;
}
@media (max-width: 767.98px) {
  textarea.input {
    padding-bottom: 8px;
  }
}

.checkbox {
  position: relative;
}
.checkbox:not(:last-child) {
  margin-bottom: 5px;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__input:focus-visible + .checkbox__label:before {
  box-shadow: 0 0 5px #000;
}
.checkbox__input:checked + .checkbox__label:before {
  background: #000;
}
.checkbox__label {
  cursor: pointer;
  display: inline-flex;
  position: relative;
  gap: 10px;
}
.checkbox__label:before {
  content: "";
  align-self: flex-start;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #a7a9ac;
}
.checkbox__text {
  align-self: center;
}

.switch__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.switch__input:checked + .switch__label .switch__circle {
  transform: translateX(30px);
}
.switch__label {
  cursor: pointer;
  display: inline-flex;
  position: relative;
  width: 66px;
  height: 29px;
  background: #D9D9D9;
  border-radius: 19px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.dark .switch__label {
  background: #fff;
}
.switch__circle {
  width: 25px;
  position: absolute;
  height: 25px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  left: 5px;
  top: 2px;
  border-radius: 50%;
  background: url("../img/svg/sun.svg") center/16px 16px no-repeat, #fff;
}
.dark .switch__circle {
  background: url("../img/svg/moon.svg") center/12px 12px no-repeat, #000;
}

.select {
  min-width: 0;
  position: relative;
}
.select__body {
  position: relative;
}
.select__title {
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  background: transparent;
  font-size: 18px;
  color: var(--blue);
}
@media (max-width: 1166px) {
  .select__title {
    font-size: 16px;
  }
}
.select__value {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}
.select__value > * {
  flex: 1 1 auto;
}
.select__value:after {
  content: "";
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
  transition: all 0.3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/icons/arrow.svg") center/100% 100% no-repeat;
}
@media (max-width: 1166px) {
  .select__value:after {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }
}
._select-open .select__value:after {
  transform: rotate(-180deg);
}
.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}
.select__content {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select__text {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  position: absolute;
  min-width: 100%;
  left: 0;
  border-radius: 8px;
  background: #F6F6F6;
  top: calc(100% + 6.5px);
  padding: 4px 0;
}
.dark .select__options {
  background: #303030;
}
.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}
.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #000;
  display: block;
  padding: 4px 16px;
  font-size: 18px;
}
@media (max-width: 1166px) {
  .select__option {
    font-size: 16px;
  }
}
.dark .select__option {
  color: #fff;
}
.select__option._select-selected {
  background-color: #eee;
}
@media (any-hover: hover) {
  .select__option:hover {
    color: var(--blue);
  }
}
.select__row {
  display: inline-flex;
  align-items: center;
}
.select_show-top .select__options {
  top: auto;
  bottom: calc(100% + 6.5px);
}
._select-tag {
  cursor: pointer;
}

.rating {
  display: flex;
  align-items: center;
  font-size: 24px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  font-family: system-ui;
  content: "★★★★★";
  display: block;
  letter-spacing: 4px;
  color: #909090;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  font-family: system-ui;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: var(--blue);
  letter-spacing: 4px;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  padding: 0px 0px 0px 10px;
  color: #909090;
  font-size: 15.626px;
  font-weight: 400;
  line-height: 19.288px;
}

body::after {
  content: "";
  background: rgba(25, 25, 25, 0.7);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  transform: scale(1);
}

.popup__wrapper {
  flex-direction: column;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  transform: scale(0);
  transition: transform 0.3s ease 0s;
  background-color: #eee;
  padding: 64px;
  width: 100%;
  max-width: 781px;
  border-radius: 32px;
  background: var(--secondary-bg);
  position: relative;
}
@media (max-width: 767.98px) {
  .popup__content {
    padding: 32px 16px;
    border-radius: 16px;
  }
}
.lock .popup__content {
  visibility: visible;
}

.popup__close {
  position: absolute;
  top: 70px;
  right: 66px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .popup__close {
    top: 38px;
    right: 28px;
    width: 24px;
    height: 24px;
  }
}
.popup__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 44.5px;
  color: var(--blue);
  padding-right: 20px;
}
@media (max-width: 767.98px) {
  .popup__title {
    font-size: 18px;
    line-height: 22px;
    padding-right: 40px;
  }
}
.popup__title:not(:last-child) {
  margin-bottom: 32px;
}
.popup__text {
  line-height: 28px;
}
.popup__text:not(:last-child) {
  margin-bottom: 32px;
}
.form-popup__items {
  display: grid;
  gap: 32px;
}
.form-popup .form__next {
  display: block;
  margin-top: 40px;
  color: var(--blue);
}
.form-popup .form__next .form__icon {
  background: var(--blue);
}

[class*=-ibg], .ibg {
  position: relative;
}
[class*=-ibg] img, .ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.works-card__bottom ul::-webkit-scrollbar, .breadcrumbs::-webkit-scrollbar, textarea.input::-webkit-scrollbar {
  display: none;
}

.title {
  font-weight: 500;
  font-size: 36px;
  line-height: 38px;
  color: var(--blue);
}
@media (min-width: 1400px) {
  .title {
    font-size: 36px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  @supports (font-size: clamp( 24px , 9.417721519px  +  1.8987341772vw , 36px )) {
    .title {
      font-size: clamp( 24px , 9.417721519px  +  1.8987341772vw , 36px );
    }
  }
  @supports not (font-size: clamp( 24px , 9.417721519px  +  1.8987341772vw , 36px )) {
    .title {
      font-size: calc(24px + 0.75 * (100vw - 768px) / 39.5);
    }
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 24px;
  }
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.navigation__arrows {
  display: flex;
  gap: 45px;
}
@media (max-width: 767.98px) {
  .navigation__arrows {
    gap: 21px;
  }
}
.navigation__arrow {
  width: 41px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navigation__arrow.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4;
}
@media (hover: hover) {
  .navigation__arrow:hover svg {
    filter: drop-shadow(0px 0px 10px var(--blue));
  }
}
.navigation__arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--blue);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.navigation__pagination {
  display: flex;
  gap: 9px;
}
@media (max-width: 767.98px) {
  .navigation__pagination {
    gap: 5px;
  }
}
.navigation__pagination .swiper-pagination-bullet {
  background: var(--secondary-bg);
  border: 2px solid var(--blue);
  border-radius: 11px;
  width: 45px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  cursor: pointer;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
@media (max-width: 767.98px) {
  .navigation__pagination .swiper-pagination-bullet {
    width: 27px;
    height: 27px;
    border-radius: 7px;
    border-width: 1px;
  }
}
@media (hover: hover) {
  .navigation__pagination .swiper-pagination-bullet:hover {
    background: var(--blue);
    color: #fff;
  }
  .dark .navigation__pagination .swiper-pagination-bullet:hover {
    color: #131313;
  }
}
.navigation__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--blue);
  color: #fff;
}
.dark .navigation__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #131313;
}
.navigation__pagination-circle {
  display: flex;
  gap: 6px;
}
@media (max-width: 767.98px) {
  .navigation__pagination-circle {
    gap: 5px;
  }
}
.navigation__pagination-circle .swiper-pagination-bullet {
  border: 1px solid var(--blue);
  border-radius: 50%;
  width: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
@media (hover: hover) {
  .navigation__pagination-circle .swiper-pagination-bullet:hover {
    background: var(--blue);
    color: #fff;
  }
  .dark .navigation__pagination-circle .swiper-pagination-bullet:hover {
    color: #131313;
  }
}
.navigation__pagination-circle .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--blue);
  color: #fff;
}
.dark .navigation__pagination-circle .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #131313;
}

.section__mob-title {
  display: none;
}
@media (max-width: 1200px) {
  .section__mob-title {
    display: block;
    font-weight: 500;
    color: var(--blue);
    font-size: 36px;
    line-height: 1.5833333333;
  }
}
@media (max-width: 1200px) and (max-width: 767.98px) {
  .section__mob-title {
    font-size: 24px;
  }
}
.section__decor-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 140px;
  pointer-events: none;
  flex-shrink: 0;
  gap: 30px;
}
@media (max-width: 1400px) {
  .section__decor-block {
    width: 100px;
    align-items: center;
  }
}
@media (max-width: 1200px) {
  .section__decor-block {
    display: none;
  }
}
.section__left-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-weight: 500;
  font-size: 36px;
  color: var(--blue);
  line-height: 38px;
}
@media (max-width: 1400px) {
  .section__left-title {
    font-size: 30px;
  }
}
@media (max-width: 1700px) {
  .section__image svg {
    max-width: 100%;
    height: auto;
  }
}

.title-big {
  font-weight: 500;
  line-height: 1.1;
  min-height: 2.9em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1920px) {
  .title-big {
    font-size: 80px;
  }
}
@media (min-width: 991px) and (max-width: 1920px) {
  @supports (font-size: clamp( 48px , 13.8643702906px  +  3.4445640474vw , 80px )) {
    .title-big {
      font-size: clamp( 48px , 13.8643702906px  +  3.4445640474vw , 80px );
    }
  }
  @supports not (font-size: clamp( 48px , 13.8643702906px  +  3.4445640474vw , 80px )) {
    .title-big {
      font-size: calc(48px + 2 * (100vw - 991px) / 58.0625);
    }
  }
}
@media (max-width: 991px) {
  .title-big {
    font-size: 48px;
  }
}
@media (max-width: 1166px) {
  .title-big {
    min-height: 2.2em;
  }
}
@media (max-width: 991.98px) {
  .title-big {
    font-size: 48px;
  }
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--blue);
  font-size: 15.626px;
  line-height: 19.288px;
}
@media (max-width: 767.98px) {
  .link {
    gap: 18px;
  }
}
@media (hover: hover) {
  .link:hover .link__text::after {
    width: 100%;
  }
}
.link__text {
  position: relative;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.link__text::after {
  content: "";
  width: 0;
  height: 1px;
  bottom: -3px;
  background: var(--blue);
  position: absolute;
  left: 0;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.link__icon {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  background: var(--blue);
}
@media (max-width: 767.98px) {
  .link__icon {
    width: 35px;
    height: 35px;
  }
}
.dark .link__icon {
  color: #131313;
}
.link__icon svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}
@media (max-width: 767.98px) {
  .link__icon svg {
    width: 25px;
    height: 25px;
  }
}

.tags {
  position: relative;
  padding: 0 54px;
}
@media (max-width: 767.98px) {
  .tags {
    padding: 0;
  }
  .tags__slider.swiper {
    overflow: visible;
  }
}
.tags__arrows {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 2;
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .tags__arrows {
    top: 0;
    transform: translateY(0);
    gap: 60px;
    position: relative;
    margin-top: 16px;
    justify-content: flex-start;
  }
}
.tags__arrow {
  pointer-events: all;
  width: 41px;
  height: 41px;
  color: var(--blue);
  flex-shrink: 0;
}
.tags__arrow.next {
  transform: rotate(180deg);
}
.tags__arrow svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}
.tags .swiper-slide {
  width: auto;
}
.tags__item {
  min-height: 54px;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  text-transform: lowercase;
  align-items: center;
  border: 2px solid var(--blue);
  padding: 5px 21px;
  border-radius: 11px;
  background: var(--secondary-bg);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.tags__item.active {
  color: var(--primary-text);
  background: var(--blue);
}
@media (max-width: 767.98px) {
  .tags__item {
    min-height: 45px;
  }
}
@media (hover: hover) {
  .tags__item:hover {
    color: var(--primary-text);
    background: var(--blue);
  }
}

.tt-l {
  text-transform: lowercase;
}

.breadcrumbs {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px;
  margin: -4px;
}
.breadcrumbs__list {
  display: flex;
}
.breadcrumbs__list li {
  white-space: nowrap;
}
.breadcrumbs__list li:not(:last-child)::after {
  content: "/";
  display: inline-block;
  position: relative;
  margin: 0 16px;
  color: #909090;
}
@media (max-width: 767.98px) {
  .breadcrumbs__list li:not(:last-child)::after {
    margin: 0 8px;
  }
}
.breadcrumbs__list a {
  color: #909090;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.breadcrumbs__list a:hover {
  color: var(--blue);
}
.breadcrumbs__list span {
  color: var(--blue);
}

.alert {
  position: fixed;
  top: 161px;
  right: 78px;
  z-index: 100;
  border-radius: 8px;
  background: #D9D9D9;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  width: 490px;
  padding: 16px 48px 16px 16px;
}
@media (max-width: 991.98px) {
  .alert {
    right: 36px;
    top: 60px;
  }
}
@media (max-width: 767.98px) {
  .alert {
    width: 100%;
    max-width: 340px;
  }
}
@media (max-width: 479.98px) {
  .alert {
    max-width: calc(100% - 72px);
  }
}
.alert--active {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.dark .alert {
  background: #303030;
}
.alert__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.alert__close svg {
  fill: currentColor;
}
.alert__title {
  font-weight: 500;
  color: var(--blue);
  font-size: 24px;
}
@media (max-width: 767.98px) {
  .alert__title {
    font-size: 16px;
  }
}
.alert__title:not(:last-child) {
  margin-bottom: 8px;
}
.alert__text {
  font-size: 18px;
  line-height: 1.3333333333;
  color: #000;
}
@media (max-width: 767.98px) {
  .alert__text {
    font-size: 12px;
  }
}
.dark .alert__text {
  color: #909090;
}

.visibility-hidden {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.text-blue {
  color: var(--blue);
}

.inverted-image {
  filter: invert(100%);
}

.header {
  padding: 55px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 1500px) {
  .header {
    padding: 20px 0;
  }
}
.header_error .header__logo svg [data-animate-path] {
  display: none;
}
.header_home._header-scroll .header__logo svg [data-animate-path] {
  opacity: 0;
}
@media (max-width: 1400px) {
  .header_home .header__logo svg [data-animate-path] {
    display: block;
  }
}
@media (max-width: 1200px) {
  .header_home .header__logo svg [data-animate-path] {
    display: none;
  }
}
.header._header-scroll {
  background: var(--primary-bg);
  padding: 20px 0;
  box-shadow: 0px 0px 5px rgba(0, 117, 255, 0.2);
}
.header__container {
  max-width: 1770px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo {
  max-width: 235px;
  position: relative;
  min-height: 50px;
  width: 100%;
}
@media (max-width: 1200px) {
  .header__logo {
    min-height: 30px;
  }
}
.header__logo svg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.header__logo svg [data-color] {
  fill: #212121;
}
.dark .header__logo svg [data-color] {
  fill: #fff;
}
.header__logo svg [data-animate-path] {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 1400px) {
  .header__logo svg [data-animate-path] {
    display: none;
  }
}
.header__logo img {
  display: none !important;
}
.header__logo .light {
  display: none;
}
.dark .header__logo .light {
  display: block;
}
.header__logo .dark {
  display: block;
}
.dark .header__logo .dark {
  display: none;
}
@media (max-width: 1500px) {
  .header__logo {
    max-width: 170px;
  }
}
@media (max-width: 1200px) {
  .header__logo {
    max-width: 114px;
  }
}
.header__decor {
  position: relative;
}
.header__decor-line {
  position: absolute;
  top: 100%;
  left: 0;
}
.menu__body {
  display: flex;
  gap: 32px;
}
@media (max-width: 1200px) {
  .menu__body {
    gap: 16px;
  }
}
@media (max-width: 1100px) {
  .menu__body {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    flex-direction: column;
    align-items: flex-end;
    transform: translateX(100%);
    width: 271px;
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    overflow-y: auto;
    background: #FFFFFF;
    padding: 108px 35px 48px 89px;
  }
  .menu-open .menu__body {
    transform: translateX(0);
  }
  .dark .menu__body {
    background: #1D1D1D;
    z-index: 4;
  }
}
.menu__list {
  display: flex;
}
@media (max-width: 1100px) {
  .menu__list {
    flex-direction: column;
    gap: 34px;
    flex: 1 1 auto;
  }
  .menu .select {
    display: none;
  }
}
.menu__lang-list {
  display: flex;
  gap: 29px;
}
.menu__lang-list a {
  line-height: 29.628px;
  opacity: 0.4;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  min-width: 20px;
}
.menu__lang-list a:hover {
  color: var(--blue);
}
.menu__lang-list a.active {
  color: var(--blue);
  opacity: 1;
}
@media (min-width: 1100px) {
  .menu__lang-list {
    display: none;
  }
}
.menu__arrow-icon {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.menu__arrow-icon._spoller-active {
  transform: scaleY(-1);
}
.menu__sub-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  border-radius: 8px;
  background: #F6F6F6;
  padding: 16px;
  width: 342px;
  opacity: 0;
  visibility: hidden;
}
.loaded .menu__sub-list {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1100px) {
  .menu__sub-list {
    left: auto;
    right: 0;
    z-index: 3;
    width: 193px;
  }
}
.dark .menu__sub-list {
  background: #303030;
}
.menu__sub-item {
  padding: 8px 0;
  display: grid;
  grid-template-columns: 1fr 24px;
}
.menu__sub-item:not(:last-child) {
  border-bottom: 1px solid #585454;
}
.menu__sub-link {
  font-size: 18px;
  line-height: 1.3333333333;
  color: #000;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  padding-right: 8px;
}
@media (max-width: 1100px) {
  .menu__sub-link {
    font-size: 16px;
  }
}
.dark .menu__sub-link {
  color: #fff;
}
.menu__sub-link:hover {
  color: var(--blue);
}
.menu__sub2-list {
  gap: 8px;
  grid-column: 1/3;
  padding-top: 8px;
}
.menu__sub2-list li:not(:last-child) {
  margin-bottom: 8px;
}
.menu__sub2-list a {
  color: #848484;
  font-size: 18px;
  line-height: 1.3333333333;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 1100px) {
  .menu__sub2-list a {
    font-size: 16px;
  }
}
.menu__sub2-list a:hover {
  color: var(--blue);
}
.menu__item {
  position: relative;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
}
.menu__item._spoller-init {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1600px) {
  .menu__item {
    padding: 0 8px;
  }
}
@media (max-width: 1100px) {
  .menu__item {
    padding: 0;
    display: inline-block;
  }
}
.menu__item:not(:last-child) {
  position: relative;
}
.menu__item:not(:last-child)::after {
  content: "";
  height: 24px;
  top: 50%;
  right: 0;
  position: absolute;
  width: 1px;
  background: var(--primary-text);
  transform: translateY(-50%);
}
.dark .menu__item:not(:last-child)::after {
  background: var(--blue);
}
@media (max-width: 1300px) {
  .menu__item:not(:last-child)::after {
    height: 16px;
  }
}
@media (max-width: 1100px) {
  .menu__item:not(:last-child)::after {
    display: none;
  }
}
.menu__item:last-child {
  padding-right: 0;
}
.menu__link {
  line-height: 1.0909090909;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}
.menu__link + .menu__arrow-icon {
  cursor: pointer;
  margin-left: 8px;
  display: inline-block;
}
.dark .menu__link .menu__arrow-icon {
  color: var(--blue);
}
.menu__link._spoller-active .menu__arrow-icon {
  transform: scaleY(-1);
}
@media (max-width: 1600px) {
  .menu__link {
    font-size: 16px;
  }
}
@media (max-width: 1260px) {
  .menu__link {
    font-size: 14px;
  }
}
@media (max-width: 1170px) {
  .menu__link {
    font-size: 13px;
  }
}
@media (max-width: 1100px) {
  .menu__link {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--primary-text);
  }
}
.dark .menu__link {
  color: var(--blue);
}
@media (max-width: 1100px) {
  .dark .menu__link {
    color: var(--primary-text);
  }
}
@media (hover: hover) {
  .menu__link:hover::after {
    width: 100%;
  }
}
.menu__link::after {
  content: "";
  position: absolute;
  width: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  background: var(--blue);
}
.menu__arrow-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #000;
}
.dark .menu__arrow-icon {
  color: #fff;
}
.menu__arrow-icon svg {
  fill: currentColor;
}
.menu__right {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1400px) {
  .menu__right {
    gap: 16px;
  }
}
@media (max-width: 1100px) {
  .menu__right {
    flex-direction: column;
    gap: 20px 32px;
    align-items: flex-start;
  }
}
.menu__socials {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 1400px) {
  .menu__socials {
    gap: 15px;
  }
}
@media (max-width: 1100px) {
  .menu__socials {
    gap: 30px;
  }
}
.menu__socials li a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 1200px) {
  .menu__socials li a {
    width: 21px;
    height: 21px;
  }
}
.menu__socials li a img {
  max-height: 100%;
}
@media (hover: hover) {
  .menu__socials li a:hover {
    opacity: 0.5;
  }
}
@media (max-width: 1100px) {
  .menu__switch {
    position: absolute;
    top: 20px;
    left: 89px;
  }
}
.menu__decor {
  max-width: 58px;
  position: absolute;
  top: -30px;
  left: 30px;
}
@media (min-width: 1100px) {
  .menu__decor {
    display: none;
  }
}
.menu__decor svg {
  max-width: 100%;
}

.icon-menu {
  display: none;
}
@media (max-width: 1100px) {
  .icon-menu {
    display: block;
    position: relative;
    width: 27px;
    height: 20px;
    z-index: 5;
  }
}
@media (max-width: 1100px) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}
@media (max-width: 1100px) {
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    border-radius: 4px;
    height: 3px;
    background-color: var(--primary-text);
  }
  .icon-menu::before {
    top: 0;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .icon-menu span {
    top: calc(50% - 1.5px);
  }
  .menu-open .icon-menu span {
    width: 0;
  }
  .menu-open .icon-menu::before {
    top: calc(50% - 1.5px);
    transform: rotate(-45deg);
  }
  .menu-open .icon-menu::after {
    bottom: calc(50% - 1px);
    transform: rotate(45deg);
  }
}

.hero {
  padding: 70px 0 120px;
}
@media (max-width: 767.98px) {
  .hero {
    padding: 50px 0;
  }
}
.hero__text {
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .hero__text.mob-none {
    display: none;
  }
}
.hero__content {
  max-width: 764px;
  position: relative;
  width: 100%;
}
@media (max-width: 1600px) {
  .hero__content {
    max-width: 55%;
  }
}
@media (max-width: 767.98px) {
  .hero__content {
    max-width: 100%;
  }
}
.hero__content > *:not(:last-child) {
  margin-bottom: 82px;
}
@media (max-width: 991.98px) {
  .hero__content > *:not(:last-child) {
    margin-bottom: 70px;
  }
}
.hero__big-img {
  position: absolute;
  left: calc(100% + 30px);
  top: -30px;
  width: 913px;
  pointer-events: none;
}
@media (min-width: 1920px) {
  .hero__big-img {
    width: 913px;
  }
}
@media (min-width: 991px) and (max-width: 1920px) {
  @supports (width: clamp( 600px , 266.1108719053px  +  33.6921420883vw , 913px )) {
    .hero__big-img {
      width: clamp( 600px , 266.1108719053px  +  33.6921420883vw , 913px );
    }
  }
  @supports not (width: clamp( 600px , 266.1108719053px  +  33.6921420883vw , 913px )) {
    .hero__big-img {
      width: calc(600px + 19.5625 * (100vw - 991px) / 58.0625);
    }
  }
}
@media (max-width: 991px) {
  .hero__big-img {
    width: 600px;
  }
}
@media (max-width: 767.98px) {
  .hero__big-img {
    position: relative;
    left: 0;
    top: 0;
    max-width: 485px;
    margin: -30px auto 0;
    width: 100%;
  }
}
.hero__head {
  display: flex;
  align-items: center;
  gap: 31px;
  color: var(--blue);
}
@media (max-width: 767.98px) {
  .hero__head {
    gap: 27px;
    font-weight: 500;
  }
}
.hero__head img {
  max-width: 58px;
}
@media (max-width: 767.98px) {
  .hero__head img {
    max-width: 45px;
  }
}
.hero__title {
  font-weight: 500;
  font-size: 80px;
  line-height: 1.1;
}
@media (max-width: 1166px) {
  .hero__title {
    font-size: 72px;
  }
}
@media (max-width: 991.98px) {
  .hero__title {
    font-size: 64px;
  }
}
@media (max-width: 767.98px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (max-width: 375px) {
  .hero__title {
    font-size: 40px;
  }
}
.hero__button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: rgba(0, 117, 255, 0.12);
  border: 2px solid #0075FF;
  border-radius: 11px;
  line-height: 28px;
  padding: 6px 30px 6px 14px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 767.98px) {
  .hero__button {
    gap: 12px;
    padding: 11px 15px 11px 15px;
  }
}
@media (hover: hover) {
  .hero__button:hover {
    background: rgba(0, 117, 255, 0.32);
  }
}
.hero__button svg {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .hero__button svg {
    width: 30px;
    height: 30px;
  }
}

.text {
  padding: var(--section-padding) 0;
}
.text__title:not(:last-child) {
  margin-bottom: 32px;
}
.text__content {
  max-width: 975px;
  line-height: 28px;
}

.spoller {
  padding: 50px 0 70px;
}
.spoller_small .spoller__title {
  text-transform: lowercase;
}
.spoller_small .spoller__items {
  gap: 17px;
}
.spoller_small .item-spoller__title {
  text-transform: lowercase;
}
@media (max-width: 767.98px) {
  .spoller_small .item-spoller__title {
    min-height: 71px;
  }
  .spoller_2 .spoller__title:not(:last-child) {
    margin-bottom: 23px;
  }
  .spoller_2 .spoller__text-top:not(:last-child) {
    margin-bottom: 23px;
  }
}
.spoller__title:not(:last-child) {
  margin-bottom: 47px;
}
.spoller__text-top {
  line-height: 28px;
  max-width: 975px;
}
.spoller__text-top:not(:last-child) {
  margin-bottom: 47px;
}
.spoller__image-ibg {
  height: 243px;
  width: 100%;
  border-radius: 11px;
  overflow: hidden;
}
.spoller__image-ibg:not(:last-child) {
  margin-bottom: 24px;
}
.spoller__items {
  display: grid;
  gap: 8px;
}
@media (max-width: 767.98px) {
  .spoller__items {
    gap: 20px;
  }
}
.spoller__items:not(:last-child) {
  margin-bottom: 24px;
}
.spoller__bottom-text {
  max-width: 951px;
  line-height: 28px;
}

.item-spoller {
  background: var(--blue);
  border: 2px solid #0075FF;
  border-radius: 11px;
  min-width: 0;
}
.item-spoller__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  border-radius: 11px;
  padding: 13px 36px;
  font-weight: 500;
  font-size: 36px;
  line-height: 38px;
  background: var(--secondary-bg);
  text-align: left;
  color: var(--blue);
  min-height: 97px;
}
@media (max-width: 767.98px) {
  .item-spoller__title {
    font-size: 24px;
    padding: 13px 16px;
    gap: 8px;
  }
}
.item-spoller__title._spoller-active svg {
  transform: rotate(180deg);
}
.item-spoller__title svg {
  width: 41px;
  height: 41px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.item-spoller__text {
  color: var(--secondary-bg);
  max-width: 975px;
  padding: 27px 40px 47px 36px;
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .item-spoller__text {
    padding: 7px 16px 27px;
  }
}
.item-spoller__slider.swiper {
  padding: 27px 32px 47px;
}
@media (max-width: 767.98px) {
  .item-spoller__slider.swiper {
    padding: 8px 8px 28px;
  }
}
.item-spoller__icon {
  max-width: 128px;
}
.item-spoller__icon:not(:last-child) {
  margin-bottom: 72px;
}
@media (min-width: 767.98px) {
  .item-spoller__icon {
    display: none;
  }
}
.item-spoller__card {
  padding: 31px 25px;
  background: var(--secondary-bg);
  border: 2px solid var(--blue);
  border-radius: 11px;
}
.item-spoller__card p {
  line-height: 28px;
}
.item-spoller__card h4 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4615384615;
  color: var(--blue);
}
.item-spoller__card h4:not(:last-child) {
  margin-bottom: 14px;
}
.item-spoller__navigation {
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .item-spoller__navigation {
    margin-top: 18px;
  }
}
.item-spoller .navigation__arrow svg {
  fill: #FDFDFD;
}
.dark .item-spoller .navigation__arrow svg {
  fill: #212121;
}
.item-spoller .navigation__pagination .swiper-pagination-bullet {
  border-color: var(--secondary-bg);
}

.benefit {
  padding: 58px 0 52px;
}
.benefit__title:not(:last-child) {
  margin-bottom: 70px;
}
@media (max-width: 991.98px) {
  .benefit__title:not(:last-child) {
    margin-bottom: 40px;
  }
}
.benefit__items {
  display: grid;
  gap: 32px;
}
.benefit__item {
  display: flex;
  align-items: flex-start;
  gap: 74px;
}
@media (max-width: 991.98px) {
  .benefit__item {
    gap: 32px;
  }
}
@media (max-width: 767.98px) {
  .benefit__item {
    gap: 24px;
  }
}
@media (hover: hover) {
  .benefit__item:hover .benefit__icon {
    background: var(--blue);
  }
  .benefit__item:hover .benefit__icon svg {
    fill: var(--secondary-bg);
  }
}
.benefit__icon {
  width: 113px;
  height: 115px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding: 11px 8px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  background: var(--secondary-bg);
  border: 2px solid var(--blue);
  border-radius: 11px;
}
@media (max-width: 991.98px) {
  .benefit__icon {
    width: 71px;
    height: 72px;
    padding: 5px;
  }
}
@media (max-width: 767.98px) {
  .benefit__icon {
    width: 58px;
    height: 58px;
  }
}
.benefit__icon svg {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  width: 45px;
  height: 45px;
  fill: var(--blue);
}
@media (max-width: 991.98px) {
  .benefit__icon svg {
    width: 30px;
    height: 30px;
  }
}
.benefit__text {
  line-height: 28px;
}

.step {
  padding: 50px 0;
}
.step__title:not(:last-child) {
  margin-bottom: 55px;
}
@media (max-width: 767.98px) {
  .step__title:not(:last-child) {
    margin-bottom: 16px;
  }
  .step__title.mb-70 {
    margin-bottom: 70px;
  }
}
.step__descr {
  max-width: 975px;
  line-height: 28px;
}
.step__descr:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .step__descr:not(:last-child) {
    margin-bottom: 41px;
  }
}
.step__items {
  display: grid;
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 991.98px) {
  .step__items {
    gap: 32px;
  }
}
.step__item {
  display: flex;
  align-items: center;
  gap: 74px;
}
.step__item_finish {
  gap: 38px;
}
@media (max-width: 767.98px) {
  .step__item_finish {
    align-items: flex-start;
  }
  .step__item_finish .step__text {
    padding-top: 40px;
  }
  .step__item_finish .step__digit {
    width: 100%;
    height: 100%;
    padding: 8px 11px;
    background: #fff;
    z-index: 2;
    border-radius: 11px;
    align-items: flex-end;
    display: flex;
  }
  .dark .step__item_finish .step__digit {
    background: #1D1D1D;
  }
}
.step__item_finish .step__icon {
  width: 212px;
}
@media (max-width: 767.98px) {
  .step__item_finish .step__icon {
    width: 58px;
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  .step__item {
    gap: 32px;
  }
}
@media (max-width: 767.98px) {
  .step__item {
    gap: 24px;
  }
}
@media (hover: hover) {
  .step__item:hover .step__icon {
    background: var(--blue);
  }
  .step__item:hover .step__digit::before {
    color: var(--secondary-bg);
  }
}
.step__icon {
  background: var(--secondary-bg);
  border: 2px solid var(--blue);
  border-radius: 11px;
  width: 113px;
  height: 115px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 14px 19px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 991.98px) {
  .step__icon {
    width: 72px;
    height: 72px;
    padding: 8px 11px;
  }
}
@media (max-width: 767.98px) {
  .step__icon {
    width: 58px;
    height: 58px;
  }
}
.step__finish {
  background: var(--blue);
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 112px;
  height: 100%;
  font-weight: 500;
  line-height: 28.5px;
  display: flex;
  align-items: flex-end;
  border-radius: 8px;
  padding: 14px;
}
@media (max-width: 991.98px) {
  .step__finish {
    padding: 5px;
  }
}
@media (max-width: 767.98px) {
  .step__finish {
    width: 197px;
    color: #181818;
    align-items: center;
    justify-content: flex-end;
    height: 32px;
    right: auto;
    left: 0;
    top: -2px;
  }
}
.step__digit {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.0555555556;
  color: var(--blue);
}
@media (max-width: 991.98px) {
  .step__digit {
    font-size: 24px;
  }
}
.step__digit::before {
  counter-increment: step;
  content: counter(step);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.step__text {
  line-height: 28px;
}

.info {
  padding: 50px 0;
}
.info__title:not(:last-child) {
  margin-bottom: 47px;
}
@media (max-width: 767.98px) {
  .info__title:not(:last-child) {
    margin-bottom: 24px;
  }
}
.info__text {
  line-height: 28px;
  max-width: 975px;
}
.info__text:not(:last-child) {
  margin-bottom: 47px;
}
@media (max-width: 767.98px) {
  .info__text:not(:last-child) {
    margin-bottom: 18px;
  }
}
.info__image-ibg {
  height: 243px;
  border-radius: 11px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .info__image-ibg {
    height: 287px;
  }
}

.links {
  padding: 50px 0;
}
.links__title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .links__title:not(:last-child) {
    margin-bottom: 24px;
  }
}
.links__text {
  line-height: 28px;
  max-width: 1020px;
}
.links__text:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .links__text:not(:last-child) {
    margin-bottom: 24px;
  }
}
.links__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 991.98px) {
  .links__items {
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .links__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.links__items a {
  background: var(--secondary-bg);
  border: 2px solid var(--blue);
  border-radius: 11px;
  display: flex;
  align-items: center;
  padding: 18px 16px;
  gap: 36px;
  line-height: 28px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 991.98px) {
  .links__items a {
    gap: 16px;
  }
}
@media (hover: hover) {
  .links__items a:hover {
    background: var(--blue);
    color: var(--secondary-bg);
  }
  .links__items a:hover svg {
    fill: var(--secondary-bg);
  }
}
.links__items a svg {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  fill: var(--blue);
}

.process {
  padding: 58px 0 52px;
}
.process--vacancies {
  padding: 60px 0 70px;
}
@media (max-width: 991.98px) {
  .process--vacancies {
    padding: 40px 0 90px;
  }
}
.process--vacancies .process__content {
  max-width: 1074px;
}
@media (max-width: 767.98px) {
  .process--vacancies .process__items {
    gap: 16px;
  }
}
.process--vacancies .process__item {
  min-height: 152px;
}
@media (min-width: 767.98px) {
  .process--vacancies .process__item {
    align-items: center;
  }
}
.process--vacancies .process__icon {
  margin-top: 8px;
}
.process--vacancies .process__head-text {
  max-width: 100%;
}
.process__title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .process__title:not(:last-child) {
    margin-bottom: 16px;
  }
}
.process__head-text {
  max-width: 951px;
  line-height: 28px;
}
.process__head-text:not(:last-child) {
  margin-bottom: 55px;
}
@media (max-width: 767.98px) {
  .process__head-text:not(:last-child) {
    margin-bottom: 41px;
  }
}
.process__image-ibg {
  height: 243px;
  border-radius: 11px;
  overflow: hidden;
}
.process__image-ibg img {
  object-position: center;
}
.process__image-ibg:not(:last-child) {
  margin-bottom: 64px;
}
@media (max-width: 991.98px) {
  .process__image-ibg:not(:last-child) {
    margin-bottom: 32px;
  }
}
.process__items {
  display: grid;
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 991.98px) {
  .process__items {
    gap: 32px;
  }
}
.process__item {
  display: flex;
  align-items: flex-start;
  gap: 74px;
}
@media (max-width: 991.98px) {
  .process__item {
    gap: 32px;
  }
}
@media (max-width: 767.98px) {
  .process__item {
    gap: 24px;
  }
}
@media (hover: hover) {
  .process__item:hover .process__icon {
    background: var(--blue);
  }
  .process__item:hover .process__icon .process__digit {
    color: var(--secondary-bg);
  }
}
.process__icon {
  width: 113px;
  height: 115px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px 19px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  background: var(--secondary-bg);
  border: 2px solid var(--blue);
  border-radius: 11px;
}
@media (max-width: 991.98px) {
  .process__icon {
    width: 72px;
    height: 72px;
    padding: 8px 11px;
  }
}
@media (max-width: 767.98px) {
  .process__icon {
    width: 58px;
    height: 58px;
  }
}
.process__icon svg {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  width: 45px;
  height: 45px;
  fill: var(--blue);
}
.process__digit {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.0555555556;
  color: var(--blue);
}
@media (max-width: 991.98px) {
  .process__digit {
    font-size: 24px;
  }
}
.process__digit::before {
  counter-increment: step;
  content: counter(step);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.process__text {
  line-height: 28px;
}
.process__text h4 {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1388888889;
  color: var(--blue);
}
@media (max-width: 767.98px) {
  .process__text h4 {
    font-size: 24px;
  }
}
.process__text h4:not(:last-child) {
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .process__text h4:not(:last-child) {
    margin-bottom: 16px;
  }
}

.slides {
  padding: var(--section-padding) 0;
}
.slides_big .slides-card h4 {
  color: var(--blue);
}
.slides__title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .slides__title:not(:last-child) {
    margin-bottom: 24px;
  }
}
.slides .swiper-slide {
  height: auto;
}
.slides__navigation {
  margin-top: 32px;
}
@media (max-width: 767.98px) {
  .slides__navigation {
    margin-top: 24px;
  }
}

.slides-card {
  background: var(--secondary-bg);
  height: 100%;
  border: 2px solid #0075FF;
  border-radius: 11px;
  padding: 24px 24px 44px;
}
.slides-card h4 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4615384615;
  color: var(--blue);
  min-height: 75px;
  color: #212121;
}
.dark .slides-card h4 {
  color: #fff;
}
.slides-card h4:not(:last-child) {
  margin-bottom: 43px;
}
.slides-card p {
  line-height: 28px;
}
.slides-card__icon {
  width: 95px;
}
.slides-card__icon:not(:last-child) {
  margin-bottom: 43px;
}

.slides-big {
  padding: var(--section-padding) 0;
}
.slides-big__title:not(:last-child) {
  margin-bottom: 68px;
}
@media (max-width: 991.98px) {
  .slides-big__title:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .slides-big__title:not(:last-child) {
    margin-bottom: 24px;
  }
}
.slides-big__description {
  max-width: 950px;
  line-height: 28px;
}
.slides-big__description:not(:last-child) {
  margin-bottom: 68px;
}
@media (max-width: 991.98px) {
  .slides-big__description:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .slides-big__description:not(:last-child) {
    margin-bottom: 24px;
  }
}
.slides-big__card {
  display: flex;
}
@media (max-width: 767.98px) {
  .slides-big__card {
    flex-direction: column;
  }
}
.slides-big__image-ibg {
  width: 100%;
  border-radius: 11px;
  overflow: hidden;
  margin-right: -30px;
}
@media (max-width: 767.98px) {
  .slides-big__image-ibg {
    height: 236px;
    margin-right: 0;
    margin-bottom: -30px;
  }
}
.slides-big__content {
  width: 48.2820976492%;
  flex-shrink: 0;
  padding: 40px;
  background: var(--secondary-bg);
  border: 2px solid var(--blue);
  border-radius: 11px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .slides-big__content {
    padding: 12px 24px;
  }
}
@media (max-width: 767.98px) {
  .slides-big__content {
    width: 100%;
  }
}
.slides-big__content p {
  line-height: 28px;
}
.slides-big__content h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1388888889;
  text-transform: capitalize;
  color: var(--blue);
}
@media (max-width: 991.98px) {
  .slides-big__content h3 {
    font-size: 24px;
  }
}
.slides-big__content h3:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .slides-big__content h3:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media (max-width: 767.98px) {
  .slides-big__content h3:not(:last-child) {
    margin-bottom: 8px;
  }
}
.slides-big__navigation {
  margin-top: 68px;
}
@media (max-width: 991.98px) {
  .slides-big__navigation {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .slides-big__navigation {
    margin-top: 18px;
  }
}
.small {
  padding: var(--section-padding) 0;
}
.small__title:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .small__title:not(:last-child) {
    margin-bottom: 24px;
  }
}
.small__text {
  max-width: 950px;
  line-height: 28px;
}
.small__text:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .small__text:not(:last-child) {
    margin-bottom: 24px;
  }
}
.small__slider .swiper-wrapper {
  max-height: 250px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (max-width: 550px) {
  .small__slider .swiper-wrapper {
    max-height: 374px;
  }
}
.small .swiper-slide {
  height: 110px;
}
@media (max-width: 550px) {
  .small .swiper-slide {
    height: 80px;
  }
}
.small__item {
  display: flex;
  align-items: center;
  height: 100%;
  background: var(--secondary-bg);
  border: 2px solid var(--blue);
  border-radius: 11px;
  padding: 27px 16px;
  line-height: 28px;
}
@media (max-width: 550px) {
  .small__item {
    padding: 12px 30px;
  }
}
.small__navigation {
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .small__navigation {
    margin-top: 18px;
  }
}

.form {
  padding: var(--section-padding) 0;
}
.form_small .form__image {
  margin-right: 0;
}
.form_small .form__container {
  max-width: 1440px;
}
.form_big {
  padding-top: 90px;
}
@media (max-width: 767.98px) {
  .form_big {
    padding-top: 70px;
  }
  .form_big .form__bottom {
    padding-top: 52px;
  }
}
.form_big .form__main {
  max-width: 781px;
}
.form_big .form__image {
  width: 673px;
  transform: translateY(-40%);
}
@media (max-width: 1650px) {
  .form_big .form__image {
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .form_big .form__image {
    transform: translateY(0);
    position: relative;
    top: 0;
    right: -20%;
  }
}
.form_big .form__image img {
  width: 100%;
}
@media (max-width: 767.98px) {
  .form_big .form__image img {
    width: auto;
  }
}
.form__container_article {
  max-width: 1333px;
}
@media (max-width: 1580px) {
  .form__container_article {
    max-width: 1170px;
  }
}
.form__text {
  color: #000;
  font-size: 10px;
  line-height: 16.5px;
}
.form__text a {
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (hover: hover) {
  .form__text a:hover {
    color: var(--blue);
  }
}
.dark .form__text {
  color: rgba(255, 255, 255, 0.49);
}
@media (min-width: 767.98px) {
  .form__text {
    display: none;
  }
}
.form__image-mob {
  margin-bottom: 30px;
}
@media (min-width: 767.98px) {
  .form__image-mob {
    display: none;
  }
}
.form .section__image {
  transform: translateX(-20px);
  width: 100%;
}
@media (max-width: 1400px) {
  .form .section__image {
    transform: translateX(10px);
  }
}
.form .section__image svg {
  position: absolute;
  top: 0;
}
.form__title-big {
  max-width: 750px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .form__title-big {
    margin-bottom: 34px;
  }
}
.form__send-text {
  color: var(--blue);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.5277777778;
  display: none;
}
@media (max-width: 991.98px) {
  .form__send-text {
    font-size: 24px;
  }
}
.send-form .form__send-text {
  display: block;
}
.form__mob-title {
  font-weight: 500;
  font-size: 24px;
  color: var(--blue);
}
@media (min-width: 767.98px) {
  .form__mob-title {
    display: none;
  }
}
.form__mob-title:not(:last-child) {
  margin-bottom: 90px;
}
.form__row {
  display: flex;
  align-items: center;
  gap: 122px;
  min-width: 0;
}
@media (max-width: 1600px) {
  .form__row {
    gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .form__row {
    position: relative;
  }
}
.form__main {
  flex: 1 1 auto;
  min-width: 0;
}
.form__form-block {
  pointer-events: none;
}
.send-form .form__form-block {
  display: none;
}
.form__slider.swiper {
  overflow: visible;
  padding: 100px 0;
  margin: -100px 0;
}
.form__slider .swiper-wrapper {
  pointer-events: all;
}
@media (max-width: 767.98px) {
  .form__slider .swiper-wrapper {
    align-items: flex-end;
  }
}
.form__next {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #212121;
  min-height: 57px;
}
.finish .form__next {
  display: none;
}
.dark .form__next {
  color: var(--blue);
}
@media (hover: hover) {
  .form__next:hover .form__icon {
    transform: translateX(10px);
  }
}
.form__icon {
  width: 41px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #212121;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.form__icon svg {
  fill: #fff;
}
.dark .form__icon {
  background: var(--blue);
}
.dark .form__icon svg {
  fill: #1A1A1A;
}
.form__bottom {
  display: flex;
  pointer-events: all;
  align-items: center;
  gap: 30px;
  margin-top: 100px;
  min-height: 58px;
}
@media (max-width: 767.98px) {
  .form__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    padding-top: 225px;
    margin-top: 0;
    position: relative;
  }
}
.form .swiper-slide.swiper-slide-active {
  z-index: 2;
}
.form__pagination {
  display: flex;
  gap: 6px;
}
.form__pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #0075FF;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.form__pagination .swiper-pagination-bullet.complete {
  background: var(--blue);
}
.form__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--blue);
}
@media (hover: hover) {
  .form__pagination .swiper-pagination-bullet:hover {
    background: var(--blue);
  }
}
.form__image {
  width: 516px;
  flex-shrink: 0;
  margin-right: -314px;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .form__image {
    margin-right: -100px;
    width: 450px;
  }
}
@media (max-width: 1166px) {
  .form__image {
    width: 400px;
  }
}
@media (max-width: 991.98px) {
  .form__image {
    width: 319px;
  }
}
@media (max-width: 767.98px) {
  .form__image {
    position: absolute;
    top: 50px;
    right: -164px;
    margin-right: 0;
  }
}
.form__send {
  align-items: center;
  gap: 20px;
  padding: 8px 16px 8px 10px;
  background: var(--blue);
  border-radius: 30px;
  display: none;
}
.finish .form__send {
  display: inline-flex;
}
.form__send span {
  color: #fff;
}
.form__send .form__icon {
  background: transparent;
  border: 1px solid #FFFFFF;
}
.form__send .form__icon svg {
  fill: #fff;
}

.form-item {
  position: relative;
}
.form-item__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2222222222;
  color: var(--blue);
  max-width: 635px;
}
@media (max-width: 991.98px) {
  .form-item__title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .form-item__title {
    font-size: 24px;
    font-weight: 400;
  }
}
.form-item__title:not(:last-child) {
  margin-bottom: 110px;
}
@media (max-width: 991.98px) {
  .form-item__title:not(:last-child) {
    margin-bottom: 70px;
  }
}
.form-item .calendar__btn {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 14px;
  bottom: 14px;
}
@media (max-width: 767.98px) {
  .form-item .calendar__btn {
    width: 18px;
    height: 18px;
    bottom: 26px;
  }
}
.form-item__input_data-calendar {
  display: block;
}
.form-item__input_data-calendar .input {
  padding-right: 44px;
  font-size: 14px;
}
.form-item__row {
  display: flex;
  gap: 14px;
}

.input_phone-code {
  text-align: center;
  width: 64px;
}

.services {
  padding: 23px 0 38px;
}
@media (max-width: 767.98px) {
  .services {
    padding: 40px 0 44px;
  }
}
.services_spoller .services__list {
  gap: 35px;
}
@media (max-width: 991.98px) {
  .services_spoller .services__list {
    gap: 20px;
  }
}
.services_spoller .services__item {
  display: block;
  padding-left: 120px;
}
@media (max-width: 991.98px) {
  .services_spoller .services__item {
    padding-left: 50px;
  }
}
.services_spoller .services__item:nth-child(1) .services__image-decor {
  transform: translate(12%, -34%);
}
@media (max-width: 767.98px) {
  .services_spoller .services__item:nth-child(1) .services__image-decor {
    max-width: 190px;
    transform: translate(19%, -14%);
  }
}
.services_spoller .services__item:nth-child(2) .services__image-decor {
  transform: translate(0%, -34%);
}
.services_spoller .services__item:nth-child(3) .services__image-decor {
  transform: translate(15%, -17%);
}
@media (max-width: 767.98px) {
  .services_spoller .services__item:nth-child(3) .services__image-decor {
    max-width: 350px;
    transform: translate(0%, 0%);
  }
}
.services_spoller .services__item:nth-child(4) .services__image-decor {
  transform: translate(15%, -10%);
}
@media (max-width: 767.98px) {
  .services_spoller .services__item:nth-child(4) .services__image-decor {
    max-width: 250px;
    transform: translate(5%, -12%);
  }
}
.services_spoller .services__item:nth-child(5) .services__image-decor {
  transform: translate(35%, -5%);
}
@media (max-width: 767.98px) {
  .services_spoller .services__item:nth-child(5) .services__image-decor {
    max-width: 238px;
    transform: translate(5%, -5%);
  }
}
.services_spoller .services__item:nth-child(6) .services__image-decor {
  transform: translate(-10%, 0%);
}
@media (max-width: 767.98px) {
  .services_spoller .services__item:nth-child(6) .services__image-decor {
    max-width: 258px;
    transform: translate(5%, -10%);
  }
}
.services_spoller .services__item:nth-child(7) .services__image-decor {
  transform: translate(10%, -10%);
}
@media (max-width: 767.98px) {
  .services_spoller .services__item:nth-child(7) .services__image-decor {
    max-width: 236px;
  }
}
.services_spoller .services__item:nth-child(8) .services__image-decor {
  transform: translate(-20%, -20%);
}
@media (max-width: 767.98px) {
  .services_spoller .services__item:nth-child(8) .services__image-decor {
    width: 500px;
    max-width: 500px;
    transform: translate(-10%, -27%);
  }
  .services_spoller .services__item:nth-child(8) .services__image-decor img {
    max-width: none;
    width: 100%;
  }
}
.services_spoller .services__item:nth-child(9) .services__image-decor {
  transform: translate(-10%, -17%);
}
@media (max-width: 767.98px) {
  .services_spoller .services__item:nth-child(9) .services__image-decor {
    transform: translate(5%, -17%);
  }
}
.services_spoller .services__digit {
  position: absolute;
  bottom: 0;
  left: -124px;
}
@media (max-width: 991.98px) {
  .services_spoller .services__digit {
    left: -50px;
  }
}
.services .section__image {
  flex-shrink: 0;
  transform: translateX(-10px);
}
@media (max-width: 1400px) {
  .services .section__image {
    transform: translateX(5px);
  }
}
.services .section__mob-title:not(:last-child) {
  margin-bottom: 30px;
}
.services__spoller-row {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  padding: 40px 0 30px;
}
@media (max-width: 767.98px) {
  .services__spoller-row {
    padding: 24px 0 30px;
    flex-direction: column;
    gap: 22px;
  }
}
.services__image-decor {
  opacity: 0;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  pointer-events: none;
  top: 0px;
  left: 7%;
  transform: translate(50%, -36%);
}
@media (max-width: 991.98px) {
  .services__image-decor {
    max-width: 300px;
  }
}
.services__spoller-list {
  display: grid;
  gap: 11px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .services__spoller-list {
    gap: 22px;
  }
}
.services__spoller-list li a {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 767.98px) {
  .services__spoller-list li a {
    gap: 20px;
  }
  .services__spoller-list li a img {
    width: 30px;
    flex-shrink: 0;
  }
}
@media (hover: hover) {
  .services__spoller-list li a:hover {
    color: var(--blue);
  }
}
.services__title-spoller {
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  gap: 70px;
  position: relative;
}
@media (max-width: 1166px) {
  .services__title-spoller {
    gap: 40px;
  }
}
@media (max-width: 991.98px) {
  .services__title-spoller {
    gap: 23px;
  }
}
@media (max-width: 767.98px) {
  .services__title-spoller {
    word-break: break-word;
  }
}
.services__title-spoller._spoller-active .services__image-decor {
  opacity: 1;
}
.services__title-spoller._spoller-active .services__button-link {
  opacity: 1;
  visibility: visible;
}
.services__title-spoller._spoller-active .services__text p {
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-text);
}
.services__title-spoller:hover .services__text p {
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-text);
}
.services__list {
  counter-reset: count;
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 2;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .services__list {
    gap: 38px;
  }
}
.services__image2 {
  position: absolute;
  left: 215px;
  top: 0;
  max-width: 613px;
}
@media (max-width: 1166px) {
  .services__image2 {
    max-width: 450px;
  }
}
@media (max-width: 767.98px) {
  .services__image2 {
    max-width: 350px;
    width: 350px;
    left: 50px;
  }
}
.services__wrap {
  position: relative;
}
.services__item {
  counter-increment: count;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  gap: 70px;
}
@media (max-width: 1166px) {
  .services__item {
    gap: 40px;
  }
}
@media (max-width: 991.98px) {
  .services__item {
    gap: 23px;
  }
}
.services__item:hover .services__text {
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-text);
}
.services__digit {
  flex-shrink: 0;
  font-size: 40px;
  transform: translateY(-34px);
  align-self: flex-end;
  position: relative;
  z-index: 2;
}
@media (max-width: 1166px) {
  .services__digit {
    transform: translateY(-24px);
    font-size: 32px;
  }
}
@media (max-width: 991.98px) {
  .services__digit {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .services__digit {
    font-size: 16px;
    transform: translateY(-10px);
  }
}
.services__digit::after {
  color: var(--blue);
  content: counter(count, decimal-leading-zero);
}
.services__text {
  display: flex;
  align-items: center;
  gap: 24px 40px;
}
.services__text p {
  font-size: 80px;
  position: relative;
  z-index: 2;
  font-weight: 400;
  line-height: 1.725;
  -webkit-text-stroke: 2px var(--primary-text);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 1166px) {
  .services__text p {
    font-size: 64px;
  }
}
@media (max-width: 991.98px) {
  .services__text p {
    font-size: 54px;
  }
}
@media (max-width: 767.98px) {
  .services__text p {
    font-size: 32px;
    line-height: 1.4166666667;
  }
}
@media (max-width: 479.98px) {
  .services__text p {
    font-size: 26px;
  }
}
.services__button-link {
  display: inline-flex;
  align-items: center;
  -webkit-text-stroke: 0px;
  height: 60px;
  border-radius: 11px;
  border: 2px solid #0075FF;
  background: rgba(0, 117, 255, 0.12);
  padding: 3px 11px 3px 14px;
  min-width: 220px;
  gap: 26px;
  color: var(--primary-text);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  position: relative;
  z-index: 2;
}
@media (max-width: 1166px) {
  .services__button-link {
    min-width: auto;
    height: 45px;
    font-size: 16px;
    gap: 9px;
  }
  .services__button-link svg {
    width: 30px;
    height: 30px;
  }
}
.services__button-link:hover {
  background: rgba(0, 117, 255, 0.32);
}

.main-block {
  position: relative;
  padding: 262px 0 376px;
}
@media (max-width: 1166px) {
  .main-block {
    padding: 200px 0 250px;
  }
}
@media (max-width: 767.98px) {
  .main-block {
    padding: 34px 0 400px;
  }
}
.main-block__container-big {
  width: 100%;
}
.main-block__link {
  padding: 30px;
  border-radius: 20px 0px 0px 20px;
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  line-height: 24px;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  background: rgba(255, 255, 255, 0.65);
}
@media (max-width: 991.98px) {
  .main-block__link {
    padding: 16px 20px;
    font-size: 14px;
    gap: 15px;
  }
}
@media (hover: hover) {
  .main-block__link:hover {
    box-shadow: 0px 0px 10px 0px var(--blue);
  }
}
.main-block__link .light {
  display: block;
}
.dark .main-block__link .light {
  display: none;
}
.main-block__link img {
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .main-block__link img {
    max-width: 138px;
  }
}
.main-block__link .dark {
  display: none;
}
.dark .main-block__link .dark {
  display: block;
}
.dark .main-block__link {
  background: rgba(2, 34, 64, 0.65);
}
.main-block__title {
  font-weight: 500;
  font-size: 80px;
  line-height: 88px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1166px) {
  .main-block__title {
    font-size: 64px;
  }
}
@media (max-width: 767.98px) {
  .main-block__title {
    font-size: 48px;
    line-height: 1.3333333333;
  }
}
.main-block__title br {
  display: none;
}
@media (max-width: 767.98px) {
  .main-block__title br {
    display: block;
  }
}
.main-block__title .title-decor {
  opacity: 0;
}
.main-block__title div {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
}
.main-block__title::before {
  content: attr(data-content);
  display: inline-block;
  position: relative;
}
.main-block__title p {
  display: inline-block;
}
.main-block__title .carret {
  animation: blink-caret 1s step-end infinite;
}
.main-block__title span {
  color: var(--blue);
}
.main-block__image {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 978px;
  pointer-events: none;
}
@media (max-width: 1400px) {
  .main-block__image {
    max-width: 600px;
    top: 100px;
  }
}
@media (max-width: 991.98px) {
  .main-block__image {
    width: 500px;
    top: 178px;
    right: -30px;
  }
}
@media (max-width: 400px) {
  .main-block__image {
    top: 278px;
  }
}

@keyframes blink-caret {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.expertise {
  margin-top: -40px;
  padding: 67px 0 100px;
  position: relative;
}
@media (max-width: 1400px) {
  .expertise {
    margin-top: 0;
  }
}
@media (max-width: 1200px) {
  .expertise {
    padding-bottom: 170px;
  }
}
@media (max-width: 991.98px) {
  .expertise {
    padding-bottom: 0px;
  }
}
@media (max-width: 767.98px) {
  .expertise {
    padding: 20px 0 0px;
  }
}
.expertise_web {
  margin-top: 0 !important;
  padding: 50px 0 65px;
}
@media (max-width: 767.98px) {
  .expertise_web {
    padding: 50px 0 30px;
  }
}
.expertise__wrap {
  width: 100%;
}
.expertise__title2:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 767.98px) {
  .expertise__title2:not(:last-child) {
    margin-bottom: 50px;
  }
}
.expertise .section__mob-title:not(:last-child) {
  margin-bottom: 30px;
}
.expertise .navigation__arrows {
  margin-top: 40px;
}
@media (min-width: 767.98px) {
  .expertise .navigation__arrows {
    display: none;
  }
}
.expertise__top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 767.98px) {
  .expertise__top {
    flex-direction: column;
  }
}
.expertise__top:not(:last-child) {
  margin-bottom: 132px;
}
@media (max-width: 1166px) {
  .expertise__top:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .expertise__top:not(:last-child) {
    margin-bottom: 52px;
  }
}
.expertise .section__image {
  transform: translateX(-67px);
}
@media (max-width: 1400px) {
  .expertise .section__image {
    transform: translateX(-37px);
  }
}
.expertise .section__decor-block {
  padding-top: 170px;
}
@media (max-width: 1400px) {
  .expertise .section__decor-block {
    padding-top: 0;
  }
}
@media (max-width: 767.98px) {
  .expertise__left {
    display: flex;
    align-items: flex-start;
    gap: 27px;
  }
}
.expertise__link {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 27px;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  max-width: 253px;
  color: var(--blue);
  background: rgba(0, 117, 255, 0.18);
  border: 2px solid #0075FF;
  border-radius: 14px 0px 0px 14px;
  padding: 23px 40px 23px 20px;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 991.98px) {
  .expertise__link {
    display: none;
  }
}
@media (hover: hover) {
  .expertise__link:hover {
    background: rgba(0, 117, 255, 0.38);
  }
}
.expertise__link img {
  width: 51px;
  flex-shrink: 0;
}
@media (max-width: 1166px) {
  .expertise__image {
    max-width: 100px;
  }
}
@media (max-width: 767.98px) {
  .expertise__image {
    max-width: 53px;
    transform: translateY(10px);
  }
}
.expertise__image:not(:last-child) {
  margin-bottom: 48px;
}
.expertise__title {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.375;
}
@media (max-width: 1166px) {
  .expertise__title {
    font-size: 48px;
  }
}
@media (max-width: 767.98px) {
  .expertise__title {
    font-size: 36px;
  }
}
.expertise__right {
  max-width: 720px;
  flex-grow: 1;
}
@media (max-width: 991.98px) {
  .expertise__right {
    width: 50%;
    flex-shrink: 0;
  }
}
@media (max-width: 767.98px) {
  .expertise__right {
    max-width: 100%;
    width: 100%;
  }
}
.expertise__slider.swiper {
  overflow: visible;
}
.expertise__slider .swiper-wrapper {
  display: grid;
  gap: 11px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media (max-width: 767.98px) {
  .expertise__slider .swiper-wrapper {
    display: flex;
    gap: 0px;
  }
  .expertise__slider .swiper-slide {
    width: 147px;
  }
}
.expertise__card {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  border-radius: 11px;
  height: 130px;
}
@media (max-width: 1166px) {
  .expertise__card {
    height: 90px;
  }
}
@media (max-width: 767.98px) {
  .expertise__card {
    height: 111px;
    border-radius: 9.43117px;
  }
}
.expertise__card svg {
  fill: var(--primary-text);
}
.dark .expertise__card {
  background: #303030;
}
.expertise__card svg {
  max-width: 100%;
  max-height: 100%;
}
.expertise-case {
  max-width: 1120px;
}
.expertise-case__slider.swiper {
  overflow: visible;
}
.expertise-case__slider .navigation__arrows {
  margin-top: 50px;
}
.expertise-case__slider .swiper-wrapper {
  display: grid;
  gap: 30px 101px;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
@media (max-width: 991.98px) {
  .expertise-case__slider .swiper-wrapper {
    gap: 30px 71px;
  }
}
@media (max-width: 767.98px) {
  .expertise-case__slider .swiper-wrapper {
    gap: 0px;
    display: flex;
    flex-wrap: nowrap;
  }
}
.expertise-case__slider .swiper-slide {
  width: auto;
}
@media (max-width: 767.98px) {
  .expertise-case__slider .swiper-slide {
    width: 120px;
  }
}
.expertise-case__item {
  max-width: 170px;
  display: block;
}
@media (hover: hover) {
  .expertise-case__item:hover .expertise-case__text {
    color: var(--blue);
  }
  .expertise-case__item:hover .expertise-case__icon svg {
    fill: var(--blue);
  }
}
.expertise-case__icon {
  height: 79px;
}
@media (max-width: 767.98px) {
  .expertise-case__icon {
    height: 51px;
  }
}
.expertise-case__icon svg {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  fill: var(--primary-text);
  max-height: 100%;
  width: auto;
}
.expertise-case__icon:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .expertise-case__icon:not(:last-child) {
    margin-bottom: 20px;
  }
}
.expertise-case__text {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  line-height: 1.0909090909;
}
@media (max-width: 767.98px) {
  .expertise-case__text {
    line-height: 1;
  }
}

.clients {
  padding: 130px 0 60px;
}
@media (max-width: 767.98px) {
  .clients {
    padding: 50px 0;
  }
}
.clients--v2 {
  padding: 60px 0 150px;
}
@media (max-width: 1166px) {
  .clients--v2 {
    padding-bottom: 100px;
  }
}
@media (max-width: 767.98px) {
  .clients--v2 {
    padding-bottom: 50px;
  }
}
.clients--v2 .clients__title:not(:last-child) {
  margin-bottom: 32px;
}
.clients--v2 .clients__slider {
  margin: 0;
}
.clients .section__image {
  transform: translateX(20px);
}
@media (max-width: 1400px) {
  .clients .section__image {
    transform: translateX(25px);
  }
}
.clients .section__mob-title:not(:last-child) {
  margin-bottom: 40px;
}
.clients__slider {
  max-width: 1126px;
}
.clients__slider.swiper {
  overflow: visible;
}
@media (min-width: 767.98px) {
  .clients__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
@media (max-width: 991.98px) {
  .clients__slider .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .clients__slider .swiper-slide {
    width: 145px;
  }
}
.clients__card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #F8F8F8;
  border-radius: 10px;
  height: 195px;
}
@media (max-width: 767.98px) {
  .clients__card {
    height: 110px;
    border-radius: 5px;
  }
}
.dark .clients__card {
  background: #303030;
}
.clients__card img {
  max-height: 100%;
}
.clients__card img.dark {
  display: block;
}
.dark .clients__card img.dark {
  display: none;
}
.clients__card img.light {
  display: none;
}
.dark .clients__card img.light {
  display: block;
}
.clients .navigation__arrows {
  margin-top: 38px;
}
@media (min-width: 767.98px) {
  .clients .navigation__arrows {
    display: none;
  }
}
.proc {
  padding: 120px 0;
}
@media (max-width: 991.98px) {
  .proc {
    padding: 80px 0;
  }
}
.proc__title:not(:last-child) {
  margin-bottom: 40px;
}
.proc__links {
  display: flex;
  align-items: center;
  margin-top: 150px;
  gap: 40px;
}
@media (max-width: 767.98px) {
  .proc__links {
    margin-top: 130px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-left: 24px;
  }
  .proc__links br {
    display: none;
  }
  .proc__links li {
    list-style: disc;
  }
}
.proc__links li:not(:first-child) .proc__link {
  padding-left: 16px;
}
@media (max-width: 767.98px) {
  .proc__links li:not(:first-child) .proc__link {
    padding-left: 0;
  }
}
.proc__links li:not(:first-child) .proc__link::after {
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: #000;
  position: absolute;
}
.dark .proc__links li:not(:first-child) .proc__link::after {
  background: #FFF;
}
@media (max-width: 767.98px) {
  .proc__links li:not(:first-child) .proc__link::after {
    display: none;
  }
}
.proc__link {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  font-size: 22px;
  line-height: 28px;
  position: relative;
}
@media (max-width: 991.98px) {
  .proc__link {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .proc__link {
    font-size: 16px;
    display: inline;
  }
}
.proc__link:hover {
  color: var(--blue);
}
.proc__text {
  font-size: 22px;
  line-height: 1.2727272727;
}
@media (max-width: 767.98px) {
  .proc__text {
    font-size: 16px;
  }
}
.proc__text:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 767.98px) {
  .proc__text:not(:last-child) {
    margin-bottom: 64px;
  }
}
.proc__slider .swiper-slide {
  height: auto;
}
@media (max-width: 767.98px) {
  .proc__slider.swiper {
    overflow: visible;
  }
}
@media (min-width: 767.98px) {
  .proc__slider .swiper-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.proc__navigation {
  margin-top: 50px;
}
@media (min-width: 767.98px) {
  .proc__navigation {
    display: none;
  }
}
.card-proc {
  border-radius: 11px;
  border: 2px solid #0075FF;
  padding: 48px 24px;
  background: var(--secondary-bg);
  height: 100%;
}
@media (max-width: 991.98px) {
  .card-proc {
    padding: 32px 16px;
  }
}
.card-proc__icon {
  height: 120px;
}
@media (max-width: 767.98px) {
  .card-proc__icon {
    height: 64px;
  }
}
.card-proc__icon:not(:last-child) {
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .card-proc__icon:not(:last-child) {
    margin-bottom: 24px;
  }
}
.card-proc__icon img {
  max-height: 100%;
}
.card-proc__title {
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.0769230769;
  color: var(--blue);
}
@media (max-width: 767.98px) {
  .card-proc__title {
    font-size: 20px;
  }
}
.card-proc__title:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .card-proc__title:not(:last-child) {
    margin-bottom: 16px;
  }
}
.card-proc__text {
  font-size: 22px;
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .card-proc__text {
    font-size: 16px;
  }
  .video {
    padding-bottom: 50px;
  }
}
.video__wrap {
  width: 100%;
  position: relative;
  padding-bottom: 118px;
}
.video .section__mob-title:not(:last-child) {
  margin-bottom: 30px;
}
.video .section__image {
  transform: translateX(-70px);
}
@media (max-width: 1400px) {
  .video .section__image {
    transform: translateX(-16px);
  }
}
.video__block {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
}
@media (max-width: 767.98px) {
  .video__block {
    padding-bottom: 56.1728395062%;
  }
}
.video__block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
}
.video__poster {
  background: #D1D1D1;
  border-radius: 11px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.dark .video__poster {
  background: linear-gradient(0deg, #212121, #212121);
}
.play .video__poster {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991.98px) {
  .video__play {
    max-width: 70px;
  }
}
@media (max-width: 767.98px) {
  .video__play {
    max-width: 50px;
  }
}
@media (max-width: 479.98px) {
  .video__play {
    max-width: 26px;
  }
}
.video__block-decor {
  width: 227px;
  position: absolute;
  top: 129px;
  left: calc(100% - 30px);
}
@media (max-width: 1400px) {
  .video__block-decor {
    width: 140px;
  }
}
@media (max-width: 767.98px) {
  .video__block-decor {
    max-width: 125px;
    top: auto;
    transform: translate(-50%, 100px) rotate(90deg);
    left: 50%;
    bottom: 0;
  }
  .choose {
    padding: 23px 0 45px;
  }
}
.choose .section__image {
  transform: translateX(-40px);
}
@media (max-width: 1400px) {
  .choose .section__image {
    transform: translateX(-5px);
  }
}
.choose .section__mob-title:not(:last-child) {
  margin-bottom: 48px;
}
.choose__wrap {
  min-width: 0;
}
.choose .navigation__arrows {
  margin-top: 38px;
}
@media (max-width: 767.98px) {
  .choose .navigation__arrows {
    margin-top: 44px;
  }
}
.choose__items {
  display: flex;
  border-radius: 11px;
  min-width: 0;
}
@media (max-width: 767.98px) {
  .choose__items {
    flex-direction: column;
  }
}
.choose__item {
  padding: 56px 30px 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: calc(25% + 15px);
  min-height: 566px;
  z-index: 2;
  border: 2px solid #0075FF;
  border-radius: 11px;
  background: #FDFDFD;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 1166px) {
  .choose__item {
    min-height: 400px;
  }
}
@media (max-width: 991.98px) {
  .choose__item {
    padding: 26px 30px 20px 16px;
    min-height: 350px;
  }
}
@media (max-width: 767.98px) {
  .choose__item {
    width: 100%;
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 40px 20px 20px 20px;
  }
}
.dark .choose__item {
  background: #212121;
}
@media (hover: hover) {
  .choose__item:hover {
    background: var(--blue);
  }
  .choose__item:hover .choose__text {
    color: #fff;
  }
  .choose__item:hover .choose__icon svg {
    fill: #FFF;
  }
}
@media (max-width: 767.98px) {
  .choose__item:not(:last-child) {
    margin-bottom: -30px;
  }
  .choose__item:first-child {
    z-index: 4;
    min-height: 140px;
    padding-top: 20px;
  }
  .choose__item:nth-child(2) {
    z-index: 3;
  }
  .choose__item:nth-child(3) {
    z-index: 2;
  }
  .choose__item:last-child {
    z-index: 1;
  }
}
.choose__item:not(:first-child) {
  margin-left: -20px;
}
@media (max-width: 767.98px) {
  .choose__item:not(:first-child) {
    margin-left: 0;
    min-height: 160px;
  }
}
.choose__icon {
  height: 150px;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .choose__icon {
    max-width: 80px;
    flex-shrink: 0;
  }
}
@media (max-width: 767.98px) {
  .choose__icon {
    width: 50px;
    display: flex;
    height: auto;
    justify-content: center;
  }
}
.choose__icon svg, .choose__icon img {
  max-width: 100%;
  max-height: 100%;
  fill: var(--blue);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 767.98px) {
  .choose__icon svg, .choose__icon img {
    height: auto;
  }
}
.choose__text {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  line-height: 1.2727272727;
  min-height: 125px;
  flex: 1 1 auto;
}
@media (max-width: 991.98px) {
  .choose__text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .choose__text {
    min-height: auto;
  }
}
.works {
  padding-top: 30px;
}
@media (max-width: 1200px) {
  .works {
    padding-bottom: 18px;
  }
}
@media (max-width: 767.98px) {
  .works {
    padding-top: 0;
  }
}
.works .section__image {
  transform: translateX(-15px);
}
@media (max-width: 1400px) {
  .works .section__image {
    transform: translateX(20px);
  }
}
.works .section__mob-title:not(:last-child) {
  margin-bottom: 50px;
}
.works_web {
  padding: 70px 0;
}
@media (max-width: 767.98px) {
  .works_web {
    padding: 30px 0;
  }
}
.works__wrap {
  min-width: 0;
}
.works__title:not(:last-child) {
  margin-bottom: 56px;
}
@media (max-width: 600px) {
  .works__slider .swiper-wrapper {
    max-height: 420px;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.works__title:not(:last-child) {
  margin-bottom: 56px;
}
@media (max-width: 767.98px) {
  .works__title:not(:last-child) {
    margin-bottom: 50px;
  }
}
.works__row {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .works__row {
    margin-top: 44px;
  }
}
.works__link {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  font-size: 20px;
  line-height: 27px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 767.98px) {
  .works__link {
    display: none;
  }
}
@media (hover: hover) {
  .works__link:hover {
    color: var(--blue);
  }
  .works__link:hover svg {
    stroke: var(--blue);
  }
}
.works__link svg {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  stroke: var(--primary-text);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.works-card {
  word-break: break-word;
  display: flex;
  min-height: 408px;
}
@media (max-width: 1400px) {
  .works-card {
    min-height: 350px;
  }
}
@media (max-width: 600px) {
  .works-card {
    min-height: auto;
  }
}
@media (hover: hover) {
  .works-card:hover .works-card__title {
    color: #fff;
  }
  .works-card:hover .works-card__bottom ul li {
    color: #fff;
  }
  .works-card:hover .works-card__bottom ul li svg {
    fill: #fff;
  }
  .works-card:hover .works-card__link {
    background: #fff;
    border-color: #fff;
  }
  .works-card:hover .works-card__link svg {
    fill: var(--blue);
  }
  .works-card:hover .works-card__content {
    background: var(--blue);
    border-color: var(--blue);
  }
}
.works-card__image-ibg {
  border-radius: 11px;
  overflow: hidden;
  width: 51.1827956989%;
  margin-right: -20px;
  flex-shrink: 0;
}
@media (max-width: 1400px) {
  .works-card__image-ibg {
    width: 42.5806451613%;
  }
}
@media (max-width: 767.98px) {
  .works-card__image-ibg {
    width: 50.4918032787%;
  }
}
.works-card__content {
  border-radius: 11px;
  border: 2px solid #131313;
  position: relative;
  z-index: 2;
  background: var(--secondary-bg);
  padding: 40px 10px 20px 34px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  flex: 1 1 auto;
}
@media (max-width: 1400px) {
  .works-card__content {
    padding: 40px 10px 20px 20px;
  }
}
@media (max-width: 767.98px) {
  .works-card__content {
    padding: 27px 20px 12px 20px;
    gap: 9px;
  }
}
@media (max-width: 600px) {
  .works-card__content {
    width: 40%;
  }
}
.dark .works-card__content {
  border-color: var(--blue);
}
@media (max-width: 767.98px) {
  .works-card__top {
    min-height: 55px;
  }
}
@media (max-width: 600px) {
  .works-card__top {
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}
.works-card__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1388888889;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #131313;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 1600px) {
  .works-card__title {
    font-size: 24px;
  }
}
.dark .works-card__title {
  color: var(--blue);
}
.works-card__bottom {
  flex: 1 1 auto;
  gap: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 195px;
}
@media (max-width: 1400px) {
  .works-card__bottom {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .works-card__bottom {
    font-size: 10px;
    gap: 24px;
  }
}
.works-card__bottom ul {
  display: grid;
  gap: 17px;
}
@media (max-width: 767.98px) {
  .works-card__bottom ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .works-card__bottom ul {
    white-space: nowrap;
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
  }
}
.works-card__bottom ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 767.98px) {
  .works-card__bottom ul li {
    gap: 6px;
  }
}
.dark .works-card__bottom ul li {
  color: var(--blue);
}
.works-card__bottom ul li svg {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  width: 28px;
  height: auto;
  flex-shrink: 0;
  fill: #131313;
}
@media (max-width: 1400px) {
  .works-card__bottom ul li svg {
    width: 18px;
  }
}
@media (max-width: 767.98px) {
  .works-card__bottom ul li svg {
    width: 17px;
  }
}
.dark .works-card__bottom ul li svg {
  fill: var(--blue);
}
.works-card__link {
  width: 41px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #131313;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 767.98px) {
  .works-card__link {
    width: 35px;
    height: 35px;
  }
}
.dark .works-card__link {
  border-color: var(--blue);
  background: var(--blue);
}
.works-card__link svg {
  fill: #212121;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 767.98px) {
  .works-card__link svg {
    width: 25px;
    height: 25px;
  }
}

.team {
  padding-top: 20px;
}
.team .works__row {
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .team {
    padding: 11px 0 44px;
  }
}
.team .section__mob-title:not(:last-child) {
  margin-bottom: 44px;
}
.team .section__image {
  transform: translateX(-25px);
}
@media (max-width: 1400px) {
  .team .section__image {
    transform: translateX(15px);
  }
}
.team__wrap {
  min-width: 0;
}
@media (max-width: 600px) {
  .team__slider .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 500px;
  }
}
@media (max-width: 479.98px) {
  .team__slider .swiper-wrapper {
    max-height: 400px;
  }
}
.team__slider .swiper-slide {
  height: auto;
}
.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 600px) {
  .team-card {
    flex-direction: row;
  }
}
@media (hover: hover) {
  .team-card:hover .team-card__content {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
  }
  .team-card:hover .works-card__link {
    background: #fff;
    border-color: #fff;
  }
  .team-card:hover .works-card__link svg {
    fill: var(--blue);
  }
}
.team-card__image-ibg {
  border-radius: 11px;
  padding-bottom: 96.8115942029%;
  overflow: hidden;
}
@media (max-width: 600px) {
  .team-card__image-ibg {
    width: 50.8196721311%;
    flex-shrink: 0;
    margin-right: -20px;
    padding-bottom: 0;
    min-height: 240px;
  }
}
@media (max-width: 479.98px) {
  .team-card__image-ibg {
    min-height: 170px;
  }
}
.team-card__content {
  background: var(--secondary-bg);
  border: 2px solid #131313;
  border-radius: 11px;
  margin-top: -25px;
  position: relative;
  z-index: 2;
  padding: 38px 27px 24px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  color: #131313;
  flex: 1 1 auto;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1166px) {
  .team-card__content {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .team-card__content {
    margin-top: 0;
    padding: 15px 11px;
  }
}
.dark .team-card__content {
  border-color: var(--blue);
  color: var(--blue);
}
.team-card__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  text-transform: capitalize;
}
.team-card__title:not(:last-child) {
  margin-bottom: 27px;
}
@media (max-width: 767.98px) {
  .team-card__title:not(:last-child) {
    margin-bottom: 10px;
  }
}
.team-card__row {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 600px) {
  .team-card__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.team-card .works-card__link {
  flex-shrink: 0;
}
.team-card__info {
  font-size: 15.6264px;
  line-height: 19px;
}
@media (max-width: 600px) {
  .team-card__info {
    font-size: 10px;
    line-height: 11px;
  }
  .team-card__info br {
    display: none;
  }
}

.map {
  padding-top: 30px;
}
.map .section__mob-title:not(:last-child) {
  margin-bottom: 30px;
}
.map .section__image {
  transform: translateX(-67px);
}
@media (max-width: 1400px) {
  .map .section__image {
    transform: translateX(-10px);
  }
}
.map__wrap {
  flex: 1 1 auto;
}
.map__block {
  padding-bottom: 50%;
  border-radius: 10.8761px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (max-width: 767.98px) {
  .map__block {
    padding-bottom: 156.1904761905%;
  }
}
.map__block #map {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
}

.error {
  padding: 206px 0 240px;
}
@media (max-width: 1600px) {
  .error {
    padding: 130px 0;
  }
}
@media (max-width: 1166px) {
  .error {
    padding: 90px 0;
  }
}
@media (max-width: 991.98px) {
  .error {
    padding: 50px 0 122px;
  }
}
.error__container {
  max-width: 1610px;
}
.error__row {
  display: flex;
  align-items: center;
  gap: 166px;
}
@media (max-width: 1500px) {
  .error__row {
    gap: 60px;
  }
}
@media (max-width: 767.98px) {
  .error__row {
    flex-direction: column;
    gap: 10px;
  }
}
.error__row_404 .error__planet {
  transform: translateY(-41.6666666667%);
}
@media (max-width: 767.98px) {
  .error__row_404 .error__planet {
    transform: translate(0, 0);
  }
}
.error__row_404 .error__decor {
  transform: translateY(84.9420849421%);
  right: 50px;
}
@media (max-width: 767.98px) {
  .error__row_404 .error__decor {
    transform: translate(0, 0);
  }
}
.error__images {
  position: relative;
}
@media (max-width: 767.98px) {
  .error__images {
    max-width: 400px;
    margin: 0 auto;
  }
}
.error__planet {
  position: absolute;
  left: 100px;
  top: 0;
  transform: translateY(27.7777777778%);
  width: 18.9723320158%;
}
@media (max-width: 767.98px) {
  .error__planet {
    left: 0px;
    transform: translateY(0);
    position: relative;
    margin-left: 30px;
    margin-bottom: -30px;
  }
}
.error__decor {
  position: absolute;
  bottom: 0;
  transform: translateY(57.9150579151%);
  right: 100px;
  width: 34.1238471673%;
}
@media (max-width: 767.98px) {
  .error__decor {
    right: 0px;
    transform: translateX(-30px);
    position: relative;
    margin-left: auto;
    margin-top: -20px;
  }
}
.error__content {
  width: 635px;
  flex-shrink: 0;
}
@media (max-width: 1166px) {
  .error__content {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .error__content {
    width: 100%;
  }
}
.error__title-big {
  font-size: 80px;
  font-weight: 500;
  line-height: 88.5px;
}
@media (max-width: 991.98px) {
  .error__title-big {
    font-size: 48px;
    line-height: 1.1666666667;
  }
}
.error__title-big:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .error__title-big:not(:last-child) {
    margin-bottom: 15px;
  }
}
.error__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 44.5px;
  color: var(--blue);
}
@media (max-width: 991.98px) {
  .error__title {
    font-size: 24px;
    line-height: 37.5px;
  }
}
.error__title:not(:last-child) {
  margin-bottom: 49px;
}
@media (max-width: 991.98px) {
  .error__title:not(:last-child) {
    margin-bottom: 15px;
  }
}
.error__text {
  color: #000;
  line-height: 28px;
}
@media (max-width: 991.98px) {
  .error__text {
    line-height: 1.375;
  }
}
.dark .error__text {
  color: #fff;
}

.blog-main {
  padding: 31px 0 130px;
}
@media (max-width: 991.98px) {
  .blog-main {
    padding: 30px 0 50px;
  }
}
@media (max-width: 767.98px) {
  .blog-main {
    padding: 38px 0 27px;
  }
}
.blog-main__head {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.626px;
  line-height: 19.288px;
}
@media (max-width: 767.98px) {
  .blog-main__head {
    margin-bottom: 42px;
  }
}
.blog-main .rating {
  margin: 30px 0;
}
@media (max-width: 767.98px) {
  .blog-main .rating {
    display: none;
  }
}
.blog-main__tag {
  padding: 12px;
  color: var(--blue);
  border-radius: 11px;
  border: 2px solid #0075FF;
}
.blog-main__date {
  color: #909090;
}
.blog-main__title:not(:last-child) {
  margin-bottom: 32px;
}
.blog-main__row {
  display: flex;
  align-items: flex-start;
  gap: 58px;
}
@media (max-width: 991.98px) {
  .blog-main__row {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .blog-main__row {
    flex-direction: column;
    gap: 40px;
  }
}
.blog-main__title2 {
  text-transform: capitalize;
}
.blog-main__title2:not(:last-child) {
  margin-bottom: 14px;
}
@media (max-width: 767.98px) {
  .blog-main__title2:not(:last-child) {
    margin-bottom: 25px;
  }
}
.blog-main__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 15.626px;
  line-height: 19.288px;
}
.blog-main__labels:not(:last-child) {
  margin-bottom: 30px;
}
.blog-main__text {
  line-height: 28px;
}
.blog-main__text:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .blog-main__text:not(:last-child) {
    margin-bottom: 48px;
  }
}
.blog-main__image-ibg {
  border-radius: 11px;
  overflow: hidden;
  padding-bottom: 34.6428571429%;
  width: 41.7142857143%;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .blog-main__image-ibg {
    width: 100%;
    padding-bottom: 57.1428571429%;
    margin: 0 auto 42px;
    max-width: 100%;
  }
}
@media (max-width: 479.98px) {
  .blog-main__image-ibg {
    padding-bottom: 83.7209302326%;
  }
}

.articles {
  padding: 59px 0 80px;
}
@media (max-width: 767.98px) {
  .articles {
    padding: 27px 0 50px;
  }
}
.articles__container2 {
  max-width: 1333px;
}
@media (max-width: 1600px) {
  .articles__container2 {
    max-width: 1170px;
  }
}
.articles__tags:not(:last-child) {
  margin-bottom: 110px;
}
@media (max-width: 767.98px) {
  .articles__tags:not(:last-child) {
    margin-bottom: 40px;
  }
}
.articles__grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 22px;
}
@media (max-width: 991.98px) {
  .articles__grid-layout {
    grid-template-columns: repeat(1, 1fr);
  }
}

.article {
  min-height: 506px;
  display: flex;
  flex-direction: column;
}
.article .rating__active::before {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.article .rating__value {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 550px) {
  .article .rating {
    display: none;
  }
}
.article .rating:not(:last-child) {
  margin-bottom: 35px;
}
@media (hover: hover) {
  .article:hover .rating__value {
    color: #80BAFF;
  }
  .article:hover .rating__active::before {
    color: #fff;
  }
}
.article:nth-child(5n) {
  grid-column: 1/3;
}
@media (max-width: 991.98px) {
  .article:nth-child(5n) {
    grid-column: 1/2;
  }
}
.article__row {
  display: flex;
  height: 100%;
  flex: 1 1 auto;
}
@media (max-width: 550px) {
  .article__row {
    flex-direction: column-reverse;
  }
}
@media (hover: hover) {
  .article__row:hover .link {
    color: #fff;
  }
  .article__row:hover .link__icon {
    background: #fff;
    color: var(--blue);
  }
  .article__row:hover .article__content {
    background: var(--blue);
    color: #fff;
  }
  .article__row:hover .article__labels time {
    color: rgba(255, 255, 255, 0.5);
  }
  .article__row:hover .article__title {
    color: #fff;
  }
}
.article__image-ibg {
  border-radius: 11px 0 0 11px;
  overflow: hidden;
  flex: 1 1 auto;
  margin-right: -20px;
}
@media (max-width: 550px) {
  .article__image-ibg._pc {
    display: none;
  }
}
@media (min-width: 550px) {
  .article__image-ibg._mob {
    display: none;
  }
}
@media (max-width: 550px) {
  .article__image-ibg {
    margin-right: 0;
    margin-top: -20px;
    height: 251px;
    border-radius: 16px;
    margin: 7px 0 24px;
  }
}
.article__content {
  flex-shrink: 0;
  width: 58.1430745814%;
  border-radius: 11px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
  padding: 33px 20px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 767.98px) {
  .article__content {
    padding: 25px 20px;
  }
}
@media (max-width: 550px) {
  .article__content {
    width: 100%;
    min-height: auto;
    gap: 30px;
  }
}
.article__top {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.article__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--blue);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 550px) {
  .article__title {
    line-height: 34.5px;
  }
}
.article__title:not(:last-child) {
  margin-bottom: 17px;
}
.article__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 15.626px;
  line-height: 19.288px;
}
.article__labels time {
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.dark .article__labels time {
  color: rgba(255, 255, 255, 0.5);
}
.article__labels:not(:last-child) {
  margin-bottom: 17px;
}
.article__text {
  font-size: 15.626px;
  line-height: 19.288px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-block {
  padding: 50px 0;
}
@media (max-width: 767.98px) {
  .hero-block {
    padding: 44px 0;
  }
}
.hero-block_web .hero-block__title:not(:last-child) {
  margin-bottom: 123px;
}
@media (max-width: 1166px) {
  .hero-block_web .hero-block__title:not(:last-child) {
    margin-bottom: 60px;
  }
}
.hero-block_web .hero-block__image {
  margin-right: -200px;
}
@media (max-width: 767.98px) {
  .hero-block_web .hero-block__image {
    margin-right: -170px;
    max-width: 500px;
  }
}
@media (max-width: 991.98px) {
  .hero-block_web .hero-block__icon {
    max-width: 74px;
  }
}
.hero-block_web .hero-block__icon:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 767.98px) {
  .hero-block_web .hero-block__icon:not(:last-child) {
    margin-bottom: 30px;
  }
}
.hero-block_what .hero-block__container2 {
  max-width: 1440px;
}
@media (max-width: 1650px) {
  .hero-block_what .hero-block__container2 {
    max-width: 1100px;
  }
}
@media (max-width: 1400px) {
  .hero-block_what .hero-block__container2 {
    max-width: 1000px;
  }
}
@media (max-width: 1200px) {
  .hero-block_what .hero-block__container2 {
    max-width: 100%;
  }
}
.hero-block_what .hero-block__image {
  pointer-events: none;
  transform: translate(-24%, 0%);
  margin-top: -200px;
  height: 900px;
}
@media (max-width: 1166px) {
  .hero-block_what .hero-block__image {
    margin-right: -300px;
    transform: translate(0%, 0%);
    height: auto;
  }
}
@media (max-width: 991.98px) {
  .hero-block_what .hero-block__image {
    height: 450px;
  }
}
@media (max-width: 767.98px) {
  .hero-block_what .hero-block__image {
    margin-right: -200px;
    transform: translate(0%, 0%);
    width: 700px;
    flex-shrink: 0;
    max-width: none;
    margin-top: -100px;
  }
}
.hero-block_what .hero-block__image img {
  max-width: none;
}
@media (max-width: 1166px) {
  .hero-block_what .hero-block__image img {
    max-width: 100%;
  }
}
.hero-block .hero-block__container2 {
  align-items: flex-start;
}
.hero-block__container2 {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 767.98px) {
  .hero-block__container2 {
    flex-direction: column;
    gap: 20px;
  }
}
.hero-block__content {
  width: 54.5714285714%;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .hero-block__content {
    width: 100%;
  }
}
.hero-block__title {
  word-break: break-word;
  text-transform: lowercase;
}
.hero-block__title:not(:last-child) {
  margin-bottom: 30px;
}
.hero-block__description {
  line-height: 28px;
}
.hero-block__description:not(:last-child) {
  margin-bottom: 90px;
}
@media (max-width: 991.98px) {
  .hero-block__description:not(:last-child) {
    margin-bottom: 36px;
  }
}
.hero-block__image {
  transform: translateY(-70px);
  margin-right: -100px;
}
@media (max-width: 1166px) {
  .hero-block__image {
    margin-right: 0;
  }
}
.hero-block__image.t-tn {
  transform: translate(0, 0);
  margin-right: -300px;
  margin-top: -100px;
}
@media (max-width: 1166px) {
  .hero-block__image.t-tn {
    margin-right: -100px;
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .hero-block__image.t-tn {
    width: 500px;
    flex-shrink: 0;
    max-width: 500px;
    margin-right: -40%;
  }
  .hero-block__image {
    transform: translateY(0);
    max-width: 400px;
    margin: 0 auto;
  }
}

.gives {
  padding: 60px 0 82px;
}
@media (max-width: 767.98px) {
  .gives {
    padding: 25px 0 30px;
  }
}
.gives__title:not(:last-child) {
  margin-bottom: 105px;
}
@media (max-width: 991.98px) {
  .gives__title:not(:last-child) {
    margin-bottom: 48px;
  }
}
@media (min-width: 767.98px) {
  .gives__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
  }
}
@media (min-width: 767.98px) and (max-width: 1166px) {
  .gives__slider .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 767.98px) and (max-width: 991.98px) {
  .gives__slider .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gives__slider .swiper-slide {
  height: auto;
}
.gives__navigation {
  margin-top: 38px;
}
@media (min-width: 767.98px) {
  .gives__navigation {
    display: none;
  }
}
.gives-card {
  height: 100%;
  border-radius: 11px;
  border: 2px solid #0075FF;
  padding: 40px 24px 34px 34px;
}
.gives-card__icon {
  height: 101px;
}
.gives-card__icon img {
  max-height: 100%;
}
.gives-card__icon:not(:last-child) {
  margin-bottom: 34px;
}
.gives-card__text {
  max-width: 234px;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .gives-card__text {
    font-size: 16px;
  }
}

.we-you {
  padding: 80px 0 85px;
}
@media (max-width: 767.98px) {
  .we-you {
    padding: 27px 0 35px;
  }
}
.we-you__row {
  display: grid;
  gap: 53px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1166px) {
  .we-you__row {
    gap: 26px;
  }
}
@media (max-width: 991.98px) {
  .we-you__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.we-you__item {
  display: flex;
  min-height: 121px;
  border-radius: 11px;
  align-items: center;
}
@media (max-width: 600px) {
  .we-you__item {
    flex-direction: column;
    min-height: auto;
    align-items: flex-start;
  }
}
.we-you__title {
  width: 241px;
  flex-shrink: 0;
  font-size: 96px;
  line-height: 96px;
  font-style: normal;
  font-weight: 500;
  border-radius: 11px;
  text-transform: lowercase;
  color: #fff;
  padding: 13px;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
@media (max-width: 600px) {
  .we-you__title {
    width: 100%;
    flex: 1 1 auto;
    position: relative;
    z-index: 2;
    text-align: left;
    justify-content: flex-start;
    padding: 15px 30px;
  }
  .dark .we-you__title {
    color: #101010;
  }
}
.we-you__text {
  font-size: 20px;
  line-height: 28px;
  padding: 10px 30px 10px 45px;
  border: 2px solid #0075FF;
  height: 100%;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -15px;
}
@media (max-width: 767.98px) {
  .we-you__text {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .we-you__text {
    margin-left: 0;
    margin-top: -15px;
    padding: 30px 45px 30px 30px;
  }
}

.what-franchise {
  padding: 80px 0 55px;
}
@media (max-width: 767.98px) {
  .what-franchise {
    padding: 35px 0 23px;
  }
}
.what-franchise__row {
  border-radius: 11px;
  background: #F6F6F6;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .what-franchise__row {
    flex-direction: column;
  }
}
.dark .what-franchise__row {
  background: #3B3B3B;
}
.what-franchise__content {
  max-width: 668px;
  padding: 80px 40px 40px 60px;
}
@media (max-width: 1166px) {
  .what-franchise__content {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .what-franchise__content {
    padding: 56px 20px;
  }
}
.what-franchise__title {
  color: #0075FF;
  font-size: 64px;
  font-weight: 500;
  line-height: 79px;
  text-transform: lowercase;
}
@media (max-width: 1166px) {
  .what-franchise__title {
    font-size: 46px;
  }
}
@media (max-width: 991.98px) {
  .what-franchise__title {
    font-size: 36px;
    line-height: 55.5px;
  }
}
.what-franchise__title:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .what-franchise__title:not(:last-child) {
    margin-bottom: 55px;
  }
}
.what-franchise__text {
  line-height: 28px;
}
.what-franchise__image-ibg {
  width: 486px;
  flex-shrink: 0;
  border-radius: 11px;
  overflow: hidden;
}
@media (max-width: 1166px) {
  .what-franchise__image-ibg {
    width: 40%;
  }
}
@media (max-width: 767.98px) {
  .what-franchise__image-ibg {
    width: 100%;
    padding-bottom: 84.2900302115%;
  }
}
@media (max-width: 479.98px) {
  .what-franchise__image-ibg {
    padding-bottom: 111.4803625378%;
  }
}

.how-work {
  padding: 55px 0 50px;
}
@media (max-width: 767.98px) {
  .how-work {
    padding: 25px 0 27px;
  }
}
.how-work__title:not(:last-child) {
  margin-bottom: 57px;
}
@media (max-width: 767.98px) {
  .how-work__title:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media (min-width: 767.98px) {
  .how-work__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}
@media (max-width: 1200px) {
  .how-work__slider .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.how-work__slider .swiper-slide {
  height: auto;
}
.how-work__navigation {
  margin-top: 20px;
}
@media (min-width: 767.98px) {
  .how-work__navigation {
    display: none;
  }
}
.how-work-card {
  height: 100%;
  border-radius: 11px;
  border: 2px solid #0075FF;
  padding: 56px 37px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767.98px) {
  .how-work-card {
    gap: 20px;
    padding: 46px 26px 26px 26px;
  }
}
.how-work-card__top {
  flex: 1 1 auto;
}
.how-work-card__icon-top {
  height: 105px;
}
@media (max-width: 767.98px) {
  .how-work-card__icon-top {
    height: 70px;
  }
}
.how-work-card__icon-top:not(:last-child) {
  margin-bottom: 30px;
}
.how-work-card__icon-top img {
  max-height: 100%;
}
.how-work-card__title {
  color: #0075FF;
  font-size: 36px;
  font-weight: 500;
  line-height: 41px;
  text-transform: capitalize;
  word-break: break-word;
}
@media (max-width: 767.98px) {
  .how-work-card__title {
    font-size: 24px;
    line-height: 41px;
  }
}
.how-work-card__title:not(:last-child) {
  margin-bottom: 20px;
}
.how-work-card__descr {
  min-height: 107px;
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .how-work-card__descr {
    font-size: 20px;
    min-height: auto;
  }
}
.how-work-card__descr small {
  font-size: 16px;
  margin-top: 25px;
  display: block;
}
@media (max-width: 767.98px) {
  .how-work-card__descr small {
    font-size: 12px;
    margin-top: 15px;
  }
  .how-work-card__descr {
    margin-bottom: 20px;
  }
}
.how-work-card__list li {
  display: flex;
  gap: 27px;
  line-height: 28px;
  min-height: 116px;
}
@media (max-width: 767.98px) {
  .how-work-card__list li {
    min-height: auto;
  }
}
.how-work-card__list li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .how-work-card__list li:not(:last-child) {
    margin-bottom: 30px;
  }
}
.how-work-card__bonus {
  border-radius: 11px;
  background: #0075FF;
  padding: 20px;
  color: #fff;
  position: relative;
}
@media (max-width: 767.98px) {
  .how-work-card__bonus {
    padding-left: 14px;
  }
}
.how-work-card__bonus h4 {
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .how-work-card__bonus h4 {
    font-size: 22px;
    max-width: calc(100% - 25px);
  }
}
.how-work-card__bonus h4:not(:last-child) {
  margin-bottom: 15px;
}
.how-work-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 2px solid #0075FF;
  flex-shrink: 0;
  padding: 4px;
  display: flex;
  align-items: flex-end;
}
.how-work-card__bonus-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .how-work-card__bonus-row {
    color: #151515;
  }
}
.how-work-card__bonus-row img {
  width: 45px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .how-work-card__bonus-row img {
    position: absolute;
    width: 25px;
    top: 20px;
    right: 20px;
  }
}

.timeline {
  padding: 60px 0 50px;
}
@media (max-width: 767.98px) {
  .timeline {
    padding: 40px 0;
  }
}
.timeline__title:not(:last-child) {
  margin-bottom: 54px;
}
@media (max-width: 767.98px) {
  .timeline__title:not(:last-child) {
    margin-bottom: 40px;
  }
  .timeline__items {
    padding-left: 54px;
    padding-top: 100px;
    position: relative;
    display: grid;
    gap: 57px;
  }
  .timeline__items::after {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    left: 10px;
    top: 0;
    background: var(--blue);
  }
}
.timeline__top {
  display: flex;
  justify-content: space-between;
  padding-left: 90px;
  gap: 30px;
}
@media (max-width: 991.98px) {
  .timeline__top {
    padding-left: 0;
  }
}
@media (max-width: 767.98px) {
  .timeline__top {
    flex-direction: column;
    gap: 57px;
  }
}
.timeline__top .timeline__item {
  padding-bottom: 60px;
}
@media (max-width: 767.98px) {
  .timeline__top .timeline__item {
    padding-bottom: 0;
  }
}
.timeline__top .timeline__item::after {
  content: "";
  border-radius: 23px;
  border: 2px solid #0075FF;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 23px;
  height: 23px;
  transform: translateY(50%);
}
.dark .timeline__top .timeline__item::after {
  background: #161616;
}
@media (max-width: 767.98px) {
  .timeline__top .timeline__item::after {
    top: 0;
    transform: translateY(5px);
    left: -54px;
    z-index: 2;
  }
}
.timeline__item {
  position: relative;
  max-width: 408px;
  line-height: 28px;
}
.timeline__item::after {
  content: "";
  border-radius: 23px;
  border: 2px solid #0075FF;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  width: 23px;
  height: 23px;
}
.dark .timeline__item::after {
  background: #161616;
}
.timeline__item span {
  color: var(--blue);
}
.timeline__date {
  color: #0075FF;
  font-size: 36px;
  font-weight: 500;
  line-height: 41px;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .timeline__date {
    font-size: 24px;
    line-height: 37.5px;
  }
}
.timeline__date:not(:last-child) {
  margin-bottom: 26px;
}
.timeline__line {
  height: 2px;
  max-width: 1284px;
  background: var(--blue);
}
@media (max-width: 767.98px) {
  .timeline__line {
    display: none;
  }
}
.timeline__bottom {
  display: flex;
  justify-content: center;
  padding-left: 90px;
}
@media (max-width: 767.98px) {
  .timeline__bottom {
    padding-left: 0;
    justify-content: flex-start;
  }
}
.timeline__bottom .timeline__item {
  padding-top: 40px;
}
@media (max-width: 767.98px) {
  .timeline__bottom .timeline__item {
    padding-top: 0;
  }
}
.timeline__bottom .timeline__item::after {
  z-index: 2;
  top: 0;
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .timeline__bottom .timeline__item::after {
    transform: translateY(5px);
    left: -54px;
  }
}

.own {
  padding: 60px 0;
}
@media (max-width: 767.98px) {
  .own {
    padding: 40px 0 27px;
  }
}
.own__items {
  display: flex;
}
@media (max-width: 991.98px) {
  .own__items {
    flex-direction: column;
  }
}
.item-own {
  flex: 0 0 236px;
  width: 236px;
  height: 566px;
  border-radius: 11px;
  border: 2px solid #0075FF;
  background: var(--secondary-bg);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  position: relative;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .item-own {
    width: 100%;
    min-height: 126px;
    flex: 0 0 100%;
    height: auto;
  }
}
.item-own.active {
  flex-grow: 1;
  min-width: 0;
  background: var(--blue);
  max-height: none;
}
.item-own.active .item-own__title {
  opacity: 0;
}
.item-own.active .item-own__block {
  opacity: 0;
  height: 100%;
  visibility: visible;
  animation: anim 0.2s linear 0.3s forwards;
  overflow-y: auto;
}
.item-own:not(:first-child) {
  margin-left: -10px;
}
@media (max-width: 991.98px) {
  .item-own:not(:first-child) {
    margin-left: 0;
    margin-top: -10px;
  }
}
.item-own__main {
  display: flex;
  align-items: flex-end;
  padding: 30px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 991.98px) {
  .item-own__main {
    padding: 32px 13px 32px 25px;
    align-items: center;
  }
}
.item-own__title {
  color: #0075FF;
  font-size: 24px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  font-weight: 500;
  line-height: 29.5px;
  text-transform: lowercase;
}
.item-own__block {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  opacity: 0;
  visibility: hidden;
  min-width: 0;
  padding: 50px;
  height: 0;
}
@media (max-width: 1600px) {
  .item-own__block {
    padding: 30px;
  }
}
.item-own__title-big {
  color: #fff;
  text-transform: lowercase;
}
@media (max-width: 991.98px) {
  .item-own__title-big {
    font-size: 24px;
    color: #000;
    line-height: 37.5px;
  }
}
.item-own__title-big:not(:last-child) {
  margin-bottom: 44px;
}
@media (max-width: 991.98px) {
  .item-own__title-big:not(:last-child) {
    margin-bottom: 35px;
  }
}
.item-own__slider {
  min-width: 0;
}
.item-own__slider .swiper-wrapper {
  min-width: 0;
}
@media (min-width: 1200px) {
  .item-own__slider .swiper-wrapper {
    display: flex;
    gap: 40px;
  }
}
@media (max-width: 1600px) {
  .item-own__slider .swiper-wrapper {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .item-own__slider .swiper-wrapper {
    gap: 0px;
  }
}
.item-own__slider .swiper-wrapper .swiper-slide {
  line-height: 28px;
}
@media (min-width: 1200px) {
  .item-own__slider .swiper-wrapper .swiper-slide {
    width: auto;
    flex-grow: 1;
    flex-shrink: 1;
    font-size: 20px;
    flex-basis: 25%;
  }
}
@media (max-width: 1600px) {
  .item-own__slider .swiper-wrapper .swiper-slide {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .item-own__slider .swiper-wrapper .swiper-slide {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .item-own__slider .swiper-wrapper .swiper-slide {
    font-size: 16px;
  }
}
.item-own__icon {
  height: 120px;
}
@media (max-width: 1600px) {
  .item-own__icon {
    height: 90px;
  }
}
@media (max-width: 767.98px) {
  .item-own__icon {
    height: 108px;
  }
}
.item-own__icon:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 1600px) {
  .item-own__icon:not(:last-child) {
    margin-bottom: 30px;
  }
}
.item-own__icon img {
  max-height: 100%;
}
.item-own__navigation {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .item-own__navigation {
    margin-top: 40px;
  }
}
.item-own__navigation .navigation__pagination .swiper-pagination-bullet {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.item-own__navigation .navigation__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  color: var(--blue);
}
.item-own__navigation .navigation__arrow svg {
  fill: #fff;
}
@media (min-width: 1200px) {
  .item-own__navigation {
    display: none;
  }
}
@keyframes anim {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.team2 {
  padding: 34px 0;
}
@media (max-width: 767.98px) {
  .team2 {
    padding: 20px 0;
  }
}
.team2__title:not(:last-child) {
  margin-bottom: 28px;
}
@media (max-width: 767.98px) {
  .team2__title:not(:last-child) {
    margin-bottom: 40px;
  }
}
.team2__descr {
  line-height: 28px;
}
.team2__descr:not(:last-child) {
  margin-bottom: 67px;
}
@media (max-width: 991.98px) {
  .team2__descr:not(:last-child) {
    margin-bottom: 50px;
  }
}
.team2__slider .swiper-slide {
  height: auto;
}
@media (max-width: 767.98px) {
  .team2__slider--two-slide .swiper-wrapper {
    display: grid;
    gap: 16px;
  }
  .team2__slider--two-slide .team2__arrows {
    display: none;
  }
}
.team2__arrows {
  margin-top: 64px;
}
.team2-card {
  border-radius: 11px;
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 100%;
}
@media (max-width: 1166px) {
  .team2-card {
    flex-direction: column;
  }
}
.team2-card__image-ibg {
  width: 42.8358208955%;
  flex-shrink: 0;
  aspect-ratio: 1;
}
@media (max-width: 1166px) {
  .team2-card__image-ibg {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .team2-card__image-ibg {
    aspect-ratio: 0;
    padding-bottom: 99.6825396825%;
  }
}
.team2-card__image-ibg img {
  object-position: top center;
}
@media (max-width: 1166px) {
  .team2-card__image-ibg img {
    object-position: top center;
  }
}
.team2-card__content {
  border-radius: 11px;
  padding: 40px 40px 50px 40px;
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  margin-left: -20px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
}
@media (max-width: 1300px) {
  .team2-card__content {
    padding: 20px;
  }
}
@media (max-width: 1166px) {
  .team2-card__content {
    margin-left: 0;
    margin-top: -40px;
    padding: 30px;
    flex: 1 1 auto;
  }
}
@media (max-width: 767.98px) {
  .team2-card__content {
    padding: 30px 16px;
  }
}
.team2-card__title {
  color: #0075FF;
  font-size: 36px;
  font-weight: 500;
  line-height: 41px;
  text-transform: capitalize;
  max-width: 80%;
  word-break: break-word;
}
@media (max-width: 1166px) {
  .team2-card__title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .team2-card__title {
    font-size: 32px;
  }
}
.team2-card__title:not(:last-child) {
  margin-bottom: 22px;
}
@media (max-width: 1166px) {
  .team2-card__title:not(:last-child) {
    margin-bottom: 14px;
  }
}
.team2-card__subtitle {
  color: #0075FF;
  font-size: 16px;
  line-height: 26.788px;
}
.team2-card__subtitle:not(:last-child) {
  margin-bottom: 34px;
}
@media (max-width: 991.98px) {
  .team2-card__subtitle:not(:last-child) {
    margin-bottom: 40px;
  }
}
.team2-card__links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.team2-card__links a {
  display: inline-block;
}
@media (hover: hover) {
  .team2-card__links a:hover svg {
    fill: var(--blue);
  }
}
.team2-card__links a svg {
  fill: var(--primary-text);
  -webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  -moz-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  -ms-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  -o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.team2-card__links:not(:last-child) {
  margin-bottom: 33px;
}
.team2-card__text {
  font-size: 15.626px;
  line-height: 26.788px;
}
.team2-card__text span {
  color: #0075FF;
}
.team2-card__text > *:not(:last-child) {
  margin-bottom: 20px;
}

.ways {
  padding: 34px 0 40px;
}
@media (max-width: 767.98px) {
  .ways {
    padding: 20px 0;
  }
}
.ways__title:not(:last-child) {
  margin-bottom: 56px;
}
@media (max-width: 767.98px) {
  .ways__title:not(:last-child) {
    margin-bottom: 36px;
  }
}
@media (min-width: 767.98px) {
  .ways__navigation {
    display: none;
  }
}
.ways__navigation:not(:last-child) {
  margin-bottom: 50px;
}
.ways__descr {
  max-width: 1071px;
  line-height: 28px;
}
.ways__descr:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 991.98px) {
  .ways__descr:not(:last-child) {
    margin-bottom: 36px;
  }
}
.ways__slider .swiper-slide {
  height: auto;
}
.ways__slider:not(:last-child) {
  margin-bottom: 70px;
}
@media (max-width: 767.98px) {
  .ways__slider:not(:last-child) {
    margin-bottom: 25px;
  }
}
.ways__link {
  width: 100%;
  max-width: 889px;
  padding: 20px;
}

.ways-card {
  border-radius: 11px;
  border: 2px solid #0075FF;
  background: var(--secondary-bg);
  padding: 50px 40px 40px 30px;
  height: 100%;
}
@media (max-width: 767.98px) {
  .ways-card {
    padding-right: 30px;
  }
}
.ways-card h4 {
  color: #0075FF;
  font-size: 26px;
  font-weight: 700;
  line-height: 37.5px;
}
.ways-card h4:not(:last-child) {
  margin-bottom: 10px;
}
.ways-card small {
  font-size: 16px;
  line-height: 26px;
  display: block;
}
@media (max-width: 767.98px) {
  .ways-card small {
    font-size: 12px;
  }
}
.ways-card small:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .ways-card small:not(:last-child) {
    margin-bottom: 50px;
  }
}
.ways-card ul {
  padding-left: 30px;
}
@media (max-width: 767.98px) {
  .ways-card ul {
    padding-left: 20px;
  }
}
.ways-card ul li {
  list-style: disc;
}
.ways-card ul li:not(:last-child) {
  margin-bottom: 25px;
}
.ways-card p, .ways-card ul {
  line-height: 28px;
}
.ways-card p span, .ways-card ul span {
  color: var(--blue);
}
.ways-card p:not(:last-child), .ways-card ul:not(:last-child) {
  margin-bottom: 25px;
}
.ways-card__icon {
  height: 116px;
}
@media (max-width: 767.98px) {
  .ways-card__icon {
    height: 105px;
  }
}
.ways-card__icon img {
  max-height: 100%;
}
.ways-card__icon:not(:last-child) {
  margin-bottom: 43px;
}

.work {
  padding: 40px 0;
}
@media (max-width: 767.98px) {
  .work {
    padding: 20px 0 40px;
  }
}
.work__navigation {
  margin-top: 50px;
}
@media (min-width: 767.98px) {
  .work__navigation {
    display: none;
  }
}
.work__image {
  display: flex;
  justify-content: center;
}
.work__img_b_pc {
  display: none;
}
.dark .work__img_b_pc {
  display: block;
}
@media (max-width: 767.98px) {
  .work__img_b_pc {
    display: none !important;
  }
}
.work__img_b_mon {
  display: none;
}
.dark .work__img_b_mon {
  display: block;
}
@media (min-width: 767.98px) {
  .work__img_b_mon {
    display: none !important;
  }
}
.dark .work__img_w_pc {
  display: none;
}
@media (max-width: 767.98px) {
  .work__img_w_pc {
    display: none;
  }
}
.dark .work__img_w_mon {
  display: none;
}
@media (min-width: 767.98px) {
  .work__img_w_mon {
    display: none;
  }
}
.work__title:not(:last-child) {
  margin-bottom: 60px;
}
@media (min-width: 767.98px) {
  .work__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
  }
}
@media (max-width: 991.98px) {
  .work__slider .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .work__slider .swiper-wrapper {
    display: flex;
    gap: 0px;
  }
}
.work__slider .swiper-slide {
  height: auto;
}

.work-card__top {
  padding: 36px 30px 33px 27px;
  border-radius: 11px;
  border: 2px solid #0075FF;
  background: var(--secondary-bg);
  min-height: 262px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.work-card__digit {
  color: #0075FF;
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 10px;
}
.work-card__title {
  color: #FFF;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  min-height: 55px;
}
.work-card__text-bottom {
  padding-top: 32px;
  padding-right: 30px;
  font-size: 16px;
  line-height: 28px;
}

.want {
  padding: 50px 0 30px;
}
@media (max-width: 767.98px) {
  .want {
    padding: 40px 0;
  }
}
.want__wrap {
  border-radius: 11px;
  background: #F6F6F6;
  padding: 60px 100px 60px 60px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 991.98px) {
  .want__wrap {
    padding: 56px 20px 30px;
    gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .want__wrap {
    flex-direction: column;
  }
}
.dark .want__wrap {
  background: #3B3B3B;
}
.want__content {
  flex: 1 1 auto;
  max-width: 670px;
}
.want__title {
  color: #0075FF;
  font-size: 64px;
  font-weight: 500;
  line-height: 79px;
  text-transform: lowercase;
}
@media (max-width: 991.98px) {
  .want__title {
    font-size: 36px;
    line-height: 55.5px;
  }
}
.want__title:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .want__title:not(:last-child) {
    margin-bottom: 50px;
  }
}
.want__text {
  line-height: 28px;
}
.want__text:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .want__text:not(:last-child) {
    margin-bottom: 40px;
  }
}
.want__image {
  width: 277px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .want__image {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 479.98px) {
  .want__image {
    max-width: 190px;
  }
}

.contact-soc {
  padding: 55px 0 147px;
}
@media (max-width: 767.98px) {
  .contact-soc {
    padding: 50px 0 78px;
  }
}
.contact-soc__title {
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .contact-soc__title {
    line-height: 20px;
  }
}
.contact-soc__title:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 991.98px) {
  .contact-soc__title:not(:last-child) {
    margin-bottom: 70px;
  }
}
.contact-soc__grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}
@media (max-width: 1166px) {
  .contact-soc__grid-layout {
    gap: 60px 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .contact-soc__grid-layout {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-soc__link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 35px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 767.98px) {
  .contact-soc__link {
    gap: 60px;
  }
  .contact-soc__link img {
    width: 58px;
  }
}
@media (hover: hover) {
  .contact-soc__link:hover {
    color: var(--blue);
  }
}

.result-work {
  padding: 65px 0 60px;
}
@media (max-width: 767.98px) {
  .result-work {
    padding: 20px 0 30px;
  }
}
.result-work__wrap {
  max-width: 1300px;
  border-radius: 11px;
  background: #F6F6F6;
  padding: 68px 150px 60px 60px;
  display: flex;
  align-items: center;
  gap: 77px;
  justify-content: space-between;
}
@media (max-width: 1166px) {
  .result-work__wrap {
    padding: 40px;
    gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .result-work__wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 20px 37px;
  }
}
.dark .result-work__wrap {
  background: #3B3B3B;
}
.result-work__title {
  color: #0075FF;
  font-size: 64px;
  font-weight: 500;
  line-height: 79px;
}
@media (max-width: 991.98px) {
  .result-work__title {
    font-size: 36px;
    line-height: 55.5px;
  }
}
.result-work__title:not(:last-child) {
  margin-bottom: 55px;
}
@media (max-width: 1166px) {
  .result-work__title:not(:last-child) {
    margin-bottom: 45px;
  }
}
.result-work__text {
  line-height: 28px;
  max-width: 584px;
}
.result-work__image {
  max-width: 300px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .result-work__image {
    max-width: 250px;
  }
}
@media (max-width: 767.98px) {
  .result-work__image {
    margin-bottom: 50px;
    max-width: 140px;
  }
}

.algorithm {
  padding: 60px 0 65px;
}
@media (max-width: 767.98px) {
  .algorithm {
    padding: 20px 0;
  }
}
.algorithm__title:not(:last-child) {
  margin-bottom: 55px;
}
.algorithm__row {
  max-width: 1300px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 1166px) {
  .algorithm__row {
    gap: 30px;
  }
}
@media (max-width: 991.98px) {
  .algorithm__row {
    flex-direction: column;
    gap: 50px;
  }
}
.algorithm__image-ibg {
  border-radius: 11px;
  overflow: hidden;
  width: 36.0714285714%;
  flex-shrink: 0;
  padding-bottom: 36.7857142857%;
}
@media (max-width: 991.98px) {
  .algorithm__image-ibg {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .algorithm__image-ibg {
    padding-bottom: 76.5625%;
  }
}
.algorithm__text {
  line-height: 28px;
}
.algorithm__text ul {
  margin-bottom: 20px;
}

.idea {
  padding: 60px 0;
}
@media (max-width: 767.98px) {
  .idea {
    padding: 20px 0;
  }
}
.idea__wrap {
  border-radius: 11px;
  min-height: 517px;
  background: #F6F6F6;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767.98px) {
  .idea__wrap {
    flex-direction: column;
  }
}
.dark .idea__wrap {
  background: #3B3B3B;
}
.idea__content {
  padding: 60px;
}
@media (max-width: 991.98px) {
  .idea__content {
    padding: 30px;
  }
}
@media (max-width: 767.98px) {
  .idea__content {
    padding: 56px 20px 40px;
  }
}
.idea__title {
  color: #0075FF;
  font-size: 64px;
  font-weight: 500;
  line-height: 79px;
}
@media (max-width: 991.98px) {
  .idea__title {
    line-height: 55.5px;
    font-size: 36px;
  }
}
.idea__title:not(:last-child) {
  margin-bottom: 62px;
}
@media (max-width: 767.98px) {
  .idea__title:not(:last-child) {
    margin-bottom: 40px;
  }
}
.idea__text {
  max-width: 584px;
  line-height: 28px;
}
.idea__image-ibg {
  align-self: stretch;
  flex-shrink: 0;
  width: 500px;
  border-radius: 11px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .idea__image-ibg {
    width: 40%;
  }
}
@media (max-width: 767.98px) {
  .idea__image-ibg {
    width: 100%;
    padding-bottom: 74.9244712991%;
  }
}

.info-project {
  position: relative;
  z-index: 2;
  padding: 100px 0 60px;
}
@media (max-width: 767.98px) {
  .info-project {
    padding: 65px 0 20px;
  }
}
.info-project__row {
  display: flex;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .info-project__row {
    flex-direction: column;
  }
}
.info-project__block {
  border-radius: 11px;
  border: 2px solid #0075FF;
  background: var(--secondary-bg);
  position: relative;
  overflow: hidden;
}
.info-project__block_location {
  width: 35%;
  min-height: 511px;
}
@media (max-width: 1166px) {
  .info-project__block_location {
    width: 50.3846153846%;
  }
}
@media (max-width: 991.98px) {
  .info-project__block_location {
    width: 100%;
    min-height: 455px;
  }
}
.info-project__block_branch {
  width: 37.8078817734%;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .info-project__block_branch {
    width: 100%;
    min-height: 290px;
  }
}
.info-project__block_tech {
  padding: 40px;
}
.info-project__block_tech .info-project__text {
  padding: 0;
}
.info-project__block_bottom {
  width: 100%;
  padding: 15px 20px 15px 25px;
  min-height: 92px;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .info-project__block_bottom {
    min-height: 75px;
    padding-left: 20px;
  }
}
.info-project__block_bottom2 {
  width: 45.197044335%;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .info-project__block_bottom2 {
    width: 100%;
  }
}
.info-project__text {
  padding: 50px 30px;
  position: relative;
  z-index: 2;
  word-break: break-word;
}
@media (max-width: 991.98px) {
  .info-project__text {
    padding: 30px 20px;
  }
}
.info-project__text:not(:last-child) {
  margin-bottom: 40px;
}
.info-project__text span {
  display: block;
  color: var(--blue);
  line-height: 28px;
  margin-bottom: 20px;
}
.info-project__image-map {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 0;
}
.info-project__grid-layout {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-project__top {
  display: flex;
  gap: 20px;
  flex: 1 1 auto;
}
@media (max-width: 767.98px) {
  .info-project__top {
    flex-direction: column;
  }
}
.info-project__image-branch {
  position: absolute;
  left: 10px;
  bottom: 30px;
}
.info-project__image-branch img {
  max-width: none;
}
.info-project__techs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px;
}
@media (max-width: 767.98px) {
  .info-project__techs {
    gap: 50px 30px;
  }
}
.info-project__techs svg {
  fill: var(--primary-text);
}
@media (max-width: 767.98px) {
  .info-project__techs svg {
    max-width: 100px;
  }
}
.info-project__bottom {
  display: flex;
  gap: 20px;
}
@media (max-width: 1166px) {
  .info-project__bottom {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .info-project__bottom {
    flex-direction: column;
  }
}
.info-project__row-bottom {
  display: flex;
  align-items: center;
  line-height: 28px;
  gap: 30px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .info-project__row-bottom {
    justify-content: space-between;
  }
}
.info-project__row-small {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--blue);
  flex-shrink: 0;
  max-width: 45%;
}
.info-project__about-text {
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .info-project__about-text {
    flex: 0 0 45%;
  }
}

.about-project {
  padding: 66px 0 70px;
}
.about-project--tab .about-project__content {
  width: 46.2686567164%;
}
@media (max-width: 767.98px) {
  .about-project--tab .about-project__content {
    width: 100%;
  }
}
@media (min-width: 1920px) {
  .about-project--tab .about-project__right {
    width: 967px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  @supports (width: clamp( 377px , -16.3333333333px  +  51.2152777778vw , 967px )) {
    .about-project--tab .about-project__right {
      width: clamp( 377px , -16.3333333333px  +  51.2152777778vw , 967px );
    }
  }
  @supports not (width: clamp( 377px , -16.3333333333px  +  51.2152777778vw , 967px )) {
    .about-project--tab .about-project__right {
      width: calc(377px + 36.875 * (100vw - 768px) / 72);
    }
  }
}
@media (max-width: 768px) {
  .about-project--tab .about-project__right {
    width: 377px;
  }
}
@media (max-width: 767.98px) {
  .about-project--tab .about-project__right {
    margin: 0 auto;
    width: 100%;
    min-width: 405px;
    max-width: 500px;
  }
}
.about-project--tab .about-project__image-ibg {
  width: 99%;
  padding-bottom: 0;
  aspect-ratio: 967/529;
  left: 50%;
  transform: translate(-50%, 10.5%);
}
.about-project--notebook .about-project__content {
  width: 49.2537313433%;
}
@media (max-width: 767.98px) {
  .about-project--notebook .about-project__content {
    width: 100%;
  }
}
@media (min-width: 1920px) {
  .about-project--notebook .about-project__right {
    width: 1155px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  @supports (width: clamp( 500px , 63.3333333333px  +  56.8576388889vw , 1155px )) {
    .about-project--notebook .about-project__right {
      width: clamp( 500px , 63.3333333333px  +  56.8576388889vw , 1155px );
    }
  }
  @supports not (width: clamp( 500px , 63.3333333333px  +  56.8576388889vw , 1155px )) {
    .about-project--notebook .about-project__right {
      width: calc(500px + 40.9375 * (100vw - 768px) / 72);
    }
  }
}
@media (max-width: 768px) {
  .about-project--notebook .about-project__right {
    width: 500px;
  }
}
@media (max-width: 767.98px) {
  .about-project--notebook .about-project__right {
    margin: 0 auto;
    width: 100%;
    min-width: 465px;
    max-width: 600px;
  }
}
.about-project--notebook .about-project__image-ibg {
  width: 76%;
  padding-bottom: 0;
  aspect-ratio: 997/529;
  left: 50%;
  transform: translate(-50%, 16.5%);
}
.about-project--phone .about-project__content {
  flex: 1 1 auto;
}
.about-project--phone .about-project__right {
  width: 343px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .about-project--phone .about-project__right {
    width: 300px;
  }
}
@media (max-width: 767.98px) {
  .about-project--phone .about-project__right {
    margin: 0 auto;
    width: 230px;
  }
}
@media (max-width: 479.98px) {
  .about-project--phone .about-project__right {
    width: 168px;
  }
}
.about-project--phone .about-project__right .about-project__image-ibg {
  width: 86%;
  padding-bottom: 0;
  aspect-ratio: 298/648;
  left: calc(50% + 1px);
  border-radius: 24px;
  overflow: hidden;
  transform: translate(-50%, 4%);
}
@media (max-width: 767.98px) {
  .about-project--phone .about-project__right .about-project__image-ibg {
    border-radius: 16px;
  }
}
@media (max-width: 479.98px) {
  .about-project--phone .about-project__right .about-project__image-ibg {
    border-radius: 12px;
  }
}
.about-project--pc .about-project__content {
  width: 52.2388059701%;
}
@media (max-width: 767.98px) {
  .about-project--pc .about-project__content {
    width: 100%;
  }
}
@media (min-width: 1920px) {
  .about-project--pc .about-project__right {
    width: 895px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  @supports (width: clamp( 377px , 31.6666666667px  +  44.9652777778vw , 895px )) {
    .about-project--pc .about-project__right {
      width: clamp( 377px , 31.6666666667px  +  44.9652777778vw , 895px );
    }
  }
  @supports not (width: clamp( 377px , 31.6666666667px  +  44.9652777778vw , 895px )) {
    .about-project--pc .about-project__right {
      width: calc(377px + 32.375 * (100vw - 768px) / 72);
    }
  }
}
@media (max-width: 768px) {
  .about-project--pc .about-project__right {
    width: 377px;
  }
}
@media (max-width: 767.98px) {
  .about-project--pc .about-project__right {
    margin: 0 auto;
    width: 100%;
    min-width: 377px;
    max-width: 500px;
  }
}
.about-project--pc .about-project__right .about-project__image-ibg {
  width: 91%;
  padding-bottom: 0;
  aspect-ratio: 825/465;
  left: calc(50% + 1px);
  overflow: hidden;
  transform: translate(-50%, 9%);
}
.about-project--pc .about-project__right .about-project__image-ibg img {
  object-position: top left;
}
.about-project--pad .about-project__content {
  width: 55.671641791%;
}
@media (max-width: 767.98px) {
  .about-project--pad .about-project__content {
    width: 100%;
  }
}
@media (min-width: 1920px) {
  .about-project--pad .about-project__right {
    width: 850px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  @supports (width: clamp( 377px , 61.6666666667px  +  41.0590277778vw , 850px )) {
    .about-project--pad .about-project__right {
      width: clamp( 377px , 61.6666666667px  +  41.0590277778vw , 850px );
    }
  }
  @supports not (width: clamp( 377px , 61.6666666667px  +  41.0590277778vw , 850px )) {
    .about-project--pad .about-project__right {
      width: calc(377px + 29.5625 * (100vw - 768px) / 72);
    }
  }
}
@media (max-width: 768px) {
  .about-project--pad .about-project__right {
    width: 377px;
  }
}
@media (max-width: 767.98px) {
  .about-project--pad .about-project__right {
    margin: 0 auto;
    width: 100%;
    min-width: 377px;
    max-width: 500px;
  }
}
.about-project--pad .about-project__right .about-project__image-ibg {
  width: 93.2%;
  border-radius: 10px;
  padding-bottom: 0;
  aspect-ratio: 800/598;
  left: calc(50% + 2px);
  overflow: hidden;
  transform: translate(-50%, 8.4%);
}
@media (max-width: 767.98px) {
  .about-project--pad .about-project__right .about-project__image-ibg {
    border-radius: 6px;
    left: calc(50% + 1px);
  }
}
.about-project--pad .about-project__right .about-project__image-ibg img {
  object-position: top left;
}
.about-project--phone2 .about-project__right {
  width: 330px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .about-project--phone2 .about-project__right {
    width: 300px;
  }
}
@media (max-width: 767.98px) {
  .about-project--phone2 .about-project__right {
    margin: 0 auto;
    width: 230px;
  }
}
@media (max-width: 479.98px) {
  .about-project--phone2 .about-project__right {
    width: 160px;
  }
}
.about-project--phone2 .about-project__right .about-project__image-ibg {
  width: 96%;
  padding-bottom: 0;
  aspect-ratio: 330/648;
  left: calc(50% + 1px);
  border-radius: 20px;
  overflow: hidden;
  transform: translate(-50%, 5.6%);
}
@media (max-width: 767.98px) {
  .about-project--phone2 .about-project__right .about-project__image-ibg {
    border-radius: 16px;
  }
}
@media (max-width: 479.98px) {
  .about-project--phone2 .about-project__right .about-project__image-ibg {
    border-radius: 10px;
    left: calc(50% + 0px);
  }
}
.about-project--watch .about-project__right {
  width: 374px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .about-project--watch .about-project__right {
    width: 300px;
  }
}
@media (max-width: 767.98px) {
  .about-project--watch .about-project__right {
    margin: 0 auto;
    width: 230px;
  }
}
@media (max-width: 479.98px) {
  .about-project--watch .about-project__right {
    width: 178px;
  }
}
.about-project--watch .about-project__right .about-project__image-ibg {
  width: 83%;
  padding-bottom: 0;
  aspect-ratio: 300/356;
  left: 50%;
  border-radius: 60px;
  overflow: hidden;
  transform: translate(-50%, 40.5%);
}
@media (max-width: 767.98px) {
  .about-project--watch .about-project__right .about-project__image-ibg {
    border-radius: 34px;
  }
}
@media (max-width: 479.98px) {
  .about-project--watch .about-project__right .about-project__image-ibg {
    border-radius: 28px;
    left: calc(50% + 0px);
  }
}
.about-project__row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 767.98px) {
  .about-project__row {
    flex-direction: column;
    gap: 80px;
  }
}
.about-project__content {
  width: 555px;
  flex-shrink: 0;
}
@media (max-width: 1166px) {
  .about-project__content {
    width: 40%;
  }
}
@media (max-width: 767.98px) {
  .about-project__content {
    width: 100%;
  }
}
.about-project__head {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #0075FF;
  font-size: 24px;
  font-weight: 500;
  line-height: 28.5px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .about-project__head {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .about-project__head img {
    max-width: 35px;
  }
}
.about-project__title {
  word-break: break-word;
}
.about-project__title:not(:last-child) {
  margin-bottom: 114px;
}
@media (max-width: 991.98px) {
  .about-project__title:not(:last-child) {
    margin-bottom: 10px;
  }
}
.about-project__descr {
  line-height: 28px;
}
.about-project__right {
  flex-shrink: 0;
}
.about-project__image-mask {
  position: relative;
}
.about-project__image-ibg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 75.7%;
  transform: translate(-50%, 17%);
  padding-bottom: 40%;
}
.about-project__image-ibg img {
  object-position: top left;
}

.projects {
  padding: 40px 0;
}
.projects__tags:not(:last-child) {
  margin-bottom: 60px;
}
.projects__grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 767.98px) {
  .projects__grid-layout {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.projects__grid-layout .works-card__title {
  max-width: 100%;
}

.faq {
  padding: 45px 0 30px;
}
@media (max-width: 767.98px) {
  .faq {
    padding: 20px 0 35px;
  }
}
.faq__title:not(:last-child) {
  margin-bottom: 65px;
}
@media (max-width: 991.98px) {
  .faq__title:not(:last-child) {
    margin-bottom: 45px;
  }
}
.faq__row {
  max-width: 1130px;
  display: flex;
  gap: 100px;
}
@media (max-width: 991.98px) {
  .faq__row {
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .faq__row {
    flex-direction: column;
    gap: 45px;
  }
}
.faq__content {
  width: 261px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .faq__content {
    width: 100%;
  }
}
.faq__content .link__icon {
  transform: rotate(45deg);
}
@media (max-width: 767.98px) {
  .faq__icon {
    width: 95px;
    flex-shrink: 0;
  }
}
.faq__icon:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 767.98px) {
  .faq__icon:not(:last-child) {
    margin-bottom: 0;
  }
}
.faq__text {
  line-height: 28px;
}
.faq__head:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .faq__head:not(:last-child) {
    margin-bottom: 27px;
  }
  .faq__head {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
.faq__spollers .spoller__items {
  gap: 24px;
}
@media (max-width: 767.98px) {
  .faq__spollers .item-spoller__title {
    min-height: 72px;
  }
}
.faq__spollers .item-spoller__text {
  color: #fff;
}

.tech2 {
  padding: 35px 0 50px;
}
@media (max-width: 767.98px) {
  .tech2 {
    padding: 45px 0 20px;
  }
}
.tech2__title:not(:last-child) {
  margin-bottom: 53px;
}
.tech2 .navigation__arrows {
  margin-top: 40px;
}
@media (min-width: 767.98px) {
  .tech2 .navigation__arrows {
    display: none;
  }
}
.tech2__slider {
  max-width: 1085px;
}

.web-items {
  padding: 55px 0 38px;
}
@media (max-width: 767.98px) {
  .web-items {
    padding: 25px 0 45px;
  }
}
.web-items__image-ibg {
  max-width: 1105px;
  height: 243px;
  border-radius: 11px;
  overflow: hidden;
}
.web-items__image-ibg:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 767.98px) {
  .web-items__image-ibg:not(:last-child) {
    margin-bottom: 78px;
  }
}
.web-items__list {
  max-width: 1105px;
}
.web-items__list-item {
  display: flex;
  gap: 60px;
}
@media (max-width: 991.98px) {
  .web-items__list-item {
    gap: 24px;
  }
}
.web-items__list-item:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .web-items__list-item:not(:last-child) {
    margin-bottom: 55px;
  }
}
.web-items__icon {
  width: 113px;
  height: 115.511px;
  flex-shrink: 0;
  background: var(--blue);
  display: flex;
  align-items: flex-end;
  border-radius: 11px;
  padding: 11px;
}
@media (max-width: 991.98px) {
  .web-items__icon {
    width: 57px;
    height: 58px;
    padding: 4px;
  }
  .web-items__icon img {
    max-width: 30px;
  }
}
.web-items__content h4 {
  color: #0075FF;
  font-size: 26px;
  font-weight: 700;
  line-height: 37.5px;
}
@media (max-width: 767.98px) {
  .web-items__content h4 {
    font-size: 24px;
  }
}
.web-items__content h4:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  .web-items__content h4:not(:last-child) {
    margin-bottom: 38px;
  }
}
.web-items__content p {
  line-height: 28px;
}

.how-we-work {
  padding: 44px 0 65px;
}
@media (max-width: 767.98px) {
  .how-we-work {
    padding: 34px 0 25px;
  }
}
.how-we-work__wrap {
  border-radius: 11px;
  border: 2px solid #0075FF;
  background: var(--secondary-bg);
  max-width: 1105px;
  padding: 30px 30px 50px 45px;
}
@media (max-width: 767.98px) {
  .how-we-work__wrap {
    padding: 23px 30px 40px 30px;
  }
}
.how-we-work__title {
  color: var(--primary-text);
}
.how-we-work__title:not(:last-child) {
  margin-bottom: 50px;
}
.how-we-work__row {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 767.98px) {
  .how-we-work__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 65px;
  }
}
.how-we-work__image {
  width: 233px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .how-we-work__image {
    width: auto;
  }
}
.how-we-work__text {
  line-height: 28px;
  max-width: 700px;
}

.develop {
  padding: 35px 0;
}
.develop__title:not(:last-child) {
  margin-bottom: 42px;
}
.develop__text {
  line-height: 28px;
  max-width: 975px;
}
.develop__text:not(:last-child) {
  margin-bottom: 65px;
}
@media (max-width: 767.98px) {
  .develop__text:not(:last-child) {
    margin-bottom: 75px;
  }
}
.develop__row {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
@media (max-width: 991.98px) {
  .develop__row {
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .develop__row {
    flex-direction: column;
    gap: 22px;
  }
}
.develop__list {
  display: grid;
  gap: 22px;
}
.develop__list a {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  line-height: 28px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 767.98px) {
  .develop__list a {
    gap: 20px;
    align-items: flex-start;
  }
}
.develop__list a img {
  width: 45px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .develop__list a img {
    width: 30px;
  }
}
@media (hover: hover) {
  .develop__list a:hover {
    color: var(--blue);
  }
}

.article2 {
  padding-top: 61px;
  padding-bottom: 206px;
}
@media (max-width: 767.98px) {
  .article2 {
    padding: 24px 0 104px;
  }
}
.article2__container {
  max-width: 1333px;
}
@media (max-width: 1580px) {
  .article2__container {
    max-width: 1170px;
  }
}
.article2__breadcrumbs:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .article2__breadcrumbs:not(:last-child) {
    margin-bottom: 50px;
  }
}
.article2__top {
  padding-bottom: 20px;
}
@media (max-width: 767.98px) {
  .article2__top {
    padding-bottom: 10px;
  }
}
.article2__content {
  max-width: 1010px;
  line-height: 28px;
}
.article2__content > *:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .article2__content > *:not(:last-child) {
    margin-bottom: 16px;
  }
}
.article2__content ul {
  padding-left: 30px;
}
@media (max-width: 767.98px) {
  .article2__content ul {
    padding-left: 20px;
  }
}
.article2__content ul li {
  list-style: disc;
}
.article2__content h4, .article2__content h3, .article2__content h2 {
  color: var(--blue);
  font-size: 36px;
  font-weight: 500;
  line-height: 37.5px;
  margin-top: 75px;
}
@media (max-width: 767.98px) {
  .article2__content h4, .article2__content h3, .article2__content h2 {
    margin-top: 32px;
    font-size: 24px;
    line-height: 37.5px;
  }
}
.article2__content h4:not(:last-child), .article2__content h3:not(:last-child), .article2__content h2:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .article2__content h4:not(:last-child), .article2__content h3:not(:last-child), .article2__content h2:not(:last-child) {
    margin-bottom: 16px;
  }
}

.top-article2 {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 1166px) {
  .top-article2 {
    gap: 30px;
  }
}
@media (max-width: 991.98px) {
  .top-article2 {
    flex-direction: column;
  }
}
.top-article2__user {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.626px;
  color: var(--blue);
  line-height: 19.288px;
}
.top-article2__user:not(:last-child) {
  margin-bottom: 34px;
}
@media (max-width: 991.98px) {
  .top-article2__user:not(:last-child) {
    margin-bottom: 26px;
  }
}
.top-article2__text {
  line-height: 28px;
}
.top-article2__image-ibg {
  border-radius: 11px;
  overflow: hidden;
  aspect-ratio: 584/485;
  flex-shrink: 0;
  width: 43.8109527382%;
}
@media (max-width: 991.98px) {
  .top-article2__image-ibg {
    width: 100%;
    aspect-ratio: 784/485;
    margin-bottom: 42px;
  }
}
@media (max-width: 767.98px) {
  .top-article2__image-ibg {
    aspect-ratio: 584/485;
  }
}
.top-article2__user-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #D9D9D9;
  overflow: hidden;
}
.top-article2__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-article2__date {
  color: #909090;
  font-size: 15.626px;
  line-height: 19.288px;
}
.top-article2__tag {
  font-size: 15.626px;
  line-height: 19.288px;
  color: var(--blue);
  padding: 12px;
  display: inline-block;
  border-radius: 11px;
  border: 2px solid var(--blue);
}
.top-article2__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.top-article2__head:not(:last-child) {
  margin-bottom: 14px;
}
@media (max-width: 991.98px) {
  .top-article2__head:not(:last-child) {
    margin-bottom: 42px;
  }
}
.top-article2__title {
  font-size: 36px;
  color: var(--blue);
  font-weight: 500;
  line-height: 41px;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .top-article2__title {
    line-height: 37.5px;
    font-size: 24px;
  }
}
.top-article2__title:not(:last-child) {
  margin-bottom: 29px;
}
@media (max-width: 767.98px) {
  .top-article2__title:not(:last-child) {
    margin-bottom: 26px;
  }
}
@media (max-width: 991.98px) {
  .top-article2 .rating {
    display: none;
  }
}

.other-article2 {
  padding: 120px 0;
}
@media (max-width: 767.98px) {
  .other-article2 {
    padding: 32px 0 60px;
  }
}
.other-article2__title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .other-article2__title:not(:last-child) {
    margin-bottom: 16px;
  }
}
.other-article2__grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
@media (max-width: 991.98px) {
  .other-article2__grid-layout {
    grid-template-columns: repeat(1, 1fr);
  }
}

.comment {
  max-width: 1010px;
}
.comment__form:not(:last-child) {
  margin-bottom: 18px;
}
.comment__form-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.comment__form-row .input {
  padding-bottom: 8px;
}
.comment__form-row label {
  flex: 1 1 auto;
}
.comment__list {
  padding-top: 32px;
}
.comment__list .comment__list .comment__item:not(:last-child) {
  margin-bottom: 32px;
}
.comment__item:not(:last-child) {
  margin-bottom: 16px;
}

.item-comment__avatar-ibg {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: #D9D9D9;
}
.item-comment__head {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.626px;
  line-height: 19.288px;
}
.item-comment__name {
  color: var(--blue);
}
.item-comment__date {
  color: #909090;
  word-break: break-word;
}
.item-comment__content {
  padding-top: 24px;
  padding-left: 46px;
}
.item-comment__text {
  font-size: 18px;
  line-height: 28px;
}
.item-comment__text:not(:last-child) {
  margin-bottom: 10px;
}
.item-comment__link {
  display: inline-block;
  font-size: 15.626px;
  color: var(--blue);
  line-height: 19.288px;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.item-comment__link:hover {
  text-decoration: underline;
}

.comment-form {
  padding-bottom: 16px;
}
.comment-form__title {
  color: var(--blue);
  font-size: 36px;
  line-height: 1.0416666667;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .comment-form__title {
    font-size: 24px;
  }
}
.comment-form__title:not(:last-child) {
  margin-bottom: 32px;
}
.comment-form__items {
  display: grid;
  gap: 32px;
}
.comment-form__captcha {
  margin: 32px 0;
}
.comment-form__button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 16px;
  color: var(--blue);
}
.comment-form__button:hover .comment-form__icon {
  transform: translateX(10px);
}
.comment-form__icon {
  width: 41px;
  height: 41px;
  color: #fff;
  border-radius: 50%;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.dark .comment-form__icon {
  color: #131313;
}
.comment-form__icon svg {
  fill: currentColor;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.author {
  padding-bottom: 40px;
}
@media (max-width: 767.98px) {
  .author {
    padding-top: 24px;
    padding-bottom: 12px;
  }
}
.author__container {
  max-width: 1333px;
}
@media (max-width: 1580px) {
  .author__container {
    max-width: 1170px;
  }
}
.author__breadcrumbs:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .author__breadcrumbs:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .author__breadcrumbs:not(:last-child) {
    margin-bottom: 25px;
  }
}
.author__head {
  max-width: 1230px;
}

.head-author {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767.98px) {
  .head-author {
    flex-direction: column;
    gap: 24px;
  }
}
.head-author__image-ibg {
  border-radius: 11px;
  background: #D9D9D9;
  overflow: hidden;
  aspect-ratio: 338/283;
  flex-shrink: 0;
  width: 338px;
}
@media (max-width: 767.98px) {
  .head-author__image-ibg {
    width: 100%;
    aspect-ratio: 317/177;
  }
}
.head-author__title:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .head-author__title:not(:last-child) {
    margin-bottom: 8px;
  }
}
.head-author__position {
  color: #909090;
  line-height: 28px;
}
.head-author__position:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .head-author__position:not(:last-child) {
    margin-bottom: 16px;
  }
}
.head-author__text {
  line-height: 28px;
}

.author-article {
  padding: 40px 0 170px;
}
@media (max-width: 767.98px) {
  .author-article {
    padding: 12px 0 40px;
  }
}
.author-article__container {
  max-width: 1333px;
}
@media (max-width: 1580px) {
  .author-article__container {
    max-width: 1170px;
  }
}
.author-article__title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .author-article__title:not(:last-child) {
    margin-bottom: 16px;
  }
}
.author-article__grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 24px;
}
@media (max-width: 767.98px) {
  .author-article__grid-layout {
    gap: 32px;
  }
}
@media (max-width: 991.98px) {
  .author-article__grid-layout {
    grid-template-columns: repeat(1, 1fr);
  }
}

.project2 {
  position: relative;
  padding: 20px 0 75px;
}
@media (max-width: 767.98px) {
  .project2 {
    padding: 24px 0 35px;
  }
}
.project2__big-decor {
  position: absolute;
  top: -190px;
  right: 0;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .project2__big-decor {
    top: -120px;
  }
}
@media (min-width: 767.98px) {
  .project2__big-decor .mob {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .project2__big-decor .pc {
    display: none;
  }
}
.project2__container2 {
  position: relative;
  z-index: 2;
  max-width: 1520px;
}
@media (max-width: 1600px) {
  .project2__container2 {
    max-width: 1166px;
  }
}
.project2__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-left: 80px;
}
@media (max-width: 1600px) {
  .project2__row {
    padding-left: 0;
  }
}
@media (max-width: 767.98px) {
  .project2__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 88px;
  }
}
.project2__content {
  max-width: 769px;
}
.project2__title {
  min-height: 0;
}
.project2__title:not(:last-child) {
  margin-bottom: 32px;
}
.project2__text {
  max-width: 568px;
  font-size: 32px;
  line-height: 38.5px;
}
@media (min-width: 1350px) {
  .project2__text {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1350px) {
  @supports (font-size: clamp( 16px , -5.1134020619px  +  2.7491408935vw , 32px )) {
    .project2__text {
      font-size: clamp( 16px , -5.1134020619px  +  2.7491408935vw , 32px );
    }
  }
  @supports not (font-size: clamp( 16px , -5.1134020619px  +  2.7491408935vw , 32px )) {
    .project2__text {
      font-size: calc(16px + 1 * (100vw - 768px) / 36.375);
    }
  }
}
@media (max-width: 768px) {
  .project2__text {
    font-size: 16px;
  }
}
.project2__image {
  width: 35.9701492537%;
  flex-shrink: 0;
  max-width: 482px;
  position: relative;
}
@media (max-width: 767.98px) {
  .project2__image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.project2__image::after {
  content: "";
  border-radius: 1000px;
  background: radial-gradient(50% 50% at 50% 50%, #F6F6FB 72.16%, rgba(255, 255, 255, 0) 100%);
  width: 1000px;
  height: 1000px;
  top: -120px;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0%);
  position: absolute;
}
.dark .project2__image::after {
  border-radius: 1000px;
  background: radial-gradient(50% 50% at 50% 50%, #191919 72.16%, rgba(31, 31, 31, 0) 100%);
}
@media (max-width: 1166px) {
  .project2__image::after {
    width: 800px;
    height: 800px;
  }
}
@media (max-width: 767.98px) {
  .project2__image::after {
    height: 786px;
    width: calc(100% + 100px);
  }
}

.chronology {
  padding: 140px 0 80px;
}
@media (max-width: 767.98px) {
  .chronology {
    padding: 100px 0 60px;
  }
}
.chronology__title:not(:last-child) {
  margin-bottom: 70px;
}
@media (max-width: 767.98px) {
  .chronology__title:not(:last-child) {
    margin-bottom: 48px;
  }
}
.chronology__row {
  display: flex;
  padding-left: 50px;
}
@media (max-width: 767.98px) {
  .chronology__row {
    padding-left: 0;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
.chronology__item {
  flex-grow: 1;
  position: relative;
  margin-right: -10px;
  padding-top: 120px;
}
@media (max-width: 991.98px) {
  .chronology__item {
    padding-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .chronology__item {
    padding-top: 0;
    margin-right: 0;
    min-width: 309px;
  }
}
@media (max-width: 767.98px) and (max-width: 400px) {
  .chronology__item {
    min-width: 269px;
  }
}
.chronology__item:first-child {
  z-index: 4;
}
@media (max-width: 767.98px) {
  .chronology__item:first-child {
    min-width: 88px;
  }
}
.chronology__item:nth-child(2) {
  z-index: 3;
}
@media (max-width: 767.98px) {
  .chronology__item:nth-child(2) {
    min-width: 128px;
  }
}
.chronology__item:nth-child(3) {
  z-index: 2;
}
@media (max-width: 767.98px) {
  .chronology__item:nth-child(3) {
    min-width: 220px;
  }
}
.chronology__item:nth-child(4) {
  z-index: 1;
}
.chronology__item--grey .chronology__name {
  color: #fff;
  background: #5E6469;
}
.chronology__year {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  font-size: 32px;
  color: var(--blue);
  line-height: 121.885%;
}
@media (min-width: 1300px) {
  .chronology__year {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  @supports (font-size: clamp( 12px , -16.8721804511px  +  3.7593984962vw , 32px )) {
    .chronology__year {
      font-size: clamp( 12px , -16.8721804511px  +  3.7593984962vw , 32px );
    }
  }
  @supports not (font-size: clamp( 12px , -16.8721804511px  +  3.7593984962vw , 32px )) {
    .chronology__year {
      font-size: calc(12px + 1.25 * (100vw - 768px) / 33.25);
    }
  }
}
@media (max-width: 768px) {
  .chronology__year {
    font-size: 12px;
  }
}
@media (max-width: 767.98px) {
  .chronology__year {
    position: relative;
    transform: translateX(0);
    margin-bottom: 8px;
  }
}
.chronology__year::after {
  content: "";
  position: absolute;
  width: 2px;
  background: var(--blue);
  height: 98px;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(4px);
}
@media (max-width: 991.98px) {
  .chronology__year::after {
    height: 70px;
  }
}
@media (max-width: 767.98px) {
  .chronology__year::after {
    display: none;
  }
}
.chronology__name {
  border-radius: 8px;
  color: white;
  font-size: 32px;
  line-height: 121.885%;
  padding: 23px;
  text-align: center;
  position: relative;
}
@media (min-width: 1300px) {
  .chronology__name {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  @supports (font-size: clamp( 14px , -11.984962406px  +  3.3834586466vw , 32px )) {
    .chronology__name {
      font-size: clamp( 14px , -11.984962406px  +  3.3834586466vw , 32px );
    }
  }
  @supports not (font-size: clamp( 14px , -11.984962406px  +  3.3834586466vw , 32px )) {
    .chronology__name {
      font-size: calc(14px + 1.125 * (100vw - 768px) / 33.25);
    }
  }
}
@media (max-width: 768px) {
  .chronology__name {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .chronology__name {
    padding: 13px;
  }
}
.chronology__item--white .chronology__name {
  background: #828287;
}
.dark .chronology__item--white .chronology__name {
  background: #FFF;
  color: var(--blue);
}
.chronology__item--dark .chronology__name {
  background: #303840;
}
.dark .chronology__item--dark .chronology__name {
  color: var(--blue);
}
.chronology__item--blue .chronology__name {
  background: var(--blue);
}

.achievements {
  padding: 80px 0 100px;
}
.achievements .color-1 {
  --color: #5E6469;
}
.achievements .color-2 {
  --color: #828287;
}
.dark .achievements .color-2 {
  --color: #FDFDFD;
}
.achievements .color-3 {
  --color: #303840;
}
.achievements .color-4 {
  --color: #0075FF;
}
.achievements__title:not(:last-child) {
  margin-bottom: 72px;
}
@media (max-width: 991.98px) {
  .achievements__title:not(:last-child) {
    margin-bottom: 48px;
  }
}
.achievements__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1920px) {
  .achievements__row {
    gap: 159px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  @supports (gap: clamp( 48px , -26px  +  9.6354166667vw , 159px )) {
    .achievements__row {
      gap: clamp( 48px , -26px  +  9.6354166667vw , 159px );
    }
  }
  @supports not (gap: clamp( 48px , -26px  +  9.6354166667vw , 159px )) {
    .achievements__row {
      gap: calc(48px + 6.9375 * (100vw - 768px) / 72);
    }
  }
}
@media (max-width: 768px) {
  .achievements__row {
    gap: 48px;
  }
}
@media (max-width: 767.98px) {
  .achievements__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.achievements__circles {
  width: 500px;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .achievements__circles {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .achievements__circles {
    align-self: center;
    width: 100%;
    max-width: 400px;
  }
}
.achievements__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  aspect-ratio: 1;
  border: 17px solid var(--color);
  padding: 30px;
  flex: 1 1 auto;
}
@media (max-width: 991.98px) {
  .achievements__circle {
    border-width: 12px;
    padding: 20px;
  }
}
.achievements__list {
  display: grid;
  gap: 32px;
}
@media (max-width: 991.98px) {
  .achievements__list {
    gap: 24px;
  }
}
.achievements__item {
  display: flex;
  align-items: center;
  gap: 42px;
}
@media (max-width: 991.98px) {
  .achievements__item {
    gap: 16px;
  }
}
.achievements__icon {
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color);
}
@media (min-width: 1300px) {
  .achievements__icon {
    width: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  @supports (width: clamp( 32px , -66.1654135338px  +  12.7819548872vw , 100px )) {
    .achievements__icon {
      width: clamp( 32px , -66.1654135338px  +  12.7819548872vw , 100px );
    }
  }
  @supports not (width: clamp( 32px , -66.1654135338px  +  12.7819548872vw , 100px )) {
    .achievements__icon {
      width: calc(32px + 4.25 * (100vw - 768px) / 33.25);
    }
  }
}
@media (max-width: 768px) {
  .achievements__icon {
    width: 32px;
  }
}
@media (min-width: 1500px) {
  .achievements__text {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1500px) {
  @supports (font-size: clamp( 16px , -0.7868852459px  +  2.1857923497vw , 32px )) {
    .achievements__text {
      font-size: clamp( 16px , -0.7868852459px  +  2.1857923497vw , 32px );
    }
  }
  @supports not (font-size: clamp( 16px , -0.7868852459px  +  2.1857923497vw , 32px )) {
    .achievements__text {
      font-size: calc(16px + 1 * (100vw - 768px) / 45.75);
    }
  }
}
@media (max-width: 768px) {
  .achievements__text {
    font-size: 16px;
  }
}

.result2 {
  padding: 270px 0 250px;
}
@media (max-width: 1166px) {
  .result2 {
    padding: 150px 0;
  }
}
@media (max-width: 991.98px) {
  .result2 {
    padding: 100px 0;
  }
}
.result2__title {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .result2__title {
    margin-bottom: 48px;
  }
}
.result2__row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .result2__row {
    flex-direction: column-reverse;
    gap: 48px;
  }
}
.result2__text {
  width: 381px;
  flex-shrink: 0;
  line-height: 121.885%;
  margin-top: 42px;
}
@media (min-width: 1400px) {
  .result2__text {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  @supports (font-size: clamp( 16px , -3.4430379747px  +  2.5316455696vw , 32px )) {
    .result2__text {
      font-size: clamp( 16px , -3.4430379747px  +  2.5316455696vw , 32px );
    }
  }
  @supports not (font-size: clamp( 16px , -3.4430379747px  +  2.5316455696vw , 32px )) {
    .result2__text {
      font-size: calc(16px + 1 * (100vw - 768px) / 39.5);
    }
  }
}
@media (max-width: 768px) {
  .result2__text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .result2__text {
    width: 100%;
    margin-top: 0;
  }
}
.result2__image {
  margin-right: -160px;
}
@media (max-width: 1166px) {
  .result2__image {
    margin-right: 0;
  }
}

.main-block-v2 {
  padding: 11px 0 111px;
  position: relative;
}
@media (max-width: 767.98px) {
  .main-block-v2 {
    padding: 23px 0 53px;
    min-height: calc(100vh - 100px);
  }
}
.main-block-v2__decor {
  position: absolute;
  top: -200px;
  right: 0;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .main-block-v2__decor {
    right: -400px;
    top: -150px;
  }
  .main-block-v2__decor img {
    max-width: 900px;
  }
}
.main-block-v2__row {
  display: flex;
  align-items: center;
  gap: 57px;
}
@media (max-width: 767.98px) {
  .main-block-v2__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.main-block-v2__content {
  width: 53.8059701493%;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .main-block-v2__content {
    width: 100%;
  }
}
.main-block-v2__title span {
  color: var(--blue);
}
.main-block-v2__title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .main-block-v2__title:not(:last-child) {
    margin-bottom: 16px;
  }
}
.main-block-v2__text {
  line-height: 28px;
  max-width: 621px;
}
@media (min-width: 1300px) {
  .main-block-v2__text {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  @supports (font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px )) {
    .main-block-v2__text {
      font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px );
    }
  }
  @supports not (font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px )) {
    .main-block-v2__text {
      font-size: calc(16px + 0.375 * (100vw - 768px) / 33.25);
    }
  }
}
@media (max-width: 768px) {
  .main-block-v2__text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .main-block-v2__text {
    padding-bottom: 57px;
  }
}
.main-block-v2__image {
  width: 741px;
  flex-shrink: 0;
}
@media (max-width: 1500px) {
  .main-block-v2__image {
    flex-shrink: 1;
    margin-right: -100px;
  }
}
@media (max-width: 1166px) {
  .main-block-v2__image {
    margin-right: -50px;
  }
}
@media (max-width: 991.98px) {
  .main-block-v2__image {
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  .main-block-v2__image {
    width: 380px;
    opacity: 0.3;
    transform: translateX(43%);
    right: 0;
    bottom: -40px;
    position: absolute;
  }
}

.price {
  padding-top: 90px;
}
.price__top-card:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .price__top-card:not(:last-child) {
    margin-bottom: 16px;
  }
}
.price__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}
@media (max-width: 1166px) {
  .price__grid {
    gap: 32px;
  }
}
@media (max-width: 767.98px) {
  .price__grid {
    gap: 16px;
  }
}
.price__grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
@media (max-width: 767.98px) {
  .price__grid2 {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.price__grid2 .price-platform {
  order: 5;
  grid-column: 1/3;
}
@media (max-width: 767.98px) {
  .price__grid2 .price-platform {
    grid-column: 1/1;
    order: unset;
  }
}
@media (max-width: 1166px) {
  .price__grid2 {
    gap: 32px;
  }
}
@media (max-width: 767.98px) {
  .price__grid2 {
    gap: 16px;
  }
}

.price-card {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
}
@media (max-width: 767.98px) {
  .price-card {
    flex-direction: column;
    border-radius: 11px;
    border: 2px solid #0075FF;
    background: var(--secondary-bg);
    padding: 16px;
  }
}
.price-card.active + .price-platform {
  display: block;
}
.price-card__button {
  margin-top: 64px;
}
@media (max-width: 767.98px) {
  .price-card__button {
    margin-top: 25px;
  }
}
.price-card__button svg {
  transform: rotate(90deg);
}
.price-card--small {
  flex-direction: column;
}
.price-card--small .price-card__image-ibg {
  width: 100%;
  border-radius: 11px 11px 0px 0px;
  aspect-ratio: 600/310;
}
@media (max-width: 767.98px) {
  .price-card--small .price-card__image-ibg {
    aspect-ratio: 1;
    border-radius: 0px;
  }
}
.price-card--small .price-card__content {
  margin-left: 0;
  margin-top: -8px;
}
@media (max-width: 767.98px) {
  .price-card--small .price-card__content {
    margin-top: 0;
  }
}
.price-card__image-ibg {
  border-radius: 11px 0 0 11px;
  overflow: hidden;
  aspect-ratio: 1;
  width: 46.1111111111%;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .price-card__image-ibg {
    border-radius: 0px;
    width: 100%;
  }
}
.price-card__content {
  padding: 40px 30px 40px 40px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  border-radius: 11px;
  border: 2px solid #0075FF;
  background: var(--secondary-bg);
  position: relative;
  z-index: 2;
  margin-left: -8px;
}
@media (max-width: 767.98px) {
  .price-card__content {
    margin-left: 0;
    padding: 24px 0 0;
    border: none;
    gap: 24px;
  }
}
.price-card__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 41px;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .price-card__title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .price-card__title {
    font-size: 24px;
    margin-bottom: 24px;
    line-height: 34.5px;
  }
  .price-card__title--pc {
    display: none;
  }
}
.price-card__title--mob {
  display: none;
}
@media (max-width: 767.98px) {
  .price-card__title--mob {
    display: block;
  }
}
.price-card__title span {
  color: #0075FF;
}
.price-card__title:not(:last-child) {
  margin-bottom: 32px;
}
.price-card__list {
  display: grid;
  gap: 24px;
}
.price-card__item {
  display: flex;
  align-items: center;
  gap: 32px;
  line-height: 28px;
}
@media (min-width: 1300px) {
  .price-card__item {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  @supports (font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px )) {
    .price-card__item {
      font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px );
    }
  }
  @supports not (font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px )) {
    .price-card__item {
      font-size: calc(16px + 0.375 * (100vw - 768px) / 33.25);
    }
  }
}
@media (max-width: 768px) {
  .price-card__item {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .price-card__item {
    gap: 16px;
  }
}
.price-card__icon {
  border-radius: 8px;
  background: #0075FF;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding: 8px;
}
@media (max-width: 991.98px) {
  .price-card__icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767.98px) {
  .price-card__icon {
    width: 24px;
    height: 24px;
    padding: 3.2px;
    border-radius: 3.2px;
  }
  .price-card__icon img {
    max-width: 10.8px;
  }
}
.price-card__bottom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.price-card__price {
  padding: 16px;
  border-radius: 8px;
  background: #0075FF;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  color: #fff;
}
@media (max-width: 767.98px) {
  .price-card__price {
    padding: 8px 16px;
  }
}
@media (max-width: 479.98px) {
  .price-card__price {
    width: 100%;
  }
}
.price-card__price b {
  font-size: 46px;
  font-weight: 500;
  line-height: 41px;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .price-card__price b {
    font-size: 36px;
  }
}
.price-card__price span {
  line-height: 28px;
}
@media (min-width: 1300px) {
  .price-card__price span {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  @supports (font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px )) {
    .price-card__price span {
      font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px );
    }
  }
  @supports not (font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px )) {
    .price-card__price span {
      font-size: calc(16px + 0.375 * (100vw - 768px) / 33.25);
    }
  }
}
@media (max-width: 768px) {
  .price-card__price span {
    font-size: 16px;
  }
}
.price-card__bottom-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.price-card__label {
  max-width: 218px;
  line-height: 28px;
}
@media (min-width: 1300px) {
  .price-card__label {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  @supports (font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px )) {
    .price-card__label {
      font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px );
    }
  }
  @supports not (font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px )) {
    .price-card__label {
      font-size: calc(16px + 0.375 * (100vw - 768px) / 33.25);
    }
  }
}
@media (max-width: 768px) {
  .price-card__label {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .price-card__label {
    max-width: 157px;
  }
}
.price-card__procent {
  color: var(--blue);
  font-size: 46px;
  font-weight: 500;
  line-height: 41px;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .price-card__procent {
    font-size: 36px;
  }
}

.price-platform {
  padding: 40px;
  border-radius: 11px;
  border: 2px solid #0075FF;
  background: var(--secondary-bg);
  display: none;
}
@media (max-width: 991.98px) {
  .price-platform {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .price-platform {
    padding: 16px;
  }
}
.price-platform__image-ibg {
  aspect-ratio: 266/251;
}
.price-platform__image-ibg:not(:last-child) {
  margin-bottom: 24px;
}
@media (min-width: 767.98px) {
  .price-platform__image-ibg {
    display: none;
  }
}
.price-platform:not(:last-child) {
  margin-bottom: 16px;
}
.price-platform__title {
  color: var(--blue);
  font-size: 32px;
  font-weight: 500;
  line-height: 41px;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .price-platform__title {
    font-size: 24px;
    line-height: 34.5px;
  }
}
.price-platform__title:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .price-platform__title:not(:last-child) {
    margin-bottom: 24px;
  }
}
.price-platform__head-text:not(:last-child) {
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .price-platform__head-text:not(:last-child) {
    margin-bottom: 24px;
  }
}
.price-platform__subtitle {
  font-size: 32px;
  line-height: 41px;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .price-platform__subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 34.5px;
  }
}
.price-platform__subtitle:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .price-platform__subtitle:not(:last-child) {
    margin-bottom: 24px;
  }
}
.price-platform__list {
  margin: 48px 0;
  display: grid;
  gap: 24px;
}
@media (max-width: 767.98px) {
  .price-platform__list {
    margin: 24px 0;
  }
}
.price-platform__item {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1300px) {
  .price-platform__item {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  @supports (font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px )) {
    .price-platform__item {
      font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px );
    }
  }
  @supports not (font-size: clamp( 16px , 7.3383458647px  +  1.1278195489vw , 22px )) {
    .price-platform__item {
      font-size: calc(16px + 0.375 * (100vw - 768px) / 33.25);
    }
  }
}
@media (max-width: 768px) {
  .price-platform__item {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .price-platform__item {
    gap: 16px;
  }
}
.price-platform__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding: 8px;
  border-radius: 8px;
  background: var(--blue);
}
@media (max-width: 991.98px) {
  .price-platform__icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767.98px) {
  .price-platform__icon {
    width: 24px;
    height: 24px;
    padding: 3.2px;
    border-radius: 3.2px;
  }
  .price-platform__icon img {
    max-width: 10.8px;
  }
}
.price-platform-text {
  line-height: 1.7083333333;
  text-transform: capitalize;
}
@media (min-width: 1300px) {
  .price-platform-text {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  @supports (font-size: clamp( 16px , 4.4511278195px  +  1.5037593985vw , 24px )) {
    .price-platform-text {
      font-size: clamp( 16px , 4.4511278195px  +  1.5037593985vw , 24px );
    }
  }
  @supports not (font-size: clamp( 16px , 4.4511278195px  +  1.5037593985vw , 24px )) {
    .price-platform-text {
      font-size: calc(16px + 0.5 * (100vw - 768px) / 33.25);
    }
  }
}
@media (max-width: 768px) {
  .price-platform-text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .price-platform-text {
    line-height: 1.75;
  }
}

.price-spoller {
  padding-top: 16px;
}
.price-spoller__button {
  color: #0075FF;
  font-size: 24px;
  line-height: 41px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .price-spoller__button {
    font-size: 16px;
  }
}
.price-spoller__button .less {
  display: none;
}
.price-spoller__button._spoller-active .more {
  display: none;
}
.price-spoller__button._spoller-active img {
  transform: scaleY(-1);
}
.price-spoller__button._spoller-active .less {
  display: block;
}
.price-spoller__button img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.price-spoller__body {
  padding-top: 48px;
  font-size: 32px;
  line-height: 41px;
}
@media (max-width: 767.98px) {
  .price-spoller__body {
    padding-top: 0;
  }
  .price-spoller__title {
    display: none;
  }
}
.price-spoller__list {
  display: grid;
  gap: 32px;
  padding: 30px 0 60px;
}
@media (max-width: 767.98px) {
  .price-spoller__list {
    padding-bottom: 0;
    padding-top: 24px;
    gap: 24px;
  }
}
.price-spoller__list-item {
  border: 1px solid #0075FF;
  background: var(--secondary-bg);
}
.price-spoller__btn {
  text-align: left;
  width: 100%;
  padding: 16px;
  align-items: center;
  display: grid;
  grid-template-columns: 72px auto 40px;
  gap: 52px;
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .price-spoller__btn {
    font-size: 24px;
    gap: 16px;
    grid-template-columns: 44px auto 32px;
  }
}
@media (max-width: 767.98px) {
  .price-spoller__btn {
    font-size: 16px;
    grid-template-columns: 24px auto 24px;
    line-height: 1.75;
  }
}
.price-spoller__btn._spoller-active .price-spoller__arrow {
  transform: scaleY(-1);
}
.price-spoller__body-hide {
  font-size: 24px;
  line-height: 41px;
  padding: 16px 32px 32px;
}
@media (max-width: 991.98px) {
  .price-spoller__body-hide {
    padding: 0 16px 16px;
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .price-spoller__body-hide {
    font-size: 16px;
    line-height: 28px;
  }
}
.price-spoller__arrow {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.vacancies-hero {
  padding: 60px 0;
}
@media (max-width: 767.98px) {
  .vacancies-hero {
    padding: 24px 0 50px;
  }
}
@media (min-width: 767.98px) {
  .vacancies-hero__container3 {
    display: flex;
    gap: 120px;
  }
}
@media (max-width: 1600px) {
  .vacancies-hero__container3 {
    gap: 40px;
  }
}
@media (min-width: 767.98px) {
  .vacancies-hero__content {
    flex-shrink: 0;
    width: 52.0833333333%;
  }
}
@media (max-width: 767.98px) {
  .vacancies-hero__content {
    margin-bottom: 100px;
  }
}
.vacancies-hero__breadcrumbs:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .vacancies-hero__breadcrumbs:not(:last-child) {
    margin-bottom: 24px;
  }
}
.vacancies-hero__title {
  min-height: auto;
}
.vacancies-hero__title:not(:last-child) {
  margin-bottom: 72px;
}
@media (max-width: 991.98px) {
  .vacancies-hero__title:not(:last-child) {
    margin-bottom: 40px;
  }
}
.vacancies-hero__text {
  line-height: 28px;
}
.vacancies-hero__text p:not(:last-child) {
  margin-bottom: 1rem;
}
.vacancies-hero__text:not(:last-child) {
  margin-bottom: 48px;
}
.vacancies-hero__image {
  flex: 1 1 auto;
  position: relative;
}
@media (max-width: 767.98px) {
  .vacancies-hero__image {
    margin-bottom: -50px;
  }
}
.vacancies-hero__image img {
  transform: translate(-10%, -17%);
  max-width: none;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1400px) {
  .vacancies-hero__image img {
    max-width: 60vw;
  }
}
@media (max-width: 767.98px) {
  .vacancies-hero__image img {
    position: relative;
    max-width: 100%;
    transform: translate(20%, -15%);
    min-width: 400px;
  }
}
@media (max-width: 479.98px) {
  .vacancies-hero__image img {
    transform: translate(10%, -15%);
  }
}

.vacancies-items {
  padding: 60px 0;
}
@media (max-width: 991.98px) {
  .vacancies-items {
    padding: 40px 0;
  }
}
.vacancies-items__slider.swiper {
  padding: 20px;
  margin: -20px;
}
.vacancies-items__slider .swiper-slide {
  height: auto;
}
.vacancies-items__navigation {
  margin-top: 32px;
}
@media (max-width: 767.98px) {
  .vacancies-items__navigation {
    margin-top: 24px;
  }
}
.vacancies-items-card {
  height: 100%;
  border-radius: 11px;
  border: 2px solid #0075FF;
  background: var(--secondary-bg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (max-width: 991.98px) {
  .vacancies-items-card {
    padding: 24px 16px;
  }
}
.vacancies-items-card:hover {
  box-shadow: 0px 0px 20px var(--blue);
}
.vacancies-items-card:hover .link__text::after {
  width: 100%;
}
.vacancies-items-card__top {
  flex: 1 1 auto;
}
.vacancies-items-card__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1388888889;
  text-transform: capitalize;
  color: var(--blue);
}
@media (max-width: 991.98px) {
  .vacancies-items-card__title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .vacancies-items-card__title {
    font-size: 24px;
  }
}
.vacancies-items-card__title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .vacancies-items-card__title:not(:last-child) {
    margin-bottom: 16px;
  }
}
.vacancies-items-card__text {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 36px;
}
@media (max-width: 767.98px) {
  .vacancies-items-card__text {
    margin-bottom: 24px;
  }
}
.vacancies-items-card__text ul {
  padding-left: 1.2em;
}
.vacancies-items-card__text ul li {
  list-style: disc;
}
.vacancies-items-card__bottom {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 991.98px) {
  .vacancies-items-card__tags {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 32px;
    padding: 8.5px 0;
  }
}
@media (max-width: 991.98px) {
  .vacancies-items-card__tags {
    margin-bottom: 16px;
  }
  .vacancies-items-card__tags--pc {
    display: none;
  }
}
@media (min-width: 991.98px) {
  .vacancies-items-card__tags--mob {
    display: none;
  }
}
.vacancies-items-card__tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--blue);
}
@media (max-width: 991.98px) {
  .vacancies-items-card__tag:not(:last-child) {
    margin-bottom: 8px;
  }
}
@media (max-width: 767.98px) {
  .vacancies-items-card__tag {
    font-size: 14px;
    gap: 8px;
  }
}
.vacancies-items-card__tag svg, .vacancies-items-card__tag img {
  width: 24px;
  flex-shrink: 0;
}
.vacancies-items-card__link {
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .vacancies-items-card__link {
    flex-direction: row-reverse;
  }
}

.vacancies-apply {
  padding: 60px 0 120px;
}
@media (max-width: 767.98px) {
  .vacancies-apply {
    padding-top: 24px;
  }
}
.vacancies-apply__breadcrumbs:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .vacancies-apply__breadcrumbs:not(:last-child) {
    margin-bottom: 24px;
  }
}

.vacancies-apply-form {
  max-width: 1010px;
}
.vacancies-apply-form__block {
  margin-bottom: 64px;
}
@media (max-width: 767.98px) {
  .vacancies-apply-form__block {
    margin-bottom: 32px;
  }
}
.vacancies-apply-form__title {
  color: #0075FF;
  font-size: 24px;
  font-weight: 500;
  line-height: 37.5px;
}
@media (max-width: 767.98px) {
  .vacancies-apply-form__title {
    font-size: 20px;
  }
}
.vacancies-apply-form__title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .vacancies-apply-form__title:not(:last-child) {
    margin-bottom: 24px;
  }
}
.vacancies-apply-form__items > * {
  display: block;
}
.vacancies-apply-form__items > *:not(:last-child) {
  margin-bottom: 32px;
}

.file-upload {
  border-bottom: 2px solid #0075FF;
  font-size: 16px;
  line-height: 19px;
  padding-bottom: 20px;
  color: var(--blue);
  cursor: pointer;
  position: relative;
}
.file-upload input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
}
.file-upload__info {
  padding-right: 30px;
}
.file-upload__icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
}
.file-upload__icon svg {
  width: 100%;
  height: 100%;
}

.vacancies-finish {
  padding: 120px 0;
}
@media (max-width: 767.98px) {
  .vacancies-finish {
    padding-top: 100px;
  }
}
.vacancies-finish__content {
  text-align: center;
  max-width: 951px;
  margin: 0 auto;
}
.vacancies-finish__icon {
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .vacancies-finish__icon {
    max-width: 56px;
  }
}
.vacancies-finish__icon svg {
  max-width: 100%;
}
.vacancies-finish__icon:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .vacancies-finish__icon:not(:last-child) {
    margin-bottom: 24px;
  }
}
.vacancies-finish__title {
  font-size: 80px;
  font-weight: 500;
  line-height: 140%;
}
@media (max-width: 991.98px) {
  .vacancies-finish__title {
    font-size: 48px;
  }
}
.vacancies-finish__title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .vacancies-finish__title:not(:last-child) {
    margin-bottom: 24px;
  }
}
.vacancies-finish__text {
  color: #0078FF;
  font-size: 36px;
  line-height: 45px;
}
@media (max-width: 767.98px) {
  .vacancies-finish__text {
    font-size: 24px;
    line-height: 170%;
  }
}
.vacancies-finish__text:not(:last-child) {
  margin-bottom: 88px;
}
@media (max-width: 767.98px) {
  .vacancies-finish__text:not(:last-child) {
    margin-bottom: 40px;
  }
}
.vacancies-finish__btn-wrap {
  text-align: center;
}

.vacancies-info {
  padding: 60px 0 120px;
}
@media (max-width: 767.98px) {
  .vacancies-info {
    padding: 24px 0 100px;
  }
}
@media (min-width: 767.98px) {
  .vacancies-info__row {
    display: flex;
    gap: 120px;
  }
}
@media (max-width: 1600px) {
  .vacancies-info__row {
    gap: 40px;
  }
}
@media (min-width: 767.98px) {
  .vacancies-info__content {
    flex-shrink: 0;
    width: 52.0833333333%;
  }
}
@media (max-width: 767.98px) {
  .vacancies-info__content {
    margin-bottom: 100px;
  }
}
.vacancies-info__breadcrumbs:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .vacancies-info__breadcrumbs:not(:last-child) {
    margin-bottom: 24px;
  }
}
.vacancies-info__title:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .vacancies-info__title:not(:last-child) {
    margin-bottom: 20px;
  }
}
.vacancies-info__items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22.5px;
}
.vacancies-info__items:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .vacancies-info__items:not(:last-child) {
    margin-bottom: 20px;
  }
}
.vacancies-info__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #909090;
  font-size: 16px;
  line-height: 1.3125;
}
@media (max-width: 767.98px) {
  .vacancies-info__item {
    font-size: 14px;
  }
}
.vacancies-info__item svg, .vacancies-info__item img {
  width: 24px;
  flex-shrink: 0;
}
.vacancies-info__text {
  line-height: 150%;
  max-width: 709px;
}
.vacancies-info__text:not(:last-child) {
  margin-bottom: 64px;
}
@media (max-width: 767.98px) {
  .vacancies-info__text:not(:last-child) {
    margin-bottom: 32px;
  }
}
.vacancies-info__image {
  flex: 1 1 auto;
  position: relative;
}
@media (max-width: 767.98px) {
  .vacancies-info__image {
    margin-bottom: -50px;
  }
}
.vacancies-info__image img {
  transform: translate(-10%, -17%);
  max-width: none;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1400px) {
  .vacancies-info__image img {
    max-width: 60vw;
  }
}
@media (max-width: 767.98px) {
  .vacancies-info__image img {
    position: relative;
    max-width: 100%;
    transform: translate(20%, -15%);
    min-width: 400px;
  }
}
@media (max-width: 479.98px) {
  .vacancies-info__image img {
    transform: translate(10%, -15%);
  }
}

.vacancies-info-text-content {
  padding-top: 120px;
  max-width: 1010px;
  margin-bottom: 64px;
}
@media (max-width: 991.98px) {
  .vacancies-info-text-content {
    margin-bottom: 32px;
  }
}
@media (max-width: 767.98px) {
  .vacancies-info-text-content {
    padding-top: 20px;
  }
}
.vacancies-info-text-content__block:not(:last-child) {
  margin-bottom: 64px;
}
@media (max-width: 991.98px) {
  .vacancies-info-text-content__block:not(:last-child) {
    margin-bottom: 32px;
  }
}
@media (max-width: 767.98px) {
  .vacancies-info-text-content__block:not(:last-child) {
    margin-bottom: 16px;
  }
}
.vacancies-info-text-content__block ul {
  padding-left: 1.7em;
}
.vacancies-info-text-content__block ul li {
  list-style: disc;
}
.vacancies-info-text-content__block p, .vacancies-info-text-content__block ul {
  line-height: 28px;
}
.vacancies-info-text-content__block p:not(:last-child), .vacancies-info-text-content__block ul:not(:last-child) {
  margin-bottom: 24px;
}
.vacancies-info-text-content__title {
  color: #0075FF;
  font-size: 24px;
  font-weight: 500;
  line-height: 37.5px;
}
@media (max-width: 767.98px) {
  .vacancies-info-text-content__title {
    font-size: 20px;
  }
}
.vacancies-info-text-content__title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .vacancies-info-text-content__title:not(:last-child) {
    margin-bottom: 8px;
  }
}

.s-converse {
  padding: var(--section-padding) 0;
}
.s-converse--light .s-converse__wrap {
  background: var(--blue);
  color: #fff;
}
.s-converse--light .s-converse__wrap .title {
  color: #fff;
}
.s-converse--dark .s-converse__wrap {
  background: var(--secondary-bg);
}
@media (min-width: 991.98px) {
  .s-converse--row .s-converse__wrap {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: space-between;
    gap: 32px;
  }
  .s-converse--row .s-converse__content {
    margin-left: 0;
  }
  .s-converse--row .s-converse__content:not(:last-child) {
    margin-bottom: 0;
  }
}
.s-converse__wrap {
  text-align: center;
  border-radius: 11px;
  border: 2px solid #0075FF;
  background: rgba(0, 117, 255, 0.12);
  padding: 40px;
}
@media (max-width: 991.98px) {
  .s-converse__wrap {
    padding: 32px;
  }
}
@media (max-width: 767.98px) {
  .s-converse__wrap {
    padding: 24px 16px;
  }
}
.s-converse__content {
  max-width: 830px;
  margin: 0 auto;
}
.s-converse__content:not(:last-child) {
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .s-converse__content:not(:last-child) {
    margin-bottom: 24px;
  }
}
.s-converse .title {
  color: var(--blue);
}
@media (max-width: 767.98px) {
  .s-converse .title {
    line-height: 1.7;
  }
}
.s-converse .title:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .s-converse .title:not(:last-child) {
    margin-bottom: 16px;
  }
}
.s-converse__link {
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .s-converse__link {
    width: 100%;
  }
}

.s-services {
  padding: var(--section-padding) 0;
}
.s-services .title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .s-services .title:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .s-services .title:not(:last-child) {
    margin: 16px;
  }
}
.s-services__head {
  max-width: 830px;
}
.s-services__head:not(:last-child) {
  margin-bottom: 64px;
}
.s-services__items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .s-services__items {
    gap: 16px;
  }
}
.s-services__item {
  width: calc(33.3% - 16px);
  border-radius: 11px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
  padding: 48px 40px;
  transition: all 0.3s ease;
  display: block;
}
@media (max-width: 1166px) {
  .s-services__item {
    padding: 32px;
  }
}
@media (max-width: 991.98px) {
  .s-services__item {
    padding: 16px;
    width: 100%;
  }
}
.s-services__item-image {
  width: 120px;
  aspect-ratio: 1;
  position: relative;
  margin-bottom: 24px;
}
@media (max-width: 1166px) {
  .s-services__item-image {
    width: 80px;
  }
}
@media (max-width: 767.98px) {
  .s-services__item-image {
    width: 64px;
    margin-bottom: 16px;
  }
}
.s-services__item-image img, .s-services__item-image svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.s-services__item-title {
  font-size: 24px;
  color: var(--blue);
  font-weight: 500;
  word-break: break-word;
}
@media (max-width: 991.98px) {
  .s-services__item-title {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .s-services__item-title {
    font-size: 20px;
  }
}
.s-services__item-title:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .s-services__item-title:not(:last-child) {
    margin-bottom: 16px;
  }
}
.s-partner {
  padding: var(--section-padding) 0;
}
@media (max-width: 1400px) {
  .s-partner__slider.swiper {
    overflow: visible;
  }
}
.s-partner__wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.s-partner__slide.swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
}
.s-partner__image {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .s-partner__image {
    width: 200px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  @supports (width: clamp( 105px , -10.4430379747px  +  15.0316455696vw , 200px )) {
    .s-partner__image {
      width: clamp( 105px , -10.4430379747px  +  15.0316455696vw , 200px );
    }
  }
  @supports not (width: clamp( 105px , -10.4430379747px  +  15.0316455696vw , 200px )) {
    .s-partner__image {
      width: calc(105px + 5.9375 * (100vw - 768px) / 39.5);
    }
  }
}
@media (max-width: 768px) {
  .s-partner__image {
    width: 105px;
  }
}
.s-partner__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.s-testimonials {
  padding: var(--section-padding) 0;
}
.s-testimonials .title:not(:last-child) {
  margin-bottom: 64px;
}
.s-testimonials__slide.swiper-slide {
  height: auto;
}
.s-testimonials__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 11px;
  border: 1px solid var(--blue);
  background: var(--secondary-bg);
  padding: 40px;
  box-shadow: 1px 2px 24px 0px rgba(23, 22, 20, 0.08);
}
@media (max-width: 1166px) {
  .s-testimonials__item {
    padding: 32px;
  }
}
@media (max-width: 767.98px) {
  .s-testimonials__item {
    padding: 24px 16px;
  }
}
.s-testimonials__item-top {
  flex-grow: 1;
}
.s-testimonials__item-top:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .s-testimonials__item-top:not(:last-child) {
    margin-bottom: 24px;
  }
}
.s-testimonials__item-icon:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .s-testimonials__item-icon:not(:last-child) {
    margin-bottom: 24px;
  }
}
.s-testimonials__item-text {
  line-height: 1.27;
}
@media (max-width: 767.98px) {
  .s-testimonials__item-text {
    line-height: 1.75;
  }
}
.s-testimonials__item-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.s-testimonials__item-user-avatar {
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .s-testimonials__item-user-avatar {
    width: 40px;
  }
}
.s-testimonials__item-user-content {
  line-height: 1.4;
  word-break: break-word;
}
.s-testimonials__item-user-name {
  font-weight: 700;
  color: var(--blue);
}
.s-testimonials__item-user-position {
  font-size: 18px;
  color: var(--grey);
}
@media (max-width: 991.98px) {
  .s-testimonials__item-user-position {
    font-size: 16px;
  }
}
.s-testimonials__navigation {
  margin-top: 40px;
}
.s-stats {
  padding: var(--section-padding) 0;
}
.s-stats--blue .s-stats__wrap {
  background: var(--blue);
  color: #fff;
}
.s-stats--blue .title {
  color: #fff;
}
.s-stats--blue .s-stats__item-digit {
  color: #fff;
}
@media (min-width: 991.98px) {
  .s-stats--with-title .s-stats__row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
}
.s-stats--with-title .title {
  width: 31.6417910448%;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .s-stats--with-title .title {
    margin-bottom: 48px;
    text-align: center;
    width: 100%;
  }
}
.s-stats__wrap {
  border-radius: 11px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
  padding: 48px;
}
@media (max-width: 991.98px) {
  .s-stats__wrap {
    padding: 48px 16px;
  }
}
.s-stats__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 767.98px) {
  .s-stats__items {
    gap: 48px;
  }
}
.s-stats__item {
  text-align: center;
  width: calc(33.33% - 16px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .s-stats__item {
    width: 100%;
  }
}
.s-stats__item-top {
  margin-bottom: 32px;
  flex-grow: 1;
}
@media (max-width: 991.98px) {
  .s-stats__item-top {
    margin-bottom: 16px;
  }
}
.s-stats__item-digit {
  font-weight: 700;
  margin-bottom: 32px;
}
@media (min-width: 1400px) {
  .s-stats__item-digit {
    font-size: 64px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  @supports (font-size: clamp( 32px , -6.8860759494px  +  5.0632911392vw , 64px )) {
    .s-stats__item-digit {
      font-size: clamp( 32px , -6.8860759494px  +  5.0632911392vw , 64px );
    }
  }
  @supports not (font-size: clamp( 32px , -6.8860759494px  +  5.0632911392vw , 64px )) {
    .s-stats__item-digit {
      font-size: calc(32px + 2 * (100vw - 768px) / 39.5);
    }
  }
}
@media (max-width: 768px) {
  .s-stats__item-digit {
    font-size: 32px;
  }
}
@media (max-width: 991.98px) {
  .s-stats__item-digit {
    margin-bottom: 16px;
  }
}
.s-stats__item-text {
  line-height: 1.7;
}
.s-stats__item-icon {
  max-width: 120px;
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 1166px) {
  .s-stats__item-icon {
    max-width: 90px;
  }
}
@media (max-width: 767.98px) {
  .s-stats__item-icon {
    max-width: 64px;
  }
}
.s-stats__item-icon img {
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}

.s-related-blogs {
  padding: var(--section-padding) 0;
}
.s-related-blogs .title:not(:last-child) {
  margin-bottom: 64px;
}
.s-related-blogs__slide.swiper-slide {
  height: auto;
}
.s-related-blogs__item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.s-related-blogs__item-image {
  border-radius: 11px 11px 0 0;
  aspect-ratio: 464/279;
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 279px;
}
@media (hover: hover) {
  .s-related-blogs__item-image:hover img {
    transform: scale(1.1);
  }
}
.s-related-blogs__item-image img {
  transform-origin: center;
  transition: all 0.3s ease;
}
.s-related-blogs__item-content {
  padding: 40px;
  border-radius: 11px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
  margin-top: -5px;
  z-index: 2;
  position: relative;
  flex-grow: 1;
}
@media (max-width: 1479px) {
  .s-related-blogs__item-content {
    padding: 32px 16px;
  }
}
@media (max-width: 767.98px) {
  .s-related-blogs__item-content {
    padding: 24px 16px;
  }
}
.s-related-blogs__item-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .s-related-blogs__item-top {
    margin-bottom: 16px;
  }
}
.s-related-blogs__icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: var(--blue);
  padding: 8px;
}
@media (max-width: 1166px) {
  .s-related-blogs__icon {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 767.98px) {
  .s-related-blogs__icon {
    padding: 6.4px;
  }
}
@media (hover: hover) {
  .s-related-blogs__icon:hover svg {
    transform: translate(calc(100% - 8px), calc((100% - 8px) * -1));
  }
}
.s-related-blogs__icon svg {
  width: 27px;
  height: 27px;
  fill: #fff;
  transition: all 0.3s ease;
}
.s-related-blogs__item-title {
  font-weight: 500;
  font-size: 26px;
  text-transform: capitalize;
  line-height: 1.3;
}
@media (max-width: 1166px) {
  .s-related-blogs__item-title {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .s-related-blogs__item-title {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .s-related-blogs__item-title {
    font-size: 20px;
  }
}
.s-related-blogs__item-title a {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .s-related-blogs__item-title a:hover {
    color: var(--blue);
  }
}
.s-related-blogs__item-title span {
  color: var(--blue);
}
.s-related-blogs__item-text {
  line-height: 1.27;
}
@media (max-width: 767.98px) {
  .s-related-blogs__item-text {
    line-height: 1.7;
  }
}
.s-related-blogs__navigation {
  margin-top: 40px;
}
.s-expertise {
  padding: var(--section-padding) 0;
}
.s-expertise__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
}
@media (max-width: 767.98px) {
  .s-expertise__row {
    flex-direction: column;
    gap: 40px;
  }
}
.s-expertise__left {
  max-width: 550px;
}
.s-expertise__icon {
  margin-bottom: 48px;
  max-width: 128px;
}
@media (max-width: 991.98px) {
  .s-expertise__icon {
    max-width: 100px;
  }
}
@media (max-width: 767.98px) {
  .s-expertise__icon {
    flex-shrink: 0;
    max-width: 52px;
    margin-top: 16px;
  }
}
.s-expertise__icon img {
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .s-expertise__top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
}
.s-expertise__title {
  line-height: 1.4;
  font-weight: 500;
}
@media (min-width: 1500px) {
  .s-expertise__title {
    font-size: 64px;
  }
}
@media (min-width: 768px) and (max-width: 1500px) {
  @supports (font-size: clamp( 36px , 6.6229508197px  +  3.825136612vw , 64px )) {
    .s-expertise__title {
      font-size: clamp( 36px , 6.6229508197px  +  3.825136612vw , 64px );
    }
  }
  @supports not (font-size: clamp( 36px , 6.6229508197px  +  3.825136612vw , 64px )) {
    .s-expertise__title {
      font-size: calc(36px + 1.75 * (100vw - 768px) / 45.75);
    }
  }
}
@media (max-width: 768px) {
  .s-expertise__title {
    font-size: 36px;
  }
}
.s-expertise__right {
  max-width: 720px;
}
@media (max-width: 767.98px) {
  .s-expertise__right {
    max-width: 100%;
    width: 100%;
  }
}
.s-expertise__navigation {
  margin-top: 40px;
}
@media (min-width: 767.98px) {
  .s-expertise__navigation {
    display: none;
  }
  .s-expertise__slider {
    display: none !important;
  }
}
.s-expertise__item {
  width: calc(25% - 7.5px);
}
@media (max-width: 991.98px) {
  .s-expertise__item {
    width: calc(33.33% - 6.66px);
  }
}
.s-expertise__items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 10px;
}
@media (max-width: 767.98px) {
  .s-expertise__items {
    column-gap: 8px;
  }
  .s-expertise__items.pc {
    display: none;
  }
}
.s-expertise__image {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 11px;
  background: #F5F5F5;
}
@media (max-width: 991.98px) {
  .s-expertise__image {
    height: 100px;
  }
}
@media (max-width: 767.98px) {
  .s-expertise__image {
    border-radius: 6.267px;
    min-height: 74px;
    aspect-ratio: 96/74;
    width: 100%;
  }
}
.s-expertise__image img {
  max-height: 100%;
  max-width: 100%;
}
.dark .s-expertise__image {
  background: #303030;
}
.s-expertise__small-title {
  margin-top: 11px;
  line-height: 1.1;
  text-align: center;
}
@media (max-width: 767.98px) {
  .s-expertise__small-title {
    margin-top: 8px;
    line-height: 1.5;
  }
}

.s-related-services {
  padding: var(--section-padding) 0;
}
.s-related-services .title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .s-related-services .title:not(:last-child) {
    margin-bottom: 16px;
  }
  .s-related-services__description {
    line-height: 1.75;
  }
}
.s-related-services__description:not(:last-child) {
  margin-bottom: 64px;
}
.s-related-services__items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.s-related-services__item {
  display: inline-block;
  padding: 12px 24px;
  transition: all 0.3s ease;
  line-height: 1.27;
  border: 2px solid var(--blue);
  text-transform: lowercase;
  border-radius: 11px;
}
.s-related-services__item:hover {
  background: var(--blue);
  color: #fff;
}

.s-business-niches {
  padding: var(--section-padding) 0;
}
.s-business-niches .title:not(:last-child) {
  margin-bottom: 32px;
}
.s-business-niches__description {
  line-height: 1.27;
}
.s-business-niches__description:not(:last-child) {
  margin-bottom: 64px;
}
@media (min-width: 767.98px) {
  .s-business-niches__wrapper.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
  }
}
.s-business-niches__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 220px;
  align-items: center;
  border-radius: 11px;
  border: 2px solid var(--blue);
  transition: all 0.3s ease;
  padding: 40px 40px 20px;
}
.s-business-niches__item:hover {
  background: var(--blue);
  color: #fff;
}
.s-business-niches__item:hover .s-business-niches__item-icon {
  filter: brightness(0) invert(1);
}
@media (max-width: 767.98px) {
  .s-business-niches__item {
    min-height: 114px;
    padding: 16px;
  }
}
.s-business-niches__item-icon {
  aspect-ratio: 1;
  width: 64px;
  margin: 0 auto 20px;
}
@media (max-width: 767.98px) {
  .s-business-niches__item-icon {
    width: 48px;
    margin-bottom: 12px;
  }
}
.s-business-niches__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.s-business-niches__item-title {
  line-height: 1.4;
  word-break: break-word;
}
@media (min-width: 767.98px) {
  .s-business-niches__item-title {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .s-business-niches__item-title {
    line-height: 1.75;
  }
  .s-business-niches__slider .swiper-wrapper {
    max-height: 500px;
  }
}
.s-business-niches__navigation {
  margin-top: 40px;
}
@media (min-width: 767.98px) {
  .s-business-niches__navigation {
    display: none;
  }
}
.s-importance-services {
  padding: var(--section-padding) 0;
}
.s-importance-services .title:not(:last-child) {
  margin-bottom: 64px;
}
.s-importance-services__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991.98px) {
  .s-importance-services__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .s-importance-services__items {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.s-importance-services__item {
  padding: 40px;
  border-radius: 11px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
}
@media (max-width: 1166px) {
  .s-importance-services__item {
    padding: 32px;
  }
}
@media (max-width: 767.98px) {
  .s-importance-services__item {
    padding: 24px;
  }
}
.s-importance-services__item-title {
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.44;
  color: var(--blue);
  font-size: 26px;
}
@media (max-width: 991.98px) {
  .s-importance-services__item-title {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .s-importance-services__item-title {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.87;
  }
}
.s-importance-services__item-text {
  line-height: 1.27;
}
@media (max-width: 767.98px) {
  .s-importance-services__item-text {
    line-height: 1.75;
  }
}

.s-models {
  padding: var(--section-padding) 0;
}
.s-models .title {
  margin-bottom: 64px;
}
.s-models__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 991.98px) {
  .s-models__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (max-width: 767.98px) {
  .s-models__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.s-models__item-icon {
  margin-bottom: 24px;
  width: 124px;
  aspect-ratio: 1;
  position: relative;
}
@media (max-width: 1166px) {
  .s-models__item-icon {
    width: 100px;
  }
}
@media (max-width: 767.98px) {
  .s-models__item-icon {
    margin-bottom: 16px;
    width: 64px;
  }
}
.s-models__item-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}
.s-models__item-title {
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 24px;
  line-height: 1.1;
  font-size: 24px;
}
@media (max-width: 991.98px) {
  .s-models__item-title {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .s-models__item-title {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
.s-models__item-text {
  line-height: 1.27;
}
@media (max-width: 767.98px) {
  .s-models__item-text {
    line-height: 1.75;
  }
}

.s-related-services-slider {
  padding: var(--section-padding) 0;
  --height-btn: 60px;
}
@media (max-width: 991.98px) {
  .s-related-services-slider {
    --height-btn: 50px;
  }
}
.s-related-services-slider .title {
  margin-bottom: 64px;
}
.s-related-services-slider__slide.swiper-slide {
  height: auto;
}
.s-related-services-slider__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 11px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
  padding: 40px;
}
@media (max-width: 1479px) {
  .s-related-services-slider__item {
    padding: 32px;
  }
}
@media (max-width: 991.98px) {
  .s-related-services-slider__item {
    padding: 24px 16px;
  }
}
.s-related-services-slider__item-top {
  flex-grow: 1;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--blue);
}
@media (max-width: 767.98px) {
  .s-related-services-slider__item-top {
    padding-bottom: 32px;
  }
}
.s-related-services-slider__item-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.44;
  margin-bottom: 24px;
  color: var(--blue);
}
@media (max-width: 1166px) {
  .s-related-services-slider__item-title {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .s-related-services-slider__item-title {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
.s-related-services-slider__item-title a {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .s-related-services-slider__item-title a:hover {
    color: var(--primary-text);
  }
}
.s-related-services-slider__item-text {
  line-height: 1.27;
}
@media (max-width: 767.98px) {
  .s-related-services-slider__item-text {
    line-height: 1.75;
  }
}
.s-related-services-slider__item-bottom {
  padding-top: 40px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .s-related-services-slider__item-bottom {
    padding-top: 32px;
  }
}
.s-related-services-slider__item-row {
  display: flex;
  gap: 24px;
}
@media (max-width: 1479px) {
  .s-related-services-slider__item-row {
    gap: 16px;
  }
}
.s-related-services-slider .s-button {
  min-height: var(--height-btn);
  flex-grow: 1;
}
.s-related-services-slider__item-link {
  aspect-ratio: 1;
  width: var(--height-btn);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: var(--blue);
  padding: 8px;
}
@media (max-width: 767.98px) {
  .s-related-services-slider__item-link {
    padding: 6.4px;
  }
}
@media (hover: hover) {
  .s-related-services-slider__item-link:hover svg {
    transform: translate(calc(100% - 8px), calc((100% - 8px) * -1));
  }
}
.s-related-services-slider__item-link svg {
  width: 27px;
  height: 27px;
  fill: #fff;
  transition: all 0.3s ease;
}
.s-related-services-slider__pagination {
  margin-top: 40px;
}

.s-industry-growth {
  padding: var(--section-padding) 0;
}
.s-industry-growth__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
@media (max-width: 1166px) {
  .s-industry-growth__items {
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .s-industry-growth__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
.s-industry-growth__item-digit {
  padding-bottom: 24px;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 700;
  position: relative;
}
@media (min-width: 1400px) {
  .s-industry-growth__item-digit {
    font-size: 64px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  @supports (font-size: clamp( 36px , 1.9746835443px  +  4.4303797468vw , 64px )) {
    .s-industry-growth__item-digit {
      font-size: clamp( 36px , 1.9746835443px  +  4.4303797468vw , 64px );
    }
  }
  @supports not (font-size: clamp( 36px , 1.9746835443px  +  4.4303797468vw , 64px )) {
    .s-industry-growth__item-digit {
      font-size: calc(36px + 1.75 * (100vw - 768px) / 39.5);
    }
  }
}
@media (max-width: 768px) {
  .s-industry-growth__item-digit {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .s-industry-growth__item-digit {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.s-industry-growth__item-digit::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background: var(--blue);
}
@media (max-width: 991.98px) {
  .s-industry-growth__item-digit::after {
    height: 2px;
    width: 40px;
  }
}
.s-industry-growth__item-text {
  line-height: 1.27;
}
@media (max-width: 767.98px) {
  .s-industry-growth__item-text {
    line-height: 1.75;
  }
}

.s-packages {
  padding: var(--section-padding) 0;
}
.s-packages .title:not(:last-child) {
  margin-bottom: 64px;
}
.s-packages__item {
  border-radius: 11px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1479px) {
  .s-packages__item {
    padding: 32px;
  }
}
@media (max-width: 1166px) {
  .s-packages__item {
    padding: 32px 20px;
  }
}
@media (max-width: 767.98px) {
  .s-packages__item {
    padding: 24px 16px;
  }
}
.s-packages__item .s-button {
  text-align: center;
}
.s-packages__item-top {
  flex-grow: 1;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .s-packages__item-top {
    margin-bottom: 24px;
  }
}
.s-packages__item-top ul {
  padding-top: 32px;
  padding-left: 1em;
}
@media (max-width: 767.98px) {
  .s-packages__item-top ul {
    padding-top: 16px;
    padding-left: 1.3em;
  }
}
.s-packages__item-top ul li {
  list-style: inherit;
  line-height: 1.7;
}
@media (max-width: 767.98px) {
  .s-packages__item-top ul li {
    line-height: 1.6;
  }
}
.s-packages__item-top ul li:not(:last-child) {
  margin-bottom: 8px;
}
.s-packages__item-title {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 1166px) {
  .s-packages__item-title {
    font-size: 32px;
  }
}
@media (max-width: 991.98px) {
  .s-packages__item-title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .s-packages__item-title {
    font-size: 26px;
    margin-bottom: 8px;
  }
}
.s-packages__item-description {
  line-height: 1.44;
}
@media (min-width: 1400px) {
  .s-packages__item-description {
    font-size: 26px;
  }
}
@media (min-width: 991px) and (max-width: 1400px) {
  @supports (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-packages__item-description {
      font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px );
    }
  }
  @supports not (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-packages__item-description {
      font-size: calc(20px + 0.375 * (100vw - 991px) / 25.5625);
    }
  }
}
@media (max-width: 991px) {
  .s-packages__item-description {
    font-size: 20px;
  }
}
.s-packages__item-description b {
  font-weight: 500;
}
.s-packages__item-prices {
  text-align: center;
  color: var(--blue);
  font-weight: 500;
  line-height: 1.44;
  margin-bottom: 40px;
}
@media (min-width: 1400px) {
  .s-packages__item-prices {
    font-size: 26px;
  }
}
@media (min-width: 991px) and (max-width: 1400px) {
  @supports (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-packages__item-prices {
      font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px );
    }
  }
  @supports not (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-packages__item-prices {
      font-size: calc(20px + 0.375 * (100vw - 991px) / 25.5625);
    }
  }
}
@media (max-width: 991px) {
  .s-packages__item-prices {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  .s-packages__item-prices {
    margin-bottom: 24px;
    line-height: 1.87;
  }
}
.s-packages__item-prices > *:not(:last-child) {
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .s-packages__item-prices > *:not(:last-child) {
    margin-bottom: 0;
  }
}

.s-packages-tabs__navigation {
  display: flex;
  gap: 8px;
  overflow-y: auto;
  margin: 0 -30px 40px;
  padding: 0 30px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 991.98px) {
  .s-packages-tabs__navigation {
    margin-bottom: 24px;
  }
}
.s-packages-tabs__navigation::-webkit-scrollbar {
  display: none;
}
.s-packages-tabs__title {
  border-radius: 11px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
  min-width: 233px;
  padding: 5px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  transition: all 0.3s ease;
  text-transform: lowercase;
}
@media (max-width: 991.98px) {
  .s-packages-tabs__title {
    height: 47px;
  }
}
.s-packages-tabs__title:hover {
  background: var(--blue);
  color: #fff;
}
.s-packages-tabs__title._tab-active {
  background: var(--blue);
  color: #fff;
}
.s-packages-tabs__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991.98px) {
  .s-packages-tabs__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .s-packages-tabs__items {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.s-services-seo {
  padding: var(--section-padding) 0;
}
.s-services-seo .title:not(:last-child) {
  margin-bottom: 64px;
}
.s-services-seo .tags__item {
  text-transform: none;
}
.s-services-seo__tags:not(:last-child) {
  margin-bottom: 60px;
}
.s-services-seo .works-card__content {
  padding-right: 40px;
}
.s-services-seo__grid-layout {
  display: none;
}
.s-services-seo__grid-layout .works-card__title {
  max-width: 100%;
}

.s-services-seo-tabs__navigation {
  display: flex;
  gap: 8px;
  overflow-y: auto;
  margin: 0 -30px 0;
  padding: 0 30px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 991.98px) {
  .s-services-seo-tabs__navigation {
    margin-bottom: 24px;
  }
}
.s-services-seo-tabs__navigation ._tab-active .s-services-seo-tabs__title {
  background: var(--blue);
  color: #fff;
}
.s-services-seo-tabs__navigation::-webkit-scrollbar {
  display: none;
}
.s-services-seo-tabs .swiper-slide._tab-active .s-services-seo-tabs__title {
  background: var(--blue);
  color: #fff;
}
.s-services-seo-tabs__title {
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .s-services-seo-tabs__title {
    height: 47px;
  }
}
.s-services-seo-tabs__title:hover {
  background: var(--blue);
  color: #fff;
}
.s-services-seo-tabs__title._tab-active {
  background: var(--blue);
  color: #fff;
}

.s-faq {
  padding: var(--section-padding) 0;
}
.s-faq .title:not(:last-child) {
  margin-bottom: 64px;
}
.s-faq .faq {
  padding-top: 0;
}
.s-faq .item-spoller__title {
  font-size: 26px;
}
@media (max-width: 767.98px) {
  .s-faq .item-spoller__title {
    font-size: 20px;
    line-height: 140%;
    min-height: 88px;
  }
}

.s-contact-form {
  padding: var(--section-padding) 0;
}
.s-contact-form .title {
  margin-bottom: 16px;
}
.s-contact-form__row {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .s-contact-form__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.s-contact-form__left {
  padding-right: 88px;
  flex-grow: 1;
}
@media (max-width: 991.98px) {
  .s-contact-form__left {
    padding-right: 40px;
  }
}
@media (max-width: 767.98px) {
  .s-contact-form__left {
    padding-right: 0;
    width: 100%;
  }
}
.s-contact-form__subtitle:not(:last-child) {
  margin-bottom: 64px;
}
.s-contact-form__items {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 767.98px) {
  .s-contact-form__items {
    gap: 20px;
    margin-bottom: 24px;
  }
}
.s-contact-form__right {
  flex-shrink: 0;
  width: 35.8333333333%;
}
@media (max-width: 767.98px) {
  .s-contact-form__right {
    width: 100%;
    position: relative;
  }
  .s-contact-form__image {
    display: none;
  }
}

.s-working-process {
  padding: var(--section-padding) 0;
}
.s-working-process .title:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .s-working-process .title:not(:last-child) {
    margin-bottom: 16px;
  }
}
.s-working-process__top:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .s-working-process__top:not(:last-child) {
    margin-bottom: 64px;
  }
}
.s-working-process__description {
  line-height: 1.27;
}
.s-working-process__nav-top {
  margin-bottom: 80px;
  display: flex;
  overflow: hidden;
  padding: 0 65px;
}
@media (max-width: 991.98px) {
  .s-working-process__nav-top {
    padding: 0;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.s-working-process__nav-top-item {
  text-align: center;
  flex: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 10px;
  position: relative;
}
@media (max-width: 991.98px) {
  .s-working-process__nav-top-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
.s-working-process__nav-top-item::after {
  content: "";
  left: 50%;
  height: 2px;
  transform: translate(56px, 0);
  background: var(--blue);
  top: 32px;
  width: calc(100% - 110px);
  position: absolute;
}
@media (max-width: 1479px) {
  .s-working-process__nav-top-item::after {
    top: 24px;
    width: calc(100% - 80px);
    transform: translate(40px, 0);
  }
}
@media (max-width: 991.98px) {
  .s-working-process__nav-top-item::after {
    display: none;
  }
}
.s-working-process__nav-top-item:first-child::before {
  content: "";
  right: 50%;
  height: 2px;
  transform: translate(-56px, 0);
  background: var(--blue);
  top: 32px;
  width: calc(100% - 110px);
  position: absolute;
}
@media (max-width: 1479px) {
  .s-working-process__nav-top-item:first-child::before {
    top: 24px;
    transform: translate(-40px, 0);
    width: calc(100% - 80px);
  }
}
@media (max-width: 991.98px) {
  .s-working-process__nav-top-item:first-child::before {
    display: none;
  }
}
.s-working-process__nav-top-item.active .s-working-process__nav-top-item-digit {
  background: var(--blue);
  color: #fff;
}
.s-working-process__nav-top-item:hover .s-working-process__nav-top-item-digit {
  background: var(--blue);
  color: #fff;
}
.s-working-process__nav-top-item-digit {
  border-radius: 64px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
  width: 64px;
  aspect-ratio: 1;
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue);
}
@media (min-width: 1400px) {
  .s-working-process__nav-top-item-digit {
    font-size: 26px;
  }
}
@media (min-width: 991px) and (max-width: 1400px) {
  @supports (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-working-process__nav-top-item-digit {
      font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px );
    }
  }
  @supports not (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-working-process__nav-top-item-digit {
      font-size: calc(20px + 0.375 * (100vw - 991px) / 25.5625);
    }
  }
}
@media (max-width: 991px) {
  .s-working-process__nav-top-item-digit {
    font-size: 20px;
  }
}
.dark .s-working-process__nav-top-item-digit {
  color: inherit;
}
@media (max-width: 1479px) {
  .s-working-process__nav-top-item-digit {
    width: 48px;
  }
}
@media (max-width: 991.98px) {
  .s-working-process__nav-top-item-digit {
    margin-bottom: 0;
    color: var(--blue);
  }
}
.s-working-process__nav-top-item-name {
  line-height: 1.7;
}
@media (max-width: 1479px) {
  .s-working-process__nav-top-item-name {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  .s-working-process__nav-top-item-name {
    font-size: 18px;
  }
}
.s-working-process__row {
  display: flex;
  gap: 30px;
}
.s-working-process__nav-left {
  flex-shrink: 0;
  width: 35.7317073171%;
}
@media (max-width: 991.98px) {
  .s-working-process__nav-left {
    display: none;
  }
}
.s-working-process__nav-left-item {
  border-radius: 11px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 1479px) {
  .s-working-process__nav-left-item {
    padding: 16px;
  }
}
.s-working-process__nav-left-item:not(:last-child) {
  margin-bottom: 16px;
}
.s-working-process__nav-left-item.active {
  background: var(--blue);
  color: #fff;
}
.s-working-process__nav-left-item.active .s-working-process__nav-left-digit {
  background: #fff;
  border-color: #fff;
  color: var(--blue);
}
.s-working-process__nav-left-item:hover {
  background: var(--blue);
  color: #fff;
}
.s-working-process__nav-left-item:hover .s-working-process__nav-left-digit {
  background: #fff;
  border-color: #fff;
  color: var(--blue);
}
.s-working-process__nav-left-digit {
  transition: all 0.3s ease;
  border: 2px solid var(--blue);
  width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 50%;
  font-weight: 500;
  color: var(--blue);
}
@media (min-width: 1400px) {
  .s-working-process__nav-left-digit {
    font-size: 26px;
  }
}
@media (min-width: 991px) and (max-width: 1400px) {
  @supports (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-working-process__nav-left-digit {
      font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px );
    }
  }
  @supports not (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-working-process__nav-left-digit {
      font-size: calc(20px + 0.375 * (100vw - 991px) / 25.5625);
    }
  }
}
@media (max-width: 991px) {
  .s-working-process__nav-left-digit {
    font-size: 20px;
  }
}
.dark .s-working-process__nav-left-digit {
  color: inherit;
}
@media (max-width: 1479px) {
  .s-working-process__nav-left-digit {
    width: 48px;
  }
}
@media (min-width: 1400px) {
  .s-working-process__nav-left-name {
    font-size: 26px;
  }
}
@media (min-width: 991px) and (max-width: 1400px) {
  @supports (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-working-process__nav-left-name {
      font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px );
    }
  }
  @supports not (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-working-process__nav-left-name {
      font-size: calc(20px + 0.375 * (100vw - 991px) / 25.5625);
    }
  }
}
@media (max-width: 991px) {
  .s-working-process__nav-left-name {
    font-size: 20px;
  }
}
.s-working-process__content {
  min-width: 0;
  flex-grow: 1;
}
.s-working-process__item {
  border-radius: 11px;
  border: 2px solid var(--blue);
  background: var(--secondary-bg);
  padding: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
@media (max-width: 991.98px) {
  .s-working-process__item {
    padding: 24px 16px;
  }
}
.s-working-process__item-top {
  margin-bottom: 32px;
  flex-grow: 1;
}
.s-working-process__item-title {
  margin-bottom: 16px;
  font-weight: 500;
}
@media (min-width: 1400px) {
  .s-working-process__item-title {
    font-size: 26px;
  }
}
@media (min-width: 991px) and (max-width: 1400px) {
  @supports (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-working-process__item-title {
      font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px );
    }
  }
  @supports not (font-size: clamp( 20px , 5.4621026895px  +  1.466992665vw , 26px )) {
    .s-working-process__item-title {
      font-size: calc(20px + 0.375 * (100vw - 991px) / 25.5625);
    }
  }
}
@media (max-width: 991px) {
  .s-working-process__item-title {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .s-working-process__item-title {
    margin-bottom: 8px;
  }
}
.s-working-process__item-title span {
  color: var(--blue);
}
.s-working-process__item-text {
  color: #808080;
  line-height: 1.27;
}
@media (max-width: 767.98px) {
  .s-working-process__item-text {
    line-height: 1.75;
  }
}
.dark .s-working-process__item-text {
  color: #97999D;
}
.s-working-process__item-bottom {
  border-radius: 11px;
  padding: 16px;
  background: #F6F6F6;
}
.dark .s-working-process__item-bottom {
  background: #2E2E2E;
}
.s-working-process__item-time {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  gap: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--blue);
}
@media (max-width: 767.98px) {
  .s-working-process__item-time {
    font-size: 18px;
    gap: 8px;
  }
}
.s-working-process__item-time img {
  width: 24px;
  flex-shrink: 0;
}
.s-working-process__item-days {
  line-height: 1.45;
}
.s-working-process__slider {
  height: 100%;
}
.s-working-process__slider .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}
.s-working-process__navigation {
  margin-top: 40px;
}
@media (min-width: 991.98px) {
  .s-working-process__navigation {
    display: none;
  }
}

.s-hero-block {
  padding: var(--section-padding) 0;
}
@media (max-width: 767.98px) {
  .s-hero-block {
    padding-top: 24px;
  }
}
.s-hero-block .title-big {
  margin-bottom: 40px;
  min-height: auto;
}
.s-hero-block__row {
  display: flex;
  gap: 26px;
}
@media (max-width: 767.98px) {
  .s-hero-block__row {
    flex-direction: column;
  }
}
.s-hero-block__content {
  padding-top: 110px;
  width: 57.5%;
  flex-shrink: 0;
}
@media (max-width: 1166px) {
  .s-hero-block__content {
    padding-top: 60px;
  }
}
@media (max-width: 767.98px) {
  .s-hero-block__content {
    padding-top: 0;
    width: 100%;
  }
}
.s-hero-block__text {
  line-height: 1.27;
}
@media (max-width: 767.98px) {
  .s-hero-block__text {
    line-height: 1.75;
  }
}
.s-hero-block__text:not(:last-child) {
  margin-bottom: 64px;
}
@media (max-width: 767.98px) {
  .s-hero-block__text:not(:last-child) {
    margin-bottom: 40px;
  }
}
.s-hero-block__image {
  width: 900px;
  flex-shrink: 0;
}
@media (max-width: 1479px) {
  .s-hero-block__image {
    width: 700px;
  }
}
@media (max-width: 1166px) {
  .s-hero-block__image {
    width: 500px;
  }
}
@media (max-width: 767.98px) {
  .s-hero-block__image {
    width: auto;
    max-width: 350px;
    margin: 0 auto;
  }
}

.footer {
  padding: 50px 0 35px;
  background: var(--primary-bg);
  position: sticky;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .footer {
    z-index: 1;
  }
}
@media (max-width: 767.98px) {
  .footer {
    padding: 35px 0 30px;
  }
}
.footer__container {
  max-width: 1760px;
  justify-content: flex-end;
  display: flex;
}
.footer__wrap {
  max-width: 1460px;
  width: 100%;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  gap: 30px;
  position: relative;
}
@media (max-width: 1166px) {
  .footer__top {
    padding-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .footer__top {
    flex-direction: column;
    gap: 58px;
    padding-bottom: 0;
  }
}
.footer__top::after {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  width: 200vw;
  left: -50vw;
  bottom: 0;
  height: 1px;
  position: absolute;
}
@media (max-width: 767.98px) {
  .footer__top::after {
    display: none;
  }
}
.dark .footer__top::after {
  background: rgba(255, 255, 255, 0.3);
}
.footer__left {
  max-width: 350px;
}
@media (min-width: 767.98px) {
  .footer__socials {
    display: none;
  }
}
.footer__socials:not(:last-child) {
  margin-bottom: 36px;
}
.footer__logo {
  display: block;
}
@media (max-width: 767.98px) {
  .footer__logo {
    max-width: 173px;
  }
}
.footer__logo:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .footer__logo:not(:last-child) {
    margin-bottom: 0;
  }
}
.footer__logo .dark {
  display: block;
}
.dark .footer__logo .dark {
  display: none;
}
.footer__logo .white {
  display: none;
}
.dark .footer__logo .white {
  display: block;
}
.footer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 48px;
}
@media (max-width: 991.98px) {
  .footer__list {
    gap: 16px 24px;
  }
}
@media (max-width: 767.98px) {
  .footer__list {
    display: none;
  }
}
.footer__list a {
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (hover: hover) {
  .footer__list a:hover {
    color: var(--blue);
  }
}
.footer__right {
  max-width: 484px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .footer__right {
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  .footer__right {
    max-width: 100%;
  }
}
.footer__row {
  display: flex;
  gap: 40px;
}
@media (max-width: 991.98px) {
  .footer__row {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .footer__row {
    display: none;
  }
}
.footer__info {
  max-width: 183px;
}
@media (max-width: 767.98px) {
  .footer__info {
    max-width: 100%;
  }
}
.footer__time {
  font-size: 32px;
  line-height: 32px;
  color: var(--blue);
}
.footer__time:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .footer__time:not(:last-child) {
    margin-bottom: 10px;
  }
}
.footer__descr {
  font-size: 10px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.49);
}
@media (max-width: 479.98px) {
  .footer__descr {
    max-width: 173px;
  }
}
.dark .footer__descr {
  color: rgba(255, 255, 255, 0.49);
}
.footer__descr:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .footer__descr:not(:last-child) {
    margin-bottom: 48px;
  }
}
.footer__phones {
  display: grid;
  gap: 18px;
}
.footer__phones li {
  font-size: 16px;
  line-height: 1.2;
}
.footer__phones li p {
  font-weight: 500;
}
.footer__phones li a {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (hover: hover) {
  .footer__phones li a:hover {
    color: var(--blue);
  }
}
.footer__adress ul {
  display: grid;
  gap: 44px;
  font-size: 16px;
  line-height: 1.5;
}
.footer__adress ul li:first-child {
  color: var(--blue);
}
.footer__adress ul:last-child {
  color: #B1AB27;
}
.footer__adress ul h4 {
  font-weight: 500;
}
.footer__adress ul h4:not(:last-child) {
  margin-bottom: 8px;
}
.footer__bottom {
  font-size: 14px;
  line-height: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  opacity: 0.6;
  padding: 28px 0;
}
@media (max-width: 767.98px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 47px 0 0;
  }
}
.footer__bottom-list {
  display: flex;
  gap: 40px;
}
.footer__bottom-list a {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (hover: hover) {
  .footer__bottom-list a:hover {
    color: var(--blue);
  }
}

.footer-mob {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
@media (max-width: 600px) {
  .footer-mob {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 767.98px) {
  .footer-mob {
    display: none;
  }
}
.footer-mob__block {
  display: grid;
  gap: 15px;
}
.footer-mob__item {
  font-size: 16px;
  line-height: 1.5;
}
.footer-mob__item.blue {
  color: var(--blue);
}
.footer-mob__item.yellow {
  color: #FFF500;
}
.footer-mob__item.yellow h4 {
  color: #FFE600;
}
.footer-mob__item a {
  transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
@media (hover: hover) {
  .footer-mob__item a:hover {
    text-decoration: underline;
  }
}
.footer-mob__item h4 {
  font-weight: 500;
}
.footer-mob__item h4.mb-8 {
  margin-bottom: 8px;
}
.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input,
.iti input[type=text],
.iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti {
  width: 100%;
}

.iti__flag-container {
  position: absolute;
  top: -1.5px;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 20px;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

[dir=rtl] .iti__arrow {
  margin-right: 6px;
  margin-left: 0;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid var(--blue);
  padding: 10px;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.dark .iti__country-list {
  background: #121212;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.iti__country {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  outline: none;
}

.iti__dial-code {
  font-size: 16px;
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__flag-box, .iti__country-name {
  margin-right: 6px;
  font-size: 16px;
}

[dir=rtl] .iti__flag-box, [dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: 6px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel], .iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

[dir=rtl] .iti--allow-dropdown input,
[dir=rtl] .iti--allow-dropdown input[type=text],
[dir=rtl] .iti--allow-dropdown input[type=tel], [dir=rtl] .iti--separate-dial-code input,
[dir=rtl] .iti--separate-dial-code input[type=text],
[dir=rtl] .iti--separate-dial-code input[type=tel] {
  padding-right: 52px;
  padding-left: 6px;
  margin-right: 0;
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

[dir=rtl] .iti--allow-dropdown .iti__flag-container, [dir=rtl] .iti--separate-dial-code .iti__flag-container {
  right: 0;
  left: auto;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background: transparent;
}

.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  margin-left: 6px;
  font-size: 16px;
  color: var(--blue);
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../img/main-img/flags.webp");
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("../img/main-img/flags@2x.webp");
  }
}
.iti__flag.iti__np {
  background-color: transparent;
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: var(--primary-bg);
  color: var(--primary-text);
  -webkit-box-shadow: 1px 0 0 var(--blue), -1px 0 0 var(--blue), 0 1px 0 var(--blue), 0 -1px 0 var(--blue), 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 var(--blue), -1px 0 0 var(--blue), 0 1px 0 var(--blue), 0 -1px 0 var(--blue), 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 var(--blue), 5px 0 0 var(--blue);
  box-shadow: -2px 0 0 var(--blue), 5px 0 0 var(--blue);
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid var(--blue);
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: var(--blue);
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: var(--blue);
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: var(--blue);
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: var(--primary-text);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: var(--blue);
  fill: var(--blue);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

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

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

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch \0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: var(--blue);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 var(--blue);
  box-shadow: -1px 0 0 var(--blue);
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--primary-text);
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: var(--blue);
  border-color: var(--blue);
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 var(--blue), 5px 0 0 var(--blue);
  box-shadow: -5px 0 0 var(--blue), 5px 0 0 var(--blue);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.4);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.dark .flatpickr-day.flatpickr-disabled,
.dark .flatpickr-day.flatpickr-disabled:hover,
.dark .flatpickr-day.prevMonthDay,
.dark .flatpickr-day.nextMonthDay,
.dark .flatpickr-day.notAllowed,
.dark .flatpickr-day.notAllowed.prevMonthDay,
.dark .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(255, 255, 255, 0.4);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 var(--blue);
  box-shadow: 1px 0 0 var(--blue);
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/**
 * Swiper 11.1.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 24, 2024
 */
/* FONT_START */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
: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);
  -webkit-backface-visibility: hidden;
  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-3d .swiper-slide,
.swiper-3d .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 */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.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 */
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

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