:root {
  --font-system-ui:
    system-ui, -apple-system, blinkmacsystemfont, segoe ui, roboto,
    oxygen, ubuntu, cantarell, open sans, helvetica neue, sans-serif;
  --default-font-family: "Roboto", var(--font-system-ui, sans-serif);
  --inter-font-family: "Inter", sans-serif;
  --default-transition: 0.3s ease-in-out;
  --neutral-primary-100: #fff;
  --neutral-primary-200: #f9f9f9;
  --neutral-primary-300: #dedede;
  --neutral-primary-400: #9e9d9d;
  --neutral-primary-500: #646464;
  --neutral-primary-600: #444;
  --neutral-primary-700: #383838;
  --neutral-primary-800: #2d2d2e;
  --neutral-primary-900: #1a1a1b;
  --neutral-primary-1000: #141414;
  --overlay-black-100: rgb(12 12 13 / 5%);
  --overlay-black-200: rgb(20 20 20 / 10%);
  --overlay-black-300: rgb(20 20 20 / 20%);
  --overlay-black-400: rgb(20 20 20 / 40%);
  --overlay-black-500: rgb(20 20 20 / 70%);
  --overlay-black-600: rgb(20 20 20 / 80%);
  --overlay-black-700: rgb(20 20 20 / 85%);
  --overlay-black-800: rgb(20 20 20 / 90%);
  --overlay-black-900: rgb(20 20 20 / 95%);
  --overlay-black-1000: #141414;
  --overlay-white-100: rgb(255 255 255 / 5%);
  --overlay-white-200: rgb(255 255 255 / 10%);
  --overlay-white-300: rgb(255 255 255 / 20%);
  --overlay-white-400: rgb(255 255 255 / 40%);
  --overlay-white-500: rgb(255 255 255 / 70%);
  --overlay-white-600: rgb(255 255 255 / 80%);
  --overlay-white-700: rgb(255 255 255 / 85%);
  --overlay-white-800: rgb(255 255 255 / 90%);
  --overlay-white-900: rgb(255 255 255 / 95%);
  --overlay-white-1000: #fff;
  --positive-100: #d5f6e7;
  --positive-200: #98e3c2;
  --positive-300: #70d7aa;
  --positive-400: #47ca91;
  --positive-500: #1ebe78;
  --positive-600: #189860;
  --positive-700: #0f7247;
  --positive-800: #153d2c;
  --positive-900: #103022;
  --positive-1000: #062618;
  --primary-100: #bde0f9;
  --primary-200: #8ec8f3;
  --primary-300: #5eb1ee;
  --primary-400: #0093ff;
  --primary-500: #0082e2;
  --primary-600: #006ec0;
  --primary-700: #004e88;
  --primary-800: #15354e;
  --primary-900: #112b3e;
  --primary-1000: #0f2434;
  --danger-100: #fee9e7;
  --danger-200: #fdd3d0;
  --danger-300: #fcb3ad;
  --danger-400: #ec615f;
  --danger-500: #dd4846;
  --danger-600: #cf3735;
  --danger-700: #8a1e1c;
  --danger-800: #521b1a;
  --danger-900: #441b1a;
  --danger-1000: #2b0e0d;
  --warning-100: #fff6e8;
  --warning-200: #ffe7c3;
  --warning-300: #ffdaa3;
  --warning-400: #fbb854;
  --warning-500: #efa12d;
  --warning-600: #d99127;
  --warning-700: #c0801f;
  --warning-800: #4c3614;
  --warning-900: #3e2c10;
  --warning-1000: #312410;
  --secondary-100: #f5ecfe;
  --secondary-200: #eddcff;
  --secondary-300: #e3cbff;
  --secondary-400: #cf9eff;
  --secondary-500: #c386ff;
  --secondary-600: #b06fef;
  --secondary-700: #7c3cba;
  --secondary-800: #3e2f4f;
  --secondary-900: #32273e;
  --secondary-1000: #261d2f;
  --primary-500-160: rgb(0 130 226 / 16%);
  --primary-500-320: rgb(0 130 226 / 32%);
  --primary-500-680: rgb(0 130 226 / 68%);
  --primary-500-840: rgb(0 130 226 / 84%);
  --neutral-100-160: rgb(245 245 245 / 16%);
  --neutral-100-320: rgb(245 245 245 / 32%);
  --neutral-100-680: rgb(245 245 245 / 68%);
  --neutral-100-840: rgb(245 245 245 / 84%);
  --secondary-500-160: rgb(195 134 255 / 16%);
  --secondary-500-320: rgb(195 134 255 / 32%);
  --secondary-500-680: rgb(195 134 255 / 68%);
  --secondary-500-840: rgb(195 134 255 / 84%);
  --danger-500-160: rgb(221 72 70 / 16%);
  --danger-500-320: rgb(221 72 70 / 32%);
  --danger-500-680: rgb(221 72 70 / 68%);
  --danger-500-840: rgb(221 72 70 / 84%);
  --warning-500-160: rgb(239 161 45 / 16%);
  --warning-500-320: rgb(239 161 45 / 32%);
  --warning-500-680: rgb(239 161 45 / 68%);
  --warning-500-840: rgb(239 161 45 / 84%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
  border: 0;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none;
    animation: none;
  }
}

html {
  scrollbar-gutter: stable;
  color-scheme: dark light;
}

body {
  min-inline-size: 320px;
  font-family: var(--default-font-family, "Roboto");
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: var(--neutral-primary-1000, #141414);
  text-size-adjust: 100%;
  text-rendering: optimizelegibility;
  background-color: var(--neutral-primary-100, #fff);
}

/*
  Disabling overscroll only for desktop so that the user
  on the phone has the ability to refresh the page
*/

@media (any-hover: hover) and (pointer: fine) {
  body {
    overscroll-behavior-block: none;
  }
}

/* Pins the footer to the bottom if the wrapper has display: flex; */

main {
  flex-grow: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

summary,
ul,
ol {
  list-style-type: none;
}

video,
picture,
img {
  inline-size: 100%;
  block-size: 100%;
  font-style: italic;
  vertical-align: middle;
  object-fit: cover;
  object-position: top;
  background-repeat: no-repeat;
}

input,
svg {
  display: block;
}

input,
textarea {
  /* Removes rounded corners from input fields in Safari */
  border-radius: 0;
}

input {
  inline-size: 100%;
  appearance: none;
  background-color: transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-color: transparent !important;
}

textarea {
  resize: none;
}

textarea::-webkit-resizer {
  appearance: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

button,
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

@media (any-hover: hover) and (pointer: fine) {
  summary:hover,
  button:hover,
  label:hover {
    cursor: pointer;
  }
}

.wrapper {
  /* For work position: sticky; */
  overflow: clip;
  display: flex;
  flex-direction: column;
  min-block-size: 100vb;
}

.vacancies {
  padding-block: 20px;
}

@media (width >= 960px) {
  .vacancies {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .vacancies {
    padding-block: 40px 60px;
  }
}

.vacancies__container {
  display: grid;
  row-gap: 24px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .vacancies__container {
    display: flex;
    column-gap: 32px;
    padding-inline: 32px;
  }

  .vacancies__container > div {
    flex: 1 1 auto;
  }
}

@media (width >= 1440px) {
  .vacancies__container {
    column-gap: 48px;
    padding-inline: 64px;
  }
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: content-box;
  inline-size: 100%;
  block-size: 100%;
}

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

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}

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

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

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

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

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

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

@font-face {
  font-family: Inter;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src:
    url("../fonts/Inter-SemiBold.woff") format("woff"),
    url("../fonts/Inter-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: Roboto;
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src:
    url("../fonts/Roboto-Black.woff") format("woff"),
    url("../fonts/Roboto-Black.woff2") format("woff2");
}

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

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

@font-face {
  font-family: Roboto;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src:
    url("../fonts/Roboto-SemiBold.woff") format("woff"),
    url("../fonts/Roboto-SemiBold.woff2") format("woff2");
}

.header {
  background-color: var(--neutral-primary-1000, #141414);
  border-bottom: 1px solid
    var(--overlay-white-200, rgb(255 255 255 / 10%));
}

@media (width >= 1200px) {
  .header {
    background-color: var(--neutral-primary-100, #fff);
    border-bottom: none;
  }
}

.header__top {
  display: none;
}

@media (width >= 1200px) {
  .header__top {
    display: block;
    background-color: var(--neutral-primary-200, #f9f9f9);
  }
}

.header__top-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 4px 64px;
}

.header__switch {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  align-self: stretch;
  min-height: 32px;
  font-size: 9px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--neutral-primary-300, #dedede);
  border-radius: 8px;
}

.header__label {
  position: relative;
  width: 128px;
  padding: 0 12px 0 8px;
  background-color: transparent;
}

.header__label::before {
  pointer-events: none;
  content: url("/local/templates/geely/icons/select-arrow.svg");
  position: absolute;
  top: calc(50% - 1px);
  right: 13px;
  transform: translateY(-50%) rotate(180deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
}

.hide.header__label::before {
  top: calc(50% + 1px);
  transform: translateY(-50%) rotate(0);
}

.header-select-address {
  cursor: pointer;
  display: block;
  padding-right: 30px;
  padding-block: 10px;
  white-space: nowrap;
  transition: color var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .header-select-address:hover {
    color: var(--neutral-primary-600, #444);
  }
}

.header-select-address__list {
  position: absolute;
  z-index: 1;
  top: 25px;
  left: 0;
  width: 280px;
  padding: 6px;
  font-family: var(--default-font-family);
  font-size: 10px;
  font-weight: 400;
  line-height: 140%;
  text-transform: none;
  letter-spacing: normal;
  opacity: 1;
  background-color: var(--neutral-primary-200, #f9f9f9);
  border-radius: 3px;
  box-shadow: 0 16px 32px 0 rgb(0 0 0 / 32%);
  transition: opacity var(--default-transition);
}

.hide .header-select-address__list {
  touch-action: none;
  z-index: -10;
  opacity: 0;
}

.header-select-address__list li:not(:last-child) {
  margin-bottom: 3px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--neutral-primary-300);
}

.header-select-address__location {
  margin-bottom: 2px;
}

.header-select-address__days {
  color: var(--neutral-primary-500);
}

.header__switch-button {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 100%;
  padding: 0 12px;
  color: var(--neutral-primary-500, #646464);
  border-left: 1px solid var(--neutral-primary-300, #dedede);
  transition: color var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .header__switch-button:hover {
    color: var(--neutral-primary-800, #2d2d2e);
  }
}

.header__contacts {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.header__work-times {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--inter-font-family, "Inter", sans-serif);
  font-size: 8px;
  line-height: 120%;
}

.header__phone {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: var(--neutral-primary-900, #1a1a1b);
  transition: color var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .header__phone:hover {
    color: var(--neutral-primary-500, #646464);
  }
}

.header__socials {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: center;
}

.header__social-link {
  display: block;
  width: 24px;
  height: 24px;
  padding: 2px;
  opacity: 0.4;
  transition: opacity var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .header__social-link:hover {
    opacity: 0.7;
  }
}

.header__bottom-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 8px 16px 7px;
}

@media (width >= 1200px) {
  .header__bottom-container {
    padding: 12px 64px;
  }
}

.header__logo-icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 4px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo svg {
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 1200px) {
  .header__logo svg {
    color: var(--neutral-primary-900, #1a1a1b);
  }
}

.header__logo:first-child svg {
  width: 75px;
  height: 14px;
  color: var(--neutral-primary-300, #dedede);
}

.header__logo:first-child {
  padding-right: 7px;
  border-right: 1px solid var(--neutral-primary-800, #2d2d2e);
}

@media (width >= 1200px) {
  .header__logo:first-child {
    padding-right: 12px;
    border-right: 1px solid var(--neutral-primary-300, #dedede);
  }

  .header__logo:first-child svg {
    width: unset;
    height: unset;
    color: var(--neutral-primary-900, #1a1a1b);
  }
}

.header__logo:last-child {
  padding-left: 7px;
}

.header__logo:last-child svg {
  width: 38px;
  height: 11px;
}

@media (width >= 1200px) {
  .header__logo:last-child {
    padding-left: 12px;
  }

  .header__logo:last-child svg {
    width: unset;
    height: unset;
  }
}

.header__logo-text {
  font-size: 5px;
  font-weight: 700;
  line-height: 140%;
  color: var(--neutral-primary-400, #9e9d9d);
  text-align: right;
  letter-spacing: 0.28em;
}

@media (width >= 1200px) {
  .header__logo-text {
    font-size: 9px;
    color: #000;
    letter-spacing: 0.18em;
  }
}

@media (width <= 1200px) {
  .header__menu-wrapper {
    position: fixed;
    z-index: 5;
    top: 60px;
    right: -100%;
    bottom: 0;
    transform: translateX(100%);
    overflow: hidden;
    width: 100%;
    transition: right var(--default-transition);
  }

  .header__menu-wrapper.shown {
    right: 0;
    transform: translateX(0);
    height: calc(100svb - 60px);
  }

  .header__menu-wrapper.closing {
    transform: translateX(100%);
  }

  .header__menu-inner {
    scrollbar-width: none;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    display: flex;
    flex-flow: nowrap column;
    gap: 35px;
    max-width: 280px;
    max-height: 100svb;
    background: var(--neutral-primary-300, #dedede);
  }
}

.header__menu-wrapper.shown::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  width: 100%;
  height: 100dvb;
  background: var(--Overlay-Black-500, rgb(20 20 20 / 70%));
  backdrop-filter: blur(8px);
}

@media (width >= 1200px) {
  .header__menu-wrapper {
    position: static;
    display: block;
    width: unset;
  }
}

.header__nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.shown .header__nav-list {
  flex-direction: column;
}

.header__nav-item {
  position: relative;
}

.shown .header__nav-item {
  width: 100%;
  background: var(--neutral-primary-100, #fff);
}

.header__nav-link {
  position: relative;
  display: block;
  padding: 10px 12px;
  color: var(--neutral-primary-900, #1a1a1b);
  white-space: nowrap;
  transition: color var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .header__nav-link:hover {
    color: var(--neutral-primary-500, #646464);
  }
}

.shown .header__nav-link {
  padding: 17px 24px;
  font-size: 14px;
}

.shown .header__nav-item:not(:last-child) .header__nav-link {
  border-bottom: 1px solid #d9d9d9;
}

.header__nav-item_with-images.shown .header__nav-link {
  border-bottom: none !important;
}

@media (width >= 1200px) {
  .shown .header__nav-link {
    padding: 10px 12px;
    font-size: 16px;
    color: var(--neutral-primary-100, #fff);
    background: var(--neutral-primary-1000, #141414);
    border-radius: 20px;
  }
}

.header__nav-item_select .header__nav-link {
  padding-right: 28px;
}

.header__nav-item_select .header__nav-link span {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  margin-right: -20px;
  padding: 20px;
  opacity: 0.3;
}

@media (any-hover: hover) and (pointer: fine) {
  .header__nav-item_select .header__nav-link:hover img {
    filter: brightness(0) invert(1);
  }

  .header__nav-item_select .header__nav-link:hover span {
    right: -12px;
  }
}

.header__nav-item_select .header__nav-link img {
  width: 20px;
  height: 20px;
}

@media (width >= 1200px) {
  .header__nav-item_select .header__nav-link span {
    right: 5px;
    margin-right: 0;
    padding: 0;
  }

  .header__nav-item_select.shown .header__nav-link span {
    margin-right: -6px;
    opacity: 1;
    filter: brightness(0) invert(1);
  }
}

@media (width >= 1200px) {
  .header__nav-item_select.shown .header__nav-link span {
    right: 12px;
  }
}

.header__submenu-wrapper {
  z-index: 10;
  height: 0;
  visibility: hidden;
  opacity: 0;
  background-color: var(--neutral-primary-100, #fff);
  border-bottom: 1px solid #d9d9d9;
  transition: height var(--default-transition, 0.3s ease-in-out);
}

@media (width >= 1200px) {
  .header__submenu-wrapper {
    position: absolute;
    top: 50px;
    left: -15%;
    width: 340px;
    min-width: 200px;
    height: unset;
    padding: 16px;
    background-color: var(--neutral-primary-200, #f9f9f9);
    border-bottom: unset;
    border-radius: 8px;
    box-shadow: 0 16px 32px 0 rgb(0 0 0 / 32%);
    transition: var(--default-transition, 0.3s ease-in-out);
  }
}

.header__nav-item.shown .header__submenu-wrapper {
  position: static;
  height: auto;
  padding: 0 24px 16px;
  visibility: visible;
  opacity: 1;
}

@media (width >= 1200px) {
  .header__nav-item.shown .header__submenu-wrapper {
    position: absolute;
    padding: 16px;
  }
}

@media (width >= 1200px) {
  .header__nav-item_with-images.shown .header__submenu-wrapper {
    width: 524px;
  }
}

.header__submenu-header {
  display: none;
}

@media (width >= 1200px) {
  .header__submenu-header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding-block: 6px 14px;
    border-bottom: 1px solid var(--neutral-primary-300, #dedede);
  }

  .header__nav-item_with-images .header__submenu-header {
    min-height: 32px;
    padding: 0;
  }
}

.header__nav-item_with-images .header__submenu-header {
  border-bottom: none;
}

.header__submenu-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 136%;
}

.header__submenu-header-link {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
white-space: nowrap;
  align-items: center;
  font-size: 14px;
}

.header__submenu {
  display: flex;
  flex-flow: wrap column;
}

@media (width >= 1200px) {
  .header__submenu {
    column-gap: 20px;
    height: 93%;
    padding-top: 8px;
  }
}

@media (width >= 1200px) {
  .header__nav-item_with-images .header__submenu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

.header__nav-item_with-images .header__submenu {
  gap: 3px;
}

.header__submenu-link {
  display: block;
  padding-block: 12px;
  font-size: 14px;
  line-height: 115%;
  transition: var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .header__submenu-link:hover {
    background-color: var(--overlay-black-300, rgb(20 20 20 / 20%));
  }
}

.header__nav-item_with-images .header__submenu-link {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 3px 16px 3px 6px;
  border: 1px solid var(--neutral-primary-300, #dedede);
  border-radius: 6px;
}

@media (width >= 1200px) {
  .header__nav-item_with-images .header__submenu-link {
    flex-direction: column;
    height: 100%;
    min-height: 132px;
    background: var(--neutral-primary-300, #dedede);
    border: 0;
  }
}

.header__submenu-image {
  width: 64px;
  height: 42px;
}

@media (width >= 1200px) {
  .header__submenu-image {
    width: 120px;
    height: 80px;
  }
}

.header__submenu-link-title {
  flex-grow: 1;
  justify-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-700, #383838);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (width >= 1200px) {
  .header__submenu-link svg {
    display: none;
  }
}

.header__burger-menu-bottom {
  display: none;
}

.shown .header__burger-menu-bottom {
  display: flex;
  flex-flow: nowrap column;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding: 24px;
  background: var(--neutral-primary-200, #f9f9f9);
  border-radius: 10px 10px 0 0;
}

.header__burger-menu-switch {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.header__burger-menu-switch-text {
  width: 50px;
  font-size: 14px;
  line-height: 115%;
  color: var(--neutral-primary-900, #1a1a1b);
}

.header__burger-menu-switch-button {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-height: 32px;
  padding: 0 8px;
  font-size: 14px;
  background: var(--overlay-white-200, rgb(20 20 20 / 10%));
  border: 1px solid var(--overlay-black-300, rgb(20 20 20 / 20%));
  border-radius: 4px;
}

.header__burger-menu-contacts-wrapper {
  display: flex;
  flex-flow: nowrap column;
  gap: 8px;
}

.header__burger-menu-contacts {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

.header__burger-menu-bottom .header__phone {
  font-family: var(--inter-font-family, "Inter", sans-serif);
  font-size: 18px;
  line-height: 144%;
  color: var(--neutral-primary-900, #1a1a1b);
}

.header__burger-menu-bottom .header__work-times {
  align-items: flex-start;
  justify-content: center;
}

.header__burger-menu-bottom .header__socials {
  gap: 3px;
}

.header__button {
  display: none;
  min-width: 160px;
  min-height: 44px;
  padding: 0 8px;
  color: var(--neutral-primary-100, #fff);
  white-space: nowrap;
  background-color: var(--neutral-primary-1000, #141414);
  border-radius: 8px;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

.header__burger-menu-bottom .header__button {
  display: block;
}

@media (width >= 1200px) {
  .header__button {
    display: block;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .header__button:hover {
    background-color: var(--neutral-primary-800, #2d2d2e);
  }
}

.header__mobile-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

@media (width >= 1200px) {
  .header__mobile-icons {
    display: none;
  }
}

.header__mobile-icon {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background-color: var(--overlay-white-100, #fff);
  border-radius: 8px;
}

.header__phone-icon {
  background-color: var(--neutral-primary-100, #fff);
}

#burger-icon,
#close-burger-icon {
  display: none;
  padding: 12px;
}

#burger-icon.shown,
#close-burger-icon.shown {
  display: block;
}

.hero {
  color: var(--neutral-primary-100, #fff);
  background-color: var(--neutral-primary-1000, #141414);
}

.hero__container {
  display: flex;
  flex-flow: nowrap column;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 16px;
}

@media (width >= 960px) {
  .hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
}

.hero__text-content {
  display: flex;
  flex-flow: nowrap column;
}

@media (width >= 960px) {
  .hero__text-content {
    padding: 40px 0 40px 32px;
  }
}

@media (width >= 1200px) {
  .hero__text-content {
    padding: 60px 64px;
  }
}

.hero__title {
  margin-bottom: 28px;
  font-size: 32px;
  font-weight: 500;
  line-height: 132%;
  text-align: center;
}

@media (width >= 960px) {
  .hero__title {
    max-width: 560px;
    margin-bottom: 32px;
    font-size: 44px;
    font-weight: 600;
    line-height: 132%;
    text-align: left;
  }
}

@media (width >= 1200px) {
  .hero__title {
    max-width: 600px;
    margin-bottom: 48px;
    font-size: 48px;
  }
}

.hero__mobile-img {
  margin-bottom: 28px;
}

@media (width >= 960px) {
  .hero__mobile-img {
    display: none;
  }
}

.hero__descr {
  display: none;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 960px) {
  .hero__descr {
    display: block;
  }
}

@media (width >= 1200px) {
  .hero__descr {
    margin-bottom: 48px;
    font-size: 16px;
  }
}

.hero__link {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  justify-self: flex-start;
  order: 1;
  width: 100%;
  min-height: 52px;
  padding: 0 12px;
  font-size: 18px;
  color: var(--neutral-primary-1000, #141414);
  white-space: nowrap;
  background-color: var(--neutral-primary-100, #100);
  border-radius: 8px;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

@media (width >= 960px) {
  .hero__link {
    order: unset;
    width: 336px;
    margin-bottom: 40px;
  }
}

@media (width >= 1200px) {
  .hero__link {
    margin-bottom: 80px;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .hero__link:hover {
    background-color: var(--neutral-primary-400, #9e9d9d);
  }
}

.hero__list {
  display: grid;
  grid-template-columns: 178px auto;
  gap: 10px;
  margin-bottom: 32px;
}

@media (width >= 960px) {
  .hero__list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    min-width: 672px;
    margin-bottom: 0;
  }
}

.hero__item {
  display: flex;
  flex-flow: nowrap column;
  gap: 3px;
  padding-inline: 10px;
  border-left: 1px solid var(--neutral-primary-800, #2d2d2e);
}

@media (width >= 960px) {
  .hero__item {
    flex-direction: row;
    gap: 20px;
    padding-inline: 16px;
  }
}

.hero__value {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  white-space: nowrap;
}

@media (width >= 960px) {
  .hero__value {
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1200px) {
  .hero__value {
    font-size: 40px;
  }
}

.hero__text {
  max-width: 180px;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-400, #9e9d9d);
}

@media (width >= 960px) {
  .hero__text {
    font-size: 14px;
  }
}

.hero__img-wrapper {
  display: none;
}

@media (width >= 960px) {
  .hero__img-wrapper {
    display: block;
    padding: 32px;
  }

  .hero__img-wrapper img {
    border-radius: 8px;
  }
}

.services__container {
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 16px;
}

@media (width >= 960px) {
  .services__container {
    padding: 32px 32px 40px;
  }
}

@media (width >= 1200px) {
  .services__container {
    padding: 40px 64px 60px;
  }
}

.services__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

@media (width >= 960px) {
  .services__title {
    margin-bottom: 34px;
    font-size: 40px;
    font-weight: 600;
    text-align: start;
  }
}

@media (width >= 1200px) {
  .services__title {
    margin-bottom: 48px;
  }
}

.services__banners {
  display: flex;
  flex-flow: nowrap column;
  gap: 16px;
}

.services__banner {
  position: relative;
  overflow: hidden;
}

.services__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    180deg,
    rgb(0 0 0 / 0%) 33%,
    rgb(20 20 20 / 70%) 100%
  );
}

@media (width >= 960px) {
  .services__banners {
    display: grid;
    grid-template-columns: 360px auto;
    gap: 20px;
  }
}

.services__banner {
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background-color: var(--neutral-primary-300);
  background-repeat: no-repeat;
  border-radius: 10px;
}

@media (width >= 960px) {
  .services__banner {
    padding: 24px;
    border-radius: 16px;
  }
}

.services__banner-text {
  position: relative;
  z-index: 2;
  max-width: 156px;
  font-size: 14px;
  font-weight: 600;
  line-height: 136%;
}

@media (width >= 1200px) {
  .services__banner-text {
    font-size: 16px;
  }
}

.services__banner_start {
  min-height: 328px;
  background-image: url("/local/templates/geely/images/service-mobile.webp");
  background-size: cover;
}

@media (width >= 960px) {
  .services__banner_start {
    background-image: url("/local/templates/geely/images/service.webp");
  }
}

.services__banners-end {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (width >= 960px) {
  .services__banners-end {
    gap: 20px;
  }
}

.services__banners-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-height: 120px;
}

@media (width >= 960px) {
  .services__banners-top {
    gap: 20px;
    min-height: 240px;
  }
}

.services__banner_electrics {
  background-image: url("/local/templates/geely/images/electrics-mobile.webp");
  background-position-x: right;
}

.services__banner_electrics .services__banner-text {
  max-width: 100px;
}

@media (width >= 960px) {
  .services__banner_electrics {
    background-image: url("/local/templates/geely/images/electrics.webp");
  }
}

.services__banner_repair {
  color: var(--neutral-primary-100);
  background-image: url("/local/templates/geely/images/repair-mobile.webp");
  background-size: cover;
}

@media (width >= 960px) {
  .services__banner_repair {
    background-image: url("/local/templates/geely/images/repair.webp");
  }
}

.services__banners-middle {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: stretch;
  min-height: 112px;
}

@media (width >= 960px) {
  .services__banners-middle {
    min-height: 140px;
  }
}

.services__banner_diagnosis {
  background-image: url("/local/templates/geely/images/diagnosis.webp");
  background-position: center;
  background-size: auto 100%;
}

.services__banners-bottom {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: stretch;
  min-height: 112px;
}

@media (width >= 960px) {
  .services__banners-bottom {
    min-height: 140px;
  }
}

.services__banner_body-repair {
  color: var(--neutral-primary-100, #fff);
  background-image: url("/local/templates/geely/images/body-repair-mobile.webp");
  background-size: cover;
}

@media (width >= 960px) {
  .services__banner_body-repair {
    background-image: url("/local/templates/geely/images/body-repair.webp");
  }
}

.services__banner_all {
  display: none;
  align-items: center;
  padding-inline: 36px;
  background-color: var(--neutral-primary-1000);
}

@media (width >= 960px) {
  .services__banner_all {
    display: flex;
  }
}

.services__banner_all .services__banner-text {
  color: var(--neutral-primary-100, #fff);
  text-align: center;
}

.services__banner-link {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.services__banner-link .services__banner-text {
  transition: color var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .services__banner-link:hover .services__banner-text {
    color: var(--neutral-primary-300, #dedede);
  }
}

.prices__container {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 16px;
}

@media (width >= 960px) {
  .prices__container {
    display: grid;
    grid-template-columns: 360px auto;
    gap: 32px;
    padding: 32px 32px 40px;
  }
}

@media (width >= 1200px) {
  .prices__container {
    gap: 48px;
    padding: 40px 64px 60px;
  }
}

.prices__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 240px;
  padding: 12px;
  color: var(--neutral-primary-100, #fff);
  background-image: url("/local/templates/geely/images/banner-mobile.webp");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

@media (width >= 960px) {
  .prices__banner {
    align-items: flex-start;
    padding: 20px;
    background-image: url("/local/templates/geely/images/banner.webp");
    border-radius: 16px;
  }
}

@media (width >= 1200px) {
  .prices__banner {
    padding: 24px;
  }
}

.prices__subtitle {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

@media (width >= 960px) {
  .prices__subtitle {
    max-width: 240px;
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 600;
    text-align: start;
  }
}

@media (width >= 1200px) {
  .prices__subtitle {
    font-size: 32px;
  }
}

.prices__text {
  max-width: 240px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (width >= 960px) {
  .prices__text {
    font-size: 12px;
    text-align: start;
  }
}

@media (width >= 1200px) {
  .prices__text {
    font-size: 14px;
  }
}

.prices__banner-button {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 0 8px;
  font-size: 16px;
  color: var(--neutral-primary-1000, #141414);
  white-space: nowrap;
  background: var(--neutral-primary-100, #fff);
  border-radius: 8px;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .prices__banner-button:hover {
    background-color: var(--neutral-primary-400, #9e9d9d);
  }
}

.prices__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (width >= 960px) {
  .prices__content {
    gap: 16px;
  }
}

@media (width >= 1200px) {
  .prices__content {
    gap: 24px;
  }
}

.prices__title {
  max-width: 530px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
}

@media (width >= 960px) {
  .prices__title {
    font-size: 36px;
    text-align: left;
  }
}

@media (width >= 1200px) {
  .prices__title {
    font-size: 40px;
  }
}

.prices__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding: 15px 0 14px;
  border-bottom: 1px solid var(--neutral-primary-300, #dedede);
}

@media (width >= 960px) {
  .prices__row {
    padding: 12px 0 11px;
  }
}

.prices__row_header {
  align-items: flex-start;
  padding: 22px 0 15px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-500, #646464);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--neutral-primary-1000, #141414);
}

@media (width >= 960px) {
  .prices__row_header {
    padding: 15px 0 14px;
    font-size: 12px;
  }
}

@media (width >= 1200px) {
  .prices__row_header {
    padding: 17px 0 14px;
    font-size: 14px;
  }
}

.prices__row_header th:first-child {
  text-align: start;
}

.prices__ours-head {
  justify-self: flex-end;
}

.prices__col-with-add {
  display: flex;
  flex-direction: column;
  line-height: 100%;
  text-align: end;
}

.prices__small {
  font-size: 10px;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
}

.prices__types-col {
  overflow: hidden;
  font-size: 12px;
  line-height: 140%;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (width >= 960px) {
  .prices__types-col {
    font-size: 14px;
  }
}

.prices__ours-col {
  justify-self: flex-end;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

@media (width >= 960px) {
  .prices__ours-col {
    font-size: 20px;
    font-weight: 600;
  }
}

.prices__content-link {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 13px;
  font-size: 18px;
  color: var(--neutral-primary-100, #fff);
  white-space: nowrap;
  background: var(--neutral-primary-1000, #141414);
  border-radius: 8px;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .prices__content-link:hover {
    background-color: var(--neutral-primary-800, #2d2d2e);
  }
}

.slider__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 0;
}

@media (width >= 960px) {
  .slider__container {
    padding: 32px 32px 40px;
  }
}

@media (width >= 1200px) {
  .slider__container {
    padding: 40px 64px 60px;
  }
}

.slider__content {
  position: relative;
  overflow: hidden;
  height: 348px;
}

@media (width >= 960px) {
  .slider__content {
    height: 700px;
    border-radius: 16px;
  }
}

.slider-main {
  height: 100%;
}

.slider-main::before {
  pointer-events: none;
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, #000 100%);
}

.slider-controls {
  user-select: none;
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: space-between;
  width: 200px;
  height: 164px;
  margin-right: 22px;
}

@media (width >= 960px) {
  .slider-controls {
    display: flex;
  }
}

@media (width >= 1200px) {
  .slider-controls {
    height: 196px;
    margin-right: 38px;
  }
}

.slider-controls .swiper-button-prev,
.slider-controls .swiper-button-next {
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: opacity var(--default-transition, 0.3s ease-in-out);
}

.slider-controls .swiper-button-next::after,
.slider-controls .swiper-button-prev::after {
  display: none;
}

@media (any-hover: hover) and (pointer: fine) {
  .slider-controls .swiper-button-prev:hover,
  .slider-controls .swiper-button-next:hover {
    opacity: 0.8;
  }
}

.slider-controls .swiper-button-next.swiper-button-disabled,
.slider-controls .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.swiper.slider-thumbs {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 392px;
  padding: 24px;
}

@media (width >= 960px) {
  .swiper.slider-thumbs {
    width: 580px;
    padding: 32px;
  }
}

@media (width >= 1200px) {
  .swiper.slider-thumbs {
    width: 612px;
    padding: 48px;
  }
}

.slider__img {
  height: 100%;
  object-fit: cover;
}

.slider__slide {
  position: relative;
  overflow: hidden;
  width: 60px !important;
  height: 60px !important;
  border: 1px solid var(--overlay-white-300, #dedede);
  border-radius: 8px;
}

@media (width >= 960px) {
  .slider__slide {
    width: 120px !important;
    height: 80px !important;
  }
}

.slider__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-black-500, #646464);
  transition: var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .slider__slide:hover::before {
    cursor: pointer;
    opacity: 0.5;
  }
}

.slider__slide.swiper-slide-active {
  background: unset;
  border: 1px solid var(--neutral-primary-100, #100);
}

.slider__slide.swiper-slide-thumb-active::before {
  background: none;
}

.why__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

@media (width >= 960px) {
  .why__container {
    padding: 32px 32px 40px;
  }
}

@media (width >= 1200px) {
  .why__container {
    gap: 48px;
    padding: 40px 64px 100px;
  }
}

.why__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

@media (width >= 960px) {
  .why__title {
    margin-bottom: 32px;
    font-size: 36px;
    font-weight: 600;
    text-align: start;
  }
}

@media (width >= 1200px) {
  .why__title {
    margin-bottom: 48px;
    font-size: 40px;
  }
}

.why__list {
  display: flex;
  flex-flow: nowrap column;
  gap: 6px;
}

@media (width >= 960px) {
  .why__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (width >= 1200px) {
  .why__list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
  }
}

.why__img {
  width: 24px;
  height: 24px;
}

@media (width >= 960px) {
  .why__img {
    width: 32px;
    height: 32px;
  }
}

.why__item {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 10px 11px 11px;
  border: 1px solid var(--neutral-primary-300, #dedede);
  border-radius: 8px;
}

@media (width >= 960px) {
  .why__item {
    gap: 12px;
    min-height: 120px;
    padding: 24px 24px 12px;
  }
}

.why__subtitle {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (width >= 960px) {
  .why__subtitle {
    font-size: 12px;
  }
}

@media (width >= 1200px) {
  .why__subtitle {
    font-size: 14px;
  }
}

.why__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: var(--neutral-primary-600, #444);
}

@media (width >= 1200px) {
  .why__text {
    font-size: 14px;
  }
}

.actions {
  color: var(--neutral-primary-100, #fff);
  background: var(--neutral-primary-1000, #141414);
}

.actions__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 16px;
}

@media (width >= 960px) {
  .actions__container {
    padding: 32px 32px 40px;
  }
}

@media (width >= 1200px) {
  .actions__container {
    padding: 60px 64px;
  }
}

.actions__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (width >= 960px) {
  .actions__top {
    display: grid;
    grid-template-columns: auto 400px;
    gap: 32px;
    padding-bottom: 40px;
  }
}

@media (width >= 1200px) {
  .actions__top {
    grid-template-columns: auto 480px;
    gap: 48px;
    padding: 0 0 60px;
  }
}

.actions__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .actions__title {
    margin-bottom: 32px;
    font-size: 36px;
    font-weight: 600;
    text-align: start;
  }
}

@media (width >= 1200px) {
  .actions__title {
    margin-bottom: 48px;
    font-size: 40px;
  }
}

.actions__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (width >= 960px) {
  .actions__list {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.actions__item {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 960px) {
  .actions__item {
    padding: 12px 0;
  }
}

@media (width >= 1200px) {
  .actions__item {
    font-size: 16px;
  }
}

.actions__frame-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  width: 100%;
  min-height: 216px;
  border: 1px solid var(--overlay-white-200, #f9f9f9);
  border-radius: 10px;
}

@media (width >= 960px) {
  .actions__frame-wrapper {
    min-height: 260px;
    border-radius: 16px;
  }
}

.actions__frame {
  width: 100%;
  height: 100%;
}

.actions__frame-icon {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 16px;
  height: 16px;
  opacity: 0.4;
}

@media (width >= 960px) {
  .actions__frame-icon {
    right: 24px;
    width: 24px;
    height: 24px;
  }
}

/*
.actions__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 72px;
  padding: 8px;
  background: linear-gradient(
    180deg,
    rgb(20 20 20 / 0%) 0%,
    #141414 100%
  );
}

@media (width >= 1200px) {
  .actions__panel {
    padding: 12px;
  }
}

.actions__panel-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.actions__panel-play {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  background: var(--neutral-primary-100, #fff);
  border-radius: 8px;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .actions__panel-play:hover {
    background-color: var(--neutral-primary-300, #dedede);
  }
}

.actions__panel-time {
  font-size: 12px;
  line-height: 140%;
}

@media (width >= 960px) {
  .actions__panel-time {
    font-size: 12px;
  }
}

@media (width >= 1200px) {
  .actions__panel-time {
    font-size: 14px;
  }
} */

.actions__bottom {
  margin-bottom: 4px;
  padding: 0;
}

.actions__bottom-header {
  padding-block: 40px 24px;
}

@media (width >= 960px) {
  .actions__bottom-header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding-block: 30px;
  }
}

@media (width >= 1200px) {
  .actions__bottom-header {
    padding-block: 40px 48px;
  }
}

.actions__subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .actions__subtitle {
    font-size: 36px;
  }
}

@media (width >= 1200px) {
  .actions__subtitle {
    font-size: 40px;
    font-weight: 600;
  }
}

.actions__link {
  display: none;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 44px;
  padding: 0 8px;
  line-height: 100%;
  color: var(--neutral-primary-1000, #141414);
  white-space: nowrap;
  background: var(--neutral-primary-100, #fff);
  border-radius: 8px;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

@media (width >= 960px) {
  .actions__link {
    display: flex;
    flex-wrap: nowrap;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .actions__link:hover {
    background-color: var(--neutral-primary-400, #9e9d9d);
  }
}

.slider-promotions {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-promotions::before {
  pointer-events: none;
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(20 20 20 / 0%) 0%,
    rgb(20 20 20 / 0%) 86%,
    #141414 100%
  );
}

.actions__swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (width >= 768px) {
  .actions__swiper-wrapper {
    flex-direction: row;
    gap: 0;
  }
}

@media (width >= 768px) {
  .actions__slider-item.swiper-slide {
    width: 480px;
    min-height: 520px;
  }
}

.card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 14px 10px 242px;
  background: linear-gradient(
    180deg,
    rgb(45 45 46 / 0%) 0%,
    #2d2d2e 100%
  );
  border: 1px solid var(--overlay-white-300, #dedede);
  border-radius: 10px;
}

@media (width >= 768px) {
  .card {
    min-height: 520px;
    padding: 18px 24px;
    border-radius: 16px;
  }
}

@media (width >= 1200px) {
  .card {
    padding-inline: 10px;
  }
}

.card::before {
  content: "";
  position: absolute;
  inset-block-start: -200px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  inline-size: 320px;
  block-size: 320px;
  opacity: 0.2;
  background-color: #097fca;
  filter: blur(120px);
  border-radius: 100%;
}

.card::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  inline-size: 80px;
  block-size: 2px;
  background-color: #097fca;
}

.card_red::before,
.card_red::after {
  background-color: #fe5a4a;
}

.card_yellow::before,
.card_yellow::after {
  background-color: #ffc500;
}

.card__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 248px;
  height: 114px;
}

@media (width >= 960px) {
  .card__img {
    width: 100%;
    height: 41%;
  }
}

.card__bottom {
  z-index: 0;
}

.card__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

@media (width >= 960px) {
  .card__title {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 600;
  }
}

@media (width >= 1200px) {
  .card__title {
    margin-bottom: 24px;
    font-size: 32px;
  }
}

.card__card-list {
  display: flex;
  flex-flow: nowrap column;
  gap: 4px;
}

.card__card-item {
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 136%;
  text-align: center;
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 0%) 0%,
    rgb(255 255 255 / 10.2%) 50%,
    rgb(255 255 255 / 0%) 100%
  );
  backdrop-filter: blur(8px);
  border-radius: 4px;
}

@media (width >= 960px) {
  .card__card-item {
    font-size: 14px;
    font-weight: 600;
  }
}

@media (width >= 1200px) {
  .card__card-item {
    font-size: 16px;
  }
}

.feedback__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 16px;
}

@media (width >= 960px) {
  .feedback__container {
    gap: 32px;
    padding-inline: 32px;
  }
}

@media (width >= 1200px) {
  .feedback__container {
    gap: 48px;
    padding: 40px 64px;
  }
}

.feedback__header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

@media (width >= 960px) {
  .feedback__header {
    justify-content: space-between;
  }
}

.feedback__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .feedback__title {
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1200px) {
  .feedback__title {
    font-size: 40px;
  }
}

.feedback__link {
  display: none;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

@media (width >= 960px) {
  .feedback__link {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    align-items: center;
    justify-content: center;
    width: 200px;
    min-height: 44px;
    padding: 0 8px;
    line-height: 100%;
    white-space: nowrap;
    background: var(--overlay-black-200, #f9f9f9);
    border-radius: 8px;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .feedback__link:hover {
    background-color: var(--neutral-primary-200, #f9f9f9);
  }
}

.feedback__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (width >= 960px) {
  .feedback__cards {
    gap: 16px;
  }
}

@media (width >= 1200px) {
  .feedback__cards {
    gap: 24px;
  }
}

.feedback__card {
  flex: 1 1 341px;
  padding: 15px;
  background: var(--neutral-primary-200, #f9f9f9);
  border: 1px solid var(--neutral-primary-300, #dedede);
  border-radius: 6px;
}

@media (width >= 960px) {
  .feedback__card {
    padding: 19px;
    border-radius: 8px;
  }
}

.feedback__card-header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (width >= 960px) {
  .feedback__card-header {
    margin-bottom: 16px;
  }
}

.feedback__card-img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

@media (width >= 960px) {
  .feedback__card-img {
    border-radius: 16px;
  }
}

.feedback__card-title {
  font-size: 14px;
  line-height: 160%;
  text-wrap: nowrap;
}

@media (width >= 1200px) {
  .feedback__card-title {
    font-size: 16px;
  }
}

.feedback__card-client {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
}

@media (width >= 960px) {
  .feedback__card-client {
    gap: 8px;
  }
}

.feedback__card-stars {
  display: flex;
  flex-wrap: nowrap;
  gap: 3px;
  align-items: center;
}

.feedback__card-star-img {
  width: 12px;
  height: 12px;
}

.feedback__card-star {
  font-size: 10px;
  line-height: 140%;
}

@media (width >= 960px) {
  .feedback__card-star {
    font-size: 12px;
  }
}

@media (width >= 1200px) {
  .feedback__card-star {
    font-size: 14px;
  }
}

.feedback__card-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 51px;
  font-size: 12px;
  line-height: 140%;
}

@media (width >= 1200px) {
  .feedback__card-text {
    height: 60px;
    font-size: 14px;
  }
}

.feedback__card-date {
  font-size: 10px;
  line-height: 140%;
  color: var(--neutral-primary-500, #646464);
}

@media (width >= 960px) {
  .feedback__card-date {
    font-size: 12px;
  }
}

.feedback__button-more {
  min-height: 44px;
  padding: 0 8px;
  font-size: 16px;
  text-align: center;
  background: var(--overlay-black-200, #f9f9f9);
  border-radius: 8px;
}

@media (width >= 960px) {
  .feedback__button-more {
    display: none;
  }
}

.team__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (width >= 960px) {
  .team__container {
    gap: 50px;
    padding: 0 32px 20px;
  }
}

@media (width >= 1200px) {
  .team__container {
    gap: 60px;
    padding: 0 64px 20px;
  }
}

.team__top {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  min-height: 520px;
  padding: 24px;
  color: var(--neutral-primary-100, #fff);
  background-color: var(--neutral-primary-1000, #141414);
  background-image: url("/local/templates/geely/images/director-mobile.webp");
  background-repeat: no-repeat;
  background-position: center bottom 0;
  background-size: 240px 280px;
  border-radius: 10px;
}

@media (width >= 960px) {
  .team__top {
    min-height: 460px;
    padding: 32px;
    background-image: url("/local/templates/geely/images/director.webp");
    background-position: right 67px top 0;
    background-size: contain;
    border-radius: 16px;
  }
}

@media (width >= 1200px) {
  .team__top {
    padding: 48px;
    background-position: right 180px top 0;
  }
}

.team__left {
  display: flex;
  flex-flow: nowrap column;
  max-width: 672px;
}

.team__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .team__title {
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 600;
  }
}

.team__quote {
  position: relative;
  max-width: 400px;
  margin-bottom: 30px;
  padding-inline: 28px;
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 960px) {
  .team__quote {
    padding-inline: 36px;
  }
}

@media (width >= 1200px) {
  .team__quote {
    font-size: 16px;
    line-height: 160%;
  }
}

.team__quote::before,
.team__quote::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("../../public/icons/quote-up.svg");
  background-repeat: no-repeat;
}

.team__quote::before {
  top: 0;
  left: 0;
}

.team__quote::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.team__button {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  min-height: 44px;
  margin-top: auto;
  padding: 0 12px;
  font-size: 16px;
  color: var(--neutral-primary-1000, #141414);
  background: var(--neutral-primary-100, #fff);
  border-radius: 8px;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

@media (width >= 960px) {
  .team__button {
    position: static;
    transform: none;
    width: 320px;
    min-height: 52px;
    font-size: 18px;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .team__button:hover {
    background-color: var(--neutral-primary-400, #9e9d9d);
  }
}

.team__right {
  position: absolute;
  bottom: 78px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  max-width: 355px;
}

@media (width >= 960px) {
  .team__right {
    right: 67px;
    bottom: -15px;
    left: unset;
    transform: none;
    padding: 48px;
    background: linear-gradient(
      180deg,
      rgb(20 20 20 / 0%) 0%,
      #141414 100%
    );
  }
}

@media (width >= 1200px) {
  .team__right {
    right: 180px;
    bottom: 0;
  }
}

.team__label {
  display: none;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-1000, #141414);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background-color: var(--neutral-primary-100, #fff);
  border-radius: 8px;
}

@media (width >= 960px) {
  .team__label {
    display: block;
  }
}

@media (width >= 1200px) {
  .team__label {
    font-size: 14px;
  }
}

.team__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
  text-wrap: nowrap;
}

@media (width >= 960px) {
  .team__name {
    font-size: 28px;
    font-weight: 600;
    text-wrap: unset;
  }
}

@media (width >= 1200px) {
  .team__name {
    font-size: 32px;
  }
}

.team__slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

@media (width >= 960px) {
  .team__slider::before {
    pointer-events: none;
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      270deg,
      #f9f9f9 0%,
      rgb(249 249 249 / 0%) 14%,
      rgb(249 249 249 / 0%) 86%,
      #f9f9f9 100%
    );
  }
}

.team__slider-card.swiper-slide {
  cursor: pointer;
  overflow: hidden;
  width: 160px;
  min-height: 233px;
  background: linear-gradient(
    180deg,
    rgb(222 222 222 / 0%) 0%,
    #dedede 100%
  );
  border-radius: 8px;
}

@media (width >= 960px) {
  .team__slider-card.swiper-slide {
    width: 220px;
    min-height: 313px;
  }
}

@media (width >= 1200px) {
  .team__slider-card.swiper-slide {
    min-height: 318px;
  }
}

.team__slider-img {
  height: 160px;
}

@media (width >= 960px) {
  .team__slider-img {
    height: 220px;
  }
}

.team__slider-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2px 10px 10px;
}

@media (width >= 960px) {
  .team__slider-content {
    height: 96px;
    padding: 16px;
  }
}

.team__slider-role {
  display: inline-block;
  font-size: 10px;
  line-height: 140%;
  color: var(--neutral-primary-600, #444);
}

@media (width >= 960px) {
  .team__slider-role {
    font-size: 12px;
  }
}

.team__slider-title {
  flex: 1 1 auto;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}

@media (width >= 1200px) {
  .team__slider-title {
    font-size: 16px;
  }
}

.team__slider-location {
  display: flex;
  flex-wrap: nowrap;
  gap: 3px;
  align-items: center;
  font-size: 10px;
  line-height: 140%;
}

@media (width >= 960px) {
  .team__slider-location {
    gap: 4px;
    font-size: 12px;
  }
}

.team__slider-location-img {
  width: 12px;
  height: 12px;
}

.news__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 16px;
}

@media (width >= 960px) {
  .news__container {
    gap: 32px;
    padding: 32px 32px 40px;
  }
}

@media (width >= 1200px) {
  .news__container {
    gap: 48px;
    padding: 40px 64px 60px;
  }
}

.news__header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

@media (width >= 960px) {
  .news__header {
    justify-content: space-between;
    align-items: center;
  }
}

.news__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .news__title {
    font-size: 40px;
    font-weight: 600;
  }
}

.news__link {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 44px;
  padding: 0 8px;
  line-height: 100%;
  white-space: nowrap;
  background: var(--overlay-black-200, rgb(20 20 20 / 10%));
  border-radius: 8px;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .news__link:hover {
    background-color: var(--neutral-primary-200, #f9f9f9);
  }
}

.news__link_desktop {
  display: none;
}

@media (width >= 960px) {
  .news__link_desktop {
    display: flex;
  }
}

@media (width >= 960px) {
  .news__content {
    display: grid;
    grid-template-columns: 288px auto;
    gap: 16px;
  }
}

@media (width >= 1200px) {
  .news__content {
    grid-template-columns: 421px auto;
    gap: 24px;
  }
}

.news__list {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

@media (width >= 960px) {
  .news__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    margin-bottom: 0;
  }
}

@media (width >= 1200px) {
  .news__list {
    gap: 24px;
  }
}

.new-card {
  display: grid;
  grid-auto-rows: 208px auto;
  height: 100%;
}

@media (width >= 960px) {
  .new-card {
    grid-auto-rows: 200px auto;
    gap: 8px;
  }
}

.new-card_main {
  grid-auto-rows: 276px auto;
  gap: 6px;
  padding-bottom: 14px;
}

@media (width >= 960px) {
  .new-card_main {
    grid-auto-rows: 489px auto;
    gap: 16px;
    padding-bottom: 12px;
  }
}

.new-card__img {
  height: 100%;
  opacity: 0.88;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.new-card__content {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  min-height: 56px;
}

.new-card_main .new-card__content {
  min-height: 35px;
}

.new-card__link {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 136%;
  transition: color var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .new-card__link:hover {
    color: var(--neutral-primary-600, #444);
  }
}

@media (width >= 960px) {
  .new-card__link {
    padding-inline: 8px;
  }
}

@media (width >= 1200px) {
  .new-card__link {
    font-size: 16px;
  }
}

.new-card__link svg {
  width: 20px;
  height: 20px;
}

@media (width >= 960px) {
  .new-card__link svg {
    width: 24px;
    height: 24px;
  }
}

.new-card_main .new-card__link {
  font-size: 18px;
  font-weight: 500;
  line-height: 144%;
}

@media (width >= 960px) {
  .new-card_main .new-card__link {
    font-size: 24px;
    font-weight: 600;
  }
}

.news__link_mobile {
  width: 100%;
}

@media (width >= 960px) {
  .news__link_mobile {
    display: none;
  }
}

.appointment__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 16px 12px;
}

@media (width >= 960px) {
  .appointment__container {
    padding: 32px 32px 40px;
  }
}

@media (width >= 1200px) {
  .appointment__container {
    gap: 48px;
    padding: 40px 64px 60px;
  }
}

.appointment__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 20px 24px;
  color: var(--neutral-primary-100, #fff);
  background: var(--neutral-primary-900, #1a1a1b);
  background-image: url("/local/templates/geely/images/cards-mobile.webp");
  background-repeat: no-repeat;
  background-position: right 24px top 54px;
  background-size: 120px 111px;
  border-radius: 10px;
}

@media (width >= 960px) {
  .appointment__content {
    gap: 32px;
    padding: 32px 32px 40px;
    background-image: url("/local/templates/geely/images/cards.webp");
    background-position: right 56px bottom 18px;
    background-size: unset;
    border-radius: 16px;
  }
}

@media (width >= 1200px) {
  .appointment__content {
    gap: 48px;
    padding: 40px 48px 60px;
    background-position: right 56px bottom 54px;
  }
}

.appointment__title {
  max-width: 460px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .appointment__title {
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1200px) {
  .appointment__title {
    max-width: 500px;
    font-size: 40px;
  }
}

.appointment__form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.appointment__form-row {
  display: grid;
  row-gap: 24px;
  max-width: 548px;
}

@media (width >= 960px) {
  .appointment__form-row {
    display: flex;
    column-gap: 48px;
    justify-content: space-between;
  }
}

.appointment__form-left {
  display: flex;
  flex: 1 1 220px;
  flex-direction: column;
  gap: 16px;
}

@media (width >= 960px) {
  .appointment__form-left {
    gap: 24px;
  }
}

.appointment__subtitle {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (width >= 960px) {
  .appointment__subtitle {
    gap: 16px;
    margin-bottom: 16px;
    font-size: 12px;
  }
}

@media (width >= 1200px) {
  .appointment__subtitle {
    margin-bottom: 24px;
    font-size: 14px;
  }
}

.appointment__subtitle-img {
  width: 20px;
  height: 20px;
}

.appointment__centers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.appointment__center {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  min-height: 44px;
  padding: 0 8px;
  opacity: 0.4;
  border: 1px solid var(--neutral-primary-100, #fff);
  border-radius: 8px;
}

.appointment__center.active {
  opacity: 1;
}

.appointment__form-right {
  display: flex;
  flex: 1 1 280px;
  flex-direction: column;
  gap: 16px;
}

.appointment__form-input {
  padding: 6px 0;
  color: var(--neutral-primary-400, #9e9d9d);
  background: transparent;
  border: 0;
  border-bottom: 1px solid
    var(--overlay-white-300, rgb(255 255 255 / 20%));
}

@media (width >= 960px) {
  .appointment__form-input {
    padding: 9px 0;
  }
}

.appointment__link {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  min-height: 52px;
  padding: 0 12px;
  font-size: 18px;
  color: var(--neutral-primary-1000, #141414);
  white-space: nowrap;
  background: var(--neutral-primary-100, #fff);
  border-radius: 8px;
  transition: background-color var(--default-transition, 0.3s ease-in-out);
}

.appointment__link:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

@media (any-hover: hover) and (pointer: fine) {
  .appointment__link:hover {
    background-color: var(--neutral-primary-400, #9e9d9d);
  }
}

.appointment__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

@media (width >= 960px) {
  .appointment__radios {
    margin-bottom: 24px;
  }
}

.appointment__radios > legend {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width >= 960px) {
  .appointment__radios > legend {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .appointment__radios > legend {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.appointment__radio {
  position: relative;
  display: block;
  max-width: fit-content;
  padding: 9px 8px;
  font-size: 16px;
  color: var(--neutral-primary-100, #fff);
  text-align: center;
}

.appointment__radio > input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  border: 1px solid var(--neutral-primary-100, #fff);
  border-radius: 8px;
}

.appointment__radio > input + span {
  opacity: 0.4;
  transition: opacity var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .appointment__radio > input:hover + span {
    opacity: 1;
  }
}

.appointment__radio > input:checked,
.appointment__radio > input:checked + span {
  opacity: 1;
}

.map__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px 16px 20px;
}

@media (width >= 960px) {
  .map__container {
    grid-template-columns: auto 240px;
    gap: 16px;
    padding: 32px 32px 40px;
  }
}

@media (width >= 1200px) {
  .map__container {
    gap: 24px;
    padding: 60px 64px;
  }
}

.map__left {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--neutral-primary-300, #dedede);
  border-radius: 10px;
}

@media (width >= 960px) {
  .map__left {
    border-radius: 16px;
  }
}

.map__map {
  width: 100%;
  height: 328px;
}

@media (width >= 960px) {
  .map__map {
    height: 100%;
    min-height: 214px;
  }
}

.map__title {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 440px;
  padding: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .map__title {
    padding: 20px;
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1200px) {
  .map__title {
    padding: 32px;
    font-size: 40px;
  }
}

@media (width >= 1200px) {
  .map__title {
    max-width: 492px;
    padding: 24px;
  }
}

.map__locations {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (width >= 960px) {
  .map__locations {
    gap: 14px;
  }
}

@media (width >= 1200px) {
  .map__locations {
    gap: 16px;
  }
}

.map__location {
  cursor: pointer;
  display: flex;
  flex-flow: nowrap column;
  gap: 6px;
  padding: 5px 10px 10px;
  border: 2px solid var(--neutral-primary-300, #dedede);
  border-radius: 6px;
  transition: border var(--default-transition);
}

.map__location.active {
  border: 2px solid var(--neutral-primary-800, #2d2d2e);
}

@media (width >= 960px) {
  .map__location {
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .map__location:hover {
    border: 2px solid var(--neutral-primary-800, #2d2d2e);
  }
}

.map__location-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}

@media (width >= 1200px) {
  .map__location-title {
    font-size: 20px;
  }
}

.map__location-address {
  font-size: 10px;
  line-height: 140%;
}

@media (width >= 960px) {
  .map__location-address {
    font-size: 12px;
  }
}

.map__location-days {
  color: var(--neutral-primary-500, #646464);
}

.map__location-phone {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (width >= 960px) {
  .map__location-phone {
    font-size: 12px;
  }
}

@media (width >= 1200px) {
  .map__location-phone {
    font-size: 14px;
  }
}

.map__location-phone-img {
  width: 10px;
  height: 10px;
}

@media (width >= 960px) {
  .map__location-phone-img {
    width: 16px;
    height: 16px;
  }
}

.map__location-tour {
  display: flex;
  flex-flow: nowrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 32px;
  padding: 0 8px;
  font-size: 14px;
  background: var(--overlay-black-200, rgb(20 20 20 / 10%));
  border-radius: 4px;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .map__location-tour:hover {
    background-color: var(--neutral-primary-200, #f9f9f9);
  }
}

[class*="copyrights-pane"] {
  display: none !important;
}

.footer {
  color: var(--neutral-primary-100, #fff);
  background: var(--neutral-primary-1000, #141414);
}

.footer__container {
  flex-direction: column;
  max-width: 1600px;
  margin: 0 auto;
  padding: 44px 16px 20px;
}

@media (width >= 960px) {
  .footer__container {
    padding: 40px 32px;
  }
}

@media (width >= 1200px) {
  .footer__container {
    padding: 60px 64px;
  }
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  width: 100%;
}

@media (width >= 960px) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (width >= 1200px) {
  .footer__main {
    gap: 80px;
  }
}

.footer__main-start {
  display: flex;
  flex-flow: nowrap column;
}

.footer__header {
  display: flex;
  flex-flow: nowrap column;
  gap: 20px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid
    var(--overlay-white-200, rgb(20 20 20 / 10%));
}

@media (width >= 960px) {
  .footer__header {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 60px;
  }
}

.footer__logo-icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

@media (width >= 960px) {
  .footer__logo-icons {
    margin-bottom: 4px;
  }
}

.footer__logo {
  flex-shrink: 0;
}

.footer__logo:first-child svg {
  color: var(--neutral-primary-300, #dedede);
}

.footer__logo svg {
  width: 172px;
  height: 32px;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .footer__logo svg {
    width: unset;
    height: unset;
  }
}

@media (width >= 960px) {
  .footer__logo:first-child {
    padding-right: 12px;
    border-right: 1px solid var(--neutral-primary-700, #383838);
  }
}

.footer__logo:last-child {
  display: none;
}

@media (width >= 960px) {
  .footer__logo:last-child {
    display: block;
    padding-left: 12px;
  }
}

.footer__logo-text {
  display: none;
}

@media (width >= 960px) {
  .footer__logo-text {
    display: block;
    font-size: 9px;
    font-weight: 700;
    line-height: 140%;
    color: var(--neutral-primary-400, #9e9d9d);
    text-align: right;
    letter-spacing: 0.18em;
  }
}

.footer__phone-link {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 44px;
  border-radius: 8px;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .footer__phone-link:hover {
    background-color: var(--neutral-primary-800, #2d2d2e);
  }
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 25px;
  justify-content: center;
  padding-block: 13px;
}

.footer__nav-list:not(:last-child) {
  border-bottom: 1px solid var(--overlay-white-200, #f9f9f9);
}

@media (width >= 960px) {
  .footer__nav-list {
    gap: 2px 32px;
    justify-content: flex-start;
    padding-block: 16px;
  }
}

.footer__nav-link {
  display: inline-block;
  padding-block: 12px;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
  transition: color var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .footer__nav-link:hover {
    color: var(--neutral-primary-300, #dedede);
  }
}

.footer__nav-list_small {
  gap: 14px 17px;
  padding-block: 10px;
  opacity: 0.68;
}

@media (width >= 960px) {
  .footer__nav-list_small {
    gap: 12px 24px;
    padding-bottom: 16px;
  }
}

.footer__nav-list_small .footer__nav-link {
  padding-block: 4px;
  font-size: 14px;
}

.footer__bottom {
  display: flex;
  flex-flow: nowrap column;
  gap: 28px;
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--overlay-white-200, rgb(20 20 20 / 10%));
}

@media (width >= 960px) {
  .footer__bottom {
    gap: 48px;
    padding-top: 32px;
  }
}

@media (width >= 1200px) {
  .footer__bottom {
    padding-top: 54px;
  }
}

.footer__bottom_desktop {
  display: none;
}

@media (width >= 960px) {
  .footer__bottom_desktop {
    display: flex;
    flex-wrap: nowrap;
  }

  .footer__bottom_mobile {
    display: none;
  }
}

.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (width >= 960px) {
  .footer__copyright {
    gap: 16px;
  }
}

.footer__text {
  max-width: 700px;
  font-size: 14px;
  line-height: 110%;
  color: var(--neutral-primary-500, #646464);
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (width >= 960px) {
  .footer__socials {
    gap: 16px;
  }
}

.footer__socials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__social-link {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 74px;
  min-height: 44px;
  padding: 0 8px;
  background: var(--overlay-white-200, rgb(20 20 20 / 10%));
  border: 1px solid var(--overlay-black-300, rgb(20 20 20 / 20%));
  border-radius: 8px;
  transition: background-color
    var(--default-transition, 0.3s ease-in-out);
}

@media (any-hover: hover) and (pointer: fine) {
  .footer__social-link:hover {
    background-color: var(--overlay-black-400, rgb(20 20 20 / 40%));
  }
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__main-end {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 20px;
  font-style: normal;
}

@media (width >= 960px) {
  .footer__main-end {
    gap: 40px;
    margin: 0;
  }
}

.footer__contacts {
  padding: 8px 12px;
  letter-spacing: 0.01em;
  border-left: 2px solid var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .footer__contacts {
    padding: 0 0 0 14px;
  }
}

.footer__phone {
  display: block;
  font-family: var(--inter-font-family), sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 144%;
  transition: color var(--default-transition, 0.3s ease-in-out);
}

@media (width >= 960px) {
  .footer__phone {
    margin-bottom: 4px;
    font-size: 24px;
    font-weight: 600;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .footer__phone:hover {
    color: var(--neutral-primary-300, #dedede);
  }
}

.footer__mail {
  font-size: 14px;
  font-weight: 500;
  line-height: 136%;
  transition: color var(--default-transition, 0.3s ease-in-out);
}

@media (width >= 960px) {
  .footer__mail {
    font-weight: 600;
  }
}

@media (width >= 1200px) {
  .footer__mail {
    font-size: 16px;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .footer__mail:hover {
    color: var(--neutral-primary-300, #dedede);
  }
}

.footer__locations {
  display: grid;
  gap: 24px;
  padding-block: 32px;
  border-block: 1px solid var(--overlay-white-200, #f9f9f9);
}

@media (width>= 1140px) {
  .footer__locations {
    grid-template-columns: repeat(2, 292px);
    gap: 32px;
    padding-block: 24px;
  }
}

.footer__location:first-child {
  border-top:
    1px solid var(--overlay-white-200),
    rgb(20 20 20 / 10%);
}

.footer__location {
  /* padding: 10px 0 9px; */
  font-size: 10px;
  line-height: 140%;
  border-bottom:
    1px solid var(--overlay-white-200),
    rgb(20 20 20 / 10%);
}

@media (width >= 960px) {
  .footer__location {
    padding: 16px 0;
    font-size: 12px;
  }
}

.footer__location-title {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 136%;
}

@media (width >= 1200px) {
  .footer__location-title {
    font-size: 16px;
  }
}

.footer__location-address {
  margin-bottom: 2px;
}

.footer__location-days {
  font-size: 10px;
  line-height: 140%;
  color: var(--neutral-primary-400, #9e9d9d);
}

@media (width >= 960px) {
  .footer__location-days {
    font-size: 12px;
  }
}

.footer__contacts_small {
  padding: 0 0 0 14px;
}

.footer__contacts-text {
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-400, #9e9d9d);
}

@media (width >= 1200px) {
  .footer__contacts-text {
    margin-bottom: 4px;
    font-size: 16px;
  }
}

.footer__controls-phone {
  font-size: 14px;
  font-weight: 600;
  line-height: 136%;
  transition: color var(--default-transition, 0.3s ease-in-out);
}

@media (width >= 1200px) {
  .footer__controls-phone {
    font-size: 16px;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .footer__controls-phone:hover {
    color: var(--neutral-primary-300, #dedede);
  }
}

.breadcrumbs {
  background-color: var(--neutral-primary-1000);
}

.breadcrumbs__container {
  overflow: auto;
  display: flex;
  column-gap: 17px;
  max-width: 1600px;
  margin-inline: auto;
  padding-block: 8px;
  padding-inline: 16px;
}

.breadcrumbs__container::-webkit-scrollbar {
  display: none;
}

@media (width >= 960px) {
  .breadcrumbs__container {
    column-gap: 22px;
    padding-block: 8px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .breadcrumbs__container {
    padding-inline: 64px;
  }
}

.breadcrumbs__item {
  position: relative;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-400, #b2b2b2);
  transition: color var(--default-transition);
}

@media (width >= 960px) {
  .breadcrumbs__item {
    font-size: 14px;
  }
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -12px;
}

@media (width >= 960px) {
  .breadcrumbs__item:not(:last-child)::after {
    right: -14px;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .breadcrumbs__item:not(:last-child):hover {
    color: var(--neutral-primary-100);
  }
}

.breadcrumbs-light {
  background-color: transparent;
}

.breadcrumbs-light__container {
  overflow: auto;
  display: flex;
  column-gap: 17px;
  max-width: 1600px;
  margin-inline: auto;
  padding-block: 8px;
  padding-inline: 16px;
}

.breadcrumbs-light__container::-webkit-scrollbar {
  display: none;
}

@media (width >= 960px) {
  .breadcrumbs-light__container {
    column-gap: 22px;
    padding-block: 8px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .breadcrumbs-light__container {
    padding-inline: 64px;
  }
}

.breadcrumbs-light__item {
  position: relative;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-400, #b2b2b2);
  transition: color var(--default-transition);
}

@media (width >= 960px) {
  .breadcrumbs-light__item {
    font-size: 14px;
  }
}

.breadcrumbs-light__item:last-child {
  color: var(--neutral-primary-700);
}

.breadcrumbs-light__item:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -12px;
}

@media (width >= 960px) {
  .breadcrumbs-light__item:not(:last-child)::after {
    right: -14px;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .breadcrumbs-light__item:not(:last-child):hover {
    color: var(--neutral-primary-700);
  }
}

.geely-repair {
  padding-block: 20px;
  background-color: var(--neutral-primary-1000);
}

@media (width >= 960px) {
  .geely-repair {
    padding-block: 0;
  }
}

.geely-repair__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .geely-repair__container {
    display: flex;
    column-gap: 40px;
    align-items: center;
    justify-content: space-between;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .geely-repair__container {
    padding-inline: 64px;
  }
}

.geely-repair__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

@media (width >= 960px) {
  .geely-repair__body {
    row-gap: 40px;
    max-width: 600px;
  }
}

.geely-repair__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 132%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .geely-repair__title {
    font-size: 44px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .geely-repair__title {
    font-size: 48px;
  }
}

.geely-repair__text {
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 1440px) {
  .geely-repair__text {
    font-size: 16px;
  }
}

.geely-repair__text > p:not(:last-child) {
  margin-bottom: 24px;
}

.geely-repair__button {
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 15.5px;
  font-size: 18px;
  text-align: center;
  background-color: var(--neutral-primary-100);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .geely-repair__button:hover {
    background-color: var(--neutral-primary-400);
  }
}

@media (width >= 960px) {
  .geely-repair__button {
    width: 336px;
  }
}

.geely-repair__button > svg {
  width: 20px;
  height: 20px;
}

.geely-repair__image {
  display: none;
}

@media (width >= 960px) {
  .geely-repair__image {
    display: block;
    width: 800px;
    height: 497px;
    padding: 32px;
  }

  .geely-repair__image-inner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }

  .geely-repair__image img {
    position: absolute;
    inline-size: initial;
    max-inline-size: 100%;
    block-size: initial;
    max-block-size: 100%;
    margin-inline: auto;
    object-fit: contain;
  }
}

.geely-model {
  padding-block: 20px;
}

@media (width >= 960px) {
  .geely-model {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .geely-model {
    padding-block: 40px;
  }
}

.geely-model__container {
  display: grid;
  row-gap: 28px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .geely-model__container {
    display: flex;
    column-gap: 40px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .geely-model__container {
    column-gap: 80px;
    padding-inline: 64px;
  }
}

.geely-model__body {
  flex: 1 1 auto;
}

.geely-model__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}

@media (width >= 960px) {
  .geely-model__title {
    margin-bottom: 32px;
    font-size: 36px;
  }
}

@media (width >= 1440px) {
  .geely-model__title {
    margin-bottom: 48px;
    font-size: 40px;
  }
}

.geely-model__models {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (width >= 960px) {
  .geely-model__models {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
    gap: 16px;
  }
}

.order {
  max-height: fit-content;
  padding: 24px;
  background-color: var(--neutral-primary-1000);
  border-radius: 16px;
}

@media (width >= 960px) {
  .geely-model__order {
    flex: 0 0 400px;
    width: 400px;
  }
}

.order__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .order__title {
    margin-bottom: 24px;
    font-size: 28px;
  }
}

@media (width >= 1440px) {
  .order__title {
    font-size: 32px;
  }
}

.order__inputs {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 16px;
}

@media (width >= 960px) {
  .order__inputs {
    row-gap: 16px;
    margin-bottom: 22px;
  }
}

.order__inputs > input {
  padding-block: 8.5px;
  font-size: 16px;
  color: var(--neutral-primary-100, #fff);
  border-bottom: 1px solid
    var(--overlay-white-300, rgb(255 255 255 / 20%));
}

@media (width >= 960px) {
  .order__inputs > input {
    padding-block: 10px;
  }
}

.order__inputs > input::-webkit-inner-spin-button {
  display: none;
}

.order__inputs > input::placeholder {
  color: var(--neutral-primary-400, #b2b2b2);
}

.order__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

@media (width >= 960px) {
  .order__radios {
    margin-bottom: 24px;
  }
}

.order__radios > legend {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width >= 960px) {
  .order__radios > legend {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .order__radios > legend {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.order__radio {
  position: relative;
  display: block;
  max-width: fit-content;
  padding: 9px 8px;
  font-size: 16px;
  color: var(--neutral-primary-100, #fff);
  text-align: center;
}

.order__radio > input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  border: 1px solid var(--neutral-primary-100, #fff);
  border-radius: 8px;
}

.order__radio > input + span {
  opacity: 0.4;
  transition: opacity var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .order__radio > input:hover + span {
    opacity: 1;
  }
}

.order__radio > input:checked,
.order__radio > input:checked + span {
  opacity: 1;
}

.order__policy {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-400, #b2b2b2);
}

@media (width >= 1440px) {
  .order__policy {
    margin-bottom: 16px;
    font-size: 14px;
  }
}

.order__button {
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15.5px;
  font-size: 18px;
  text-align: center;
  background-color: var(--neutral-primary-100);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .order__button:hover:not(:disabled) {
    background-color: var(--neutral-primary-400);
  }
}

.order__button:disabled {
  cursor: not-allowed;
  background-color: var(--neutral-primary-400, #9e9d9d);
}

.order__button > svg {
  width: 20px;
  height: 20px;
}

.geely-model-card {
  display: flex;
  column-gap: 10px;
  align-items: center;
  height: 132px;
  padding: 8px;
  padding-right: 16px;
  border: 1px solid var(--neutral-primary-300);
  border-radius: 8px;
}

@media (width >= 960px) {
  .geely-model-card {
    column-gap: 16px;
    height: auto;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .geely-model-card:hover img {
    scale: 1.1;
  }
}

.geely-model-card__image {
  width: 180px;
  height: 120px;
  transition: scale var(--default-transition);
}

.geely-model-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-700, #383838);
}

@media (width >= 1440px) {
  .geely-model-card__title {
    font-size: 20px;
  }
}

.tech-review-include {
  padding-block: 20px;
  font-size: 14px;
  line-height: 180%;
}

@media (width >= 960px) {
  .tech-review-include {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .tech-review-include {
    padding-block: 40px;
  }
}

.tech-review-include__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .tech-review-include__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .tech-review-include__container {
    padding-inline: 64px;
  }
}

.tech-review-include__title {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}

@media (width >= 960px) {
  .tech-review-include__title {
    margin-bottom: 32px;
  }
}

@media (width >= 1440px) {
  .tech-review-include__title {
    margin-bottom: 48px;
  }
}

.tech-review-include__list-links {
  border-top: 1px solid var(--neutral-primary-300);
}

.tech-review-include__list-links-item > a {
  display: flex;
  column-gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-block: 7px;
  padding-inline-end: 12px;
  font-size: 16px;
  line-height: 160%;
  border-bottom: 1px solid var(--neutral-primary-300);
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
}

.tech-review-include__list-links-item svg {
  flex: 0 0 16px;
}

@media (width >= 768px) {
  .tech-review-include__list-links-item > a {
    padding-block: 11px;
    padding-inline-end: 12px;
  }

  .tech-review-include__list-links-item svg {
    flex: 0 0 20px;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .tech-review-include__list-links-item > a:hover {
    background-color: var(--primary-100);
  }
}

.tech-review-include__list-item {
  display: flex;
  column-gap: 6px;
  align-items: center;
  line-height: 165%;
}

@media (width >= 960px) {
  .tech-review-include__list-item {
    column-gap: 8px;
  }
}

@media (width >= 1440px) {
  .tech-review-include__list-item {
    font-size: 16px;
  }
}

.tech-review-include__list-item:not(:last-child) {
  margin-bottom: 3px;
}

@media (width >= 960px) {
  .tech-review-include__list-item:not(:last-child) {
    margin-bottom: 4px;
  }
}

.tech-review-include__list-item > svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

@media (width >= 960px) {
  .tech-review-include__list-item > svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }
}

@media (width >= 1440px) {
  .tech-review-include__container p {
    font-size: 16px;
  }
}

.tech-review-include__container p:not(:last-child),
.tech-review-include__container ul:not(:last-child) {
  margin-bottom: 12px;
}

@media (width >= 960px) {
  .tech-review-include__container p:not(:last-child),
  .tech-review-include__container ul:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (width >= 1440px) {
  .tech-review-include__container p:not(:last-child),
  .tech-review-include__container ul:not(:last-child) {
    margin-bottom: 24px;
  }
}

.tech-review-include__container strong {
  font-weight: 500;
  line-height: 136%;
  color: var(--neutral-primary-700, #383838);
}

@media (width >= 960px) {
  .tech-review-include__container strong {
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .tech-review-include__container strong {
    font-size: 16px;
  }
}

.tech-review-include__container strong:not(:last-child) {
  display: inline-block;
  margin-bottom: 6px;
}

@media (width >= 960px) {
  .tech-review-include__container strong:not(:last-child) {
    margin-bottom: 8px;
  }
}

.tech-review-important {
  padding-block: 20px;
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 960px) {
  .tech-review-important {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .tech-review-important {
    padding-block: 40px 60px;
    font-size: 16px;
    line-height: 165%;
  }
}

.tech-review-important__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .tech-review-important__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .tech-review-important__container {
    padding-inline: 64px;
  }
}

.tech-review-important__title {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}

@media (width >= 960px) {
  .tech-review-important__title {
    margin-bottom: 32px;
  }
}

@media (width >= 1440px) {
  .tech-review-important__title {
    margin-bottom: 48px;
  }
}

.tech-review-important__list-item {
  display: flex;
  column-gap: 6px;
  align-items: center;
}

@media (width >= 960px) {
  .tech-review-important__list-item {
    column-gap: 8px;
  }
}

@media (width >= 1440px) {
  .tech-review-important__list-item {
    font-size: 16px;
  }
}

.tech-review-important__list-item:not(:last-child) {
  margin-bottom: 3px;
}

@media (width >= 960px) {
  .tech-review-important__list-item:not(:last-child) {
    margin-bottom: 4px;
  }
}

.tech-review-important__list-item > svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

@media (width >= 960px) {
  .tech-review-important__list-item > svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }
}

@media (width >= 1440px) {
  .tech-review-important__container p {
    font-size: 16px;
  }
}

.tech-review-important__container strong {
  display: inline-block;
  font-weight: 500;
  line-height: 136%;
  color: var(--neutral-primary-700, #383838);
}

@media (width >= 960px) {
  .tech-review-important__container strong {
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .tech-review-important__container strong {
    font-size: 16px;
  }
}

.tech-review-important__container strong:not(:last-child) {
  margin-top: 12px;
  margin-bottom: 6px;
}

@media (width >= 960px) {
  .tech-review-important__container strong:not(:last-child) {
    margin-top: 20px;
    margin-bottom: 8px;
  }
}

@media (width >= 1440px) {
  .tech-review-important__container strong:not(:last-child) {
    margin-top: 24px;
    margin-bottom: 8px;
  }
}

.guarantees {
  padding-block: 20px;
  background-color: var(--neutral-primary-900);
}

@media (width >= 960px) {
  .guarantees {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .guarantees {
    padding-block: 40px 60px;
  }
}

.guarantees__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .guarantees__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .guarantees__container {
    padding-inline: 64px;
  }
}

.guarantees__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .guarantees__title {
    margin-bottom: 32px;
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .guarantees__title {
    margin-bottom: 48px;
    font-size: 40px;
  }
}

.guarantees__cards {
  display: grid;
  row-gap: 12px;
}

@media (width >= 960px) {
  .guarantees__cards {
    grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
    column-gap: 16px;
  }
}

@media (width >= 1440px) {
  .guarantees__cards {
    column-gap: 24px;
  }
}

.guaranty-card {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  height: 100%;
  padding: 12px 24px;
  background: linear-gradient(
    270deg,
    rgb(0 147 255 / 16%) 0%,
    rgb(0 147 255 / 32%) 100%
  );
  border-radius: 8px;
}

@media (width >= 960px) {
  .guaranty-card {
    row-gap: 16px;
    padding: 48px;
  }
}

.guaranty-card__image {
  position: relative;
  display: flex;
  align-items: center;
  width: 80px;
  height: 80px;
}

@media (width >= 960px) {
  .guaranty-card__image {
    display: block;
  }
}

.guaranty-card__image > img {
  max-width: fit-content;
  height: 60px;
}

.guaranty-card__image > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.guaranty-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  text-align: left;
}

.popular-services {
  padding-block: 20px;
  background-color: var(--neutral-primary-900);
}

@media (width >= 960px) {
  .popular-services {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .popular-services {
    padding-block: 60px;
  }
}

.popular-services__container {
  display: grid;
  row-gap: 28px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .popular-services__container {
    display: flex;
    column-gap: 40px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .popular-services__container {
    column-gap: 80px;
    padding-inline: 64px;
  }
}

.popular-services__body {
  flex: 1 1 auto;
}

.popular-services__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .popular-services__title {
    margin-bottom: 16px;
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .popular-services__title {
    margin-bottom: 24px;
    font-size: 40px;
  }
}

.popular-services__table {
  width: 100%;
  margin-bottom: 12px;
}

@media (width >= 960px) {
  .popular-services__table {
    margin-bottom: 16px;
  }
}

@media (width >= 1440px) {
  .popular-services__table {
    margin-bottom: 24px;
  }
}

.popular-services__table-head {
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-400, #b2b2b2);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
  border-bottom: 2px solid var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .popular-services__table-head {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .popular-services__table-head {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.popular-services__table-head th {
  padding-block: 19px;
}

@media (width >= 960px) {
  .popular-services__table-head th {
    padding-block: 17.5px;
  }
}

@media (width >= 1440px) {
  .popular-services__table-head th {
    padding-block: 16px;
  }
}

.popular-services__table-head th:first-child {
  padding-left: 8px;
  text-align: left;
}

@media (width >= 1440px) {
  .popular-services__table-head th:first-child {
    padding-left: 12px;
  }
}

.popular-services__table-head th:last-child {
  padding-right: 8px;
  text-align: right;
}

@media (width >= 1440px) {
  .popular-services__table-head th:last-child {
    padding-right: 12px;
  }
}

.popular-services__table-body {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
}

.popular-services__table-body > tr {
  border-bottom: 1px solid var(--neutral-primary-800, #2d2d2e);
}

.popular-services__table-body td,
.popular-services__table-body th {
  padding-block: 15px;
  white-space: nowrap;
}

@media (width >= 1440px) {
  .popular-services__table-body td,
  .popular-services__table-body th {
    padding-block: 17.5px;
  }
}

.popular-services__table-body th {
  overflow: hidden;
  max-width: 0;
  padding-left: 8px;
  text-align: left;
  text-overflow: ellipsis;
}

@media (width >= 1440px) {
  .popular-services__table-body th {
    padding-left: 12px;
    font-size: 14px;
  }
}

.popular-services__table-body td {
  padding-right: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
}

@media (width >= 1440px) {
  .popular-services__table-body td {
    padding-right: 12px;
    font-size: 20px;
  }
}

.popular-services__info-button {
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15.5px;
  font-size: 18px;
  color: var(--neutral-primary-100, #fff);
  text-align: center;
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .popular-services__info-button:hover {
    background-color: var(--neutral-primary-800);
  }
}

.popular-services__info-button > svg {
  width: 20px;
  height: 20px;
}

.popular-services-sidebar {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 240px;
  padding: 24px;
  border-radius: 16px;
}

@media (width >= 960px) {
  .popular-services-sidebar {
    height: 520px;
  }
}

@media (width >= 960px) {
  .popular-services-sidebar {
    min-width: 360px;
  }
}

.popular-services-sidebar > img {
  position: absolute;
  top: 0;
  left: 0;
  object-position: center;
}

.popular-services-sidebar__title {
  z-index: 1;
  max-width: 240px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .popular-services-sidebar__title {
    margin-bottom: 24px;
    font-size: 28px;
  }
}

@media (width >= 1440px) {
  .popular-services-sidebar__title {
    font-size: 32px;
  }
}

.popular-services-sidebar__text {
  z-index: 1;
  flex: 1 1 auto;
  max-width: 240px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width >= 960px) {
  .popular-services-sidebar__text {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .popular-services-sidebar__text {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.popular-services-sidebar__button {
  z-index: 1;
  display: flex;
  column-gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  background-color: var(--neutral-primary-100);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .popular-services-sidebar__button:hover {
    background-color: var(--neutral-primary-400);
  }
}

.popular-services-sidebar__button > svg {
  width: 16px;
  height: 16px;
}

.tech-table {
  padding-block: 20px;
}

@media (width >= 960px) {
  .tech-table {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .tech-table {
    padding-block: 40px;
  }
}

.tech-table__container {
  overflow: hidden;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .tech-table__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .tech-table__container {
    padding-inline: 64px;
  }
}

.tech-table__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .tech-table__title {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .tech-table__title {
    margin-bottom: 24px;
    font-size: 40px;
  }
}

.tech-table__text {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 960px) {
  .tech-table__text {
    margin-bottom: 16px;
  }
}

@media (width >= 1440px) {
  .tech-table__text {
    margin-bottom: 24px;
    font-size: 16px;
  }
}

.tech-table__table-wrapper {
  overflow: auto;
  display: flex;
  margin-bottom: 12px;
}

.tech-table__table {
  flex: 1 0 auto;
}

.tech-table__table-wrapper::-webkit-scrollbar {
  display: none;
}

@media (width >= 960px) {
  .tech-table__table-wrapper {
    margin-bottom: 16px;
  }
}

@media (width >= 1440px) {
  .tech-table__table-wrapper {
    margin-bottom: 24px;
  }
}

.tech-table__table-head {
  border-bottom: 2px solid var(--neutral-primary-1000);
}

.tech-table__table-head th[scope="row"] {
  color: var(--neutral-primary-500);
}

.tech-table__table-head th[scope="row"]:first-child {
  width: 233px;
  padding-block: 12px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width >= 960px) {
  .tech-table__table-head th[scope="row"]:first-child {
    padding-block: 9px;
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .tech-table__table-head th[scope="row"]:first-child {
    padding-block: 6px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.tech-table__table-head th[scope="row"]:not(:first-child) {
  width: 52px;
  padding-block: 17.5px 5.5px;
  text-align: center;
}

@media (width >= 960px) {
  .tech-table__table-head th[scope="row"]:not(:first-child) {
    width: 84px;
    padding-block: 16px 4px;
  }
}

.tech-table__table-head
  th[scope="row"]:not(:first-child)
  > div:first-child {
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width >= 960px) {
  .tech-table__table-head
    th[scope="row"]:not(:first-child)
    > div:first-child {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .tech-table__table-head
    th[scope="row"]:not(:first-child)
    > div:first-child {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.tech-table__table-head
  th[scope="row"]:not(:first-child)
  > div:last-child {
  font-size: 8px;
}

@media (width >= 960px) {
  .tech-table__table-head
    th[scope="row"]:not(:first-child)
    > div:last-child {
    font-size: 10px;
  }
}

.tech-table__table-body > tr {
  border-bottom: 1px solid var(--neutral-primary-300);
}

.tech-table__table-body th[scope="row"] {
  font-size: 12px;
  line-height: 140%;
  text-align: left;
}

@media (width >= 1440px) {
  .tech-table__table-body th[scope="row"] {
    font-size: 14px;
  }
}

.tech-table__table-body td {
  overflow: hidden;
  padding-block: 13px;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  text-overflow: ellipsis;
}

@media (width >= 1440px) {
  .tech-table__table-body td {
    font-size: 16px;
  }
}

.tech-table__button {
  display: flex;
  column-gap: 6px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12.5px;
  font-size: 16px;
  text-align: center;
  background-color: var(--overlay-black-200, rgb(20 20 20 / 10%));
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .tech-table__button:hover {
    background-color: var(--neutral-primary-200);
  }
}

.tech-table__button > svg {
  width: 16px;
  height: 16px;
}

.geellux-stats {
  padding-block: 20px;
  background-color: var(--neutral-primary-1000);
}

@media (width >= 960px) {
  .geellux-stats {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .geellux-stats {
    padding-block: 60px;
  }
}

.geellux-stats__container {
  display: grid;
  row-gap: 24px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .geellux-stats__container {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .geellux-stats__container {
    gap: 48px;
    padding-inline: 64px;
  }
}

@media (width >= 960px) {
  .geellux-stats__body {
    flex: 1 1 632px;
  }
}

.geellux-stats__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .geellux-stats__title {
    margin-bottom: 16px;
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .geellux-stats__title {
    margin-bottom: 24px;
    font-size: 40px;
  }
}

.geellux-stats__text {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .geellux-stats__text {
    margin-bottom: 32px;
  }
}

@media (width >= 1440px) {
  .geellux-stats__text {
    margin-bottom: 48px;
    font-size: 16px;
  }
}

.geellux-stats__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12.5px;
  font-size: 16px;
  text-align: center;
  background-color: var(--neutral-primary-100);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .geellux-stats__button:hover {
    background-color: var(--neutral-primary-400);
  }
}

@media (width >= 960px) {
  .geellux-stats__button {
    width: 240px;
  }
}

@media (width >= 320px) {
  .geellux-stats__cards {
    display: grid;
    gap: 12px;
  }
}

@media (width >= 360px) {
  .geellux-stats__cards {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}

@media (width >= 960px) {
  .geellux-stats__cards {
    flex: 1 1 632px;
    gap: 16px;
  }
}

@media (width >= 1440px) {
  .geellux-stats__cards {
    gap: 24px;
  }
}

@media (width >= 1600px) {
  .geellux-stats__cards {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }
}

.stat-card {
  display: flex;
  column-gap: 16px;
  align-items: center;
  padding-left: 10px;
  padding-block: 15.5px;
  border-left: 1px solid var(--neutral-primary-800);
}

@media (width >= 960px) {
  .stat-card {
    column-gap: 20px;
    padding-left: 16px;
    padding-block: 10.33px;
  }
}

@media (width >= 1440px) {
  .stat-card {
    padding-block: 8.33px;
  }
}

.stat-card__count {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .stat-card__count {
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .stat-card__count {
    font-size: 40px;
  }
}

.stat-card__title {
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-400, #b2b2b2);
}

@media (width >= 1440px) {
  .stat-card__title {
    font-size: 14px;
  }
}

.certs {
  padding-block: 20px;
  background-image: linear-gradient(
    180deg,
    #dedede 0%,
    rgb(222 222 222 / 0%) 100%
  );
}

@media (width >= 960px) {
  .certs {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .certs {
    padding-block: 60px;
  }
}

.certs__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .certs__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .certs__container {
    padding-inline: 64px;
  }
}

.certs__title {
  display: flex;
  column-gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .certs__title {
    margin-bottom: 32px;
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .certs__title {
    margin-bottom: 48px;
    font-size: 40px;
  }
}

.certs__title > svg {
  width: 32px;
  height: 25px;
}

@media (width >= 960px) {
  .certs__title > svg {
    width: 52px;
    height: 40.1px;
  }
}

.certs__cards {
  display: flex;
  column-gap: 12px;
}

@media (width >= 960px) {
  .certs__cards {
    column-gap: 24px;
  }
}

.certs__cards > * {
  flex: 1 1 56px;
  height: 100%;
}

.certs__cards:not(:last-child) {
  margin-bottom: 24px;
}

@media (width >= 960px) {
  .certs__cards:not(:last-child) {
    margin-bottom: 32px;
  }
}

@media (width >= 1440px) {
  .certs__cards:not(:last-child) {
    margin-bottom: 48px;
  }
}

.cert-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  aspect-ratio: 243 / 340;
  border-radius: 6px;
}

@media (width >= 960px) {
  .cert-card {
    border-radius: 8px;
  }

  @media (any-hover: hover) and (pointer: fine) {
    .cert-card:hover .cert-card__description {
      left: 0;
    }
  }
}

.cert-card > img {
  position: absolute;
  inset: 0;
}

/* .cert-card__button-wrapper {
  position: absolute;
  bottom: 0;
  display: none;
  width: 100%;
  padding: 8px;
  padding-top: 40px;
  background: linear-gradient(
    180deg,
    rgb(1 67 81 / 0%) 0%,
    rgb(1 67 81 / 92%) 100%
  );
} */

/* .cert-card__description {
  isolation: isolate;
  position: absolute;
  left: -95%;
  width: 95%;
  height: 100%;
  padding: 12px;
  background: rgb(1 67 81 / 92%);
  border-radius: 8px;
  transition: left var(--default-transition);
}

.cert-card__description > h4 {
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 136%;
  color: var(--neutral-primary-100, #fff);
}

.cert-card__description > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  text-overflow: ellipsis;
}

.cert-card__description > svg {
  position: absolute;
  bottom: 26px;
  left: 26px;
  width: 16px;
  height: 16px;
} */

.certs__more {
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
  aspect-ratio: 243 / 340;
  font-size: 18px;
  text-align: center;
  background-color: var(--overlay-black-200);
  border-radius: 6px;
  transition: background-color var(--default-transition);
}

@media (width >= 960px) {
  .certs__more {
    border-radius: 8px;
  }
}

@media (any-hover: hover) and (pointer: fine) {
  .certs__more:hover {
    background-color: var(--neutral-primary-400);
  }
}

@media (width <= 960px) {
  .certs__more > span {
    display: none;
  }
}

.certs__cards--border {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--overlay-black-200);
}

@media (width >= 960px) {
  .certs__cards--border {
    padding-bottom: 32px;
  }
}

@media (width >= 1440px) {
  .certs__cards--border {
    padding-bottom: 48px;
  }
}

.certs__cards--small > .cert-card {
  aspect-ratio: 198 / 274;
}

.popup-overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background: rgb(0 0 0 / 80%);
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  position: absolute;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
}

.popup-image {
  display: block;
  width: 100%;
  max-width: 514px;
  height: auto;
  max-height: 720px;
  border-radius: 16px;
}

.popup-close {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 40px;
  right: 16px;
  width: 44px;
  height: 44px;
  transition: color 0.3s;
}

@media (width > 768px) {
  .popup-close {
    right: 40px;
  }
}

.popup-close:hover {
  color: #ccc;
}

.our-guarantees-head {
  padding-block: 20px;
  background-color: var(--neutral-primary-1000);
}

@media (width >= 960px) {
  .our-guarantees-head {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .our-guarantees-head {
    padding-block: 60px;
  }
}

.our-guarantees-head__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .our-guarantees-head__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .our-guarantees-head__container {
    padding-inline: 64px;
  }
}

.our-guarantees-head__title {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 500;
  line-height: 132%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .our-guarantees-head__title {
    margin-bottom: 16;
    font-size: 44px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .our-guarantees-head__title {
    margin-bottom: 24px;
    font-size: 48px;
  }
}

.our-guarantees-head__text {
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 1440px) {
  .our-guarantees-head__text {
    font-size: 16px;
  }
}

.contacts-head {
  padding-block-start: 20px;
}

@media (width >= 960px) {
  .contacts-head {
    padding-block-start: 32px;
  }
}

@media (width >= 1440px) {
  .contacts-head {
    padding-block-start: 40px;
  }
}

.contacts-head__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .contacts-head__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .contacts-head__container {
    padding-inline: 64px;
  }
}

.contacts-head__title {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 500;
  line-height: 132%;
}

@media (width >= 960px) {
  .contacts-head__title {
    margin-bottom: 32px;
    font-size: 44px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .contacts-head__title {
    margin-bottom: 48px;
    font-size: 48px;
  }
}

.contacts-head__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (width >= 960px) {
  .contacts-head__contacts {
    column-gap: 24px;
    align-items: center;
  }
}

.contacts-head__phone {
  max-width: fit-content;
  padding: 7px 10px;
  font-family: var(--inter-font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 144%;
  color: var(--neutral-primary-100, #fff);
  text-align: center;
  background-color: var(--neutral-primary-1000);
  border-radius: 10px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .contacts-head__phone:hover {
    background-color: var(--neutral-primary-400);
  }
}

@media (width >= 960px) {
  .contacts-head__phone {
    display: flex;
    column-gap: 12px;
    align-items: center;
    padding: 6.5px 16px;
    font-size: 24px;
    font-weight: 600;
    border-radius: 16px;
  }
}

.contacts-head__phone > svg {
  display: none;
}

@media (width >= 960px) {
  .contacts-head__phone > svg {
    display: block;
    width: 24px;
    height: 24px;
  }
}

.contacts-head__socials {
  display: flex;
  column-gap: 8px;
  align-items: center;
  max-width: fit-content;
  padding: 4px 10px;
  border: 1px solid var(--neutral-primary-300);
  border-radius: 10px;
}

@media (width >= 960px) {
  .contacts-head__socials {
    column-gap: 12px;
    margin-right: auto;
    padding: 8px 16px;
    border-radius: 16px;
  }
}

.contacts-head__social {
  width: 32px;
  height: 32px;
}

.contacts-head__social > svg {
  width: 100%;
  height: 100%;
}

.contacts-head__email {
  display: grid;
  row-gap: 3px;
  padding-bottom: 6px;
  padding-left: 10px;
  border-left: 1px solid var(--neutral-primary-300);
}

@media (width >= 960px) {
  .contacts-head__email {
    row-gap: 4px;
    padding-bottom: 4px;
    padding-left: 16px;
  }
}

.contacts-head__email > span {
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-500, #646464);
}

@media (width >= 1440px) {
  .contacts-head__email > span {
    font-size: 14px;
  }
}

.contacts-head__email > a {
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-800, #2d2d2e);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .contacts-head__email > a:hover {
    color: var(--neutral-primary-400);
  }
}

@media (width >= 960px) {
  .contacts-head__email > a {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .contacts-head__email > a {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.service-rules {
  padding-block: 20px;
  background-color: var(--neutral-primary-1000);
}

@media (width >= 960px) {
  .service-rules {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .service-rules {
    padding-block: 60px;
  }
}

.service-rules__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .service-rules__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .service-rules__container {
    padding-inline: 64px;
  }
}

.service-rules__title {
  font-size: 32px;
  text-wrap: pretty;
  font-weight: 500;
  line-height: 132%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .service-rules__title {
    font-size: 44px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .service-rules__title {
    font-size: 48px;
  }
}

.policy {
  padding-block-start: 20px;
}

@media (width >= 960px) {
  .policy {
    padding-block-start: 32px;
  }
}

@media (width >= 1440px) {
  .policy {
    padding-block-start: 40px;
  }
}

.policy__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .policy__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .policy__container {
    padding-inline: 64px;
  }
}

.policy__body {
  max-width: 960px;
}

.policy__body > ul {
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-800, #2d2d2e);
}

@media (width >= 1440px) {
  .policy__body > ul {
    font-size: 16px;
  }
}

.policy__body > ul:last-child {
  padding-block-end: 20px;
}

@media (width >= 960px) {
  .policy__body > ul:last-child {
    padding-block-end: 40px;
  }
}

@media (width >= 1440px) {
  .policy__body > ul:last-child {
    padding-block-end: 60px;
  }
}

.policy__body > ul > li:not(:last-child) {
  margin-block-end: 20px;
}

@media (width >= 960px) {
  .policy__body > ul > li:not(:last-child) {
    margin-block-end: 32px;
  }
}

@media (width >= 1440px) {
  .policy__body > ul > li:not(:last-child) {
    margin-block-end: 40px;
  }
}

.policy__sub-title {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--inter-font-family, Roboto);
  font-size: 24px;
  font-weight: 500;
  line-height: 152%;
}

@media (width >= 960px) {
  .policy__sub-title {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .policy__sub-title {
    margin-bottom: 24px;
    font-size: 32px;
  }
}

.news-head {
  padding-block: 20px;
  background-color: var(--neutral-primary-1000);
}

@media (width >= 960px) {
  .news-head {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .news-head {
    padding-block: 60px;
  }
}

.news-head__container,
.news-head__tags {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .news-head__container,
  .news-head__tags {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .news-head__container,
  .news-head__tags {
    padding-inline: 64px;
  }
}

.news-head__title {
  margin-bottom: 32px;
  font-size: 32px;
  font-weight: 500;
  line-height: 132%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .news-head__title {
    margin-bottom: 40px;
    font-size: 44px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .news-head__title {
    font-size: 48px;
  }
}

.news-head__tags {
  overflow: auto;
  display: flex;
  column-gap: 6px;
}

.news-head__tags::-webkit-scrollbar {
  display: none;
}

@media (width >= 960px) {
  .news-head__tags {
    column-gap: 8px;
  }
}

.news-head__tag {
  display: flex;
  align-items: center;
  padding: 11.5px 16px;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  white-space: nowrap;
  background-color: var(--overlay-white-200);
  border-radius: 8px;
  transition:
    background-color var(--default-transition),
    border var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .news-head__tag:hover {
    background-color: transparent;
  }
}

@media (width >= 960px) {
  .news-head__tag {
    padding: 15.5px 20px;
  }
}

@media (width >= 1440px) {
  .news-head__tag {
    padding-block: 14px;
    font-size: 14px;
  }
}

.news-head__tag.active {
  padding: 9.5px 14px;
  background-color: transparent;
  border: 2px solid var(--neutral-primary-200);
}

@media (width >= 960px) {
  .news-head__tag.active {
    padding: 13.5px 18px;
  }
}

@media (width >= 1440px) {
  .news-head__tag.active {
    padding-block: 12px;
  }
}

.download-pdf {
  padding-block: 20px;
  background-color: var(--neutral-primary-300);
}

@media (width >= 960px) {
  .download-pdf {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .download-pdf {
    padding-block: 40px;
  }
}

.download-pdf__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .download-pdf__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .download-pdf__container {
    padding-inline: 64px;
  }
}

.download-pdf__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9.5px;
  font-size: 16px;
  color: var(--neutral-primary-300, #fff);
  text-align: center;
  background-color: var(--neutral-primary-1000);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .download-pdf__button:hover {
    background-color: var(--neutral-primary-400);
  }
}

@media (width >= 960px) {
  .download-pdf__button {
    width: 240px;
  }
}

.news-list {
  padding-block: 20px;
}

@media (width >= 960px) {
  .news-list {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .news-list {
    padding-block: 40px 60px;
  }
}

.news-list__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .news-list__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .news-list__container {
    padding-inline: 64px;
  }
}

.news-list__head {
  margin-bottom: 24px;
}

@media (width >= 960px) {
  .news-list__head {
    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
  }
}

@media (width >= 1440px) {
  .news-list__head {
    margin-bottom: 48px;
  }
}

.news-list__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .news-list__title {
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 960px) {
  .news-list__title {
    font-size: 40px;
  }
}

.news-card__more {
  display: flex;
  column-gap: 6px;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  background-color: var(--overlay-black-200);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .news-card__more:hover {
    background-color: var(--neutral-primary-400);
  }
}

.news-list__list {
  padding-block: 12px;
  border-block: 1px solid var(--neutral-primary-300);
}

@media (width >= 960px) {
  .news-list__list {
    padding-block: 16px;
  }
}

@media (width >= 1440px) {
  .news-list__list {
    padding-block: 24px;
  }
}

.news-list__list:not(:last-child) {
  margin-bottom: 12px;
}

@media (width >= 960px) {
  .news-list__list:not(:last-child) {
    margin-bottom: 16px;
  }
}

@media (width >= 1440px) {
  .news-list__list:not(:last-child) {
    margin-bottom: 24px;
  }
}

.news-list__list-item:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--neutral-primary-300);
}

@media (width >= 960px) {
  .news-list__list-item:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}

@media (width >= 1440px) {
  .news-list__list-item:not(:last-child) {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

@media (width >= 960px) {
  .news-card {
    flex-direction: row;
    column-gap: 32px;
  }
}

.news-card__image {
  position: relative;
  overflow: hidden;
  height: 218.6px;
  border-radius: 8px;
}

@media (width >= 960px) {
  .news-card__image {
    flex: 1 1 480px;
    height: 320px;
  }
}

.news-card__image > img {
  position: absolute;
  inset: 0;
  object-position: center;
}

.news-card__body {
  padding-block: 8px;
}

@media (width >= 960px) {
  .news-card__body {
    display: flex;
    flex: 0 1 800px;
    flex-direction: column;
    padding-block: 12px;
  }
}

.news-card__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  text-overflow: ellipsis;
  text-wrap: pretty;
}

@media (width >= 960px) {
  .news-card__title {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 600;
  }
}

@media (width >= 960px) {
  .news-card__title {
    font-size: 32px;
  }
}

.news-card__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 160%;
  text-overflow: ellipsis;
}

@media (width >= 960px) {
  .news-card__text {
    margin-bottom: auto;
  }
}

@media (width >= 1440px) {
  .news-card__text {
    font-size: 16px;
  }
}

.news-card__info {
  display: flex;
  column-gap: 16px;
  align-items: center;
}

@media (width >= 960px) {
  .news-card__info {
    column-gap: 24px;
  }
}

.news-card__date,
.news-card__views {
  display: flex;
  column-gap: 8px;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-700, #383838);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width >= 960px) {
  .news-card__date,
  .news-card__views {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .news-card__date,
  .news-card__views {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.news-card__views {
  flex: 1 1 auto;
}

.news-card__views > svg {
  width: 16px;
  height: 16px;
}

@media (width >= 960px) {
  .news-card__views > svg {
    width: 24px;
    height: 24px;
  }
}

.news-list__pagination {
  margin-bottom: 24px;
}

@media (width >= 960px) {
  .news-list__pagination {
    margin-bottom: 0;
  }
}

.news-pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-pagination::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: var(--neutral-primary-300);
}

.news-pagination__inner {
  isolation: isolate;
  display: flex;
  column-gap: 10px;
  padding-inline: 10px;
  background-color: var(--neutral-primary-100);
}

@media (width >= 960px) {
  .news-pagination__inner {
    column-gap: 16px;
    padding-inline: 16px;
  }
}

.news-pagination__prev,
.news-pagination__next {
  padding: 10px;
  transition: scale var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .news-pagination__prev:hover,
  .news-pagination__next:hover {
    scale: 1.3;
  }
}

.news-pagination__prev > svg,
.news-pagination__next > svg {
  width: 12px;
  height: 12px;
}

.news-pagination__next > svg {
  rotate: -180deg;
}

.news-pagination__list {
  display: flex;
  column-gap: 3px;
}

@media (width >= 960px) {
  .news-pagination__list {
    column-gap: 4px;
  }
}

.news-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 12px;
  line-height: 140%;
  background-color: var(--neutral-primary-300);
  border-radius: 8px;
  transition:
    background-color var(--default-transition),
    border var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .news-pagination__link:hover {
    background-color: transparent;
  }
}

@media (width >= 960px) {
  .news-pagination__link {
    font-size: 14px;
  }
}

.news-pagination__link.active {
  font-weight: 600;
  background-color: var(--neutral-primary-100);
  border: 1px solid var(--neutral-primary-300);
}

.vacancies-head {
  padding-block: 20px;
  background-color: var(--neutral-primary-1000);
}

@media (width >= 960px) {
  .vacancies-head {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .vacancies-head {
    padding-block: 60px;
  }
}

.vacancies-head__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .vacancies-head__container {
    padding-inline: 32px;
  }
}

@media (width >= 1400px) {
  .vacancies-head__container {
    padding-inline: 64px;
  }
}

.vacancies-head__title {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 500;
  line-height: 132%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .vacancies-head__title {
    margin-bottom: 16px;
    font-size: 44px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .vacancies-head__title {
    margin-bottom: 24px;
    font-size: 48px;
  }
}

.vacancies-head__text {
  font-size: 14px;
  line-height: 160%;
  max-width: 760px;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 1440px) {
  .vacancies-head__text {
    font-size: 16px;
  }
}

.tech-center-head {
  padding-block-end: 20px;
}

@media (width >= 960px) {
  .tech-center-head {
    padding-block-end: 32px;
  }
}

@media (width >= 1440px) {
  .tech-center-head {
    padding-block-end: 60px;
  }
}

.tech-center-head__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .tech-center-head__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .tech-center-head__container {
    padding-inline: 64px;
  }
}

.tech-center-head__blockquote {
  padding: 24px;
  background-color: var(--neutral-primary-1000);
  border-radius: 10px;
}

@media (width >= 960px) {
  .tech-center-head__blockquote {
    padding: 32px;
    border-radius: 16px;
  }
}

@media (width >= 1440px) {
  .tech-center-head__blockquote {
    padding: 48px;
  }
}

.tech-center-head__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .tech-center-head__title {
    margin-bottom: 32px;
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .tech-center-head__title {
    margin-bottom: 48px;
    font-size: 40px;
  }
}

.tech-center-head__text {
  display: flex;
  column-gap: 8px;
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-100, #fff);
}

.tech-center-head__text > svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.tech-center-head__text > svg:first-child {
  align-self: flex-start;
}

.tech-center-head__text > svg:last-child {
  align-self: flex-end;
}

@media (width >= 960px) {
  .tech-center-head__text {
    column-gap: 12px;
  }
}

@media (width >= 1440px) {
  .tech-center-head__text {
    font-size: 16px;
  }
}

@media (width >= 1440px) {
  .tech-center-head__text {
    font-size: 16px;
  }
}

.our-projects-head {
  padding-block: 20px;
  background-color: var(--neutral-primary-1000);
}

@media (width >= 960px) {
  .our-projects-head {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .our-projects-head {
    padding-block: 60px;
  }
}

.our-projects-head__container,
.our-projects-tabs__buttons,
.our-projects-tabs__content {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .our-projects-head__container,
  .our-projects-tabs__buttons,
  .our-projects-tabs__content {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .our-projects-head__container,
  .our-projects-tabs__buttons,
  .our-projects-tabs__content {
    padding-inline: 64px;
  }
}

.our-projects-head__title {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 500;
  line-height: 132%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .our-projects-head__title {
    margin-bottom: 24px;
    font-size: 44px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .our-projects-head__title {
    font-size: 48px;
  }
}

.our-projects-head__text {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .our-projects-head__text {
    margin-bottom: 32px;
  }
}

@media (width >= 1440px) {
  .our-projects-head__text {
    margin-bottom: 48px;
    font-size: 16px;
  }
}

.our-projects-tabs__buttons {
  overflow: auto;
  display: flex;
  column-gap: 12px;
  margin-bottom: 24px;
}

@media (width >= 960px) {
  .our-projects-tabs__buttons {
    column-gap: 16px;
    margin-bottom: 32px;
  }
}

@media (width >= 1440px) {
  .our-projects-tabs__buttons {
    column-gap: 24px;
    margin-bottom: 48px;
  }
}

.our-projects-tabs__buttons::-webkit-scrollbar {
  display: none;
}

.our-projects-tabs__button {
  padding-block: 3px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: #959595;
  text-align: center;
  white-space: nowrap;
  transition:
    color var(--default-transition),
    border-bottom var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .our-projects-tabs__button:hover {
    color: var(--neutral-primary-100);
  }
}

@media (width >= 960px) {
  .our-projects-tabs__button {
    padding-block: 4px 16px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .our-projects-tabs__button {
    font-size: 20px;
  }
}

.our-projects-tabs__button.active {
  position: relative;
  color: var(--neutral-primary-100);
}

.our-projects-tabs__button.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid var(--neutral-primary-100);
}

.our-projects-tabs__content {
  overflow: auto;
  display: flex;
}

.our-projects-tabs__content::-webkit-scrollbar {
  display: none;
}

.our-projects-tabs__tags {
  display: flex;
  column-gap: 6px;
}

.our-projects-tabs__tag {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 16px;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  white-space: nowrap;
  background-color: var(--overlay-white-200);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .our-projects-tabs__tag:hover {
    background-color: transparent;
  }
}

@media (width >= 960px) {
  .our-projects-tabs__tag {
    padding: 15.5px 20px;
  }
}

@media (width >= 1440px) {
  .our-projects-tabs__tag {
    padding-block: 14px;
    font-size: 14px;
  }
}

.our-projects-tabs__tag.active {
  background-color: transparent;
}

.our-projects-tabs__tag.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid var(--neutral-primary-100);
  border-radius: inherit;
}

.legal-entities {
  padding-block: 20px;
}

@media (width >= 960px) {
  .legal-entities {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .legal-entities {
    padding-block: 40px;
  }
}

.legal-entities__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .legal-entities__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .legal-entities__container {
    padding-inline: 64px;
  }
}

.legal-entities__title {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 500;
  line-height: 132%;
  text-wrap: auto;
}

@media (width >= 960px) {
  .legal-entities__title {
    margin-bottom: 24px;
    font-size: 44px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .legal-entities__title {
    font-size: 48px;
  }
}

.legal-entities__label {
  max-width: fit-content;
  margin-bottom: 24px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-100, #fff);
  background-color: var(--neutral-primary-1000);
  border-radius: 6px;
}

@media (width >= 960px) {
  .legal-entities__label {
    padding: 8px 16px;
    border-radius: 8px;
  }
}

@media (width >= 1440px) {
  .legal-entities__label {
    margin-bottom: 48px;
    font-size: 16px;
  }
}

.legal-entities__body {
  display: grid;
  row-gap: 28px;
}

@media (width >= 960px) {
  .legal-entities__body {
    display: flex;
    column-gap: 40px;
  }
}

@media (width >= 1440px) {
  .legal-entities__body {
    column-gap: 80px;
  }
}

.legal-entities__text {
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 960px) {
  .legal-entities__text {
    flex: 1 1 616px;
  }
}

@media (width >= 1440px) {
  .legal-entities__text {
    font-size: 16px;
  }
}

.legal-entities__text > p:not(:last-child) {
  margin-bottom: 16px;
}

@media (width >= 1440px) {
  .legal-entities__text > p:not(:last-child) {
    margin-bottom: 28px;
  }
}

.legal-entities__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (width >= 960px) {
  .legal-entities__stats {
    flex: 1 1 616px;
    gap: 16px;
  }
}

.legal-entities__stat {
  display: flex;
  flex: 1 1 159px;
  flex-direction: column;
  row-gap: 3px;
  padding: 8px 10px;
  border: 1px solid var(--neutral-primary-300);
  border-radius: 6px;
}

@media (width >= 960px) {
  .legal-entities__stat {
    row-gap: 4px;
    padding: 12px 16px;
    border-radius: 8px;
  }
}

@media (width >= 1600px) {
  .legal-entities__stat {
    flex: 1 1 221.3px;
  }
}

.legal-entities__stat > span:first-child {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .legal-entities__stat > span:first-child {
    font-size: 28px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .legal-entities__stat > span:first-child {
    font-size: 32px;
  }
}

.legal-entities__stat > span:last-child {
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-700, #383838);
}

@media (width >= 1440px) {
  .legal-entities__stat > span:last-child {
    font-size: 14px;
  }
}

.favorable-conditions {
  padding-block: 20px;
  background-color: var(--neutral-primary-300);
}

@media (width >= 960px) {
  .favorable-conditions {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .favorable-conditions {
    padding-block: 60px;
  }
}

.favorable-conditions__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .favorable-conditions__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .favorable-conditions__container {
    padding-inline: 64px;
  }
}

.favorable-conditions__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .favorable-conditions__title {
    margin-bottom: 32px;
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .favorable-conditions__title {
    margin-bottom: 48px;
    font-size: 40px;
  }
}

.favorable-conditions__body {
  display: grid;
  row-gap: 28px;
}

@media (width >= 960px) {
  .favorable-conditions__body {
    display: flex;
    column-gap: 40px;
  }
}

@media (width >= 1440px) {
  .favorable-conditions__body {
    column-gap: 80px;
  }
}

.favorable-conditions__text {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 960px) {
  .favorable-conditions__text {
    margin-bottom: 16px;
  }
}

@media (width >= 1440px) {
  .favorable-conditions__text {
    margin-bottom: 24px;
    font-size: 16px;
  }
}

.favorable-conditions__checklist {
  display: grid;
  row-gap: 3px;
}

@media (width >= 960px) {
  .favorable-conditions__checklist {
    row-gap: 4px;
  }
}

.favorable-conditions__checklist-item {
  display: flex;
  column-gap: 6px;
  align-items: center;
  padding: 6px 8px;
  font-size: 14px;
  line-height: 160%;
  background: linear-gradient(
    90deg,
    rgb(24 152 96 / 20%) 0%,
    rgb(24 152 96 / 0%) 100%
  );
  border-radius: 6px;
}

@media (width >= 960px) {
  .favorable-conditions__checklist-item {
    column-gap: 12px;
    padding: 8px 12px;
  }
}

@media (width >= 1440px) {
  .favorable-conditions__checklist-item {
    font-size: 16px;
  }
}

.favorable-conditions__checklist-item > svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

@media (width >= 960px) {
  .favorable-conditions__checklist-item > svg {
    width: 32px;
    height: 32px;
  }
}

.favorable-conditions-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (width >= 960px) {
  .favorable-conditions__content,
  .favorable-conditions-guarantees {
    flex: 1 1 616px;
  }

  .favorable-conditions-guarantees {
    gap: 12px;
  }
}

.favorable-conditions-guarantees__item {
  display: flex;
  flex: 1 1 224px;
  column-gap: 24px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(
    270deg,
    rgb(0 147 255 / 8%) 0%,
    rgb(0 147 255 / 16%) 100%
  );
  border-radius: 8px;
}

.favorable-conditions-guarantees__image {
  width: 49px;
  height: 48px;
}

.favorable-conditions-guarantees__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 136%;
  color: var(--neutral-primary-800, #2d2d2e);
}

.topic-articles {
  padding-block: 20px;
  background-color: var(--neutral-primary-300);
}

@media (width >= 960px) {
  .topic-articles {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .topic-articles {
    padding-block: 40px 60px;
  }
}

.topic-articles__container {
  max-width: 992px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .topic-articles__container {
    max-width: 1024px;
    padding-inline: 32px;
  }
}

.topic-articles__title {
  margin-bottom: 12px;
  font-family: var(--inter-font-family);
  font-size: 24px;
  font-weight: 500;
  line-height: 152%;
}

@media (width >= 960px) {
  .topic-articles__title {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .topic-articles__title {
    margin-bottom: 24px;
    font-size: 32px;
  }
}

.topic-articles__list {
  display: grid;
  row-gap: 16px;
}

@media (width >= 960px) {
  .topic-articles__list {
    row-gap: 12px;
  }
}

.topic-articles__item {
  display: flex;
  align-items: center;
  min-height: 32px;
  font-size: 14px;
  line-height: normal;
  transition: opacity var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .topic-articles__item:hover {
    opacity: 0.5;
  }
}

.article-head {
  max-width: 1024px;
  margin-inline: auto;
  padding-block-start: 34px;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .article-head {
    padding-block-start: 32px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .article-head {
    padding-block-start: 33px;
  }
}

.article-head__title {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 500;
  line-height: 132%;
}

@media (width >= 960px) {
  .article-head__title {
    margin-bottom: 20px;
    font-size: 44px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .article-head__title {
    margin-bottom: 24px;
    font-size: 48px;
  }
}

.article-head__text {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 960px) {
  .article-head__text {
    margin-bottom: 20px;
  }
}

@media (width >= 1440px) {
  .article-head__text {
    margin-bottom: 24px;
    font-size: 16px;
  }
}

.article-head__info {
  display: flex;
  column-gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

@media (width >= 960px) {
  .article-head__info {
    column-gap: 24px;
    margin-bottom: 20px;
  }
}

@media (width >= 1440px) {
  .article-head__info {
    margin-bottom: 24px;
  }
}

.article-head__date,
.article-head__views {
  display: flex;
  column-gap: 6px;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-700, #383838);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.article-head__views {
  flex: 1 1 auto;
}

.article-head__views > svg {
  width: 16px;
  height: 16px;
}

@media (width >= 960px) {
  .article-head__date,
  .article-head__views {
    column-gap: 8px;
    font-size: 12px;
    letter-spacing: 0.48px;
  }

  .article-head__views > svg {
    width: 24px;
    height: 24px;
  }
}

@media (width >= 1440px) {
  .article-head__date,
  .article-head__views {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.article-head__socials {
  display: flex;
  column-gap: 6px;
}

@media (width >= 960px) {
  .article-head__socials {
    column-gap: 8px;
  }
}

.article-head__social {
  display: flex;
  padding: 9px 7px;
  background-color: var(--overlay-white-200);
  border: 1px solid var(--overlay-black-300);
  border-radius: 4px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .article-head__social:hover {
    background-color: var(--overlay-black-300);
  }
}

.article-head__social > svg {
  width: 12px;
  height: 12px;
  transition: scale var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .article-head__social:hover > svg {
    scale: 1.3;
  }
}

.article-head__preview {
  position: relative;
  overflow: hidden;
  padding-bottom: 66.7%;
  border-radius: 6px;
}

@media (width >= 960px) {
  .article-head__preview {
    border-radius: 8px;
  }
}

.article-head__preview > img {
  position: absolute;
  inset: 0;
}

@font-face {
  font-family: swiper-icons;
  font-weight: 400;
  font-style: normal;
  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");
}

:root {
  --swiper-theme-color: #007aff;
}

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

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

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

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

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

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

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

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

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

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

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

.swiper-3d {
  perspective: 1200px;
}

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

.swiper-css-mode > .swiper-wrapper {
  scrollbar-width: none;
  overflow: auto;
  -ms-overflow-style: none;
}

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

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

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

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

.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);
}

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

.swiper-3d .swiper-slide-shadow {
  background: rgb(0 0 0 / 15%);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

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

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .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);
  }
}

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

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

.swiper-virtual.swiper-css-mode.swiper-horizontal
  .swiper-wrapper::after {
  width: var(--swiper-virtual-size);
  height: 1px;
}

.swiper-virtual.swiper-css-mode.swiper-vertical
  .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

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

.swiper-button-next,
.swiper-button-prev {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: var(--swiper-navigation-top-offset, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: none;
  cursor: auto;
  opacity: 0.35;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  pointer-events: none;
  cursor: auto;
  opacity: 0;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  transform-origin: center;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

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

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

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

.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  font-variant: initial;
  line-height: 1;
  text-transform: none !important;
  letter-spacing: 0;
}

.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
  content: "prev";
}

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

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  transform: translate3d(0, 0, 0);
  text-align: center;
  transition: 0.3s opacity;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

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

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

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  appearance: none;
  border: none;
  box-shadow: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  top: 50%;
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  transform: translate3d(0, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}

.swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}

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

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

.swiper-pagination-progressbar {
  position: absolute;
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgb(0 0 0 / 25%)
  );
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left top;
  transform: scale(0);
  width: 100%;
  height: 100%;
  background: var(
    --swiper-pagination-color,
    var(--swiper-theme-color)
  );
}

.swiper-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  top: 0;
  left: 0;
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

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

.swiper-cube .swiper-slide {
  pointer-events: none;
  z-index: 1;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

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

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

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

.swiper-flip .swiper-slide {
  pointer-events: none;
  z-index: 1;
  backface-visibility: hidden;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

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

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

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

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: content-box;
  inline-size: 100%;
  block-size: 100%;
}

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

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}

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

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

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

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

.article-content {
  max-width: 992px;
  margin-inline: auto;
  padding-block: 20px;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .article-content {
    max-width: 1024px;
    padding: 32px 32px 40px;
  }
}

@media (width >= 1440px) {
  .article-content {
    padding-block: 40px 60px;
  }
}

.article-content > p:not(:last-child) {
  margin-bottom: 12px;
}

@media (width >= 960px) {
  .article-content > p:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (width >= 1440px) {
  .article-content > p:not(:last-child) {
    margin-bottom: 26px;
  }
}

.article-content__title {
  margin-bottom: 12px;
  font-family: var(--inter-font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 144%;
  text-wrap: auto;
}

@media (width >= 960px) {
  .article-content__title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .article-content__title {
    margin-bottom: 24px;
  }
}

.my {
  height: 600px;
}

.article-slider {
  position: relative;
  margin-bottom: 12px;
  border-radius: 6px;
}

@media (width >= 960px) {
  .article-slider {
    margin-bottom: 20px;
    border-radius: 8px;
  }
}

@media (width >= 1440px) {
  .article-slider {
    margin-bottom: 24px;
  }
}

.article-slide {
  position: relative;
  overflow: hidden;
  padding: 31.35%;
  border-radius: 6px;
}

@media (width >= 960px) {
  .article-slide {
    border-radius: 8px;
  }
}

.article-slide > img {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.swiper-pagination.article-pagination {
  position: absolute;
  z-index: 3;
  display: flex;
  column-gap: 12px;
  max-width: fit-content;
}

.swiper-horizontal > .swiper-pagination-bullets.article-pagination {
  top: auto;
  bottom: 31px;
  left: 50%;
  transform: translateX(-50%);
}

@media (width >= 960px) {
  .swiper-horizontal > .swiper-pagination-bullets.article-pagination {
    bottom: 28px;
  }
}

.article-pagination > .swiper-pagination-bullet {
  cursor: pointer;
  width: 8px;
  height: 8px;
  margin-inline: 0 !important;
  opacity: 0.4;
  border: 1px solid var(--neutral-primary-100);
  border-radius: 50%;
}

@media (width >= 960px) {
  .article-pagination > .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--neutral-primary-100);
  border: 1px solid var(--neutral-primary-100);
}

.article-button-prev.swiper-button-prev,
.article-button-next.swiper-button-next {
  position: absolute;
  top: auto;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 26px;
}

@media (width >= 1440px) {
  .article-button-prev.swiper-button-prev,
  .article-button-next {
    bottom: 12px;
  }
}

.article-button-prev.swiper-button-prev {
  left: 8px;
}

@media (width >= 1440px) {
  .article-button-prev.swiper-button-prev {
    left: 12px;
  }
}

.article-button-next.swiper-button-next {
  right: 8px;
  rotate: 180deg;
}

@media (width >= 1440px) {
  .article-button-next.swiper-button-next {
    right: 12px;
  }
}

.article-button-prev.swiper-button-prev > svg,
.article-button-next.swiper-button-next > svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.article-button-prev::after,
.article-button-next::after {
  display: none;
}

.article-content > p {
  font-size: 14px;
  line-height: 157%;
}

@media (width >= 960px) {
  .article-content > p {
    font-size: 16px;
    line-height: 160%;
  }
}

@media (width < 960px) {
  .article-content_xs-pt {
    padding-top: 10px;
  }
}

.form-consult {
  padding-block: 20px;
}

@media (width >= 960px) {
  .form-consult {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .form-consult {
    padding-block: 60px;
  }
}

.form-consult__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .form-consult__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .form-consult__container {
    padding-inline: 64px;
  }
}

.form-consult__body {
  position: relative;
  overflow: hidden;
  padding: 20px 24px;
  background-color: var(--neutral-primary-900);
  border-radius: 10px;
}

@media (width >= 960px) {
  .form-consult__body {
    padding: 32px;
    border-radius: 16px;
  }
}

@media (width >= 1440px) {
  .form-consult__body {
    padding: 40px 48px 60px;
  }
}

.form-consult__title {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: var(--Neutral-Primary-100, #fff);
}

@media (width >= 960px) {
  .form-consult__title {
    margin-bottom: 48px;
    font-size: 36px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .form-consult__title {
    font-size: 40px;
  }
}

.form-consult__form {
  position: relative;
  z-index: 2;
}

@media (width >= 960px) {
  .form-consult__form {
    width: 100%;
    max-width: 610px;
  }
}

.form-consult__form-inputs {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-bottom: 40px;
}

@media (width >= 960px) {
  .form-consult__form-inputs {
    flex-direction: row;
    column-gap: 32px;
  }
}

@media (width >= 1440px) {
  .form-consult__form-inputs {
    column-gap: 48px;
  }
}

@media (width >= 960px) {
  .form-consult__column {
    flex: 1 1 auto;
  }
}

.form-consult__column  input {
  padding-block: 12.5px;
  font-size: 16px;
  line-height: normal;
  color: var(--neutral-primary-100);
  border-bottom: 1px solid
    var(--overlay-white-300, rgb(255 255 255 / 20%));
}

.form-consult__column  input::placeholder {
  color: var(--neutral-primary-400, #b2b2b2);
}

.form-consult__column  input:not(:last-child) {
  margin-bottom: 10px;
}

@media (width >= 960px) {
  .form-consult__column   input:not(:last-child) {
    margin-bottom: 16px;
  }
}

.form-consult__column-sub-title {
  display: flex;
  column-gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  font-style: normal;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width >= 960px) {
  .form-consult__column-sub-title {
    column-gap: 16px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .form-consult__column-sub-title {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.form-consult__column-sub-title   svg {
  width: 20px;
  height: 20px;
}

.form-consult__form-actions {
  display: grid;
  row-gap: 24px;
}

@media (width >= 960px) {
  .form-consult__form-actions {
    display: flex;
    column-gap: 32px;
    align-items: center;
  }
}

@media (width >= 1440px) {
  .form-consult__form-actions {
    column-gap: 48px;
  }
}

.form-consult__form-button {
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 15.5px;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
  background-color: var(--neutral-primary-100);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .form-consult__form-button:hover:not(:disabled) {
    background-color: var(--neutral-primary-400);
  }
}

.form-consult__form-button:disabled {
  cursor: not-allowed;
  background-color: var(--neutral-primary-400, #9e9d9d);
}

@media (width >= 960px) {
  .form-consult__form-button {
    flex: 1 0 320px;
    width: 320px;
  }
}

.form-consult__form-button > svg {
  width: 20px;
  height: 20px;
}

.form-consult__form-info {
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-400, #b2b2b2);
  text-align: center;
}

@media (width >= 960px) {
  .form-consult__form-info {
    text-align: left;
  }
}

@media (width >= 1440px) {
  .form-consult__form-info {
    font-size: 14px;
  }
}

.form-consult__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.form-consult__image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -2px;
  width: 101%;
  height: 101%;
  background-image: linear-gradient(
    270deg,
    rgb(26 26 27 / 0%) 0%,
    #1a1a1b 100%
  );
}

@media (width >= 960px) {
  .form-consult__image {
    width: 45%;
  }
}

@media (width >= 1440px) {
  .form-consult__image {
    width: 35%;
  }
}

.form-consult__image > img {
  position: absolute;
  inset: 0;
}

.no-vacancies {
  max-height: fit-content;
  padding: 12px;
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-800, #2d2d2e);
  background-image: linear-gradient(
    270deg,
    rgb(0 147 255 / 8%) 0%,
    rgb(0 147 255 / 16%) 100%
  );
  border-radius: 8px;
}

@media (width >= 960px) {
  .no-vacancies {
    padding: 24px;
    font-size: 16px;
  }
}

.vacancies-sidebar {
  max-height: fit-content;
  padding: 16px;
  background-image: linear-gradient(
    180deg,
    #dedede 0%,
    rgb(222 222 222 / 0%) 100%
  );
  border-radius: 10px;
}

@media (width >= 960px) {
  .vacancies-sidebar {
    width: 100%;
    max-width: 340px;
    padding: 24px;
    border-radius: 16px;
  }
}

.vacancies-sidebar__text {
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-800, #2d2d2e);
  border-bottom: 1px solid var(--neutral-primary-300);
}

@media (width >= 960px) {
  .vacancies-sidebar__text {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}

@media (width >= 1440px) {
  .vacancies-sidebar__text {
    font-size: 16px;
  }
}

.vacancies-sidebar__text > p:not(:last-child) {
  margin-bottom: 19px;
}

@media (width >= 1440px) {
  .vacancies-sidebar__text > p:not(:last-child) {
    margin-bottom: 29px;
  }
}

.vacancies-sidebar__button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 15.5px;
  font-size: 18px;
  line-height: normal;
  color: var(--neutral-primary-100, #fff);
  text-align: center;
  background-color: var(--neutral-primary-1000);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .vacancies-sidebar__button:hover {
    background-color: var(--neutral-primary-400);
  }
}

@media (width >= 960px) {
  .vacancies-sidebar__button {
    margin-bottom: 16px;
  }
}

.vacancies-sidebar__contact {
  display: grid;
  row-gap: 3px;
}

@media (width >= 960px) {
  .vacancies-sidebar__contact {
    row-gap: 4px;
  }
}

.vacancies-sidebar__sub-title {
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-500, #646464);
}

@media (width >= 1440px) {
  .vacancies-sidebar__sub-title {
    font-size: 14px;
  }
}

.vacancies-sidebar__phone {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: var(--neutral-primary-900, #1a1a1b);
  transition: color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .vacancies-sidebar__phone:hover {
    color: var(--neutral-primary-400);
  }
}

@media (width >= 960px) {
  .vacancies-sidebar__phone {
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .vacancies-sidebar__phone {
    font-size: 20px;
  }
}

.vacancies-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  width: 100%;
}

@media (width >= 960px) {
  .vacancies-list {
    row-gap: 12px;
  }
}

.vacancy__head {
  display: flex;
  column-gap: 10px;
  align-items: center;
  padding: 15px 12px;
  border: 1px solid var(--neutral-primary-300, #dedede);
  border-radius: 4px;
  transition: border var(--default-transition);
}

@media (width >= 960px) {
  .vacancy__head {
    column-gap: 16px;
    padding: 20px;
  }
}

@media (width >= 1440px) {
  .vacancy__head {
    padding-inline: 24px;
  }
}

.vacancy[open] > .vacancy__head {
  border-color: var(--neutral-primary-600);
  border-radius: 8px;
}

.vacancy__head > div {
  flex: 1 1 auto;
}

.vacancy__head > svg {
  width: 24px;
  height: 24px;
  fill: #b2b2b2;
  transition:
    rotate var(--default-transition),
    fill var(--default-transition);
}

.vacancy[open] > .vacancy__head > svg {
  rotate: 180deg;
  fill: var(--neutral-primary-600);
}

.vacancy__rows {
  display: grid;
  row-gap: 3px;
}

@media (width >= 960px) {
  .vacancy__rows {
    row-gap: 4px;
  }
}

.vacancy__row:first-child {
  display: grid;
  row-gap: 3px;
}

@media (width >= 960px) {
  .vacancy__row:first-child {
    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
}

.vacancy__row:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-500, #646464);
}

@media (width >= 1440px) {
  .vacancy__row:last-child {
    font-size: 14px;
  }
}

.vacancy__title {
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: var(--neutral-primary-600, #444);
}

@media (width >= 960px) {
  .vacancy__title {
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .vacancy__title {
    font-size: 20px;
  }
}

.vacancy__salary {
  display: flex;
  column-gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.vacancy__label {
  padding: 2px 6px;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-700, #383838);
  background-color: var(--neutral-primary-300);
  border-radius: 30px;
}

@media (width >= 960px) {
  .vacancy__label {
    padding-inline: 8px;
  }
}

@media (width >= 1440px) {
  .vacancy__label {
    font-size: 14px;
  }
}

.vacancy__price {
  font-family: var(--inter-font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 144%;
  color: var(--neutral-primary-1000, #141414);
}

@media (width >= 960px) {
  .vacancy__price {
    font-size: 24px;
    font-weight: 600;
  }
}

.vacancy__experience {
  color: var(--neutral-primary-1000);
}

.vacancy__location {
  display: flex;
  column-gap: 3px;
  align-items: center;
  color: var(--neutral-primary-700);
}

.vacancy__location > svg {
  width: 10px;
  height: 10px;
}

@media (width >= 960px) {
  .vacancy__location > svg {
    width: 16px;
    height: 16px;
  }
}

.vacancy__body {
  display: grid;
  row-gap: 10px;
  padding-top: 10px;
}

@media (width >= 960px) {
  .vacancy__body {
    row-gap: 16px;
    padding-top: 16px;
  }
}

.vacancy__info {
  padding: 12px;
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-800, #2d2d2e);
  background-image: linear-gradient(
    270deg,
    rgb(0 147 255 / 8%) 0%,
    rgb(0 147 255 / 16%) 100%
  );
  border-radius: 8px;
}

@media (width >= 960px) {
  .vacancy__info {
    padding: 20px;
  }
}

@media (width >= 1440px) {
  .vacancy__info {
    padding: 24px;
    font-size: 16px;
  }
}

.vacancy__lists {
  display: grid;
  row-gap: 10px;
}

@media (width >= 960px) {
  .vacancy__lists {
    display: flex;
    column-gap: 16px;
  }
}

.vacancy__list {
  flex: 1 1 454px;
  max-height: fit-content;
  padding: 11px 12px;
  border: 1px solid var(--neutral-primary-300, #dedede);
  border-radius: 8px;
}

@media (width >= 960px) {
  .vacancy__list {
    padding: 20px;
  }
}

@media (width >= 1440px) {
  .vacancy__list {
    padding: 24px;
  }
}

.vacancy__list > ol {
  font-size: 14px;
  line-height: 157%;
  color: var(--neutral-primary-800, #2d2d2e);
}

@media (width >= 1440px) {
  .vacancy__list > ol {
    font-size: 16px;
  }
}

.vacancy__list li {
  position: relative;
  padding-left: 20px;
}

.vacancy__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  width: 4px;
  height: 4px;
  background-color: var(--neutral-primary-1000);
  border-radius: 50%;
}

.vacancy__sub-title {
  margin-bottom: 6px;
  padding-block: 7px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width >= 960px) {
  .vacancy__sub-title {
    padding-block: 5.5px;
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .vacancy__sub-title {
    margin-bottom: 8px;
    padding-block: 4.5px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.modal.shown {
  display: flex;
  flex-wrap: nowrap;
}

.modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgb(0 0 0 / 90%);
}

.modal__content {
  position: relative;
  width: 640px;
  max-width: 90%;
}

.modal__close {
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
}

.order-form {
  max-height: fit-content;
  padding: 24px;
  background-color: var(--neutral-primary-1000, #141414);
  border-radius: 16px;
}

.order-form__title {
  margin-bottom: 16px;
  padding-right: 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 1440px) {
  .order-form__title {
    font-size: 32px;
  }
}

.order-form__inputs {
  display: flex;
  flex-direction: column;
  row-gap: 9px;
  margin-bottom: 16px;
}

.order-form__inputs > input {
  padding-block: 9px;
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-primary-100, #fff);
  border-bottom: 1px solid
    var(--overlay-white-300, rgb(255 255 255 / 20%));
}

.order-form__inputs > input::-webkit-inner-spin-button {
  display: none;
}

.order-form__inputs > input::placeholder {
  color: var(--neutral-primary-400, #b2b2b2);
}

.order-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 11px;
}

.order-form__radios > legend {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width >= 1440px) {
  .order-form__radios > legend {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.order-form__radio {
  position: relative;
  display: block;
  max-width: fit-content;
  padding: 9.5px 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-primary-100, #fff);
  text-align: center;
}

.order-form__radio > input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  border: 1px solid var(--neutral-primary-100, #fff);
  border-radius: 8px;
}

.order-form__radio > input + span {
  opacity: 0.4;
}

.order-form__radio > input:checked,
.order-form__radio > input:checked + span {
  opacity: 1;
}

.order-form__policy {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: var(--neutral-primary-400, #b2b2b2);
}

@media (width >= 1440px) {
  .order-form__policy {
    margin-bottom: 16px;
    font-size: 14px;
  }
}

.order-form__button {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  padding-inline: 12px;
  font-size: 18px;
  font-weight: 400;
  color: var(--neutral-primary-1000, #141414);
  text-align: center;
  background-color: var(--neutral-primary-100, #fff);
  border-radius: 8px;
}

.order-form__button > svg {
  width: 20px;
  height: 20px;
}

.order-form__button:disabled {
  cursor: default;
  background-color: var(--neutral-primary-400, #9e9d9d);
}

.modal.shown {
  display: flex;
  flex-wrap: nowrap;
}

.modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgb(0 0 0 / 90%);
}

.modal__content {
  position: relative;
  width: 640px;
  max-width: 90%;
}

.modal__close {
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
}

.order-form {
  max-height: fit-content;
  padding: 24px;
  background-color: var(--neutral-primary-1000, #141414);
  border-radius: 16px;
}

.order-form__title {
  margin-bottom: 16px;
  padding-right: 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 1440px) {
  .order-form__title {
    font-size: 32px;
  }
}

.order-form__inputs {
  display: flex;
  flex-direction: column;
  row-gap: 9px;
  margin-bottom: 16px;
}

.order-form__inputs  input {
  padding-block: 9px;
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-primary-100, #fff);
  border-bottom: 1px solid
    var(--overlay-white-300, rgb(255 255 255 / 20%));
}

.order-form__inputs  input::-webkit-inner-spin-button {
  display: none;
}

.order-form__inputs  input::placeholder {
  color: var(--neutral-primary-400, #b2b2b2);
}

.order-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 11px;
}

.order-form__radios > legend {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width >= 1440px) {
  .order-form__radios > legend {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.order-form__radio {
  position: relative;
  display: block;
  max-width: fit-content;
  padding: 9.5px 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-primary-100, #fff);
  text-align: center;
}

.order-form__radio > input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  border: 1px solid var(--neutral-primary-100, #fff);
  border-radius: 8px;
}

.order-form__radio > input + span {
  opacity: 0.4;
}

.order-form__radio > input:checked,
.order-form__radio > input:checked + span {
  opacity: 1;
}

.order-form__policy {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: var(--neutral-primary-400, #b2b2b2);
}

@media (width >= 1440px) {
  .order-form__policy {
    margin-bottom: 16px;
    font-size: 14px;
  }
}

.order-form__button {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  padding-inline: 12px;
  font-size: 18px;
  font-weight: 400;
  color: var(--neutral-primary-1000, #141414);
  text-align: center;
  background-color: var(--neutral-primary-100, #fff);
  border-radius: 8px;
}

.order-form__button > svg {
  width: 20px;
  height: 20px;
}

.order-form__button:disabled {
  cursor: default;
  background-color: var(--neutral-primary-400, #9e9d9d);
}

@font-face {
  font-family: swiper-icons;
  font-weight: 400;
  font-style: normal;
  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");
}

:root {
  --swiper-theme-color: #007aff;
}

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

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

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

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

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

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

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

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

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

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

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

.swiper-3d {
  perspective: 1200px;
}

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

.swiper-css-mode > .swiper-wrapper {
  scrollbar-width: none;
  overflow: auto;
  -ms-overflow-style: none;
}

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

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

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

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

.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);
}

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

.swiper-3d .swiper-slide-shadow {
  background: rgb(0 0 0 / 15%);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

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

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .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);
  }
}

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

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

.swiper-virtual.swiper-css-mode.swiper-horizontal
  .swiper-wrapper::after {
  width: var(--swiper-virtual-size);
  height: 1px;
}

.swiper-virtual.swiper-css-mode.swiper-vertical
  .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

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

.swiper-button-next,
.swiper-button-prev {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: var(--swiper-navigation-top-offset, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: none;
  cursor: auto;
  opacity: 0.35;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  pointer-events: none;
  cursor: auto;
  opacity: 0;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  transform-origin: center;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

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

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

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

.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  font-variant: initial;
  line-height: 1;
  text-transform: none !important;
  letter-spacing: 0;
}

.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
  content: "prev";
}

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

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  transform: translate3d(0, 0, 0);
  text-align: center;
  transition: 0.3s opacity;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

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

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

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  appearance: none;
  border: none;
  box-shadow: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  top: 50%;
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  transform: translate3d(0, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}

.swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}

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

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

.swiper-pagination-progressbar {
  position: absolute;
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgb(0 0 0 / 25%)
  );
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left top;
  transform: scale(0);
  width: 100%;
  height: 100%;
  background: var(
    --swiper-pagination-color,
    var(--swiper-theme-color)
  );
}

.swiper-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  top: 0;
  left: 0;
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

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

.swiper-cube .swiper-slide {
  pointer-events: none;
  z-index: 1;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

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

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

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

.swiper-flip .swiper-slide {
  pointer-events: none;
  z-index: 1;
  backface-visibility: hidden;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

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

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

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

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: content-box;
  inline-size: 100%;
  block-size: 100%;
}

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

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}

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

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

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

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

.about-slider {
  position: relative;
  width: 100%;
  border-radius: 6px;
}

@media (width >= 960px) {
  .about-slider {
    flex: 1 1 632px;
    border-radius: 8px;
  }
}

.about-slide {
  position: relative;
  overflow: hidden;
  padding-bottom: 70%;
  border-radius: 6px;
}

@media (width >= 960px) {
  .about-slide {
    height: 100%;
    padding-bottom: 0;
    border-radius: 8px;
  }
}

.about-slide > img {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.swiper-pagination.about-pagination {
  position: absolute;
  z-index: 3;
  top: auto !important;
  bottom: 28px !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  column-gap: 12px;
  max-width: fit-content;
}

@media (width >= 1440px) {
  .swiper-pagination.about-pagination {
    bottom: 32px;
  }
}

.about-pagination > .swiper-pagination-bullet {
  cursor: pointer;
  width: 8px;
  height: 8px;
  margin-inline: 0 !important;
  opacity: 0.4;
  border: 1px solid var(--neutral-primary-100);
  border-radius: 50%;
}

@media (width >= 960px) {
  .about-pagination > .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--neutral-primary-100);
  border: 1px solid var(--neutral-primary-100);
}

.about-button-prev,
.about-button-next {
  position: absolute;
  top: auto !important;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

@media (width >= 1440px) {
  .about-button-prev,
  .about-button-next {
    bottom: 12px;
  }
}

.about-button-prev {
  left: 8px;
}

@media (width >= 1440px) {
  .about-button-prev {
    left: 12px;
  }
}

.about-button-next {
  right: 8px;
  rotate: 180deg;
}

@media (width >= 1440px) {
  .about-button-next {
    right: 12px;
  }
}

.about-button-prev svg,
.about-button-next svg {
  flex: 0 0 20px;
  width: 20px !important;
  height: 20px !important;
}

.about-button-prev::after,
.about-button-next::after {
  display: none;
}

.about {
  padding-block: 20px;
  background-color: var(--neutral-primary-1000);
}

@media (width >= 960px) {
  .about {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .about {
    padding-block: 60px;
  }
}

.about__container {
  display: grid;
  row-gap: 24px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .about__container {
    display: flex;
    column-gap: 32px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .about__container {
    column-gap: 48px;
    padding-inline: 64px;
  }
}

@media (width >= 960px) {
  .about__body {
    flex: 1 0 632px;
  }
}

.about__title {
  margin-bottom: 28px;
  font-size: 32px;
  font-weight: 500;
  line-height: 132%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .about__title {
    margin-bottom: 32px;
    font-size: 44px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .about__title {
    margin-bottom: 48px;
    font-size: 48px;
  }
}

.about__text {
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .about__text {
    margin-bottom: 32px;
    font-size: 16px;
  }
}

@media (width >= 1440px) {
  .about__text {
    margin-bottom: 48px;
  }
}

.about__button {
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 15.5px;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  background-color: var(--neutral-primary-100);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .about__button:hover {
    background-color: var(--neutral-primary-400);
  }
}

@media (width >= 960px) {
  .about__button {
    width: 336px;
  }
}

.how-we-work {
  padding-block: 20px;
}

@media (width >= 960px) {
  .how-we-work {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .how-we-work {
    padding-block: 60px;
  }
}

.how-we-work__container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .how-we-work__container {
    flex-wrap: nowrap;
    gap: 32px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .how-we-work__container {
    gap: 48px;
    padding-inline: 64px;
  }
}

.how-we-work__body {
  flex: 1 1 auto;
}

@media (width < 960px) {
  .how-we-work__body {
    order: 2;
  }
}

.how-we-work__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}

@media (width >= 960px) {
  .how-we-work__title {
    margin-bottom: 16px;
    font-size: 36px;
  }
}

@media (width >= 1440px) {
  .how-we-work__title {
    margin-bottom: 24px;
    font-size: 40px;
  }
}

.how-we-work__cards {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(6, minmax(47px, 1fr));
}

@media (width >= 1440px) {
  .how-we-work__cards {
    gap: 12px;
  }
}

.how-we-work__card {
  overflow: hidden;
  border-radius: 8px;
}

.how-we-work__card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.how-we-work__card:nth-child(2) {
  grid-column: 1;
  grid-row: 4 / span 3;
}

.how-we-work__card:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.how-we-work__card:nth-child(4) {
  grid-column: 2;
  grid-row: 3 / span 2;
}

.how-we-work__card:nth-child(5) {
  grid-column: 2;
  grid-row: 5 / span 2;
}

@media (width >= 960px) {
  .how-we-work__cards {
    grid-template:
      "card1 card3" 152px
      "card1 card4" 26px
      "card2 card4" calc(152px - 26px - 12px)
      "card2 card5" 152px /
      1fr 1fr;
  }

  .how-we-work__card:nth-child(1) {
    grid-area: card1;
  }

  .how-we-work__card:nth-child(2) {
    grid-area: card2;
  }

  .how-we-work__card:nth-child(3) {
    grid-area: card3;
  }

  .how-we-work__card:nth-child(4) {
    grid-area: card4;
  }

  .how-we-work__card:nth-child(5) {
    grid-area: card5;
  }
}

.how-we-work__image {
  width: 100%;
  object-fit: cover;
}

.how-we-work__sidebar {
  width: 100%;
  max-height: fit-content;
}

@media (width >= 960px) {
  .how-we-work__sidebar {
    flex-shrink: 0;
    width: 400px;
  }
}

.how-we-work__description {
  font-size: 14px;
  line-height: 22.4px;
}

@media (width >= 1440px) {
  .how-we-work__description {
    font-size: 16px;
    line-height: 25.6px;
  }
}

.how-we-work__description:first-of-type {
  padding-bottom: 18px;
}

@media (width >= 960px) {
  .how-we-work__description:first-of-type {
    padding-bottom: 28px;
  }
}

.our-guarantees {
  padding-block: 20px;
}

@media (width >= 960px) {
  .our-guarantees {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .our-guarantees {
    padding-block: 40px;
  }
}

.our-guarantees__container {
  display: grid;
  row-gap: 24px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .our-guarantees__container {
    display: flex;
    column-gap: 32px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .our-guarantees__container {
    column-gap: 48px;
    padding-inline: 64px;
  }
}

.our-guarantees__table {
  border-collapse: collapse;
  width: 100%;
  height: fit-content;
}

.our-guarantees__table-head {
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-500, #646464);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
  border-bottom: 2px solid var(--neutral-primary-1000);
}

@media (width >= 960px) {
  .our-guarantees__table-head {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .our-guarantees__table-head {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.our-guarantees__table-head th {
  width: 208px;
  padding-block: 19px;
  text-align: left;
}

@media (width >= 960px) {
  .our-guarantees__table-head th {
    width: 308px;
    padding-block: 17.5px;
  }
}

@media (width >= 960px) {
  .our-guarantees__table-head th {
    width: 600px;
    padding-block: 16px;
  }
}

.our-guarantees__table-head td {
  width: 60px;
  padding-block: 19px;
  text-align: right;
}

@media (width >= 960px) {
  .our-guarantees__table-head td {
    width: 80px;
    padding-block: 17.5px;
  }
}

@media (width >= 960px) {
  .our-guarantees__table-head td {
    width: 160px;
    padding-block: 16px;
  }
}

.our-guarantees__table-body {
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 140%;
  text-align: left;
}

.our-guarantees__table-body tr {
  border-bottom: 1px solid var(--neutral-primary-300, #dedede);
}

.our-guarantees__table-body th {
  padding-block: 10px;
  text-align: left;
}

@media (width >= 960px) {
  .our-guarantees__table-body th {
    padding-block: 12px;
  }
}

@media (width >= 1440px) {
  .our-guarantees__table-body th {
    padding-block: 16px;
    font-size: 14px;
  }
}

.our-guarantees__table-body td {
  padding-block: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
}

@media (width >= 960px) {
  .our-guarantees__table-body td {
    padding-block: 12px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .our-guarantees__table-body td {
    padding-block: 16px;
    font-size: 20px;
  }
}

.our-guarantees__sidebar {
  max-height: fit-content;
  padding: 12px;
  background-image: linear-gradient(
    180deg,
    #dedede 0%,
    rgb(222 222 222 / 0%) 100%
  );
  border-radius: 10px;
}

@media (width >= 960px) {
  .our-guarantees__sidebar {
    flex: 0 0 400px;
    width: 400px;
    padding: 20px;
    border-radius: 16px;
  }
}

.our-guarantees-card {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--neutral-primary-200, #f9f9f9);
  border-radius: 10px;
}

@media (width >= 960px) {
  .our-guarantees-card {
    row-gap: 12px;
    padding: 16px;
    border-radius: 16px;
  }
}

.our-guarantees-card > svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

@media (width >= 960px) {
  .our-guarantees-card > svg {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }
}

.our-guarantees__sidebar > .our-guarantees-card {
  height: 100px;
  margin-bottom: 16px;
}

@media (width >= 960px) {
  .our-guarantees__sidebar > .our-guarantees-card {
    height: 120px;
    margin-bottom: 24px;
  }
}

.our-guarantees-card__text {
  font-size: 14px;
  line-height: 160%;
  text-align: center;
}

@media (width >= 960px) {
  .our-guarantees-card__text {
    font-size: 16px;
  }
}

.our-guarantees__sub-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
}

@media (width >= 960px) {
  .our-guarantees__sub-title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
  }
}

.our-guarantees__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(147px, 1fr));
  gap: 10px;
}

@media (width >= 960px) {
  .our-guarantees__cards {
    gap: 16px;
  }
}

.benefits {
  padding-block: 20px;
}

@media (width >= 960px) {
  .benefits {
    padding-block: 40px;
  }
}

.benefits__container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .benefits__container {
    gap: 32px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .benefits__container {
    gap: 48px;
    padding-inline: 64px;
  }
}

.benefits__body {
  flex: 1 1 auto;
}

@media (width >= 960px) {
  .benefits__body {
    flex: 1 1 calc(100% - 360px - 32px);
  }
}

@media (width >= 1440px) {
  .benefits__body {
    flex: 1 1 calc(100% - 360px - 48px);
  }
}

.benefits__description {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 960px) {
  .benefits__description {
    margin-bottom: 32px;
  }
}

@media (width >= 1440px) {
  .benefits__description {
    margin-bottom: 48px;
    font-size: 16px;
  }
}

.benefits__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}

@media (width >= 960px) {
  .benefits__title {
    margin-bottom: 16px;
    font-size: 36px;
  }
}

@media (width >= 1440px) {
  .benefits__title {
    margin-bottom: 24px;
    font-size: 40px;
  }
}

.benefits__cards {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(1, 1fr);
}

.benefits__card {
  overflow: hidden;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 240px;
  padding: 12px;
  background-color: var(--neutral-primary-300, #dedede);
  border-radius: 8px;
}

@media (width >= 960px) {
  .benefits__cards {
    grid-gap: 12px;
    grid-template-areas:
      "card1 card1 card1 card1 card1 card1 card2 card2 card2 card2 card2 card2"
      "card3 card3 card3 card3 card3 card3 card4 card4 card4 card4 card4 card4"
      "card5 card5 card5 card5 card5 card5 card5 card5 card5 card5 card5 card5";
    grid-template-columns: repeat(12, 1fr);
  }

  .benefits__card {
    min-height: 200px;
    padding: 20px;
  }

  .benefits__card:nth-child(1) {
    grid-area: card1;
  }

  .benefits__card:nth-child(2) {
    grid-area: card2;
  }

  .benefits__card:nth-child(3) {
    grid-area: card3;
  }

  .benefits__card:nth-child(4) {
    grid-area: card4;
  }

  .benefits__card:nth-child(5) {
    grid-area: card5;
  }
}

@media (width >= 1440px) {
  .benefits__cards {
    grid-template-areas:
      "card1 card1 card1 card1 card2 card2 card2 card2 card3 card3 card3 card3"
      "card4 card4 card4 card4 card4 card4 card5 card5 card5 card5 card5 card5";
  }

  .benefits__card {
    padding: 24px;
  }
}

@media (width >= 1600px) {
  .benefits__cards {
    grid-template-areas:
      "card1 card1 card1 card2 card2 card2 card3 card3 card3 card4 card4 card4"
      "card5 card5 card5 card5 card5 card5 card5 card5 card5 card5 card5 card5";
  }
}

.benefits-card__title {
  width: 100%;
  padding-right: 40px;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  line-height: 136%;
  background-image: url("/icons/repeat.svg");
  background-repeat: no-repeat;
  background-position: right 0 top 0;
}

@media (width < 960px) {
  .benefits-card__title {
    margin-bottom: 11px;
  }
}

@media (width >= 1440px) {
  .benefits-card__title {
    font-size: 16px;
  }
}

.benefits-card__body {
  font-size: 12px;
  line-height: 140%;
}

@media (width >= 1440px) {
  .benefits-card__body {
    font-size: 14px;
  }
}

.benefits__sidebar {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
}

@media (width >= 960px) {
  .benefits__sidebar {
    flex: 0 1 360px;
  }
}

.sidebar__description {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  line-height: 160%;
  background-image: url("/icons/document.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
}

@media (width >= 960px) {
  .sidebar__description {
    padding-left: 40px;
  }
}

@media (width >= 1440px) {
  .sidebar__description {
    padding-left: 44px;
    font-size: 16px;
  }
}

.sidebar__description::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 9px;
  width: 1px;
  height: calc(100% - 31px);
  background-color: var(--positive-600, #189860);
}

.benefits__footer {
  flex: 1 1 auto;
  padding: 12px;
  font-size: 14px;
  line-height: 160%;
  color: var(--neutral-primary-100, #fff);
  background-color: var(--neutral-primary-900, #1a1a1b);
  border-radius: 6px;
}

@media (width >= 960px) {
  .benefits__footer {
    padding: 20px;
    border-radius: 8px;
  }
}

@media (width >= 1440px) {
  .benefits__footer {
    padding: 24px;
    font-size: 16px;
  }
}

.banner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 240px;
  border-radius: 10px;
}

.banner.benefits__banner {
  flex-grow: 1;
  margin-bottom: 24px;
  padding: 12px;
}

@media (width >= 960px) {
  .banner.benefits__banner {
    margin-bottom: 32px;
    padding: 20px;
  }
}

@media (width >= 1440px) {
  .banner.benefits__banner {
    margin-bottom: 48px;
    padding: 24px;
  }
}

@media (width >= 960px) {
  .benefits__banner {
    min-width: 360px;
  }
}

.banner > img {
  position: absolute;
  top: 0;
  left: 0;
  object-position: center;
}

.banner__title {
  z-index: 1;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
}

.benefits__banner .banner__title {
  max-width: 100%;
}

@media (width < 960px) {
  .banner__title {
    text-align: center;
  }
}

@media (width >= 960px) {
  .banner__title {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 600;
  }
}

@media (width >= 1440px) {
  .banner__title {
    font-size: 32px;
  }
}

.banner__text {
  z-index: 1;
  flex: 1 1 auto;
  max-width: 240px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width < 960px) {
  .banner__text {
    text-align: center;
  }

  .benefits__banner .banner__text {
    max-width: 100%;
  }
}

@media (width >= 960px) {
  .banner__text {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .banner__text {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.banner__button {
  z-index: 1;
  display: flex;
  column-gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 9px 12.5px;
  font-size: 16px;
  text-align: center;
  background-color: var(--neutral-primary-100);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .banner__button:hover {
    background-color: var(--neutral-primary-400);
  }
}

.banner__button > svg {
  width: 16px;
  height: 16px;
}

@font-face {
  font-family: swiper-icons;
  font-weight: 400;
  font-style: normal;
  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");
}

:root {
  --swiper-theme-color: #007aff;
}

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

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

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

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

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

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

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

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

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

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

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

.swiper-3d {
  perspective: 1200px;
}

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

.swiper-css-mode > .swiper-wrapper {
  scrollbar-width: none;
  overflow: auto;
  -ms-overflow-style: none;
}

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

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

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

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

.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);
}

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

.swiper-3d .swiper-slide-shadow {
  background: rgb(0 0 0 / 15%);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgb(0 0 0 / 50%),
    rgb(0 0 0 / 0%)
  );
}

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

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .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);
  }
}

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

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

.swiper-virtual.swiper-css-mode.swiper-horizontal
  .swiper-wrapper::after {
  width: var(--swiper-virtual-size);
  height: 1px;
}

.swiper-virtual.swiper-css-mode.swiper-vertical
  .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

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

.swiper-button-next,
.swiper-button-prev {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: var(--swiper-navigation-top-offset, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: none;
  cursor: auto;
  opacity: 0.35;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  pointer-events: none;
  cursor: auto;
  opacity: 0;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  transform-origin: center;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

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

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

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

.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  font-variant: initial;
  line-height: 1;
  text-transform: none !important;
  letter-spacing: 0;
}

.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
  content: "prev";
}

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

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  transform: translate3d(0, 0, 0);
  text-align: center;
  transition: 0.3s opacity;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

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

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

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  appearance: none;
  border: none;
  box-shadow: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  top: 50%;
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  transform: translate3d(0, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}

.swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}

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

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

.swiper-pagination-progressbar {
  position: absolute;
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgb(0 0 0 / 25%)
  );
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left top;
  transform: scale(0);
  width: 100%;
  height: 100%;
  background: var(
    --swiper-pagination-color,
    var(--swiper-theme-color)
  );
}

.swiper-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  top: 0;
  left: 0;
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

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

.swiper-cube .swiper-slide {
  pointer-events: none;
  z-index: 1;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

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

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

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

.swiper-flip .swiper-slide {
  pointer-events: none;
  z-index: 1;
  backface-visibility: hidden;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

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

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

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

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: content-box;
  inline-size: 100%;
  block-size: 100%;
}

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

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}

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

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

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

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

.project-type-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.thumb-slider {
  width: 100%;
}

@media (width >= 960px) {
  .thumb-slider {
    height: 322px;
    border-radius: 8px;
  }
}

@media (width >= 1440px) {
  .thumb-slider {
    height: 600px;
  }
}

@media (width >= 1600px) {
  .thumb-slider {
    height: 710px;
  }
}

.project-type-slide {
  position: relative;
  overflow: hidden;
  padding-bottom: 69%;
  border-radius: 6px;
}

@media (width >= 960px) {
  .project-type-slide {
    padding-bottom: 0;
    border-radius: 8px;
  }
}

.project-type-slide > img,
.project-type-slide > iframe {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.swiper-pagination.project-type-pagination {
  position: absolute;
  z-index: 3;
  top: auto;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  column-gap: 12px;
  max-width: fit-content;
}

@media (width >= 1440px) {
  .swiper-pagination.project-type-pagination {
    bottom: 32px;
  }
}

.project-type-pagination > .swiper-pagination-bullet {
  cursor: pointer;
  width: 8px;
  height: 8px;
  margin-inline: 0 !important;
  opacity: 0.4;
  border: 1px solid var(--neutral-primary-100);
  border-radius: 50%;
}

@media (width >= 960px) {
  .project-type-pagination > .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--neutral-primary-100);
  border: 1px solid var(--neutral-primary-100);
}

.project-type-button-prev,
.project-type-button-next {
  position: absolute;
  top: auto;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

@media (width >= 1440px) {
  .project-type-button-prev,
  .project-type-button-next {
    bottom: 12px;
  }
}

.project-type-button-prev {
  left: 8px;
}

@media (width >= 1440px) {
  .project-type-button-prev {
    left: 12px;
  }
}

.project-type-button-next {
  right: 8px;
  rotate: 180deg;
}

@media (width >= 1440px) {
  .project-type-button-next {
    right: 12px;
  }
}

.project-type-button-prev > svg,
.project-type-button-next > svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.project-type-button-prev::after,
.project-type-button-next::after {
  display: none;
}

.sidebar-project-type-slider {
  max-width: 100%;
  height: 100%;
}

.sidebar-project-type-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sidebar-project-type-prev::after,
.sidebar-project-type-next::after {
  display: none;
}

.project-type {
  padding-block: 20px;
}

@media (width >= 960px) {
  .project-type {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .project-type {
    padding-block: 60px;
  }
}

.project-type__container {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .project-type__container {
    display: flex;
    flex-direction: row;
    column-gap: 32px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .project-type__container {
    column-gap: 48px;
    padding-inline: 64px;
  }
}

.project-type__sidebar {
  position: relative;
  padding: 12px;
  padding-bottom: 0;
  background-image: linear-gradient(
    180deg,
    #dedede 0%,
    rgb(222 222 222 / 0%) 100%
  );
  border-radius: 10px;
}

@media (width >= 960px) {
  .project-type__sidebar {
    max-width: 400px;
    padding: 20px;
    padding-bottom: 0;
  }
}

@media (width >= 1440px) {
  .project-type__sidebar {
    padding: 24px;
    padding-bottom: 0;
  }
}

.project-type-controls {
  position: absolute;
  z-index: 3;
  top: 12px;
  inset-inline: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

@media (width >= 960px) {
  .project-type-controls {
    top: 20px;
    inset-inline: 20px;
  }
}

@media (width >= 1440px) {
  .project-type-controls {
    top: 24px;
    inset-inline: 24px;
  }
}

.project-type-controls__control {
  flex: 0 0 48px;
  padding: 14px 16px;
}

.project-type-controls__control > svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.project-type-controls__control:last-child > svg {
  rotate: 180deg;
}

.project-type__head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding-block: 9px;
}

@media (width >= 960px) {
  .project-type__head {
    margin-bottom: 24px;
    padding-block: 4.5px;
  }
}

.project-type__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 144%;
}

@media (width >= 960px) {
  .project-type__title {
    font-size: 24px;
  }
}

.project-type__stats {
  display: flex;
  flex: 1 1 auto;
  column-gap: 6px;
  margin-bottom: 10px;
}

@media (width >= 960px) {
  .project-type__stats {
    column-gap: 8px;
  }
}

.project-type-stat {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  row-gap: 6px;
  max-height: fit-content;
  padding: 10px;
  background-color: var(--neutral-primary-200);
  border-radius: 6px;
}

@media (width >= 960px) {
  .project-type-stat {
    row-gap: 8px;
    padding: 16px;
    border-radius: 8px;
  }
}

.project-type-stat__label {
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-500, #646464);
}

@media (width >= 1440px) {
  .project-type-stat__label {
    font-size: 14px;
  }
}

.project-type-stat__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 136%;
}

@media (width >= 1440px) {
  .project-type-stat__text {
    font-size: 16px;
  }
}

.project-type-stat__description {
  padding-bottom: 17px;
  font-size: 14px;
  line-height: 140%;
  color: var(--neutral-primary-500, #646464);
}

.project-type-stat__table {
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-500, #646464);
  border-top: 1px solid var(--neutral-primary-300);
}

@media (width >= 960px) {
  .project-type-stat__table {
    margin-bottom: 24px;
  }
}

@media (width >= 1440px) {
  .project-type-stat__table {
    font-size: 14px;
  }
}

.project-type-stat__table tr {
  border-bottom: 1px solid var(--neutral-primary-300);
}

.project-type-stat__table th {
  padding-block: 10px;
  text-align: left;
}

@media (width >= 960px) {
  .project-type-stat__table th {
    padding-block: 16px;
  }
}

.project-type-stat__table td {
  font-size: 14px;
  font-weight: 500;
  line-height: 136%;
  color: var(--neutral-primary-1000);
  text-align: right;
  white-space: nowrap;
}

@media (width >= 1440px) {
  .project-type-stat__table td {
    font-size: 16px;
  }
}

.project-type-review {
  padding: 16px;
  background-color: var(--neutral-primary-200);
  border: 1px solid var(--neutral-primary-300);
  border-radius: 6px;
}

@media (width >= 960px) {
  .project-type-review {
    padding: 20px;
    border-radius: 8px;
  }
}

.project-type-review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (width >= 960px) {
  .project-type-review__head {
    margin-bottom: 16px;
  }
}

.project-type-review__head-info {
  display: flex;
  column-gap: 6px;
  align-items: center;
}

@media (width >= 960px) {
  .project-type-review__head-info {
    column-gap: 8px;
  }
}

.project-type-review__head-info > img {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.project-type-review__head-name {
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 1440px) {
  .project-type-review__head-name {
    font-size: 16px;
  }
}

.project-type-review__head-rating {
  overflow: hidden;
  display: flex;
  column-gap: 3px;
  align-items: center;
  font-size: 10px;
  line-height: 140%;
}

@media (width >= 960px) {
  .project-type-review__head-rating {
    column-gap: 4px;
    font-size: 12px;
  }
}

.project-type-review__head-rating > svg {
  width: 12px;
  height: 12px;
}

.project-type-review__head-date {
  font-size: 10px;
  line-height: 140%;
  color: var(--neutral-primary-500, #646464);
}

@media (width >= 960px) {
  .project-type-review__head-date {
    font-size: 12px;
  }
}

.project-type-review__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-600, #444);
}

@media (width >= 1440px) {
  .project-type-review__text {
    font-size: 14px;
  }
}

.stocks {
  padding-block: 20px;
  color: var(--neutral-primary-100, #fff);
  background-color: var(--neutral-primary-1000, #141414);
}

@media (width >= 960px) {
  .stocks__container {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .stocks__container {
    padding-block: 40px;
  }
}

.stocks__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 20px;
}

@media (width >= 960px) {
  .stocks__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .stocks__container {
    padding-inline: 64px;
  }
}

.stocks__header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

@media (width >= 960px) {
  .stocks__header {
    margin-bottom: 32px;
  }
}

@media (width >= 1440px) {
  .stocks__header {
    margin-bottom: 40px;
  }
}

.stocks__title {
  flex: 1 1 auto;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .stocks__title {
    font-size: 40px;
    font-weight: 600;
  }
}

.stocks__cards {
  display: grid;
  gap: 24px;
}

@media (width >= 960px) {
  .stocks__cards {
    gap: 32px;
  }
}

@media (width >= 1440px) {
  .stocks__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

.stock-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  min-height: 349px;
  padding: 14px 10px 242px;
  background: linear-gradient(
    180deg,
    rgb(45 45 46 / 0%) 0%,
    #2d2d2e 100%
  );
  border: 1px solid var(--overlay-white-300, #dedede);
  border-radius: 10px;
}

@media (width >= 960px) {
  .stock-card {
    min-height: 520px;
    padding-block: 24px;
    border-radius: 16px;
  }
}

.stock-card::before {
  content: "";
  position: absolute;
  inset-block-start: -200px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  inline-size: 320px;
  block-size: 320px;
  opacity: 0.2;
  background-color: #097fca;
  filter: blur(120px);
  border-radius: 100%;
}

.stock-card::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  inline-size: 80px;
  block-size: 2px;
  background-color: #097fca;
}

.card_red::before,
.card_red::after {
  background-color: #fe5a4a;
}

.card_yellow::before,
.card_yellow::after {
  background-color: #ffc500;
}

.stock-card__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 248px;
  height: 214px;
}

@media (width >= 960px) {
  .stock-card__img {
    width: 100%;
    height: 41%;
  }
}

.stock-card__bottom {
  z-index: 0;
}

.stock-card__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

@media (width >= 960px) {
  .stock-card__title {
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 600;
  }
}

.stock-card__card-list {
  display: flex;
  flex-flow: nowrap column;
  gap: 4px;
}

.stock-card__card-item {
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 136%;
  text-align: center;
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 0%) 0%,
    rgb(255 255 255 / 10.2%) 50%,
    rgb(255 255 255 / 0%) 100%
  );
  backdrop-filter: blur(8px);
  border-radius: 4px;
}

@media (width >= 960px) {
  .stock-card__card-item {
    font-size: 16px;
    font-weight: 600;
  }
}

.stocks__tags {
  display: flex;
  column-gap: 6px;
}

.stocks__tag {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 11.5px 16px;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  white-space: nowrap;
  background-color: var(--overlay-white-200);
  border-radius: 8px;
  transition: background-color var(--default-transition);
}

@media (any-hover: hover) and (pointer: fine) {
  .stocks__tag:hover {
    background-color: transparent;
  }
}

@media (width >= 960px) {
  .stocks__tag {
    padding: 15.5px 20px;
  }
}

@media (width >= 1440px) {
  .stocks__tag {
    padding-block: 14px;
    font-size: 14px;
  }
}

.stocks__tag.active {
  background-color: transparent;
}

.stocks__tag.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid var(--neutral-primary-100);
  border-radius: inherit;
}

.company-reviews {
  padding-block: 20px;
  background: var(--neutral-primary-300, #dedede);
}

@media (width >= 960px) {
  .company-reviews {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .company-reviews {
    padding-block: 60px;
  }
}

.company-reviews__container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .company-reviews__container {
    flex-wrap: nowrap;
    gap: 32px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .company-reviews__container {
    gap: 48px;
    padding-inline: 64px;
  }
}

.company-reviews__body {
  flex: 1 1 auto;
}

.company-reviews__title {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
}

@media (width >= 960px) {
  .company-reviews__title {
    margin-bottom: 34px;
    font-size: 44px;
  }
}

@media (width >= 1440px) {
  .company-reviews__title {
    margin-bottom: 48px;
    font-size: 48px;
    line-height: 132%;
  }
}

.company-reviews__text {
  display: none;
}

.company-reviews__text.active {
  display: block;
}

.company-reviews__button.active {
  color: white;
  background-color: #141414;
}

.company-reviews__button_outlined {
  background-color: transparent;
  border: 1px solid #141414;
}

.company-reviews__buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 16px;
}

@media (width >= 960px) {
  .company-reviews__buttons {
    gap: 16px;
    margin-bottom: 24px;
  }
}

.company-reviews__button {
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-1000, #fff);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background-color: transparent;
  border: 1px solid var(--neutral-primary-400, #b2b2b2);
  border-radius: 8px;
}

@media (width >= 960px) {
  .company-reviews__button {
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

@media (width >= 1440px) {
  .company-reviews__button {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.company-reviews__text {
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 1440px) {
  .company-reviews__text {
    font-size: 16px;
  }
}

.company-reviews__sidebar {
  width: 100%;
  max-height: fit-content;
}

@media (width >= 960px) {
  .company-reviews__sidebar {
    flex-shrink: 0;
    width: 580px;
  }
}

.company-reviews__frame-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  width: 100%;
  height: 213px;
  border: 1px solid var(--overlay-white-200, #f9f9f9);
  border-radius: 10px;
}

@media (width >= 768px) {
  .company-reviews__frame-wrapper {
    min-height: 377px;
    border-radius: 16px;
  }
}

.company-reviews__frame {
  width: 100%;
  height: 100%;
}

.company-reviews__frame-icon {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 16px;
  height: 16px;
  opacity: 0.4;
}

@media (width >= 768px) {
  .company-reviews__frame-icon {
    right: 24px;
    width: 24px;
    height: 24px;
  }
}

.leave-feedback {
  padding-block: 20px;
}

@media (width >= 960px) {
  .leave-feedback {
    padding-block: 40px;
  }
}

@media (width >= 1440px) {
  .leave-feedback {
    padding-block: 60px;
  }
}

.leave-feedback__container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .leave-feedback__container {
    flex-wrap: nowrap;
    gap: 40px;
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .leave-feedback__container {
    gap: 80px;
    padding-inline: 64px;
  }
}

.leave-feedback__body {
  flex: 1 1 auto;
}

.leave-feedback__cards {
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
}

@media (width >= 960px) {
  .leave-feedback__cards {
    gap: 21px;
  }
}

@media (width >= 1440px) {
  .leave-feedback__cards {
    gap: 24px;
  }
}

.leave-feedback__card {
  padding: 12px;
  border: 1px solid var(--neutral-primary-300, #dedede);
  border-radius: 6px;
}

@media (width >= 960px) {
  .leave-feedback__card {
    padding: 20px;
  }
}

@media (width >= 1440px) {
  .leave-feedback__card {
    padding: 24px;
  }
}

.leave-feedback__card-header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 8px;
}

@media (width >= 1440px) {
  .leave-feedback__card-header {
    margin-bottom: 11px;
  }
}

.leave-feedback__card-title {
  font-weight: 500;
  line-height: 140%;
}

@media (width >= 1440px) {
  .leave-feedback__card-title {
    font-size: 20px;
  }
}

.leave-feedback__card-info {
  display: flex;
  gap: 10px;
}

@media (width >= 960px) {
  .leave-feedback__card-info {
    gap: 16px;
  }
}

.leave-feedback__card-date {
  font-size: 10px;
  color: var(--neutral-primary-600, #444);
}

@media (width >= 960px) {
  .leave-feedback__card-date {
    font-size: 12px;
  }
}

.leave-feedback__card-stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.leave-feedback__card-star-img {
  width: 12px;
  height: 12px;
}

.leave-feedback__card-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  font-size: 14px;
  line-height: 150%;
  color: var(--neutral-primary-600, #444);
  text-overflow: ellipsis;
}

@media (width >= 960px) {
  .leave-feedback__card-text {
    line-height: 160%;
  }
}

@media (width >= 1440px) {
  .leave-feedback__card-text {
    font-size: 16px;
  }
}

.leave-feedback-sidebar {
  width: 100%;
  max-height: fit-content;
  padding: 24px;
  background-color: var(--neutral-primary-900);
  border-radius: 10px;
}

@media (width >= 960px) {
  .leave-feedback-sidebar {
    flex-shrink: 0;
    width: 400px;
    padding: 32px;
  }
}

@media (width >= 1440px) {
  .leave-feedback-sidebar {
    padding: 48px;
  }
}

.leave-feedback-sidebar__head {
  display: flex;
  column-gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

@media (width >= 960px) {
  .leave-feedback-sidebar__head {
    margin-bottom: 24px;
  }
}

.leave-feedback-sidebar__head > svg {
  width: 24px;
  height: 24px;
}

@media (width >= 960px) {
  .leave-feedback-sidebar__head > svg {
    width: 32px;
    height: 32px;
  }
}

.leave-feedback-sidebar__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
  text-wrap: auto;
}

@media (width >= 960px) {
  .leave-feedback-sidebar__title {
    font-size: 28px;
  }
}

@media (width >= 1440px) {
  .leave-feedback-sidebar__title {
    font-size: 32px;
  }
}

.leave-feedback-sidebar__rating {
  display: flex;
  column-gap: 26.5px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

@media (width >= 960px) {
  .leave-feedback-sidebar__rating {
    margin-bottom: 24px;
  }
}

.leave-feedback-sidebar__rating-count {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: var(--neutral-primary-700, #383838);
}

@media (width >= 960px) {
  .leave-feedback-sidebar__rating-count {
    font-size: 28px;
  }
}

.leave-feedback-sidebar__rating-title {
  flex: 0 1 70px;
  font-size: 14px;
  line-height: normal;
  color: var(--neutral-primary-400, #b2b2b2);
}

.leave-feedback-sidebar__inputs {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 16px;
}

@media (width >= 960px) {
  .leave-feedback-sidebar__inputs {
    row-gap: 16px;
    margin-bottom: 24px;
  }
}

@media (width >= 1400px) {
  .leave-feedback-sidebar__inputs {
    margin-bottom: 30px;
  }
}

.leave-feedback-sidebar__inputs input {
  padding-block: 12.5px;
  font-size: 16px;
  line-height: normal;
  color: var(--neutral-primary-100, #fff);
  border-bottom: 1px solid var(--overlay-white-300);
}

.leave-feedback-sidebar__inputs input::placeholder {
  color: var(--neutral-primary-400, #b2b2b2);
}

.leave-feedback-sidebar__inputs textarea {
  height: 72px;
  width: 100%;
  padding-block: 8px;
  font-size: 16px;
  line-height: normal;
  color: var(--neutral-primary-100, #fff);
  background-color: transparent;
  border-bottom: 1px solid var(--overlay-white-300);
}

@media (width >= 960px) {
  .leave-feedback-sidebar__inputs textarea {
    height: 80px;
    padding-block: 12px;
  }
}

.leave-feedback-sidebar__inputs textarea::placeholder {
  color: var(--neutral-primary-400, #b2b2b2);
}

.leave-feedback-sidebar__bottom {
}

.leave-feedback-sidebar__bottom span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 140%;
  color: var(--neutral-primary-400, #b2b2b2);
}

@media (width >= 960px) {
  .leave-feedback-sidebar__bottom > span {
    margin-bottom: 16px;
  }
}

.leave-feedback-sidebar__button {
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13.5px;
  font-size: 18px;
  text-align: center;
  background-color: var(--neutral-primary-100);
  border-radius: 8px;
}

.leave-feedback-sidebar__button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.star-rating {
  display: flex;
  gap: 8px;
  align-items: center;
}

.star-input {
  display: none;
}

.star-label {
  cursor: pointer;
  transition: transform 0.2s;
}

.star-label:hover {
  transform: scale(1.1);
}

.star-label svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.star-label.active svg path {
  fill: #ffd700;
  stroke: #ffd700;
}

.toast {
  position: fixed;
  z-index: 5;
  right: 20px;
  bottom: 20px;
  overflow: hidden;
  display: none;
  column-gap: 20px;
  align-items: center;
  width: 90%;
  max-height: fit-content;
  padding: 20px;
  background-color: var(--neutral-primary-800);
  border-radius: 8px;
  box-shadow:
    0 16px 24px 0 rgb(0 0 0 / 14%),
    0 6px 30px 0 rgb(0 0 0 / 12%),
    0 8px 10px 0 rgb(0 0 0 / 20%);
}

.toast.active {
  display: flex;
}

@media (width > 768px) {
  .toast {
    top: 20px;
    width: 100%;
    max-width: 343px;
  }
}

.toast > svg {
  position: absolute;
  left: 0;
  height: 100%;
}

.count__status {
  padding: 4px;
  background: var(--overlay-white-200, rgb(255 255 255 / 10%));
  border-radius: 50%;
}

.count__status > svg {
  width: 24px;
  height: 24px;
}

.toast__body {
  flex-grow: 1;
}

.toast__title {
  color: var(--neutral-primary-100);
}

.toast__description {
  color: #c8c5c5;
}

.toast__close {
  padding: 10px;
}

.toast__close > svg {
  width: 12px;
  height: 12px;
}
.work-for-your {
  padding-block: 20px;
}

@media (width >= 960px) {
  .work-for-your {
    padding-block: 32px;
  }
}

@media (width >= 1440px) {
  .work-for-your {
    padding-block: 60px;
  }
}

.work-for-your__container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 960px) {
  .work-for-your__container {
    padding-inline: 32px;
  }
}

@media (width >= 1440px) {
  .work-for-your__container {
    padding-inline: 64px;
  }
}

.work-for-your__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

@media (width >= 960px) {
  .work-for-your__title {
    margin-bottom: 16px;
    font-size: 36px;
  }
}

@media (width >= 1440px) {
  .work-for-your__title {
    margin-bottom: 24px;
    font-size: 40px;
  }
}

.work-for-your__text {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 160%;
}

@media (width >= 960px) {
  .work-for-your__text {
    margin-bottom: 32px;
  }
}

@media (width >= 1440px) {
  .work-for-your__text {
    margin-bottom: 48px;
    font-size: 16px;
  }
}

.work-for-your__cards {
  display: grid;
  row-gap: 16px;
}

@media (width >= 960px) {
  .work-for-your__cards {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 24px;
  }
}

.work-for-your-card {
  overflow: hidden;
  display: flex;
  column-gap: 12px;
  min-height: 475px;
  padding: 12px;
  background: var(--neutral-primary-1000, #141414);
  border-radius: 10px;
}

@media (width >= 960px) {
  .work-for-your-card:not(.hide) {
    cursor: default;
    flex: 0 0 300px;
    flex-direction: column;
    row-gap: 16px;
    width: 300px;
    padding: 20px;
    border-radius: 16px;
  }

  .work-for-your-card.hide {
    cursor: pointer;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    row-gap: 16px;
    padding: 20px 8px;
    background-color: transparent;
    border: 1px solid var(--neutral-primary-300, #dedede);
    border-radius: 16px;
  }
}

@media (width >= 1440px) {
  .work-for-your-card:not(.hide) {
    flex: 0 0 320px;
    row-gap: 24px;
    width: 320px;
    padding: 24px;
  }

  .work-for-your-card.hide {
    row-gap: 16px;
    padding: 20px 8px;
    background-color: transparent;
    border: 1px solid var(--neutral-primary-300, #dedede);
    border-radius: 16px;
  }
}

.work-for-your-card__image {
  position: relative;
  overflow: hidden;
  flex: 1 1 135px;
  border-radius: 6px;
}

@media (width >= 960px) {
  .work-for-your-card__image {
    flex: none;
    height: 160px;
  }

  .work-for-your-card.hide .work-for-your-card__image {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    margin-inline: auto;
    border-radius: 50%;
  }
}

.work-for-your-card__image > img {
  position: absolute;
  inset: 0;
  object-position: center;
}

.work-for-your-card__body {
  flex: 1 1 192px;
}

@media (width >= 960px) {
  .work-for-your-card:not(.hide) .work-for-your-card__body {
    display: flex;
    flex-direction: column;
  }

  .work-for-your-card.hide .work-for-your-card__body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}

.work-for-your-card__title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: var(--neutral-primary-100, #fff);
}

@media (width >= 960px) {
  .work-for-your-card__title {
    flex: 1 1 auto;
    font-size: 28px;
  }

  .work-for-your-card.hide .work-for-your-card__title {
    max-width: fit-content;
    margin-bottom: 0;
    writing-mode: sideways-lr;
    color: var(--neutral-primary-1000);
    text-orientation: mixed;
  }
}

@media (width >= 1440px) {
  .work-for-your-card__title {
    font-size: 32px;
  }
}

.work-for-your-card__text {
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  color: var(--neutral-primary-100, #fff);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (width >= 960px) {
  .work-for-your-card__text {
    font-size: 12px;
    letter-spacing: 0.48px;
  }

  .work-for-your-card.hide .work-for-your-card__text {
    width: 0;
    height: 0;
  }
}

@media (width >= 1440px) {
  .work-for-your-card__text {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
