@charset "UTF-8";
/* VARS */
:root {
  --color-main: #02a296;
  --color-black: #0d0d0d;
  --color-white: #ffffff;
  --color-grey: #f4f4f4;
  --color-grey-dark: #222222;
}

/***************************************************************************/
/* FONTS */
@font-face {
  font-family: "Gilroy";
  font-display: swap;
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "P22UndergroundCYPro";
  font-display: swap;
  src: url("../fonts/P22UndergroundCYPro-Book.woff2") format("woff2"), url("../fonts/P22UndergroundCYPro-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "P22UndergroundCYPro";
  font-display: swap;
  src: url("../fonts/P22UndergroundCYPro-Light.woff2") format("woff2"), url("../fonts/P22UndergroundCYPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "P22UndergroundCYPro";
  font-display: swap;
  src: url("../fonts/P22UndergroundCYPro-Medium.woff2") format("woff2"), url("../fonts/P22UndergroundCYPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "P22UndergroundCYPro";
  font-display: swap;
  src: url("../fonts/P22UndergroundCYPro-Demi.woff2") format("woff2"), url("../fonts/P22UndergroundCYPro-Demi.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "P22UndergroundCYPro";
  font-display: swap;
  src: url("../fonts/P22UndergroundCYPro-Heavy.woff2") format("woff2"), url("../fonts/P22UndergroundCYPro-Heavy.woff") format("woff");
  font-weight: 900;
  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: var(--color-black);
  font-family: "P22UndergroundCYPro";
  font-size: 18px;
  font-weight: 300;
}

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: 1550px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1640px) {
  .container {
    max-width: 1300px;
  }
}
@media (max-width: 1400px) {
  .container {
    max-width: 1040px;
  }
}
@media (max-width: 1100px) {
  .container {
    max-width: 950px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: none;
    padding: 0 20px;
  }
}
@media (max-width: 767.98px) {
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 10px;
  }
}
/***************************************************************************/
/* COMMON ELEMENTS/CLASSES */
/* SECTION */
.section--dark {
  position: relative;
}

.section--dark:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('../images/section-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.25;
}

.section--dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--color-grey);
  opacity: 0.35;
}

.section-header {
  margin: 0 auto 70px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.section-title {
  font-size: 53px;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 0 2px var(--color-white);
}

.section-txt {
  margin: 20px 0px 0px 0px;
  font-size: 21px;
  line-height: 1.2;
  text-shadow: 0 0 2px var(--color-white);
}

.section-inner {
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/***************************************************************************/
/* SCOIALS */
.socials {
  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;
}

.socials-link {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 44px;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -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 25px 0px 0px;
}

.socials-link--wa {
  background-color: #36d252;
  -webkit-box-shadow: 0 0 10px 0 rgba(54, 210, 83, 0.65);
  box-shadow: 0 0 10px 0 rgba(54, 210, 83, 0.65);
}

.socials-link--tele {
  background-color: #269fdd;
  -webkit-box-shadow: 0 0 10px 0 rgba(38, 160, 221, 0.65);
  box-shadow: 0 0 10px 0 rgba(38, 160, 221, 0.65);
}

.socials-link--vib {
  background-color: #6d5be6;
  -webkit-box-shadow: 0 0 10px 0 rgba(110, 91, 230, 0.65);
  box-shadow: 0 0 10px 0 rgba(110, 91, 230, 0.65);
}

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

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

/***************************************************************************/
/* SHADOWS */
._shadow {
  position: relative;
  background-color: var(--color-white);
  border-radius: 20px;
}

._shadow:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
}

/***************************************************************************/
/* BUTTONS */
.btn {
  padding: 0 20px;
  position: relative;
  height: 65px;
  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;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  border-radius: 15px;
  -webkit-box-shadow: 0 35px 30px -20px rgba(2, 162, 151, 0.6);
  box-shadow: 0 35px 30px -20px rgba(2, 162, 151, 0.6);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.btn::before, .btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.btn::before {
  top: 4px;
  z-index: 1;
  background-color: #09948b;
}

.btn::after {
  top: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(#02bcae), to(#008f83));
  background: -o-linear-gradient(#02bcae, #008f83);
  background: linear-gradient(#02bcae, #008f83);
  -webkit-box-shadow: inset 0 -2px 6px 0px rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 -2px 6px 0px rgba(255, 255, 255, 0.5);
  -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--big {
  height: 90px;
  border-radius: 20px;
}

.btn--big::before, .btn--big::after {
  border-radius: 20px;
}

.btn > span {
  position: relative;
  display: inline-block;
  z-index: 3;
  -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:active::after,
.btn:active > span {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
      transform: translateY(4px);
}

body._desktop .btn:hover {
  -webkit-box-shadow: 0 35px 30px -20px rgba(2, 162, 151, 0);
  box-shadow: 0 35px 30px -20px rgba(2, 162, 151, 0);
}

/***************************************************************************/
/* OWL SLIDER */
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  pointer-events: none;
}

.owl-carousel .owl-nav > button {
  pointer-events: auto;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 46px;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 24px 0 rgba(1, 158, 145, 0.6);
  box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 24px 0 rgba(1, 158, 145, 0.6);
  -webkit-transition: opacity 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: opacity 0.2s ease, -webkit-box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease, opacity 0.2s ease;
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
  transition: box-shadow 0.2s ease, opacity 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.owl-carousel .owl-nav > button.owl-prev {
  background: url("../images/icons/arr-left.svg") center/50% 50% no-repeat, -webkit-gradient(linear, left top, left bottom, from(#02bcae), to(#008f83)) !important;
  background: url("../images/icons/arr-left.svg") center/50% 50% no-repeat, -o-linear-gradient(#02bcae, #008f83) !important;
  background: url("../images/icons/arr-left.svg") center/50% 50% no-repeat, linear-gradient(#02bcae, #008f83) !important;
}

.owl-carousel .owl-nav > button.owl-next {
  background: url("../images/icons/arr-right.svg") center/50% 50% no-repeat, -webkit-gradient(linear, left top, left bottom, from(#02bcae), to(#008f83)) !important;
  background: url("../images/icons/arr-right.svg") center/50% 50% no-repeat, -o-linear-gradient(#02bcae, #008f83) !important;
  background: url("../images/icons/arr-right.svg") center/50% 50% no-repeat, linear-gradient(#02bcae, #008f83) !important;
}

.owl-carousel .owl-nav > button.disabled {
  opacity: 0.3;
}

body._desktop .owl-carousel .owl-nav > button:hover {
  -webkit-box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 24px 0 rgba(1, 158, 145, 0);
  box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 24px 0 rgba(1, 158, 145, 0);
}

/***************************************************************************/
/* FORMS */
form button[type=submit] {
  -webkit-transition: opacity 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: opacity 0.2s ease, -webkit-box-shadow 0.2s ease;
  -o-transition: opacity 0.2s ease, box-shadow 0.2s ease;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  transition: opacity 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

form button[type=submit]:disabled {
  opacity: 0.2;
}

.form-input {
  padding: 0 10px;
  height: 90px;
  text-align: center;
  color: var(--color-black);
  font-size: 20px;
  font-weight: 600;
  line-height: 90px;
  border: 3px solid #afbdcc;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 29px 0 rgba(157, 169, 192, 0.4);
  box-shadow: inset 0 0 29px 0 rgba(157, 169, 192, 0.4);
  -webkit-transition: border 0.2s ease;
  -o-transition: border 0.2s ease;
  transition: border 0.2s ease;
}

.form-input::-webkit-input-placeholder {
  color: #797979;
  line-height: 90px;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form-input::-moz-placeholder {
  color: #797979;
  line-height: 90px;
  -moz-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form-input:-ms-input-placeholder {
  color: #797979;
  line-height: 90px;
  -ms-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form-input::-ms-input-placeholder {
  color: #797979;
  line-height: 90px;
  -ms-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form-input::placeholder {
  color: #797979;
  line-height: 90px;
  -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;
}

.form-input:focus {
  border: 3px solid var(--color-main);
}

.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._err {
  border: 3px solid red;
}

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

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

.checkbox-custom {
  margin: 0px 20px 0px 0px;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32px;
  flex: 0 0 32px;
  width: 32px;
  height: 28px;
  background-color: var(--color-main);
  border-radius: 5px;
}

.checkbox-custom:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url("../images/icons/check.svg") center/80% 80% no-repeat;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
      transform: scale(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;
}

.check-txt {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.check-txt > a {
  color: var(--color-main);
  font-weight: 600;
  text-decoration: underline;
}

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

.check-input:checked + .checkbox-custom:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
}

.check-input._err + .checkbox-custom {
  -webkit-box-shadow: inset 0 0 0 2px red;
  box-shadow: inset 0 0 0 2px red;
}

/***************************************************************************/
/* 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.4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  -o-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s 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: 45px;
  position: relative;
  max-width: 635px;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 40px;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
      transform: scale(0);
  will-change: transform;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

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

.popup-close > span {
  position: absolute;
  top: 18px;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  -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: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.popup-close > span:last-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

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

.popup__title {
  margin: 0px 0px 10px 0px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.popup__txt {
  margin: 0px 0px 70px 0px;
  font-size: 26px;
  line-height: 1.4;
}

.popup-form {
  margin: 0px auto;
  width: 87%;
}

.popup-form__input {
  margin: 0px 0px 30px 0px;
  display: block;
  width: 100%;
}

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

.popup-form__check-label {
  margin: 0px auto;
  width: 75%;
}

.popup-message .popup__txt {
  margin: 0;
}

/***************************************************************************/
/* HEADER */
.header {
  padding: 15px 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.header.is-scrolled {
  background-color: var(--color-white);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.header.is-scrolled .header-logo::before, .header.is-scrolled .header-logo::after {
  opacity: 0;
  visibility: hidden;
}

.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 15px 0px 0px;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 304px;
  flex: 0 0 304px;
  width: 304px;
  text-align: center;
}

.header-logo::before, .header-logo::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: -35px;
  -webkit-transform: skewY(-3deg);
  -ms-transform: skewY(-3deg);
      transform: skewY(-3deg);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header-logo::before {
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  z-index: 1;
  background-color: var(--color-white);
  border-radius: 15px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.header-logo::after {
  left: 8px;
  width: calc(100% - 14px);
  height: calc(100% + 53px);
  z-index: 2;
  border: 1px solid #ececec;
  border-radius: 10px;
}

.header-logo img {
  position: relative;
  z-index: 3;
  width: 84%;
  -o-object-fit: contain;
  object-fit: contain;
}

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

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

.header__phone-schedule {
  margin: 0px 70px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-phones {
  margin: 0px 20px 0px 0px;
}

.header-phones > li:not(:last-child) {
  margin: 0px 0px 8px 0px;
}

.header-phone {
  display: inline-block;
  white-space: nowrap;
  color: var(--color-grey-dark);
  font-size: 24px;
  font-weight: 900;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

body._desktop .header-phone:hover {
  color: var(--color-main);
}

.header-schedule {
  color: #4e4e4e;
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}

.header-btn.btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 195px;
  flex: 0 0 195px;
  width: 195px;
  height: 55px;
  font-size: 14px;
  border-radius: 10px;
}

.header-btn.btn::before, .header-btn.btn::after {
  border-radius: 10px;
}

/***************************************************************************/
/* INTRO */
.intro {
  padding: 200px 0px 50px;
  position: relative;
}

.intro:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  z-index: 3;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: -o-linear-gradient(rgba(255, 255, 255, 0), white);
  background: linear-gradient(rgba(255, 255, 255, 0), white);
}

.intro:before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.5);
}

.intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.intro-inner {
  position: relative;
  z-index: 4;
  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: 30px 50px 0px 0px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 650px;
  flex: 0 1 650px;
  max-width: 650px;
}

.intro-content__top {
  margin: 0px 0px 70px 0px;
}

.intro-title {
  margin: 0px 0px 15px 0px;
  font-size: 67px;
  font-weight: 500;
  line-height: 0.95;
}

.intro-subtitle {
  margin: 0px 0px 50px 0px;
  font-size: 38px;
}

.intro-subtitle > span {
  font-weight: 900;
}

.intro-list > li {
  padding: 0px 0px 0px 55px;
  position: relative;
  font-size: 24px;
}

.intro-list > li:not(:last-child) {
  margin: 0px 0px 40px 0px;
}

.intro-list > li:nth-last-child(-n+2) {
  display: none;
}

.intro-list > li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: url("../images/icons/check.svg") center/50% 50% no-repeat;
  background-color: var(--color-main);
  border-radius: 50%;
}

.intro-list > li > span {
  font-weight: 600;
}

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

.intro-content__item {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.intro-content__item:nth-child(1) .intro-content__item-inner {
  overflow: hidden;
}

.intro-content__item:nth-child(1) .intro-content__item-txt {
  padding-right: 33%;
}

.intro-content__item:nth-child(1) .intro-content__item-txt::after {
  width: calc(77% - 12px);
}

.intro-content__item:nth-child(1) .intro-content__item-img {
  top: 10px;
  right: 0;
  width: 28%;
}

.intro-content__item:nth-child(2) .intro-content__item-txt {
  padding-right: 51%;
}

.intro-content__item:nth-child(2) .intro-content__item-txt::after {
  width: calc(59% - 12px);
}

.intro-content__item:nth-child(2) .intro-content__item-img {
  top: 0;
  right: -12%;
  width: 57%;
}

.intro-content__item:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 90%;
  height: 100%;
  z-index: -1;
  background-color: #f6f6f7;
  border-radius: 20px;
}

.intro-content__item-inner {
  padding: 25px 0px 20px 25px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 20px;
}

.intro-content__item-txt {
  padding: 0px 0px 26px 0px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.intro-content__item-txt > span {
  font-weight: 600;
}

.intro-content__item-txt::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-main);
  border-radius: 50%;
}

.intro-content__item-txt::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 12px;
  border: 1px dashed #d6d6d6;
}

.intro-content__item-img {
  position: absolute;
  height: 100%;
}

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

.intro-form {
  padding: 30px 30px 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 460px;
  flex: 0 0 460px;
  width: 460px;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 40px;
}

.intro-form:after {
  border-radius: 40px;
}

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

.intro-form__txt {
  margin: 0px 0px 60px 0px;
  font-size: 26px;
  line-height: 1.3;
}

.intro-form__inner {
  margin: 0px auto;
  width: 85%;
}

.intro-form__input {
  margin: 0px 0px 30px 0px;
  display: block;
  width: 100%;
}

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

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

/***************************************************************************/
/* PRICES */
.prices {
  padding: 70px 0 150px;
  position: relative;
}

.prices .section-header {
  max-width: 750px;
}

.prices-bg__left,
.prices-bg__right {
  position: absolute;
  height: 0;
  z-index: 1;
}

.prices-bg__left img,
.prices-bg__right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.prices-bg__left {
  padding: 0 0 35%;
  bottom: -16%;
  left: 0;
  width: 30%;
}

.prices-bg__left img {
  -o-object-position: center left;
  object-position: center left;
}

.prices-bg__right {
  padding: 0 0 51%;
  top: 7%;
  right: 0;
  width: 28%;
}

.prices-bg__right img {
  -o-object-position: center right;
  object-position: center right;
}

.prices-inner {
  max-width: 830px;
}

.prices-item {
  padding: 20px 30px 20px 25px;
  position: relative;
  min-height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 2px solid var(--color-white);
  will-change: transform;
  -webkit-transition: border 0.2s ease, -webkit-transform 0.2s ease;
  transition: border 0.2s ease, -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease, border 0.2s ease;
  transition: transform 0.2s ease, border 0.2s ease;
  transition: transform 0.2s ease, border 0.2s ease, -webkit-transform 0.2s ease;
}

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

body._desktop .prices-item:hover {
  border: 2px solid var(--color-main);
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
      transform: scale(1.06);
}

.prices-item__info {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.prices-item__title {
  margin: 0px 0px 10px 0px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.prices-item__subtitle {
  margin: 0px 0px 10px 0px;
  font-size: 24px;
  font-weight: 300;
}

.prices-item__text {
  line-height: 1.2;
}

.prices-item__price {
  padding: 0 10px;
  margin: 0 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 230px;
  flex: 0 0 230px;
  width: 230px;
  height: 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;
  color: var(--color-main);
  font-size: 44px;
  font-weight: 600;
  text-align: center;
  border-left: 2px dashed #d6d6d6;
  border-right: 2px dashed #d6d6d6;
}

.prices-item__price > span {
  margin: 0px 0px 0px 7px;
  font-family: "Gilroy";
}

.prices-item__order {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.prices-item__btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 195px;
  flex: 0 0 195px;
  width: 195px;
  height: 60px;
  white-space: nowrap;
  font-size: 16px;
}

/***************************************************************************/
/* PROMOTION */
.promotion {
  padding: 165px 0 150px;
}

.promotion-inner {
  width: 96%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.promotion-item {
  margin: 0 2%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 29.3333%;
  flex: 0 0 29.3333%;
  max-width: 29.3333%;
  position: relative;
  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:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 85%;
  height: 100%;
  z-index: -1;
  background-color: #f6f6f6;
  border-radius: 20px;
}

.promotion-item._sale .promotion-item__old-price {
  display: block;
}

.promotion-item__period {
  padding: 20px 10px;
  position: relative;
  font-size: 18px;
  text-align: center;
  line-height: 1.2;
}

.promotion-item__period > span {
  font-weight: 900;
}

.promotion-item__period:before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 27px;
  height: 27px;
  background: url("../images/icons/clock.png") center/contain no-repeat;
}

.promotion-item__img {
  padding: 0 0 51%;
  position: relative;
}

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

.promotion-item__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 20px 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;
  text-align: center;
  border-bottom: 1px dashed #d6d6d6;
}

.promotion-item__info {
  padding: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
  border-right: 1px dashed #d6d6d6;
}

.promotion-item__title {
  margin: 0px 0px 8px 0px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}

.promotion-item__txt {
  line-height: 1.2;
}

.promotion-item__prices {
  padding: 0 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
  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;
}

.promotion-item__old-price {
  display: none;
  position: relative;
  color: #adadad;
  font-size: 29px;
  font-weight: 600;
  white-space: nowrap;
}

.promotion-item__old-price:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  width: calc(100% + 10px);
  height: 1px;
  background-color: #adadad;
}

.promotion-item__old-price > span {
  font-family: "Gilroy";
}

.promotion-item__current-price {
  color: var(--color-main);
  font-size: 42px;
  font-weight: 600;
  white-space: nowrap;
}

.promotion-item__current-price > span {
  font-family: "Gilroy";
}

.promotion-item__bottom {
  padding: 20px 0 30px;
  text-align: center;
}

.promotion-item__btn {
  margin: 0 auto;
  width: 240px;
  white-space: nowrap;
}

/***************************************************************************/
/* WARRANTY */
.warranty {
  padding: 200px 0 180px;
  position: relative;
}

.warranty-img {
  padding: 0 0 24%;
  position: absolute;
  bottom: -20%;
  right: 0;
  width: 26%;
  height: 0;
  z-index: 1;
}

.warranty-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center right;
  object-position: center right;
}

.warranty-inner {
  padding: 0px 0px 0px 535px;
  width: 85%;
}

.warranty-item {
  padding: 10px 20px 10px 40px;
  margin: 0px 0px 22px 0px;
  position: relative;
  width: 100%;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.2;
  border-radius: 15px;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  -o-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.warranty-item:nth-child(1), .warranty-item:nth-child(6) {
  margin-left: -12%;
}

.warranty-item:nth-child(2), .warranty-item:nth-child(5) {
  margin-left: -5%;
}

.warranty-item:after {
  border-radius: 15px;
}

body._desktop .warranty-item:hover {
  color: var(--color-white);
  background-color: var(--color-main);
}

body._desktop .warranty-item:hover ~ .warranty-circle::after {
  opacity: 1;
  visibility: visible;
}

body._desktop .warranty-item:nth-child(1):hover ~ .warranty-circle::after {
  top: 14%;
  right: 17%;
}

body._desktop .warranty-item:nth-child(2):hover ~ .warranty-circle::after {
  top: 25%;
  right: 5%;
}

body._desktop .warranty-item:nth-child(3):hover ~ .warranty-circle::after {
  top: 42%;
  right: 0%;
}

body._desktop .warranty-item:nth-child(4):hover ~ .warranty-circle::after {
  top: 58%;
  right: 0%;
}

body._desktop .warranty-item:nth-child(5):hover ~ .warranty-circle::after {
  top: 72%;
  right: 8%;
}

body._desktop .warranty-item:nth-child(6):hover ~ .warranty-circle::after {
  top: 87%;
  right: 17%;
}

.warranty-circle {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  z-index: 2;
  width: 500px;
  height: 500px;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
}

.warranty-circle:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: 1;
  background-color: rgba(9, 148, 139, 0.9);
  -webkit-box-shadow: 0 0 45px 50px rgba(9, 148, 139, 0.9);
  box-shadow: 0 0 45px 50px rgba(9, 148, 139, 0.9);
  border-radius: 50%;
  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;
}

.warranty-circle__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 35px 0 rgba(84, 87, 99, 0.15);
  box-shadow: 0 0 35px 0 rgba(84, 87, 99, 0.15);
}

.warranty-circle__img {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-40%);
  -ms-transform: translateX(-40%);
      transform: translateX(-40%);
  width: 100%;
  width: 50%;
  z-index: 1;
}

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

.warranty-circle__inner-info {
  padding: 20px 50px 0px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.warranty-circle__inner-info:after, .warranty-circle__inner-info:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  background-color: var(--color-main);
  border-radius: 50%;
}

.warranty-circle__inner-info:after {
  left: 7%;
}

.warranty-circle__inner-info:before {
  right: 7%;
}

.warranty-circle__pretitle {
  margin: 0px 0px 5px 0px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.warranty-circle__title {
  font-size: 53px;
  font-weight: 600;
  line-height: 1.1;
}

/***************************************************************************/
/* REVIEWS */
.reviews {
  padding: 125px 0;
  position: relative;
}

.reviews .section-header {
  max-width: 1100px;
}

.reviews-bg__left,
.reviews-bg__right {
  position: absolute;
  height: 0;
  z-index: 2;
}

.reviews-bg__left img,
.reviews-bg__right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.reviews-bg__left {
  padding: 0 0 37%;
  top: 15%;
  left: 0;
  width: 24%;
}

.reviews-bg__left img {
  -o-object-position: center left;
  object-position: center left;
}

.reviews-bg__right {
  padding: 0 0 28%;
  bottom: -12%;
  right: 0;
  width: 28%;
}

.reviews-bg__right img {
  -o-object-position: center right;
  object-position: center right;
}

.reviews-inner {
  max-width: 1170px;
}

.reviews-item {
  padding: 45px 40px;
  margin: 0px 0px 60px 0px;
  position: relative;
}

.reviews-item:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 90%;
  height: 100%;
  z-index: -1;
  background-color: #f6f6f6;
  border-radius: 20px;
}

.reviews-item__name {
  margin: 0px 0px 20px 0px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}

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

.reviews-item__audio {
  padding: 0 20px;
  margin: 50px 0px 0px 0px;
  position: relative;
  width: 100%;
  max-width: 630px;
  min-width: unset;
  height: 65px;
  background-color: var(--color-white);
  border-radius: 35px;
  -webkit-box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
}

.reviews-item__audio .controls {
  margin: 0 15px;
  color: var(--color-black);
  font-family: "P22UndergroundCYPro";
  font-size: 18px;
}

.reviews-item__audio .controls .controls__current-time {
  min-width: 45px;
  text-align: right;
}

.reviews-item__audio .loading {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  width: 46px;
  height: 46px;
  z-index: 2;
}

.reviews-item__audio .loading .loading__spinner {
  position: absolute;
  top: 34%;
  left: 21%;
}

.reviews-item__audio .play-pause-btn {
  display: block !important;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 46px;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  background: -webkit-gradient(linear, left top, left bottom, from(#02bcae), to(#008f83));
  background: -o-linear-gradient(#02bcae, #008f83);
  background: linear-gradient(#02bcae, #008f83);
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 16px 0 rgba(1, 158, 145, 0.5);
  box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 16px 0 rgba(1, 158, 145, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.reviews-item__audio .play-pause-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
}

.reviews-item__audio .play-pause-btn svg path {
  fill: var(--color-white);
}

.reviews-item__audio .slider .gap-progress {
  background-color: var(--color-main);
}

.reviews-item__audio .slider .gap-progress .pin {
  background-color: var(--color-main);
}

.reviews-item__audio .volume .volume__button svg path {
  fill: var(--color-main);
}

body._desktop .reviews-item__audio .holder .play-pause-btn:hover {
  -webkit-box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 24px 0 rgba(1, 158, 145, 0);
  box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 24px 0 rgba(1, 158, 145, 0);
}

.reviews-hidden {
  display: none;
}

.reviews-bottom {
  text-align: center;
}

.reviews-btn {
  margin: 0 auto;
  width: 340px;
}

/***************************************************************************/
/* MAP-SPECIALISTS */
.map-specialists__section {
  padding: 140px 0px 0px;
  position: relative;
}

.map-specialists__bg {
  padding: 0 0 26%;
  position: absolute;
  top: -19%;
  right: 0;
  width: 30%;
  height: 0;
  z-index: 2;
}

.map-specialists__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center right;
  object-position: center right;
}


.map-specialists__section .section-header {
  padding: 0 20px;
  max-width: 1100px;
}

.map-specialists {
  position: relative;
  height: 700px;
}

.map-specialists::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;
  z-index: -1;
  background: url("../images/icons/loading.svg") center/contain no-repeat;
}

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

/***************************************************************************/
/* STAGES */
.stages {
  padding: 220px 0 230px;
  position: relative;
}

.stages-img {
  padding: 0 0 28%;
  position: absolute;
  bottom: -24%;
  right: 0;
  width: 28%;
  height: 0;
  z-index: 1;
}

.stages-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center right;
  object-position: center right;
}

.stages-inner {
  padding: 0px 0px 0px 640px;
}

.stages-item {
  padding: 18px 20px;
  margin: 0px 0px 30px 0px;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.2;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  -o-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.stages-item:nth-child(1), .stages-item:nth-child(3) {
  margin-left: -6%;
}

body._desktop .stages-item:hover {
  color: var(--color-white);
  background-color: var(--color-main);
}

body._desktop .stages-item:hover ~ .stages-circle::after {
  opacity: 1;
  visibility: visible;
}

body._desktop .stages-item:nth-child(1):hover ~ .stages-circle::after {
  top: 28%;
  right: 7%;
}

body._desktop .stages-item:nth-child(2):hover ~ .stages-circle::after {
  top: 50%;
  right: 1%;
}

body._desktop .stages-item:nth-child(3):hover ~ .stages-circle::after {
  top: 73%;
  right: 6%;
}

.stages-item__time {
  margin: 0px 30px 0px 0px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 110px;
  flex: 0 0 110px;
  width: 110px;
  height: 110px;
  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: -webkit-gradient(linear, left top, left bottom, from(#02bcae), to(#008f83));
  background: -o-linear-gradient(#02bcae, #008f83);
  background: linear-gradient(#02bcae, #008f83);
  border-radius: 50%;
}

.stages-item__time > span {
  color: var(--color-white);
}

.stages-item__time > span:first-child {
  font-size: 50px;
  font-weight: 500;
  line-height: 0.9;
}

.stages-item__time > span:last-child {
  font-size: 20px;
}

.stages-item__title {
  margin: 0px 0px 10px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}

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

.stages-circle {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  z-index: 2;
  width: 584px;
  height: 584px;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
}

.stages-circle::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: 1;
  background-color: rgba(9, 148, 139, 0.9);
  -webkit-box-shadow: 0 0 45px 50px rgba(9, 148, 139, 0.9);
  box-shadow: 0 0 45px 50px rgba(9, 148, 139, 0.9);
  border-radius: 50%;
  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;
}

.stages-circle__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background-color: var(--color-white);
  background: url("../images/stages/circle-bg.jpg") center/cover no-repeat;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 35px 0 rgba(84, 87, 99, 0.15);
  box-shadow: 0 0 35px 0 rgba(84, 87, 99, 0.15);
}

.stages-circle__img {
  position: absolute;
  top: -8%;
  left: 50%;
  -webkit-transform: translateX(-40%);
  -ms-transform: translateX(-40%);
      transform: translateX(-40%);
  width: 100%;
  width: 50%;
  z-index: 2;
}

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

.stages-circle__inner-info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px dashed #b6b6b7;
  border-radius: 50%;
}

.stages-circle__inner-info:after, .stages-circle__inner-info:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  background-color: var(--color-main);
  border-radius: 50%;
}

.stages-circle__inner-info:after {
  left: -7px;
}

.stages-circle__inner-info:before {
  right: -7px;
}

.stages-circle__title {
  padding: 18% 20px 0px;
  font-size: 53px;
  font-weight: 600;
  line-height: 1.1;
}

/***************************************************************************/
/* TEAM */
.team {
  padding: 185px 0 195px;
}

.team .section-header {
  max-width: 1100px;
}

.team-top {
  padding: 55px 30px 50px;
  margin: 0px 0px 45px 0px;
  position: relative;
  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: url("../images/team/bg.jpg") bottom center/cover no-repeat;
}

.team-top:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 95%;
  height: 100%;
  z-index: -1;
  background-color: #fbfbfb;
  border-radius: 20px;
}

.team-top__cheif {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.team-top__cheif-photo {
  margin: 0px 30px 0px 0px;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-grey);
  border: 2px solid var(--color-main);
  border-radius: 50%;
}

.team-top__cheif-photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  border: 8px solid var(--color-white);
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-top__cheif-info {
  margin: 0px 55px 0px 0px;
}

.team-top__cheif-name {
  margin: 0px 0px 5px 0px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.team-top__cheif-spec {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.team-top__cheif-txt {
  line-height: 1.5;
}

.team-top__form {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 47%;
  flex: 0 0 47%;
  width: 47%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.team-top__form-input {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

.team-top__form-btn {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

.team-top__form-check-label {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

.team-slider {
  margin: 0px 0px 0px -30px;
  position: relative;
  width: calc(100% + 60px);
}

.team-slider .owl-stage {
  padding: 30px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.team-slider .owl-item {
  height: auto;
}

.team-slider .owl-nav > button.owl-prev {
  -webkit-transform: translateX(-120%);
  -ms-transform: translateX(-120%);
      transform: translateX(-120%);
}

.team-slider .owl-nav > button.owl-next {
  -webkit-transform: translateX(120%);
  -ms-transform: translateX(120%);
      transform: translateX(120%);
}

.team-slide {
  padding: 30px 35px 50px;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 20px;
}

.team-slide:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 95%;
  height: 100%;
  z-index: -1;
  background-color: #fcfcfc;
  border-radius: 20px;
}

.team-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
}

.team-slide__photo {
  padding: 0 0 98%;
  margin: 0px 0px 40px 0px;
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}

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

.team-slide__name {
  margin: 0px 0px 20px 0px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.team-slide__spec {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 0px 0px 25px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.4;
}

.team-slide__experience {
  position: relative;
  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;
  line-height: 1.2;
}

.team-slide__experience::before {
  content: "";
  margin: 0px 7px 0px 0px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: url("../images/icons/clock2.png") center/contain no-repeat;
}

/***************************************************************************/
/* CLINIC */
.clinic {
  padding: 140px 0 220px;
}

.clinic .section-header {
  max-width: 1000px;
}

.clinic-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
}

.clinic-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding: 30px 20px 35px 100px;
  position: relative;
}

.clinic-item:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 90%;
  height: 100%;
  z-index: -1;
  background-color: #f6f6f6;
  border-radius: 20px;
}

.clinic-item__icon {
  position: absolute;
  top: -30px;
  left: -15px;
  width: 130px;
  z-index: 1;
}

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

.clinic-item__info {
  position: relative;
  z-index: 2;
}

.clinic-item__title {
  margin: 0px 0px 10px 0px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}

.clinic-item__txt {
  line-height: 1.5;
}

/***************************************************************************/
/* GALLERY */
.gallery {
  padding: 195px 0 215px;
  position: relative;
}

.gallery-bg {
  padding: 0 0 33%;
  position: absolute;
  top: -20%;
  left: 0;
  width: 18%;
  height: 0;
  z-index: 2;
}

.gallery-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center left;
  object-position: center left;
}

.gallery-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-inner > li {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  position: relative;
}

.gallery-inner > li > a {
  padding: 0 0 65%;
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.gallery-inner > li > a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
  border-radius: 20px;
  -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 .gallery-inner > li > a:hover img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
      transform: scale(1.04);
}

/***************************************************************************/
/* FAQ */
.faq {
  padding: 205px 0 190px;
  position: relative;
}

.faq .section-header {
  max-width: 1150px;
}

.faq-bg {
  padding: 0 0 36%;
  position: absolute;
  top: -15%;
  right: 0;
  width: 19%;
  height: 0;
  z-index: 2;
}

.faq-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center right;
  object-position: center right;
}

.faq-inner {
  max-width: 1150px;
}

.faq-item {
  position: relative;
}

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

.faq-item__title {
  padding: 20px 35px;
  width: 100%;
  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-color: transparent;
  color: var(--color-black);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  border-radius: 20px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.faq-item__title.is-active .faq-item__title-icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  -ms-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
}

body._desktop .faq-item__title:hover {
  color: var(--color-main);
}

body._desktop .faq-item__title:hover .faq-item__title-icon {
  -webkit-box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 24px 0 rgba(1, 158, 145, 0);
  box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 24px 0 rgba(1, 158, 145, 0);
}

.faq-item__title-icon {
  margin: 0px 0px 0px 25px;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 46px;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  background: -webkit-gradient(linear, left top, left bottom, from(#02bcae), to(#008f83));
  background: -o-linear-gradient(#02bcae, #008f83);
  background: linear-gradient(#02bcae, #008f83);
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 24px 0 rgba(1, 158, 145, 0.6);
  box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 24px 0 rgba(1, 158, 145, 0.6);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.faq-item__title-icon::before, .faq-item__title-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 55%;
  height: 2px;
  background-color: var(--color-white);
}

.faq-item__title-icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
      transform: translate(-50%, -50%) rotate(-90deg);
  -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;
}

.faq-item__content {
  display: none;
  padding: 25px 35px;
  line-height: 1.5;
  border-top: 1px solid #d4d4d4;
}

/***************************************************************************/
/* VIDEO-SECTION */
.video-section {
  padding: 240px 0 210px;
  position: relative;
}

.video-section__bg {
  padding: 0 0 21%;
  position: absolute;
  top: -19%;
  left: 0;
  width: 21%;
  height: 0;
  z-index: 2;
}

.video-section__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center left;
  object-position: center left;
}

.video-section__content {
  position: relative;
  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__content:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 95%;
  height: 100%;
  z-index: -1;
  background-color: #fbfbfb;
  border-radius: 20px;
}

.video-info {
  padding: 20px 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  width: 45%;
  text-align: center;
}

.video-title {
  margin: 0px 0px 25px 0px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
}

.video-txt {
  line-height: 1.6;
}

.video {
  padding-bottom: 37%;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  width: 55%;
  height: 0;
  overflow: hidden;
  background-color: var(--color-grey);
  border-radius: 20px;
}

body._desktop .video:hover .video-btn {
  background-color: var(--color-main);
}

.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: 0;
  border-radius: 20px;
}

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

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

.video-btn {
  padding: 0 0 22.5%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 22.5%;
  height: 0;
  z-index: 3;
  background-color: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.video-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  z-index: 1;
  background-color: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
}

.video-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 30%;
  height: 30%;
  z-index: 2;
  background: url("../images/icons/play.svg") center/contain no-repeat;
}

/***************************************************************************/
/* ABOUT */
.about {
  padding: 200px 0 100px;
  position: relative;
}

.about .section-header {
  margin: 0px auto 150px;
  max-width: 1000px;
}

.about-bg {
  padding: 0 0 35%;
  position: absolute;
  top: -14%;
  right: 0;
  width: 25%;
  height: 0;
  z-index: 2;
}

.about-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center right;
  object-position: center right;
}

.about-inner {
  max-width: 1450px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 105px 50px;
}

.about-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding: 0 25px 15px;
  position: relative;
  text-align: center;
}

.about-item:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 90%;
  height: 100%;
  z-index: -1;
  background-color: #f6f6f6;
  border-radius: 20px;
}

.about-item__icon {
  margin: -75px auto 25px;
  position: relative;
  width: 170px;
  height: 170px;
  background-color: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: 20px 20px 60px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 20px 20px 60px 0 rgba(84, 87, 99, 0.2);
}

.about-item__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  z-index: 1;
  background-color: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: 20px 20px 60px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 20px 20px 60px 0 rgba(84, 87, 99, 0.2);
}

.about-item__icon img {
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 93%;
  height: 93%;
  z-index: 2;
  -o-object-fit: contain;
  object-fit: contain;
}

.about-item__title {
  margin: 0px 0px 15px 0px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.about-item__txt {
  line-height: 1.55;
}

/***************************************************************************/
/* HELP */
.help {
  padding: 60px 0 55px;
  position: relative;
  z-index: 2;
  background-color: #e5f2f0;
}

.help:before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 95%;
  height: 100%;
  z-index: -1;
  background-color: #d7f0ed;
  border-radius: 20px;
}

.help:after {
  border-radius: 0;
}

.help .section-header {
  margin-bottom: 40px;
  max-width: 710px;
}

.help-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.help-inner {
  max-width: 710px;
}

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

.help-form__input {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

.help-form__btn {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

.help-form__check-label {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

/***************************************************************************/
/* EQUIPMENT */
.equipment {
  padding: 180px 0 100px;
  position: relative;
}

.equipment .section-header {
  margin: 0px auto 130px;
}

.equipment-bg {
  padding: 0 0 38%;
  position: absolute;
  top: 14%;
  left: 0;
  width: 26%;
  height: 0;
  z-index: 2;
}

.equipment-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center left;
  object-position: center left;
}

.equipment-inner {
  max-width: 1000px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px 40px;
}

.equipment-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  text-align: center;
}

.equipment-img {
  padding: 0 0 59%;
  margin: 0px auto 20px;
  position: relative;
  width: 59%;
  background-color: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: 20px 20px 60px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 20px 20px 60px 0 rgba(84, 87, 99, 0.2);
}

.equipment-img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  z-index: 1;
  background-color: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 0 0 60px 0 rgba(84, 87, 99, 0.2);
}

.equipment-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  z-index: 2;
  -o-object-fit: contain;
  object-fit: contain;
}

.equipment-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

/***************************************************************************/
/* LICENSES */
.licenses {
  margin: 70px 0 100px;
}

.licenses .section-header {
  margin-bottom: 40px;
}

.licenses-slider {
  margin: 0px auto;
  position: relative;
  width: calc(100% - 120px);
}

.licenses-slider .owl-stage {
  padding: 30px 0px;
}

.licenses-slider .owl-nav > button.owl-prev {
  -webkit-transform: translateX(-120%);
  -ms-transform: translateX(-120%);
      transform: translateX(-120%);
}

.licenses-slider .owl-nav > button.owl-next {
  -webkit-transform: translateX(120%);
  -ms-transform: translateX(120%);
      transform: translateX(120%);
}

.licenses-slide {
  padding: 10px;
  position: relative;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 20px;
}

.licenses-slide:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 85%;
  height: 100%;
  z-index: -1;
  background-color: #fcfcfc;
  border-radius: 20px;
}

.licenses-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
  box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
}

.licenses-slide__img {
  padding: 0 0 140%;
  position: relative;
}

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

/***************************************************************************/
/* CONTACTS */
.contacts {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts-inner {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.contacts-info {
  padding: 110px 30px 110px 0px;
  width: 38%;
}

.contacts-title {
  margin: 0px 0px 40px 0px;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.2;
}

.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 25px 0px;
}

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

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

.contacts-list__item-info > span {
  display: block;
  font-size: 26px;
  line-height: 1.2;
}

.contacts-list__item-info > span:first-child {
  margin: 0px 0px 5px 0px;
  font-weight: 500;
}

.contacts-list__item-info > span > a {
  color: var(--color-black);
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

body._desktop .contacts-list__item-info > span > a:hover {
  color: var(--color-main);
}

.contacts-map {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 62%;
  flex: 0 0 62%;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
      transform: translateX(-100%);
  position: relative;
  height: auto;
  z-index: 3;
}

.contacts-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;
  z-index: -1;
  background: url("../images/icons/loading.svg") center/contain no-repeat;
}

@media (min-width: 1550px) {
  .contacts-map {
    /*
    	0.38 - % ширины contacts-info
    1550px - ширина контейнера 
    */
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50vw + 176.7px);
    flex: 0 0 calc(50vw + 176.7px);
  }
}
@media (max-width: 1640px) {
  .contacts-map {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50vw + 148.2px);
    flex: 0 0 calc(50vw + 148.2px);
  }
}
@media (max-width: 1400px) {
  .contacts-map {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50vw + 114px);
    flex: 0 0 calc(50vw + 114px);
  }
}
@media (max-width: 1400px) {
  .contacts-map {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50vw + 109.44px);
    flex: 0 0 calc(50vw + 109.44px);
  }
}
/***************************************************************************/
/* FOOTER */
.footer {
  padding: 60px 0;
  background-color: #f7f7f7;
}

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

.footer-content {
  margin: 0 4% 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 38%;
  flex: 0 0 38%;
  width: 38%;
}

.footer-logo {
  margin: 0px 0px 25px 0px;
  width: 245px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center left;
  object-position: center left;
}

.footer-menu {
  margin: 0 2% 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 31%;
  flex: 0 0 31%;
  width: 31%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-menu__list {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 47%;
  flex: 0 0 47%;
  width: 47%;
}

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

.footer-menu__list > li > a {
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.1;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

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

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

.footer-phone {
  margin: 0px 0px 15px 0px;
  display: inline-block;
  white-space: nowrap;
  color: var(--color-black);
  font-size: 26px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

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

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

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

.footer-contacts__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.footer-contacts__list-icon {
  margin: 0px 15px 0px 0px;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
}

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

.footer-contacts__list-txt {
  font-size: 17px;
  line-height: 1.1;
}

.footer-contacts__list-txt > a {
  color: var(--color-black);
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

body._desktop .footer-contacts__list-txt > a:hover {
  color: var(--color-main);
}

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

/***************************************************************************/
/***************************************************************************/
/***************************************************************************/
/* RESPONSIVE */
@media (max-width: 1800px) {
  .team-slider {
    margin: 0 auto;
    width: calc(100% - 100px);
  }

  .team-slider .owl-nav > button.owl-prev {
    -webkit-transform: translateX(-80%);
    -ms-transform: translateX(-80%);
        transform: translateX(-80%);
  }

  .team-slider .owl-nav > button.owl-next {
    -webkit-transform: translateX(80%);
    -ms-transform: translateX(80%);
        transform: translateX(80%);
  }

  .team-slide:after {
    -webkit-box-shadow: 0 0 25px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 25px 0 rgba(84, 87, 99, 0.2);
  }

  /**************************************/
  .licenses-slide:after {
    -webkit-box-shadow: 0 0 25px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 25px 0 rgba(84, 87, 99, 0.2);
  }
}
/***************************************************************************/
@media (max-width: 1640px) {
  .section-title {
    line-height: 1.1;
  }

  .btn {
    height: 60px;
  }

  .btn--big {
    height: 80px;
  }

  .form-input {
    height: 80px;
    line-height: 80px;
  }

  .form-input::-webkit-input-placeholder {
    line-height: 80px;
  }

  .form-input::-moz-placeholder {
    line-height: 80px;
  }

  .form-input:-ms-input-placeholder {
    line-height: 80px;
  }

  .form-input::-ms-input-placeholder {
    line-height: 80px;
  }

  .form-input::placeholder {
    line-height: 80px;
  }

  /**************************************/
  .popup-content {
    padding: 40px 35px;
    max-width: 560px;
  }

  .popup__txt {
    margin: 0px 0px 50px 0px;
    font-size: 22px;
  }

  .popup-form__check-label {
    width: 80%;
  }

  /**************************************/
  .header {
    padding: 10px 0 15px;
  }

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

  /**************************************/
  .intro {
    padding: 150px 0px 50px;
  }

  .intro-content {
    margin: 10px 30px 0px 0px;
  }

  .intro-content__top {
    margin: 0px 0px 60px 0px;
  }

  .intro-title {
    font-size: 62px;
  }

  .intro-subtitle {
    margin: 0px 0px 40px 0px;
    font-size: 32px;
  }

  .intro-list > li {
    padding: 0px 0px 0px 50px;
    font-size: 20px;
  }

  .intro-list > li:not(:last-child) {
    margin: 0px 0px 30px 0px;
  }

  .intro-list > li:before {
    width: 36px;
    height: 36px;
  }

  .intro-content__item-inner {
    padding: 20px 0px 20px 25px;
  }

  .intro-form {
    padding: 30px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 430px;
    flex: 0 0 430px;
    width: 430px;
  }

  .intro-form__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .intro-form__txt {
    margin: 0px 0px 30px 0px;
    font-size: 22px;
    line-height: 1.2;
  }

  .intro-form__input {
    margin: 0px 0px 20px 0px;
  }

  .intro-form__btn {
    margin: 0px 0px 30px 0px;
  }

  /**************************************/
  .prices {
    padding: 70px 0 120px;
  }

  .prices-item__title {
    font-size: 28px;
    line-height: 1.1;
  }

  .prices-item__price {
    font-size: 40px;
  }

  /**************************************/
  .promotion {
    padding: 120px 0;
  }

  .promotion-inner {
    width: 100%;
  }

  .promotion-item__period {
    padding: 10px;
  }

  .promotion-item__content {
    padding: 15px 0;
  }

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

  .promotion-item__bottom {
    padding: 15px 0 25px;
  }

  /**************************************/
  .warranty {
    padding: 150px 0;
  }

  .warranty-inner {
    width: 95%;
  }

  /**************************************/
  .map-specialists__section {
    padding: 140px 0px 0px;
  }

  .map-specialists {
    height: 500px;
  }

  /**************************************/
  .stages {
    padding: 170px 0;
  }

  /**************************************/
  .team {
    padding: 150px 0;
  }

  .team-top {
    padding: 30px;
  }

  .team-top__cheif {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    width: 45%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .team-top__cheif-info {
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 230px);
    flex: 0 1 calc(100% - 230px);
  }

  .team-top__cheif-txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin: 10px 0px 0px 0px;
    line-height: 1.3;
    text-align: center;
  }

  .team-top__form {
    gap: 30px 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 53%;
    flex: 0 0 53%;
    width: 53%;
  }

  .team-top__form-check-label {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .team-slide {
    padding: 25px 25px 35px;
  }

  .team-slide__photo {
    margin: 0px 0px 20px 0px;
  }

  /**************************************/
  .clinic {
    padding: 140px 0 160px;
  }

  /**************************************/
  .gallery {
    padding: 160px 0;
  }

  /**************************************/
  .faq {
    padding: 160px 0;
  }

  .faq-bg {
    top: -10%;
  }

  /**************************************/
  .video-section {
    padding: 200px 0 170px;
  }

  /**************************************/
  .about {
    padding: 160px 0 100px;
  }

  .about-inner {
    gap: 125px 40px;
  }

  /**************************************/
  .equipment {
    padding: 160px 0 90px;
  }

  /**************************************/
  .contacts-info {
    padding: 70px 30px 70px 0px;
  }

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

  .contacts-list__item-info > span {
    font-size: 22px;
  }
}
/***************************************************************************/
@media (max-width: 1400px) {
  body {
    font-size: 16px;
  }

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

  .section-txt {
    font-size: 20px;
  }

  .btn {
    height: 55px;
    font-size: 16px;
  }

  .btn--big {
    height: 70px;
  }

  ._shadow:after {
    -webkit-box-shadow: 0 0 40px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 40px 0 rgba(84, 87, 99, 0.2);
  }

  .owl-carousel .owl-nav > button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
  }

  .form-input {
    height: 70px;
    font-size: 18px;
    line-height: 70px;
    border: 2px solid #afbdcc;
  }

  .form-input::-webkit-input-placeholder {
    line-height: 70px;
  }

  .form-input::-moz-placeholder {
    line-height: 70px;
  }

  .form-input:-ms-input-placeholder {
    line-height: 70px;
  }

  .form-input::-ms-input-placeholder {
    line-height: 70px;
  }

  .form-input::placeholder {
    line-height: 70px;
  }

  .form-input:focus {
    border: 2px solid var(--color-main);
  }

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

  .checkbox-custom {
    margin: 0px 15px 0px 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 26px;
    flex: 0 0 26px;
    width: 26px;
    height: 22px;
  }

  .check-txt {
    font-size: 15px;
    line-height: 1.2;
  }

  /**************************************/
  .popup-content {
    padding: 40px 30px;
    max-width: 500px;
    border-radius: 30px;
  }

  .popup-close {
    width: 30px;
    height: 30px;
  }

  .popup-close > span {
    top: 14px;
  }

  .popup__txt {
    margin: 0px 0px 40px 0px;
    font-size: 20px;
  }

  .popup-form__input {
    margin: 0px 0px 20px 0px;
  }

  .popup-form__btn {
    margin: 0px 0px 25px 0px;
  }

  .popup-form__check-label {
    width: 80%;
  }

  /**************************************/
  .header-logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 215px;
    flex: 0 0 215px;
    width: 215px;
  }

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

  .header__phone-schedule {
    margin: 0px 40px 0px 0px;
  }

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

  .header-schedule {
    font-size: 16px;
  }

  /**************************************/
  .intro-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 600px;
    flex: 0 1 600px;
    max-width: 600px;
  }

  .intro-title {
    font-size: 54px;
  }

  .intro-subtitle {
    font-size: 26px;
  }

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

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

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

  .intro-form__inner {
    width: 90%;
  }

  .intro-form__input {
    margin: 0px 0px 10px 0px;
  }

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

  .intro-content__item-inner {
    padding: 15px 0px 15px 20px;
  }

  .intro-content__item-txt {
    line-height: 1.3;
  }

  /**************************************/
  .prices-bg__right {
    top: 0;
  }

  .prices-item {
    min-height: 120px;
  }

  .prices-item:not(:last-child) {
    margin: 0px 0px 30px 0px;
  }

  .prices-item__price {
    font-size: 34px;
  }

  /**************************************/
  .promotion-inner {
    margin: 0px 0px 0px -1%;
    width: 102%;
  }

  .promotion-item {
    margin: 0 1%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 31.3333%;
    flex: 0 0 31.3333%;
    max-width: 31.3333%;
  }

  .promotion-item__period {
    font-size: 16px;
  }

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

  .promotion-item__current-price {
    font-size: 32px;
  }

  /**************************************/
  .warranty {
    padding: 120px 0;
  }

  .warranty-img {
    bottom: -29%;
  }

  .warranty-inner {
    padding: 0px 0px 0px 425px;
  }

  .warranty-circle {
    width: 400px;
    height: 400px;
    -webkit-box-shadow: 0 0 40px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 40px 0 rgba(84, 87, 99, 0.2);
  }

  .warranty-circle__pretitle {
    font-size: 20px;
  }

  .warranty-circle__title {
    font-size: 44px;
  }

  .warranty-item {
    padding: 10px 15px 10px 20px;
    margin: 0px 0px 12px 0px;
    min-height: 60px;
    font-size: 18px;
  }

  /**************************************/
  .reviews-bg__left {
    top: -4%;
  }

  .reviews-item__audio {
    height: 55px;
    -webkit-box-shadow: 0 0 40px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 40px 0 rgba(84, 87, 99, 0.2);
  }

  .reviews-item__audio .loading {
    width: 36px;
    height: 36px;
  }

  .reviews-item__audio .loading .loading__spinner {
    top: 28%;
    left: 26%;
  }

  .reviews-item__audio .play-pause-btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
  }

  /**************************************/
  .map-specialists__section {
    padding: 120px 0px 0px;
  }

  .map-specialists__bg {
    top: -22%;
  }

  .map-specialists {
    height: 400px;
  }

  /**************************************/
  .stages {
    padding: 120px 0;
  }

  .stages-inner {
    padding: 0px 0px 0px 440px;
  }

  .stages-circle {
    width: 400px;
    height: 400px;
    -webkit-box-shadow: 0 0 40px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 40px 0 rgba(84, 87, 99, 0.2);
  }

  .stages-circle__title {
    font-size: 40px;
    line-height: 1;
  }

  .stages-item {
    padding: 12px 20px;
    margin: 0px 0px 20px 0px;
    font-size: 16px;
  }

  .stages-item__time {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
  }

  .stages-item__time > span:first-child {
    font-size: 40px;
  }

  .stages-item__time > span:last-child {
    font-size: 18px;
  }

  /**************************************/
  .team {
    padding: 100px 0;
  }

  .team-top__cheif {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42%;
    flex: 0 0 42%;
    width: 42%;
  }

  .team-top__cheif-photo {
    margin: 0px 20px 0px 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
    width: 160px;
    height: 160px;
  }

  .team-top__cheif-name {
    font-size: 26px;
    line-height: 1.1;
  }

  .team-top__cheif-spec {
    font-size: 20px;
  }

  .team-slider {
    width: calc(100% - 80px);
  }

  .team-slider .owl-nav > button.owl-prev {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
        transform: translateX(-100%);
  }

  .team-slider .owl-nav > button.owl-next {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
        transform: translateX(100%);
  }

  .team-slide {
    padding: 15px 15px 25px;
  }

  .team-slide:after {
    -webkit-box-shadow: 0 0 15px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 15px 0 rgba(84, 87, 99, 0.2);
  }

  .team-slide__photo {
    margin: 0px 0px 10px 0px;
  }

  .team-slide__name {
    margin: 0px 0px 10px 0px;
  }

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

  /**************************************/
  .clinic {
    padding: 120px 0;
  }

  .clinic .section-header {
    margin-bottom: 100px;
  }

  .clinic-item {
    padding: 70px 20px 25px 20px;
    text-align: center;
  }

  .clinic-item__icon {
    top: -70px;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
        transform: translate(-50%);
    width: 130px;
    height: 140px;
  }

  /**************************************/
  .gallery {
    padding: 110px 0;
  }

  .gallery-bg {
    top: -12%;
  }

  /**************************************/
  .faq {
    padding: 120px 0;
  }

  .faq-item__title {
    padding: 15px 25px;
    font-size: 22px;
  }

  .faq-item__title-icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    -webkit-box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 16px 0 rgba(1, 158, 145, 0.6);
    box-shadow: inset 0 0 6px 0 rgba(192, 220, 252, 0.82), 0 0 16px 0 rgba(1, 158, 145, 0.6);
  }

  .faq-item__content {
    padding: 25px;
  }

  /**************************************/
  .video-section {
    padding: 130px 0 110px;
  }

  .video-info {
    padding: 20px 30px;
  }

  .video-title {
    font-size: 34px;
    line-height: 1.1;
  }

  /**************************************/
  .about {
    padding: 120px 0 100px;
  }

  .about-bg {
    padding: 0 0 26%;
    top: -7%;
    width: 18%;
  }

  .about-item__icon {
    -webkit-box-shadow: 15px 15px 40px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 15px 15px 40px 0 rgba(84, 87, 99, 0.2);
  }

  .about-item__icon::before {
    -webkit-box-shadow: 15px 15px 40px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 15px 15px 40px 0 rgba(84, 87, 99, 0.2);
  }

  /**************************************/
  .equipment {
    padding: 120px 0 80px;
  }

  .equipment .section-header {
    margin-bottom: 80px;
  }

  .equipment-bg {
    top: -3%;
  }

  .equipment-inner {
    gap: 90px 40px;
  }

  .equipment-img {
    -webkit-box-shadow: 15px 15px 40px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 15px 15px 40px 0 rgba(84, 87, 99, 0.2);
  }

  .equipment-img::before {
    -webkit-box-shadow: 15px 15px 40px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 15px 15px 40px 0 rgba(84, 87, 99, 0.2);
  }

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

  /**************************************/
  .licenses {
    margin: 60px 0 80px;
  }

  .licenses .section-header {
    margin-bottom: 30px;
  }

  .licenses-slide:after {
    -webkit-box-shadow: 0 0 15px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 15px 0 rgba(84, 87, 99, 0.2);
  }

  /**************************************/
  .contacts-info {
    padding: 50px 30px 50px 0px;
  }

  .contacts-list__item-info > span {
    font-size: 20px;
  }

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

  .footer-menu {
    margin: 0 40px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
  }

  .footer-contacts {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 255px;
    flex: 0 0 255px;
    width: 255px;
  }
}
/***************************************************************************/
@media (max-width: 1100px) {
  ._shadow:after {
    -webkit-box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
  }

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

  .header__phone-schedule {
    margin: 0px 30px 0px 0px;
  }

  .header-phones {
    margin: 0px 15px 0px 0px;
  }

  .header-phone {
    font-size: 18px;
  }

  .header-schedule {
    font-size: 14px;
  }

  /**************************************/
  .intro {
    padding: 150px 0px 0px;
  }

  .intro-inner {
    display: block;
  }

  .intro-content {
    margin: 0px 0px 90px 0px;
    max-width: unset;
    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__top {
    margin: 0px 30px 0px 0px;
  }

  .intro-content__bottom {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    width: 300px;
    display: block;
  }

  .intro-content__item {
    width: 100%;
    min-height: 130px;
  }

  .intro-content__item:first-child {
    margin: 0px 0px 30px 0px;
  }

  .intro-form {
    margin: 0px auto -30px;
    width: 90%;
  }

  .intro-form__txt br {
    display: none;
  }

  .intro-form__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .intro-form__input,
.intro-form__btn,
.intro-form__check-label,
.intro-form__socials {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
    margin: 0;
  }

  /**************************************/
  .prices {
    padding: 120px 0;
  }

  /**************************************/
  .promotion {
    padding: 90px 0 30px;
  }

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

  .promotion-item {
    margin: 0 3% 9%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 44%;
    flex: 0 0 44%;
    max-width: 44%;
  }

  .promotion-item__period {
    font-size: 14px;
  }

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

  .promotion-item__btn {
    width: 210px;
  }

  /**************************************/
  .warranty-inner {
    width: 100%;
  }

  .warranty-circle {
    -webkit-box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
  }

  /**************************************/
  .reviews-bg__right {
    bottom: -6%;
  }

  .reviews-item._shadow:after {
    -webkit-box-shadow: 0 0 20px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 20px 0 rgba(84, 87, 99, 0.2);
  }

  .reviews-item__audio {
    -webkit-box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
  }

  /**************************************/
  .stages-circle {
    -webkit-box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 30px 0 rgba(84, 87, 99, 0.2);
  }

  /**************************************/
  .video-section__bg {
    top: -10%;
  }

  .video-section__inner {
    width: 85%;
  }

  .video-section__content {
    display: block;
  }

  .video-info {
    padding: 40px 30px;
    width: 100%;
  }

  .video {
    padding-bottom: 56%;
    width: 100%;
  }

  /**************************************/
  .faq-item._shadow:after {
    -webkit-box-shadow: 0 0 20px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 20px 0 rgba(84, 87, 99, 0.2);
  }
}
/***************************************************************************/
@media (max-width: 991.98px) {
  .section-header {
    margin: 0 auto 60px;
  }

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

  .section-txt {
    font-size: 18px;
  }

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

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

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

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

  .header__phone-schedule {
    margin: 0px 30px 0px 0px;
  }

  .header-schedule {
    font-size: 12px;
  }

  .header-btn.btn {
    padding: 0 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 125px;
    flex: 0 0 125px;
    width: 125px;
    height: 50px;
    font-size: 12px;
    line-height: 1.3;
  }

  .intro-content__bottom {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 245px;
    flex: 0 0 245px;
    width: 245px;
  }

  /**************************************/
  .prices-bg__left {
    bottom: -10%;
  }

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

  .prices-item__title {
    font-size: 26px;
  }

  .prices-item__subtitle {
    font-size: 22px;
  }

  .prices-item__price {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 210px;
    flex: 0 0 210px;
    width: 210px;
  }

  .prices-item__btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
    width: 180px;
    font-size: 14px;
  }

  /**************************************/
  .warranty {
    padding: 80px 0;
  }

  .warranty-inner {
    padding: 0px 0px 0px 370px;
  }

  .warranty-circle {
    width: 350px;
    height: 350px;
  }

  .warranty-item {
    font-size: 16px;
  }

  /**************************************/
  .reviews {
    padding: 100px 0;
  }

  .reviews-item {
    padding: 30px 25px;
    margin: 0px 0px 40px 0px;
  }

  .reviews-item__name {
    margin: 0px 0px 15px 0px;
    font-size: 26px;
  }

  .reviews-item__audio {
    margin: 35px 0px 0px 0px;
  }

  .reviews-btn {
    width: 230px;
  }

  /**************************************/
  .map-specialists__section {
    padding: 100px 0px 0px;
  }

  .map-specialists__bg {
    top: -14%;
  }

  /**************************************/
  .stages {
    padding: 80px 0;
  }

  .stages-img {
    bottom: -12%;
  }

  .stages-inner {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .stages-circle {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0px auto 40px;
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
  }

  .stages-item {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .stages-item:nth-child(1), .stages-item:nth-child(3) {
    margin-left: 0;
  }

  /**************************************/
  .team-top {
    display: block;
  }

  .team-top__cheif {
    margin: 0px 0px 40px 0px;
    width: 100%;
  }

  .team-top__cheif-txt {
    text-align: left;
  }

  .team-top__form {
    width: 100%;
  }

  .team-slide {
    padding: 10px 10px 20px;
  }

  .team-slide__name {
    font-size: 22px;
    line-height: 1.1;
  }

  .team-slide__spec {
    line-height: 1.1;
  }

  /**************************************/
  .clinic {
    padding: 100px 0;
  }

  .clinic-inner {
    display: block;
  }

  .clinic-item {
    margin: 0px auto 90px;
    width: 75%;
  }

  .clinic-item:last-child {
    margin: 0px auto;
  }

  /**************************************/
  .faq {
    padding: 100px 0;
  }

  /**************************************/
  .video-section {
    padding: 100px 0;
  }

  /**************************************/
  .gallery-bg {
    top: -18%;
  }

  /**************************************/
  .about {
    padding: 100px 0;
  }

  .about-bg {
    top: -4%;
  }

  .about-inner {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
  }

  .about-item {
    padding: 0 25px 25px;
  }

  .about-item__icon {
    width: 130px;
    height: 130px;
    -webkit-box-shadow: 10px 10px 20px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 10px 10px 20px 0 rgba(84, 87, 99, 0.2);
  }

  .about-item__icon::before {
    -webkit-box-shadow: 10px 10px 20px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 10px 10px 20px 0 rgba(84, 87, 99, 0.2);
  }

  .about-item__title {
    line-height: 1.1;
  }

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

  /**************************************/
  .help-form__check-label {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  /**************************************/
  .equipment {
    padding: 100px 0 70px;
  }

  .equipment-inner {
    gap: 65px 40px;
  }

  .equipment-img {
    margin: 0px auto 10px;
    -webkit-box-shadow: 10px 10px 20px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 10px 10px 20px 0 rgba(84, 87, 99, 0.2);
  }

  .equipment-img::before {
    -webkit-box-shadow: 15px 15px 20px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 15px 15px 20px 0 rgba(84, 87, 99, 0.2);
  }

  /**************************************/
  .licenses {
    margin: 60px 0;
  }

  .licenses .section-header {
    margin-bottom: 20px;
  }

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

  /**************************************/
  .contacts {
    display: block;
  }

  .contacts-info {
    padding: 40px 0;
    width: 100%;
  }

  .contacts-title {
    font-size: 40px;
    text-align: center;
  }

  .contacts-list {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }

  .contacts-list__item {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

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

  .contacts-list__item-icon {
    margin: 0px 15px 0px 0px;
  }

  .contacts-list__item-info > span {
    font-size: 18px;
  }

  .contacts-map {
    height: 350px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
        transform: translateX(0);
  }

  /**************************************/
  .footer-inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-menu {
    margin: 0 0 0 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 290px);
    flex: 0 1 calc(100% - 290px);
    width: calc(100% - 290px);
    text-align: center;
  }

  .footer-contacts {
    margin: 80px 0px 0px 0px;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    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;
  }

  .footer-contacts::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    width: 100%;
    height: 1px;
    border: 1px dashed #d6d6d6;
  }

  .footer-contacts__top {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
    width: 230px;
    text-align: center;
  }

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

  .footer-contacts__list {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0;
  }

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

  .footer-btn {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    width: 200px;
  }
}
/***************************************************************************/
@media (max-width: 767.98px) {
  .header {
    padding: 10px 0 12px;
  }

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

  .header__phone-schedule {
    margin: 0px 15px 0px 0px;
  }

  .header-phone {
    font-size: 16px;
  }

  .header-btn.btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    width: 100px;
    height: 45px;
    font-size: 10px;
  }

  /**************************************/
  .intro:before {
    display: block;
  }

  .intro-content {
    margin: 0px 0px 30px 0px;
    display: block;
  }

  .intro-content__top {
    margin: 0px 0px 50px 0px;
  }

  .intro-list > li:nth-last-child(-n+2) {
    display: block;
  }

  .intro-content__bottom {
    width: 100%;
    display: none;
  }

  .intro-content__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    width: 48%;
  }

  .intro-content__item:first-child {
    margin: 0;
  }

  .intro-form {
    padding: 25px 20px;
    width: 100%;
  }

  .intro-form__inner {
    width: 100%;
  }

  /**************************************/
  .prices {
    padding: 100px 0 80px;
  }

  .prices-bg__left {
    bottom: -5%;
  }

  .prices-item {
    padding: 25px 30px 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .prices-item__info {
    margin: 0px 0px 30px 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
  }

  .prices-item__price {
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    border-left: none;
  }

  .prices-item__order {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    text-align: center;
  }

  .prices-item__btn {
    margin: 0 auto;
  }

  /**************************************/
  .promotion {
    padding: 70px 0 30px;
  }

  .promotion-inner {
    margin: 0 0 0 -1%;
    width: 102%;
  }

  .promotion-item {
    margin: 0 1% 7%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
  }

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

  .promotion-item__old-price {
    font-size: 24px;
  }

  .promotion-item__current-price {
    font-size: 26px;
  }

  /**************************************/
  .warranty-img {
    bottom: -11%;
  }

  .warranty-inner {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .warranty-circle {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0px auto 40px;
    position: relative;
    top: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
        transform: translateX(0);
  }

  .warranty-item {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .warranty-item:nth-child(1), .warranty-item:nth-child(2), .warranty-item:nth-child(5), .warranty-item:nth-child(6) {
    margin: 0;
  }

  .warranty-item:not(:last-child) {
    margin: 0px 0px 10px 0px;
  }

  /**************************************/
  .reviews {
    padding: 90px 0 70px;
  }

  /**************************************/
  .map-specialists__section {
    padding: 80px 0px 0px;
  }

  /**************************************/
  .stages-img {
    bottom: -8%;
  }

  /**************************************/
  .team {
    padding: 80px 0 60px;
  }

  /**************************************/
  .clinic {
    padding: 80px 0;
  }

  /**************************************/
  .gallery {
    padding: 80px 0;
  }

  .gallery-bg {
    top: -9%;
  }

  .gallery-inner {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /**************************************/
  .faq {
    padding: 80px 0;
  }

  .faq-bg {
    top: -4%;
  }

  /**************************************/
  .video-section__bg {
    top: -5%;
  }

  /**************************************/
  .about {
    padding: 80px 0 100px;
  }

  .about .section-header {
    margin: 0px auto 110px;
  }

  .about-inner {
    display: block;
  }

  .about-item {
    padding: 90px 25px 25px;
    margin: 0px auto 110px;
    width: 75%;
  }

  .about-item:last-child {
    margin: 0px auto;
  }

  .about-item__icon {
    margin: 0;
    position: absolute;
    top: -60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
  }

  /**************************************/
  .equipment {
    padding: 80px 0 70px;
  }

  .equipment .section-header {
    margin-bottom: 60px;
  }

  .equipment-inner {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
  }

  /**************************************/
  .footer-inner {
    display: block;
  }

  .footer-content {
    margin: 0px auto 50px;
    text-align: center;
  }

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

  .footer-menu {
    margin: 0;
    width: 100%;
  }

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

  .footer-menu__list > li > a {
    font-weight: 500;
  }

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

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

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

  .footer-btn {
    margin: 40px auto 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    width: 240px;
  }
}
/***************************************************************************/
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  .section-header {
    margin: 0 auto 50px;
  }

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

  .section-txt {
    font-size: 16px;
    line-height: 1.3;
  }

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

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

  .btn {
    height: 50px;
    font-size: 14px;
  }

  .btn--big {
    height: 60px;
  }

  .form-input {
    margin: 0px 0px 15px 0px;
    height: 60px;
    line-height: 60px;
  }

  .form-input::-webkit-input-placeholder {
    line-height: 60px;
  }

  .form-input::-moz-placeholder {
    line-height: 60px;
  }

  .form-input:-ms-input-placeholder {
    line-height: 60px;
  }

  .form-input::-ms-input-placeholder {
    line-height: 60px;
  }

  .form-input::placeholder {
    line-height: 60px;
  }

  .checkbox-custom {
    margin: 0px 10px 0px 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 22px;
    flex: 0 0 22px;
    width: 22px;
    height: 20px;
  }

  .check-txt {
    font-size: 14px;
  }

  /**************************************/
  .popup-content {
    padding: 40px 15px 30px;
    max-width: 500px;
    border-radius: 20px;
  }

  .popup__title {
    font-size: 26px;
    line-height: 1.1;
  }

  .popup__txt {
    margin: 0px 0px 30px 0px;
    font-size: 16px;
  }

  .popup-form {
    width: 100%;
  }

  .popup-form__input {
    margin: 0px 0px 15px 0px;
  }

  .popup-form__check-label {
    width: 100%;
  }

  /**************************************/
  .header-logo {
    display: none;
  }

  .header-contacts {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

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

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

  .header__phone-schedule {
    display: block;
    text-align: center;
  }

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

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

  .header-schedule {
    font-size: 13px;
    text-align: center;
  }

  .header-btn.btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 115px;
    flex: 0 0 115px;
    width: 115px;
    font-size: 11px;
  }

  /**************************************/
  .intro {
    padding: 120px 0px 0px;
  }

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

  .intro-content__top {
    margin: 0px 0px 70px 0px;
  }

  .intro-title {
    font-size: 40px;
  }

  .intro-subtitle {
    font-size: 22px;
  }

  .intro-list > li {
    padding: 0px 0px 0px 36px;
    font-size: 16px;
  }

  .intro-list > li:before {
    width: 26px;
    height: 26px;
  }

  .intro-content__item {
    width: 100%;
    min-height: 95px;
  }

  .intro-content__item:first-child {
    margin: 0px 0px 25px 0px;
  }

  .intro-content__item:nth-child(1) .intro-content__item-txt::after {
    width: calc(87% - 12px);
  }

  .intro-content__item:nth-child(2) .intro-content__item-txt::after {
    width: calc(76% - 12px);
  }

  .intro-content__item-txt {
    font-size: 16px;
  }

  .intro-form {
    border-radius: 20px;
  }

  .intro-form:after {
    border-radius: 20px;
  }

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

  .intro-form__txt {
    font-size: 16px;
  }

  .intro-form__inner {
    display: block;
  }

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

  .intro-form__check-label {
    margin: 0px 0px 25px 0px;
  }

  /**************************************/
  .prices {
    padding: 100px 0 70px;
  }

  .prices-bg__left {
    bottom: -3%;
  }

  .prices-item {
    padding: 20px 20px 25px;
    display: block;
  }

  .prices-item__info {
    margin: 0px 0px 25px 0px;
  }

  .prices-item__title {
    font-size: 22px;
  }

  .prices-item__price {
    margin: 0px 0px 25px 0px;
    width: 100%;
    border: none;
  }

  .prices-item__order {
    width: 100%;
  }

  /**************************************/
  .promotion {
    padding: 60px 0;
  }

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

  .promotion-item {
    margin: 0 0 50px;
    width: 100%;
    max-width: unset;
  }

  .promotion-item:last-child {
    margin: 0;
  }

  /**************************************/
  .warranty {
    padding: 60px 0 50px;
  }

  .warranty-img {
    bottom: -7%;
  }

  .warranty-circle {
    margin: 0px auto 30px;
    width: 280px;
    height: 280px;
  }

  .warranty-circle__img {
    top: -13%;
  }

  .warranty-circle__pretitle {
    font-size: 16px;
  }

  .warranty-circle__title {
    font-size: 30px;
  }

  /**************************************/
  .reviews {
    padding: 60px 0;
  }

  .reviews-bg__left {
    top: -2%;
  }

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

  .reviews-item {
    padding: 30px 20px;
  }

  .reviews-item._shadow:after {
    -webkit-box-shadow: 0 0 10px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 10px 0 rgba(84, 87, 99, 0.2);
  }

  .reviews-item__name {
    font-size: 22px;
  }

  .reviews-item__audio {
    padding: 0 15px;
    margin: 25px 0px 0px 0px;
  }

  .reviews-item__audio .loading {
    left: 15px;
  }

  .reviews-item__audio .controls {
    font-size: 14px;
  }

  .reviews-item__audio .controls .controls__current-time {
    min-width: 38px;
  }

  /**************************************/
  .map-specialists__section {
    padding: 60px 0px 0px;
  }

  .map-specialists__bg {
    top: -8%;
  }

  .map-specialists {
    height: 350px;
  }

  /**************************************/
  .stages {
    padding: 60px 0 40px;
  }

  .stages-img {
    bottom: -4%;
  }

  .stages-circle {
    margin: 0px auto 30px;
    width: 280px;
    height: 280px;
  }

  .stages-circle__img {
    top: -11%;
  }

  .stages-circle__title {
    font-size: 30px;
  }

  .stages-item {
    padding: 20px;
    display: block;
    text-align: center;
  }

  .stages-item__time {
    margin: 0px auto 15px;
  }

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

  /**************************************/
  .team {
    padding: 60px 0 30px;
  }

  .team-top {
    padding: 25px 20px;
    margin: 0px 0px 25px 0px;
  }

  .team-top__cheif {
    display: block;
    text-align: center;
  }

  .team-top__cheif-photo {
    margin: 0px auto 10px;
  }

  .team-top__cheif-txt {
    text-align: center;
  }

  .team-top__form {
    display: block;
  }

  .team-top__form-input {
    width: 100%;
  }

  .team-top__form-btn {
    margin: 0px 0px 25px 0px;
    width: 100%;
  }

  .team-slide__name {
    font-size: 20px;
  }

  .team-slide__experience::before {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18px;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
  }

  /**************************************/
  .clinic {
    padding: 60px 0;
  }

  .clinic-item {
    width: 100%;
  }

  /**************************************/
  .gallery {
    padding: 60px 0;
  }

  .gallery-inner {
    gap: 10px;
  }

  /**************************************/
  .faq {
    padding: 60px 0;
  }

  .faq-bg {
    top: -3%;
  }

  .faq-item._shadow:after {
    -webkit-box-shadow: 0 0 20px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 20px 0 rgba(84, 87, 99, 0.2);
  }

  .faq-item__title {
    padding: 15px 20px;
    font-size: 20px;
  }

  .faq-item__content {
    padding: 20px;
  }

  .reviews-item__audio {
    -webkit-box-shadow: 0 0 20px 0 rgba(84, 87, 99, 0.2);
    box-shadow: 0 0 20px 0 rgba(84, 87, 99, 0.2);
  }

  /**************************************/
  .video-section {
    padding: 70px 0 60px;
  }

  .video-section__inner {
    width: 95%;
  }

  .video-info {
    padding: 30px 20px;
  }

  .video-title {
    font-size: 30px;
  }

  /**************************************/
  .about {
    padding: 60px 0 90px;
  }

  .about-bg {
    top: -1%;
  }

  .about-item {
    width: 100%;
  }

  /**************************************/
  .help {
    padding: 50px 0;
  }

  .help-form {
    display: block;
  }

  .help-form__input {
    width: 100%;
  }

  .help-form__btn {
    margin: 0px 0px 25px 0px;
    width: 100%;
  }

  /**************************************/
  .equipment {
    padding: 70px 0 60px;
  }

  .equipment .section-header {
    margin-bottom: 45px;
  }

  .equipment-inner {
    gap: 55px 20px;
  }

  .equipment-title {
    font-size: 16px;
  }

  /**************************************/
  .licenses {
    margin: 50px 0 40px;
  }

  .licenses .section-header {
    margin-bottom: 10px;
  }

  /**************************************/
  .contacts-list {
    display: block;
  }

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

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

  .contacts-list__item-info > span {
    font-size: 16px;
  }

  /**************************************/
  .footer-menu__list > li:not(:last-child) {
    margin: 0px 0px 25px 0px;
  }

  .footer-menu__list > li > a {
    font-size: 16px;
  }

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

  .footer-contacts__top {
    margin: 0px 0px 40px 0px;
    width: 100%;
  }

  .footer-contacts__list {
    width: 100%;
  }

  .footer-contacts__list > li {
    display: block;
  }

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

  .footer-contacts__list-icon {
    margin: 0px auto 5px;
  }
}
/***************************************************************************/
@media (max-width: 350px) {
  .socials-link:not(:last-child) {
    margin: 0px 15px 0px 0px;
  }

  /**************************************/
  .header-socials {
    margin: 0px 20px 0px 0px;
  }

  .header-phone {
    font-size: 19px;
  }

  .header-schedule {
    font-size: 12px;
  }

  .header-btn.btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    width: 100px;
    font-size: 10px;
  }

  /**************************************/
  .intro-title {
    font-size: 36px;
  }

  .intro-subtitle {
    font-size: 20px;
  }

  /**************************************/
  .team-slide__name {
    font-size: 18px;
  }

  /**************************************/
  .equipment-inner {
    margin: 0px auto;
    display: block;
    width: 90%;
  }

  .equipment-item:not(:last-child) {
    margin: 0px 0px 50px 0px;
  }

  .equipment-title {
    font-size: 18px;
  }

  /**************************************/
  .footer-menu {
    display: block;
  }

  .footer-menu__list {
    width: 100%;
  }

  .footer-menu__list:not(:last-child) {
    margin: 0px 0px 25px 0px;
  }
}
.webp .section--dark:before {
  background-image: url(../images/section-bg.webp);
}
.webp .promotion-item__period:before {
  background: url(../images/icons/clock.webp) center/contain no-repeat;
}

.webp .stages-circle__inner {
  background: url(../images/stages/circle-bg.webp) center/cover no-repeat;
}

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

.webp .team-slide__experience::before {
  background: url(../images/icons/clock2.webp) center/contain no-repeat;
}