@charset "UTF-8";

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-black-100: #191919;
  --color-violet: #ddd5ff;
  --color-red: #a00b20;
  --color-green: #2cb742;
  --color-yellow: #ffae3c;
  --color-gray: #999;
  --color-border: #d9d9d9;
  --color-blue: #187aea;
  --color-blue-100: #1266c5;
  --color-gray-100: #f6f6f6;
  --color-gray-200: #dfeaee;
  --color-gray-300: #868686;
  --Gigienist-Golden: #ffb801;
  --Gigienist-Main-Blue: #2a8dff;
  --Gigienist-Main-Blue-100: #1a72d6;
  --Gigienist-White: #fff;
  --Gigienist-Black: #000;
  --Gigienist-Light-black: #333;
  --Gigienist-Light-Purple: #ddd5ff;
  --Gigienist-Dark-grey: #999;
  --Gigienist-Light-grey: #f3f4f6;
  --bg: rgba(0, 0, 0, 0.5);
  --transition-normal: all 0.3s ease 0s;
  --header-height: 119px;
}

/*Обнуление*/

* {
  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%;
  min-width: 360px;
}

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;
  cursor: pointer;
}

img {
  vertical-align: top;
}

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

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

ul {
  padding-left: 19px;
}

ol {
  padding-left: 28px;
}

/*Обнуление*/

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

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

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

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

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

body {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: normal;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  background: var(--color-white);
}

body.lock {
  overflow: hidden;
}

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

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

/* плавное изменение прозрачности  placeholder-а при фокусе */

input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

textarea::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

textarea:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

textarea:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

textarea:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

.lazy {
  opacity: 0;
  visibility: hidden;
}

.lazy.loaded {
  opacity: 1;
  visibility: visible;
}

.loading-block {
  position: relative;
}

.loading-block:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: url("../img/icon/loading.svg") center/32px 32px no-repeat;
}

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

h1,
.h1 {
  color: inherit;
  font-size: 48px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  line-height: 113%;
  letter-spacing: -0.03em;
}

h2,
.h2 {
  color: inherit;
  font-size: 48px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  line-height: 113%;
  letter-spacing: -0.03em;
}

h3,
.h3 {
  color: inherit;
  font-size: 35px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  line-height: 120%;
}

.ah-btn {
  height: 45px;
  padding: 5px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  border-radius: 100px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 18px;
  line-height: 100%;
}

.ah-btn:hover {
  background: var(--color-blue-100);
}

.ah-btn:hover svg {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.ah-btn.ah-btn-blue {
  background: var(--color-blue);
  color: var(--color-white);
}

.ah-btn.ah-btn-blue:hover {
  background: var(--color-blue-100);
}

.ah-btn.ah-btn-outline-black {
  border: 1px solid var(--color-black-100);
  background: transparent;
  color: var(--color-black-100);
}

.ah-btn.ah-btn-outline-black:hover {
  color: var(--color-white);
  background: var(--color-blue-100);
  border-color: var(--color-blue-100);
}

.ah-btn.ah-btn-small {
  height: 40px;
}

.ah-btn svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 15px;
  max-width: 100%;
  height: 15px;
  fill: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.ah-block-margin {
  margin-top: 90px;
  margin-bottom: 90px;
}

.ah-block-margin:first-child {
  margin-top: 0;
}

.ah-block-padding {
  padding-top: 78px;
  padding-bottom: 90px;
}

.ah-block-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ah-block-heading__title {
  word-wrap: break-word;
}

.ah-block-heading__heading {
  padding-top: 10px;
  color: #868686;
  text-align: right;
  font-size: 18px;
  line-height: 110%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.ah-slider-prev {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 35px;
  max-width: 100%;
  height: 35px;
  border-radius: 50%;
  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;
  background: var(--color-blue);
  color: var(--color-white);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.ah-slider-prev.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.ah-slider-prev.swiper-button-lock {
  display: none;
}

.ah-slider-prev svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.ah-slider-next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 35px;
  max-width: 100%;
  height: 35px;
  border-radius: 50%;
  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;
  background: var(--color-blue);
  color: var(--color-white);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.ah-slider-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.ah-slider-next.swiper-button-lock {
  display: none;
}

.ah-slider-next svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.ah-header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -20px;
}

.ah-header__menu-btn {
  display: none;
  padding: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  position: relative;
  z-index: 12;
}

.ah-header__left {
  padding: 0 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  position: relative;
  z-index: 12;
}

.ah-header__right {
  padding: 0 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.ah-header__top {
  padding: 16px 0;
}

.ah-header__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -20px;
}

.ah-header__top-left {
  padding: 0 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.ah-header__top-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  position: relative;
  z-index: 12;
}

.ah-header__top-link {
  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;
  text-align: center;
  height: 40px;
  padding: 5px 20px;
  color: var(--color-black-100);
  text-align: center;
  font-size: 18px;
  line-height: 135%;
  border-radius: 100px;
  margin: -1px;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.ah-header__top-link:hover {
  color: var(--color-blue-100);
}

.ah-header__top-link.active {
  position: relative;
  background: var(--color-gray-200);
  cursor: default;
  color: var(--color-black-100);
}

.ah-header__top-right {
  padding: 0 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.ah-header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  position: relative;
  z-index: 12;
}

.ah-header__action {
  color: var(--color-black-100);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.ah-header__action-search {
  display: none;
}

.ah-header__action-icon {
  color: inherit;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  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;
}

.ah-header__action-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.ah-header__action-text {
  color: inherit;
  font-size: 18px;
  line-height: 135%;
}

.ah-header__bottom {
  padding-top: 11px;
  border-top: 1px solid var(--color-border);
  padding-bottom: 11px;
}

.ah-header__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -20px;
}

.ah-header__bottom-left {
  padding: 0 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.ah-header__bottom-right {
  padding: 0 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.ah-header__nav {
  padding: 0 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  display: none;
}

.ah-logo {
  display: inline-block;
  max-width: 119px;
}

.ah-logo img {
  max-width: 100%;
}

.icon-menu {
  cursor: pointer;
  position: relative;
  width: 47px;
  height: 47px;
  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;
}

.icon-menu.open .icon-menu__body span {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.icon-menu.open .icon-menu__body span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 6px;
}

.icon-menu.open .icon-menu__body span:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 6px;
  width: 100%;
}

.icon-menu__body {
  width: 22px;
  height: 14px;
  position: relative;
}

.icon-menu__body span {
  position: absolute;
  top: 6px;
  width: 100%;
  height: 2px;
  left: 0;
  background: var(--color-black-100);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.icon-menu__body span:first-child {
  top: 0;
}

.icon-menu__body span:last-child {
  top: auto;
  bottom: 0;
  width: 66.666%;
}

.menu__list {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 15px;
  overflow: hidden;
  height: 21px;
}

.menu__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.menu__link {
  color: var(--color-black-100);
  font-size: 18px;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  display: inline-block;
  position: relative;
}

.menu__link:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-blue-100);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.menu__btn {
  display: none;
  margin-top: 25px;
}

.ah-search-block__top {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  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;
  color: var(--color-black-100);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ah-search-block__top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.ah-search-block__body {
  display: none;
}

.ah-footer {
  background: #333;
}

.ah-footer-top {
  padding: 83px 0 20px;
}

.ah-footer-top__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -25px -10px;
}

.ah-footer-top__left {
  padding: 25px 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.ah-footer-top__title {
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 120%;
}

.ah-footer-top__right {
  padding: 25px 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.ah-footer-top__form {
  padding-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.ah-footer-top__form input {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: 18px;
  line-height: 100%;
  padding-bottom: 14px;
}

.ah-footer-top__form input::-webkit-input-placeholder {
  color: var(--color-gray);
}

.ah-footer-top__form input::-moz-placeholder {
  color: var(--color-gray);
}

.ah-footer-top__form input:-moz-placeholder {
  color: var(--color-gray);
}

.ah-footer-top__form input:-ms-input-placeholder {
  color: var(--color-gray);
}

.ah-footer-top__form input:focus::-webkit-input-placeholder {
  color: var(--color-gray);
}

.ah-footer-top__form input:focus::-moz-placeholder {
  color: var(--color-gray);
}

.ah-footer-top__form input:focus:-moz-placeholder {
  color: var(--color-gray);
}

.ah-footer-top__form input:focus:-ms-input-placeholder {
  color: var(--color-gray);
}

.ah-footer-top__form button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc((100% - 20px) / 3);
  max-width: 100%;
}

.ah-footer-bottom {
  padding-top: 22px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.ah-footer-bottom__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -8px -10px;
}

.ah-footer-bottom__col {
  padding: 8px 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.ah-footer-bottom__text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 100%;
}

.ah-footer-bottom__text a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.ah-footer-center {
  padding-top: 90px;
  padding-bottom: 90px;
}

.ah-footer-center__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}

.ah-footer-center__left {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.ah-footer-center__box {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 49px;
}

.ah-footer-center__logo {
  max-width: 173px;
}

.ah-footer-center__logo img {
  max-width: 100%;
}

.ah-footer-center__copy {
  color: var(--color-white);
  font-size: 18px;
  line-height: 100%;
  max-width: 254px;
}

.ah-footer-center__right {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
  max-width: 100%;
}

.ah-footer-center__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 90px;
  margin: 0 -10px;
}

.ah-footer-center__col-mob {
  display: none;
  padding: 0 10px;
}

.ah-footer-center__logo-mob {
  max-width: 115px;
}

.ah-footer-center__logo-mob img {
  max-width: 100%;
}

.ah-footer-center__col {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.ah-footer-center__heading {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 25px;
}

.ah-footer-center__wrap {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.ah-footer-center__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.ah-footer-center__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc((100% - 40px) / 3);
  max-width: 100%;
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.ah-footer-center__item-icon {
  color: var(--color-white);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 21px;
  max-width: 100%;
  height: 21px;
  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;
  margin-top: 7px;
}

.ah-footer-center__item-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.ah-footer-center__item-text {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  word-wrap: break-word;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.ah-footer-menu {
  padding: 0;
  list-style: none;
}

.ah-footer-menu li {
  line-height: 1;
}

.ah-footer-menu li:not(:last-child) {
  margin-bottom: 12px;
}

.ah-footer-menu li a {
  color: var(--color-white);
  font-size: 18px;
  line-height: 100%;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  display: inline-block;
}

.ah-botom-block {
  background: var(--color-violet);
  padding-top: 78px;
  padding-bottom: 90px;
}

.ah-botom-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 35px;
  margin: 0 -10px;
}

.ah-botom-block__left {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.ah-botom-block__body {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  padding-right: 50px;
  row-gap: 25px;
}

.ah-botom-block__text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  max-width: 406px;
}

.ah-botom-block__btn {
  margin-top: auto;
}

.ah-botom-block__right {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.ah-botom-block__img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding-bottom: 55.671641791%;
}

.ah-botom-block__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.ah-faq-block__top:not(:last-child) {
  margin-bottom: 40px;
}

.ah-block-spoiler__item {
  border-radius: 15px;
  background: var(--color-gray-200);
}

.ah-block-spoiler__item:not(:last-child) {
  margin-bottom: 10px;
}

.ah-block-spoiler__item.active .ah-block-spoiler__title {
  padding-bottom: 15px;
}

.ah-block-spoiler__item.active .ah-block-spoiler__icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
      -ms-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}

.ah-block-spoiler__item.active .ah-block-spoiler__body {
  display: block;
}

.ah-block-spoiler__title {
  padding: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ah-block-spoiler__heading {
  color: var(--color-black-100);
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
}

.ah-block-spoiler__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 35px;
  max-width: 100%;
  height: 35px;
  border-radius: 50%;
  position: relative;
  background: var(--color-blue);
}

.ah-block-spoiler__icon:before {
  content: "";
  display: block;
  width: 45%;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.ah-block-spoiler__icon:after {
  content: "";
  display: block;
  width: 1px;
  height: 45%;
  background: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.ah-block-spoiler__body {
  display: none;
  padding: 0 34px 34px;
}

.ah-block-spoiler__text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  max-width: 946px;
}

.ah-partners-block__top:not(:last-child) {
  margin-bottom: 40px;
}

.ah-partners-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.ah-partners-block__col {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.ah-partners-block__item {
  border-radius: 15px;
  background: var(--color-gray-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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  padding: 35px;
}

.ah-partners-block__item-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  background: var(--color-yellow);
  padding: 8px 15px;
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-bottom: 20px;
}

.ah-partners-block__item-title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
}

.ah-partners-block__item-text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 12px;
}

.ah-partners-block__item-img {
  padding-top: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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;
  text-align: center;
  width: 100%;
}

.ah-partners-block__item-img img {
  max-width: 100%;
  max-height: 100%;
}

.ah-partners-block__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
  padding: 10px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ah-reviews-block {
  background: var(--color-gray-100);
}

.ah-reviews-block__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ah-reviews-block__top:not(:last-child) {
  margin-bottom: 40px;
}

.ah-reviews-block__heading {
  padding-top: 10px;
  color: #868686;
  text-align: right;
  font-size: 18px;
  line-height: 110%;
}

.ah-reviews-block__nav {
  display: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.ah-reviews-block__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 35px;
}

.ah-reviews-block__link {
  color: var(--color-blue);
  font-family: Raleway;
  font-size: 18px;
  line-height: 110%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.ah-reviews-block__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.ah-reviews-slider {
  position: relative;
  overflow: hidden;
}

.ah-reviews-slider__slide {
  height: auto;
}

.ah-review-item {
  border-radius: 15px;
  background: var(--color-white);
  padding: 35px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  padding-left: 208px;
}

.ah-review-item__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 153px;
  max-width: 100%;
  height: 153px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  position: absolute;
  top: 35px;
  left: 35px;
  z-index: 1;
}

.ah-review-item__photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.ah-review-item__post {
  color: var(--color-gray-300);
  font-size: 18px;
  line-height: 110%;
  margin-bottom: 12px;
}

.ah-review-item__name {
  color: var(--color-black-100);
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 20px;
}

.ah-review-item__grade {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-yellow);
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
}

.ah-review-item__grade svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 15px;
  max-width: 100%;
  height: 15px;
  fill: currentColor;
}

.ah-review-item__text {
  margin-top: 15px;
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  line-clamp: 7;
  -webkit-line-clamp: 7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.ah-review-item__text:not(:last-child) {
  margin-bottom: 40px;
}

.ah-review-item__link {
  margin-top: auto;
  color: var(--color-blue);
  font-size: 18px;
  line-height: 110%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.ah-partner-clinics__top:not(:last-child) {
  margin-bottom: 40px;
}

.ah-partner-clinics__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.ah-partner-clinics__col {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.ah-partner-clinics__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.ah-partner-clinics__item-top {
  border-radius: 15px;
  background: var(--color-gray-100) url("../img/new/partner-clinics-bg.svg") bottom right no-repeat;
  padding: 30px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.ah-partner-clinics__item-head {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.ah-partner-clinics__item-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  background: var(--color-yellow);
  padding: 5px 15px;
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  min-height: 35px;
}

.ah-partner-clinics__item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 35px;
  max-width: 100%;
  height: 35px;
  border-radius: 50%;
  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;
  color: var(--color-white);
  background: var(--color-blue);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.ah-partner-clinics__item-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  will-change: transform;
}

.ah-partner-clinics__item-title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
}

.ah-partner-clinics__item-text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 12px;
}

.ah-partner-clinics__item-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  margin-top: auto;
  padding-top: 42px;
}

.ah-partner-clinics__item-location-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 17px;
  max-width: 100%;
  height: 17px;
  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;
  color: var(--color-blue);
}

.ah-partner-clinics__item-location-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.ah-partner-clinics__item-location-text {
  color: var(--color-blue);
  font-size: 18px;
  line-height: 110%;
}

.ah-partner-clinics__item-img {
  margin-top: -27px;
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding-bottom: 65.2272727273%;
}

.ah-partner-clinics__item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.ah-partner-clinics__bottom {
  margin-top: 40px;
  border-radius: 15px;
  background: var(--color-violet);
  padding: 40px 35px 46px;
}

.ah-partner-clinics__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.ah-partner-clinics__bottom-title {
  color: var(--color-black-100);
  font-family: "Open Sans", sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 120%;
}

.ah-partner-clinics__bottom-text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 20px;
  max-width: 474px;
}

.ah-partner-clinics__bottom-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding-bottom: 4px;
}

.ah-stages-block__head {
  position: relative;
  z-index: 2;
}

.ah-stages-block__top:not(:last-child) {
  margin-bottom: 40px;
}

.ah-stages-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.ah-stages-block__col {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
  max-width: 100%;
}

.ah-stages-block__item {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  border-radius: 15px;
  background: var(--color-violet);
  padding: 25px 25px 22px;
  min-height: 256px;
}

.ah-stages-block__item-step {
  color: var(--color-black-100);
  text-align: center;
  font-size: 18px;
  line-height: 110%;
  height: 30px;
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--color-white);
  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;
  margin-bottom: 20px;
}

.ah-stages-block__item-title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  margin-top: auto;
}

.ah-stages-block__item-text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 12px;
}

.ah-stages-block__bottom {
  margin-top: -86px;
}

.ah-stages-block__img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 35.5729166667%;
}

.ah-stages-block__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.ah-professional-hygiene {
  padding-top: 78px;
  padding-bottom: 86px;
  background: var(--color-gray-200);
}

.ah-professional-hygiene__top:not(:last-child) {
  margin-bottom: 30px;
}

.ah-professional-hygiene__top .ah-block-heading__title {
  max-width: 691px;
}

.ah-professional-hygiene__subtitle {
  max-width: 771px;
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
}

.ah-professional-hygiene__subtitle:not(:last-child) {
  margin-bottom: 40px;
}

.ah-professional-hygiene__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -17.5px -10px;
}

.ah-professional-hygiene__col {
  padding: 17.5px 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.ah-professional-hygiene__item-number {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 20px;
  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;
  text-align: center;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}

.ah-professional-hygiene__item-title {
  color: var(--color-black-100);
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
}

.ah-professional-hygiene__item-text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 15px;
}

.ah-company-specialists {
  background: var(--color-gray-100);
}

.ah-company-specialists__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
  row-gap: 30px;
}

.ah-company-specialists__left {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.ah-company-specialists__body {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
}

.ah-company-specialists__heading {
  color: var(--color-gray-300);
  font-size: 18px;
  line-height: 110%;
  margin-bottom: 25px;
}

.ah-company-specialists__text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 30px;
}

.ah-company-specialists__btn {
  margin-top: auto;
  padding-top: 30px;
}

.ah-company-specialists__right {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.ah-company-specialists__image {
  position: relative;
  height: 100%;
}

.ah-company-specialists__img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding-bottom: 81.4925373134%;
  max-height: 550px;
}

.ah-company-specialists__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.ah-company-specialists__label {
  width: 165px;
  position: absolute;
  bottom: 45px;
  left: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

.ah-company-specialists__label img {
  max-width: 100%;
}

.ah-company-specialists__btn-mob {
  display: none;
  margin-top: 25px;
}

.ah-how-choose__top .ah-block-heading__title {
  max-width: 649px;
}

.ah-how-choose__top:not(:last-child) {
  margin-bottom: 30px;
}

.ah-how-choose__subtitle {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  max-width: 610px;
}

.ah-how-choose__subtitle:not(:last-child) {
  margin-bottom: 40px;
}

.ah-how-choose__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.ah-how-choose__col {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.ah-how-choose__item {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  border-radius: 15px;
  background: var(--color-gray-100);
  padding: 26px 29px;
  min-height: 287px;
}

.ah-how-choose__item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  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;
  margin-bottom: 35px;
  padding: 5px;
}

.ah-how-choose__item-icon img {
  max-width: 100%;
  max-height: 100%;
}

.ah-how-choose__item-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ah-how-choose__item-title {
  margin-top: auto;
  color: var(--color-black-100);
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
}

.ah-how-choose__item-text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 15px;
  max-width: 350px;
}

.ah-how-choose__button {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
  margin-left: auto;
}

.ah-how-choose__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ah-oral-hygiene__top:not(:last-child) {
  margin-bottom: 30px;
}

.ah-oral-hygiene__subtitle {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  max-width: 805px;
}

.ah-oral-hygiene__body {
  margin-top: 55px;
  margin-bottom: 219px;
  max-width: 591px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.ah-oral-hygiene__img {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 3;
}

.ah-oral-hygiene__img img {
  max-width: 100%;
}

.ah-oral-hygiene__item {
  border-radius: 15px;
  background: var(--color-violet);
  padding: 27px 19px 26px 29px;
  position: absolute;
  z-index: 1;
  width: 100%;
}

.ah-oral-hygiene__item:nth-child(1) {
  max-width: 345px;
  top: 5px;
  right: calc(100% - 79px);
}

.ah-oral-hygiene__item:nth-child(2) {
  max-width: 345px;
  top: 5px;
  left: calc(100% - 59px);
}

.ah-oral-hygiene__item:nth-child(3) {
  max-width: 345px;
  bottom: 20px;
  left: calc(100% - 53px);
}

.ah-oral-hygiene__item:nth-child(4) {
  max-width: 345px;
  left: 50px;
  top: calc(100% - 12px);
}

.ah-oral-hygiene__item:nth-child(5) {
  max-width: 359px;
  top: 304px;
  right: calc(100% - 22px);
}

.ah-oral-hygiene__item-title {
  color: var(--color-black-100);
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

.ah-oral-hygiene__item-text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 15px;
}

.ah-oral-hygiene__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.ah-oral-hygiene__bottom-left {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.ah-oral-hygiene__bottom-text {
  color: var(--color-black-100);
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
  max-width: 691px;
}

.ah-oral-hygiene__bottom-right {
  padding-bottom: 4px;
}

.ah-oral-hygiene__bottom-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.ah-catalog-specialists__top .ah-block-heading__title {
  max-width: 1000px;
}

.ah-catalog-specialists__top:not(:last-child) {
  margin-bottom: 30px;
}

.ah-catalog-specialists__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 40px;
}

.ah-catalog-specialists__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.ah-catalog-specialists__text {
  max-width: 864px;
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
}

.ah-catalog-specialists__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.ah-catalog-specialists__center {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.ah-catalog-specialists__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.ah-catalog-specialists__item {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.ah-catalog-specialists__buttons {
  margin-top: 40px;
  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: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.ah-specialist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.ah-specialist-item__top {
  background: #efefef;
  position: relative;
}

.ah-specialist-item__img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}

.ah-specialist-item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
 /* -o-object-position: bottom;
     object-position: bottom;*/
}

.ah-specialist-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  border-radius: 15px 15px 0 0;
  background: var(--color-yellow);
  height: 35px;
  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;
  text-align: center;
  padding: 3px 10px;
  color: var(--color-black-100);
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
}

.ah-specialist-item__body {
  padding: 26px 24px;
  border-radius: 0 0 15px 15px;
  background: #f9f9f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border: 1px solid transparent;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.ah-specialist-item__name {
  color: var(--color-black-100);
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
  word-wrap: break-word;
}

.ah-specialist-item__post {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 10px;
}

.ah-specialist-item__location {
  margin-top: auto;
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  color: var(--color-blue);
  font-size: 18px;
  line-height: 110%;
}

.ah-specialist-item__location svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 17px;
  max-width: 100%;
  height: 17px;
  fill: currentColor;
}

.ah-offer-patients {
  background: #dfeaee;
}

.ah-offer-patients__body {
  position: relative;
}

.ah-offer-patients__box {
  position: relative;
  z-index: 3;
  padding-top: 64px;
  padding-bottom: 64px;
  min-height: 556px;
  max-width: 735px;
}

.ah-offer-patients__text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 18px;
  max-width: 462px;
}

.ah-offer-patients__btn {
  margin-top: 25px;
}

.ah-offer-patients__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  height: 100%;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ah-offer-patients__bg img {
  max-width: 100%;
  max-height: 100%;
}

.ah-offer-patients__img {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  pointer-events: none;
  height: 100%;
  z-index: 2;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ah-offer-patients__img img {
  max-width: 100%;
  max-height: 100%;
  position: relative;
}

.ah-offer-patients__img img.loaded {
  right: -10%;
}

.ah-accreditation-block {
  background: var(--color-gray-100);
}

.ah-accreditation-block__top .ah-block-heading__title {
  max-width: 1000px;
}

.ah-accreditation-block__top:not(:last-child) {
  margin-bottom: 30px;
}

.ah-accreditation-block__subtitle {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  max-width: 579px;
}

.ah-accreditation-block__subtitle:not(:last-child) {
  margin-bottom: 40px;
}

.ah-accreditation-block__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;
  margin: -10px;
}

.ah-accreditation-block__col {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.ah-accreditation-block__item {
  border-radius: 15px;
  background: var(--color-white);
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  padding: 26px 29px 29px;
  position: relative;
  overflow: hidden;
}

.ah-accreditation-block__item-bg {
  position: absolute;
  bottom: -30px;
  right: -139px;
  pointer-events: none;
  width: 292px;
}

.ah-accreditation-block__item-bg img {
  max-width: 100%;
}

.ah-accreditation-block__item-title {
  color: var(--color-black-100);
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
  position: relative;
  z-index: 2;
}

.ah-accreditation-block__item-text {
  margin-bottom: 40px;
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}

.ah-accreditation-block__item-link {
  color: var(--color-blue);
  font-size: 18px;
  line-height: 110%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.ah-accreditation-block__item-link svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 12px;
  max-width: 100%;
  height: 12px;
  fill: currentColor;
  opacity: 0;
}

.ah-accreditation-block__button {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.ah-accreditation-block__btn {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ah-membership-block {
  background: var(--color-gray-200);
}

.ah-membership-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 40px;
  margin: 0 -10px;
}

.ah-membership-block__left {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.ah-membership-block__heading {
  color: var(--color-gray-300);
  font-size: 18px;
  line-height: 110%;
  margin-bottom: 25px;
}

.ah-membership-block__title {
  max-width: 610px;
}

.ah-membership-block__title:not(:last-child) {
  margin-bottom: 40px;
}

.ah-membership-block__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
  row-gap: 40px;
}

.ah-membership-block__box {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.ah-membership-block__item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  padding: 3px;
  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;
  margin-bottom: 15px;
}

.ah-membership-block__item-icon img,
.ah-membership-block__item-icon svg {
  max-width: 100%;
  max-height: 100%;
}

.ah-membership-block__item-title {
  color: var(--color-black-100);
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
}

.ah-membership-block__item-text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 12px;
}

.ah-membership-block__btn {
  margin-top: 35px;
}

.ah-membership-block__right {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.ah-membership-block__img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 800px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding-bottom: 107.3134328358%;
}

.ah-membership-block__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.ah-membership-block__btn-mob {
  display: none;
  margin-top: 25px;
}

.ah-education-block__top:not(:last-child) {
  margin-bottom: 40px;
}

.ah-education-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.ah-education-block__col {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
  max-width: 100%;
}

.ah-education-block__item {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  border-radius: 15px;
  background: var(--color-violet);
  padding: 25px 20px 21px 25px;
  min-height: 265px;
}

.ah-education-block__item-step {
  margin-bottom: 20px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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;
  border-radius: 100px;
  background: var(--color-white);
  padding: 3px 10px;
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
}

.ah-education-block__item-title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  margin-top: auto;
  width: 100%;
  word-wrap: break-word;
}

.ah-education-block__item-text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 12px;
}

.ah-education-block__buttons {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  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: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin-top: 25px;
}

.ah-society-block__top:not(:last-child) {
  margin-bottom: 30px;
}

.ah-society-block__top .ah-block-heading__title {
  max-width: 1000px;
}

.ah-society-block__text {
  max-width: 587px;
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
}

.ah-society-block__text:not(:last-child) {
  margin-bottom: 40px;
}

.ah-society-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.ah-society-block__col {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.ah-society-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 15px;
  background: var(--color-violet);
  row-gap: 8px;
  min-height: 146px;
  padding: 18px 27px 26px;
}

.ah-society-block__item-number {
  color: var(--color-black-100);
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 113%;
  letter-spacing: -0.03em;
}

.ah-society-block__item-text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
}

.ah-events-block__top:not(:last-child) {
  margin-bottom: 40px;
}

.ah-events-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.ah-events-block__col {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.ah-events-block__item {
  display: block;
}

.ah-events-block__item-img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding-bottom: 142.4615384615%;
  margin-bottom: 15px;
}

.ah-events-block__item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.ah-events-block__item-title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
}

.ah-events-block__item-date {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 12px;
}

.ah-events-block__btn {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ah-membership {
  background: var(--color-gray-100);
}

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

.ah-membership__subtitle {
  max-width: 706px;
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
}

.ah-membership__subtitle:not(:last-child) {
  margin-bottom: 40px;
}

.ah-membership__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.ah-membership__col {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.ah-membership__col:nth-child(even) .ah-membership__item {
  background: var(--color-gray-200);
}

.ah-membership__col:nth-child(2) .ah-membership__item-bg {
  bottom: -19px;
  right: -15px;
}

.ah-membership__col:nth-child(4) .ah-membership__item-bg {
  bottom: -2px;
  right: 31px;
}

.ah-membership__col:nth-child(6) .ah-membership__item-bg {
  bottom: 0;
  right: 0;
}

.ah-membership__col:nth-child(6) .ah-membership__item-bg img.loaded {
  position: relative;
  right: -50px;
}

.ah-membership__item {
  padding: 26px 16px 27px 29px;
  background: var(--color-white);
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 325px;
}

.ah-membership__item-title {
  color: var(--color-black-100);
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
  width: 100%;
  word-wrap: break-word;
  position: relative;
  z-index: 2;
}

.ah-membership__item-text {
  margin-top: 15px;
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.ah-membership__item-link {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  color: var(--color-blue);
  font-size: 18px;
  line-height: 110%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  position: relative;
  z-index: 2;
}

.ah-membership__item-link svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 12px;
  max-width: 100%;
  height: 12px;
  fill: currentColor;
  position: relative;
  top: 1px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.ah-membership__item-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

.ah-membership__item-bg img {
  max-width: 100%;
}

.ah-membership__image {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.ah-membership__img {
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.ah-membership__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.ah-membership__button {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.ah-membership__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ah-offer-specialists {
  margin-top: 30px;
}

.ah-offer-specialists-slider {
  border-radius: 15px;
  background: var(--color-gray-200);
  position: relative;
  overflow: hidden;
}

.ah-offer-specialists-slider__slide {
  opacity: 0 !important;
  height: auto;
}

.ah-offer-specialists-slider__slide.swiper-slide-active {
  opacity: 1 !important;
}

.ah-offer-specialists-slider__item {
  position: relative;
  height: 100%;
}

.ah-offer-specialists-slider__body {
  min-height: 530px;
  padding: 50px 90px;
  padding-right: 37%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 2;
  height: 100%;
}

.ah-offer-specialists-slider__labels {
  margin-bottom: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}

.ah-offer-specialists-slider__label {
  height: 40px;
  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;
  text-align: center;
  padding: 5px 15px;
  border-radius: 100px;
  background: var(--color-white);
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 135%;
}

.ah-offer-specialists-slider__title {
  word-wrap: break-word;
  width: 100%;
}

.ah-offer-specialists-slider__text {
  color: var(--color-black-100);
  font-size: 18px;
  line-height: 110%;
  margin-top: 18px;
  max-width: 595px;
  margin-bottom: 40px;
}

.ah-offer-specialists-slider__btn {
  margin-top: auto;
}

.ah-offer-specialists-slider__img {
  position: absolute;
  bottom: 0;
  right: 50px;
  pointer-events: none;
  height: 100%;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ah-offer-specialists-slider__img picture {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ah-offer-specialists-slider__img img {
  max-width: 100%;
  max-height: 100%;
}

.ah-offer-specialists-slider__prev {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 35px;
  max-width: 100%;
  height: 35px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-black-100);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  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;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  z-index: 4;
}

.ah-offer-specialists-slider__prev svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.ah-offer-specialists-slider__next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 35px;
  max-width: 100%;
  height: 35px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-black-100);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  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;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  z-index: 4;
}

.ah-offer-specialists-slider__next svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.ah-who-you {
  display: none;
}

.ah-who-you.fancybox__content {
  width: 100%;
  max-width: 670px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 42px 67px 50px;
}

.ah-who-you.fancybox__content .f-button.is-close-btn {
  top: 10px;
  right: 10px;
  color: var(--color-black-100);
}

.ah-who-you__title {
  color: var(--color-black-100);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 113%;
  letter-spacing: -0.03em;
  margin-bottom: 25px;
}

.ah-who-you__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.ah-who-you__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc((100% - 20px) / 2);
  max-width: 100%;
  padding: 27px 30px 30px;
  border-radius: 15px;
  background: var(--color-gray-200);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  color: var(--color-black-100);
}

.ah-who-you__name {
  color: inherit;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 15px;
}

.ah-who-you__img {
  width: 100%;
  max-width: 121px;
  height: 121px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.ah-who-you__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.ah-block-events__title {
  margin-bottom: 35px;
  max-width: 850px;
  font-size: 35px;
}

.ah-block-events__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.ah-block-events__col {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.ah-block-events__col:nth-child(1) .ah-block-events__item {
  background: var(--color-violet);
}

.ah-block-events__col:nth-child(1) .ah-block-events__item-icon {
  background: var(--color-white);
}

.ah-block-events__col:nth-child(3) .ah-block-events__item {
  background: var(--color-blue);
  color: var(--color-white);
}

.ah-block-events__col:nth-child(3) .ah-block-events__item-icon {
  background: var(--color-white);
}

.ah-block-events__item {
  min-height: 274px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  border-radius: 15px;
  background: #f3f4f6;
  padding: 30px 30px 27px;
  color: var(--color-black-100);
}

.ah-block-events__item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  border-radius: 50%;
  background: var(--color-violet);
  padding: 5px;
  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;
  margin-bottom: 20px;
}

.ah-block-events__item-icon img {
  max-width: 100%;
  max-height: 100%;
}

.ah-block-events__item-title {
  color: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  margin-top: auto;
}

.ah-block-events__item-text {
  color: inherit;
  font-size: 18px;
  line-height: 100%;
  margin-top: 10px;
}

.ah-title-page {
  margin-bottom: 35px;
}

.ah-bread-crumbs {
  margin-top: 55px;
  margin-bottom: 27px;
}

.ah-bread-crumbs__list > span {
  color: var(--color-gray);
  font-size: 18px;
  line-height: 100%;
  display: inline-block;
  margin: 0 3px;
}

.ah-bread-crumbs__item {
  display: inline;
  color: var(--color-gray);
  font-size: 18px;
  line-height: 100%;
}

.ah-bread-crumbs__item a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.ah-events-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.ah-events-list__col {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.ah-event-item {
  min-height: 325px;
  border-radius: 15px;
  background: #f3f4f6;
  padding: 26px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.ah-event-item__title {
  color: var(--color-black-100);
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  position: relative;
  z-index: 2;
}

.ah-event-item__text {
  color: #6e6e6e;
  font-size: 18px;
  line-height: 100%;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.ah-event-item__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  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;
  margin-left: auto;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.ah-event-item__icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.ah-event-item__bg {
  position: absolute;
  bottom: 0;
  left: 30px;
  pointer-events: none;
}

.ah-event-item__bg img {
  max-width: 100%;
  max-height: 100%;
}

@media (min-width: 991.98px) {
  .ah-how-choose__col:nth-child(even) .ah-how-choose__item {
    background: var(--color-gray-200);
  }

  .ah-membership__col:nth-child(1) {
    -webkit-box-ordinal-group: -2;
        -ms-flex-order: -3;
            order: -3;
  }

  .ah-membership__col:nth-child(2) {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }

  .ah-membership__image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media (max-width: 1419.98px) {
  .ah-footer-center__item-icon {
    margin-top: 1px;
  }

  .ah-footer-center__item-text {
    font-size: 20px;
  }

  .ah-company-specialists__label {
    left: 45px;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .ah-specialist-item__name {
    font-size: 24px;
  }
}

@media (max-width: 1300px) {
  .ah-oral-hygiene__item:nth-child(5) {
    top: 360px;
    right: calc(100% - 50px);
  }
}

@media (max-width: 1199.98px) {
  h1,
  .h1 {
    font-size: 42px;
  }

  h2,
  .h2 {
    font-size: 42px;
  }

  .ah-header__row {
    margin: 0 -12.5px;
  }

  .ah-header__left {
    padding: 0 12.5px;
  }

  .ah-header__right {
    padding: 0 12.5px;
  }

  .ah-header__top-row {
    margin: 0 -12.5px;
  }

  .ah-header__top-left {
    padding: 0 12.5px;
  }

  .ah-header__top-right {
    padding: 0 12.5px;
  }

  .ah-header__bottom-row {
    margin: 0 -12.5px;
  }

  .ah-header__bottom-left {
    padding: 0 12.5px;
  }

  .ah-header__bottom-right {
    padding: 0 12.5px;
  }

  .ah-header__nav {
    padding: 0 12.5px;
  }

  .ah-footer-center__item-icon {
    margin-top: 0;
  }

  .ah-footer-center__item-text {
    font-size: 18px;
  }

  .ah-botom-block__body {
    padding-right: 0;
  }

  .ah-partners-block__item {
    padding: 25px;
  }

  .ah-reviews-slider {
    overflow: visible;
  }

  .ah-stages-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
  }

  .ah-stages-block__bottom {
    margin-top: -110px;
  }

  .ah-company-specialists__label {
    bottom: 30px;
    left: 30px;
    width: 148px;
  }

  .ah-oral-hygiene__body {
    max-width: none;
    margin-top: 183px;
    margin-bottom: 481px;
  }

  .ah-oral-hygiene__img {
    max-width: 490px;
    margin-left: auto;
    margin-right: auto;
  }

  .ah-oral-hygiene__item:nth-child(1) {
    max-width: 309px;
    top: auto;
    bottom: calc(100% - 39px);
    right: auto;
    left: 0;
  }

  .ah-oral-hygiene__item:nth-child(2) {
    left: calc(100% - 35px);
    max-width: 337px;
    top: auto;
    bottom: calc(100% - 22px);
    right: 0;
    left: auto;
  }

  .ah-oral-hygiene__item:nth-child(3) {
    left: calc(100% - 30px);
    max-width: 337px;
    bottom: auto;
    top: calc(100% - 27px);
    left: auto;
    right: 0;
  }

  .ah-oral-hygiene__item:nth-child(4) {
    max-width: 337px;
    top: calc(100% - 27px);
    left: 0;
  }

  .ah-oral-hygiene__item:nth-child(5) {
    top: calc(100% + 159px);
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 369px;
  }

  .ah-catalog-specialists__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-offer-patients__img img.loaded {
    right: -31%;
  }

  .ah-membership-block__boxes {
    row-gap: 20px;
  }

  .ah-membership-block__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-education-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
  }

  .ah-education-block__item {
    min-height: 225px;
  }

  .ah-education-block__buttons {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
    margin-left: auto;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .ah-events-block__item-title {
    font-size: 20px;
  }

  .ah-membership__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
  }

  .ah-membership__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
  }

  .ah-membership__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
    margin-left: auto;
  }

  .ah-membership__btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .ah-offer-specialists-slider__body {
    padding: 40px 60px;
    padding-right: 37%;
    min-height: 450px;
  }

  .ah-offer-specialists-slider__labels {
    margin-bottom: 20px;
  }

  .ah-offer-specialists-slider__prev {
    left: 10px;
  }

  .ah-offer-specialists-slider__next {
    right: 10px;
  }

  .ah-block-events__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-block-events__item {
    min-height: 225px;
  }

  .ah-events-list__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 95px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ah-block-margin {
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .ah-block-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .ah-block-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 20px;
  }

  .ah-block-heading__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-block-heading__heading {
    padding-top: 0;
    text-align: left;
  }

  .ah-header {
    padding: 14px 0 18px;
  }

  .ah-header__menu-btn {
    display: block;
  }

  .ah-header__top {
    padding: 0;
  }

  .ah-header__actions {
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    margin-right: -7.5px;
  }

  .ah-header__action-search {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .ah-header__action-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 39px;
    max-width: 100%;
    height: 39px;
  }

  .ah-header__action-text {
    display: none;
  }

  .ah-header__btn .ah-btn {
    width: 100%;
  }

  .ah-header__bottom {
    padding: 0;
    border-top: none;
  }

  .ah-header__bottom-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding: 0;
  }

  .ah-header__bottom-right {
    display: none;
  }

  .ah-logo {
    max-width: 85px;
  }

  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding-top: var(--header-height);
    background: var(--color-white);
    z-index: 10;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: var(--transition-normal);
    transition: var(--transition-normal);
  }

  .menu.open {
    left: 0;
  }

  .menu.open:before {
    left: 0;
  }

  .menu:before {
    content: "";
    display: block;
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 11;
    background: var(--color-white);
    -webkit-transition: var(--transition-normal);
    transition: var(--transition-normal);
  }

  .menu__body {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
  }

  .menu__list {
    display: block;
    height: auto;
  }

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

  .menu__btn {
    display: block;
  }

  .ah-footer-top {
    padding: 60px 0 65px;
  }

  .ah-footer-top__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-footer-top__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-footer-top__form {
    padding-bottom: 0;
  }

  .ah-footer-top__form button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 210px;
    max-width: 100%;
  }

  .ah-footer-bottom {
    padding-top: 35px;
    padding-bottom: 40px;
  }

  .ah-footer-bottom__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-footer-center {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .ah-footer-center__row {
    row-gap: 54px;
  }

  .ah-footer-center__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .ah-footer-center__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .ah-footer-center__logo-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc((100% - 20px) / 2);
    max-width: 100%;
  }

  .ah-footer-center__logo {
    max-width: 135px;
  }

  .ah-footer-center__copy {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc((100% - 20px) / 2);
    max-width: 270px;
    padding-bottom: 6px;
  }

  .ah-footer-center__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-footer-center__wrapper {
    row-gap: 58px;
  }

  .ah-footer-center__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-footer-center__heading {
    margin-bottom: 27px;
  }

  .ah-footer-center__wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-footer-center__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 16px;
  }

  .ah-footer-center__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .ah-footer-center__item-icon {
    width: 17px;
    height: 17px;
    margin-top: 2px;
  }

  .ah-footer-center__item-icon svg {
    width: 17px;
    height: 17px;
  }

  .ah-footer-center__item-text {
    max-width: 225px;
  }

  .ah-botom-block {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .ah-botom-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-botom-block__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-botom-block__img {
    padding-bottom: 55.6629834254%;
  }

  .ah-faq-block__top:not(:last-child) {
    margin-bottom: 35px;
  }

  .ah-partners-block__top:not(:last-child) {
    margin-bottom: 35px;
  }

  .ah-partners-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-partners-block__item {
    padding: 35px;
  }

  .ah-partners-block__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-reviews-block__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
  }

  .ah-reviews-block__top:not(:last-child) {
    margin-bottom: 35px;
  }

  .ah-reviews-block__title {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }

  .ah-reviews-block__heading {
    padding-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: left;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .ah-reviews-block__nav {
    display: block;
  }

  .ah-reviews-block__bottom {
    margin-top: 25px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .ah-partner-clinics__top:not(:last-child) {
    margin-bottom: 35px;
  }

  .ah-partner-clinics__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-partner-clinics__col:nth-child(even) .ah-partner-clinics__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .ah-partner-clinics__col:nth-child(even) .ah-partner-clinics__item-img {
    margin-left: 0;
    margin-right: -20px;
  }

  .ah-partner-clinics__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .ah-partner-clinics__item-img {
    margin-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 299px;
    max-width: 100%;
    padding-bottom: 0;
    height: 100%;
    min-height: 313px;
    margin-left: -20px;
  }

  .ah-partner-clinics__bottom {
    margin-top: 35px;
    padding: 40px 35px 49px;
  }

  .ah-partner-clinics__bottom-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 25px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .ah-partner-clinics__bottom-right {
    padding-bottom: 0;
  }

  .ah-stages-block__top:not(:last-child) {
    margin-bottom: 35px;
  }

  .ah-stages-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-stages-block__item {
    min-height: 225px;
  }

  .ah-stages-block__img {
    padding-bottom: 63.671875%;
  }

  .ah-professional-hygiene {
    padding-top: 70px;
    padding-bottom: 66px;
  }

  .ah-professional-hygiene__top:not(:last-child) {
    margin-bottom: 25px;
  }

  .ah-professional-hygiene__subtitle:not(:last-child) {
    margin-bottom: 35px;
  }

  .ah-professional-hygiene__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-professional-hygiene__item-number {
    margin-bottom: 15px;
  }

  .ah-professional-hygiene__item-text {
    margin-top: 12px;
  }

  .ah-company-specialists__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-company-specialists__heading {
    margin-bottom: 20px;
  }

  .ah-company-specialists__title {
    max-width: 677px;
  }

  .ah-company-specialists__text {
    margin-top: 25px;
    max-width: 564px;
  }

  .ah-company-specialists__btn {
    margin-top: 25px;
    padding-top: 0;
  }

  .ah-company-specialists__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-company-specialists__img {
    max-height: 0;
    height: 0;
    padding-bottom: 55.8011049724%;
  }

  .ah-how-choose__top:not(:last-child) {
    margin-bottom: 25px;
  }

  .ah-how-choose__subtitle:not(:last-child) {
    margin-bottom: 25px;
  }

  .ah-how-choose__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-how-choose__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-oral-hygiene__top:not(:last-child) {
    margin-bottom: 25px;
  }

  .ah-oral-hygiene__img {
    max-width: 395px;
  }

  .ah-oral-hygiene__bottom-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 25px;
  }

  .ah-oral-hygiene__bottom-right {
    padding-bottom: 0;
    width: 100%;
  }

  .ah-catalog-specialists__top:not(:last-child) {
    margin-bottom: 25px;
  }

  .ah-catalog-specialists__row {
    row-gap: 35px;
  }

  .ah-catalog-specialists__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .ah-catalog-specialists__buttons {
    margin-top: 35px;
  }

  .ah-offer-patients__box {
    padding-bottom: 447px;
    min-height: auto;
    max-width: 645px;
  }

  .ah-offer-patients__btn {
    margin-top: 20px;
  }

  .ah-offer-patients__img {
    width: 734px;
    height: 476px;
    padding-top: 0;
  }

  .ah-offer-patients__img img.loaded {
    right: -11.5%;
  }

  .ah-accreditation-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-accreditation-block__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-accreditation-block__btn {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .ah-membership-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-membership-block__heading {
    margin-bottom: 20px;
  }

  .ah-membership-block__title {
    max-width: none;
  }

  .ah-membership-block__boxes {
    row-gap: 40px;
  }

  .ah-membership-block__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-membership-block__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-membership-block__img {
    height: 0;
    padding-bottom: 92.955801105%;
  }

  .ah-education-block__top:not(:last-child) {
    margin-bottom: 35px;
  }

  .ah-education-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-education-block__buttons {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-society-block__top:not(:last-child) {
    margin-bottom: 25px;
  }

  .ah-society-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-events-block__top {
    padding-right: 50px;
    position: relative;
    z-index: 2;
  }

  .ah-events-block__top:not(:last-child) {
    margin-bottom: 35px;
  }

  .ah-events-block__row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .ah-events-block__row.ah-scroll-block {
    margin: 0 -20px;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 68px;
    margin-top: -68px;
    background: url("../img/new/icon-scroll.png") top right no-repeat;
  }

  .ah-events-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 325px;
    max-width: 100%;
    padding: 0;
  }

  .ah-events-block__col:not(:last-child) {
    margin-right: 20px;
  }

  .ah-events-block__item-title {
    font-size: 22px;
  }

  .ah-events-block__btn {
    margin-top: 35px;
  }

  .ah-membership__top:not(:last-child) {
    margin-bottom: 25px;
  }

  .ah-membership__subtitle:not(:last-child) {
    margin-bottom: 35px;
  }

  .ah-membership__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .ah-membership__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-membership__img {
    padding-bottom: 55.8011049724%;
    height: 0;
  }

  .ah-membership__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .ah-membership__btn {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 15px;
  }

  .ah-offer-specialists {
    margin-top: 17px;
  }

  .ah-offer-specialists-slider__body {
    padding: 25px 25px 341px;
    min-height: auto;
  }

  .ah-offer-specialists-slider__labels {
    margin-bottom: 25px;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    row-gap: 8px;
  }

  .ah-offer-specialists-slider__label {
    font-size: 16px;
    padding: 5px 13px;
  }

  .ah-offer-specialists-slider__text {
    margin-bottom: 25px;
  }

  .ah-offer-specialists-slider__btn {
    margin-top: 0;
  }

  .ah-offer-specialists-slider__img {
    max-height: 460px;
    right: 38px;
    padding-top: 0;
  }

  .ah-offer-specialists-slider__prev {
    top: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    bottom: 25px;
    left: 25px;
  }

  .ah-offer-specialists-slider__next {
    top: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    bottom: 25px;
    right: 25px;
  }

  .ah-bread-crumbs {
    margin-top: 40px;
  }
}

@media (max-width: 991.98px) and (max-width: 767.98px) {
  .ah-events-block__col:not(:last-child) {
    margin-right: 15px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --header-height: 122px;
  }

  body {
    font-size: 15px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .fancybox-slide {
    padding: 30px 15px;
  }

  h1,
  .h1 {
    font-size: 32px;
    line-height: 107%;
    letter-spacing: normal;
  }

  h2,
  .h2 {
    font-size: 32px;
    letter-spacing: normal;
    line-height: 107%;
  }

  h3,
  .h3 {
    font-size: 28px;
    letter-spacing: normal;
    line-height: 107%;
  }

  .ah-btn {
    height: 40px;
    font-size: 15px;
  }

  .ah-block-margin {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .ah-block-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ah-block-heading {
    row-gap: 15px;
  }

  .ah-block-heading__heading {
    font-size: 15px;
  }

  .ah-slider-prev {
    width: 30px;
    height: 30px;
  }

  .ah-slider-prev svg {
    width: 16px;
    height: 16px;
  }

  .ah-slider-next {
    width: 30px;
    height: 30px;
  }

  .ah-slider-next svg {
    width: 16px;
    height: 16px;
  }

  .ah-header {
    padding: 12.5px 0 25px;
  }

  .ah-header__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px;
    row-gap: 8px;
  }

  .ah-header__left {
    padding: 0 10px;
  }

  .ah-header__right {
    padding: 0 10px;
  }

  .ah-header__top-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .ah-header__top-link {
    height: 35px;
    font-size: 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }

  .ah-header__nav {
    padding: 0 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    display: block;
  }

  .ah-logo {
    max-width: 127px;
  }

  .icon-menu {
    width: 42px;
    height: 42px;
  }

  .menu__body {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ah-footer-top {
    padding: 44px 0 35px;
  }

  .ah-footer-top__row {
    margin: -20px -10px;
  }

  .ah-footer-top__left {
    padding: 20px 10px;
  }

  .ah-footer-top__title {
    font-size: 28px;
    line-height: 107%;
  }

  .ah-footer-top__right {
    padding: 20px 10px;
  }

  .ah-footer-top__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .ah-footer-top__form input {
    font-size: 15px;
  }

  .ah-footer-top__form button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-footer-bottom {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .ah-footer-bottom__row {
    padding: -5px -10px;
  }

  .ah-footer-bottom__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 5px 10px;
  }

  .ah-footer-bottom__text {
    font-size: 15px;
  }

  .ah-footer-center {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .ah-footer-center__row {
    row-gap: 40px;
  }

  .ah-footer-center__logo-block {
    display: none;
  }

  .ah-footer-center__copy {
    font-size: 15px;
    padding-bottom: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 270px;
  }

  .ah-footer-center__wrapper {
    row-gap: 40px;
  }

  .ah-footer-center__col-mob {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .ah-footer-center__col:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .ah-footer-center__col:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .ah-footer-center__col:nth-child(4) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .ah-footer-center__heading {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .ah-footer-center__wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding-top: 10px;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .ah-footer-center__items {
    row-gap: 22px;
  }

  .ah-footer-center__item-text {
    font-size: 15px;
    padding-bottom: 0;
    border: none;
    max-width: 271px;
  }

  .ah-footer-menu li:not(:last-child) {
    margin-bottom: 10px;
  }

  .ah-footer-menu li a {
    padding-bottom: 0;
    border: none;
    font-size: 15px;
  }

  .ah-botom-block {
    padding-top: 45px;
    padding-bottom: 50px;
  }

  .ah-botom-block__row {
    row-gap: 30px;
  }

  .ah-botom-block__body {
    row-gap: 15px;
  }

  .ah-botom-block__text {
    font-size: 15px;
  }

  .ah-botom-block__btn {
    width: 100%;
    padding-top: 5px;
  }

  .ah-botom-block__btn .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-faq-block__top:not(:last-child) {
    margin-bottom: 20px;
  }

  .ah-block-spoiler__item.active .ah-block-spoiler__title {
    padding-bottom: 12px;
  }

  .ah-block-spoiler__title {
    padding: 17px 18px;
    min-height: 78px;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .ah-block-spoiler__heading {
    font-size: 20px;
  }

  .ah-block-spoiler__icon {
    width: 30px;
    height: 30px;
  }

  .ah-block-spoiler__body {
    padding: 0 18px 17px;
  }

  .ah-block-spoiler__text {
    font-size: 15px;
  }

  .ah-partners-block__top:not(:last-child) {
    margin-bottom: 20px;
  }

  .ah-partners-block__row {
    margin: -7.5px;
  }

  .ah-partners-block__col {
    padding: 7.5px;
  }

  .ah-partners-block__item {
    padding: 25px;
    min-height: 363px;
  }

  .ah-partners-block__item-label {
    margin-bottom: 16px;
    font-size: 15px;
    padding: 7px 13px;
  }

  .ah-partners-block__item-title {
    font-size: 20px;
  }

  .ah-partners-block__item-text {
    font-size: 15px;
  }

  .ah-partners-block__item-img {
    padding-top: 12px;
  }

  .ah-partners-block__button {
    padding: 7.5px;
  }

  .ah-reviews-block__top {
    row-gap: 15px;
  }

  .ah-reviews-block__top:not(:last-child) {
    margin-bottom: 20px;
  }

  .ah-reviews-block__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-reviews-block__heading {
    font-size: 15px;
  }

  .ah-reviews-block__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-reviews-block__bottom {
    margin-top: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .ah-reviews-block__link {
    font-size: 15px;
  }

  .ah-reviews-block__arrows {
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
  }

  .ah-review-item {
    padding: 25px;
  }

  .ah-review-item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 11px;
       -moz-column-gap: 11px;
            column-gap: 11px;
  }

  .ah-review-item__top:not(:last-child) {
    margin-bottom: 15px;
  }

  .ah-review-item__photo {
    position: relative;
    width: 65px;
    height: 65px;
    top: 0;
    left: 0;
  }

  .ah-review-item__post {
    -ms-flex-item-align: center;
        align-self: center;
    margin-bottom: 0;
    font-size: 15px;
  }

  .ah-review-item__name {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .ah-review-item__grade svg {
    width: 12px;
    height: 12px;
  }

  .ah-review-item__text {
    margin-top: 20px;
    font-size: 15px;
    line-clamp: 9;
    -webkit-line-clamp: 9;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  .ah-review-item__text:not(:last-child) {
    margin-bottom: 15px;
  }

  .ah-review-item__link {
    font-size: 15px;
  }

  .ah-partner-clinics__top:not(:last-child) {
    margin-bottom: 20px;
  }

  .ah-partner-clinics__row {
    margin: -7.5px;
  }

  .ah-partner-clinics__col {
    padding: 7.5px;
  }

  .ah-partner-clinics__col:nth-child(even) .ah-partner-clinics__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .ah-partner-clinics__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .ah-partner-clinics__item-top {
    border-radius: 15px 15px 0 0;
    padding: 25px 25px 23px;
    min-height: 222px;
    background-image: none;
  }

  .ah-partner-clinics__item-head {
    margin-bottom: 16px;
  }

  .ah-partner-clinics__item-label {
    font-size: 15px;
    padding: 5px 13px;
    min-height: 30px;
  }

  .ah-partner-clinics__item-icon {
    width: 30px;
    height: 30px;
  }

  .ah-partner-clinics__item-icon svg {
    width: 16px;
    height: 16px;
  }

  .ah-partner-clinics__item-title {
    font-size: 20px;
  }

  .ah-partner-clinics__item-text {
    font-size: 15px;
  }

  .ah-partner-clinics__item-location {
    padding-top: 12px;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .ah-partner-clinics__item-location-icon {
    width: 13px;
    height: 13px;
  }

  .ah-partner-clinics__item-location-icon svg {
    width: 13px;
    height: 13px;
  }

  .ah-partner-clinics__item-location-text {
    font-size: 15px;
  }

  .ah-partner-clinics__item-img {
    width: 100%;
    margin: 0;
    height: 0;
    padding-bottom: 65.2173913043%;
    border-radius: 0 0 15px 15px;
    min-height: auto;
  }

  .ah-partner-clinics__bottom {
    margin-top: 25px;
    padding: 29px 20px 35px;
  }

  .ah-partner-clinics__bottom-row {
    row-gap: 32px;
  }

  .ah-partner-clinics__bottom-title {
    font-size: 28px;
    line-height: 107%;
  }

  .ah-partner-clinics__bottom-text {
    font-size: 15px;
    margin-top: 15px;
  }

  .ah-partner-clinics__bottom-right {
    width: 100%;
  }

  .ah-partner-clinics__bottom-right .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-stages-block__top:not(:last-child) {
    margin-bottom: 20px;
  }

  .ah-stages-block__row {
    margin: -7.5px;
  }

  .ah-stages-block__col {
    padding: 7.5px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-stages-block__item {
    min-height: 176px;
  }

  .ah-stages-block__item-step {
    height: 27px;
    margin-bottom: 36px;
    font-size: 15px;
    padding: 2px 7px;
  }

  .ah-stages-block__item-title {
    font-size: 20px;
  }

  .ah-stages-block__item-text {
    font-size: 15px;
  }

  .ah-stages-block__bottom {
    margin-top: -56px;
  }

  .ah-stages-block__img {
    padding-bottom: 106.0273972603%;
  }

  .ah-professional-hygiene {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ah-professional-hygiene__top:not(:last-child) {
    margin-bottom: 15px;
  }

  .ah-professional-hygiene__subtitle {
    font-size: 15px;
  }

  .ah-professional-hygiene__subtitle:not(:last-child) {
    margin-bottom: 25px;
  }

  .ah-professional-hygiene__row {
    margin: -12.5px -10px;
  }

  .ah-professional-hygiene__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 12.5px 10px;
  }

  .ah-professional-hygiene__item-title {
    font-size: 25px;
  }

  .ah-professional-hygiene__item-text {
    font-size: 15px;
  }

  .ah-company-specialists__row {
    row-gap: 25px;
  }

  .ah-company-specialists__heading {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .ah-company-specialists__text {
    font-size: 15px;
    margin-top: 15px;
  }

  .ah-company-specialists__btn {
    display: none;
  }

  .ah-company-specialists__img {
    padding-bottom: 100%;
  }

  .ah-company-specialists__label {
    width: 116px;
    bottom: auto;
    top: 20px;
    left: 20px;
  }

  .ah-company-specialists__btn-mob {
    display: block;
  }

  .ah-company-specialists__btn-mob .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-how-choose__top:not(:last-child) {
    margin-bottom: 15px;
  }

  .ah-how-choose__subtitle {
    font-size: 15px;
  }

  .ah-how-choose__row {
    margin: -7.5px;
  }

  .ah-how-choose__col {
    padding: 7.5px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-how-choose__col:nth-child(even) .ah-how-choose__item {
    background: var(--color-gray-200);
  }

  .ah-how-choose__item {
    padding: 25px 24px 23px;
    min-height: auto;
  }

  .ah-how-choose__item-icon {
    margin-bottom: 40px;
  }

  .ah-how-choose__item-title {
    font-size: 25px;
    max-width: 255px;
  }

  .ah-how-choose__item-text {
    font-size: 15px;
    margin-top: 12px;
  }

  .ah-how-choose__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 7.5px;
  }

  .ah-how-choose__btn {
    padding-top: 10px;
  }

  .ah-how-choose__btn .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-oral-hygiene__top:not(:last-child) {
    margin-bottom: 15px;
  }

  .ah-oral-hygiene__subtitle {
    font-size: 15px;
  }

  .ah-oral-hygiene__body {
    margin-top: 30px;
    margin-bottom: 35px;
  }

  .ah-oral-hygiene__img {
    max-width: none;
    margin-bottom: 30px;
  }

  .ah-oral-hygiene__item {
    padding: 22px 24px;
    position: static;
  }

  .ah-oral-hygiene__item:not(:last-child) {
    margin-bottom: 10px;
  }

  .ah-oral-hygiene__item:nth-child(1) {
    max-width: none;
  }

  .ah-oral-hygiene__item:nth-child(2) {
    max-width: none;
  }

  .ah-oral-hygiene__item:nth-child(3) {
    max-width: none;
  }

  .ah-oral-hygiene__item:nth-child(4) {
    max-width: none;
  }

  .ah-oral-hygiene__item:nth-child(5) {
    max-width: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .ah-oral-hygiene__item-title {
    font-size: 20px;
  }

  .ah-oral-hygiene__item-text {
    font-size: 15px;
    margin-top: 12px;
  }

  .ah-oral-hygiene__bottom-text {
    font-size: 20px;
  }

  .ah-oral-hygiene__bottom-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
  }

  .ah-oral-hygiene__bottom-buttons .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-catalog-specialists__top:not(:last-child) {
    margin-bottom: 15px;
  }

  .ah-catalog-specialists__row {
    row-gap: 25px;
  }

  .ah-catalog-specialists__text {
    font-size: 15px;
  }

  .ah-catalog-specialists__right .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-catalog-specialists__items {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 0 -10px;
    padding: 0 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 60px;
    background: url("../img/new/icon-scroll.png") top right no-repeat;
    margin-top: -25px;
  }

  .ah-catalog-specialists__item {
    padding: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 274px;
    max-width: 100%;
  }

  .ah-catalog-specialists__item:not(:last-child) {
    margin-right: 15px;
  }

  .ah-catalog-specialists__buttons {
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
  }

  .ah-catalog-specialists__buttons .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-offer-patients__box {
    padding-top: 43px;
    padding-bottom: 344px;
  }

  .ah-offer-patients__btn .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-offer-patients__bg {
    width: 200%;
  }

  .ah-offer-patients__img {
    width: 530px;
    height: 344px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .ah-offer-patients__img img.loaded {
    right: auto;
  }

  .ah-accreditation-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 7.5px;
  }

  .ah-accreditation-block__item {
    padding: 21px 24px 24px;
  }

  .ah-accreditation-block__item-bg {
    width: 225px;
    bottom: -23px;
    right: -66px;
  }

  .ah-accreditation-block__item-title {
    font-size: 25px;
  }

  .ah-accreditation-block__item-text {
    font-size: 15px;
    margin-top: 12px;
  }

  .ah-accreditation-block__item-link {
    font-size: 15px;
  }

  .ah-accreditation-block__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 7.5px;
  }

  .ah-accreditation-block__btn {
    padding-top: 10px;
  }

  .ah-accreditation-block__btn .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-membership-block__row {
    row-gap: 25px;
  }

  .ah-membership-block__title:not(:last-child) {
    margin-bottom: 20px;
  }

  .ah-membership-block__boxes {
    row-gap: 25px;
  }

  .ah-membership-block__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-membership-block__item-title {
    font-size: 25px;
  }

  .ah-membership-block__item-text {
    font-size: 12px;
  }

  .ah-membership-block__btn {
    display: none;
  }

  .ah-membership-block__img {
    padding-bottom: 100%;
  }

  .ah-membership-block__btn-mob {
    display: block;
  }

  .ah-membership-block__btn-mob .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-education-block__top:not(:last-child) {
    margin-bottom: 20px;
  }

  .ah-education-block__row {
    margin: -7.5px;
  }

  .ah-education-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 7.5px;
  }

  .ah-education-block__item {
    min-height: 196px;
  }

  .ah-education-block__item-step {
    font-size: 15px;
    height: 27px;
    padding: 3px 7px;
  }

  .ah-education-block__item-title {
    font-size: 20px;
  }

  .ah-education-block__item-text {
    font-size: 15px;
  }

  .ah-education-block__buttons {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 7.5px;
    margin-top: 10px;
  }

  .ah-education-block__buttons .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-society-block__top:not(:last-child) {
    margin-bottom: 15px;
  }

  .ah-society-block__text {
    font-size: 15px;
  }

  .ah-society-block__text:not(:last-child) {
    margin-bottom: 25px;
  }

  .ah-society-block__row {
    margin: -5px;
  }

  .ah-society-block__col {
    padding: 5px;
  }

  .ah-society-block__item {
    padding: 14px 12px 17px 18px;
  }

  .ah-society-block__item-number {
    font-size: 32px;
    line-height: 107%;
    letter-spacing: normal;
  }

  .ah-society-block__item-text {
    font-size: 15px;
  }

  .ah-events-block__top:not(:last-child) {
    margin-bottom: 20px;
  }

  .ah-events-block__row.ah-scroll-block {
    margin: 0 -10px;
    padding: 0 10px;
    padding-top: 68px;
    margin-top: -68px;
  }

  .ah-events-block__col {
    width: 274px;
  }

  .ah-events-block__item-img {
    padding-bottom: 142.3357664234%;
  }

  .ah-events-block__item-title {
    font-size: 18px;
  }

  .ah-events-block__item-date {
    font-size: 15px;
    margin-top: 8px;
  }

  .ah-events-block__btn {
    margin-top: 25px;
  }

  .ah-events-block__btn .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

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

  .ah-membership__subtitle {
    font-size: 15px;
  }

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

  .ah-membership__row {
    margin: -7.5px;
  }

  .ah-membership__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 7.5px;
  }

  .ah-membership__item {
    min-height: 240px;
    padding: 21px 24px 24px;
  }

  .ah-membership__item-title {
    font-size: 25px;
  }

  .ah-membership__item-text {
    margin-top: 12px;
    font-size: 15px;
  }

  .ah-membership__item-link {
    font-size: 15px;
  }

  .ah-membership__image {
    padding: 7.5px;
  }

  .ah-membership__img {
    padding-bottom: 100%;
  }

  .ah-membership__button {
    padding: 7.5px;
  }

  .ah-membership__btn {
    padding-top: 10px;
  }

  .ah-membership__btn .ah-btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ah-offer-specialists {
    margin-top: 0;
  }

  .ah-offer-specialists-slider__body {
    padding: 20px 20px 324px;
  }

  .ah-offer-specialists-slider__labels {
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    row-gap: 6px;
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 18px;
  }

  .ah-offer-specialists-slider__label {
    min-height: 28px;
    height: auto;
    padding: 3px 13px;
    font-size: 13px;
    border-radius: 15px;
    max-width: 212px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: left;
  }

  .ah-offer-specialists-slider__title {
    font-size: 29px;
  }

  .ah-offer-specialists-slider__text {
    margin-top: 12px;
    font-size: 15px;
    margin-bottom: 17px;
  }

  .ah-offer-specialists-slider__img {
    max-height: 321px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }

  .ah-offer-specialists-slider__prev {
    left: 20px;
    bottom: 20px;
  }

  .ah-offer-specialists-slider__next {
    right: 20px;
    bottom: 20px;
  }

  .ah-who-you.fancybox__content {
    padding: 15px;
  }

  .ah-who-you__title {
    font-size: 28px;
    letter-spacing: normal;
    line-height: 107%;
    margin-bottom: 15px;
  }

  .ah-who-you__row {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .ah-who-you__item {
    width: calc((100% - 10px) / 2);
    padding: 10px;
  }

  .ah-who-you__name {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .ah-block-events__title {
    margin-bottom: 25px;
    font-size: 28px;
  }

  .ah-block-events__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-block-events__item {
    min-height: 191px;
    padding: 25px 25px 23px;
  }

  .ah-block-events__item-title {
    font-size: 18px;
  }

  .ah-block-events__item-text {
    margin-top: 8px;
    font-size: 15px;
  }

  .ah-title-page {
    margin-bottom: 25px;
  }

  .ah-bread-crumbs {
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .ah-events-list__row {
    margin: -7.5px;
  }

  .ah-events-list__col {
    padding: 7.5px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-event-item {
    min-height: 300px;
    padding: 21px 25px 25px;
  }

  .ah-event-item__title {
    font-size: 25px;
  }

  .ah-event-item__text {
    font-size: 15px;
  }

  .ah-event-item__icon {
    width: 35px;
    height: 35px;
  }

  .ah-event-item__icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 578px) {
  .ah-who-you.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }
}

@media (max-width: 575.98px) {
  .ah-botom-block__img {
    padding-bottom: 100%;
  }

  .ah-partners-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .ah-partners-block__button {
    display: none;
  }
}

@media (max-width: 479.98px) {
  .ah-offer-patients__bg {
    left: 33%;
  }
}

@media (max-width: 991.98px) and (min-width: 767.98px) {
  .ah-how-choose__col:nth-child(2) .ah-how-choose__item,
  .ah-how-choose__col:nth-child(4n+2) .ah-how-choose__item {
    background: var(--color-gray-200);
  }

  .ah-how-choose__col:nth-child(3) .ah-how-choose__item,
  .ah-how-choose__col:nth-child(4n+3) .ah-how-choose__item {
    background: var(--color-gray-200);
  }
}

@media (min-width: 767.98px) and (max-width: 991.98px) {
  .ah-membership__col:nth-child(1) {
    -webkit-box-ordinal-group: -5;
        -ms-flex-order: -6;
            order: -6;
  }

  .ah-membership__col:nth-child(2) {
    -webkit-box-ordinal-group: -4;
        -ms-flex-order: -5;
            order: -5;
  }

  .ah-membership__col:nth-child(3) {
    -webkit-box-ordinal-group: -2;
        -ms-flex-order: -3;
            order: -3;
  }

  .ah-membership__col:nth-child(4) {
    -webkit-box-ordinal-group: -3;
        -ms-flex-order: -4;
            order: -4;
  }
}

@media (max-width: 1199.98px) and (min-width: 767.98px) {
  .ah-block-events__col:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (any-hover: hover) {
  .ah-slider-prev:hover {
    background: var(--color-blue-100);
  }

  .ah-slider-next:hover {
    background: var(--color-blue-100);
  }

  .ah-header__action:hover {
    color: var(--color-blue-100);
  }

  .menu__link:hover {
    color: var(--color-blue-100);
  }

  .menu__link:hover:before {
    width: 100%;
  }

  .ah-search-block__top:hover {
    color: var(--color-blue-100);
  }

  .ah-footer-bottom__text a:hover {
    color: var(--color-white);
  }

  .ah-footer-center a.ah-footer-center__item:hover .ah-footer-center__item-icon {
    color: var(--color-white);
  }

  .ah-footer-center a.ah-footer-center__item:hover .ah-footer-center__item-text {
    color: var(--color-gray);
    border-color: var(--color-gray);
  }

  .ah-footer-menu li a:hover {
    color: var(--color-gray);
    border-color: var(--color-gray);
  }

  .ah-reviews-block__link:hover {
    color: var(--color-blue-100);
  }

  .ah-review-item__link:hover {
    color: var(--color-blue-100);
  }

  .ah-partner-clinics__item:hover .ah-partner-clinics__item-icon {
    background: var(--color-blue-100);
  }

  .ah-partner-clinics__item:hover .ah-partner-clinics__item-icon svg {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .ah-specialist-item:hover .ah-specialist-item__body {
    border-color: #dbdbdb;
    background: var(--color-white);
  }

  .ah-accreditation-block__item:hover .ah-accreditation-block__item-link {
    color: var(--color-blue-100);
  }

  .ah-accreditation-block__item:hover .ah-accreditation-block__item-link svg {
    opacity: 1;
  }

  .ah-membership__item:hover .ah-membership__item-link {
    color: var(--color-blue-100);
  }

  .ah-membership__item:hover .ah-membership__item-link svg {
    opacity: 1;
  }

  .ah-offer-specialists-slider__prev:hover {
    background: var(--color-blue);
    color: var(--color-white);
  }

  .ah-offer-specialists-slider__next:hover {
    background: var(--color-blue);
    color: var(--color-white);
  }

  .ah-who-you__item:hover {
    background: var(--color-blue);
    color: var(--color-white);
  }

  .ah-bread-crumbs__item a:hover {
    color: var(--color-blue-100);
    text-decoration: underline;
  }

  .ah-event-item:hover {
    background: var(--color-violet);
  }
}

@media (max-height: 578px) {
  .ah-who-you.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }
}