:root {
  color-scheme: light only;
  --white: #ffffff;
  --gray: #DADFE8;
  --light-gray: #B6B6B6;
  --light-blue: #EBEEF4;
  --lighter-blue: #E5F7FA;
  --blue: #375790;
  --blue_hover: #1D3662;
  --blue2: #00B3D0;
  --blue-arr: #8095B8;
  --turquoise_hover: #0E8A9E;
  --text: #3E3D40;
  --grey-text: #6B6C6C;
  --grey-blue: #525969;
  --pink: #FF7481;
  --Pink_hover: #C65761;
  --wa: #31D059;
  --red: #EB032A;
  --violet: #680177;
  --yellow: #FFB401;
  --padding: 10px;
  --font-14: 14px;
  --mb-40-80: 40px;
  --mb-30-40: 30px;
  --mb-20-40: 20px;
  --mb-40-60: 40px;
}

.light-blocks {
  --blue: var(--blue2);
  --blue_hover: var(--turquoise_hover);
}
.light-blocks .about__h2 span {
  color: #375790;
}

@media (min-width: 768px) {
  :root {
    --mb-40-80: 60px;
    --mb-30-40: 34px;
    --mb-20-40: 30px;
    --mb-40-60: 50px;
  }
}
@media (min-width: 1024px) {
  :root {
    --mb-40-80: 80px;
    --mb-30-40: 40px;
    --mb-20-40: 40px;
    --mb-40-60: 60px;
  }
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  min-height: 100vh;
  box-sizing: border-box;
  font-size: var(--font-14);
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background-color: var(--white);
}

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

body {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Rubik", "Roboto", sans-serif;
}

main {
  flex-grow: 1;
}

img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.visually-hidden:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1540px;
  padding-inline: var(--padding);
  margin: 0 auto;
}

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

.h2-wrapper__h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}
.h2-wrapper__h2 span {
  color: var(--blue);
  font-weight: 700;
}

.h2-wrapper__text {
  margin: 0;
  font-size: 14px;
}

.h2-wrapper__top {
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 40px;
}

.list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 34 30'%3E%3Crect width='30' height='30' fill='%2300B3D0' rx='10'/%3E%3Cpath fill='%23375790' d='M33.046.545a1.334 1.334 0 0 0-1.882.125L16.966 16.896 10.473 9.97a1.335 1.335 0 0 0-1.946 1.825l7.5 8c.254.269.605.42.974.42h.023a1.33 1.33 0 0 0 .981-.454L33.172 2.426a1.334 1.334 0 0 0-.126-1.881Z'/%3E%3C/svg%3E%0A");
}

@media (min-width: 768px) {
  .h2-wrapper__h2 {
    font-size: 28px;
  }
  .h2-wrapper__text {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .h2-wrapper__h2 {
    font-size: 30px;
  }
  .h2-wrapper {
    gap: 15px;
  }
  .h2-wrapper__text {
    font-size: 18px;
  }
  .h2-wrapper__top {
    font-size: 18px;
  }
}
.overlay {
  width: 100%;
  height: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.6;
  background: var(--black, #231F20);
  transition: height 0.6s;
  top: 0;
  height: 100%;
  z-index: 10;
}

@media (max-width: 1023px) {
  .main-img {
    display: none;
  }
}
@media (min-width: 1024px) {
  main {
    overflow: hidden;
  }
  .main-img {
    position: absolute;
    top: 1042px;
    left: -193px;
    width: 2359px;
    height: 8156px;
    z-index: -1;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
input {
  font-family: inherit;
  font-size: inherit;
}

.label-check {
  position: relative;
}
.label-check:hover .label-check__name {
  border-color: var(--blue2);
}

.label-check__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.label-check__input:checked + .label-check__name {
  border-color: var(--blue2);
}
.label-check__input:checked + .label-check__name:before {
  background-color: var(--blue2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 28 23'%3E%3Cpath fill='%23fff' d='M27.496.549a1.474 1.474 0 0 0-2.08.138L9.727 18.62l-7.177-7.656a1.475 1.475 0 0 0-2.15 2.018l8.289 8.842c.28.296.667.464 1.076.464h.025a1.469 1.469 0 0 0 1.084-.503L27.636 2.628a1.474 1.474 0 0 0-.14-2.08Z'/%3E%3C/svg%3E");
}

.label-check__name {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 5px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.2;
  border: 2px solid var(--white);
  background: #FFF;
  transition: border-color 0.3s;
}
.label-check__name::before {
  content: "";
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 50%;
  background-size: 19px 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--light-blue);
}

.label {
  position: relative;
  display: flex;
  flex-direction: column;
}

.label__error {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 10px;
  color: var(--red);
}

.label__input {
  padding: 11px 17px;
  margin: 0;
  border-radius: 15px;
  background-color: var(--light-blue);
  border: 2px solid var(--light-blue);
  transition: border-color 0.3s;
}
.label__input:hover {
  border-color: var(--blue2);
}
.label__input:focus, .label__input:focus-visible, .label__input:focus-within {
  outline: 0;
  border-color: var(--blue2);
}
.label__input:-moz-placeholder-shown + .label__name {
  transform: translateY(-50%);
}
.label__input:placeholder-shown + .label__name {
  transform: translateY(-50%);
}

.label__name {
  position: absolute;
  top: 50%;
  left: 20px;
  color: var(--light-gray);
  font-size: 14px;
  line-height: 1.2;
  transform: translateY(-110%);
}

@media (min-width: 768px) {
  .label-check__name {
    font-size: 16px;
  }
  .label-check__name:before {
    width: 40px;
    height: 40px;
    border-radius: 15px;
  }
  .label__input {
    padding: 21px 19px 11px 18px;
    font-size: 16px;
  }
}
/**
 * Swiper 11.2.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 3, 2025
 */
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-3d {
  perspective: 1200px;
}

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

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

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

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

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

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

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

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.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";
}

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

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

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

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

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

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms 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: 200ms transform, 200ms left;
}

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

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

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

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

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

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

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

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

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

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

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

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

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

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

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

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

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

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

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

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

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

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

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.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 {
  z-index: 0;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.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 {
  z-index: 0;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

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

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

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
.desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-top .gslide-media,
.desc-bottom .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important;
}

/*Skin */
.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/
.gfadeIn {
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  animation: gzoomOut 0.5s ease;
}
@keyframes lightboxLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
  .glightbox-clean .gnext,
  .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: 0;
  font-family: inherit;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn__img {
  height: 24px;
  width: auto;
}

.btn--emodji {
  padding: 8px 20px;
  border-radius: 10px;
}

.btn.opened .btn__closed {
  display: none;
}
.btn.opened .btn__opened {
  display: block;
}

.btn__svg {
  display: flex;
  align-items: center;
}

.btn__opened {
  display: none;
}

.btn--normal {
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 20px 5px 5px;
  border-radius: 20px;
}

.btn.bg-blue {
  color: var(--white);
}
.btn.bg-blue .btn__ico svg {
  color: var(--blue);
}
.btn.bg-blue:hover {
  background-color: var(--blue_hover, #1D3662);
}
.btn.bg-blue:hover .btn__ico svg {
  color: var(--blue_hover, #1D3662);
}

.btn__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 5px;
  background-color: var(--white);
  border-radius: 15px;
  transition: color 0.3s;
}

.btn--full {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
}

.btn.bg-pink {
  color: var(--white);
}
.btn.bg-pink .btn__ico svg {
  color: var(--pink);
}
.btn.bg-pink:hover {
  background-color: var(--Pink_hover);
}
.btn.bg-pink:hover .btn__ico svg {
  color: var(--Pink_hover);
}

.btn__present {
  position: absolute;
  top: -17px;
  left: -12px;
  width: 52px;
  height: 58px;
}

.btn--pink {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 3px;
  color: var(--red);
  border-radius: 10px;
  background: rgba(255, 116, 129, 0.1);
}

.btn--grey {
  color: var(--light-gray);
  background-color: transparent;
  border: 1px solid var(--light-gray);
}
.btn--grey .btn__ico {
  color: var(--white);
  background-color: var(--light-gray);
}
.btn--grey:hover {
  color: var(--white);
  background-color: var(--light-gray);
}
.btn--grey:hover .btn__ico {
  color: var(--light-gray);
  background-color: var(--white);
}

.btn--small {
  padding: 2px 6px 2px 3px;
  gap: 5px;
  border-radius: 20px;
}
.btn--small .btn__ico {
  padding: 4px;
}

.btn.bg-blue2 {
  color: var(--white);
  font-weight: 700;
}
.btn.bg-blue2:hover {
  background-color: var(--turquoise_hover, #0E8A9E);
}

.btn__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  color: var(--blue2);
  border-radius: 50%;
  background-color: var(--white);
  aspect-ratio: 1;
}
.btn__chevron svg {
  display: block;
}

.btn--gray {
  background-color: var(--gray);
}
.btn--gray:hover {
  background-color: var(--blue2);
}

.btn__close {
  display: none;
}

.btn.opened .btn__menu {
  display: none;
}
.btn.opened .btn__close {
  display: block;
}

.btn--arr {
  justify-content: center;
  width: 30px;
  height: 30px;
  z-index: 1;
  color: var(--white);
  border-radius: 50%;
  background-color: var(--blue-arr);
}
.btn--arr:hover {
  background-color: var(--blue);
}
.btn--arr:disabled {
  color: var(--light-gray);
  background-color: var(--gray);
}
.btn--arr:disabled:hover {
  background-color: var(--gray);
  cursor: initial;
}

@media (max-width: 768px) {
  .btn__text span {
    display: none;
  }
}
@media (min-width: 768px) {
  .btn--normal {
    font-size: 16px;
  }
  .btn__ico {
    padding: 7px;
  }
  .btn--normal {
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .btn--normal {
    font-size: 18px;
  }
  .btn__ico {
    padding: 10px;
  }
}
.tels {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tels__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.3s;
}

.tels__tel {
  display: flex;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.tels__contact--wa {
  color: var(--wa);
}

.tels__contact--tg {
  color: var(--blue2);
}

@media (min-width: 1024px) {
  .tels__tel {
    font-size: 18px;
  }
  .tels__contact {
    width: 15px;
    height: 15px;
  }
}
.contact-block__name {
  font-size: 12px;
}

.contact-block__remark {
  font-size: 12px;
}

.contact-block .tels__tel:hover {
  color: var(--blue2);
}

.contact-block .tels__contact:hover {
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .contact-block__name {
    font-size: 14px;
  }
  .contact-block__remark {
    font-size: 14px;
  }
}
.bg-blue {
  background-color: var(--blue);
}

.bg-pink {
  background-color: var(--pink);
}

.bg-white {
  background-color: var(--white);
}

.bg-light-blue {
  background-color: var(--light-blue);
}

.bg-blue2 {
  background-color: var(--blue2);
}

.btn-center {
  display: flex;
  justify-content: center;
}

.mb-40-50 {
  margin-bottom: 40px;
}

.mb-40-80 {
  margin-bottom: var(--mb-40-80);
}

@media (min-width: 1024px) {
  .mb-40-50 {
    margin-bottom: 50px;
  }
}
.top-info__it {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--light-gray);
  text-decoration: none;
}

@media (hover: hover) {
  a.top-info__it {
    transition: color 0.3s;
  }
  a.top-info__it:hover {
    color: var(--text);
  }
}
.top-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-info--menu {
  flex-direction: column;
  align-items: flex-start;
}
.top-info--menu .top-info__it span {
  display: flex;
}
.top-info--menu div.top-info__it {
  display: flex;
}

@media (max-width: 768px) {
  .top-info__it span {
    display: none;
  }
  div.top-info__it {
    display: none;
  }
}
@media (min-width: 1400px) {
  .top-info {
    gap: 87px;
  }
}
.metros__it {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--light-gray);
  white-space: nowrap;
}

.metros__it--red svg {
  color: var(--red);
}

.metros__it--violet svg {
  color: var(--violet);
}

.metros {
  display: none;
}

@media (min-width: 1240px) {
  .metros {
    display: flex;
    align-items: center;
    gap: 5px;
  }
}
@media (min-width: 1300px) {
  .metros {
    gap: 20px;
  }
}
.header-top__metros-name {
  font-weight: 700;
  font-size: 12px;
  color: var(--light-gray);
}

.header-top__metros {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

@media (min-width: 800px) {
  .header-top__metros-name {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .header-top__metros {
    gap: 40px;
  }
}
.menu__link {
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.menu__list {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu__contacts .tels__tel {
  color: var(--text);
}

@media (min-width: 768px) {
  .menu__link {
    font-size: 16px;
  }
}
@media (max-width: 1400px) {
  .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    z-index: 10;
    padding-inline: var(--padding);
    padding-top: 20px;
    padding-bottom: 80px;
    min-height: calc(100dvh - 100px);
    width: 100%;
    max-width: 500px;
    background-color: var(--white);
    overflow-y: auto;
  }
  .menu__list {
    flex-direction: column;
    background-color: var(--white);
  }
  .menu__link {
    padding-block: 5px;
  }
}
@media (hover: hover) {
  .menu__link {
    transition: color 0.3s;
  }
  .menu__link:hover {
    color: var(--blue);
  }
}
@media (min-width: 1400px) {
  .menu__list {
    align-items: center;
  }
  .menu__info {
    display: none;
  }
}
@media (min-width: 1440px) {
  .menu__list {
    gap: 30px;
  }
}
.header-center {
  position: relative;
}

.header-center__logo {
  flex-shrink: 0;
}
@media (max-width: 1399px) {
  .header-center__logo {
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .header-center__logo {
    width: 96px;
    height: 20px;
  }
}

.header-center__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 7px 7px 12px;
  border-radius: 15px;
  background-color: var(--light-blue);
}

.header-center__contacts {
  display: none;
}
.header-center__contacts .tels__contact--wa,
.header-center__contacts .tels__contact--tg {
  color: var(--blue);
}
.header-center__contacts .tels__tel {
  color: var(--text);
}

@media (max-width: 350px) {
  .header-center__sign .btn__text {
    display: none;
  }
}
@media (max-width: 767px) {
  .header-center__sign {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .header-center__tel-btn {
    display: none;
  }
  .header-center__contacts {
    display: flex;
  }
  .header-center__container {
    border-radius: 24px;
  }
}
@media (min-width: 800px) {
  .header-center__contacts .tels__tel {
    font-size: 20px;
  }
}
@media (max-width: 1400px) {
  .header-center__menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translate(-200svw, 0);
    transition: transform 0.3s;
  }
  .header-center__menu.opened {
    transform: translate(0, 0);
  }
}
@media (min-width: 1400px) {
  .header-center__toggler {
    display: none;
  }
}
.header {
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  gap: 17px;
  margin-bottom: 20px;
}

.promo-it__inside {
  display: grid;
  -moz-column-gap: 15px;
       column-gap: 15px;
  grid-template-columns: minmax(0, 1fr) 98px;
  padding: 14px 14px 14px 20px;
  background-color: var(--white);
  border-radius: 20px;
}

.promo-it {
  padding-bottom: 26px;
}

.promo-it__name {
  font-size: 16px;
  line-height: 1.4;
  text-transform: uppercase;
}

.promo-it__price-new {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}
.promo-it__price-new span {
  font-size: 16px;
}

.promo-it__price {
  display: flex;
  align-items: last baseline;
  flex-wrap: wrap;
  gap: 4px;
}

.promo-it__offer {
  flex-basis: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.promo-it__price-old {
  font-size: 12px;
  color: var(--light-gray);
  text-decoration: line-through;
}

.promo-it__remark {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 10px;
  background-color: var(--light-blue);
}
.promo-it__remark img {
  height: 14px;
  width: auto;
}

.promo-it__price {
  margin-bottom: 14px;
}

.promo-it__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.promo-it__img {
  margin-bottom: -26px;
}

.promo-it__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promo-till {
  padding: 3px 8px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--text);
  border-radius: 10px;
  white-space: nowrap;
}

@media (max-width: 1023px) {
  .promo-it__name {
    padding-right: 30px;
  }
  .promo-it__right .promo-till {
    position: relative;
    white-space: nowrap;
    right: 31px;
  }
  .promo-it__remark {
    white-space: nowrap;
  }
}
@media (min-width: 1024px) {
  .promo-till {
    font-size: 14px;
    padding: 7px 13px;
  }
  .promo-it__inside {
    grid-template-columns: minmax(0, 1fr) 160px;
  }
  .promo-it__name {
    font-size: 18px;
  }
  .promo-it__price-new {
    font-size: 30px;
  }
  .promo-it__price-new span {
    font-size: 18px;
  }
  .promo-it__offer {
    font-size: 14px;
  }
  .promo-it__remark {
    font-size: 14px;
  }
  .promo-it__price-old {
    font-size: 14px;
  }
  .promo-it__right {
    justify-content: space-between;
  }
}
.promos {
  position: relative;
}
.promos .btn--arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.promos .btn--left {
  left: 0;
  transform: translate(-50%, -50%) scale(-1, 1);
}
.promos .btn--right {
  right: 0;
  transform: translate(50%, -50%);
}

.promos__wrapper {
  display: flex;
}

.promos__it {
  flex-shrink: 0;
  flex-basis: 100%;
}

.promos__slider {
  overflow: hidden;
}

.svg {
  position: absolute;
  width: 0;
  height: 0;
}

.count-block {
  padding: 20px;
  width: 100%;
  color: var(--white);
  -webkit-clip-path: url(#bottom-corner-path);
          clip-path: url(#bottom-corner-path);
  border-radius: 24px;
}

.count-block__name {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.count-block__btm {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.count-list {
  margin: 0;
  padding: 0;
  font-size: 12px;
  list-style: none;
}
.count-list li {
  position: relative;
  padding-left: 38px;
}
.count-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='37' height='30' viewBox='0 0 37 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='30' height='30' rx='10' fill='%2300B3D0'/%3E%3Cpath d='M36.4962 0.548604C35.8846 0.0136601 34.9533 0.0740887 34.4168 0.687125L18.7253 18.6201L11.5486 10.9644C10.9916 10.372 10.0602 10.3425 9.4663 10.8981C8.8724 11.4537 8.84145 12.388 9.39849 12.9819L17.6878 21.8238C17.9678 22.12 18.3554 22.288 18.7636 22.288H18.7887C19.2057 22.2821 19.5977 22.0994 19.8733 21.7855L36.6362 2.62795C37.1711 2.01492 37.1092 1.08502 36.4962 0.548604Z' fill='white'/%3E%3C/svg%3E");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.count-block__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 23px;
}

@media (min-width: 768px) {
  .count-block__list {
    flex-direction: row;
  }
  .count-block__btm {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .count-block__name {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .count-block__btm {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (min-width: 1024px) {
  .count-block__name {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .count-block__btm {
    gap: 20px;
  }
  .count-list {
    font-size: 14px;
    min-height: 40px;
  }
  .count-list li {
    padding-left: 42px;
    min-height: 40px;
  }
  .count-list li:before {
    top: 5px;
    width: 37px;
    height: 30px;
  }
}
.days-off__text {
  font-size: 16px;
  line-height: 1.4;
}

.js-ny-top {
  position: relative;
  transition: height 0.5s;
}

.days-off {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 9px 30px 9px 16px;
  color: var(--white);
  border-radius: 24px;
  background: #AE5249;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
  transform: translateX(-200svw);
  transition: transform 0.3s;
}

.days-off.moved {
  transform: translateX(0);
}

.days-off__close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--white);
}

@media (min-width: 768px) {
  .days-off {
    background-position: center;
  }
}
@media (min-width: 1024px) {
  .days-off__close {
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
  }
  .days-off {
    padding-right: 55px;
  }
}
.top-block {
  overflow: hidden;
}

.top-block__container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  padding: 10px 10px 30px 10px;
  background-image: url("../img/top.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
}

.top-block__h1 {
  margin: 0;
  font-size: var(--mb-30-40);
}
.top-block__h1 span {
  font-weight: 700;
  color: var(--blue);
}

.top-block__text {
  font-size: 18px;
  margin: 0;
}

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

.top-block__articles {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

@media (max-width: 767px) {
  .top-block__promos {
    margin-bottom: -24px;
  }
  .top-block__h1 {
    text-align: center;
  }
  .top-block__text {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top-block__articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .top-block {
    margin-bottom: 40px;
  }
  .top-block__img {
    order: -1;
    overflow: hidden;
  }
}
@media (min-width: 1200px) {
  .top-block {
    margin-bottom: 40px;
  }
  .top-block__articles {
    padding-top: 30px;
    max-width: 535px;
  }
  .top-block__container {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    padding: 30px 0 40px 40px;
    border-radius: 24px;
  }
  .top-block__top {
    grid-column: 1/-1;
  }
  .top-block__articles {
    grid-column: 1/6;
  }
  .top-block__promos {
    margin-bottom: -24px;
  }
  .top-block__img {
    display: flex;
    align-items: flex-end;
    grid-column: 6/-1;
    justify-content: flex-end;
  }
  .top-block__img img {
    margin-bottom: -80px;
    height: calc(100% + 60px);
    width: auto;
    max-width: calc(100% + 54px);
    -o-object-position: bottom right;
       object-position: bottom right;
  }
}
@media (min-width: 1540px) {
  .top-block__img img {
    max-width: calc(100% + 100px);
  }
}
.second-blue {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.second-blue__img {
  position: absolute;
  bottom: 13px;
  right: 11px;
  width: 119px;
  height: 90px;
  z-index: 1;
}

.second-blue__text {
  position: relative;
  padding-left: 50px;
  max-width: 487px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.second-blue__text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  background-size: 4px 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 6 23'%3E%3Cpath fill='%23fff' d='M.78 22.55c-.22 0-.4-.07-.54-.21a.731.731 0 0 1-.21-.54V7.7c0-.22.07-.4.21-.54.14-.14.32-.21.54-.21h3.54c.2 0 .37.07.51.21.16.14.24.32.24.54v14.1c0 .22-.08.4-.24.54-.14.14-.31.21-.51.21H.78ZM.75 4.7c-.22 0-.4-.07-.54-.21A.731.731 0 0 1 0 3.95V1.28c0-.22.07-.4.21-.54C.35.58.53.5.75.5h3.57c.22 0 .4.08.54.24.16.14.24.32.24.54v2.67c0 .22-.08.4-.24.54-.14.14-.32.21-.54.21H.75Z'/%3E%3C/svg%3E%0A");
  transform: translateY(-50%);
}

.second-blue__inside {
  padding-top: 10px;
  padding-bottom: 105px;
  padding-left: 10px;
  padding-right: 30px;
  -webkit-clip-path: url(#bottom-corner-path2);
          clip-path: url(#bottom-corner-path2);
}

.second-blue__flags {
  position: absolute;
  bottom: 0;
  right: 156px;
  width: 118px;
  height: 63px;
}

@media (min-width: 768px) {
  .second-blue__img {
    width: 253px;
    height: 192px;
  }
  .second-blue__inside {
    padding-top: 36px;
    padding-bottom: 110px;
    padding-left: 47px;
    padding-right: 220px;
  }
  .second-blue__flags {
    left: 142px;
    width: 142px;
    height: 76px;
  }
}
@media (min-width: 1024px) {
  .second-blue {
    z-index: 2;
    padding-top: 66px;
    padding-right: 10px;
  }
  .second-blue__text {
    padding-left: 76px;
    font-size: 18px;
  }
  .second-blue__img {
    top: 0;
    right: 0;
    bottom: auto;
  }
  .second-blue__text::before {
    width: 46px;
    height: 46px;
    background-size: 5px 22px;
  }
}
@media (min-width: 1200px) {
  .second-blue {
    padding-right: 44px;
  }
}
.second-white__inside {
  position: relative;
  padding-left: 36px;
}
.second-white__inside::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 25px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 34 30'%3E%3Crect width='30' height='30' fill='%2300B3D0' rx='10'/%3E%3Cpath fill='%23375790' d='M33.046.545a1.334 1.334 0 0 0-1.882.125L16.966 16.896 10.473 9.97a1.335 1.335 0 0 0-1.946 1.825l7.5 8c.254.269.605.42.974.42h.023a1.33 1.33 0 0 0 .981-.454L33.172 2.426a1.334 1.334 0 0 0-.126-1.881Z'/%3E%3C/svg%3E%0A");
}

.second-white {
  position: relative;
  padding: 10px 10px 43px 10px;
}
.second-white::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--white);
  -webkit-clip-path: url(#white-path1);
          clip-path: url(#white-path1);
}
.second-white:first-child::before {
  transform: scale(-1, 1);
}

.second-white__name {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.second-white__text {
  font-size: 12px;
}

@media (min-width: 768px) {
  .second-white {
    padding: 20px 45px 30px 30px;
  }
  .second-white:first-child {
    padding-bottom: 55px;
  }
  .second-white__name {
    font-size: 16px;
  }
  .second-white__text {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .second-white {
    grid-column: span 4;
    grid-row: 1;
    max-width: 457px;
  }
  .second-white.right::before {
    -webkit-clip-path: url(#bottom-corner-path4);
            clip-path: url(#bottom-corner-path4);
  }
  .second-white:nth-of-type(1) {
    grid-column: 1/5;
    margin-top: -80px;
  }
  .second-white:nth-of-type(2) {
    grid-column: 4/9;
    justify-self: center;
    margin-top: -15px;
    padding: 30px 60px 40px 40px;
    max-width: 477px;
  }
  .second-white:nth-of-type(2)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 16px);
    height: calc(100% + 12px);
    transform: translate(-50%, -50%);
    background-color: var(--light-blue);
    -webkit-clip-path: url(#bottom-corner-path4);
            clip-path: url(#bottom-corner-path4);
  }
  .second-white:nth-of-type(2)::before {
    z-index: 1;
  }
  .second-white:nth-of-type(3) {
    grid-column: 9/-1;
    justify-self: flex-end;
    margin-top: -60px;
    z-index: 2;
  }
  .second-white .second-white__inside {
    z-index: 2;
  }
  .second-white__inside {
    padding-left: 49px;
  }
  .second-white__inside::before {
    top: 10px;
    width: 33px;
    height: 30px;
  }
  .second-white__name {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .second-white__text {
    font-size: 18px;
  }
}
@media (min-width: 1024px) and (max-width: 1500px) {
  .second-white:nth-of-type(1) {
    padding-right: 100px;
  }
}
.second-block__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 60px 10px 10px 10px;
  -webkit-clip-path: url(#second-block-path);
          clip-path: url(#second-block-path);
  border-radius: 24px;
}

.second-block__name {
  font-size: 24px;
  margin-bottom: 30px;
}
.second-block__name span {
  font-weight: 700;
  color: var(--blue);
}

.second-block__inside {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-column: 1/-1;
  gap: 20px;
}

.second-block {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .second-block__container {
    -webkit-clip-path: url(#top-corner-path);
            clip-path: url(#top-corner-path);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .second-block__inside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1023px) {
  .second-block__blue {
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .second-block__inside {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: flex-start;
    gap: 0px;
  }
  .second-block__container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding: 60px 40px;
  }
  .second-block__name {
    grid-column: 1/6;
    font-size: 30px;
  }
  .second-block__blue {
    grid-column: 6/-1;
  }
}
.quote-block__inside {
  position: relative;
  display: grid;
}
.quote-block__inside::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 137px;
  height: 135px;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 49 47'%3E%3Cpath fill='%23ffffff' d='M38.227.658A1.182 1.182 0 0 0 37.15 0c-.43 0-.862.22-1.077.658-2.586 5.923-6.895 8.335-10.988 10.748-.431.22-.646.658-.646 1.097 0 .439.215.878.646 1.097 5.817 2.632 8.402 7.239 10.341 10.31l.216.438c.215.439.646.658 1.077.658.431 0 .862-.22 1.078-.658 2.585-5.045 6.679-8.116 10.557-10.31.43-.219.646-.657.646-1.096 0-.439-.215-.878-.646-1.097-4.74-2.852-7.757-5.922-10.127-11.187Z'/%3E%3Cpath fill='%23ffffff' d='M42.536 22.812a49.754 49.754 0 0 1-3.016 10.09c-.215.658-.646 1.316-1.077 2.194-1.293 3.07-3.232 7.677-5.386 8.774-.216-.439-.647-1.755-.862-2.633-1.078-3.729-2.586-9.87-9.265-10.09-6.679.439-8.187 6.58-9.264 10.09-.216.878-.646 2.194-.862 2.633-2.154-1.097-4.093-5.703-5.386-8.774-.431-.878-.646-1.536-1.077-2.194-2.801-6.58-4.956-15.793-3.017-20.839 1.94-5.045 5.818-7.677 10.342-7.677 3.016 0 6.033 1.536 8.187 2.852.216.219.647.438 1.077.438.431 0 .647-.219 1.078-.438 1.292-.658 3.016-1.755 4.955-2.194 1.077-.877 1.94-1.974 2.8-3.29-3.23.22-6.678 1.755-8.833 3.07-2.37-1.315-5.817-2.85-9.049-3.07C8.28 1.534 3.324 5.044.954 10.747c-2.585 6.581.647 17.549 3.017 23.032.215.659.646 1.317 1.077 2.194 1.508 4.168 3.663 9.213 6.894 10.529.862.22 1.508 0 1.94 0 1.292-.658 1.723-2.413 2.154-4.387 1.293-4.387 2.37-7.897 6.894-8.116 4.31.22 5.602 3.729 6.895 8.116.646 2.194 1.077 3.729 2.154 4.387.431.22 1.078.439 1.94 0 3.231-1.316 5.386-6.361 7.11-10.529.43-.877.646-1.535 1.077-2.194 1.508-3.29 3.231-8.993 3.662-14.257-1.292 1.096-2.37 1.974-3.232 3.29Z'/%3E%3C/svg%3E");
}

.quote-block__img {
  display: flex;
}

.quote-block__info {
  display: grid;
}

.quote-block {
  margin-bottom: var(--mb-40-80);
}

@media (max-width: 767px) {
  .quote-block__inside {
    grid-template-columns: 65px 1fr;
    gap: 40px;
    padding: 20px 10px 20px;
    color: var(--white);
    background-color: var(--blue);
    border-radius: 20px;
  }
  .quote-block__img {
    align-self: flex-start;
    border-radius: 50%;
    overflow: hidden;
  }
}
.quote-block__q {
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
  font-size: 20px;
}

.quote-block__name {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.quote-block__sub {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue2);
  font-size: 12px;
  line-height: 130%;
}
.quote-block__sub::before {
  content: "";
  height: 1px;
  width: 2px;
  flex-grow: 1;
  max-width: 14px;
  background-color: var(--blue2);
}

.quote-block__content {
  position: relative;
}
.quote-block__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -43px;
  width: 30px;
  height: 30px;
  background-color: var(--blue2);
  border-radius: 50%;
  background-size: 15px 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 10'%3E%3Cpath fill='%23fff' d='m2.665 4.929 1.409-.215c.66 0 1.243.215 1.75.643.534.405.8 1.012.8 1.822 0 .785-.279 1.452-.837 2-.559.547-1.345.821-2.36.821-.99 0-1.815-.357-2.475-1.071C.317 8.214 0 7.298 0 6.179c0-1.143.457-2.274 1.37-3.393C2.31 1.666 3.643.738 5.369 0l.267.607c-2.386 1.238-3.58 2.488-3.58 3.75 0 .381.204.572.61.572Zm8.376 0 1.408-.215c.66 0 1.244.215 1.752.643.532.405.799 1.012.799 1.822 0 .785-.28 1.452-.838 2-.558.547-1.345.821-2.36.821-.99 0-1.815-.357-2.475-1.071-.634-.715-.951-1.631-.951-2.75 0-1.143.456-2.274 1.37-3.393.94-1.12 2.272-2.048 3.998-2.786l.266.607c-2.386 1.238-3.579 2.488-3.579 3.75 0 .381.204.572.61.572Z'/%3E%3C/svg%3E");
  box-shadow: 19px 18px 22.9px 0px rgba(31, 50, 83, 0.42);
}

@media (min-width: 768px) {
  .quote-block__q {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .quote-block__name {
    font-size: 20px;
  }
  .quote-block__sub {
    font-size: 14px;
    gap: 18px;
  }
  .quote-block__sub::before {
    max-width: 50px;
  }
  .quote-block__inside {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 20px;
  }
  .quote-block__inside::before {
    width: 341px;
    height: 337px;
    bottom: -74px;
    right: 44px;
  }
  .quote-block__info {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    grid-column: 1/-1;
    grid-row: 2;
    padding: 40px 70px 30px 70px;
    color: var(--white);
    background-color: var(--blue);
    border-radius: 20px;
  }
  .quote-block__img {
    display: flex;
    align-items: flex-end;
    grid-row: 1/3;
    grid-column: 1/5;
    z-index: 1;
  }
  .quote-block__content {
    grid-column: 5/-1;
  }
  .quote-block__content::before {
    left: -65px;
    width: 50px;
    height: 50px;
    background-size: 30px 20px;
  }
}
@media (max-width: 1023px) {
  .quote-block {
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .quote-block__q {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .quote-block__name {
    font-size: 24px;
  }
  .quote-block__sub {
    font-size: 16px;
    gap: 23px;
  }
  .quote-block__content::before {
    left: -115px;
    top: -50px;
    width: 100px;
    height: 100px;
    background-size: 61px 40px;
  }
}
@media (min-width: 1200px) {
  .quote-block__img {
    padding-inline: 28px;
  }
  .quote-block__q {
    margin-bottom: 35px;
    font-size: 50px;
  }
  .quote-block__name {
    font-size: 30px;
  }
  .quote-block__sub {
    gap: 23px;
    font-size: 18px;
  }
  .quote-block__sub::before {
    max-width: 142px;
  }
  .quote-block__content::before {
    left: -130px;
    top: -80px;
    width: 130px;
    height: 130px;
    background-size: 62px 41px;
  }
}
.plate__imgs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px 20px;
  flex-basis: 100%;
}
.plate__imgs img {
  height: 19px;
  width: auto;
}

.plate__imgs-link {
  display: flex;
  max-width: 50%;
}

@media (hover: hover) {
  .plate__imgs-link {
    transition: opacity 0.3s;
  }
  .plate__imgs-link:hover {
    opacity: 0.8;
  }
}
.plate-checked {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--light-gray);
  font-size: 10px;
}

.plate__stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.plate__star--yel {
  color: var(--yellow);
}

.plate__star--gray {
  color: var(--light-gray);
}

.plate {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 15px;
  background-color: var(--white);
}

.plate__name {
  margin: 0;
  color: var(--light-gray);
  font-size: 12px;
}

.restore-it {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 10px 10px 20px 10px;
  -webkit-clip-path: url(#cart-path);
          clip-path: url(#cart-path);
  border-radius: 24px;
  width: 330px;
  max-width: 100%;
  height: auto;
}

.restore-it__title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.restore-it__list {
  margin-bottom: 20px;
}

.restore-it__top {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 5px;
  align-items: flex-start;
  padding: 10px 10px 70px 10px;
  color: var(--white);
  border-radius: 10px;
  background-color: var(--blue);
  aspect-ratio: 310/217;
}

.restore-it__doctor {
  position: absolute;
  right: 10px;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  max-width: 160px;
  max-height: calc(100% - 10px);
}
.restore-it__doctor img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.restore-it__feedback {
  margin-bottom: 20px;
}

.restore-it__license {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 15px;
  width: 98px;
}

.restore-it__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  padding: 3px 10px;
  font-size: 12px;
  line-height: 1.2;
  border-radius: 10px;
  background: var(--blue2);
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

.restore-it__name {
  grid-column: 1;
  max-width: 50%;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.restore-it__practice {
  position: relative;
  z-index: 1;
  grid-column: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  align-self: flex-start;
  justify-self: flex-start;
  -moz-column-gap: 7px;
       column-gap: 7px;
  padding-block: 5px;
  padding-right: 15px;
}
.restore-it__practice span {
  position: relative;
}
.restore-it__practice span:first-child {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.restore-it__practice span:last-child {
  font-size: 14px;
  line-height: 1;
}
.restore-it__practice::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  right: 0;
  border-radius: 0 15px 15px 0;
  background-color: rgba(55, 87, 144, 0.2);
}
.restore-it__practice::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  right: 0;
  border-radius: 0 15px 15px 0;
  background-color: rgba(255, 255, 255, 0.2);
}

.restore-it__ads {
  position: relative;
  z-index: 1;
  grid-column: 1;
  color: var(--light-gray);
  font-size: 12px;
  line-height: 1.2;
  flex-grow: 1;
  white-space: nowrap;
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .restore-it {
    padding: 10px 10px 60px 10px;
  }
}
@media (min-width: 1024px) {
  .restore-it {
    width: calc(25% - 30px);
  }
}
@media (min-width: 1024px) and (min-width: 1200px) {
  .restore-it {
    padding: 20px 20px 27px 20px;
  }
}
@media (min-width: 1024px) {
  .restore-it__top {
    aspect-ratio: 310/245;
    height: 245px;
  }
}
.restore-block {
  margin-bottom: var(--mb-40-80);
  overflow: hidden;
  margin-bottom: var(--mb-20-40);
}

.restore-block__top {
  margin-bottom: var(--mb-30-40);
  text-align: center;
}

.restore-block__wrapper {
  display: flex;
  gap: 20px;
}

@media (min-width: 1024px) {
  .restore-block__wrapper {
    gap: 40px;
  }
}
.solution__top {
  max-width: 1072px;
  margin-bottom: 20px;
}

.solution__container {
  padding-top: 40px;
  padding-bottom: 30px;
}

.solution__list {
  margin-bottom: 30px;
}

.solution__h3 {
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 90%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.solution__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 33px;
  padding: 24px 10px 20px 10px;
}
.solution__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--white);
  -webkit-clip-path: url(#both-path);
          clip-path: url(#both-path);
}

.solution__img {
  position: relative;
}

@media (max-width: 1023px) {
  .solution__top {
    text-align: center;
  }
  .solution__btn {
    margin-bottom: 30px;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .solution__btn {
    margin-bottom: 20px;
  }
  .solution__content {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 109px;
    padding: 40px 40px 101px 40px;
  }
  .solution__img {
    margin-top: -90px;
  }
}
.fb2-it {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 10px 20px 10px;
  -webkit-clip-path: url(#cart-path);
          clip-path: url(#cart-path);
  width: 330px;
  height: auto;
  flex-shrink: 0;
}

.fb2-it__video {
  position: relative;
  color: var(--text);
  border-radius: 15px;
  aspect-ratio: 310/150;
  overflow: hidden;
}

.fb2-it__btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.fb2-it__info {
  position: absolute;
  left: 10px;
  bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}
.fb2-it__info img {
  height: 21px;
  width: auto;
}

.fb2-it__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fb2-it__name {
  margin-bottom: 10px;
  font-size: 12px;
}

.fb2-it__title {
  position: relative;
  padding-right: 90px;
  margin-bottom: 25px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 120%;
}
.fb2-it__title::before {
  content: "";
  position: absolute;
  right: 0;
  top: -25px;
  width: 72px;
  height: 50px;
  opacity: 0.1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 10'%3E%3Cpath fill='%23375790' d='m2.665 4.929 1.409-.215c.66 0 1.243.215 1.75.643.534.405.8 1.012.8 1.822 0 .785-.279 1.452-.837 2-.559.547-1.345.821-2.36.821-.99 0-1.815-.357-2.475-1.071C.317 8.214 0 7.298 0 6.179c0-1.143.457-2.274 1.37-3.393C2.31 1.666 3.643.738 5.369 0l.267.607c-2.386 1.238-3.58 2.488-3.58 3.75 0 .381.204.572.61.572Zm8.376 0 1.408-.215c.66 0 1.244.215 1.752.643.532.405.799 1.012.799 1.822 0 .785-.28 1.452-.838 2-.558.547-1.345.821-2.36.821-.99 0-1.815-.357-2.475-1.071-.634-.715-.951-1.631-.951-2.75 0-1.143.456-2.274 1.37-3.393.94-1.12 2.272-2.048 3.998-2.786l.266.607c-2.386 1.238-3.579 2.488-3.579 3.75 0 .381.204.572.61.572Z'/%3E%3C/svg%3E");
}

.fb2-it__result {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
}

.fb2-it__img {
  position: relative;
  display: flex;
  flex-shrink: 0;
}
.fb2-it__img img {
  width: 50px;
  aspect-ratio: 50/40;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.fb2-it__img:after {
  content: "";
  position: absolute;
  top: -14px;
  right: -8px;
  width: 33px;
  height: 31px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 49 47'%3E%3Cpath fill='white' d='M38.227.658A1.182 1.182 0 0 0 37.15 0c-.43 0-.862.22-1.077.658-2.586 5.923-6.895 8.335-10.988 10.748-.431.22-.646.658-.646 1.097 0 .439.215.878.646 1.097 5.817 2.632 8.402 7.239 10.341 10.31l.216.438c.215.439.646.658 1.077.658.431 0 .862-.22 1.078-.658 2.585-5.045 6.679-8.116 10.557-10.31.43-.219.646-.657.646-1.096 0-.439-.215-.878-.646-1.097-4.74-2.852-7.757-5.922-10.127-11.187Z'/%3E%3Cpath fill='white' d='M42.536 22.812a49.754 49.754 0 0 1-3.016 10.09c-.215.658-.646 1.316-1.077 2.194-1.293 3.07-3.232 7.677-5.386 8.774-.216-.439-.647-1.755-.862-2.633-1.078-3.729-2.586-9.87-9.265-10.09-6.679.439-8.187 6.58-9.264 10.09-.216.878-.646 2.194-.862 2.633-2.154-1.097-4.093-5.703-5.386-8.774-.431-.878-.646-1.536-1.077-2.194-2.801-6.58-4.956-15.793-3.017-20.839 1.94-5.045 5.818-7.677 10.342-7.677 3.016 0 6.033 1.536 8.187 2.852.216.219.647.438 1.077.438.431 0 .647-.219 1.078-.438 1.292-.658 3.016-1.755 4.955-2.194 1.077-.877 1.94-1.974 2.8-3.29-3.23.22-6.678 1.755-8.833 3.07-2.37-1.315-5.817-2.85-9.049-3.07C8.28 1.534 3.324 5.044.954 10.747c-2.585 6.581.647 17.549 3.017 23.032.215.659.646 1.317 1.077 2.194 1.508 4.168 3.663 9.213 6.894 10.529.862.22 1.508 0 1.94 0 1.292-.658 1.723-2.413 2.154-4.387 1.293-4.387 2.37-7.897 6.894-8.116 4.31.22 5.602 3.729 6.895 8.116.646 2.194 1.077 3.729 2.154 4.387.431.22 1.078.439 1.94 0 3.231-1.316 5.386-6.361 7.11-10.529.43-.877.646-1.535 1.077-2.194 1.508-3.29 3.231-8.993 3.662-14.257-1.292 1.096-2.37 1.974-3.232 3.29Z'/%3E%3C/svg%3E");
}

.fb2-it__doctor {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 2px 5px;
  flex-grow: 1;
  padding: 7px 8px 5px 8px;
  line-height: 1.2;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.6);
}

.fb2-it__doctor-img {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  grid-row: 1/3;
  border-radius: 10px;
  aspect-ratio: 1;
  overflow: hidden;
}
.fb2-it__doctor-img img {
  width: 26px;
}

.fb2-it__doctor-work {
  font-size: 12px;
  font-weight: 700;
}

.fb2-it__doctor-name {
  font-size: 10px;
}

.fb2-it__t {
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 768px) {
  .fb2-it__title {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .fb2-it {
    gap: 30px;
    padding: 20px 20px 40px 20px;
    width: calc(33.3333333333% - 26.6666666667px);
  }
  .fb2-it__doctor {
    grid-template-columns: 40px 1fr;
    padding: 10px;
  }
  .fb2-it__doctor-img {
    padding-top: 3px;
  }
  .fb2-it__doctor-img img {
    width: 45px;
  }
  .fb2-it__doctor-work {
    font-size: 14px;
  }
  .fb2-it__doctor-name {
    font-size: 12px;
  }
  .fb2-it__name {
    font-size: 14px;
  }
  .fb2-it__title {
    flex-grow: 1;
    margin-bottom: 40px;
    font-size: 24px;
  }
  .fb2-it__img img {
    aspect-ratio: 104/60;
    width: 104px;
  }
}
.fb2__top {
  max-width: 702px;
  margin-bottom: var(--mb-30-40);
  margin-inline: auto;
  text-align: center;
}

.fb2 {
  padding-top: var(--mb-40-60);
  margin-bottom: var(--mb-30-40);
  overflow: hidden;
}

.fb2__wrapper {
  display: flex;
  gap: var(--mb-20-40);
}

.present {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 7px 10px 10px 10px;
  color: var(--white);
  background-color: var(--blue2);
  -webkit-clip-path: url(#present-path);
          clip-path: url(#present-path);
}

.present__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.present__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.present__it {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.2;
}
.present__it p {
  margin: 0;
}

.present__price {
  text-decoration: line-through;
}

@media (min-width: 1024px) {
  .present {
    gap: 16px;
    padding: 20px;
  }
  .present__name {
    font-size: 18px;
  }
  .present__it-name {
    font-size: 14px;
  }
  .present__it:nth-child(1) .present__it-name {
    max-width: 170px;
  }
  .present__it:nth-child(2) .present__it-name {
    max-width: 230px;
  }
  .present__it {
    grid-template-columns: 35px 1fr;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
.day-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  padding: 10px;
  border-radius: 15px;
  background-color: var(--lighter-blue);
}

.day-top__sale {
  margin-bottom: 9px;
}

.day-top__name {
  margin-top: 0;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.day-top__text {
  font-size: 12px;
  line-height: 1.4;
}

@media (min-width: 1024px) {
  .day-top {
    grid-template-columns: minmax(0, 1fr) 150px;
  }
  .day-top__img {
    margin-top: -40px;
  }
  .day-top__name,
  .day-top__text {
    font-size: 14px;
    max-width: 392px;
  }
}
.day-system {
  display: grid;
  grid-template-columns: 40px 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
  line-height: 1.4;
}

.day-system__img {
  grid-row: 1/3;
}

.day-system__name {
  font-size: 16px;
}

.day-system__country {
  color: var(--light-gray);
  font-size: 12px;
}

.day-it {
  position: relative;
  padding: 10px 10px 20px 10px;
}
.day-it::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--white);
  -webkit-clip-path: url(#day-path);
          clip-path: url(#day-path);
}

.day-it__top {
  position: relative;
  margin-bottom: 20px;
  align-items: center;
}

.day-it__price {
  display: flex;
  flex-direction: column;
}

.day-it__price-new {
  display: flex;
  align-items: last baseline;
  gap: 5px;
  color: var(--blue2);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.day-it__price-new span {
  font-size: 16px;
}

.day-it__price-old {
  display: flex;
  align-items: last baseline;
  gap: 5px;
  color: var(--light-gray);
  font-size: 12px;
  line-height: 1.2;
  text-decoration: line-through;
}

.day-it__center {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.day-it__present {
  margin-bottom: 16px;
}

.day-it__jaw {
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 123px;
  height: 79px;
}

.day-it__sale {
  padding: 6px;
  font-size: 10px;
  color: var(--blue2);
  border-radius: 10px;
  background: var(--lighter-blue);
}
.day-it__sale span {
  display: block;
  font-size: 20px;
}

.day-it__includes {
  padding-right: 100px;
}

.includes__name {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.day-it__btm {
  position: relative;
}

@media (max-width: 600px) {
  .day-it__action {
    flex-basis: 100%;
  }
}
.day-it__sale {
  position: absolute;
  right: 10px;
  bottom: 70px;
  max-width: 113px;
}

@media (min-width: 1024px) {
  .day-it {
    padding: 40px 40px 20px 40px;
    margin-bottom: 34px;
  }
  .day-it__jaw {
    width: 186px;
    height: 120px;
    right: 52px;
    bottom: -35px;
  }
  .day-it__sale {
    right: 40px;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 18px;
    height: 104px;
    max-width: 210px;
  }
  .day-it__sale span {
    font-size: 40px;
  }
  .day-it__price-new {
    font-size: 30px;
  }
  .day-it__price-new span {
    font-size: 18px;
  }
  .day-it__price-old {
    font-size: 14px;
  }
  .day-it__includes {
    padding-right: 240px;
  }
}
.day {
  padding-block: 40px;
  overflow: hidden;
}

.day__top {
  justify-content: center;
  text-align: center;
  margin-bottom: var(--mb-40-60);
}

.day-slider__slider {
  overflow: hidden;
}

.day-slider__wrapper {
  display: flex;
}

.day-slider__slide {
  width: 100%;
  flex-shrink: 0;
}

.day-slider {
  position: relative;
}
.day-slider .btn--arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.day-slider .btn--left {
  left: 0;
  transform: translate(-50%, -50%) scale(-1, 1);
}
.day-slider .btn--right {
  right: 0;
  transform: translate(50%, -50%);
}

.day__block-name {
  margin-bottom: 20px;
  color: var(--blue);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.day-it--dark .day-it__top {
  background-color: var(--light-blue);
}
.day-it--dark .day-it__present {
  background-color: var(--blue);
}
.day-it--dark .day-it__sale {
  color: var(--blue);
  background-color: var(--light-blue);
}
.day-it--dark .day-it__price-new {
  color: var(--blue);
}
.day-it--dark .list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 20'%3E%3Crect width='20' height='20' fill='%23375790' rx='6.667'/%3E%3Cpath fill='%2300B3D0' d='M23.676.37a.913.913 0 0 0-1.337.094l-10.087 12.17-4.614-5.195A.913.913 0 0 0 6.3 7.394a1.04 1.04 0 0 0-.044 1.414l5.329 6c.18.201.43.315.692.315h.016a.924.924 0 0 0 .697-.341l10.776-13a1.04 1.04 0 0 0-.09-1.412Z'/%3E%3C/svg%3E");
}

.day__blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 768px) {
  .day-slider__slide {
    width: calc(50% - 10px);
  }
  .day-slider__wrapper {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .day__block-name {
    font-size: 24px;
  }
  .day-slider__wrapper {
    gap: 40px;
  }
  .day-slider__slide {
    width: calc(50% - 20px);
  }
}
.quiz {
  background-color: var(--light-blue);
}

.quiz__top {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.quiz__num {
  color: var(--light-gray);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.quiz__question {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.quiz__fieldset {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
  margin-bottom: 23px;
}

.quiz__h2 {
  margin-top: 0;
  margin-bottom: 30px;
  max-width: 477px;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}
.quiz__h2 span {
  font-weight: 700;
  color: var(--blue);
}

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

.quiz__btn {
  gap: 10px;
  padding: 7px 20px;
  border-radius: 20px;
  min-height: 40px;
}

.quiz__side {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quiz__side-img {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.quiz__page {
  z-index: -1;
}
.quiz__page.active {
  z-index: 1;
}

@media (max-width: 1023px) {
  .quiz__side-img {
    border-radius: 50%;
    overflow: hidden;
    width: 70px;
  }
}
.quiz__form {
  display: grid;
  margin-bottom: 40px;
  counter-reset: quizCounter;
}

.quiz__page {
  z-index: 0;
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  background-color: var(--light-blue);
}

.quiz__label .label__input {
  background-color: var(--white);
  border-color: var(--white);
}
.quiz__label .label__input:hover {
  border-color: var(--blue2);
}

.quiz__progress {
  display: none;
}

@media (max-width: 767px) {
  .quiz__next {
    flex-grow: 1;
  }
}
@media (min-width: 500px) {
  .quiz__fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 23px;
  }
}
@media (min-width: 768px) {
  .quiz__btns {
    justify-content: flex-end;
  }
  .quiz__h2 {
    font-size: 28px;
  }
  .quiz__top {
    position: relative;
    padding-left: 112px;
    margin-bottom: 40px;
  }
  .quiz__top::before {
    content: "0" counter(quizCounter);
    counter-increment: quizCounter;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--white);
    font-size: 80px;
    font-weight: 700;
    line-height: 0.8;
  }
  .quiz__progress {
    position: relative;
    display: flex;
    width: 100%;
    height: 20px;
    margin-bottom: 28px;
    background: var(--gray);
    border-radius: 20px;
    overflow: hidden;
  }
  .quiz__progress-complete {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    background: fixed;
    border-radius: 20px;
    background: repeating-linear-gradient(135deg, var(--blue) 0 8px, #666591 0 16px) 0/100% no-repeat;
  }
  .quiz__page:nth-child(2) .quiz__progress-complete {
    width: 50%;
  }
  .quiz__page:nth-child(3) .quiz__progress-complete {
    width: 75%;
  }
  .quiz__page:nth-child(4) .quiz__progress-complete {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .quiz {
    display: grid;
    grid-template-columns: 9fr 5fr;
    grid-template-rows: auto 1fr;
    gap: 37px;
    align-items: flex-start;
  }
  .quiz__h2 {
    grid-column: 1;
    grid-row: 1;
    font-size: 30px;
    text-align: left;
  }
  .quiz__form {
    grid-column: 1;
    grid-row: 2;
  }
  .quiz__side {
    position: relative;
    grid-column: 2;
    grid-row: 1/3;
    display: flex;
    align-items: flex-end;
    height: 100%;
  }
  .quiz__call {
    position: absolute;
    bottom: 60px;
    right: 70px;
  }
}
.quiz-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 14px 108px 26px 10px;
  color: var(--white);
  -webkit-clip-path: url(#quiz-side1-path);
          clip-path: url(#quiz-side1-path);
  overflow: hidden;
  border-radius: 24px;
}
.quiz-side::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 66px;
  width: 209px;
  height: 207px;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 49 47'%3E%3Cpath fill='%23ffffff' d='M38.227.658A1.182 1.182 0 0 0 37.15 0c-.43 0-.862.22-1.077.658-2.586 5.923-6.895 8.335-10.988 10.748-.431.22-.646.658-.646 1.097 0 .439.215.878.646 1.097 5.817 2.632 8.402 7.239 10.341 10.31l.216.438c.215.439.646.658 1.077.658.431 0 .862-.22 1.078-.658 2.585-5.045 6.679-8.116 10.557-10.31.43-.219.646-.657.646-1.096 0-.439-.215-.878-.646-1.097-4.74-2.852-7.757-5.922-10.127-11.187Z'/%3E%3Cpath fill='%23ffffff' d='M42.536 22.812a49.754 49.754 0 0 1-3.016 10.09c-.215.658-.646 1.316-1.077 2.194-1.293 3.07-3.232 7.677-5.386 8.774-.216-.439-.647-1.755-.862-2.633-1.078-3.729-2.586-9.87-9.265-10.09-6.679.439-8.187 6.58-9.264 10.09-.216.878-.646 2.194-.862 2.633-2.154-1.097-4.093-5.703-5.386-8.774-.431-.878-.646-1.536-1.077-2.194-2.801-6.58-4.956-15.793-3.017-20.839 1.94-5.045 5.818-7.677 10.342-7.677 3.016 0 6.033 1.536 8.187 2.852.216.219.647.438 1.077.438.431 0 .647-.219 1.078-.438 1.292-.658 3.016-1.755 4.955-2.194 1.077-.877 1.94-1.974 2.8-3.29-3.23.22-6.678 1.755-8.833 3.07-2.37-1.315-5.817-2.85-9.049-3.07C8.28 1.534 3.324 5.044.954 10.747c-2.585 6.581.647 17.549 3.017 23.032.215.659.646 1.317 1.077 2.194 1.508 4.168 3.663 9.213 6.894 10.529.862.22 1.508 0 1.94 0 1.292-.658 1.723-2.413 2.154-4.387 1.293-4.387 2.37-7.897 6.894-8.116 4.31.22 5.602 3.729 6.895 8.116.646 2.194 1.077 3.729 2.154 4.387.431.22 1.078.439 1.94 0 3.231-1.316 5.386-6.361 7.11-10.529.43-.877.646-1.535 1.077-2.194 1.508-3.29 3.231-8.993 3.662-14.257-1.292 1.096-2.37 1.974-3.232 3.29Z'/%3E%3C/svg%3E");
}

.quiz-side__h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.quiz-side__list {
  gap: 10px;
}
.quiz-side__list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 20'%3E%3Crect width='20' height='20' fill='%2300B3D0' rx='6.667'/%3E%3Cpath fill='%23fff' d='M23.676.37a.913.913 0 0 0-1.337.094l-10.087 12.17-4.614-5.195A.913.913 0 0 0 6.3 7.394a1.04 1.04 0 0 0-.044 1.414l5.329 6c.18.201.43.315.692.315h.016a.924.924 0 0 0 .697-.341l10.776-13a1.04 1.04 0 0 0-.09-1.412Z'/%3E%3C/svg%3E");
}
.quiz-side__list span {
  font-weight: 700;
}

.quiz-side__deco {
  position: absolute;
  bottom: -100px;
  right: -10px;
  width: 149px;
  height: 167px;
}

@media (min-width: 1024px) {
  .quiz-side {
    gap: 30px;
    height: 100%;
    padding: 40px 56px 60px 30px;
    -webkit-clip-path: url(#quiz-side2-path);
            clip-path: url(#quiz-side2-path);
  }
  .quiz-side::before {
    width: 289px;
    height: 286px;
    left: -6px;
    bottom: -60px;
    top: auto;
  }
  .quiz-side__h2 {
    max-width: 215px;
  }
  .quiz-side__list {
    gap: 15px;
  }
  .quiz-side__deco {
    bottom: -126px;
    right: -41px;
    width: 265px;
    height: 274px;
  }
}
.quiz-block {
  padding-block: var(--mb-40-60);
}

.quiz-block__quiz {
  padding: 20px 10px 10px 10px;
  border-radius: 15px;
}

.quiz-block__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

@media (min-width: 1024px) {
  .quiz-block__quiz {
    padding: 32px 40px 0 60px;
  }
  .quiz-block__container {
    grid-template-columns: minmax(0, 9fr) minmax(0, 3fr);
    gap: 20px;
  }
}
.discount__top {
  text-align: center;
  max-width: 734px;
  margin-bottom: var(--mb-30-40);
  margin-inline: auto;
}

.discount__text {
  margin-inline: auto;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
  text-align: center;
}

.discount {
  margin-bottom: var(--mb-40-80);
}

.discount__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: 1fr;
  gap: 10px;
}

.discount__list li {
  padding: 10px 47px 15px 54px;
  min-height: 93px;
  font-size: 16px;
}
.discount__list li::before {
  z-index: 1;
  top: 10px;
  left: 10px;
}
.discount__list li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-clip-path: url(#discount-path);
          clip-path: url(#discount-path);
  background-color: var(--light-blue);
}
.discount__list li:nth-child(1)::after {
  transform: scale(-1, 1);
}
.discount__list li span {
  position: relative;
  z-index: 1;
}

.discount__img {
  display: none;
}

@media (min-width: 768px) {
  .discount__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .discount__list-wrapper {
    display: grid;
    grid-template-columns: 2fr 10fr 2fr;
    gap: 20px;
  }
  .discount__img {
    position: relative;
    display: block;
  }
  .discount__img-img {
    position: absolute;
    top: 50%;
    right: -50px;
    width: calc(100% + 70px);
    transform: translateY(-50%);
  }
  .discount__text {
    max-width: 666px;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .discount__list li {
    padding: 23px 50px 47px 79px;
  }
  .discount__list li::before {
    top: 22px;
    left: 30px;
    width: 34px;
    height: 30px;
  }
}
.fb3-it {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 14px 10px 53px 10px;
}
.fb3-it::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  -webkit-clip-path: url(#fb3-path);
          clip-path: url(#fb3-path);
}

.fb3-it__pics {
  position: relative;
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.fb3-it__pics div {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.fb3-it__pics div img {
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fb3-it__top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 30px) minmax(0, 1fr);
  gap: 5px 20px;
  align-items: center;
  margin-bottom: 20px;
}

.fb3-it__top-img {
  grid-row: 1/3;
  display: flex;
  align-items: flex-start;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.fb3-it__top-img img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fb3-it__top-name {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.fb3-it__top-purpose {
  font-size: 14px;
}

@media (min-width: 768px) {
  .fb3-it__top-name {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .fb3-it {
    padding: 20px 20px 40px 20px;
  }
  .fb3-it__pics {
    margin-bottom: 30px;
  }
  .fb3-it__top-name {
    font-size: 24px;
  }
  .fb3-it__top {
    grid-template-columns: minmax(0, 45px) minmax(0, 1fr);
  }
  .fb3-it__top-img {
    width: 45px;
    height: 45px;
  }
}
.fb3 {
  padding-top: var(--mb-40-60);
}

.fb3__top {
  max-width: 776px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--mb-30-40);
}

.fb3__list {
  padding-bottom: var(--mb-30-40);
}

.fb3__it {
  width: 330px;
  height: auto;
  flex-shrink: 0;
}

.fb3__wrapper {
  display: flex;
  gap: 20px;
}

.fb3__container {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .fb3__it {
    width: calc(33.3333333333% - 26.6666666667px);
  }
  .fb3__wrapper {
    gap: 40px;
  }
  .fb3__slider {
    overflow: hidden;
  }
}
.fb4-it1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .fb4-it1:hover {
    opacity: 0.8;
  }
}
.fb4-it1__img {
  display: flex;
  justify-content: center;
  height: 15px;
}
.fb4-it1__img img {
  width: auto;
  max-width: 100%;
}

.fb4-it1__stars {
  color: var(--grey-blue, #525969);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.fb4-it1__name {
  text-align: center;
  color: var(--grey-text, #6B6C6C);
  text-align: center;
  font-size: 10px;
  line-height: 120%;
}

@media (min-width: 1024px) {
  .fb4-it1__img {
    height: 30px;
    margin-bottom: 15px;
  }
  .fb4-it1__star {
    font-size: 18px;
  }
  .fb4-it1__name {
    font-size: 12px;
  }
}
.fb4-it {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  overflow: hidden;
  width: 330px;
  flex-shrink: 0;
  background-color: var(--white);
  -webkit-clip-path: url(#fb4-path);
          clip-path: url(#fb4-path);
  overflow: hidden;
}

.fb4-it__left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 11px 0 0 11px;
}

.fb4-it__left-img {
  height: 9px;
  width: -moz-fit-content;
  width: fit-content;
}

.fb4-it__img {
  position: relative;
  padding-bottom: 10px;
  padding-top: 10px;
}

@media (min-width: 768px) {
  .fb4-it__left {
    padding: 20px 0 0 20px;
  }
}
@media (min-width: 768px) {
  .fb4-it__left {
    padding: 30px 0 0 30px;
    gap: 11px;
  }
  .fb4-it__left-img {
    height: 20px;
  }
  .fb4-it {
    width: 100%;
  }
}
.fb4 {
  padding-block: var(--mb-40-60);
  overflow: hidden;
}

.fb4__top {
  text-align: center;
  margin-inline: auto;
  margin-bottom: var(--mb-30-40);
}

.fb4__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 156px);
  gap: 20px;
  justify-content: center;
  margin-bottom: var(--mb-40-60);
}

.fb4__fbs {
  display: flex;
  overflow-x: auto;
  gap: 20px;
}

@media (min-width: 768px) {
  .fb4__fbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .fb4__list {
    grid-template-columns: repeat(5, minmax(150px, 176px));
    justify-content: center;
  }
  .fb4__fbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 40px;
  }
}
@media (min-width: 1200px) {
  .fb4__list {
    gap: 80px;
  }
}
.about {
  padding-top: var(--mb-40-60);
}

.about__content {
  padding: 50px 10px 10px;
  background-color: var(--blue);
  -webkit-clip-path: url(#about-path1);
          clip-path: url(#about-path1);
}

.about__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  color: var(--white);
}

.about__h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}
.about__h2 span {
  color: var(--blue2);
}

.about__info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 27px 10px;
  margin-bottom: 15px;
  background-color: var(--white);
  border-radius: 15px;
}

.about__info-name {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.about__imgs {
  position: absolute;
  right: 10px;
  top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 40px));
  gap: 5px;
  transform: translateY(-50%);
}

.about__img-out {
  position: relative;
}

.about__img-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--blue);
  transform: translate(-50%, -50%);
}

.about__img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 5px solid var(--white);
  overflow: hidden;
  aspect-ratio: 1;
}
.about__img img {
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__doctors {
  position: relative;
  min-height: 205px;
}
.about__doctors .btn {
  position: relative;
  z-index: 1;
}

.about__doctors1 {
  position: absolute;
  top: -34px;
  right: 0;
  width: 124px;
  height: 70px;
}

.about__doctors2 {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 186px;
  height: 110px;
}

.about__doctors3 {
  position: absolute;
  width: 205px;
  height: 126px;
  bottom: -10px;
  right: 0;
}

.about__text {
  font-size: 14px;
}

@media (min-width: 768px) {
  .about__text {
    font-size: 16px;
  }
  .about__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 20px;
         column-gap: 20px;
    -webkit-clip-path: url(#about-path2);
            clip-path: url(#about-path2);
  }
  .about__top {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .about__doctors1 {
    width: 50%;
    height: auto;
  }
  .about__doctors2 {
    width: 60%;
    height: auto;
    left: -30px;
  }
  .about__doctors3 {
    width: 70%;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .about__content {
    -moz-column-gap: 40px;
         column-gap: 40px;
    padding: 60px 40px 40px 40px;
  }
  .about__h2 {
    font-size: 30px;
    max-width: 620px;
    margin-bottom: 40px;
  }
  .about__top {
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-bottom: 40px;
  }
  .about__imgs {
    right: 38px;
    grid-template-columns: repeat(4, minmax(0, 78px));
  }
  .about__text {
    font-size: 18px;
  }
  .about__doctors3 {
    bottom: -40px;
    width: 67.5%;
  }
  .about__doctors2 {
    bottom: 30px;
    left: -50px;
  }
  .about__doctors1 {
    width: 45.8%;
    right: -20px;
  }
  .about__info {
    padding: 30px 100px 40px 38px;
  }
  .about__info-list {
    gap: 20px;
    font-size: 16px;
  }
  .about__info-name {
    font-size: 18px;
  }
  .about__img {
    filter: grayscale(1);
    transition: filter 0.3s;
  }
  .about__img-svg {
    transform: translate(40%, 40%);
    transition: transform 0.3s;
  }
  .about__img-out:hover .about__img {
    filter: grayscale(0);
  }
  .about__img-out:hover .about__img-svg {
    transform: translate(-50%, -50%);
  }
  .about__img-svg svg {
    width: 28px;
    height: 28px;
  }
}
.consult {
  padding-block: var(--mb-40-60);
}

.consult__top {
  max-width: 747px;
  margin-inline: auto;
  margin-bottom: var(--mb-30-40);
  text-align: center;
}

.read {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--light-gray);
  font-size: 10px;
  line-height: 1.2;
}

.consult__p {
  margin-top: 0;
  margin-bottom: auto;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.consult__list {
  z-index: 1;
  gap: 10px;
  margin-bottom: 35px;
}

.consult__list li {
  padding: 13px 10px 17px 50px;
  max-width: 480px;
  min-height: 111px;
  display: flex;
}
.consult__list li::before {
  top: 13px;
  left: 10px;
}
.consult__list li:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--light-blue);
  -webkit-clip-path: url(#consult-li-path);
          clip-path: url(#consult-li-path);
}
.consult__list li:first-child::after {
  transform: scale(-1, 1);
}

.consult__li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.consult__call {
  position: absolute;
  top: 0;
  left: 112px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  transform: translateY(-30px);
}

.consult__call-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #31D059;
  transition: opacity 0.3s;
}
.consult__call-ico:hover {
  opacity: 0.8;
}

.consult__call-text {
  color: var(--light-gray);
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
}

.consult__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.consult__contacts .tels__tel {
  color: var(--text);
  margin-bottom: 4px;
}
.consult__contacts .contact-block__remark {
  color: var(--light-gray);
}

@media (max-width: 767px) {
  .consult__contacts {
    text-align: center;
  }
  .consult__contacts .contact-block__contacts {
    justify-content: center;
  }
}
.consult__right {
  position: relative;
  display: flex;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .consult__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .consult__right {
    margin-bottom: 0;
    align-items: flex-start;
  }
  .consult__list {
    margin-bottom: 0;
  }
  .consult__info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .consult__call {
    left: 140px;
    transform: translateY(-40px);
  }
  .consult__call-ico {
    width: 80px;
    height: 80px;
  }
  .consult__call-ico svg {
    width: 34px;
    height: 34px;
  }
  .consult__call-text {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .consult__info {
    grid-column: 1/-1;
  }
}
@media (min-width: 1024px) {
  .consult__p {
    font-size: 18px;
  }
  .consult__list li {
    padding: 20px 30px 20px 82px;
  }
  .consult__list li::before {
    top: 30px;
    left: 30px;
  }
  .consult__list li:nth-child(2) .consult__li::before, .consult__list li:nth-child(3) .consult__li::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    background-color: var(--white);
    -webkit-clip-path: url(#consult-li-path);
            clip-path: url(#consult-li-path);
  }
  .consult__list li:nth-child(1) {
    grid-column: 1/5;
    grid-row: 1/3;
  }
  .consult__list li:nth-child(2) {
    grid-column: 4/8;
    grid-row: 2/4;
  }
  .consult__list li:nth-child(3) {
    grid-column: 2/6;
    grid-row: 3/5;
  }
  .consult__list li:nth-child(2) .read {
    left: -50px;
  }
  .consult__info {
    grid-template-columns: 443px minmax(0, 1fr);
    gap: 40px;
  }
  .consult__info .btn {
    height: 80px;
  }
  .consult__li .read {
    position: relative;
  }
  .consult__content {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 0;
  }
  .consult__list {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    -moz-column-gap: 40px;
         column-gap: 40px;
    grid-auto-rows: 94px;
    align-items: flex-start;
  }
  .consult__right {
    grid-row: 1/3;
    grid-column: 2;
  }
  .consult__contacts {
    display: flex;
    flex-direction: column;
  }
  .consult__call {
    left: 184px;
    transform: translateY(-51px);
  }
  .consult__call-ico {
    width: 103px;
    height: 103px;
  }
  .consult__call-ico svg {
    width: 44px;
    height: 44px;
  }
  .consult__call-text {
    font-size: 18px;
  }
}
.benefit-it {
  display: flex;
  flex-direction: column;
}

.benefit-it__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  gap: 4px 20px;
  background-color: var(--white);
  padding: 10px;
  border-radius: 20px;
}

.benefit-it__prices-new {
  color: var(--blue2);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.benefit-it__prices-new span {
  font-size: 16px;
}

.benefit-it__prices-old {
  color: var(--light-gray);
  font-size: 12px;
  line-height: 1.2;
  text-decoration: line-through;
}

.benefit-it__action {
  grid-row: 1/3;
  grid-column: 2;
}

.benefit-it__day {
  -moz-column-gap: 5px;
       column-gap: 5px;
  margin-bottom: 18px;
  padding-inline: 10px;
  border-radius: 10px;
  background: var(--light-blue);
}

.benefit-it__name {
  padding-right: 160px;
  margin-bottom: 15px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}
.benefit-it__name strong {
  text-transform: initial;
}

.benefit-it__wrap {
  flex-grow: 1;
  position: relative;
  padding-top: 16px;
  margin-bottom: 13px;
}

.benefit-it__img {
  position: absolute;
  top: 0;
  right: 20px;
  width: 125px;
}

.benefit-it__text {
  color: var(--white);
  font-size: 14px;
  line-height: 1.2;
}

.benefit__day {
  position: absolute;
  bottom: 70px;
  right: 0;
  z-index: 1;
  padding: 4px 10px;
  border-radius: 10px 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  background-color: var(--white);
}

.benefit-it__system {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 10px 16px 10px;
  height: 100%;
  background-color: var(--blue2);
  -webkit-clip-path: url(#benefits-path2);
          clip-path: url(#benefits-path2);
}

.benefit-it--dark .benefit-it__system {
  background-color: var(--blue);
}
.benefit-it--dark .benefit-it__prices-new {
  color: var(--blue);
}

@media (min-width: 768px) {
  .benefit-it__system {
    -webkit-clip-path: url(#benefits-path);
            clip-path: url(#benefits-path);
  }
}
@media (min-width: 1024px) {
  .benefit-it__system {
    padding: 40px 270px 40px 40px;
  }
  .benefit-it__name {
    padding-right: 0;
    margin-bottom: 7px;
    font-size: 18px;
  }
  .benefit-it__day {
    margin-bottom: 25px;
  }
  .benefit-it__img {
    right: 37px;
    width: 196px;
  }
  .benefit-it__wrap {
    padding-top: 36px;
  }
  .benefit-it__prices {
    row-gap: 10px;
    padding: 16px 40px 17px 44px;
    border-radius: 20px;
  }
  .benefit-it__prices-new {
    font-size: 30px;
  }
  .benefit-it__prices-new span {
    font-size: 18px;
  }
  .benefit-it__prices-old {
    font-size: 14px;
    text-decoration: line-through;
  }
  .benefit-it__action {
    justify-self: center;
  }
}
.benefits {
  padding-top: var(--mb-40-60);
  padding-bottom: var(--mb-40-80);
}

.benefits__top {
  margin-bottom: 14px;
  margin-inline: auto;
  max-width: 633px;
  text-align: center;
}

.benefits__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 30px;
}

@media (min-width: 768px) {
  .benefits__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .benefit__day {
    bottom: 37px;
  }
}
@media (min-width: 1024px) {
  .benefits__top {
    margin-bottom: 25px;
  }
  .benefits__list {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.map-it {
  display: flex;
  flex-direction: column;
}

.map-it__name {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.2;
}

.map-it__value {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: var(--text);
  text-decoration: none;
}
.map-it__value svg {
  color: var(--blue);
}

a.map-it__value {
  transition: color 0.3s;
}
a.map-it__value:hover {
  color: var(--blue);
}

.map-it__tels .tels__contact {
  color: var(--blue);
}
.map-it__tels .tels__tel {
  color: var(--text);
  transition: color 0.3s;
}
.map-it__tels .tels__tel:hover {
  color: var(--blue);
}

.map {
  padding-top: var(--mb-40-60);
  padding-bottom: 40px;
}

.map__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.map__top {
  margin-bottom: var(--mb-30-40);
  max-width: 900px;
  text-align: center;
  margin-inline: auto;
}

.metro {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 5px 7px;
  cursor: pointer;
}

.metro__img {
  grid-row: 1/-3;
}

.metro-inside {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metro-inside .metro__adress {
  font-weight: 400;
}

.metro-inside__name {
  font-size: 16px;
  font-weight: 700;
}

.map-block {
  position: relative;
  height: 700px;
  width: 100%;
  background-image: url("../img/map.jpg");
  background-size: cover;
  background-position: center;
}

.map-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.map-container > ymaps {
  width: 100%;
  height: 100%;
}

.map-block__container {
  position: relative;
}

.map-block__metros {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: var(--padding);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: calc(100% - 2 * var(--padding));
  padding: 12px 10px 10px 10px;
  background-color: var(--white);
  border-radius: 15px;
}

.metro__adress {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .map__list {
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (min-width: 1024px) {
  .map-block__metros {
    top: 142px;
    gap: 37px;
    padding: 40px 50px 60px 40px;
    border-radius: 20px;
  }
  .map__list {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
  .metro {
    grid-template-columns: 70px 1fr;
    gap: 10px 23px;
  }
  .metro .metros__it {
    color: var(--text);
    font-size: 18px;
  }
  .metro__adress {
    font-size: 20px;
  }
}
.footer {
  padding-top: 15px;
  padding-bottom: 60px;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
}

.footer__remarks {
  color: var(--gray);
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__link {
  display: flex;
  color: var(--gray);
  font-size: 14px;
  line-height: 120%;
  -webkit-text-decoration: underline dashed var(--gray);
          text-decoration: underline dashed var(--gray);
  text-underline-offset: 4px;
  transition: color 0.3s;
}
.footer__link:hover {
  color: var(--blue);
}

.footer__it {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .footer__links {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding-top: 60px;
  }
  .footer__remarks {
    text-align: left;
  }
}
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 12;
  width: 100%;
  max-width: calc(100dvw - 2 * var(--padding));
  background-color: var(--white);
  border-radius: 20px;
  transform: translate(-200vw, -50%);
}

.popup.opened {
  transform: translate(-50%, -50%);
}

.popup__inside,
.popup__inside div[id^=com] {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}

.popup__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.popup__name {
  font-size: 24px;
  font-weight: 700;
}

.popup__text {
  font-size: 14px;
}

.popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.popup__img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup__img-success {
  width: 104px;
  height: 100px;
}

.popup__text--text {
  text-align: left;
  max-height: calc(100svh - 200px);
  overflow-y: auto;
  scrollbar-width: thin;
}

[data-target=success] .popup__inside {
  height: 464px;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.form {
  display: flex;
  flex-direction: column;
}

.form__fieldset {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.form__btn {
  margin-bottom: 25px;
}

.form__agree-check {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: var(--light-blue);
  background-size: 13px 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.form__agree-check:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 28 23'%3E%3Cpath fill='%23B6B6B6' d='M27.496.549a1.474 1.474 0 0 0-2.08.138L9.727 18.62l-7.177-7.656a1.475 1.475 0 0 0-2.15 2.018l8.289 8.842c.28.296.667.464 1.076.464h.025a1.469 1.469 0 0 0 1.084-.503L27.636 2.628a1.474 1.474 0 0 0-.14-2.08Z'/%3E%3C/svg%3E");
}

.form__agree {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 20px;
  color: var(--light-gray);
  font-size: 12px;
  line-height: 1.2;
}

@media (min-width: 540px) {
  .popup__inside {
    padding: 40px 55px 60px 55px;
  }
}
@media (min-width: 600px) {
  .popup {
    max-width: 540px;
  }
  .popup__close {
    top: 20px;
    right: 20px;
  }
}
@media (min-width: 768px) {
  .popup__name {
    font-size: 28px;
  }
  .popup__text {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .popup__name {
    font-size: 30px;
  }
  .popup__img-success {
    width: 146px;
    height: 140px;
  }
  [data-target=success] .popup__inside {
    height: 540px;
    gap: 68px;
  }
}
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8;
  padding-block: 10px;
  border-top: 1px solid var(--light-gray);
  background: var(--light-blue);
  transition: transform 0.6s;
}

.cookie__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cookie__text {
  margin: 0;
  font-size: 14px;
  color: var(--light-gray);
  max-width: 1063px;
}

.cookie__text a {
  position: relative;
  display: inline-flex;
  color: var(--blue);
  -webkit-text-decoration: dashed;
          text-decoration: dashed;
}

.cookie__close {
  padding: 10px 20px;
}

.cookie.move-left {
  transform: translate3d(-200%, 0, 0);
}

@media (min-width: 768px) {
  .cookie__content {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .cookie {
    padding-block: 23px;
  }
  .cookie__content {
    gap: 60px;
  }
}
.js-swiper__slider.swiper-initialized .swiper-wrapper,
.js-swiper2__slider.swiper-initialized .swiper-wrapper {
  gap: 0;
}
/*# sourceMappingURL=style.css.map */
