@charset "UTF-8";

:root {
  --main-black: #000;
  --add-black: #242424;
  --bg-black: #323232;
  --white: #fff;
  --gray: #ececec;
  --light-gray: #f1f6fa;
  --yellow: #fec12a;
  --green: #1ac073;
  --blue: #000aff;
}

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

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

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

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

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

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

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

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

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

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

body {
  color: var(--main-black);
  line-height: 1;
  font-family: "Raleway";
  font-size: 1.0625rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Raleway";
  font-size: inherit;
}

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

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*=__container] {
  max-width: 71.25rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
padding: 0 0.9375rem;
}

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

.input {
  border-radius: 1.25rem;
  width: 100%;
  display: block;
  font-family: "Roboto";
  line-height: 1.15;
  border: 2px solid var(--gray);
  -webkit-transition: border-color 0.3s ease 0s;
  -o-transition: border-color 0.3s ease 0s;
  transition: border-color 0.3s ease 0s;
}

.input._form-focus {
  border-color: var(--main-black);
}

.input._form-error {
  border-color: red;
}

.input::-webkit-input-placeholder {
  font-size: inherit;
  color: inherit;
}

.input::-moz-placeholder {
  font-size: inherit;
  color: inherit;
}

.input:-ms-input-placeholder {
  font-size: inherit;
  color: inherit;
}

.input::-ms-input-placeholder {
  font-size: inherit;
  color: inherit;
}

.input::placeholder {
  font-size: inherit;
  color: inherit;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.select {
  position: relative;
}

.select input {
  outline: none;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  background: #fec12a;
  -webkit-box-shadow: 0px 2px 4px rgba(190, 190, 190, 0.25);
          box-shadow: 0px 2px 4px rgba(190, 190, 190, 0.25);
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  -webkit-transition: border-radius 0.3s ease 0s;
  -o-transition: border-radius 0.3s ease 0s;
  transition: border-radius 0.3s ease 0s;
}

._select-open .select__title {
  border-radius: 20px 20px 0 0;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  line-height: 1.2;
}

.select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: width 0.3s ease 0s, height 0.3s ease 0s, -webkit-transform 0.3s ease 0s, -webkit-box-flex 0.3s ease 0s;
  transition: width 0.3s ease 0s, height 0.3s ease 0s, -webkit-transform 0.3s ease 0s, -webkit-box-flex 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s, width 0.3s ease 0s, height 0.3s ease 0s, flex 0.3s ease 0s;
  transition: transform 0.3s ease 0s, width 0.3s ease 0s, height 0.3s ease 0s, flex 0.3s ease 0s;
  transition: transform 0.3s ease 0s, width 0.3s ease 0s, height 0.3s ease 0s, flex 0.3s ease 0s, -webkit-transform 0.3s ease 0s, -webkit-box-flex 0.3s ease 0s, -ms-flex 0.3s ease 0s;
  background: url("../img/icons/arr-down.svg") 0 0/cover no-repeat;
}

.step-3__select .select__value:after {
  background: url("../img/icons/search.svg") center center/cover no-repeat;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

._select-open .select__value:after {
  background: url("../img/icons/search.svg") 0 0/cover no-repeat;
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  position: absolute;
  min-width: 100%;
  left: 0;
  background: #fff;
  -webkit-box-shadow: 0px 2px 4px rgba(190, 190, 190, 0.25);
          box-shadow: 0px 2px 4px rgba(190, 190, 190, 0.25);
  border-radius: 0 0 20px 20px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 350px;
}

.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font-family: "Roboto";
}

.select__option:not(:last-child) {
  border-bottom: 1px solid var(--gray);
}

.select__option._select-selected {
  background-color: #eee;
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

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

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

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.875rem 0.625rem;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
}

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

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

.popup__wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100%;
  width: 100%;
}

.popup__content {
  width: 100%;
  max-width: 34.5625rem;
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  background-color: var(--white);
  border-radius: 0.9375rem;
  border: 1px solid var(--gray);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.lock .popup__content {
  visibility: visible;
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--main-black);
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  outline: none;
}

.popup__close--thanks {
  color: var(--green);
}

.popup__close svg {
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.popup__title {
  text-align: center;
  font-weight: 600;
  line-height: 1.1851851852;
}

.popup__descr {
  text-align: center;
  line-height: 1.1764705882;
}

.popup__row {
  max-width: 16.875rem;
  margin: 0px auto;
}

.popup .thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup .thanks__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: var(--green);
}

.popup .thanks__text {
  font-family: "Roboto";
  text-align: center;
  color: var(--add-black);
}

.popup .thanks__button {
  background-color: var(--green);
  color: #fff;
}

[class*=-ibg] {
  position: relative;
}

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

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

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0px auto;
  padding: 0.9em 0.75em 0.95em;
  line-height: 1.2;
  font-family: "Roboto";
  color: var(--main-black);
  background-color: var(--yellow);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 1.25rem;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
}

@supports (font-size: clamp( 0.875rem , 0.6071428571rem  +  0.9022556391vw , 1.25rem )) {
  .button {
    font-size: clamp( 0.875rem , 0.6071428571rem  +  0.9022556391vw , 1.25rem );
  }
}

@supports not (font-size: clamp( 0.875rem , 0.6071428571rem  +  0.9022556391vw , 1.25rem )) {
  .button {
    font-size: calc(0.875rem + 0.375 * (100vw - 29.6875rem) / 41.5625);
  }
}

.button:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.title {
  font-weight: 700;
  line-height: 1.15625;
  text-align: center;
  color: var(--add-black);
}

@supports (margin-bottom: clamp( 1rem , -0.0714285714rem  +  3.6090225564vw , 2.5rem )) {
  .title {
    margin-bottom: clamp( 1rem , -0.0714285714rem  +  3.6090225564vw , 2.5rem );
  }
}

@supports not (margin-bottom: clamp( 1rem , -0.0714285714rem  +  3.6090225564vw , 2.5rem )) {
  .title {
    margin-bottom: calc(1rem + 1.5 * (100vw - 29.6875rem) / 41.5625);
  }
}

@supports (font-size: clamp( 1.25rem , 0.7142857143rem  +  1.8045112782vw , 2rem )) {
  .title {
    font-size: clamp( 1.25rem , 0.7142857143rem  +  1.8045112782vw , 2rem );
  }
}

@supports not (font-size: clamp( 1.25rem , 0.7142857143rem  +  1.8045112782vw , 2rem )) {
  .title {
    font-size: calc(1.25rem + 0.75 * (100vw - 29.6875rem) / 41.5625);
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0 2.5rem 0;
  font-family: "Roboto";
  font-weight: 500;
  line-height: 0.85;
  /* color: var(--white); 
  border-top: 1px solid var(--gray);*/
}

.breadcrumbs__item {
  margin: 0 0.5rem 0.5rem 0;
}

.breadcrumbs__item:not(:last-child) {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumbs__item:not(:last-child)::after {
  content: ">";
  display: block;
  margin-left: 5px;
}

.hidden {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  /* IE6, IE7 */
  padding: 0;
  overflow: hidden;
}

.top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-header__logo {
  position: relative;
  z-index: 5;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@supports (flex-basis: clamp( 3.875rem , 2.7589285714rem  +  3.7593984962vw , 5.4375rem )) {
  .top-header__logo {
    -ms-flex-preferred-size: clamp( 3.875rem , 2.7589285714rem  +  3.7593984962vw , 5.4375rem );
        flex-basis: clamp( 3.875rem , 2.7589285714rem  +  3.7593984962vw , 5.4375rem );
  }
}

@supports not (flex-basis: clamp( 3.875rem , 2.7589285714rem  +  3.7593984962vw , 5.4375rem )) {
  .top-header__logo {
    -ms-flex-preferred-size: calc(3.875rem + 1.5625 * (100vw - 29.6875rem) / 41.5625);
        flex-basis: calc(3.875rem + 1.5625 * (100vw - 29.6875rem) / 41.5625);
  }
}

.top-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-header__link {
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.top-header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 2.5rem 0 0;
  font-family: "Robot";
  white-space: nowrap;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--white);
  background-color: var(--green);
  border-radius: 1.0625rem;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s ease 0s, color 0.3s ease 0s, background-color 0.3s ease 0s;
  -o-transition: border-color 0.3s ease 0s, color 0.3s ease 0s, background-color 0.3s ease 0s;
  transition: border-color 0.3s ease 0s, color 0.3s ease 0s, background-color 0.3s ease 0s;
}

.top-header__phone {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto";
  white-space: nowrap;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.top-header__phone svg:first-child {
  margin: 0 0.3125rem 0 0;
}

.menu__item {
  position: relative;
  padding: 0 0 1.125rem 0;
}

.menu__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.menu__button span {
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.active .menu__button {
  color: var(--yellow);
}

.active .menu__button svg:last-child {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.menu__button svg {
  -webkit-transition: color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s, transform 0.3s ease 0s;
  transition: color 0.3s ease 0s, transform 0.3s ease 0s;
  transition: color 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.menu__button svg:first-child {
  margin: 0 0.3125rem 0 0;
}

.menu__sublist:not([hidden]) {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[8];
  -ms-grid-columns: 1fr;
  grid-template: repeat(12, 1fr)/1fr;
  grid-auto-flow: column;/* row; */
  grid-auto-columns: 1fr;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}

.menu__subitem {
  white-space: nowrap;
  border-radius: 6px;
  -webkit-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.menu__sublink {
  display: block;
  padding: 0.5rem 0.8125rem 0.625rem;
}

.icon-menu {
  display: none;
}

.footer {
  background-color: var(--bg-black);
  font-family: "Roboto";
  color: var(--white);
}

@supports (margin-bottom: clamp( 1.5rem , -1rem  +  8.4210526316vw , 5rem )) {
  .footer__nav {
    margin-bottom: clamp( 1.5rem , -1rem  +  8.4210526316vw , 5rem );
  }
}

@supports not (margin-bottom: clamp( 1.5rem , -1rem  +  8.4210526316vw , 5rem )) {
  .footer__nav {
    margin-bottom: calc(1.5rem + 3.5 * (100vw - 29.6875rem) / 41.5625);
  }
}

.footer__link {
  font-weight: 500;
  line-height: 1.1764705882;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.footer__copyright {
  line-height: 1.1333333333;
}

@supports (margin-bottom: clamp( 2.5rem , 0.6541450777rem  +  6.2176165803vw , 6.25rem )) {
  [class*=page__] {
    margin-bottom: clamp( 2.5rem , 0.6541450777rem  +  6.2176165803vw , 6.25rem );
  }
}

@supports not (margin-bottom: clamp( 2.5rem , 0.6541450777rem  +  6.2176165803vw , 6.25rem )) {
  [class*=page__] {
    margin-bottom: calc(2.5rem + 3.75 * (100vw - 29.6875rem) / 60.3125);
  }
}

.hero__body:not([hidden]) {
  background-color: var(--light-gray);
}

.hero__title {
  color: var(--add-black);
  line-height: 1.1621621622;
  font-weight: 700;
}

@supports (font-size: clamp( 1.5rem , 0.9196428571rem  +  1.954887218vw , 2.3125rem )) {
  .hero__title {
    font-size: clamp( 1.5rem , 0.9196428571rem  +  1.954887218vw , 2.3125rem );
  }
}

@supports not (font-size: clamp( 1.5rem , 0.9196428571rem  +  1.954887218vw , 2.3125rem )) {
  .hero__title {
    font-size: calc(1.5rem + 0.8125 * (100vw - 29.6875rem) / 41.5625);
  }
}

.hero__descr {
  line-height: 1.15;
}

@supports (font-size: clamp( 0.875rem , 0.6071428571rem  +  0.9022556391vw , 1.25rem )) {
  .hero__descr {
    font-size: clamp( 1.2rem , 0.6071428571rem  +  0.9022556391vw , 1.25rem );
  }
}

@supports not (font-size: clamp( 0.875rem , 0.6071428571rem  +  0.9022556391vw , 1.25rem )) {
  .hero__descr {
    font-size: calc(0.875rem + 0.375 * (100vw - 29.6875rem) / 41.5625);
  }
}

.hero__image {
  width: 100%;
}

.hero__image img {
  width: 50%;

  -o-object-fit: cover;
     object-fit: cover;
}

.benefits__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.benefits__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.benefits__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.benefits__label {
  display: block;
  margin: 0 0 0.375rem 0;
  font-weight: 600;
  line-height: 1.1666666667;
}

@supports (font-size: clamp( 1rem , 0.6428571429rem  +  1.2030075188vw , 1.5rem )) {
  .benefits__label {
    font-size: clamp( 1.3rem , 0.6428571429rem  +  1.2030075188vw , 1.5rem );
  }
}

@supports not (font-size: clamp( 1rem , 0.6428571429rem  +  1.2030075188vw , 1.5rem )) {
  .benefits__label {
    font-size: calc(1rem + 0.5 * (100vw - 29.6875rem) / 41.5625);
  }
}

.benefits__descr {
  max-width: 10.625rem;
  line-height: 1.1875;
}

@supports (font-size: clamp( 0.75rem , 0.5714285714rem  +  0.6015037594vw , 1rem )) {
  .benefits__descr {
    font-size: clamp( 1rem , 0.5714285714rem  +  0.6015037594vw , 1rem );
  }
}

@supports not (font-size: clamp( 0.75rem , 0.5714285714rem  +  0.6015037594vw , 1rem )) {
  .benefits__descr {
    font-size: calc(0.75rem + 0.25 * (100vw - 29.6875rem) / 41.5625);
  }
}

.benefits__descr--long {
  max-width: 13.4375rem;
}

@supports (margin-bottom: clamp( 1rem , 0.2857142857rem  +  2.4060150376vw , 2rem )) {
  .address__title {
    margin-bottom: clamp( 1rem , 0.2857142857rem  +  2.4060150376vw , 2rem );
  }
}

@supports not (margin-bottom: clamp( 1rem , 0.2857142857rem  +  2.4060150376vw , 2rem )) {
  .address__title {
    margin-bottom: calc(1rem + 1 * (100vw - 29.6875rem) / 41.5625);
  }
}

.address__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stations__item:not(:last-child) {
  margin: 0 0 0.9375rem 0;
}

.item-stations {
  padding: 0.9375rem;
  border-radius: 1.25rem;
  border: 2px solid var(--gray);
  font-family: "Roboto";
  cursor: pointer;
}
.item-stations:nth-child(n+4){
    display: none;
}

.item-stations__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0.625rem 0;
}

.item-stations__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.1666666667;
  font-weight: 500;
}

@supports (font-size: clamp( 0.875rem , 0.4285714286rem  +  1.5037593985vw , 1.5rem )) {
  .item-stations__name {
    font-size: clamp( 0.875rem , 0.4285714286rem  +  1.5037593985vw , 1.5rem );
  }
}

@supports not (font-size: clamp( 0.875rem , 0.4285714286rem  +  1.5037593985vw , 1.5rem )) {
  .item-stations__name {
    font-size: calc(0.875rem + 0.625 * (100vw - 29.6875rem) / 41.5625);
  }
}

.item-stations__name svg {
  margin-right: 4px;
  color: #ff0000;
}

.item-stations__shedule {
  line-height: 1.1764705882;
}

.item-stations__icon {
  margin: 0 0 0.625rem 0;
}

.item-stations__quantity {
  line-height: 0.8571428571;
}

.item-stations__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.item-stations__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.item-stations__image:not(:last-child) {
  margin: 0 0.625rem 0 0;
}

.item-stations__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-stations__address {
  margin: 0 0 1.25rem 0;
  line-height: 0.8571428571;
  font-family: "Roboto";
  font-style: normal;
}

.item-stations__button {
  max-width: 12.5rem;
  padding: 0.625rem;
  margin: 0px auto;
}

.make-order__body {
  counter-reset: counter;
}

.make-order__item:not(:last-child) .item-step__inner {
  position: relative;
}

.make-order__item:not(:last-child) .item-step__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
}

.item-step {
  counter-increment: counter;
}

.item-step__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--white);
}

.item-step__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: var(--yellow);
}

.item-step__icon::after {
  content: counter(counter);
  line-height: 1;
  font-weight: 600;
  text-align: center;
  display: block;
  margin: -0.25em 0 0 0;
}

@supports (font-size: clamp( 1.25rem , 0.7142857143rem  +  1.8045112782vw , 2rem )) {
  .item-step__icon::after {
    font-size: clamp( 1.25rem , 0.7142857143rem  +  1.8045112782vw , 2rem );
  }
}

@supports not (font-size: clamp( 1.25rem , 0.7142857143rem  +  1.8045112782vw , 2rem )) {
  .item-step__icon::after {
    font-size: calc(1.25rem + 0.75 * (100vw - 29.6875rem) / 41.5625);
  }
}

.item-step__descr {
  line-height: 1.1176470588;
  max-width: 14.375rem;
}

.item-step__button {
  display: inline;
  color: #000aff;
}

.tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tabs__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 16.875rem;
          flex: 0 1 16.875rem;
  line-height: 1.2;
  background-color: var(--light-gray);
  border-radius: 1.25rem;
  -webkit-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.tabs__title._tab-active {
  background-color: var(--gray);
}

.tabs__body--reviews {
  max-width: 760px;
//  height: 800px;
  overflow: hidden;
  position: relative;
}

.tabs__body--reviews iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tabs__body--reviews a {
  text-decoration: none;
  color: #b3b3b3;
  font-size: 10px;
  font-family: "YS Text", sans-serif;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  left: 0;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: block;
  max-height: 14px;
  white-space: nowrap;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.spollers__item {
  border: 2px solid var(--gray);
  border-radius: 30px;
}

.spollers__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-weight: 600;
  text-align: left;
}

.spollers__title::after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background: url("../img/icons/arr-down.svg") 0 0/cover no-repeat;
}

.spollers__title._spoller-active::after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.spollers__body {
  max-width: 95%;
}

.spollers__button {
  color: #000aff;
  text-decoration: underline;
}

.ask-us__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid var(--gray);
  border-radius: 1.25rem;
}

.ask-us__photo {
  border-radius: 50%;
  overflow: hidden;
}

.ask-us__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ask-us__title {
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  line-height: 1.15;
  color: var(--add-black);
  text-align: center;
}

.ask-us__descr {
  max-width: 16.875rem;
  margin: 0px auto;
  line-height: 1.1764705882;
  text-align: center;
}

@supports (margin-bottom: clamp( 1.5rem , 0.6964285714rem  +  2.7067669173vw , 2.625rem )) {
  .ask-us__descr {
    margin-bottom: clamp( 1.5rem , 0.6964285714rem  +  2.7067669173vw , 2.625rem );
  }
}

@supports not (margin-bottom: clamp( 1.5rem , 0.6964285714rem  +  2.7067669173vw , 2.625rem )) {
  .ask-us__descr {
    margin-bottom: calc(1.5rem + 1.125 * (100vw - 29.6875rem) / 41.5625);
  }
}

.quiz__inner {
  max-width: 60.8125rem;
  margin: 0px auto;
}

.quiz__button-back {
  padding: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  -webkit-transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
}

.quiz__button-back svg {
  margin: 0 0.625rem 0 0;
}

.quiz__title {
  font-weight: 700;
  color: var(--add-black);
  text-align: center;
}

@supports (font-size: clamp( 1.25rem , 0.9375rem  +  1.0526315789vw , 1.6875rem )) {
  .quiz__title {
    font-size: clamp( 1.25rem , 0.9375rem  +  1.0526315789vw , 1.6875rem );
  }
}

@supports not (font-size: clamp( 1.25rem , 0.9375rem  +  1.0526315789vw , 1.6875rem )) {
  .quiz__title {
    font-size: calc(1.25rem + 0.4375 * (100vw - 29.6875rem) / 41.5625);
  }
}

.step-1 {
  min-height: 330px;
}

.step-1__label, .label_other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 1px solid var(--gray);
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease 0s, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease 0s, -webkit-box-shadow 0.3s ease;
  -o-transition: border-color 0.3s ease 0s, box-shadow 0.3s ease;
  transition: border-color 0.3s ease 0s, box-shadow 0.3s ease;
  transition: border-color 0.3s ease 0s, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.step-1__label--other,.label_other {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@supports (width: clamp( 6.25rem , 4.0178571429rem  +  7.5187969925vw , 9.375rem )) {
  .step-1__image {
    width: clamp( 6.25rem , 4.0178571429rem  +  7.5187969925vw , 9.375rem );
  }
}

@supports not (width: clamp( 6.25rem , 4.0178571429rem  +  7.5187969925vw , 9.375rem )) {
  .step-1__image {
    width: calc(6.25rem + 3.125 * (100vw - 29.6875rem) / 41.5625);
  }
}

.step-1__label--second .step-1__image {
  margin: 0 0 1.25rem 0;
}

.step-1__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.step-1__caption {
  font-weight: 600;
  text-align: center;
}

.step-1__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.step-1__input:checked + .step-1__label {
  border-color: var(--yellow);
}

.step-3__content, .step-2__select, .select_block {
  width: 25.625rem;
  margin: 0px auto;
}

.step-3__select{
  margin: 0 0 1.25rem 0;
}

.step-3__tooltip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto";
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.step-3__tooltip svg {
  margin: 0 0.3125rem 0 0;
}

.step-3__tooltip span {
  text-decoration: underline;
}

@supports (margin-bottom: clamp( 0.5rem , -0.9285714286rem  +  4.8120300752vw , 2.5rem )) {
  .step-4__content {
    margin-bottom: clamp( 0.5rem , -0.9285714286rem  +  4.8120300752vw , 2.5rem );
  }
}

@supports not (margin-bottom: clamp( 0.5rem , -0.9285714286rem  +  4.8120300752vw , 2.5rem )) {
  .step-4__content {
    margin-bottom: calc(0.5rem + 2 * (100vw - 29.6875rem) / 41.5625);
  }
}

.step-4__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.step-4__item--other {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.step-4__item:nth-child(n+5){
    display: none;
}
.step-4__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.step-4__input:checked + .step-5__item {
  border-color: #1ac073;
}

.step-4__label, .label_other-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--light-gray);
  cursor: pointer;
  border: 1px solid var(--gray);
  border-radius: 15px;
  -webkit-transition: border-color 0.3s ease 0s, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease 0s, -webkit-box-shadow 0.3s ease;
  -o-transition: border-color 0.3s ease 0s, box-shadow 0.3s ease;
  transition: border-color 0.3s ease 0s, box-shadow 0.3s ease;
  transition: border-color 0.3s ease 0s, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.step-4__label--other, .label_other-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-radius: 20px;
}

.step-4__image {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}

@supports (flex-basis: clamp( 4.625rem , 0.7857142857rem  +  12.9323308271vw , 10rem )) {
  .step-4__image {
    -ms-flex-preferred-size: clamp( 4.625rem , 0.7857142857rem  +  12.9323308271vw , 10rem );
        flex-basis: clamp( 4.625rem , 0.7857142857rem  +  12.9323308271vw , 10rem );
  }
}

@supports not (flex-basis: clamp( 4.625rem , 0.7857142857rem  +  12.9323308271vw , 10rem )) {
  .step-4__image {
    -ms-flex-preferred-size: calc(4.625rem + 5.375 * (100vw - 29.6875rem) / 41.5625);
        flex-basis: calc(4.625rem + 5.375 * (100vw - 29.6875rem) / 41.5625);
  }
}

.step-4__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
}

.step-4__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.step-4__caption {
  display: block;
  font-weight: 700;
  /* white-space: nowrap; */
}

@supports (font-size: clamp( 0.875rem , 0.6517857143rem  +  0.7518796992vw , 1.1875rem )) {
  .step-4__caption {
    font-size: clamp( 1rem , 0.6517857143rem  +  0.7518796992vw , 1.1875rem );
  }
}

@supports not (font-size: clamp( 0.875rem , 0.6517857143rem  +  0.7518796992vw , 1.1875rem )) {
  .step-4__caption {
    font-size: calc(0.875rem + 0.3125 * (100vw - 29.6875rem) / 41.5625);
  }
}

.step-4__decr {
  line-height: 1.1764705882;
}

@supports (font-size: clamp( 0.75rem , 0.5267857143rem  +  0.7518796992vw , 1.0625rem )) {
  .step-4__decr {
    font-size: clamp( 0.75rem , 0.5267857143rem  +  0.7518796992vw , 1.0625rem );
  }
}

@supports not (font-size: clamp( 0.75rem , 0.5267857143rem  +  0.7518796992vw , 1.0625rem )) {
  .step-4__decr {
    font-size: calc(0.75rem + 0.3125 * (100vw - 29.6875rem) / 41.5625);
  }
}

.step-4__other, .step__other{
  font-weight: 600;
}

.step-5__content {
  margin: 0 0 3.125rem 0;
}

.step-5__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.3125rem;
  border-radius: 15px;
  background-color: var(--light-gray);
}

.step-5__item--additional {
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: border-color 0.3s ease 0s;
  -o-transition: border-color 0.3s ease 0s;
  transition: border-color 0.3s ease 0s;
}

.step-5__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.step-5__title {
  display: block;
  font-weight: 700;
  line-height: 1.1578947368;
}

.step-5__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.step-5__price {
  display: block;
  line-height: 1.1764705882;
  font-family: "Roboto";
}

.step-5__button {
  font-family: "Roboto";
  color: var(--main-black);
  background-color: var(--yellow);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 1.25rem;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
}

.step-5__button:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.step-5__caption {
  line-height: 1.1875;
  font-weight: 700;
}

@supports (font-size: clamp( 1rem , 0.6875rem  +  1.0526315789vw , 1.4375rem )) {
  .step-5__caption {
    font-size: clamp( 1rem , 0.6875rem  +  1.0526315789vw , 1.4375rem );
  }
}

@supports not (font-size: clamp( 1rem , 0.6875rem  +  1.0526315789vw , 1.4375rem )) {
  .step-5__caption {
    font-size: calc(1rem + 0.4375 * (100vw - 29.6875rem) / 41.5625);
  }
}

.step-5__items {
  display: -ms-grid;
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  row-gap: 30px;
}

.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  -webkit-transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, -webkit-transform;
  -o-transition-property: transform, visibility, opacity;
  transition-property: transform, visibility, opacity;
  transition-property: transform, visibility, opacity, -webkit-transform;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  -webkit-transform-origin: center left;
      -ms-transform-origin: center left;
          transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  -webkit-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
       -o-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
          transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

@media (min-width: 29.99875em) {
  .input {
    padding: 1.1875rem 1.875rem 1.125rem;
    font-size: 1.25rem;
  }

  .select__value {
    height: 3.75rem;
    padding: 0.875rem 0.8125rem 0.875rem 1.125rem;
    font-size: 1.25rem;
  }

  .select__value:after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }

  .step-3__select .select__value:after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 19px;
            flex: 0 0 19px;
    width: 19px;
    height: 19px;
  }

  ._select-open .select__value:after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23px;
            flex: 0 0 23px;
    width: 23px;
    height: 23px;
  }

  .select__options {
    top: 59px;
    padding: 0px 35px;
  }

  .step-3__select .select__options {
    top: 130px;
    padding: 0;
  }

  .step-3__select .select__scroll {
    max-height: 335px;
  }

  .select__option {
    padding: 15px 20px;
  }

  .popup__content {
    padding: 4.0625rem 2.8125rem 3.75rem;
  }

  .popup__title {
    margin: 0 0 1.125rem 0;
    font-size: 1.6875rem;
  }

  .popup__descr {
    margin: 0 0 2.5rem 0;
  }

  .popup__row:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .popup .thanks__icon {
    width: 82px;
    height: 82px;
    margin: 0 0 1.875rem 0;
  }

  .popup .thanks__text {
    margin: 0 0 3.125rem 0;
    line-height: 1.4705882353;
  }

  .button {
    max-width: 16.875rem;
  }

  .breadcrumbs {
    margin: 0 0 1.25rem 0;
    padding: 0 0 2.5rem 0;
  }

  .top-header__logo {
    margin: 0 2.5rem 0 0;
  }

  .top-header__link {
    font-size: 1rem;
    font-weight: 600;
  }

  .top-header__button {
    font-size: 1rem;
    max-width: 10rem;
  }

  .top-header__phone {
    font-size: 1.125rem;
  }

  .menu__button {
    font-size: 1rem;
    font-family: "Roboto";
    font-weight: 500;
  }

  .menu__sublink {
    font-size: 0.875rem;
    font-family: "Roboto";
  }

  .footer {
    padding: 1.6875rem 0 1.25rem;
  }

  .footer__nav {
    margin-right: -2.5rem;
  }

  .footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer__item {
    margin: 0 2.5rem 0.6875rem 0;
  }

  .footer__copyright {
    font-size: 0.9375rem;
  }

  .page__questions {
    margin: 0 0 1.25rem 0;
  }

  .hero__title {
    margin: 0 0 1.25rem 0;
  }

  .hero__descr {
    margin: 0 0 2.5rem 0;
  }

  .benefits__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 2.1875rem;
            flex: 0 0 2.1875rem;
    margin: 0 0.9375rem 0 0;
  }

  .stations__select {
    margin: 0 0 1.875rem 0;
  }

  .item-stations__name {
    margin: 0 0 0.3125rem 0;
  }

  .item-stations__images {
    margin: 0 0 0.75rem 0;
  }

  .item-stations__button {
    font-size: 1.0625rem;
  }

  .make-order__body {
    display: -ms-grid;
    display: grid;
    gap: 1.25rem;
  }

  .make-order__item:not(:last-child) .item-step__inner::before {
    top: 0;
    height: 50%;
    border-bottom: 1px dashed #000;
  }

  .item-step__inner {
    margin: 0 0 0.625rem 0;
  }

@supports (width: clamp( 3.4375rem , 0.9821428571rem  +  8.2706766917vw , 6.875rem )) {
    .item-step__inner {
      width: clamp( 3.4375rem , 0.9821428571rem  +  8.2706766917vw , 6.875rem );
    }
}

@supports not (width: clamp( 3.4375rem , 0.9821428571rem  +  8.2706766917vw , 6.875rem )) {
    .item-step__inner {
      width: calc(3.4375rem + 3.4375 * (100vw - 29.6875rem) / 41.5625);
    }
}

@supports (height: clamp( 2.5rem , 0.7142857143rem  +  6.015037594vw , 5rem )) {
    .item-step__inner {
      height: clamp( 2.5rem , 0.7142857143rem  +  6.015037594vw , 5rem );
    }
}

@supports not (height: clamp( 2.5rem , 0.7142857143rem  +  6.015037594vw , 5rem )) {
    .item-step__inner {
      height: calc(2.5rem + 2.5 * (100vw - 29.6875rem) / 41.5625);
    }
}

  .item-step__icon {
    height: 100%;
  }

@supports (width: clamp( 2.5rem , 0.7142857143rem  +  6.015037594vw , 5rem )) {
    .item-step__icon {
      width: clamp( 2.5rem , 0.7142857143rem  +  6.015037594vw , 5rem );
    }
}

@supports not (width: clamp( 2.5rem , 0.7142857143rem  +  6.015037594vw , 5rem )) {
    .item-step__icon {
      width: calc(2.5rem + 2.5 * (100vw - 29.6875rem) / 41.5625);
    }
}

  .tabs__navigation {
    margin: 0 0 1.875rem 0;
  }

  .tabs__title {
    padding: 1.1875rem 0 1.125rem;
    font-family: "Roboto";
    font-size: 1.25rem;
  }

  .tabs__title:not(:last-child) {
    margin: 0 1.25rem 0 0;
  }

  .tabs__body--descr p {
    font-size: 18px;
  }

  .tabs__body--descr p:not(:last-child) {
    margin: 0 0 1.875rem 0;
  }

  .spollers__item {
    padding: 0.875rem 1.875rem;
    font-size: 1.0625rem;
  }

  .spollers__item:not(:last-child) {
    margin: 0 0 1.25rem 0;
  }

  .spollers__title::after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }

  .spollers__body {
    padding: 1.25rem 0 0.625rem 0;
  }

  .ask-us__body {
    padding: 1.25rem 0;
  }

  .ask-us__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.25rem;
            flex: 0 0 6.25rem;
    width: 6.25rem;
    margin: 0 0 1rem 0;
  }

  .ask-us__title {
    font-size: 1.5rem;
  }

  .ask-us__button:not(:last-child) {
    margin: 0 0 1rem 0;
  }

  .quiz__top-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 2.5rem 0;
  }

  .quiz__button-back {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.5rem;
            flex: 0 0 6.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 20px;
    border: 1px solid var(--gray);
  }

@supports (margin-right: clamp( 1.25rem , -10.9375rem  +  41.0526315789vw , 18.3125rem )) {
    .quiz__button-back {
      margin-right: clamp( 1.25rem , -10.9375rem  +  41.0526315789vw , 18.3125rem );
    }
}

@supports not (margin-right: clamp( 1.25rem , -10.9375rem  +  41.0526315789vw , 18.3125rem )) {
    .quiz__button-back {
      margin-right: calc(1.25rem + 17.0625 * (100vw - 29.6875rem) / 41.5625);
    }
}

  .step-1__items, .step-2__items, .step_block {
    display: -ms-grid;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .step-1__label, .label_other {
    padding: 0 0.3125rem 0.3125rem;
  }

  .step-1__label--second {
    padding: 1.25rem 0.3125rem;
  }

  .step-3 {
    height: 37.5rem;
  }

  .step-3__tooltip {
    padding: 0 0 0 2.9375rem;
    font-size: 0.9375rem;
  }

  .step-4__label, .label_other-4 {
    padding: 0.3125rem 1.875rem 0.3125rem 0.3125rem;
  }

  .step-4__label--other, .label_other-4 {
    max-width: 10rem;
    padding: 0.5625rem;
    background-color: var(--white);
  }

  .step-4__image {
    margin: 0 1.25rem 0 0;
  }

  .step-4__info {
    padding: 1.25rem 0 0 0;
  }

  .step-4__caption {
    margin: 0 0 1rem 0;
  }

  .step-4__other, .step__other {
    font-size: 0.9375rem;
  }

  .step-5__info {
    padding: 1.1875rem 0 0 0;
  }

  .step-5__title {
    margin: 0 0 1.875rem 0;
    font-size: 24px;
  }

  .step-5__price {
    margin: 0 2rem 0 0;
  }

  .step-5__button {
    padding: 0.625rem 2.375rem;
  }

  .step-5__caption {
    margin: 0 0 1.25rem 0;
  }
}

@media (min-width: 34.375em) {
  .quiz__step {
    padding: 1.75rem 1.875rem;
    border: 1px solid var(--gray);
    border-radius: 20px;
  }
}

@media (min-width: 40.625em) {
  .top-header__menu {
    margin: 0 2.625rem 0 0;
  }

  .top-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .top-header__item-list:not(:last-child) {
    margin: 0 0.8125rem 0 0;
  }
}

@media (min-width: 47.99875em) {
  .hero__body:not([hidden]) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 1.25rem;
    /* overflow: hidden; */
  }

  .hero__info {
    margin: 0 1.25rem 0 0;
  }

  .hero__button {
    margin-left: 2.375rem;
  }

  .hero__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 57.0175438596%;
            flex: 0 1 57.0175438596%;
  }

  .make-order__body {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }

  .make-order__item:not(:last-child) .item-step__inner::before {
    right: -150%;
    width: 150%;
  }

  .quiz__container {
    padding: 0;
  }
}

@media (min-width: 59.375em) {
  .hero__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26.25rem;
            flex: 0 0 26.25rem;
  }
}

@media (min-width: 61.99875em) {
  .header__body {
    padding: 1.125rem 0 0;
  }

  .top-header {
    border-bottom: 1px solid var(--gray);
    padding: 2.8125rem 0 1.4375rem;
  }

  .top-header__button {
    padding: 0.375rem 1.375rem;
  }

  .top-header__shedule {
    margin: 0 2.8125rem 0 0;
    font-size: 1rem;
    font-weight: 600;
  }

  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .menu__item:not(:last-child) {
    margin: 0 1.375rem 0 0;
  }

  .menu__sublist:not([hidden]) {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    padding: 0.5rem 0.5rem 1.125rem;
    -webkit-box-shadow: 4px 0px 24px rgba(0, 0, 0, 0.15), 0px 4px 24px rgba(0, 0, 0, 0.15);
            box-shadow: 4px 0px 24px rgba(0, 0, 0, 0.15), 0px 4px 24px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background-color: var(--white);
  }

  .page__hero {
    padding-top: 1.5rem;
  }



  .address__stations {
    margin: 0 1.25rem 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 38.1578947368%;
            flex: 0 1 38.1578947368%;
    max-height: 615px;
  }

  .address__map {
    min-height: 26.875rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 59.3859649123%;
            flex: 0 1 59.3859649123%;
  }

  .make-order__body {
    padding-left: 36px;
  }

  .step-4__content {
    display: -ms-grid;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }

  .step-5 {
    padding: 1.75rem 1.875rem 3.125rem;
  }
}

@media (min-width: 61.99875em) and (any-hover: hover) {
  .menu__sublist:not([hidden]) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s;
    -o-transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s;
    transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s;
  }
}

@media (min-width: 63.99875em) {
  .benefits__body {
    display: -ms-grid;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
}

@media (min-width: 71.875em) {
  .hero__info {
    padding: 2.1875rem 0 2.5rem 3.75rem;
  }
}

@media (min-width: 75em) {
  .step-4 {
    min-height: 37.5rem;
  }
}

@media (max-width: 61.99875em) {
  .header__body {
    display: none;
  }

  .top-header {
    padding: 1rem 0;
  }

  .top-header__button {
    margin: 0 0 1.875rem 0;
    padding: 0.4375rem 0.75rem;
  }

  .top-header__shedule {
    display: none;
  }

  .top-header__phone {
    margin: 0 1.875rem 0 0;
  }

  .menu__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    overflow: auto;
    background-color: var(--white);
    padding: 4.4375rem 0.9375rem 1.5rem;
    -webkit-transition: left 0.3s ease 0s;
    -o-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    z-index: 4;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 53.42px;
    left: -100%;
    top: 0;
    background-color: #fff;
    opacity: 0.8;
    border-bottom: 1px solid var(--gray);
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__list {
    max-width: 26.875rem;
  }

  .menu__item {
    width: 100%;
  }

  .menu__button {
    width: 100%;
  }

  .menu__button span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1.71875rem;
    height: 1.03125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: var(--main-black);
    -webkit-transition: width 0.3s ease 0s, top 0.3s ease 0s, bottom 0.3s ease 0s, opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    transition: width 0.3s ease 0s, top 0.3s ease 0s, bottom 0.3s ease 0s, opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, top 0.3s ease 0s, bottom 0.3s ease 0s, transform 0.3s ease 0s, opacity 0.3s ease 0s;
    transition: width 0.3s ease 0s, top 0.3s ease 0s, bottom 0.3s ease 0s, transform 0.3s ease 0s, opacity 0.3s ease 0s;
    transition: width 0.3s ease 0s, top 0.3s ease 0s, bottom 0.3s ease 0s, transform 0.3s ease 0s, opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu {
    opacity: 0.5;
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .address__map {
    min-height: auto;

  }

  .stations__select {
    width: 68.9655172414%;
    margin: 0 auto 1.875rem;
  }

  .step-5__items {
    gap: 30px;
  }
}

@media (max-width: 47.99875em) {
  .hero__container {
    padding: 0;
  }

  .hero__info {
    margin-bottom: 2.1875rem;
    padding: 1.5rem 0.9375rem 0;
  }

  .make-order__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .item-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 40.625em) {
  .top-header__menu {
    max-width: 26.875rem;
    margin: 0 0 1.25rem 0;
  }

  .top-header__item-list:not(:last-child) {
    margin: 0 0 1.25rem 0;
  }
}

@media (max-width: 34.375em) {
  .quiz__step {
    padding: 0.3125rem;
  }
}

@media (max-width: 29.99875em) {
  .input {
    padding: 0.8125rem 1.375rem 0.6875rem;
    font-size: 0.875rem;
  }

  .select__value {
    height: 2.5rem;
    padding: 0.625rem 1.125rem;
    font-size: 0.875rem;
  }

  .select__value:after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  .step-3__select .select__value:after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12px;
            flex: 0 0 12px;
    width: 12px;
    height: 12px;
  }

  ._select-open .select__value:after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15px;
            flex: 0 0 15px;
    width: 15px;
    height: 15px;
  }

  .select__options {
    top: 39px;
    padding: 0px 20px;
  }

  .step-3__select .select__options {
    top: 90px;
    padding: 0;
  }

  .step-3__select .select__scroll {
    max-height: 250px;
  }

  .select__option {
    padding: 10px 10px;
    font-size: 1rem;
  }

  .popup__content {
    padding: 1.875rem 1.125rem 2.5rem;
  }

  .popup__title {
    margin: 0 0 0.625rem 0;
    font-size: 1.25rem;
  }

  .popup__descr {
    margin: 0 0 1.875rem 0;
    font-size: 0.875rem;
  }

  .popup__row:not(:last-child) {
    margin-bottom: 0.625rem;
  }

  .popup .thanks__icon {
    width: 64px;
    height: 64px;
    margin: 0 0 0.625rem 0;
  }

  .popup .thanks__text {
    margin: 0 0 1.875rem 0;
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }

  .button {
    max-width: 12.5rem;
  }

  .breadcrumbs {
    margin: 0 0 0.6875rem 0;
    padding: 0 0 1rem 0;
    font-size: 0.875rem;
  }

  .top-header__logo {
    margin: 0 1.875rem 0 0;
  }

  .top-header__link {
    font-size: 0.875rem;
    font-weight: 500;
  }

  .top-header__button {
    max-width: 8.75rem;
    font-size: 0.875rem;
  }

  .top-header__phone {
    font-size: 0.875rem;
  }

  .menu__button {
    font-size: 0.875rem;
    font-weight: 600;
  }

  .menu__sublink {
    font-size: 0.75rem;
  }

  .footer {
    padding: 1rem 0 0.5rem;
  }

  .footer__item {
    margin: 0 0 0.6875rem 0;
  }

  .footer__link {
    font-size: 0.875rem;
  }

  .footer__copyright {
    font-size: 0.75rem;
  }

  .page__questions {
    margin: 0 0 0.75rem 0;
  }

  .hero__title {
    margin: 0 0 1rem 0;
  }

  .hero__descr {
    margin: 0 0 2rem 0;
  }

  .hero__button {
    margin: 0 auto;
  }

  .benefits__body {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 15px;
  }

  .benefits__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 1.25rem;
            flex: 0 0 1.25rem;
    margin: 0 0.1875rem 0 0;
  }

  .address__stations {
    margin: 0 0 1rem 0;
  }

  .address__map {
    margin: 0 0 1rem 0;
  }

  .stations__select {
    margin: 0 auto 1rem;
  }

  .item-stations__name {
    margin: 0 0 0.5rem 0;
  }

  .item-stations__name svg {
    width: 13px;
    height: 10px;
  }

  .item-stations__shedule {
    font-size: 0.75rem;
  }

  .item-stations__icon {
    margin: 0 0 0.5rem 0;
  }

  .item-stations__icon svg {
    width: 78px;
    height: 14px;
  }

  .item-stations__quantity {
    font-size: 0.75rem;
  }

  .item-stations__images {
    margin: 0 0 1rem 0;
  }

  .item-stations__address {
    font-size: 0.75rem;
  }

  .item-stations__button {
    font-size: 0.875rem;
    max-width: 12.5rem;
    padding: 0.75rem;
  }

  .make-order__item:not(:last-child) {
    margin: 0 0 0.6875rem 0;
  }

  .make-order__item:not(:last-child) .item-step__inner::before {
    width: 50%;
    height: 50%;
    border-right: 1px dashed #000;
    top: 100%;
    left: 0;
  }

  .item-step__inner {
    width: 2.5rem;
    height: 3rem;
    margin: 0 0.3125rem 0 0;
  }

  .item-step__icon {
    width: 100%;
    height: 2.5rem;
  }

  .item-step__descr {
    font-size: 0.875rem;
  }

  .tabs__navigation {
    margin: 0 0 1rem 0;
  }

  .tabs__title {
    padding: 0.5rem;
    font-size: 0.875rem;
  }

  .tabs__title:not(:last-child) {
    margin: 0 0.625rem 0 0;
  }

  .tabs__body--descr p {
    font-size: 16px;
  }

  .tabs__body--descr p:not(:last-child) {
    margin: 0 0 1rem 0;
  }

  .spollers__item {
    padding: 0.5625rem 0.75rem 0.4375rem;
    font-size: 0.875rem;
  }

  .spollers__item:not(:last-child) {
    margin: 0 0 0.5rem 0;
  }

  .spollers__title::after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  .spollers__body {
    padding: 0.625rem 0;
  }

  .ask-us__body {
    padding: 0.5rem 0;
  }

  .ask-us__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4.375rem;
            flex: 0 0 4.375rem;
    width: 4.375rem;
    margin: 0 0 0.5rem 0;
  }

  .ask-us__title {
    font-size: 1.25rem;
  }

  .ask-us__descr {
    font-size: 0.875rem;
  }

  .ask-us__button:not(:last-child) {
    margin: 0 0 0.5rem 0;
  }

  .quiz__top-row {
    margin: 0 0 1.25rem 0;
  }

  .quiz__button-back {
    margin: 0 0 0.625rem 0;
  }

  .quiz__button-back span {
    display: none;
  }

  .step-1__items, .step-2__items {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .step-2__select {
      width: 19rem;
  }
  .step-1__label {
    padding: 0rem 0.9375rem 0.625rem;
  }

  .step-1__caption {
    font-size: 0.875rem;
  }

  .step-3 {
    height: 25rem;
  }

  .step-3__tooltip {
    font-size: 0.75rem;
  }

  .step-3__tooltip svg {
    width: 12px;
    height: 12px;
  }

  .step-4__item:not(:last-child) {
    margin: 0 0 0.5rem 0;
  }

  .step-4__label, .label_other-4 {
    padding: 0.3125rem 0.9375rem 0.3125rem 0.3125rem;
  }

  .step-4__label--other, .label_other-4 {
    padding: 0.75rem;
  }

  .step-4__image {
    margin: 0 0.9375rem 0 0;
  }

  .step-4__info {
    padding: 0.3125rem 0 0 0;
  }

  .step-4__caption {
    margin: 0 0 0.5rem 0;
  }

  .step-4__decr {
    font-size: 1rem;
  }

  .step-4__other, .step__other {
    font-size: 0.875rem;
  }

  .step-5__info {
    padding: 0.5rem 0 0 0;
  }

  .step-5__title {
    margin: 0 0 0.625rem 0;
    font-size: 1.2rem;
  }

  .step-5__price {
    margin: 0 0.6875rem 0 0;
    font-size: 1rem;
  }

  .step-5__button {
    padding: 0.5rem 1.1875rem;
    font-size: 0.75rem;
  }

  .step-5__caption {
    margin: 0 0 1.125rem 0;
  }

  .step-5__items {
    gap: 8px;
  }
}

@media (min-width: 61.99875em) and (max-width: 73.125em) {
  .menu__item:last-child .menu__sublist {
    left: -30%;
  }
}

@media (min-width: 47.99875em) and (max-width: 59.375em) {
  .hero__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23.125rem;
            flex: 0 0 23.125rem;
  }
}

@media (min-width: 47.99875em) and (max-width: 71.875em) {
  .hero__info {
    padding: 2.1875rem 0 2.5rem 1.25rem;
  }
}

@media (min-width: 29.99875em) and (max-width: 47.99875em) {
  .hero__button {
    margin: 0;
  }

  .make-order__item:not(:last-child) .item-step__inner::before {
    right: -360%;
    width: 360%;
  }

  .make-order__item:nth-child(2) .item-step__inner::before {
    display: none;
  }

  .item-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .item-step__descr {
    text-align: center;
  }

  .step-4__item:not(:last-child) {
    margin: 0 0 0.9375rem 0;
  }
}

@media (min-width: 47.99875em) and (max-width: 63.99875em) {
  .benefits__body {
    display: -ms-grid;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (min-width: 34.375em) and (max-width: 47.99875em) {
  .benefits__body {
    display: -ms-grid;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
}

@media (min-width: 29.99875em) and (max-width: 34.375em) {
  .benefits__body {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 15px;
  }
}

@media (min-width: 29.99875em) and (max-width: 61.99875em) {
  .address__stations {
    margin: 0 0 1.875rem 0;
  }

  .address__map {
    margin: 0 0 1.875rem 0;
  }
}

@media (min-width: 47.99875em) and (max-width: 61.99875em) {
  .step-4__content {
    display: -ms-grid;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (any-hover: hover) {
  .input:hover {
    border-color: var(--main-black);
  }

  .select__option:hover {
    color: rgb(100, 99, 99);
  }

  .popup__close:hover {
    color: var(--dark-gray);
  }

  .popup__close:hover svg {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .popup__close--thanks:hover {
    color: var(--green);
  }

  .popup .thanks__button:hover {
    color: var(--main-black);
    border-color: var(--green);
  }

  .button:hover {
    border-color: var(--yellow);
    background-color: var(--white);
  }

  .top-header__link:hover {
    color: var(--yellow);
  }

  .top-header__button:hover {
    border-color: var(--green);
    color: var(--green);
    background-color: var(--white);
  }

  .top-header__phone:hover {
    color: var(--yellow);
  }

  .menu__item:hover .menu__sublist {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu__button:hover {
    color: var(--yellow);
  }

  .menu__button:hover svg:last-child {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .menu__subitem:hover {
    background-color: #f1f6fa;
  }

  .menu__sublink {
    -webkit-transition: color 0.3s ease 0s;
    -o-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
  }

  .menu__sublink:hover {
    color: var(--yellow);
  }

  .footer__link:hover {
    color: var(--yellow);
  }

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

  .spollers__button:hover {
    text-decoration: none;
  }

  .quiz__button-back:hover {
    color: var(--yellow);
    border-color: var(--yellow);
  }

  .step-1__label:hover, .label_other:hover {
    -webkit-box-shadow: 2px 0px 12px rgba(0, 0, 0, 0.15), 0px 2px 12px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 0px 12px rgba(0, 0, 0, 0.15), 0px 2px 12px rgba(0, 0, 0, 0.15);
  }

  .step-1__label:active {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .step-3__tooltip:hover {
    color: var(--yellow);
  }

  .step-4__label:hover, .label_other-4:hover {
    -webkit-box-shadow: 2px 0px 12px rgba(0, 0, 0, 0.15), 0px 2px 12px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 0px 12px rgba(0, 0, 0, 0.15), 0px 2px 12px rgba(0, 0, 0, 0.15);
  }

  .step-4__label:active, .label_other-4:active {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .step-5__button:hover {
    border-color: var(--yellow);
    background-color: var(--white);
  }
}
    .item-stations__image img{
        cursor: -webkit-zoom-in;
    }
    .r_size img {
        width: 100%;
        /* border: 1rem solid white; */
    }
    .r_size {
        width: 50%;
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    img.r_size_closed {
        width: 2rem;
        position: absolute;
        top: 2rem;
        right: 2rem;
        cursor: pointer;
        z-index: 20;
    }
    .block_primer_rabot_size {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        background: #000000a8;
        z-index: 11;
        cursor: -webkit-zoom-out;
        display: none;
    }
@media (max-width: 768px){
    .r_size {
        width: 90%;
    }
}
.models_a, .more {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.models_a a, .more a {
    width: 275px;
    margin-bottom: 10px
}
.models_a a.show_more{
    text-align:center;
    cursor: pointer;
} 
@media (max-width: 1024px){
    .models_a a, .more a {
        width: 220px;
    }
}
table.price{
    border-spacing: 2px;
    border-color: grey;
}
.price {
    width:100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    
}
.price a{
    color: #000aff;
}
.price th{
    text-align: left;
    background-color: #f2f2f2;
    padding: 10px;
    border: 1px solid #dbdbdb;
    
}
.price th:first-child{
    width: 250px;
}
.price td {
    padding: 10px;
    border: 1px solid #dbdbdb;
    min-width: 100px;
}
.price tfoot td p.ramka {
    padding: 20px;
    color: #fff;
    background: #13b3e5;
    padding-left: 60px;
    min-height: 32px;
    position: relative;
    margin-bottom: 25px;
}
.price tfoot td{
    border: none;
}
@media screen and (max-width: 425px){
    .price td:last-child {
        display: none;
    }
    .price th:last-child {
        display: none;
    }
}
