@charset "UTF-8";

/* VARS */

:root {
  --colorMain: #15CE8C;
  --colorBlack: #080F1A;
  --colorWhite: #FFFFFF;
  --colorGrey: #717171;
  --colorGreyLight: #F4F4F4;
  --gradientMain: linear-gradient(187deg, #17d792 31%, #12c383 95%);
  --gradientGrey: linear-gradient(190deg, #e7e7e7 25%, #ffffff 80%);
  --shadowMain: 0px 4px 20px rgba(21, 206, 140, 0.5),
                inset -1px -1px 3px rgba(0, 0, 0, 0.35),
                inset 1px 1px 9px rgba(255, 255, 255, 0.75);
  --shadowGrey: 0px 4px 25px rgba(0, 0, 0, 0.2),
                inset -2px -2px 3px rgba(0, 0, 0, 0.2),
                inset 4px 4px 3px rgba(255, 255, 255, 0.75);
  --shadowGreyOutside: 0px 4px 25px rgba(0, 0, 0, 0.2);
  --radiusMain: 15px;
}

/* FONTS */

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

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

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

/* CSS RESET */

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

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

:focus,
:active {
  outline: none;
}

html,
body {
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  min-width: 320px;
  height: 100%;
}

body {
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

a:focus,
a:active {
  outline: none;
}

ul,
ol {
  padding: 0;
  list-style-position: inside;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

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

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

/* BODY */

body {
  color: #080F1A;
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  overflow-anchor: none;
}

body.is-locked {
  overflow: hidden;
}

/* WRAPPER */

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

/* CONTAINER */

.container {
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  z-index: 3;
}

.container-big {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  z-index: 3;
}

/* COMMON ELEMENTS/CLASSES */

/* ANIMATION */

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }

  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }

  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* LAZYLOADING */
img {
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

img[data-src] {
  opacity: 0;
  visibility: hidden;
}

img[src] {
  opacity: 1;
  visibility: visible;
}

/* BUTTONS */

.btn {
  padding: 0 65px;
  position: relative;
  display: inline-block;
  height: 65px;
  color: var(--colorWhite);
  font-size: 15px;
  font-weight: 500;
  background: var(--gradientMain);
  border-radius: 40px;
  border-bottom: 3px solid #0fae75;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.btn:before,
.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 40px;
}

.btn:before {
  left: 25px;
  background: url("../images/icons/iconssprite.svg#arrows-r-w") center/contain no-repeat;
}

.btn:after {
  right: 25px;
  background: url("../images/icons/iconssprite.svg#arrows-l-w") center/contain no-repeat;
}

.btn--w {
  color: var(--colorMain);
  background: var(--gradientGrey);
  border-bottom: none;
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
}

.btn--w:before {
  background: url("../images/icons/iconssprite.svg#arrows-r-g") center/contain no-repeat;
}

.btn--w:after {
  background: url("../images/icons/iconssprite.svg#arrows-l-g") center/contain no-repeat;
}

body._desktop .btn:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* GO TOP */

.go-top-btn {
  position: fixed;
  right: 20px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  z-index: 50;
  color: var(--colorWhite);
  background: var(--gradientMain);
  border-radius: 10px;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
}

.go-top-btn.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.go-top-btn svg {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
      -ms-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

/* SECTION */

section {
  position: relative;
  background-color: var(--colorGreyLight);
}

.section-bg__left,
.section-bg__right {
  position: absolute;
  z-index: 2;
}

.section-bg__left img,
.section-bg__right img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-title {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.section-txt {
  text-align: center;
  line-height: 1.2;
}

.section-txt > p:not(:last-child) {
  margin-bottom: 20px;
}

/* STRIPES */

._stripes {
  position: relative;
}

._stripes:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 1740px;
  z-index: 1;
  pointer-events: none;
  background: -o-repeating-linear-gradient(left, transparent, transparent 16.64%, #dadee0 16.64%, #dadee0 calc(16.64% + 1px));
  background: repeating-linear-gradient(to right, transparent, transparent 16.64%, #dadee0 16.64%, #dadee0 calc(16.64% + 1px));
}

/* SOCIALS */

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

.socials-link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
  width: 38px;
  height: 38px;
  position: relative;
  border-radius: 50%;
  -webkit-box-shadow: inset -1px -1px 3px rgba(0, 0, 0, 0.35), inset 1px 1px 9px rgba(255, 255, 255, 0.75);
          box-shadow: inset -1px -1px 3px rgba(0, 0, 0, 0.35), inset 1px 1px 9px rgba(255, 255, 255, 0.75);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.socials-link:not(:last-child) {
  margin: 0px 18px 0px 0px;
}

.socials-link--wa {
  background: -o-linear-gradient(262.87deg, #54f371 30.85%, #36d352 70.75%);
  background: linear-gradient(187.13deg, #54f371 30.85%, #36d352 70.75%);
}

.socials-link--tg {
  background: -o-linear-gradient(262.87deg, #50abff 30.85%, #1c6ce3 94.69%);
  background: linear-gradient(187.13deg, #50abff 30.85%, #1c6ce3 94.69%);
}

.socials-link--vib {
  background: -o-linear-gradient(262.87deg, #6c5ae9 30.85%, #7662fe 94.69%);
  background: linear-gradient(187.13deg, #6c5ae9 30.85%, #7662fe 94.69%);
}

.socials-link--yt {
  background: -o-linear-gradient(262.87deg, #f35e54 30.85%, #d33636 70.75%);
  background: linear-gradient(187.13deg, #f35e54 30.85%, #d33636 70.75%);
}

.socials-link--vk {
  background: -o-linear-gradient(262.87deg, #50abff 30.85%, #1c6ce3 94.69%);
  background: linear-gradient(187.13deg, #50abff 30.85%, #1c6ce3 94.69%);
}

.socials-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

body._desktop .socials-link:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* SOCIALS SIDEBAR */

.socials-sidebar {
  padding: 20px 0;
  position: fixed;
  bottom: 120px;
  right: 20px;
  width: 50px;
  z-index: 50;
  background: var(--gradientGrey);
  border-radius: 10px;
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.socials-sidebar.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.socials-sidebar .socials {
  -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;
}

.socials-sidebar .socials-link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.socials-sidebar .socials-link:not(:last-child) {
  margin: 0px 0px 15px 0px;
}

/* CONTACTS-LIST */

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

.contacts-list__item:not(:last-child) {
  margin: 0px 0px 10px 0px;
}

.contacts-list__item-icon {
  margin: 0px 15px 0px 0px;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28px;
          flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--colorMain);
}

.contacts-list__item-icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contacts-list__item-txt {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.contacts-list__item-txt > a {
  white-space: nowrap;
  color: var(--colorBlack);
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.contacts-list__item-txt > span {
  display: block;
  font-size: 11px;
  font-weight: 400;
}

body._desktop .contacts-list__item-txt > a:hover {
  color: var(--colorMain);
}

/* FORM TOOLTIP */

.form-tooltip {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 34px;
  height: 34px;
}

.form-tooltip__icon {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form-tooltip__icon img,
.form-tooltip__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.form-tooltip__icon:hover ~ .form-tooltip__txt {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 25px);
}

.form-tooltip__txt {
  padding: 15px 10px;
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  text-align: center;
  color: var(--colorWhite);
  font-size: 13px;
  font-weight: 500;
  background: var(--gradientMain);
  border-radius: 10px;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, bottom 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease, bottom 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, bottom 0.2s ease;
}

.form-tooltip__txt::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid var(--colorMain);
}

/* FORMS */

form.is-sending button[type=submit] {
  opacity: 0.3;
  pointer-events: none;
}

.form-input {
  width: 100%;
  height: 65px;
  text-align: center;
  color: var(--colorGrey);
  font-size: 15px;
  font-weight: 500;
  background: -o-linear-gradient(242deg, #e4e4e4 36%, #ffffff 81%);
  background: linear-gradient(208deg, #e4e4e4 36%, #ffffff 81%);
  border: 2px solid var(--colorMain);
  border-radius: var(--radiusMain);
}

.form-input:focus::-webkit-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus:-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input.error {
  border: 2px solid red;
}

.check-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}

.check-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.checkbox-custom {
  margin: 0px 10px 0px 0px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28px;
          flex: 0 0 28px;
  width: 28px;
  height: 28px;
  background: -o-linear-gradient(241.73deg, #e4e4e4 36.31%, #ffffff 80.93%);
  background: linear-gradient(208.27deg, #e4e4e4 36.31%, #ffffff 80.93%);
  border: 1px solid var(--colorMain);
  -webkit-box-shadow: 0px 0px 20px rgba(15, 59, 14, 0.25), inset 0px 0px 20px #d7ebff;
          box-shadow: 0px 0px 20px rgba(15, 59, 14, 0.25), inset 0px 0px 20px #d7ebff;
  border-radius: 50%;
}

.checkbox-custom:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  z-index: 1;
  background: url("../images/icons/iconssprite.svg#check-g") center/contain no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.check-txt {
  position: relative;
  color: var(--colorBlack);
  font-size: 12px;
  line-height: 1.2;
}

.check-txt a {
  color: var(--colorMain);
}

body._desktop .check-txt a:hover {
  text-decoration: underline;
}

.check-input:checked + .checkbox-custom:after {
  opacity: 1;
}

/* error */

.check-input.error + .checkbox-custom {
  border: 1px solid red;
}

/* SWIPER SLIDER */
.swiper img.swiper-lazy {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.1s ease, visibility 0.1s ease;
  -o-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.swiper img.swiper-lazy.swiper-lazy-loaded {
  opacity: 1;
  visibility: visible;
}

.swiper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

.swiper-btn-prev,
.swiper-btn-next {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66px;
          flex: 0 0 66px;
  width: 66px;
  height: 66px;
  color: var(--colorMain);
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
  pointer-events: all;
  -webkit-transition: color 0.2s ease, opacity 0.2s ease;
  -o-transition: color 0.2s ease, opacity 0.2s ease;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.swiper-btn-prev.swiper-button-disabled,
.swiper-btn-next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4;
}

.swiper-btn-prev:before,
.swiper-btn-next:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--gradientMain);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.swiper-btn-prev svg,
.swiper-btn-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40%;
  height: 40%;
  z-index: 2;
  -o-object-fit: contain;
     object-fit: contain;
}

body._desktop .swiper-btn-prev:hover,
body._desktop .swiper-btn-next:hover {
  color: var(--colorWhite);
}

body._desktop .swiper-btn-prev:hover:before,
body._desktop .swiper-btn-next:hover:before {
  opacity: 1;
  visibility: visible;
}

/* POPUP */

.popup {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  -o-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.popup.is-open {
  opacity: 1;
  visibility: visible;
}

.popup.is-open .popup-content {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup-body {
  padding: 30px 10px;
  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;
  min-height: 100%;
}

.popup-content {
  padding: 35px 30px;
  position: relative;
  max-width: 350px;
  text-align: center;
  background: var(--gradientGrey);
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25), inset -1px -1px 3px rgba(0, 0, 0, 0.35), inset 1px 1px 9px rgba(255, 255, 255, 0.75);
          box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25), inset -1px -1px 3px rgba(0, 0, 0, 0.35), inset 1px 1px 9px rgba(255, 255, 255, 0.75);
  border-radius: var(--radiusMain);
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  -o-transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  text-decoration: none;
}

.popup-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 2px;
  background-color: var(--colorBlack);
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.popup-close span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-close span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

body._desktop .popup-close:hover span {
  background-color: red;
}

.popup-title {
  margin: 0px 0px 15px 0px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.popup-txt {
  margin: 0px 0px 20px 0px;
  line-height: 1.2;
}

.popup-form__item {
  margin: 0px 0px 20px 0px;
  position: relative;
}

.popup-form__input {
  padding: 0 50px 0 20px;
}

.popup-form__btn {
  margin: 0px 0px 20px 0px;
  display: block;
  width: 100%;
}

.popup-form__check {
  margin: 0px auto;
  width: 90%;
  text-align: left;
}

/* HEADER */

.header {
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--colorWhite);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.header.is-scrolled::before {
  opacity: 1;
  visibility: visible;
}

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

.header-logo {
  margin: 0px 20px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 285px;
          flex: 0 0 285px;
  width: 285px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo__img {
  margin: 0px 10px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%;
}

.header-logo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-logo__txt > span {
  display: block;
}

.header-logo__txt > span:first-child {
  white-space: nowrap;
  margin: 0px 0px 5px 0px;
  font-size: 22px;
  font-weight: 500;
}

.header-logo__txt > span:last-child {
  font-size: 12px;
}

.header-socials {
  margin: 0px 60px 0px auto;
}

.header-contacts {
  margin: 0px 50px 0px 0px;
}

.header-contacts__phone {
  white-space: nowrap;
  color: var(--colorBlack);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

body._desktop .header-contacts__phone:hover {
  color: var(--colorMain);
}

.header-contacts__txt {
  font-size: 10px;
  line-height: 1.4;
}

.header-contacts__txt > span:not(:last-child) {
  margin: 0px 2px 0px 0px;
}

.header-contacts__txt > span:not(:last-child):after {
  content: "—";
  margin: 0px 0px 0px 3px;
  color: var(--colorMain);
}

.header-btn {
  padding: 0 10px;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 154px;
          flex: 0 0 154px;
  width: 154px;
  height: 45px;
  color: var(--colorWhite);
  font-size: 13px;
  font-weight: 500;
  background: var(--gradientMain);
  border-radius: 25px;
  border-bottom: 2px solid #0fae75;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

body._desktop .header-btn:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* MAIN */

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

/* INTRO */

.no-webp .intro{
  background: url("../images/intro/bg.jpg") center/cover no-repeat; }

.intro {
  padding: 170px 0 110px;
  margin: 0px 0px 2px 0px;
}

.intro-img {
  position: absolute;
  bottom: 0;
  left: 45%;
  width: 100%;
  max-width: 676px;
  z-index: 1;
  opacity: 0.8;
}

.intro-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.intro-inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.intro-content {
  margin: 0px 50px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 620px;
          flex: 0 1 620px;
  max-width: 620px;
}

.intro-content__tooltip {
  padding: 15px 22px;
  margin: 0px 0px 25px 0px;
  position: relative;
  display: inline-block;
  text-align: center;
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  background: var(--gradientMain);
  border-radius: 10px;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
}

.intro-content__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 15px solid transparent;
  border-top: 14px solid var(--colorMain);
}

.intro-content__title {
  margin: 0px 0px 20px 0px;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.2;
}

.intro-content__txt {
  margin: 0px 0px 35px 0px;
  font-size: 20px;
  line-height: 1.2;
}

.intro-content__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 10px;
}

.intro-content__list > li {
  -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding: 0px 0px 0px 40px;
  position: relative;
  font-size: 14px;
}

.intro-content__list > li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url("../images/icons/iconssprite.svg#check-w") center/65% 65% no-repeat, var(--gradientMain);
  border-radius: 50%;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
}

.intro-content__list > li > span {
  font-weight: 700;
}

.intro-form {
  padding: 32px 22px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 340px;
          flex: 0 0 340px;
  width: 340px;
  text-align: center;
  background: var(--gradientGrey);
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25), inset -1px -1px 3px rgba(0, 0, 0, 0.35), inset 1px 1px 9px rgba(255, 255, 255, 0.75);
          box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25), inset -1px -1px 3px rgba(0, 0, 0, 0.35), inset 1px 1px 9px rgba(255, 255, 255, 0.75);
  border-radius: var(--radiusMain);
}

.intro-form__title {
  margin: 0px 0px 15px 0px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.intro-form__txt {
  margin: 0px 0px 20px 0px;
  line-height: 1.2;
}

.intro-form__item {
  margin: 0px 0px 20px 0px;
  position: relative;
}

.intro-form__input {
  padding: 0 50px 0 15px;
}

.intro-form__btn {
  margin: 0px 0px 20px 0px;
  display: block;
  width: 100%;
}

.intro-form__check {
  margin: 0px auto 20px;
  width: 90%;
  text-align: left;
}

.intro-form__socials {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.intro-bottom__btn {
  position: absolute;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 46px;
  height: 46px;
  z-index: 3;
  color: var(--colorMain);
  background: -o-linear-gradient(241.73deg, #e4e4e4 36.31%, #ffffff 80.93%);
  background: linear-gradient(208.27deg, #e4e4e4 36.31%, #ffffff 80.93%);
  border: 1px solid var(--colorMain);
  border-radius: 50%;
  -webkit-box-shadow: inset 0px 0px 20px #d7ebff;
          box-shadow: inset 0px 0px 20px #d7ebff;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-animation: upDown 0.6s linear 2s infinite alternate;
          animation: upDown 0.6s linear 2s infinite alternate;
}

.intro-bottom__btn svg {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }

  100% {
    -webkit-transform: translate(-50%, -6px);
            transform: translate(-50%, -6px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }

  100% {
    -webkit-transform: translate(-50%, -6px);
            transform: translate(-50%, -6px);
  }
}

/* PRICEs */

.no-webp .prices{
  background: url("../images/prices/bg.jpg") center/cover no-repeat; }

.prices {
  padding: 85px 0 0;
  z-index: 4;
}

.prices .section-bg__left {
  top: 3%;
  left: 3%;
  width: 24%;
}

.prices .section-bg__right {
  bottom: 4%;
  right: -1%;
  width: 26%;
}

.prices-top {
  margin: 0px auto 45px;
  max-width: 735px;
}

.prices-title {
  margin: 0px 0px 20px 0px;
}

.prices-list {
  padding: 30px;
  margin: 0px auto 45px;
  max-width: 735px;
  background: var(--gradientGrey);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
  border-radius: var(--radiusMain);
}

.prices-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
}

.prices-list__item:not(:last-child) {
  margin: 0px 0px 20px 0px;
}

.prices-list__item-title {
  font-size: 18px;
  line-height: 1.2;
}

.prices-list__item-price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: var(--colorMain);
  font-size: 22px;
  white-space: nowrap;
}

.prices-list__item-price:before {
  content: "";
  margin: 0 10px 4px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 100%;
  min-width: 25px;
  border-bottom: 1px dashed var(--colorMain);
}

.prices-bottom {
  padding: 44px 50px 28px;
  margin: 0px auto;
  max-width: 954px;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25), inset -2px -2px 3px rgba(0, 0, 0, 0.35), inset 4px 4px 3px rgba(255, 255, 255, 0.75);
          box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25), inset -2px -2px 3px rgba(0, 0, 0, 0.35), inset 4px 4px 3px rgba(255, 255, 255, 0.75);
}

.prices-bottom__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%;
  width: 42%;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.prices-bottom__form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 54%;
          flex: 0 0 54%;
  width: 54%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.prices-bottom__form-item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 200px);
          flex: 0 0 calc(100% - 200px);
  width: calc(100% - 200px);
}

.prices-bottom__form-input {
  padding: 0 50px 0 20px;
}

.prices-bottom__form-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 175px;
          flex: 0 0 175px;
  width: 175px;
}

.prices-bottom__form-check {
  margin: 15px auto 0px;
  -ms-grid-column-align: center;
      justify-self: center;
}

/* PROMOTION */

.promotion {
  padding: 180px 0 45px;
}

.promotion .section-bg__left {
  top: 5%;
  left: 0%;
  width: 25%;
}

.promotion-title {
  margin: 0px 0px 35px 0px;
}

.promotion-inner {
  margin: 0px auto;
  max-width: 1160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.promotion-item {
  margin: 0 1.5% 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30.3333%;
          flex: 0 0 30.3333%;
  width: 30.3333%;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.promotion-item__term {
  padding: 20px;
  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;
}

.promotion-item__term-icon {
  margin: 0px 15px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
}

.promotion-item__term-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.promotion-item__term-txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.promotion-item__img {
  padding-bottom: 68%;
  position: relative;
  height: 0;
}

.promotion-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  border-radius: 15px 15px 0 0;
}

.promotion-item__badge {
  padding: 0 10px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-40%);
      -ms-transform: translateY(-40%);
          transform: translateY(-40%);
  width: auto;
  min-width: 98px;
  height: 36px;
  z-index: 2;
  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;
  text-align: center;
  white-space: nowrap;
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  background: -o-linear-gradient(262.87deg, #ec0a17 94.68%, #12c383 94.69%);
  background: linear-gradient(187.13deg, #ec0a17 94.68%, #12c383 94.69%);
  -webkit-box-shadow: inset -1px -1px 3px rgba(0, 0, 0, 0.35), inset 1px 1px 9px rgba(255, 255, 255, 0.75);
          box-shadow: inset -1px -1px 3px rgba(0, 0, 0, 0.35), inset 1px 1px 9px rgba(255, 255, 255, 0.75);
  border-radius: 0px 15px;
}

.promotion-item__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 20px 30px 60px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
}

.promotion-item__prices {
  margin: 0px 0px 10px 0px;
  position: relative;
  min-height: 54px;
  z-index: 2;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--colorMain);
  font-weight: 500;
}

.promotion-item__oldprice {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: inline-block;
  white-space: nowrap;
  position: relative;
  width: auto;
  font-size: 22px;
  opacity: 0.4;
}

.promotion-item__oldprice:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 110%;
  height: 1px;
  background-color: var(--colorMain);
}

.promotion-item__price {
  margin: 5px 0px 0px 0px;
  white-space: nowrap;
  font-size: 30px;
}

.promotion-item__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  z-index: 2;
  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;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.promotion-item__btn {
  margin: -33px auto 0;
  position: relative;
  z-index: 2;
  display: block;
  width: 70%;
}

/* REVIEWS */

.no-webp .reviews{
  background: url("../images/reviews/bg.jpg") center/cover no-repeat; }

.reviews {
  padding: 80px 0 85px;
}

.reviews .section-bg__right {
  right: 4%;
  bottom: 18%;
  width: 20%;
}

.reviews-title {
  margin: 0px 0px 50px 0px;
}

.reviews-ratings {
  margin: 0px auto 85px;
  max-width: 1110px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 35px 1fr 35px 1fr 35px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.reviews-ratings__item {
  padding: 30px 25px;
  text-align: center;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
}

.reviews-ratings__item-logo {
  margin: 0px 0px 15px 0px;
  position: relative;
  height: 40px;
}

.reviews-ratings__item-logo img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.reviews-ratings__item-rate {
  margin: 0px 0px 12px 0px;
  color: var(--colorMain0);
  font-size: 24px;
  font-weight: 500;
}

.reviews-ratings__stars {
  margin: 0px 0px 15px 0px;
}

.reviews-ratings__stars.star-rating {
  display: inline-block;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 46px;
  line-height: 1em;
  text-align: left;
  color: #111111;
}

.reviews-ratings__stars.star-rating:before {
  content: "☆☆☆☆☆";
  display: block;
  white-space: nowrap;
}

.reviews-ratings__stars .star-rating__result {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  overflow: hidden;
  color: #fed901;
  font-size: inherit;
  line-height: inherit;
}

.reviews-ratings__stars .star-rating__result:before {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}

.reviews-ratings__item-bottom {
  font-size: 24px;
  font-weight: 500;
}

.reviews-subtitle {
  margin: 0px 0px 25px 0px;
}

.reviews-txt {
  margin: 0px 0px 45px 0px;
}

.reviews-list {
  margin: 0px auto;
  max-width: 698px;
}

.reviews-list__visible {
  margin: 0px 0px 30px 0px;
}

.reviews-list__item {
  padding: 30px 80px 30px 30px;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
}

.reviews-list__item:not(:last-child) {
  margin: 0px 0px 30px 0px;
}

.reviews-list__item-top {
  margin: 0px 0px 25px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews-list__item-name {
  margin: 0px 20px 0px 0px;
  font-size: 18px;
  font-weight: 500;
}

.reviews-list__item-audio.green-audio-player {
  width: 100%;
  min-width: unset;
  height: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  background-color: transparent;
}

.reviews-list__item-audio.green-audio-player .play-pause-btn {
  color: var(--colorMain);
}

.reviews-list__item-audio.green-audio-player .controls {
  margin-right: 0;
  width: 100%;
  color: var(--colorMain);
}

.reviews-list__item-audio.green-audio-player .controls .controls__current-time {
  margin: 0px 10px 0px 0px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  position: relative;
}

.reviews-list__item-audio.green-audio-player .controls .controls__current-time:after {
  content: "/";
  position: absolute;
  top: 0;
  right: -11px;
}

.reviews-list__item-audio.green-audio-player .controls .controls__slider.slider {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 0;
}

.reviews-list__item-audio.green-audio-player .controls .controls__slider.slider .gap-progress {
  background-color: var(--colorMain);
}

.reviews-list__item-audio.green-audio-player .controls .controls__slider.slider .gap-progress .pin {
  background: var(--colorMain);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.reviews-list__item-audio.green-audio-player .controls .controls__total-time {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.reviews-list__item-audio.green-audio-player .controls .controls__total-time,
.reviews-list__item-audio.green-audio-player .controls .controls__current-time {
  min-width: 60px;
  text-align: center;
  color: var(--colorMain);
  font-family: "Rubik";
  font-size: 25px;
  font-weight: 500;
}

.reviews-list__item-audio.green-audio-player .controls .volume {
  margin-right: 15px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.reviews-list__item-audio.green-audio-player .controls .volume .volume__button.open path {
  fill: var(--colorMain);
}

.reviews-list__item-audio.green-audio-player .slider .gap-progress {
  background-color: var(--colorMain);
}

.reviews-list__item-audio.green-audio-player .slider .gap-progress .pin {
  background-color: var(--colorMain);
}

.reviews-list__item-txt {
  line-height: 1.3;
}

.reviews-list__hidden {
  display: none;
}

.reviews-list__hidden.is-open {
  display: block;
  -webkit-animation: fadeIn 0.8s ease 0s forwards;
          animation: fadeIn 0.8s ease 0s forwards;
}

.reviews-showmore__btn {
  margin: 60px auto 0;
  display: block;
  width: 253px;
}

/* STAGES */

.stages {
  padding: 70px 0;
}

.stages .section-bg__left {
  top: 5%;
  left: 6%;
  width: 24%;
}

.stages-title {
  margin: 0px 0px 60px 0px;
}

.stages-list {
  margin: 0px auto;
  max-width: 698px;
}

.stages-list__item {
  padding: 20px;
  min-height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
}

.stages-list__item:not(:last-child) {
  margin: 0px 0px 20px 0px;
}

.stages-list__item-time {
  margin: 0px 20px 0px 0px;
  min-width: 80px;
  color: var(--colorMain);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.stages-list__item-time > span {
  display: block;
  white-space: nowrap;
}

.stages-list__item-time > span:first-child {
  font-size: 45px;
}

.stages-list__item-time > span:last-child {
  font-size: 17px;
  letter-spacing: 0.1em;
}

.stages-item__title {
  margin: 0px 0px 5px 0px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.stages-item__txt {
  line-height: 1.4;
}

/* VIDEO-SECTION */

.video-section {
  background: var(--gradientMain);
  overflow: hidden;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
}

.video-section .section-bg__left {
  bottom: -44%;
  left: -8%;
  width: 36%;
  opacity: 0.8;
}

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

.video-section__info {
  padding: 20px 45px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
  width: 47%;
}

.video-section__title {
  margin: 0px 0px 10px 0px;
  color: var(--colorWhite);
  text-align: left;
}

.video-section__txt {
  color: var(--colorWhite);
  line-height: 1.4;
}

.video {
  padding: 0px 0px 34.5%;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 53%;
          flex: 0 0 53%;
  width: 53%;
  height: 0;
  background-color: grey;
}

body._desktop .video:hover .video-btn {
  opacity: 0.4;
}

.video--enabled {
  cursor: pointer;
}

.video--enabled .video-player {
  z-index: 4;
}

.video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-preview,
.video-player,
.video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: none;
}

.video-preview {
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-player {
  z-index: 1;
}

.video-btn {
  padding-bottom: 17%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17%;
  height: 0;
  z-index: 3;
  color: var(--colorWhite);
  background: var(--gradientMain);
  border-radius: 50%;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.video-btn svg {
  position: absolute;
  top: 50%;
  left: 53%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* TEAM */

.no-webp .team{
  background: url("../images/team/bg.jpg") center/cover no-repeat; }

.team {
  padding: 75px 0 95px;
}

.team .section-bg__right {
  top: 19%;
  right: -1%;
  width: 24%;
}

.team-title {
  margin: 0px 0px 45px 0px;
}

.team-top {
  padding: 45px 60px 35px;
  margin: 0px 0px 70px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
}

.team-chief {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 53%;
          flex: 0 0 53%;
  width: 53%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--colorBlack);
}

.team-chief__photo {
  margin: 0px 25px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 106px;
          flex: 0 0 106px;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  border: 7px solid var(--colorMain);
  overflow: hidden;
}

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

.team-chief__info {
  margin: 0px 30px 0px 0px;
}

.team-chief__name {
  margin: 0px 0px 5px 0px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.team-chief__spec {
  font-size: 13px;
  line-height: 1.2;
}

.team-chief__txt {
  font-size: 16px;
  line-height: 1.2;
}

.team-top__form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
  width: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.team-top__form-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 240px);
          flex: 0 0 calc(100% - 240px);
  width: calc(100% - 240px);
}

.team-top__form-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  width: 220px;
}

.team-top__form-check {
  margin: 15px auto 0px;
  -ms-grid-column-align: center;
      justify-self: center;
}

.team-subtitle {
  margin: 0px 0px 65px 0px;
}

.team-photo {
  padding-bottom: 43.5%;
  position: relative;
  width: 100%;
  height: 0;
  background-color: var(--colorWhite);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGreyOutside);
          box-shadow: var(--shadowGreyOutside);
  overflow: hidden;
}

.team-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* VEHICLES */

.vehicles {
  padding: 80px 0 55px;
}

.vehicles .section-bg__left {
  top: 28%;
  left: 0;
  width: 26%;
}

.vehicles-top {
  margin: 0px auto 45px;
  max-width: 560px;
}

.vehicles-title {
  margin: 0px 0px 22px 0px;
}

.vehicles-gallery {
  margin: 0px auto;
  max-width: 1060px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vehicles-photo {
  padding-bottom: 23%;
  margin: 0 1.5% 3%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30.3333%;
          flex: 0 0 30.3333%;
  width: 30.3333%;
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  background-color: var(--colorWhite);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGreyOutside);
          box-shadow: var(--shadowGreyOutside);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.vehicles-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body._desktop .vehicles-photo:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

/* SPECIALISTS */

.no-webp .specialists{
  background: url("../images/specialists/bg.jpg") center/cover no-repeat; }

.specialists {
  padding: 85px 0 70px;
}

.specialists .section-bg__right {
  top: 9%;
  right: 0%;
  width: 22%;
}

.specialists-top {
  margin: 0px auto 55px;
  max-width: 760px;
}

.specialists-title {
  margin: 0px 0px 30px 0px;
}

.specialists-map {
  position: relative;
  height: 430px;
  background-color: var(--colorWhite);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGreyOutside);
          box-shadow: var(--shadowGreyOutside);
  overflow: hidden;
}

.specialists-map:before {
  content: "";
  padding: 0 0 10%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10%;
  height: 0;
  background: url("../images/loading.svg") center/contain no-repeat;
}

.specialists-map__coords {
  display: none !important;
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* EMERGENCY */

.emergency {
  padding: 80px 0;
}

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

.emergency-circle {
  padding: 40px;
  margin: 0px 40px 0px 0px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 464px;
          flex: 0 0 464px;
  width: 464px;
  height: 464px;
  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;
  text-align: center;
  background: var(--gradientGrey);
  border-radius: 50%;
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
  overflow: hidden;
}

.emergency-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border: 2px dashed var(--colorMain);
  border-radius: 50%;
}

.emergency-logo {
  margin: 0px 0px 20px 0px;
}

.emergency-logo__img {
  margin: 0px auto 15px;
  width: 60px;
  height: 60px;
}

.emergency-logo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.emergency-logo__txt {
  color: var(--colorMain);
  font-size: 46px;
  font-weight: 700;
  text-transform: uppercase;
}

.emergency-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.emergency-item {
  padding: 25px 40px;
  position: relative;
  min-height: 145px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.emergency-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--gradientMain);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.emergency-item:not(:last-child) {
  margin-bottom: 22px;
}

.emergency-item:first-child,
.emergency-item:last-child {
  -webkit-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
          transform: translateX(-30px);
}

body._desktop .emergency-item:hover {
  color: var(--colorWhite);
}

body._desktop .emergency-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.emergency-item__title {
  position: relative;
  z-index: 2;
  margin: 0px 0px 10px 0px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.emergency-item__txt {
  position: relative;
  z-index: 2;
  line-height: 1.4;
}

/* CLINIC */

.clinic {
  padding: 75px 0 55px;
  background-color: var(--colorWhite);
}

.clinic .section-bg__left {
  top: 6%;
  left: 0;
  width: 24%;
}

.clinic-inner {
  margin: 0px auto;
  max-width: 1090px;
}

.clinic-top {
  margin: 0px auto 45px;
  max-width: 820px;
}

.clinic-title {
  margin: 0px 0px 25px 0px;
}

.clinic-items {
  margin: 0px -1.5% 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.clinic-item {
  margin: 0 1.5% 3%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30.3333%;
          flex: 0 0 30.3333%;
  width: 30.3333%;
  padding: 25px 60px 20px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
}

.clinic-item__title {
  margin: 0px 0px 7px 0px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.clinic-item__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.clinic-subtitle {
  margin: 0px 0px 40px 0px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.clinic-gallery {
  margin: 0 1.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.clinic-photo {
  padding-bottom: 23%;
  margin: 0 1.5% 3%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30.3333%;
          flex: 0 0 30.3333%;
  width: 30.3333%;
  display: block;
  position: relative;
  height: 0;
  background-color: var(--colorWhite);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGreyOutside);
          box-shadow: var(--shadowGreyOutside);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.clinic-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body._desktop .clinic-photo:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

/* BRANCHES */

.branches {
  padding: 70px 0;
}

.branches-title {
  margin: 0px 0px 25px 0px;
}

.branches-slider__wrapper {
  position: relative;
}

.branches-slider {
  padding: 26px;
  margin: 0px auto;
  width: calc(100% - 192px);
}

.branches-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
  overflow: hidden;
}

.branches-slide__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%;
  width: 42%;
  min-height: 320px;
  position: relative;
  height: auto;
  border-radius: var(--radiusMain);
  overflow: hidden;
}

.branches-slide__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.branches-slide__info {
  padding: 35px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 100%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.branches-slide__title {
  margin: 0px 0px 25px 0px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.branches-slide__title > span {
  color: var(--colorMain);
  font-weight: 700;
}

.branches-slide__list > li {
  line-height: 1.2;
}

.branches-slide__list > li:not(:last-child) {
  margin: 0px 0px 16px 0px;
}

.branches-slide__list > li > span {
  font-weight: 500;
}

/* FAQ */

.no-webp .faq{
  background: url("../images/faq/bg.jpg") center/cover no-repeat; }

.faq {
  padding: 90px 0;
}

.faq-inner {
  margin: 0px auto;
  max-width: 730px;
}

.faq-title {
  margin: 0px 0px 55px 0px;
}

.faq-tabs__nav {
  margin: 0px 0px 35px 0px;
  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;
}

.faq-tabs__nav-btn {
  margin: 0 21px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 196px;
          flex: 0 0 196px;
  width: 196px;
  height: 50px;
  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;
  font-size: 15px;
  font-weight: 500;
  background: var(--gradientGrey);
  border-radius: 10px;
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.faq-tabs__nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--gradientMain);
  border-radius: 10px;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.faq-tabs__nav-btn.is-active {
  color: var(--colorWhite);
}

.faq-tabs__nav-btn.is-active::before {
  opacity: 1;
  visibility: visible;
}

.faq-tabs__nav-btn img {
  margin: 0px 10px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
  -o-object-fit: contain;
     object-fit: contain;
}

.faq-tabs__nav-btn > span {
  position: relative;
  z-index: 2;
}

.faq-tabs__item {
  display: none;
}

.faq-tabs__item.is-active {
  display: block;
  -webkit-animation: fadeIn 0.8s ease 0s forwards;
          animation: fadeIn 0.8s ease 0s forwards;
}

[data-accordeon].is-init [data-accordeon-title] {
  cursor: pointer;
}

.accordeon-item:not(:last-child) {
  margin: 0px 0px 18px 0px;
}

.accordeon-title {
  padding: 21px 25px;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
  background: var(--gradientGrey);
  border-radius: 10px;
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
  border: none;
  outline: none;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.accordeon-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--gradientMain);
  border-radius: 10px;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.accordeon-title svg {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 26px;
  height: 26px;
  z-index: 2;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translateY(-50%) rotate(0);
      -ms-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.accordeon-title.is-active {
  color: var(--colorWhite);
}

.accordeon-title.is-active::before {
  opacity: 1;
  visibility: visible;
}

.accordeon-title.is-active svg {
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.accordeon-title > span {
  position: relative;
  z-index: 2;
}

.accordeon-content {
  padding: 30px 20px 20px;
  margin: -10px 0 0;
  line-height: 1.45;
  background: var(--colorWhite);
  border-radius: 0 0 10px 10px;
}

.accordeon-content > p:not(:last-child) {
  margin: 0px 0px 15px 0px;
}

/* HELP */

.help {
  padding: 45px 0 35px;
  background: var(--gradientMain);
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
}

.help-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(12, 1fr);
  gap: 0px 30px;
}

.help-info {
  -ms-grid-column-span: 7;
  grid-column: 7 span;
  -ms-grid-row-span: 2;
  grid-row: 2 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.help-slider__wrapper {
  margin: 0px 45px 0px 0px;
  position: relative;
}

.help-slider__wrapper .swiper-nav {
  top: 35%;
}

.help-slider__wrapper .swiper-btn-prev,
.help-slider__wrapper .swiper-btn-next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46px;
          flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
}

.help-slider__wrapper .swiper-btn-prev:before,
.help-slider__wrapper .swiper-btn-next:before {
  border-radius: 10px;
}

.help-slider__wrapper .swiper-pagination {
  pointer-events: none;
  position: absolute;
  top: 49%;
  left: 0;
  width: 100%;
  height: auto;
}

.help-slider__wrapper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #15ce8c;
  background-color: transparent;
  opacity: 1;
}

.help-slider__wrapper .swiper-pagination .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 75%;
  height: 75%;
  background: var(--gradientMain);
  border-radius: 50%;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.help-slider__wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.help-slider {
  padding: 26px;
  width: 302px;
}

.help-slide {
  border-radius: var(--radiusMain);
}

.help-slide__photo {
  padding-bottom: 75%;
  position: relative;
  width: 100%;
  height: 0;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.help-slide__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.help-slide__info {
  padding: 20px 15px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
  text-align: center;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
}

.help-slide__name {
  margin: 0px 0px 15px 0px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}

.help-slide__spec {
  font-size: 17px;
  line-height: 1.1;
}

.help-info__list {
  margin: 0px 0px 30px 0px;
}

.help-info__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--colorWhite);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}

.help-info__list > li:not(:last-child) {
  margin: 0px 0px 20px 0px;
}

.help-info__list > li svg {
  margin: 0px 12px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.help-info__txt {
  color: var(--colorWhite);
  font-size: 14px;
  line-height: 1.6;
}

.help-header {
  -ms-grid-column-span: 5;
  grid-column: 5 span;
  align-self: flex-end;
  margin: 0px 0px 25px 0px;
  text-align: center;
}

.help-title {
  margin: 0px 0px 10px 0px;
  color: var(--colorWhite);
}

.help-txt {
  color: var(--colorWhite);
  line-height: 1.5;
}

.help-form {
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-align: center;
}

.help-form {
  -ms-grid-column-span: 5;
  grid-column: 5 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.help-form__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 240px);
          flex: 0 0 calc(100% - 240px);
  width: calc(100% - 240px);
}

.help-form__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  width: 220px;
}

.help-form__check {
  margin: 15px auto 0px;
  -ms-grid-column-align: center;
      justify-self: center;
  text-align: left;
}

.help-form__check .check-txt {
  color: var(--colorWhite);
}

/* ABOUT */

.no-webp .about{
  background: url("../images/about/bg.jpg") center/cover no-repeat; }

.about {
  padding: 75px 0 80px;
}

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

.about-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 67%;
          flex: 0 0 67%;
  width: 67%;
}

.about-content__top {
  margin: 0px auto 85px;
  max-width: 680px;
}

.about-title {
  margin: 0px 0px 35px 0px;
}

.about-content__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px 24px;
}

.about-content__item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding: 0px 20px 15px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
}

.about-content__item-icon {
  margin: -32px auto 10px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 64px;
          flex: 0 0 64px;
  width: 64px;
  height: 64px;
  background: var(--gradientMain);
  border-radius: 50%;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
}

.about-content__item-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 65%;
  height: 65%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-content__item-title {
  margin: 0px 0px 10px 0px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
}

.about-content__item-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  line-height: 1.45;
}

.about-sidebar {
  padding: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 29%;
          flex: 0 0 29%;
  width: 29%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  color: var(--colorWhite);
  text-align: center;
  background: var(--gradientMain);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
}

.about-sidebar__item:not(:last-child) {
  margin: 0px 0px 25px 0px;
}

.about-sidebar__item > span {
  display: block;
  font-weight: 500;
}

.about-sidebar__item > span:first-child {
  margin: 0px 0px 3px 0px;
  font-size: 60px;
}

.about-sidebar__item > span:last-child {
  font-size: 18px;
  line-height: 1.2;
}

/* LICENSES */

.licenses {
  padding: 85px 0 45px;
}

.licenses-title {
  margin: 0px 0px 20px 0px;
}

.licenses-slider__wrapper {
  margin: 0px auto;
  position: relative;
  max-width: 1054px;
}

.licenses-slider {
  padding: 26px;
  margin: 0px auto;
  width: calc(100% - 162px);
}

.licenses-slide {
  padding-bottom: 41%;
  position: relative;
  height: 0;
  background-color: var(--colorWhite);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGreyOutside);
          box-shadow: var(--shadowGreyOutside);
  overflow: hidden;
}

.licenses-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* MAP */

.map-wrapper {
  position: relative;
  z-index: 1;
  height: 565px;
}

.map-wrapper .container {
  position: relative;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--gradientGrey);
}

.map:before {
  content: "";
  padding: 0 0 10%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10%;
  height: 0;
  background: url("../images/loading.svg") center/contain no-repeat;
}

.map-info {
  pointer-events: auto;
  padding: 28px 28px 25px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 280px;
  z-index: 3;
  background: var(--gradientGrey);
  border-radius: var(--radiusMain);
  -webkit-box-shadow: var(--shadowGrey);
          box-shadow: var(--shadowGrey);
}

.map-info__logo {
  margin: 0px 0px 25px 0px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.map-info__logo-img {
  margin: 0px 10px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%;
}

.map-info__logo-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.map-info__logo-txt > span {
  display: block;
}

.map-info__logo-txt > span:first-child {
  white-space: nowrap;
  margin: 0px 0px 5px 0px;
  font-size: 22px;
  font-weight: 500;
}

.map-info__logo-txt > span:last-child {
  font-size: 10px;
}

/* FOOTER */

.footer {
  background-color: var(--colorWhite);
}

.footer-top {
  padding: 35px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px dashed var(--colorMain);
}

.footer-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
  width: 280px;
}

.footer-logo {
  margin: 0px 0px 15px 0px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-logo__img {
  margin: 0px 10px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  width: 30%;
}

.footer-logo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-logo__txt > span {
  display: block;
}

.footer-logo__txt > span:first-child {
  white-space: nowrap;
  margin: 0px 0px 5px 0px;
  font-size: 30px;
  font-weight: 500;
}

.footer-logo__txt > span:last-child {
  font-size: 11px;
}

.footer-info__txt {
  line-height: 1.5;
}

.footer-info__txt > span {
  font-weight: 500;
}

.footer-nav {
  padding: 10px 0px 0px 0px;
  margin: 0 5% 0 8%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 100%;
}

.footer-nav__list {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}

.footer-nav__list > li:not(:last-child) {
  margin: 0px 0px 12px 0px;
}

.footer-nav__list > li > a {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

body._desktop .footer-nav__list > li > a:hover {
  color: var(--colorMain);
}

.footer-contacts {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
  width: 280px;
}

.footer-contacts__top {
  margin: 0px 0px 15px 0px;
}

.footer-phone {
  margin: 0px 0px 15px 0px;
  display: inline-block;
  white-space: nowrap;
  color: var(--colorBlack);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

body._desktop .footer-phone:hover {
  color: var(--colorMain);
}

.footer-contacts__list {
  margin: 0px 0px 15px 0px;
}

.footer-contacts__btn {
  width: 155px;
  height: 45px;
  color: var(--colorWhite);
  font-size: 13px;
  background: var(--gradientMain);
  border-radius: 90px;
  -webkit-box-shadow: var(--shadowMain);
          box-shadow: var(--shadowMain);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

body._desktop .footer-contacts__btn:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

.footer-middle {
  padding: 30px 0;
}

.footer-middle__inner.is-init .footer-middle__title {
  padding-right: 60px;
  text-align: left;
  cursor: pointer;
}

.footer-middle__inner.is-init .footer-middle__title svg {
  display: block;
}

.footer-middle__title {
  margin: 0 auto;
  display: block;
  position: relative;
  max-width: 840px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  background-color: transparent;
  cursor: auto;
}

.footer-middle__title svg {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  z-index: 2;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translateY(-50%) rotate(0);
      -ms-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.footer-middle__title.is-active svg {
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.footer-middle__content {
  margin: 50px 0px 0px 0px;
}

.footer-middle__content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-middle__content-col:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14%;
          flex: 0 0 14%;
  width: 14%;
}

.footer-middle__content-col:first-child > h3 {
  position: relative;
}

.footer-middle__content-col:first-child > h3::after {
  content: "|";
  position: absolute;
  top: 0;
  right: 0;
}

.footer-middle__content-col:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 82%;
          flex: 0 0 82%;
  width: 82%;
}

.footer-middle__content-col:last-child > ul {
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5;
}

.footer-middle__content-col > h3 {
  margin: 0px 0px 20px 0px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-middle__content-col > ul > li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
}

.footer-middle__content-col > ul > li:not(:last-child) {
  margin: 0px 0px 12px 0px;
}

.footer-bottom {
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 2px dashed var(--colorMain);
}

.footer-copy {
  margin: 0px 30px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  width: 75%;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

/* RESPONSIVE */

@media (max-width: 1599px) {
  .container-big {
    max-width: 1200px;
  }
}

@media (max-width: 1399.98px) {
  .container {
    max-width: 960px;
  }

  .container-big {
    max-width: 960px;
  }

  .section-title {
    font-size: 32px;
  }

  .btn {
    padding: 0 45px;
    height: 60px;
  }

  .btn:before {
    left: 15px;
  }

  .btn:after {
    right: 15px;
  }

  .form-input {
    height: 60px;
  }

  .swiper-nav {
    width: 97%;
  }

  .swiper-btn-prev,
  .swiper-btn-next {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 54px;
            flex: 0 0 54px;
    width: 54px;
    height: 54px;
  }

  .contacts-list__item-icon {
    margin: 0px 10px 0px 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  .contacts-list__item-txt {
    font-size: 16px;
  }

  .contacts-list__item-txt > span {
    font-size: 10px;
  }

  .header {
    padding: 10px 0;
  }

  .header-socials {
    margin: 0px 40px 0px auto;
  }

  .intro {
    padding: 130px 0 100px;
  }

  .intro-content__title {
    font-size: 50px;
  }

  .intro-form {
    padding: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 310px;
            flex: 0 0 310px;
    width: 310px;
  }

  .intro-img {
    left: 78%;
  }

  .prices .section-bg__left {
    left: -4%;
  }

  .prices-list {
    margin: 0px auto;
  }

  .promotion-inner {
    margin: 0 -1.5%;
  }

  .promotion-item__term-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34px;
            flex: 0 0 34px;
    width: 34px;
    height: 34px;
  }

  .promotion-item__term-txt {
    font-size: 16px;
  }

  .promotion-item__info {
    padding: 20px 15px 55px;
  }

  .promotion-item__title {
    font-size: 20px;
  }

  .reviews .section-bg__right {
    right: -2%;
    width: 25%;
  }

  .reviews-ratings {
    gap: 25px;
  }

  .reviews-ratings__item {
    padding: 25px 15px;
  }

  .reviews-ratings__stars.star-rating {
    font-size: 38px;
  }

  .reviews-ratings__item-bottom {
    font-size: 20px;
  }

  .team-top {
    padding: 30px;
  }

  .team-chief__photo {
    margin: 0px 15px 0px 0px;
  }

  .team-chief__info {
    margin: 0px 25px 0px 0px;
  }

  .team-top__form-btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 185px;
            flex: 0 0 185px;
    width: 185px;
  }

  .team-top__form-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 195px);
            flex: 0 0 calc(100% - 195px);
    width: calc(100% - 195px);
  }

  .vehicles .section-bg__left {
    top: 10%;
    left: -5%;
  }

  .vehicles-gallery {
    margin: 0 -1.5%;
  }

  .emergency-circle {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
    width: 400px;
    height: 400px;
  }

  .emergency-logo__img {
    width: 45px;
    height: 45px;
  }

  .emergency-logo__txt {
    font-size: 40px;
  }

  .emergency-title {
    font-size: 22px;
  }

  .emergency-item {
    padding: 25px;
  }

  .clinic-item {
    padding: 25px 30px 20px;
  }

  .branches-slider {
    width: calc(100% - 140px);
  }

  .branches-slide__info {
    padding: 25px;
  }

  .help {
    padding: 30px 0 35px;
  }

  .help-slider__wrapper {
    margin: 0px 20px 0px 0px;
  }

  .help-info__list {
    margin: 0px 0px 20px 0px;
  }

  .help-info__list > li {
    font-size: 16px;
  }

  .help-info__list > li:not(:last-child) {
    margin: 0px 0px 15px 0px;
  }

  .help-info__list > li svg {
    margin: 0px 10px 0px 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26px;
            flex: 0 0 26px;
    width: 26px;
    height: 26px;
  }

  .help-form {
    display: block;
  }

  .help-form__item {
    margin: 0px auto 15px;
    width: 240px;
  }

  .help-form__btn {
    width: 240px;
  }

  .help-form__check {
    max-width: 240px;
  }

  .about-sidebar__item > span:first-child {
    font-size: 52px;
  }

  .about-sidebar__item > span:last-child {
    font-size: 16px;
  }

  .licenses-slider {
    width: calc(100% - 140px);
  }

  .map-wrapper {
    height: 450px;
  }

  .map-info {
    padding: 25px;
    max-width: 270px;
  }

  .footer-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
    width: 250px;
  }

  .footer-logo__txt > span {
    display: block;
  }

  .footer-logo__txt > span:first-child {
    font-size: 26px;
  }

  .footer-nav {
    margin: 0 3% 0 4%;
  }

  .footer-contacts {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
    width: 250px;
  }
}

@media (max-width: 1100px) {
  .container {
    max-width: 840px;
  }

  .container-big {
    max-width: 840px;
  }

  .section-txt {
    line-height: 1.4;
  }

  .go-top-btn {
    right: 15px;
    bottom: 30px;
    width: 40px;
    height: 40px;
  }

  .socials-sidebar {
    padding: 15px 0;
    bottom: 90px;
    right: 15px;
    width: 40px;
  }

  .socials-sidebar .socials-link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26px;
            flex: 0 0 26px;
    width: 26px;
    height: 26px;
  }

  .header-socials {
    margin: 0px 25px 0px auto;
  }

  .header-contacts {
    margin: 0px 25px 0px 0px;
  }

  .header-contacts__phone {
    font-size: 22px;
  }

  .header-contacts__txt {
    font-size: 9px;
  }

  .header-btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    width: 100px;
    height: 50px;
  }

  .intro-content {
    margin: 0px 25px 0px 0px;
  }

  .intro-content__title {
    font-size: 44px;
  }

  .intro-content__txt {
    font-size: 18px;
  }

  .intro-form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 290px;
            flex: 0 0 290px;
    width: 290px;
  }

  .intro-bottom__btn {
    bottom: 15px;
    width: 40px;
    height: 40px;
  }

  .prices-list__item-title {
    font-size: 16px;
  }

  .prices-list__item-price {
    font-size: 20px;
  }

  .prices-list__item:not(:last-child) {
    margin: 0px 0px 15px 0px;
  }

  .prices-bottom {
    padding: 35px 30px 28px;
  }

  .prices-bottom__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    width: 40%;
  }

  .prices-bottom__form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56%;
            flex: 0 0 56%;
    width: 56%;
  }

  .prices-bottom__form-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 165px);
            flex: 0 0 calc(100% - 165px);
    width: calc(100% - 165px);
  }

  .prices-bottom__form-btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    width: 150px;
  }

  .reviews-ratings__stars.star-rating {
    font-size: 34px;
  }

  .reviews-ratings__item-bottom {
    font-size: 18px;
  }

  .video-section .section-bg__left {
    bottom: -29%;
    left: -9%;
  }

  .video-section__info {
    padding: 20px 35px 20px 0px;
  }

  .team-chief {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    width: 40%;
  }

  .team-chief__info {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 121px);
            flex: 0 0 calc(100% - 121px);
    width: calc(100% - 121px);
  }

  .team-chief__txt {
    margin: 15px 0px 0px 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }

  .team-top__form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 57%;
            flex: 0 0 57%;
    width: 57%;
  }

  .help-inner {
    gap: 0;
  }

  .help-info {
    margin: 0px 0px 20px 0px;
    -ms-grid-row: 4;
        grid-row-start: 4;
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    -ms-grid-row-span: 1;
    grid-row: 1 span;
  }

  .help-slider__wrapper {
    margin: 0px 40px 0px 0px;
  }

  .help-slider {
    width: 275px;
  }

  .help-slide__info {
    padding: 15px 15px 20px;
  }

  .help-slide__name {
    font-size: 17px;
  }

  .help-slide__spec {
    font-size: 14px;
  }

  .help-header {
    margin: 0px 0px 15px 0px;
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .help-form {
    -ms-grid-row: 3;
        grid-row-start: 3;
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    -ms-grid-column-align: center;
        justify-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 450px;
  }

  .help-form__item {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 220px);
            flex: 0 0 calc(100% - 220px);
    width: calc(100% - 220px);
  }

  .help-form__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    width: 200px;
  }

  .help-form__check {
    max-width: unset;
  }

  .about-inner {
    display: block;
  }

  .about-content {
    margin: 0px 0px 40px 0px;
    width: 100%;
  }

  .about-content__items {
    gap: 55px 24px;
  }

  .about-content__item-title {
    font-size: 18px;
  }

  .about-content__item-txt {
    font-size: 14px;
  }

  .about-sidebar {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .about-sidebar__item {
    margin: 0 10px;
  }

  .about-sidebar__item:not(:last-child) {
    margin: 0 10px;
  }

  .licenses-slide {
    padding-bottom: 66%;
  }

  .footer-middle__content-col:last-child > ul {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

@media (max-width: 991.98px) {
  :root {
    --shadowMain: 0px 4px 15px rgba(21, 206, 140, 0.5),
                  inset -1px -1px 3px rgba(0, 0, 0, 0.35),
                  inset 1px 1px 9px rgba(255, 255, 255, 0.75);
    --shadowGrey: 0px 4px 15px rgba(0, 0, 0, 0.2),
                  inset -2px -2px 3px rgba(0, 0, 0, 0.2),
                  inset 4px 4px 3px rgba(255, 255, 255, 0.75);
    --shadowGreyOutside: 0px 4px 15px rgba(0, 0, 0, 0.2);
  }

  .container {
    max-width: none;
    padding: 0 10px;
  }

  .container-big {
    max-width: none;
    padding: 0 10px;
  }

  .socials-sidebar {
    display: none !important;
  }

  .section-bg__left,
  .section-bg__right {
    opacity: 0.6;
  }

  .socials-link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34px;
            flex: 0 0 34px;
    width: 34px;
    height: 34px;
  }

  .form-tooltip__txt {
    left: auto;
    right: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .form-tooltip__txt::after {
    left: 92%;
  }

  .header-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 235px;
            flex: 0 0 235px;
    width: 235px;
  }

  .header-logo__img {
    margin: 0px 5px 0px 0px;
  }

  .header-logo__txt > span:last-child {
    font-size: 10px;
  }

  .header-contacts__phone {
    font-size: 20px;
  }

  .intro._stripes::before {
    display: none;
  }

  .intro-img {
    left: 31%;
    opacity: 0.2;
  }

  .intro-content__list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 25px 10px;
  }

  .prices {
    padding: 60px 0 0;
  }

  .prices .section-bg__left {
    top: -4%;
    left: -6%;
  }

  .prices .section-bg__right {
    display: none;
  }

  .prices-bottom {
    margin: -20px 0 0;
    display: block;
    -webkit-transform: translateY(30%);
        -ms-transform: translateY(30%);
            transform: translateY(30%);
  }

  .prices-bottom__title {
    margin: 0px 0px 30px 0px;
    width: 100%;
    text-align: center;
  }

  .prices-bottom__form {
    margin: 0px auto;
    width: 100%;
    max-width: 450px;
  }

  .promotion {
    padding: 125px 0 25px;
  }

  .promotion .section-bg__left {
    top: 87%;
    left: -3%;
  }

  .promotion-item__info {
    padding: 20px 15px 45px;
    margin-top: -20px;
  }

  .promotion-item__prices {
    min-height: 50px;
  }

  .promotion-item__oldprice {
    font-size: 20px;
  }

  .promotion-item__price {
    font-size: 28px;
  }

  .promotion-item__title {
    font-size: 18px;
  }

  .promotion-item__btn {
    width: 75%;
  }

  .reviews {
    padding: 80px 0 65px;
  }

  .reviews .section-bg__right {
    bottom: -3%;
  }

  .reviews-ratings__stars.star-rating {
    font-size: 4.3vw;
  }

  .reviews-ratings__item-bottom {
    font-size: 2vw;
  }

  .reviews-list__item {
    padding: 30px;
  }

  .reviews-showmore__btn {
    margin: 40px auto 0;
  }

  .stages .section-bg__left {
    top: -4%;
    left: 0%;
  }

  .stages-title {
    margin: 0px 0px 40px 0px;
  }

  .video-section .section-bg__left {
    bottom: 54%;
    left: -9%;
  }

  .video-section__inner {
    display: block;
  }

  .video-section__info {
    padding: 40px 0;
    width: 100%;
    text-align: center;
  }

  .video-section__title {
    text-align: center;
  }

  .video {
    padding: 0px 0px 60.5%;
    margin: 0px 0px 0px -10px;
    width: calc(100% + 20px);
  }

  .team {
    padding: 75px 0 55px;
  }

  .team .section-bg__right {
    display: none;
  }

  .team-subtitle {
    margin: 0px 0px 40px 0px;
  }

  .vehicles {
    padding: 65px 0 35px;
  }

  .vehicles .section-bg__left {
    top: -5%;
  }

  .specialists {
    padding: 70px 0 50px;
  }

  .specialists .section-bg__right {
    top: -6%;
  }

  .specialists-map {
    height: 400px;
  }

  .emergency {
    padding: 55px 0;
  }

  .emergency-inner {
    display: block;
  }

  .emergency-circle {
    margin: 0px auto 30px;
  }

  .emergency-item:first-child,
  .emergency-item:last-child {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .clinic .section-bg__left {
    top: -4%;
  }

  .branches {
    padding: 60px 0 30px;
  }

  .branches-title {
    margin: 0px 0px 15px 0px;
  }

  .branches-slider {
    padding: 20px;
  }

  .faq {
    padding: 75px 0;
  }

  .faq-title {
    margin: 0px 0px 40px 0px;
  }

  .help {
    padding: 40px 0 20px;
  }

  .help-info {
    overflow: hidden;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .help-slider__wrapper {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    width: 45%;
  }

  .help-slider__wrapper .swiper-pagination {
    display: none !important;
  }

  .help-slider__wrapper .swiper-nav {
    top: 40%;
    width: 96%;
  }

  .help-slider {
    padding: 20px;
    width: 100%;
  }

  .help-info__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }

  .about {
    padding: 75px 0 55px;
  }

  .about-content__top {
    margin: 0px auto 70px;
  }

  .licenses {
    padding: 65px 0 40px;
  }

  .licenses-slider {
    padding: 20px;
  }

  .map-wrapper {
    height: auto;
  }

  .map {
    position: relative;
    height: 400px;
  }

  .map-info {
    padding: 35px 25px;
    margin: 0 -10px;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    max-width: none;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  .map-info__logo {
    margin: 0 25px 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    width: 300px;
  }

  .footer-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer-nav,
  .footer-contacts__list {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 300px);
            flex: 0 0 calc(100% - 300px);
    width: calc(100% - 300px);
  }

  .footer-contacts {
    margin: 50px 0px 0px 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .footer-contacts__top {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
    width: 250px;
  }

  .footer-contacts__btn {
    margin: 20px 0px 0px 0px;
  }

  .footer-copy {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  .go-top-btn {
    right: 10px;
  }

  .header-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 170px;
            flex: 0 0 170px;
    width: 170px;
  }

  .header-logo__txt > span:first-child {
    margin: 0px 0px 3px 0px;
    font-size: 19px;
  }

  .header-logo__txt > span:last-child {
    font-size: 9px;
  }

  .header-contacts {
    margin: 0;
  }

  .header-btn {
    display: none;
  }

  .intro {
    padding: 130px 0 0;
    z-index: 5;
  }

  .intro-img {
    left: 34%;
    width: 125%;
    max-width: unset;
  }

  .intro-inner {
    display: block;
  }

  .intro-content {
    margin: 0px 0px 60px 0px;
    max-width: 100%;
  }

  .intro-form {
    padding: 25px 20px 30px;
    margin: -50px auto 0;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    width: 98%;
  }

  .intro-form__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .intro-form__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 250px);
            flex: 0 0 calc(100% - 250px);
    width: calc(100% - 250px);
  }

  .intro-form__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
    width: 230px;
  }

  .intro-form__check {
    width: auto;
  }

  .intro-bottom__btn {
    display: none;
  }

  .prices {
    padding: 115px 0 0;
  }

  .prices .section-bg__left {
    top: 7%;
  }

  .promotion .section-bg__left {
    top: 85%;
    width: 38%;
  }

  .promotion-inner {
    margin: 0 -2.5%;
  }

  .promotion-item {
    margin: 0 2.5% 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    width: 45%;
  }

  .reviews-ratings {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .reviews-ratings__stars.star-rating {
    font-size: 6.3vw;
  }

  .reviews-ratings__item-bottom {
    font-size: 3.5vw;
  }

  .team-top {
    display: block;
  }

  .team-chief {
    margin: 0px 0px 30px 0px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .team-chief__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .team-chief__txt {
    text-align: center;
  }

  .team-top__form {
    margin: 0px auto;
    width: 100%;
    max-width: 450px;
  }

  .vehicles-photo {
    padding-bottom: 33%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
    width: 47%;
  }

  .clinic-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
    width: 47%;
  }

  .clinic-item__title {
    font-size: 17px;
  }

  .clinic-item__txt {
    font-size: 13px;
  }

  .clinic-photo {
    padding-bottom: 33%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
    width: 47%;
  }

  .branches-slide {
    display: block;
  }

  .branches-slide__img {
    padding-bottom: 67%;
    width: 100%;
    height: 0;
    min-height: unset;
  }

  .accordeon-title {
    padding: 18px 20px;
    font-size: 15px;
  }

  .accordeon-title svg {
    right: 10px;
    width: 20px;
    height: 20px;
  }

  .about-content__items {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 50px 20px;
  }

  .about-sidebar {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .about-sidebar__item {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .about-sidebar__item:not(:last-child) {
    margin: 0;
  }

  .footer-middle__content-col:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 19%;
            flex: 0 0 19%;
    width: 19%;
  }

  .footer-middle__content-col:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 77%;
            flex: 0 0 77%;
    width: 77%;
  }

  .footer-middle__content-col:last-child > ul {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }

  .footer-middle__content-col > ul > li {
    font-size: 14px;
  }

  .footer-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer-copy {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 15px 0px 0px 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    text-align: center;
  }

  .footer-bottom__socials {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0px auto 10px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --shadowMain: 0px 4px 10px rgba(21, 206, 140, 0.5),
                  inset -1px -1px 3px rgba(0, 0, 0, 0.35),
                  inset 1px 1px 9px rgba(255, 255, 255, 0.75);
    --shadowGrey: 0px 4px 10px rgba(0, 0, 0, 0.2),
                  inset -2px -2px 3px rgba(0, 0, 0, 0.2),
                  inset 4px 4px 3px rgba(255, 255, 255, 0.75);
    --shadowGreyOutside: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }

  .section-title {
    font-size: 26px;
  }

  .socials-link:not(:last-child) {
    margin: 0px 15px 0px 0px;
  }

  .swiper-nav {
    width: 100%;
  }

  .swiper-btn-prev,
  .swiper-btn-next {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .swiper-btn-prev:before,
  .swiper-btn-next:before {
    border-radius: 10px;
  }

  .popup-content {
    padding: 35px 20px;
  }

  .header-logo {
    display: none;
  }

  .header-socials {
    margin: 0px 25px 0px 0px;
  }

  .header-contacts__phone {
    font-size: 17px;
  }

  .header-contacts__txt {
    font-size: 8px;
  }

  .intro {
    padding: 90px 0 0;
  }

  .intro-img {
    left: 4%;
    width: 220%;
  }

  .intro-content__tooltip {
    padding: 15px;
    font-size: 14px;
  }

  .intro-content__title {
    font-size: 32px;
  }

  .intro-form__body {
    display: block;
  }

  .intro-form__item,
  .intro-form__btn {
    width: 100%;
  }

  .intro-form__check {
    margin: 0px 15px 20px;
  }

  .intro-content__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px 0;
  }

  .intro-form__title {
    font-size: 19px;
  }

  .prices-list {
    padding: 25px 20px;
  }

  .prices-list__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .prices-list__item:not(:last-child) {
    margin: 0px 0px 25px 0px;
  }

  .prices-list__item-price:before {
    min-width: 20px;
    border: none;
  }

  .prices-bottom {
    margin: -20px 0 0;
    -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
            transform: translateY(20%);
  }

  .prices-bottom__title {
    font-size: 20px;
  }

  .prices-bottom__form {
    display: block;
  }

  .prices-bottom__form-item {
    margin: 0px 0px 15px 0px;
  }

  .prices-bottom__form-item,
  .prices-bottom__form-btn {
    width: 100%;
  }

  .prices-bottom__form-check {
    margin: 15px 15px 0;
  }

  .promotion {
    padding: 125px 0 50px;
  }

  .promotion-title {
    margin: 0px 0px 25px 0px;
  }

  .promotion-inner {
    margin: 0;
    display: block;
  }

  .promotion-item {
    margin: 0;
    width: 100%;
  }

  .promotion-item:not(:last-child) {
    margin: 0px 0px 40px 0px;
  }

  .promotion-item__info {
    padding: 20px 15px 55px;
  }

  .reviews {
    padding: 65px 0 45px;
  }

  .reviews .section-bg__right {
    bottom: -4%;
  }

  .reviews-title {
    margin: 0px 0px 30px 0px;
  }

  .reviews-ratings {
    margin: 0px auto 60px;
  }

  .reviews-txt {
    margin: 0px 0px 30px 0px;
  }

  .reviews-list__item {
    padding: 20px;
  }

  .reviews-list__item-top {
    display: block;
  }

  .reviews-list__item-name {
    margin: 0px 0px 20px 0px;
  }

  .reviews-list__item-audio.green-audio-player .controls .controls__total-time,
  .reviews-list__item-audio.green-audio-player .controls .controls__current-time {
    min-width: 55px;
    font-size: 20px;
  }

  .stages {
    padding: 70px 0 50px;
  }

  .stages .section-bg__left {
    display: none;
  }

  .stages-title {
    margin: 0px 0px 30px 0px;
  }

  .stages-item__title {
    font-size: 16px;
  }

  .team {
    padding: 65px 0 55px;
  }

  .team-title {
    margin: 0px 0px 30px 0px;
  }

  .team-top {
    margin: 0px 0px 55px 0px;
  }

  .team-top__form {
    display: block;
  }

  .team-top__form-item {
    margin: 0px 0px 15px 0px;
  }

  .team-top__form-item,
  .team-top__form-btn {
    width: 100%;
  }

  .team-top__form-check {
    margin: 15px 15px 0;
  }

  .team-subtitle {
    margin: 0px 0px 30px 0px;
  }

  .vehicles .section-bg__left {
    top: -6%;
    width: 32%;
  }

  .vehicles-top {
    margin: 0px auto 30px;
  }

  .vehicles-title {
    margin: 0px 0px 15px 0px;
  }

  .specialists {
    padding: 60px 0 35px;
  }

  .specialists .section-bg__right {
    top: -4%;
    width: 30%;
  }

  .specialists-top {
    margin: 0px auto 40px;
  }

  .emergency-circle {
    width: 340px;
    height: 340px;
  }

  .emergency-logo {
    margin: 0px 0px 10px 0px;
  }

  .emergency-logo__img {
    margin: 0px auto 10px;
  }

  .emergency-logo__txt {
    font-size: 30px;
  }

  .emergency-title {
    font-size: 20px;
  }

  .emergency-item {
    padding: 25px 20px;
  }

  .clinic {
    padding: 60px 0 40px;
  }

  .clinic .section-bg__left {
    top: -2%;
    width: 33%;
  }

  .clinic-title {
    margin: 0px 0px 20px 0px;
  }

  .clinic-top {
    margin: 0px auto 30px;
  }

  .clinic-items {
    margin: 0 0 50px;
    display: block;
  }

  .clinic-item {
    margin: 0;
    width: 100%;
  }

  .clinic-item:not(:last-child) {
    margin: 0px 0px 15px 0px;
  }

  .clinic-item__title {
    margin: 0px 0px 12px 0px;
  }

  .clinic-subtitle {
    margin: 0px 0px 30px 0px;
  }

  .branches-slider {
    width: calc(100% - 20px);
  }

  .branches-slide__title {
    margin: 0px 0px 20px 0px;
    font-size: 18px;
  }

  .branches-slide__list > li:not(:last-child) {
    margin: 0px 0px 12px 0px;
  }

  .faq {
    padding: 55px 0;
  }

  .faq-title {
    margin: 0px 0px 30px 0px;
  }

  .faq-tabs__nav {
    display: block;
  }

  .faq-tabs__nav-btn {
    margin: 0 auto;
  }

  .faq-tabs__nav-btn:not(:last-child) {
    margin: 0px auto 15px;
  }

  .help {
    padding: 40px 0;
  }

  .help-form {
    display: block;
  }

  .help-form__item {
    margin: 0px 0px 15px 0px;
  }

  .help-form__item,
  .help-form__btn {
    width: 100%;
  }

  .help-form__check {
    margin: 15px 15px 0;
  }

  .help-info {
    display: block;
  }

  .help-slider__wrapper,
  .help-info__content {
    width: 100%;
  }

  .help-info__content {
    padding: 0 20px;
    margin: 10px 0px 0px 0px;
  }

  .help-slider__wrapper .swiper-btn-prev,
  .help-slider__wrapper .swiper-btn-next {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .about {
    padding: 65px 0 40px;
  }

  .about-title {
    margin: 0px 0px 20px 0px;
  }

  .about-content__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px 20px;
  }

  .about-sidebar {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 35px 0;
  }

  .licenses-slider {
    width: calc(100% - 20px);
  }

  .licenses-slide {
    padding-bottom: 140%;
  }

  .map-info {
    display: block;
  }

  .map-info__logo {
    margin: 0 0 25px 0;
  }

  .footer-top,
  .footer-contacts {
    display: block;
    text-align: center;
  }

  .footer-info {
    margin: 0px 0px 20px 0px;
  }

  .footer-info,
  .footer-nav,
  .footer-contacts__list,
  .footer-contacts__top {
    width: 100%;
  }

  .footer-logo {
    margin: 0px auto 10px;
    width: 275px;
  }

  .footer-logo__txt > span {
    text-align: left;
  }

  .footer-contacts__top {
    margin: 0px 0px 30px 0px;
  }

  .footer-socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer-contacts__list .contacts-list__item {
    display: block;
  }

  .footer-contacts__list .contacts-list__item .contacts-list__item-icon {
    margin: 0px auto 5px;
  }

  .footer-contacts__btn {
    margin: 30px auto 0;
  }

  .footer-middle__title {
    font-size: 16px;
  }

  .footer-middle__content-col:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    width: 25%;
  }

  .footer-middle__content-col:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
    width: 70%;
  }

  .footer-middle__content-col:last-child > ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }

  .footer-middle__content-col > h3 {
    font-size: 16px;
  }
}

@media (max-width: 350px) {
  .header-socials {
    margin: 0px 20px 0px 0px;
  }

  .header-socials .socials-link:not(:last-child) {
    margin: 0px 10px 0px 0px;
  }

  .header-contacts__phone {
    font-size: 15px;
  }

  .header-contacts__txt {
    font-size: 7px;
    white-space: nowrap;
  }

  .prices-list__item-title {
    font-size: 14px;
  }

  .prices-list__item-price {
    font-size: 18px;
  }

  .prices-bottom {
    padding: 35px 20px 28px;
  }

  .stages-list__item {
    display: block;
    text-align: center;
  }

  .stages-list__item-time {
    margin: 0px 0px 15px 0px;
  }

  .team-top {
    padding: 30px 20px;
  }

  .team-chief__photo {
    margin: 0px 10px 0px 0px;
  }

  .team-chief__name {
    font-size: 18px;
  }

  .emergency-circle {
    width: 300px;
    height: 300px;
  }

  .emergency-logo__txt {
    font-size: 26px;
  }

  .emergency-title {
    font-size: 18px;
  }

  .footer-middle__content-col:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    width: 40%;
  }

  .footer-middle__content-col:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }

  .footer-middle__content-col:last-child > ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

.webp .intro{ background: url(../images/intro/bg.webp) center/cover no-repeat; }

.webp .prices{ background: url(../images/prices/bg.webp) center/cover no-repeat; }

.webp .reviews{ background: url(../images/reviews/bg.webp) center/cover no-repeat; }

.webp .team{ background: url(../images/team/bg.webp) center/cover no-repeat; }

.webp .specialists{ background: url(../images/specialists/bg.webp) center/cover no-repeat; }

.webp .faq{ background: url(../images/faq/bg.webp) center/cover no-repeat; }

.webp .about{ background: url(../images/about/bg.webp) center/cover no-repeat; }