@charset "UTF-8";

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

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

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

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #212121;
  font-size: 16px;
  font-family: gotham;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

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

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

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

.container {
  max-width: 1272px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
  width: 100%;
}

.content {
  padding: 130px 0;
}

.title {
  color: #212121;
  font-size: 40px;
  line-height: 112%;
  margin-bottom: 50px;
}

.title span {
  color: #577050;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.request-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(33, 33, 33, 0.45);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.request-popup.active {
  display: flex;
}

.request-popup__block {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 50px 40px 40px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.request-popup__block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/logo.png") center/280px auto no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.request-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.2s ease;
}

.request-popup__close:hover {
  opacity: 1;
}

.request-popup__title {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 112%;
  text-align: center;
  color: #212121;
}

.request-popup__text {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0 auto 30px;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: rgba(33, 33, 33, 0.8);
}

.request-popup__form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.request-popup__field {
  display: block;
  width: 100%;
}

.request-popup__input,
.request-popup__textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(33, 33, 33, 0.12);
  border-radius: 10px;
  background: #ffffff;
  font-size: 14px;
  color: #212121;
  transition: 0.2s ease;
}

.request-popup__input::-moz-placeholder, .request-popup__textarea::-moz-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.request-popup__input:-ms-input-placeholder, .request-popup__textarea:-ms-input-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.request-popup__input::placeholder,
.request-popup__textarea::placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.request-popup__input:focus,
.request-popup__textarea:focus {
  border-color: #577050;
}

.request-popup__textarea {
  min-height: 120px;
  resize: vertical;
}

.request-popup__btn {
  width: 100%;
  margin-top: 8px;
  padding: 18px;
  font-size: 16px;
}

body.popup-open {
  overflow: hidden;
}

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #577050;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #577050;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: url("../img/header-bg.png") center bottom/100% auto no-repeat, #ffffff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
}

.header__logo {
  flex-shrink: 0;
  width: 180px;
  height: 32px;
  display: flex;
}

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

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header__nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #212121;
  transition: 0.2s ease;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #577050;
  transition: 0.2s ease;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: #577050;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__lang {
  position: relative;
  flex-shrink: 0;
}

.header__lang:hover .header__lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #577050;
}

.header__lang-current img {
  width: 10px;
  height: auto;
  transition: 0.2s ease;
}

.header__lang:hover .header__lang-current img {
  transform: rotate(180deg);
}

.header__lang-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 80px;
  padding: 8px 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.2s ease;
  z-index: 10;
}

.header__lang-link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  transition: 0.2s ease;
}

.header__lang-link:hover {
  color: #577050;
  background: rgba(87, 112, 80, 0.06);
}

.header-space {
  height: 92px;
}

.footer {
  margin-top: auto;
  background: url("../img/medalatau-title.png") center top/100% auto no-repeat;
  padding-top: 60px;
  border-top: 1px solid #DDD;
}

.footer__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.4fr 1fr 1.3fr 1fr;
  grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
  width: 140px;
  height: 30px;
}

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

.footer__text {
  font-size: 12px;
  line-height: 150%;
  color: rgba(33, 33, 33, 0.8);
  max-width: 210px;
}

.footer__title {
  font-size: 14px;
  font-weight: 700;
  color: #577050;
  margin-bottom: 20px;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__menu a {
  font-size: 14px;
  color: rgba(33, 33, 33, 0.8);
  transition: 0.2s ease-in-out;
}

.footer__menu a:hover {
  color: #577050;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer__contacts-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer__contacts-col span,
.footer__contacts-col a {
  color: #212121;
  opacity: 0.8;
  font-size: 14px;
  line-height: 115%;
}

.footer__contacts-col div {
  color: #577050;
  font-size: 14px;
  font-weight: 700;
}

.footer__contacts .footer__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #577050;
}

.footer__contacts .footer__icon img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__contacts a {
  transition: 0.2s ease-in-out;
}

.footer__contacts a:hover {
  color: #577050;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(33, 33, 33, 0.8);
  transition: 0.2s ease-in-out;
}

.footer__socials a:hover {
  color: #577050;
}

.footer__socials-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #577050;
}

.footer__socials-icon img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__socials img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__bottom {
  background: #E5ECE3;
  padding: 18px 0;
  border-top: 1px solid rgba(151, 151, 151, 0.3);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(33, 33, 33, 0.7);
}

.footer__bottom-inner a {
  transition: 0.2s ease-in-out;
}

.footer__bottom-inner a:hover {
  color: #577050;
}

.breadcrumbs__container {
  padding: 50px 0 80px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
  color: #64748B;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  transition: 0.2s ease-in-out;
  opacity: 0.8;
}

.breadcrumbs__list-link:hover {
  color: #577050;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #577050;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border: none;
  border-radius: 10px;
  background: #577050;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  background: #45583f;
}

.btn--outline {
  background: #ffffff;
  border: 1px solid #577050;
  color: #577050;
}

.btn--outline:hover {
  background: #577050;
  color: #ffffff;
}

.hero {
  position: relative;
  height: calc(100dvh - 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(236, 223, 213, 0) 0%, #ECDFD5 70.47%);
}

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

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 80px 0;
}

.hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 112%;
  color: #464646;
  margin-bottom: 30px;
}

.hero__title span {
  color: #577050;
}

.hero__text {
  font-size: 16px;
  line-height: 150%;
  color: rgba(33, 33, 33, 0.8);
  margin-bottom: 40px;
  max-width: 480px;
}

.trust {
  position: relative;
  overflow: hidden;
  background: url("../img/medalatau-title.png") center bottom/100% auto no-repeat;
}

.trust.about-trust {
  background: none;
}

.trust .container {
  position: relative;
  z-index: 1;
}

.trust__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 460px 1fr;
  grid-template-columns: 460px 1fr;
  gap: 50px;
  align-items: start;
}

.trust__info .title {
  margin-bottom: 40px;
}

.trust__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.trust__text p {
  font-size: 16px;
  line-height: 150%;
  color: rgba(33, 33, 33, 0.8);
}

.trust__gallery {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 150px;
  gap: 30px;
}

.trust__gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.trust__gallery img:nth-child(1) {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
  -ms-grid-row-span: 2;
  grid-row: 2 span;
}

.trust__gallery img:nth-child(2),
.trust__gallery img:nth-child(3) {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.trust__badge {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  padding: 16px;
  border-radius: 10px;
  background: #577050;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.trust__badge-num {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.trust__badge-text {
  font-size: 12px;
  line-height: 130%;
  opacity: 0.9;
}

.directions {
  background: #577050;
  padding: 28px 0;
}

.directions__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.directions__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  transition: 0.2s ease;
}

.directions__link:hover {
  opacity: 0.75;
}

.help {
  position: relative;
  overflow: hidden;
}

.help .container {
  position: relative;
  z-index: 1;
}

.help__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.help__head .title {
  margin-bottom: 0;
  max-width: 480px;
}

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

.help-card {
  display: block;
  background: #ffffff;
  overflow: hidden;
  transition: 0.25s ease;
  border-radius: 20px;
  border: 1px solid #E9E9E9;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.help-card__image {
  position: relative;
  position: relative;
}

.help-card__image::before {
  display: block;
  content: "";
}

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

.help-card__image::before {
  padding-top: 68%;
}

.help-card__icon {
  position: absolute;
  left: 20px;
  bottom: -35px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #577050;
  box-shadow: 0 4px 12px rgba(87, 112, 80, 0.35);
  border: 1px solid #ffffff;
}

.help-card__icon img {
  position: static;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.help-card__body {
  padding: 55px 20px 24px;
}

.help-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 20px;
}

.help-card__text {
  font-size: 14px;
  line-height: 145%;
  color: rgba(33, 33, 33, 0.7);
}

.contacts {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  background: url("../img/medalatau-title.png") center top/100% auto no-repeat;
}

.contacts .container {
  position: relative;
  z-index: 1;
}

.contacts__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.2fr;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contacts__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contacts__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #577050;
}

.contacts__icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.contacts__label {
  font-size: 18px;
  font-weight: 700;
  color: #212121;
}

.contacts__value {
  font-size: 14px;
  line-height: 145%;
  color: #212121;
  opacity: 0.8;
}

.contacts a.contacts__value {
  transition: 0.2s ease-in-out;
}

.contacts a.contacts__value:hover {
  color: #577050;
}

.contacts__map {
  border-radius: 10px;
  overflow: hidden;
  min-height: 420px;
  background: #EDEBE6;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.politics__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
}

.politics__title {
  margin-bottom: 30px;
  text-align: center;
}

.politics__text {
  opacity: 0.8;
  font-size: 16px;
  line-height: 156%;
  margin-bottom: 60px;
  text-align: center;
}

.politics__btn {
  text-align: center;
}

.empty__container {
  display: flex;
  justify-content: center;
  padding: 120px 0;
}

.mission {
  position: relative;
  overflow: hidden;
  background: url("../img/medalatau-title.png") center 50px/100% auto no-repeat;
}

.mission .container {
  position: relative;
  z-index: 1;
}

.mission__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.mission-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 320px;
  gap: 16px;
  padding: 70px 30px 30px 30px;
  background: #ffffff;
  transition: 0.25s ease;
  border-radius: 20px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
  background: #E5ECE3;
  border-color: #577050;
}

.mission-card:hover .mission-card__title {
  color: #577050;
}

.mission-card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 50px;
}

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

.mission-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: #212121;
  transition: 0.2s ease-in-out;
}

.mission-card__text {
  font-size: 14px;
  line-height: 145%;
  color: rgba(33, 33, 33, 0.8);
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 380px;
  padding: 50px 30px;
  border-radius: 10px;
  background: #ffffff;
  transition: 0.25s ease;
  border-radius: 20px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}

.team-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 40px;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: 0.2s ease-in-out;
}

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

.team-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 15px;
  transition: 0.2s ease-in-out;
}

.team-card__role {
  font-size: 16px;
  line-height: 130%;
  color: rgba(33, 33, 33, 0.8);
  margin-bottom: 35px;
}

.team-card__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(87, 112, 80, 0.08);
  color: #577050;
  font-size: 16px;
  font-weight: 500;
  transition: 0.25s ease;
  margin-top: auto;
}

.team-card__phone img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.25s ease;
}

.team-card:hover .team-card__phone {
  background: #577050;
  border-color: #577050;
  color: #ffffff;
}

.team-card:hover .team-card__phone img {
  filter: brightness(0) invert(1);
}

.team-card:hover .team-card__name {
  color: #577050;
}

.team-card:hover .team-card__photo {
  border-color: #577050;
}

.team {
  overflow: hidden;
  padding-top: 0;
}

.team__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.team__head .title {
  margin-bottom: 0;
}

.team__arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.team__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.team__arrow img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}

.team__arrow:hover {
  opacity: 0.8;
}

.team__slider {
  overflow: visible;
}

.team__slider .swiper-slide {
  height: auto;
  width: 288px;
}

.doctors {
  overflow: hidden;
  background: rgba(87, 112, 80, 0.1) url("../img/medalatau-title.png") center 50px/100% auto no-repeat;
}

.doctors__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.doctors__head .title {
  margin-bottom: 0;
}

.doctors__arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.doctors__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.doctors__arrow img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}

.doctors__arrow:hover {
  opacity: 0.8;
}

.doctors__slider {
  overflow: visible;
}

.doctors__slider .swiper-slide {
  height: auto;
  width: 288px;
}

.important__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.important__image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.important__image::before {
  display: block;
  content: "";
}

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

.important__image::before {
  padding-top: 100%;
}

.important__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.important__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 40px;
  border-left: 2px solid #ddd;
  transition: 0.2s ease-in-out;
}

.important__item:hover {
  border-color: #577050;
}

.important__item:hover .important__item-title {
  color: #577050;
}

.important__item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  color: #212121;
  transition: 0.2s ease-in-out;
}

.important__item-text {
  font-size: 14px;
  line-height: 150%;
  color: rgba(33, 33, 33, 0.8);
}

.patients-intro {
  position: relative;
  overflow: hidden;
  background: url("../img/medalatau-title.png") center 50%/100% auto no-repeat;
}

.patients-intro .container {
  position: relative;
  z-index: 1;
}

.patients-intro__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 480px 1fr;
  grid-template-columns: 480px 1fr;
  gap: 50px;
  align-items: start;
}

.patients-intro__info .title {
  margin-bottom: 40px;
}

.patients-intro__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.patients-intro__text p {
  font-size: 16px;
  line-height: 150%;
  color: rgba(33, 33, 33, 0.8);
}

.patients-intro__image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: auto;
}

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

.memos .title {
  margin-bottom: 20px;
}

.memos__desc {
  margin-bottom: 50px;
  font-size: 16px;
  opacity: 0.8;
}

.memos__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 50px;
  border-radius: 20px;
  background: #FFF;
  border: 1px solid rgba(87, 112, 80, 0.5);
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.05));
}

.memos__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.memos__btn {
  flex-shrink: 0;
}

.memos__box._opened .memos__btn {
  display: none;
}

.memo-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: 0.2s ease;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.memo-item--hidden {
  display: none;
}

.memos__box._opened .memo-item--hidden {
  display: flex;
}

.memo-item:hover .memo-item__title {
  color: #577050;
}

.memo-item__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

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

.memo-item__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.memo-item__title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: #212121;
  transition: 0.2s ease;
}

.memo-item__text {
  display: block;
  font-size: 14px;
  line-height: 145%;
  color: rgba(33, 33, 33, 0.8);
}

.info {
  background: rgba(87, 112, 80, 0.1) url("../img/medalatau-title.png") center 100px/100% auto no-repeat;
}

.info__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 320px;
  gap: 16px;
  padding: 70px 30px 30px;
  border-radius: 20px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
}

.info-card:hover {
  background: #E5ECE3;
  border-color: #577050;
}

.info-card:hover .info-card__title {
  color: #577050;
}

.info-card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 50px;
}

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

.info-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: #212121;
  transition: 0.2s ease;
}

.info-card__text {
  font-size: 14px;
  line-height: 145%;
  color: rgba(33, 33, 33, 0.8);
}

.service {
  background: url("../img/medalatau-title.png") center 200px/100% auto no-repeat;
}

.service__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 1fr;
  grid-template-columns: 400px 1fr;
  gap: 20px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 50px 40px 40px 40px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.service-card__title {
  font-size: 30px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 60px;
}

.service-card__title span {
  color: #577050;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.hours__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  line-height: 130%;
  color: #212121;
  padding-bottom: 20px;
  border-bottom: 1px solid #E9E9E9;
}

.hours__row span:last-child {
  font-weight: 700;
  font-size: 16px;
}

.hours__note {
  margin-top: auto;
  padding: 20px;
  border-radius: 10px;
  background: rgba(87, 112, 80, 0.08);
  font-size: 13px;
  line-height: 145%;
  color: #577050;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.steps__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.steps__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #577050;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.steps__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.steps__title {
  font-size: 16px;
  font-weight: 700;
  color: #212121;
}

.steps__text {
  font-size: 14px;
  line-height: 145%;
  color: rgba(33, 33, 33, 0.8);
}

.documents {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(280px, 45vw) minmax(0, 620px);
  grid-template-columns: minmax(280px, 45vw) minmax(0, 620px);
  justify-content: space-between;
  align-items: start;
  gap: 50px;
  padding-right: max(16px, (100vw - 1272px) / 2 + 16px);
  background: rgba(87, 112, 80, 0.1) url("../img/medalatau-title.png") right 50px/100% auto no-repeat;
}

.documents__image {
  height: 100%;
  max-height: 800px;
}

.documents__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.documents__content {
  padding: 70px 0 40px 0;
  max-width: 620px;
}

.documents__content .title {
  margin-bottom: 30px;
}

.documents__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.documents__note {
  font-size: 13px;
  line-height: 140%;
  font-weight: 500;
  color: #577050;
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
}

.doc-card:hover {
  border-color: #577050;
}

.doc-card:hover .doc-card__title {
  color: #577050;
}

.doc-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: #577050;
  transition: 0.2s ease;
}

.doc-card__text {
  font-size: 14px;
  line-height: 145%;
  color: rgba(33, 33, 33, 0.8);
}

.promo {
  background: #577050;
  padding: 28px 16px;
}

.promo__text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: #ffffff;
  text-transform: uppercase;
}

.specialists-intro {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}

.specialists-intro__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 480px 1fr;
  grid-template-columns: 480px 1fr;
  gap: 50px;
  align-items: start;
}

.specialists-intro__info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.specialists-intro__block .title {
  margin-bottom: 24px;
}

.specialists-intro__text p {
  font-size: 16px;
  line-height: 150%;
  color: rgba(33, 33, 33, 0.8);
}

.specialists-intro__image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.specialists-intro__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.directions-grid {
  background: rgba(87, 112, 80, 0.1) url("../img/medalatau-title.png") center bottom/100% auto no-repeat;
}

.profile-grid {
  background: url("../img/medalatau-title.png") center 120px/100% auto no-repeat;
}

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

.spec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 160px;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(87, 112, 80, 0.3);
  background: linear-gradient(245deg, rgba(87, 112, 80, 0.09) 10.45%, rgba(87, 112, 80, 0) 62.56%), #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
}

.spec-card:hover {
  border-color: #577050;
  box-shadow: 0 0 30px 0 rgba(87, 112, 80, 0.12);
}

.spec-card:hover .spec-card__title {
  color: #577050;
}

.spec-card__icon {
  width: 100px;
  height: 100px;
  align-self: flex-end;
  margin-bottom: 32px;
}

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

.spec-card__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  color: #212121;
  transition: 0.2s ease;
}

.contacts-page {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}

.contacts-page .container {
  position: relative;
  z-index: 1;
}

.contacts-page__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contacts-page__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts-page__image {
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
}

.contacts-page__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
}

.contact-card:hover {
  border-color: #577050;
}

.contact-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #577050;
}

.contact-card__icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 2px;
}

.contact-card__label {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: #212121;
}

.contact-card__value {
  font-size: 14px;
  line-height: 145%;
  color: rgba(33, 33, 33, 0.8);
}

.contact-card__value a {
  transition: 0.2s ease-in-out;
}

.contact-card__value a:hover {
  color: #577050;
}

.contact-form {
  padding-top: 0;
}

.contact-form__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 20px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.contact-form__image {
  min-height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.contact-form__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 40px;
}

.contact-form__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 112%;
  color: #212121;
  text-align: center;
}

.contact-form__text {
  font-size: 14px;
  line-height: 150%;
  color: rgba(33, 33, 33, 0.8);
  margin-bottom: 10px;
  text-align: center;
}

.contact-form__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__field {
  display: block;
  width: 100%;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(33, 33, 33, 0.12);
  border-radius: 10px;
  background: #ffffff;
  font-size: 14px;
  color: #212121;
  transition: 0.2s ease;
}

.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: #577050;
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__btn {
  width: 100%;
  padding: 18px;
  font-size: 16px;
}

.contact-socials {
  padding-top: 30px;
  padding-bottom: 100px;
}

.contact-socials__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
}

.contact-social:hover {
  border-color: #577050;
}

.contact-social:hover .contact-social__name {
  color: #577050;
}

.contact-social__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

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

.contact-social__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-social__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: #212121;
  transition: 0.2s ease;
}

.contact-social__value {
  font-size: 14px;
  line-height: 130%;
  color: rgba(33, 33, 33, 0.8);
}

@media (max-width: 1280px) {
  .container {
    max-width: 992px;
  }

  .content {
    padding: 75px 0;
  }

  .title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .header__inner {
    padding: 20px 0;
  }

  .header__nav-list {
    gap: 24px;
  }

  .header-space {
    height: 72px;
  }

  .hero__title {
    font-size: 32px;
  }

  .trust__gallery {
    grid-auto-rows: 100px;
    gap: 15px;
  }

  .important__item-title {
    font-size: 18px;
  }

  .service-card__title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .documents {
    -ms-grid-columns: minmax(240px, 45vw) minmax(0, 480px);
    grid-template-columns: minmax(240px, 45vw) minmax(0, 480px);
    gap: 30px;
    padding-right: max(16px, (100vw - 992px) / 2 + 16px);
  }

  .documents__content {
    padding: 40px 0;
  }

  .spec-card__title {
    font-size: 18px;
  }

  .contacts-page {
    padding-bottom: 75px;
  }

  .contact-form__title {
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }

  .footer__top {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

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

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

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

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

@media (max-width: 992.9px) {
  .container {
    max-width: none;
  }

  .documents {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
    padding-right: 0;
  }

  .documents__image {
    min-height: 320px;
  }

  .documents__content {
    max-width: none;
    padding: 75px 16px;
  }
}

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

  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: 0;
    margin-right: auto;
  }

  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 30px 16px;
    background: #ffffff;
    transform: translateX(-100%);
    transition: 0.3s ease;
    overflow-y: auto;
    z-index: 99;
  }

  .header__nav.active {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .header__lang {
    margin-left: auto;
    margin-right: 16px;
  }

  .header .burger {
    display: -ms-grid;
    display: grid;
    margin-left: 0;
    margin-right: 0;
  }

  .breadcrumbs__container {
    padding: 30px 0;
  }

  .hero__content {
    max-width: 100%;
    padding: 60px 0;
  }

  .hero__title {
    font-size: 24px;
  }

  .trust__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trust__gallery {
    grid-auto-rows: 200px;
  }

  .directions__list {
    justify-content: center;
    gap: 16px 28px;
  }

  .contacts__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .important__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .patients-intro__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .specialists-intro__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .contacts-page__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contacts-page__image {
    min-height: 360px;
  }

  .contact-form__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact-form__image {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .help__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .memos__box {
    padding: 30px 20px;
    gap: 30px;
  }

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

  .promo__text {
    font-size: 14px;
  }

  .spec-card {
    min-height: 140px;
    padding: 24px;
  }

  .spec-card__icon {
    width: 60px;
    height: 60px;
  }

  .spec-card__title {
    font-size: 16px;
    max-width: calc(100% - 56px);
  }

  .contact-form__form {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .request-popup__block {
    padding: 40px 20px 24px;
  }

  .request-popup__block::before {
    background-size: 200px auto;
  }

  .request-popup__title {
    font-size: 22px;
  }

  .footer__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 22px;
  }

  .trust__gallery {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .trust__gallery img:nth-child(1) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
    -ms-grid-row-span: 1;
    grid-row: 1 span;
  }

  .trust__gallery img:nth-child(2),
  .trust__gallery img:nth-child(3) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
    -ms-grid-row-span: 1;
    grid-row: 1 span;
  }

  .trust__badge {
    position: static;
    width: 100%;
    padding: 12px;
    transform: unset;
    height: auto;
    align-items: center;
  }

  .trust__badge-num {
    font-size: 18px;
  }

  .help__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contacts__map {
    min-height: 300px;
  }

  .contacts__map iframe {
    min-height: 300px;
  }

  .mission__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .info__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px 20px;
  }

  .documents__image {
    min-height: 240px;
  }

  .documents__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .spec-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contacts-page__image {
    min-height: 280px;
  }

  .contact-form__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact-socials__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

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