@charset "UTF-8";
/*Обнуление*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito:400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Inter:400&display=swap');

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

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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-size: inherit;
  font-weight: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: #000;
  background-color: #fcfbfb;
}

body._lock {
  overflow: hidden;
}

[class*='__container'] {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.resetLinkStyle {
  color: currentColor;
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  padding-bottom: 20px;
}

@media (max-width: 992px) {
  .header {
    position: fixed;
  }
}

@media (max-width: 992px) {
  .header__close-menu {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 6;
  }
}

.header._active {
  top: -74px;
  background: #fff;
}

@media (max-width: 992px) {
  .header._active {
    top: 0;
    height: 80px;
  }
}

.header__top-row {
  padding: 15px 0px;
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
}

.header__top:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 1170px) {
  .header__top {
    -webkit-box-pack: baseline;
    -ms-flex-pack: baseline;
    justify-content: baseline;
  }
}

@media (max-width: 992px) {
  .header__logo {
    position: fixed;
    top: 15px;
    left: 15px;
  }
}

.header__box-work {
  text-align: center;
}

@media (max-width: 992px) {
  .header__box-work {
    position: fixed;
    z-index: 6;
    bottom: 150vh;
    font-family: Nunito;
    font-size: 12px;
    line-height: 16.37px;
    display: block;
    width: 100%;
    text-align: center;
    left: 0;
    opacity: 0.6;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }
}

@media (max-width: 860px) {
  .header__box-work {
    margin-bottom: 30px;
  }
}

.header__adress:not(:last-child) {
  margin-bottom: 5px;
}

.header__time-work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5px;
  column-gap: 5px;
}

@media (max-width: 992px) {
  .header__time-work {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.header__clock {
  height: 16px;
  width: 16px;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1170px) {
  .header__actions {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (max-width: 992px) {
  .header__actions {
    width: 100%;
    position: fixed;
    z-index: 6;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    bottom: 150vh;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }
}

.header__tel {
  color: #000;
}

@media (max-width: 992px) {
  .header__tel {
    font-size: 16px;
  }
}

.header__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

@media (min-width: 993px) {
  .header__close-menu {
    display: none;
  }
}

.header__bottom-row {
  background-color: #fff;
  padding: 20px 0px;
}

.logo__img img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
}

.icon-menu {
  display: none;
}

@media (max-width: 992px) {
  .icon-menu {
    background: transparent;
    padding: 8px;
    display: block;
    position: relative;
    width: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    height: 14px;
    z-index: 5;
    cursor: pointer;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: '';
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background-color: #000;
  }

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

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

  .icon-menu span {
    top: 45%;
  }

  .icon-menu._active span {
    opacity: 0;
  }

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

  .icon-menu._active::after {
    bottom: calc(50% - 2px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.menu {
  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;
  gap: 15px;
}

@media (max-width: 992px) {
  .menu__body {
    z-index: 2;
    position: fixed;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: #fff;
    -webkit-transition: top 0.3s ease 0s;
    transition: top 0.3s ease 0s;
    overflow: auto;
  }

  .menu__body::before {
    content: url('../img/header/mobile-header-left-icon.svg');
    position: absolute;
    left: 2px;
    top: -100vh;
    z-index: 5;
    -webkit-transition: top 0.3s ease 0s;
    transition: top 0.3s ease 0s;
  }
}

@media (max-width: 992px) and (max-width: 380px) {
  .menu__body::before {
    height: 90px;
  }
}

@media (max-width: 992px) {
  .menu__body::after {
    content: url('../img/header/mobile-header-right-icon.svg');
    position: absolute;
    right: 20px;
    top: -100vh;
  }

  .menu__body._active {
    top: 0;
  }
}

@media (max-width: 992px) and (max-width: 992px) {
  .menu__body._active::before {
    top: unset;
    bottom: 125px;
  }
}

@media (max-width: 992px) and (max-width: 992px) {
  .menu__body._active::after {
    top: unset;
    bottom: 45px;
  }
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 50px;
}

@media (max-width: 1080px) {
  .menu__list {
    gap: 15px 30px;
  }
}

@media (max-width: 992px) {
  .menu__list {
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }

  .menu__list:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (max-width: 992px) {
  .menu__item {
    border-bottom: 1px solid #9e9e9e;
    padding: 15px 0px;
    padding-left: 40px;
  }

  .menu__item:last-child {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

.menu__link {
  color: #000;
}

.menu__button {
  display: inline-block;
  background-color: #fcfbfb;
}

@media (max-width: 992px) {
  .menu__button_pc {
    visibility: hidden;
    display: none;
    opacity: 0;
  }
}

@media (min-width: 993px) {
  .menu__button_mobile {
    visibility: hidden;
    display: none;
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .menu__button_mobile:not(:last-child) {
    display: block;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
    padding: 11px 20px;
  }
}

@media (max-width: 992px) {
  #header-box-work-2 {
    bottom: 150vh;
  }

  .header__top._active .header__box-work {
    bottom: 140px;
  }

  .header__top._active #header-box-work-2 {
    bottom: 90px;
  }

  .header__top._active .header__actions {
    bottom: 10px;
  }
}

@media (max-width: 1170px) and (min-width: 992px) {
  .header._active {
    top: -128px;
  }
}

@media (max-height: 590px) {
  .menu__list {
    max-height: 223px;
    overflow: scroll;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.footer {
  padding: 100px 0px;
  background-color: rgba(255, 214, 57, 0.5);
}

@media (max-width: 992px) {
  .footer {
    padding: 50px 0px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0px;
  }
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 992px) {
  .footer__row {
    -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;
    gap: 0px;
  }
}

@media (max-width: 992px) {
  .footer__column_1 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

@media (max-width: 992px) {
  .footer__column_2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media (max-width: 992px) {
  .footer__column_3 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (max-width: 992px) {
  .footer__column-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
}

.footer__logo img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 993px) {
  .footer__logo:not(:last-child) {
    margin-bottom: 30px;
  }
}

.footer__contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.footer__contact-box:not(:last-child) {
  margin-bottom: 15px;
}

.footer__contact-img img {
  max-width: 24px;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer__tel {
  color: #000;
  text-wrap: nowrap;
}

@media (max-width: 480px) {
  .footer__tel {
    font-size: 16px;
  }
}

.footer__email {
  color: #000;
  text-wrap: nowrap;
}

@media (max-width: 480px) {
  .footer__email {
    font-size: 16px;
  }
}

.footer__location-body:not(:last-child) {
  margin-bottom: 46px;
}

.footer__location-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  column-gap: 10px;
}

.footer__location-box:not(:last-child) {
  margin-bottom: 24px;
}

.footer__descr:not(:last-child) {
  margin-bottom: 10px;
}

.footer__map-link {
  display: inline-block;
  color: #572922;
  text-decoration: underline;
}

.footer__map-link:not(:last-child) {
  margin-bottom: 40px;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  column-gap: 10px;
}

@media (max-width: 992px) {
  .footer__socials {
    display: none;
  }
}

.footer__social img {
  max-width: 30px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 992px) {
  .menu-footer {
    display: none;
  }
}

.menu-footer__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1090px) {
  .menu-footer__list {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-footer__link {
  color: #000;
  font-weight: 5 00;
}

.button-main {
  padding: 14px 42px;
  font-size: 24px;
  font-weight: 500;
  border: 2px solid #000;
  border-radius: 100px;
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
  .button-main:hover {
    background-color: #000;
    color: #fff;
  }
}

.button-main_yellow {
  background-color: #fed639;
  border: none;
}

@media (any-hover: hover) {
  .button-main_yellow:hover {
    background-color: #dbb92f;
    color: #000;
  }
}

.button-main_white {
  background-color: #fff;
}

@media (max-width: 550px) {
  .button-main {
    font-size: 18px;
  }
}

.title {
  font-weight: 700;
  font-size: 40px;
  line-height: 115%;
  color: #572922;
  text-align: center;
}

.title:not(:last-child) {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .title {
    font-size: 36px;
  }

  .title:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 32px;
  }

  .title:not(:last-child) {
    margin-bottom: 30px;
  }
}

.modal-reviews {
  max-width: 1000px;
}

.modal-reviews__item {
  position: relative;
  padding: 40px 50px;
  background-color: #fcfbfb;
  border: 2px solid #000;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .modal-reviews__item {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .modal-reviews__item {
    padding: 20px 15px;
  }
}

.modal-reviews__item::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -10px;
  left: 10px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 20px;
}

.modal-reviews__btn-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .modal-reviews__btn-row:not(:last-child) {
    margin-bottom: 10px;
  }
}

.modal-reviews__button-close {
  margin: -20px -30px 0px 0px;
  background-color: transparent;
}

@media (max-width: 767px) {
  .modal-reviews__button-close {
    margin: 0px;
  }
}

.modal-reviews__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-reviews__title {
  text-align: center;
  font-weight: 700;
  font-size: 40px;
}

.modal-reviews__title:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .modal-reviews__title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .modal-reviews__title {
    font-size: 28px;
  }
}

.modal-reviews__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
}

.modal-reviews__logo {
  -webkit-box-shadow: 0 4px 10px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 10px 6px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  background-color: #fff;
}

.modal-reviews__logo img {
  border-radius: 20px;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .modal-reviews__logo {
    max-width: 180px;
  }
}

.modal-reception {
  padding: 30px;
  max-width: 550px;
}

.modal-reception__item {
  position: relative;
  text-align: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 20px;
}

.modal-reception__item::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -10px;
  left: 10px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 20px;
}

.modal-reception__btn-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.modal-reception__button-close {
  background-color: transparent;
}

.modal-reception__title {
  font-weight: 700;
  font-size: 40px;
}

.modal-reception__title:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .modal-reception__title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .modal-reception__title {
    font-size: 28px;
  }

  .modal-reception__title:not(:last-child) {
    margin-bottom: 15px;
  }
}

.modal-reception__description {
  line-height: 130%;
}

.modal-reception__description:not(:last-child) {
  margin-bottom: 30px;
}

.modal-reception__form {
  width: 100%;
}

.modal-reception__input {
  width: 100%;
  display: block;
  padding: 20px;
  font-size: 16px;
  background-color: rgba(255, 214, 57, 0.5);
  border: 2px solid #000;
  border-radius: 10px;
}

.modal-reception__input:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .modal-reception__input {
    padding: 10px;
  }

  .modal-reception__input:not(:last-child) {
    margin-bottom: 15px;
  }
}

.modal-reception__textarea {
  min-height: 120px;
  width: 100%;
  display: block;
  padding: 20px;
  font-size: 16px;
  background-color: rgba(255, 214, 57, 0.5);
  border: 2px solid #000;
  border-radius: 10px;
  resize: none;
}

.modal-reception__textarea:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .modal-reception__textarea {
    min-height: 30px;
  }

  .modal-reception__textarea:not(:last-child) {
    margin-bottom: 15px;
  }
}

.modal-reception__consent-to-processing:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .modal-reception__consent-to-processing:not(:last-child) {
    margin-bottom: 15px;
  }
}

.modal-reception__label {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  column-gap: 10px;
}

.modal-reception__checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}

.modal-reception__error-agreement-message {
  color: red;
  font-size: 12px;
  margin-bottom: 4px;
  display: flex;
  justify-content: flex-start;
}

.modal-reception__text-argeement {
  font-size: 14px;
  padding-left: 25px;
}

.modal-reception__text-argeement::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.modal-reception__text-argeement::after {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background: url('../img/reviews/arr-check.svg') no-repeat;
  background-size: 8px 8px;
  opacity: 0;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 2;
}

.modal-reception__checkbox:checked+.modal-reception__text-argeement::before {
  background-color: #fff;
}

.modal-reception__checkbox:checked+.modal-reception__text-argeement::after {
  opacity: 1;
}

.modal-reception__form-response-result {
  margin-bottom: 16px;
}

.modal {
  position: relative;
  padding: 30px;
  color: #000;
  min-height: 300px;
  width: 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: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
}

.modal.modal__visible {
  display: block;
}

@media (max-width: 480px) {
  .modal {
    padding: 30px 15px;
  }
}

.modal-overlay {
  position: fixed;
  z-index: 10000000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  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;
  height: 100dvh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition:
    opacity 0.3s ease 0s,
    visibility 0.3s ease 0s;
  transition:
    opacity 0.3s ease 0s,
    visibility 0.3s ease 0s;
}

.modal-overlay.modal-overlay__visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition:
    opacity 0.3s ease 0s,
    visibility 0.3s ease 0s;
  transition:
    opacity 0.3s ease 0s,
    visibility 0.3s ease 0s;
}

.hero {
  padding: 150px 0px 100px 0px;
}

@media (max-width: 1170px) {
  .hero {
    padding: 230px 0px 100px 0px;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 130px 0px 70px 0px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0px 70px 0px;
  }
}

.hero__container {
  position: relative;
}

.hero__container::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 257px;
  height: 384px;
  bottom: -5%;
  left: -15%;
  background: url('../img/hero/big-decor.svg') 0 0/100% 100% no-repeat;
  background-size: cover;
}

@media (max-width: 1600px) {
  .hero__container::before {
    width: 227px;
    height: 340px;
    bottom: -2%;
    left: -10%;
  }
}

@media (max-width: 1400px) {
  .hero__container::before {
    width: 187px;
    height: 200px;
    bottom: -7%;
    left: 30%;
  }
}

@media (max-width: 1200px) {
  .hero__container::before {
    width: 150px;
    height: 170px;
    bottom: -7%;
    left: 40%;
  }
}

@media (max-width: 992px) {
  .hero__container::before {
    width: 120px;
    height: 140px;
    left: 75%;
  }
}

@media (max-width: 480px) {
  .hero__container::before {
    width: 100px;
    height: 120px;
    left: 65%;
  }
}

.hero__slider:not(:last-child) {
  margin-bottom: 15px;
}

.hero__body {
  max-width: 600px;
}

@media (max-width: 1080px) {
  .hero__body {
    max-width: 500px;
  }
}

@media (max-width: 992px) {
  .hero__body {
    max-width: none;
    text-align: center;
  }
}

.hero__title {
  font-family: 'Nunito', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 135%;
  color: #572922;
}

.hero__title:not(:last-child) {
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .hero__title {
    font-size: 42px;
  }
}

@media (max-width: 550px) {
  .hero__title {
    font-size: 36px;
  }
}

.hero__button_prev {
  background: transparent;
}

.hero__button_next {
  background: transparent;
}

.hero__img img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 992px) {
  .hero__buttons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.slider-hero__slide {
  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;
  gap: 30px;
  cursor: -webkit-grab;
  cursor: grab;
}

@media (max-width: 992px) {
  .slider-hero__slide {
    -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;
  }
}

.about-clinic {
  padding: 100px 0px;
  background-color: rgba(255, 214, 57, 0.5);
}

@media (max-width: 992px) {
  .about-clinic {
    padding: 50px 0px;
  }
}

@media (max-width: 480px) {
  .about-clinic {
    padding: 30px 0px;
  }
}

.about-clinic__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .about-clinic__container {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .about-clinic__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.about-clinic__image-box {
  max-width: 620px;
  width: 100%;
}

@media (max-width: 1080px) {
  .about-clinic__image-box {
    max-width: 500px;
  }
}

@media (max-width: 992px) {
  .about-clinic__image-box {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .about-clinic__image-box {
    max-width: none;
  }
}

.about-clinic__swiper:not(:last-child) {
  margin-bottom: 30px;
}

.about-clinic__buttons {
  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;
  -webkit-column-gap: 50px;
  column-gap: 50px;
}

.about-clinic__button {
  background: transparent;
}

@media (min-width: 768px) {
  .about-clinic__body {
    min-width: 315px;
  }
}

.about-clinic__title {
  text-align: left;
}

@media (max-width: 767px) {
  .about-clinic__title {
    text-align: center;
  }
}

.about-clinic__description {
  line-height: 140%;
}

.clinic-about-slider__slide {
  cursor: -webkit-grab;
  cursor: grab;
  width: 100%;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .clinic-about-slider__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.clinic-about-slider__img {
  position: relative;
  border-radius: 15px;
  border: 2px solid #000;
}

.clinic-about-slider__img::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -10px;
  left: 10px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 20px;
}

.clinic-about-slider__img img {
  border-radius: 15px;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .clinic-about-slider__img {
    max-width: 600px;
  }
}

.advantages {
  padding: 100px 0px;
}

@media (max-width: 992px) {
  .advantages {
    padding: 50px 0px;
  }
}

@media (max-width: 480px) {
  .advantages {
    padding: 30px 0px;
  }
}

.advantages__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [6];
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .advantages__row {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  .advantages__row {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 380px) {
  .advantages__row {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.advantages__item {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.advantages__img:not(:last-child) {
  margin-bottom: 30px;
}

.advantages__img img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.advantages__description {
  line-height: 150%;
}

.we-in-socials {
  padding: 100px 0px;
  background-color: rgba(255, 214, 57, 0.5);
}

@media (max-width: 992px) {
  .we-in-socials {
    padding: 50px 0px;
  }
}

@media (max-width: 480px) {
  .we-in-socials {
    padding: 30px 0px 50px 0px;
  }
}

.we-in-socials__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px 80px;
}

@media (max-width: 992px) {
  .we-in-socials__row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
  }
}

.we-in-socials__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 40px;
  column-gap: 40px;
}

@media (max-width: 992px) {
  .we-in-socials__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.we-in-socials__img {
  height: 120px;
}

.we-in-socials__img img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 480px) {
  .we-in-socials__img {
    max-width: 100px;
  }
}

.we-in-socials__body {
  text-align: center;
}

.we-in-socials__subscribers {
  display: block;
  font-weight: 500;
}

.we-in-socials__subscribers:not(:last-child) {
  margin-bottom: 40px;
}

@media (max-width: 425px) {
  .we-in-socials__subscribers {
    font-size: 16px;
  }
}

.we-in-socials__button {
  padding: 8px 52px;
}

@media (max-width: 480px) {
  .we-in-socials__button {
    padding: 8px 36px;
  }
}

@media (max-width: 425px) {
  .we-in-socials__button {
    padding: 8px 12px;
    font-size: 16px;
  }
}

.reviews {
  padding: 100px 0px;
}

@media (max-width: 992px) {
  .reviews {
    padding: 50px 0px;
  }
}

@media (max-width: 480px) {
  .reviews {
    padding: 30px 0px;
  }
}

.reviews__top {
  text-align: center;
}

.reviews__top:not(:last-child) {
  margin-bottom: 100px;
}

@media (min-width: 768px) {
  .reviews__slider-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.reviews__slider:not(:last-child) {
  margin-bottom: 30px;
}

.reviews__button {
  margin-top: 30px;
}

.slider-reviews__slide {
  padding: 16px !important;
}

.slider-reviews__button {
  background: transparent;
}

.slider-reviews__button_pc-prev {
  margin-right: 20px;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
}

@media (max-width: 767px) {
  .slider-reviews__button_pc-prev {
    display: none;
  }
}

.slider-reviews__button_pc-next {
  margin-left: 20px;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
}

@media (max-width: 767px) {
  .slider-reviews__button_pc-next {
    display: none;
  }
}

@media (min-width: 768px) {
  .slider-reviews__button_mobile {
    display: none;
  }
}

.slider-reviews__button_prev {
  margin-right: 50px;
}

.swiper-slide {
  height: auto;
  padding: 10px;
}

.swiper-slide__item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  -webkit-box-shadow: 0 4px 10px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 10px 4px rgba(0, 0, 0, 0.25);
  height: 100%;
}

@media (max-width: 425px) {
  .swiper-slide__item {
    padding: 15px;
  }
}

.swiper-slide__user-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.swiper-slide__user-box:not(:last-child) {
  margin-bottom: 10px;
}

.swiper-slide__user img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-slide__rating img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-slide__description {
  text-align: left;
}

.bottom-reviews {
  position: relative;
}

.bottom-reviews::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 211px;
  height: 302px;
  top: -30%;
  right: -15%;
  background: url('../img/reviews/decor.svg') 0 0/100% 100% no-repeat;
  background-size: cover;
}

@media (max-width: 1500px) {
  .bottom-reviews::before {
    width: 145px;
    height: 230px;
    top: -30%;
    right: 0;
  }
}

@media (max-width: 767px) {
  .bottom-reviews::before {
    display: none;
  }
}

.bottom-reviews__row {
  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;
  gap: 15px 220px;
}

@media (max-width: 992px) {
  .bottom-reviews__row {
    gap: 15px 90px;
  }
}

@media (max-width: 767px) {
  .bottom-reviews__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.bottom-reviews__img-wrap {
  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;
  -webkit-column-gap: 35px;
  column-gap: 35px;
}

.bottom-reviews__img-decor img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .bottom-reviews__img-decor {
    display: none;
  }
}

.bottom-reviews__img {
  position: relative;
}

@media (min-width: 768px) {
  .bottom-reviews__img::before {
    content: '';
    z-index: 10;
    position: absolute;
    display: block;
    width: 250px;
    height: 112px;
    top: 10%;
    left: 80%;
    background: url('../img/reviews/arr-decor.svg') 0 0/100% 100% no-repeat;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .bottom-reviews__img::before {
    width: 220px;
    top: -5%;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .bottom-reviews__img::before {
    display: none;
  }
}

.bottom-reviews__img img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bottom-reviews__wrpap {
  max-width: 650px;
}

.form-reviews {
  position: relative;
  border: 2px solid #000;
  border-radius: 20px;
  background-color: #ee741d;
  padding: 30px;
}

@media (max-width: 480px) {
  .form-reviews {
    padding: 20px;
  }
}

.form-reviews::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -10px;
  left: 10px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 20px;
}

.form-reviews__text-block {
  text-align: center;
  color: #fff;
}

.form-reviews__text-block:not(:last-child) {
  margin-bottom: 30px;
}

.form-reviews__title {
  font-weight: 700;
  font-size: 40px;
}

.form-reviews__title:not(:last-child) {
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .form-reviews__title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .form-reviews__title {
    font-size: 24px;
  }
}

@media (max-width: 425px) {
  .form-reviews__title {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .form-reviews__descr {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .form-reviews__descr {
    font-size: 14px;
  }
}

@media (max-width: 425px) {
  .form-reviews__descr {
    font-size: 12px;
  }
}

.form-reviews__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.form-reviews__row:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .form-reviews__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.form-reviews__column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  height: 100%;
}

@media (max-width: 767px) {
  .form-reviews__column {
    width: 100%;
  }
}

.form-reviews__item {
  display: block;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 12px 18px;
  border: 2px solid #000;
  border-radius: 10px;
  width: 100%;
}

.form-reviews__item:not(:last-child) {
  margin-bottom: 15px;
}

.form-reviews__item::-webkit-input-placeholder {
  font-size: 14px;
  color: #ee741d;
}

.form-reviews__item:-ms-input-placeholder {
  font-size: 14px;
  color: #ee741d;
}

.form-reviews__item::-ms-input-placeholder {
  font-size: 14px;
  color: #ee741d;
}

.form-reviews__item::placeholder {
  font-size: 14px;
  color: #ee741d;
}

.form-reviews__item:last-child {
  height: 100%;
}

.form-reviews__item_textarea {
  min-height: 114px;
  resize: none;
}

.form-reviews__consent-to-processing:not(:last-child) {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .form-reviews__consent-to-processing:not(:last-child) {
    margin-bottom: 25px;
  }
}

.form-reviews__error-agreement-message {
  color: red;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
  display: flex;
  justify-content: flex-start;
}

.form-reviews__label {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  column-gap: 10px;
}

.form-reviews__checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}

.form-reviews__text-argeement {
  color: #fff;
  font-size: 12px;
  padding-left: 25px;
}

.form-reviews__text-argeement::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.form-reviews__text-argeement::after {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background: url('../img/reviews/arr-check.svg') no-repeat;
  background-size: 8px 8px;
  opacity: 0;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 2;
}

.form-reviews__response-result {
  color: white;
  margin-bottom: 12px;
}

.form-reviews__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form-reviews__button {
  margin: 0 auto;
  padding: 8px 36px;
}

.form-reviews__checkbox:checked+.form-reviews__text-argeement::before {
  background-color: #fff;
}

.form-reviews__checkbox:checked+.form-reviews__text-argeement::after {
  opacity: 1;
}

.doctors {
  padding: 100px 0px;
}

@media (max-width: 992px) {
  .doctors {
    padding: 250px 0px 50px 0px;
  }
}

@media (max-width: 480px) {
  .doctors {
    padding: 230px 0px 30px 0px;
  }
}

.doctors__container {
  position: relative;
}

.doctors__container::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 267px;
  height: 275px;
  top: -20%;
  right: -20%;
  background: url('../img/doctors/decor.svg') 0 0/100% 100% no-repeat;
  background-size: cover;
}

@media (max-width: 1500px) {
  .doctors__container::before {
    width: 200px;
    height: 200px;
    top: -20%;
    right: 0;
  }
}

@media (max-width: 992px) {
  .doctors__container::before {
    top: -30%;
    right: 2%;
  }
}

.doctors__pc-content {
  max-width: 650px;
  width: 100%;
}

@media (max-width: 1180px) {
  .doctors__pc-content {
    max-width: 450px;
  }
}

.doctors__pc-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
}

@media (max-width: 992px) {
  .doctors__pc-row {
    display: none;
  }
}

.doctors__scroll-block {
  height: 600px;
  width: 460px;
  overflow-y: scroll;
  overflow-x: hidden;
  direction: rtl;
}

.doctors__scroll-block::-webkit-scrollbar {
  width: 5px;
}

.doctors__scroll-block::-webkit-scrollbar-thumb {
  background-color: #3aac55;
  border-radius: 100px;
}

.doctors__scroll-block::-webkit-scrollbar-track {
  background-color: #000;
  border: 4px solid #000;
  border-radius: 100px;
}

@media (min-width: 993px) {
  .doctors__item {
    display: none;
  }
}

.doctors__item_active {
  display: block;
}

@media (min-width: 993px) {
  .doctors__mobile-slider {
    display: none;
  }
}

.doctors__mobile-slider:not(:last-child) {
  margin-bottom: 30px;
}

.doctors__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 993px) {
  .doctors__button-wrap {
    display: none;
  }
}

.doctors__buttons {
  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;
  -webkit-column-gap: 40px;
  column-gap: 40px;
}

.doctors__buttons:not(:last-child) {
  margin-bottom: 30px;
}

@media (min-width: 993px) {
  .doctors__buttons {
    display: none;
  }
}

.doctors__button_prev {
  background: transparent;
}

.doctors__button_next {
  background: transparent;
}

.scroll-block-doctors__tabs {
  width: 450px;
}

.scroll-block-doctors__tab-btn {
  margin-right: 2px;
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 100px;
  max-width: 420px;
  width: 100%;
  padding: 5px 8px;
  -webkit-filter: opacity(0.5);
  filter: opacity(0.5);
}

.scroll-block-doctors__tab-btn:not(:last-child) {
  margin-bottom: 30px;
}

.scroll-block-doctors__tab-btn_active {
  background-color: #fff;
  pointer-events: none;
  -webkit-filter: opacity(1);
  filter: opacity(1);
}

.scroll-block-doctors__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 15px;
}

.scroll-block-doctors__avatar {
  flex-shrink: 0;
  width: 66px;
  border: 1px solid #000;
  border-radius: 100%;
}

.scroll-block-doctors__avatar img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.scroll-block-doctors__initials {
  max-width: 300px;
  text-align: left;
}

.scroll-block-doctors__name {
  font-weight: 700;
  font-size: 18px;
}

.scroll-block-doctors__name:not(:last-child) {
  margin-bottom: 5px;
}

.scroll-block-doctors__descr {
  font-size: 14px;
}

.item-doctors {
  border: 2px solid #000;
  border-radius: 10px;
  padding: 40px;
}

@media (max-width: 992px) {
  .item-doctors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .item-doctors {
    padding: 20px;
  }
}

.item-doctors__img {
  position: relative;
  border-radius: 100%;
  max-width: 266px;
}

.item-doctors__img img {
  border-radius: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.item-doctors__img:not(:last-child) {
  margin-bottom: 30px;
}

.item-doctors__img::before {
  content: '';
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 6px;
  left: -6px;
  border: 2px solid #000;
  border-radius: 100%;
}

.item-doctors__title-name {
  font-weight: 700;
  font-size: 24px;
}

.item-doctors__title-name:not(:last-child) {
  margin-bottom: 10px;
}

.item-doctors__descr:not(:last-child) {
  margin-bottom: 30px;
}

.services {
  padding: 50px 0px;
}

@media (max-width: 992px) {
  .services {
    padding: 50px 0px 25px 0px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 50px 0px 15px 0px;
  }
}

.services__container {
  position: relative;
}

@media (max-width: 992px) {
  .services__container::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    width: 77px;
    height: 64px;
    top: -10%;
    left: 2%;
    background: url('../img/services/decor.svg') 0 0/100% 100% no-repeat;
    background-size: cover;
  }
}

.services__swiper:not(:last-child) {
  margin-bottom: 30px;
}

.services__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 50px;
  column-gap: 50px;
}

.services__button_prev {
  background: transparent;
}

.services__button_next {
  background: transparent;
}

.item-services {
  padding: 14px;
  height: 400px;
  position: relative;
  cursor: pointer;
}

.item-services__front {
  position: relative;
  border: 2px solid #000;
  border-radius: 20px;
  background-color: #ee741d;
  padding: 20px;
  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;
}

.item-services__front::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -10px;
  left: -15px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 20px;
}

.item-services__img {
  border: 1px solid #000;
  max-width: 220px;
}

.item-services__img:not(:last-child) {
  margin-bottom: 15px;
}

.item-services__img img {
  max-width: 220px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.item-services__title {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: #fff;
}

.item-services__back-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  padding: 14px;
}

.item-services__back {
  position: relative;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 20px;
  background-color: #fff;
  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;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.item-services__back::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -10px;
  left: -15px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 20px;
}

.item-services__text {
  font-weight: 700;
}

.item-services__text:not(:last-child) {
  margin-bottom: 15px;
}

.item-services__description {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  line-height: 130%;
  font-size: 16px;
  height: 150px;
  overflow-y: auto;
}

.item-services__description::-webkit-scrollbar {
  width: 5px;
}

.item-services__description::-webkit-scrollbar-thumb {
  background-color: #ee741d;
  border-radius: 100px;
}

.item-services__description::-webkit-scrollbar-track {
  background-color: #000;
  border: 4px solid #000;
  border-radius: 100px;
}

.item-services__description:not(:last-child) {
  margin-bottom: 15px;
}

.item-services__list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  height: 150px;
  overflow-y: auto;
}

.item-services__list::-webkit-scrollbar {
  width: 5px;
}

.item-services__list::-webkit-scrollbar-thumb {
  background-color: #ee741d;
  border-radius: 100px;
}

.item-services__list::-webkit-scrollbar-track {
  background-color: #000;
  border: 4px solid #000;
  border-radius: 100px;
}

.item-services__list:not(:last-child) {
  margin-bottom: 15px;
}

.item-services__list:not(:last-child) {
  margin-bottom: 30px;
}

.item-services__li-element {
  position: relative;
  font-size: 16px;
  padding-left: 10px;
}

.item-services__li-element::before {
  content: '';
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 100%;
  top: 3px;
  left: 0;
}

.item-services__li-element:not(:last-child) {
  margin-bottom: 5px;
}

.item-services__wrap-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.item-services__button {
  font-size: 18px;
  padding: 14px 36px;
}

.item-services:hover .item-services__back {
  visibility: visible;
  opacity: 1;
  pointer-events: visible;
}

/* ===================================
   Липкая кнопка контактов
   =================================== */

.hide-sticky-button {
  opacity: 0 !important;
  transform: scale(0.3) !important;
  pointer-events: none !important;
}

.sticky-contacts {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.sticky-contacts--visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-contacts__menu {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  pointer-events: none;
}

.sticky-contacts--open .sticky-contacts__menu {
  pointer-events: all;
}

.sticky-contacts__item,
.sticky-contacts__close {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scale(0.3) translateY(20px);
}

/* Анимация появления кнопок по очереди */
.sticky-contacts--open .sticky-contacts__item:nth-child(1),
.sticky-contacts--open .sticky-contacts__close {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.05s;
}

.sticky-contacts--open .sticky-contacts__item:nth-child(2) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.1s;
}

.sticky-contacts--open .sticky-contacts__item:nth-child(3) {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.15s;
}

.sticky-contacts__item:hover,
.sticky-contacts__close:hover {
  transform: scale(1.1) translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.sticky-contacts__item:active,
.sticky-contacts__close:active {
  transform: scale(0.95) translateY(0);
}

.sticky-contacts__item--email {
  background: #3aac55;
}

.sticky-contacts__item--telegram {
  background: #2481cc;
}

.sticky-contacts__item--tel {
  background: #ffd739;
}

.sticky-contacts__close {
  background: #868e96;
  border: none;
  cursor: pointer;
}

.sticky-contacts__toggle {
  width: 50px;
  height: 50px;
  border-radius: 99999px;
  background: #ee741d;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(88, 48, 10, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
  position: relative;
  opacity: 1;
}

.sticky-contacts__toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(88, 48, 10, 0.5);
}

.sticky-contacts__toggle:active {
  transform: scale(0.95);
}

/* Адаптивность */
@media (max-width: 768px) {
  .sticky-contacts {
    bottom: 20px;
    right: 20px;
  }

  .sticky-contacts__toggle svg {
    width: 24px;
    height: 24px;
  }

  .sticky-contacts__item svg,
  .sticky-contacts__close svg {
    width: 24px;
    height: 24px;
  }

  .sticky-contacts__menu {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .sticky-contacts {
    bottom: 15px;
    right: 15px;
  }

  .sticky-contacts__menu {
    gap: 10px;
  }
}