@charset "UTF-8";

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

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

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

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

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

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

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

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

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

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

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

:focus,
:active {
  outline: none;
}

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

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

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

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

input,
button,
textarea {
  font-family: "Muller";
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  color: #343434;
  font-size: 18px;
  letter-spacing: 0.05em;
}

body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: 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 {
  max-width: 1170px;
  margin: 0 auto;
}

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

.input {
  width: 100%;
  display: block;
  padding: 0px 20px;
}

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

.checkbox {
  position: relative;
  margin-bottom: 30px;
  display: block;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked+.checkbox__text:after {
  background-color: #999;
}

.checkbox__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 12px;
  color: #999;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}

.checkbox__text:before {
  content: "";
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin: 0px 10px 0px 0px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 26px;
  flex: 0 0 26px;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 1px solid #999;
  -webkit-filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.15));
  border-radius: 50%;
}

.checkbox__text::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.checkbox a {
  color: #fff;
  text-decoration: underline;
}

.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

._hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #000;
  border-radius: 15px;
}

iframe,
.video-poster {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border: none;
  border-radius: 15px;
}

.btn-reset {
  border: none;
  background: transparent;
  cursor: pointer;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-play-shape {
  fill: #212121;
  fill-opacity: 0.8;
}

.video-play-icon {
  fill: #ffffff;
}

.video-play:focus {
  outline: none;
}

.video:hover .video-play-shape,
.video:focus .video-play-shape {
  fill: #ff0000;
  fill-opacity: 1;
}

._more-content {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}

._more-link span {
  font-style: normal;
}

._more-link span:first-child {
  display: block;
}

._more-link span:last-child {
  display: none;
}

._more-link._active span {
  font-style: normal;
}

._more-link._active span:first-child {
  display: none;
}

._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}

._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

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

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

._tabs-block {
  display: none;
}

._tabs-block._active {
  display: block;
}

.mirror {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}

._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.header {
  padding: 17px 18px 16px 27px;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

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

.header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 73px;
  flex: 0 0 73px;
  margin-right: 20px;
}

.header__descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 250px;
  flex: 0 1 250px;
  text-align: right;
  font-size: 12px;
  line-height: 120%;
  text-transform: uppercase;
}

.page {
  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;
  padding: 4px 28px 48px 27px;
  width: 100%;
  height: calc(100vh - 86px);
  overflow: scroll;
}

.main__image {
  margin-bottom: 30px;
  width: 200px;
}

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

.main__tite {
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.main__suptitle {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: center;
}

.main__form {
  width: 100%;
  max-width: 400px;
  margin: 0px auto 20px;
}

.main__row {
  margin-bottom: 20px;
}

.main__textarea {
  width: 100%;
  height: 125px;
  padding: 22px 40px 20px 28px;
  border: 1px solid #343434c9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  resize: none;
  font-size: 16px;
  line-height: 118.75%;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease 0s, border-color 0.3s ease;
  -o-transition: opacity 0.3s ease 0s, border-color 0.3s ease;
  transition: opacity 0.3s ease 0s, border-color 0.3s ease;
}

.main__textarea._focus {
  opacity: 1;
}

.main__textarea._error {
  border-color: red;
}

.main__form-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background: -o-linear-gradient(309.66deg, #E6026B -12.76%, #790C3B 117.7%);
  background: linear-gradient(140.34deg, #E6026B -12.76%, #790C3B 117.7%);
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  font-size: 17px;
  line-height: 100%;
  font-weight: 700;
  color: #fff;
}

.main__label {
  display: block;
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 140%;
}

.main__descr {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 160%;
  text-align: center;
}

.main__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  font-size: 17px;
  line-height: 100%;
  font-weight: 700;
  color: #fff;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
}

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

.main__btn--like {
  padding: 10px 21px 15px 35px;
  background: -webkit-gradient(linear, left top, left bottom, from(#49C040), to(#358A2F));
  background: -o-linear-gradient(top, #49C040 0%, #358A2F 100%);
  background: linear-gradient(180deg, #49C040 0%, #358A2F 100%);
}

.main__btn--like span {
  padding-top: 13px;
}

.main__btn--dislike {
  padding: 19px 21px 6px 35px;
  background: -webkit-gradient(linear, left top, left bottom, from(#B4221A), to(#930B04));
  background: -o-linear-gradient(top, #B4221A 0%, #930B04 100%);
  background: linear-gradient(180deg, #B4221A 0%, #930B04 100%);
}

.main__btn--dislike span {
  padding-top: 4px;
}

.like {
  padding-top: 21px;
}

.like--2 {
  padding-top: 35px;
}

.like__text {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 141.6666666667%;
  text-align: center;
  opacity: 0.7;
}

.like__image {
  margin-bottom: 28px;
}

.like__descr {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 122.2222222222%;
  text-align: center;
}

.like__links {
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

.like__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.like__link {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 47%;
  flex: 0 1 47%;
  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;
  height: 60px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
}

.like__link--yandex {
  margin-right: 20px;
}

.like__link--prodoctor {
  width: 100%;
}

.like__thanks p {
  font-size: 14px;
  text-align: center;
  line-height: 150%;
}

.like__caption {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
}

.like__caption--dislike {
  font-size: 14px;
}

.discount {
  padding-top: 0;
}

.discount__image {
  margin-bottom: 0;
}

.discount__text {
  margin: 0px 0px 20px 0px;
  font-size: 14px;
  line-height: 140%;
}

.discount__text span {
  font-size: 18px;
  line-height: 140%;
  color: #E6026B;
  font-weight: 700;
}

.discount__input {
  width: 100%;
  max-width: 400px;
  margin: 0px auto 0;
  padding: 22px 28px 20px;
  border: 1px solid #343434;
  border-radius: 30px;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 100%;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease 0s, border-color 0.3s ease;
  -o-transition: opacity 0.3s ease 0s, border-color 0.3s ease;
  transition: opacity 0.3s ease 0s, border-color 0.3s ease;
}

.discount__input._focus {
  opacity: 1;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}

.discount__input._error {
  border-color: red;
}

.form__error {
  margin-top: 5px;
  padding-left: 5px;
  color: red;
}

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

@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}

@media (max-width: 479.98px) {
  ._ibg {
    position: relative;
  }

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

  .video {
    height: 100%;
  }

  .main__image {
    width: 35.8974358974%;
    padding: 0px 0px 53% 0px;
  }

  .like__image {
    padding: 0px 0px 43% 0px;
  }
}

@media (max-width: 330px) {
  .main__btn--like {
    padding: 10px 11px 15px 15px;
  }

  .main__btn--dislike {
    padding: 19px 10px 6px 15px;
  }
}

/* For CALL-US Page */

.call-us {
  padding: 0 15px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.call-us__body {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin: 0px auto;
}

.call-us__item {
  padding: 22px 27px;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.call-us__item--tg {
  background-color: #0088cc;
}
.call-us__item--max {
  background: linear-gradient(135deg, #161f8a 0%, #2d085f 100%);
}

.call-us__item--vk {
  background-color: #0077ff;
}

.call-us__item--wa {
  background-color: #43d854;
}

.call-us__item--phone {
  background-color: #b20754;
}
.which{
    padding: 100px 15px;
}
.which__title{
    font-size: calc(28px + 32 * (100vw - 320px) / 1455);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.05em;
    line-height: normal;
    text-transform: uppercase;
}
.which-btn{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px 0 0;
}
.which-btn__item{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em 5em;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.05em;
    line-height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    border: 2px solid transparent;
    background-color: #b20754;
    color: white;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s, border-color 0.3s ease 0s;
}
.which-btn__item:hover{
    border-color: #c4c4c4;
    background: white;
    color: #b20754;
}

@media (min-width: 767.98px) {
  .call-us__body {
    max-width: 1200px;
  }
}

@media (max-width: 767.98px) {
  .call-us__body {
    max-width: 400px;
    gap: 20px;
  }
  .which-btn__item{
    width: 100%;
  }
  .which-btn{
    flex-direction: column;
    max-width: 560px;
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .call-us__item {
    max-width: 320px;
  }

  .call-us__body {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (any-hover: hover) {
  .call-us__item:hover {
    opacity: 0.9;
  }
}