@charset "UTF-8";
/* ШРИФТ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200;300;400;500;600;700&display=swap");
:root {
  font-family: "Montserrat", sans-serif;
  --container-padding: 32px;
  --swiper-theme-color: #8a7b9f;
  --swiper-pagination-bullet-horizontal-gap: 10px;
  --swiper-pagination-bullet-size: 11px;
  --test: 0px;
}

/* ЦВЕТА */
/* LAYOUT */
html {
  overflow-x: hidden;
}

body {
  position: relative;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 1280px;
  padding: 28px var(--container-padding) 48px var(--container-padding);
  width: 100%;
}

/* Модификаторы */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  margin-top: 0px !important;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* СБРОС СТИЛЕЙ */
/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}


ul{
  padding-left: 21px;
  margin-bottom: 0;
}


/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1.5;
}



/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
  text-decoration: none;
  color: black;
}

/* Упрощаем работу с изображениями */
img,
svg {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  padding: 0;
}

/* Удаляем все анимации и переходы для людей, которые предпочитают их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.swiper-button-next,
.swiper-button-prev {
  background-image: url(./assets/img/arrow_r.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  position: unset;
  width: 14px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* Основной стиль кнопки в проекте */
.project-button {
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 20px;
  height: 64px;
  border: none;
  padding: 0px 33px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.project-button_color_dark-violet {
  color: white;
  background-color: #8a7b9f;
}

.project-button_color_dark-violet:hover {
  background-color: #af94d6;
}

.project-button_color_gray-violet {
  color: white;
  background-color: #d0cad9;
}

.project-button_color_gray-violet:hover {
  background-color: #af94d6;
}

.project-button:disabled {
  background-color: #d0cad9;
  cursor: not-allowed;
}

/* Заголовки */
h1 {
  font-family: "Oswald", sans-serif;
  font-size: 69px;
  line-height: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h2,.h2 {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 50px;
  line-height: 64px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h3 {
  font-family: "Oswald";
  font-weight: 600;
  font-size: 28px;
  line-height: 30px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.project-paragraph {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

@media screen and (max-width: 768px) {
  .project-button {
    padding: 0px 24px;
    font-size: 16px;
    height: 54px;
    border-radius: 16px;
    line-height: 20px;
  }
  h1,
  h2 ,.h2{
    font-size: 55px;
    line-height: 50px;
  }
  h3 {
    font-size: 26px;
    line-height: 30px;
  }
}

@media screen and (max-width: 550px) {
  .project-button,
  .project-paragraph {
    font-size: 14px;
    line-height: 17px;
  }
  h1,
  h2,.h2 {
    font-size: 32px;
    line-height: 30px;
  }
  h3 {
    font-size: 20px;
    line-height: 22px;
  }
}

/* HEADER */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(min(55%, 758px));
  position: absolute;
  z-index: 999;
}

.header .logo {
  cursor: pointer;
}

.header .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 48px;
          column-gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 11px;
  -ms-flex-item-align: center;
      align-self: center;
  justify-self: end;
  display: none;
  cursor: pointer;
  z-index: 9999;
}

.header .burger div {
  width: 33px;
  height: 2px;
  background-color: black;
  border-radius: 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.header .burger_opened div:nth-child(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
          transform: translateY(13px) rotate(-45deg);
}

.header .burger_opened div:nth-child(2) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}

.header .burger_opened div:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(45deg);
          transform: translateY(-13px) rotate(45deg);
}

.header .modal-menu {
  background-color: #fff;
  height: 100vh;
  width: 394px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9998;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.header .modal-menu_opened {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  position: fixed;
}

.header .modal-menu__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 164px;
}

.header .modal-menu__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 36px;
}

.header .modal-menu__navigation a {
  font-size: 24px;
}

.header .modal-menu__social-networks {
  margin-top: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .modal-menu__social-networks .small-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .modal-menu__social-networks #instagram-logo {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin: 5px 0px 20px 0px;
}

.header .mobile-background {
  width: 100vw;
  height: 64px;
  position: absolute;
  left: -16px;
  top: 0;
  background-color: white;
  z-index: -1;
  display: none;
}

.navigation__link {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: black;
}

.navigation__link a::after {
  content: attr(data-title);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: transparent;
  font-weight: 700;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.navigation__link .underline {
  background-color: black;
  height: 1px;
  width: 100%;
  margin-top: 8px;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.navigation__link_active a, .navigation__link:hover a {
  color: transparent;
  white-space: nowrap;
}

.navigation__link_active a::after, .navigation__link:hover a::after {
  color: #8a7b9f;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.navigation__link_active .underline, .navigation__link:hover .underline {
  display: block;
  opacity: 1;
}

/* FOOTER */
.footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
        grid-template-columns: auto;
justify-content: center;
        padding-top: 50px;
  margin-top: 95px;
  position: relative;
}

.footer .line {
  height: 1px;
  width: 100vw;
  position: absolute;
  background-color: #000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-column-gap: 50px;
          column-gap: 50px;
}

.footer .location {
  margin: 32px 0px 40px 0px;
  max-width: 31ch;
  text-align: center;
}

.footer__social-networks{
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 32px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 34px;
    margin-top: 65px;
  }
  .footer__links {
    -webkit-column-gap: 48px;
            column-gap: 48px;
  }
  .footer .location {
    margin: 26px 0px 50px 0px;
  }
}

@media screen and (max-width: 550px) {
  .footer {
    padding-top: 28px;
    margin-top: 35px;
  }
  .footer__links {
    -webkit-column-gap: 48px;
            column-gap: 48px;
  }
  .footer__links .navigation__link {
    font-size: 14px;
    line-height: 17px;
  }
  .footer .location {
    margin: 23px 0px 0px 0px;
    max-width: 31ch;
    font-size: 14px;
    line-height: 17px;
  }
  .footer .project-button {
    display: none;
  }
}

.darkening {
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.darkening_active {
  opacity: 1;
  z-index: 100;
  position: fixed;
}

@media screen and (min-width: 768px) {
  .modal-menu,
  .darkening {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --container-padding: 34px;
  }
  .header {
    width: calc(100vw - 64px);
  }
  .header_modal-opened .burger {
    position: fixed;
    right: var(--container-padding);
  }
  .header .navigation {
    display: none;
  }
  .header .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .logo {
    height: 68px;
  }
}

@media screen and (max-width: 550px) {
  :root {
    --container-padding: 16px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 7px;
  }
  .container {
    padding-top: 0px;
  }
  .header {
    height: 64px;
    width: 100%;
    position: unset;
    padding: 16px 0px;
  }
  .header_modal-opened {
    position: fixed !important;
    background-color: white;
  }
  .header_modal-opened .burger {
    right: 16px;
  }
  .header .logo {
    height: 32px;
  }
  .header .burger {
    row-gap: 7px;
  }
  .header .burger div {
    width: 20px;
    height: 1px;
  }
  .header .burger_opened div:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
            transform: translateY(8px) rotate(-45deg);
  }
  .header .burger_opened div:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
            transform: translateY(-8px) rotate(45deg);
  }
  .header .mobile-background {
    display: block;
  }
  .header .modal-menu {
    width: 100vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: 64px 0px 0px 0px;
  }
  .header .modal-menu__container {
    padding: 24px 16px 42px 16px;
  }
  .header .modal-menu__social-networks {
    margin-top: 64px;
  }
  .header .modal-menu__social-networks #instagram-logo {
    margin: 5px 0px 5px 0px;
  }
  .header .modal-menu .project-button {
    width: 100%;
  }
  .header .navigation__link {
    font-size: 20px;
  }
  .darkening {
    margin-top: 64px;
  }
}

.blurred-circle {
  position: absolute;
  background-color: #eff6f8;
  z-index: -1;
  border-radius: 100%;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}

/* ГЛАВНАЯ СТРАНИЦА */
.greeting-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.greeting-block__text {
  position: absolute;
  left: 0;
  bottom: 32px;
  z-index: 10;
}

.greeting-block__blurred-circle {
  width: 619px;
  height: 619px;
  top: 146px;
  left: -279px;
}

.greeting-block__greeting-text {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 69px;
  line-height: 64px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 15ch;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.greeting-block__sub-text {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  max-width: 24ch;
  margin: 88px 0px 27px 0px;
}

.greeting-block__portrait {
  background-color: #f2f2f2;
  margin: -28px -32px 0px 0px;
  padding-top: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.greeting-block__portrait .guzel-portrait {
  height: 713px;
  margin-top: 15px;
}

.greeting-block__social-networks {
  position: absolute;
  top: 0;
  right: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 32px;
}

.greeting-block__social-networks .line {
  background-color: black;
  width: 1px;
  height: 283px;
}

.greeting-block__word-circle {
  position: absolute;
  top: 270px;
  left: -20%;
}

.greeting-block .mobile-background,
.greeting-block .mobile-linear-gradient {
  width: 100vw;
  position: absolute;
  margin-left: -50vw;
  left: 50%;
  display: none;
}

.greeting-block .mobile-background {
  z-index: -1;
  background-color: #f2f2f2;
  height: 100%;
}

.greeting-block .mobile-linear-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(255, 255, 255, 0.8)));
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.8));
  z-index: 10;
  height: calc(100% - 120px);
  position: absolute;
  bottom: 0;
}

.social-network-icon {
  cursor: pointer;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.social-network-icon:hover {
  -webkit-filter: invert(57%) sepia(8%) saturate(1222%) hue-rotate(223deg) brightness(87%) contrast(85%);
          filter: invert(57%) sepia(8%) saturate(1222%) hue-rotate(223deg) brightness(87%) contrast(85%);
}

@media screen and (max-width: 1150px) {
  .greeting-block__portrait {
    min-width: 394px;
  }
  .greeting-block__portrait .guzel-portrait {
    height: 576px;
  }
  .greeting-block__greeting-text {
    font-size: 55px;
    line-height: 50px;
    max-width: 15ch;
  }
  .greeting-block__sub-text {
    font-size: 16px;
    line-height: 20px;
    max-width: 24ch;
    margin: 88px 0px 27px 0px;
  }
  .greeting-block__word-circle {
    width: 300px;
    top: 270px;
    left: -20%;
  }
}

@media screen and (max-width: 768px) {
  .greeting-block__text {
    bottom: 25px;
  }
  .greeting-block__sub-text {
    margin: 48px 0px 28px 0px;
  }
  .greeting-block__word-circle {
    display: none;
  }
  .greeting-block__social-networks {
    display: none;
  }
  .greeting-block__portrait {
    margin: -45px -34px 0px 0px;
  }
}

@media screen and (max-width: 650px) {
  .greeting-block__greeting-text {
    font-size: 36px;
    line-height: 33px;
    max-width: 10ch;
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
}

@media screen and (max-width: 550px) {
  .greeting-block {
    height: 464px;
  }
  .greeting-block__text {
    bottom: 55px;

  }
  .greeting-block__sub-text {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    max-width: 25ch;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
		top:12%;
  margin: 19px 0px 36px 0px;
  }
  .greeting-block__greeting-text {
    font-size: 40px;
    line-height: 38px;
    max-width: 15ch;
  }
  .greeting-block__portrait {
    width: 100vw;
    height: 100%;
    margin: 0;
    padding-top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: transparent;
    overflow: hidden;
    margin-right: -16px;
  }
  .greeting-block__portrait .guzel-portrait {
    height: 500px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin: 0px -30px 0px 0px;
  }
  .greeting-block__blurred-circle {
    display: none;
  }
  .greeting-block .mobile-background,
  .greeting-block .mobile-linear-gradient {
    display: block;
  }
}

@media screen and (max-width: 450px) {
  .greeting-block__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    bottom: 48px;
  }
  .greeting-block__greeting-text {
    font-size: 32px;
    line-height: 30px;
    max-width: 10ch;
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
}

@media screen and (max-width: 330px) {
  .greeting-block__portrait > .guzel-portrait {
    margin: 0px -80px 0px 0px;
  }
}

.quote {
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 100px 0px 84px 0px;
}

.quote__container {
  position: relative;
}

.quote__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  max-width: 52ch;
}

.quote__quote-marks {
  position: absolute;
  left: 0;
  top: -20px;
  left: -20px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .quote {
    padding: 68px 0px 78px 0px;
  }
  .quote__text {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 550px) {
  .quote {
    padding: 73px 0px 35px 0px;
  }
  .quote__text {
    font-size: 14px;
    line-height: 17px;
	text-align: center;
  }
  .quote__quote-marks {
    left: 43%;
    top: -49px;
    width: 36px;
  }
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-column-gap: 30px;
          column-gap: 30px;
}

.about .decorative-circle {
  width: 420px;
  height: 420px;
  position: absolute;
  border: 1px solid black;
  border-radius: 100%;
  top: calc(-210px);
  right: calc(-242px);
}

.about__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  line-height: 28px;
  width: 100%;
  max-width: 494px;
}

.about__info .about-info {
  font-weight: 600;
  margin: 0px 0px 25px 0px;
  line-height: 22px;
}

.about__info .extra-text {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-bottom: 40px;
}

.about__problems {
  background-color: rgba(100, 164, 185, 0.1);
  padding: 60px 72px 57px 72px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 592px;
}

.about__problems h3 {
  width: 20ch;
}

.about__problems .problems-list {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  font-size: 16px;
  line-height: 18px;
  max-width: 40ch;
}

.about__project-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.about__project-button p {
  max-width: 17ch;
}

@media screen and (max-width: 1200px) {
  .about .decorative-circle {
    width: 355px;
    height: 355px;
    top: calc(-177.5px);
    right: calc(-307.5px);
  }
}

@media screen and (max-width: 1000px) {
  .about__info .info-titles {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    margin: 38px 0px 14px 0px;
  }
  .about__info .founder-title {
    margin-bottom: 33px;
  }
  .about__problems {
    padding: 37px 32px 48px 32px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .about__problems .problems-list {
    margin-top: 46px;
  }

  .about__info .about-info {
    margin: 0px 0px 10px 0px;
    line-height: 19.5px;
  }
  
  .about__info .extra-text {
    margin-bottom: 38px;
  }
}

@media screen and (max-width: 768px) {
  .about__info .info-titles {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    margin: 38px 0px 14px 0px;
  }
  .about__info .founder-title {
    max-width: 27ch;
  }
  .about__project-button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 17px 24px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

@media screen and (min-width: 920px) {
  .about #desktop-btn {
    display: -ms-grid;
    display: grid;
  }
  .about #mobile-btn {
    display: none;
    width: fit-content;
  }
}

@media screen and (max-width: 920px) {
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about #desktop-btn {
    display: none;
  }

  .about__info .extra-text {
    margin-bottom: 0px;
  }

  .about .decorative-circle {
    width: 248px;
    height: 248px;
    top: calc(-124px);
    right: calc(-234px);
  }
  .about__info {
    max-width: unset;
  }
  .about__info .info-titles {
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
  }
  .about__info .founder-title {
    max-width: unset;
    margin-bottom: 0px;
  }
  .about__problems {
    width: 100%;
    max-width: unset;
  }
  .about__problems .problems-list {
    max-width: unset;
  }
 
  .about__project-button p {
    max-width: unset;
  }
}

@media screen and (max-width: 550px) {
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about .decorative-circle {
   display: none;
  }

  .about .extra-text{
    row-gap: 15px;
  }

  .about__project-button {
    width: 100%;
  }

  .about__info {
    font-size: 14px;
    line-height: 26px;
  }

  .about__info .about-info{
    margin: 0px 0px 3px 0px;
  }

  .about .extra-text {
    margin-top: 20px;
  }

  .about__info .info-titles {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .about__problems {
    padding: 25px 20px 30px 20px;
  }
  .about__problems .problems-list {
    font-size: 14px;
    line-height: 18px;
    margin-top: 24px;
  }
}

.education {
  position: relative;
  padding: 90px 106px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.education__sliders {
  width: 100%;
}

.education img {
  max-width: 300px;
}

.education__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 42px;
          column-gap: 42px;
  margin-bottom: 43px;
}

.education__title .title {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 50px;
  line-height: 64px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #f2f2f2;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.education__title .title:hover {
  color: #8a7b9f;
}

.education__title .title-active {
  color: #8a7b9f;
}

.education__title .separation-line {
  width: 1px;
  height: 73px;
  background-color: black;
}

.education .swiper-pagination {
  display: none;
}

.education .swiper-slide {
  position: relative;
}

.education .swiper-slide .year {
  font-family: "Oswald";
  font-weight: 600;
  font-size: 28px;
  line-height: 41px;
  margin-bottom: 85px;
}

.education .swiper-slide .year::after {
  content: " г.";
}

.education .swiper-slide .type {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  max-width: 20ch;
  position: absolute;
  top: 50px;
}

.education .swiper-slide .slide-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.education .swiper-slide .slide-line .circle {
  background-color: black;
  width: 11px;
  height: 11px;
  border-radius: 11px;
}

.education .swiper-slide .slide-line .line {
  background-color: black;
  width: 100%;
  height: 1px;
}

.education .swiper-slide .place {
  font-weight: 400;
  margin-top: 37px;
  padding-right: 30px;
}

.education__swiper-container,
.education .exp__swiper-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
          column-gap: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.education__swiper-container .swiper-slides,
.education .exp__swiper-container .swiper-slides {
  max-width: 936px;
  overflow: hidden;
}

.education__swiper-container .swiper-arrows,
.education .exp__swiper-container .swiper-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.education .decorative-circle {
  width: 452px;
  height: 452px;
  position: absolute;
  border: 1px solid black;
  border-radius: 100%;
  top: 260px;
  left: -400px;
}

@media screen and (max-width: 1200px) {
  .education {
    padding: 90px 0px;
  }
  .education .decorative-circle {
    width: 328px;
    height: 328px;
    position: absolute;
    border: 1px solid black;
    border-radius: 100%;
    top: 340px;
    left: -330px;
  }
}

@media screen and (max-width: 768px) {
  .education {
    padding: 60px 0px;
  }
  .education .swiper-pagination {
    display: block;
    position: unset;
    margin-top: 30px;
  }
  .education__title {
    -webkit-column-gap: 27px;
            column-gap: 27px;
  }
  .education__title .title {
    font-size: 37px;
  }
  .education__title .separation-line {
    height: 46px;
  }
  .education__swiper-container .swiper-slides,
  .education .exp__swiper-container .swiper-slides {
    max-width: calc(100vw - 68px);
    overflow: visible;
  }
  .education__swiper-container .swiper-arrows,
  .education .exp__swiper-container .swiper-arrows {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  .education {
    padding: 47px 0px;
  }
  .education .swiper-slide .year {
    margin-bottom: 67px;
    font-size: 20px;
    line-height: 30px;
  }
  .education .swiper-slide .type {
    font-size: 14px;
    line-height: 17px;
    top: 30px;
  }
  .education .swiper-slide .place {
    margin-top: 24px;
    padding-right: 22px;
  }
  .education__title {
    -webkit-column-gap: 16px;
            column-gap: 16px;
  }
  .education__title .title {
    font-size: 29px;
  }
  .education__title .separation-line {
    height: 34px;
  }
  .education__swiper-container .swiper-slides,
  .education .exp__swiper-container .swiper-slides {
    max-width: calc(100vw - 32px);
  }
}

@media screen and (max-width: 450px) {
  .education {
    padding: 35px 0px;
  }
  .education__title {
    margin-bottom: 15px;
  }
  .education__title .title {
    font-size: 20px;
  }
  .education__title .separation-line {
    height: 24px;
  }
}

.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.services__blurred-circle {
  width: 771px;
  height: 771px;
  right: 50px;
  top: 0;
}

.services__swiper-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-column-gap: 50px;
          column-gap: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 66px;
  width: 100%;
}

.services .services-swiper-slides {
  max-width: 834px;
  width: 100%;
  overflow: hidden;
}

.services__swiper-pagination {
  max-height: 455px;
}

.services__swiper-arrows {
  display: none;
}

.services__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
          column-gap: 30px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}


.services__slide .slide-show-full-text-btn {
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #8a7b9f;
  font-weight: 500;
  -webkit-column-gap: 7px;
          column-gap: 7px;
  background-color: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-top: -15px;
}

.services__slide .slide-show-full-text-btn span::before {
  content: "Подробнее";
}

.services__slide .slide-show-full-text-btn img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  height: 13px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-filter: invert(58%) sepia(9%) saturate(1057%) hue-rotate(223deg) brightness(86%) contrast(89%);
          filter: invert(58%) sepia(9%) saturate(1057%) hue-rotate(223deg) brightness(86%) contrast(89%);
}

.services__slide .slide-show-full-text-btn_opened span::before {
  content: "Скрыть";
}

.services__slide .slide-show-full-text-btn_opened img {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.services__slide .text-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  max-width: 295px;
}

.services__slide .text-content__overflow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
}

.services__slide .text-content__overflow-set {
  max-height: 140px;
  overflow: hidden;
}

.services__slide .text-content__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}

.services__slide .text-content__line {
  background-color: #000;
  height: 1px;
  width: 119px;
}

.services__slide .text-content__price-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.services__slide .text-content__price-block .price {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.services__slide .text-content__price-block .price::after {
  content: "  ₽";
}

.services__slide .slide-image-container {
  width: 450px;
  height: 450px;
  min-height: 450px;
  min-width: 450px;
  border-radius: 20px;
}

.services__slide .slide-image-container .slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media screen and (max-width: 1100px) {
  .services__blurred-circle {
    width: 500px;
    height: 500px;
  }
  .services__slide .text-content {
    row-gap: 20px;
  }
  .services__slide .text-content__price-block {
    row-gap: 20px;
  }
  .services__slide .text-content__price-block .price {
    font-size: 34px;
  }
  .services__slide .slide-image-container {
    width: 355px;
    height: 355px;
    min-width: unset;
    min-height: unset;
  }
  .services__swiper-pagination {
    max-height: 355px;
  }
}

@media screen and (min-width: 1000px) {
  .bullet-name {
    display: block;
  }
  .services__swiper-pagination {
    position: unset;
    max-width: 305px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 25px;
    overflow-y: auto;
    direction: ltr;
    scrollbar-width: thin;
    padding-right: 30px;
    min-width: 210px;
    -ms-flex-negative: 3;
        flex-shrink: 3;
  }
  .services__swiper-pagination::-webkit-scrollbar {
    width: 9px;
  }
  .services__swiper-pagination::-webkit-scrollbar-track {
    background: black;
    border: 4px solid transparent;
    background-clip: content-box;
  }
  .services__swiper-pagination::-webkit-scrollbar-thumb {
    background: #191919;
    border: 1px solid black;
    border-radius: 20px;
  }
  .services__swiper-pagination .swiper-pagination-bullet {
    background: none;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    font-size: 16px;
    line-height: 20px;
    color: black;
    margin: 0 0 !important;
    opacity: 1;
  }
  .services__swiper-pagination .swiper-pagination-bullet-active {
    color: rgba(0, 0, 0, 0.3);
  }
}

@media screen and (max-width: 1000px) {
  .bullet-name {
    display: none;
  }
  .services__swiper-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .services .services-swiper-slides {
    padding: 0px 50px;
  }
  .services__swiper-pagination {
    bottom: -80px !important;
  }
  .services__swiper-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 850px) {
  .services__blurred-circle {
    display: none;
  }
  .services__swiper-container {
    max-width: 616px;
  }
  .services__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .services__slide .text-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
    width: 100%;
    max-width: unset;
    margin-top: 34px;
  }
  .services__slide .text-content__line {
    width: 100%;
  }
  .services__slide .text-content__price-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .services__slide .slide-image-container {
    width: 100%;
    max-height: 350px;
	min-height: 350px;
    border-radius: 16px;
    position: relative;
  }
  .services__slide .slide-image-container .slide-image {
    height: auto;
	    max-height: 380px;
    position: absolute;
    top: -20px;
  }
}

@media screen and (max-width: 550px) {
  .services__swiper-pagination {
    bottom: -40px !important;
  }
  .services__swiper-arrows {
    height: fit-content;
    top: calc((100vw - 20px) * 0.41);
    width: 100vw;
  }

  .services__swiper-button-next,
  .services__swiper-button-prev{
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background-color: rgba(217, 217, 217, 0.35);
    background-size: 20% auto;
  }

  .services__swiper-container {
    margin-top: 30px;
  }
  .services__slide .text-content .title {
    font-size: 16px;
    line-height: 20px;
  }
  .services__slide .text-content__price-block .price {
    font-size: 27px;
  }
  .services .services-swiper-slides {
    padding: 0px;
  }

  .services__slide .text-content__overflow-set{
    max-height: 144px;
  }
}

@media screen and (max-width: 400px) {
  .services__slide .text-content {
    row-gap: 24px;
  }
  .services__slide .text-content__line {
    max-width: 226px;
  }
  .services__slide .text-content__price-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    margin-top: -16px;
  }
  .services__slide .text-content__price-block .price {
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
  .services__slide .text-content__price-block .project-button {
    width: 100%;
  }
  .services__slide .slide-image-container {
    max-height: calc((100vw - 32px) * 0.42);
    border-radius: 14px;
  }


}

.treatment-results {
  background-color: #f2f2f2;
  margin-top: 96px;
  padding: 96px 0px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.treatment-results__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 55px;
          column-gap: 55px;
  position: relative;
}

.treatment-results h1 {
  position: absolute;
  max-width: 12ch;
  left: 602px;
  line-height: 105%;
}

.treatment-results__swiper-arrows {
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 70px;
  margin-bottom: 55px;
}

.treatment-results__swiper-container {
  max-width: 850px;
  overflow: hidden;
}

.treatment-results__slide {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.treatment-results .swiper-wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.treatment-results .swiper-slide {
  height: 463px;
  width: 475px;
  position: relative;
}

.treatment-results .swiper-slide img {
  position: absolute;
  bottom: 0;
  width: 240px;
  height: 232px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.treatment-results .swiper-slide-active img {
  height: 463px;
  width: 475px;
}

@media screen and (min-width: 1000px) {
  .treatment-results__swiper-pagination {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .treatment-results__container {
    -webkit-column-gap: 40px;
            column-gap: 40px;
  }
  .treatment-results h1 {
    left: 500px;
  }
  .treatment-results__swiper-arrows {
    margin-bottom: 50px;
  }
  .treatment-results .treatment-results__swiper-pagination {
    bottom: 50px;
  }
  .treatment-results__swiper-container {
    max-width: 750px;
  }
  .treatment-results .swiper-backface-hidden .swiper-slide {
    height: 400px;
    width: 410px;
    position: relative;
  }
  .treatment-results .swiper-backface-hidden .swiper-slide img {
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 192px;
  }
  .treatment-results .swiper-backface-hidden .swiper-slide-active img {
    height: 400px;
    width: 410px;
  }
}

@media screen and (max-width: 1000px) {
  .treatment-results {
    margin-top: 125px;
    padding: 166px 0px 0px 0px;
  }
  .treatment-results__container {
    padding: 0px 100px 121px 100px;
    width: calc(100vw - 68px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 50px;
    -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: 55px;
            column-gap: 55px;
    position: relative;
  }
  .treatment-results h1 {
    max-width: 20ch;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    left: 50%;
    top: -110px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .treatment-results__swiper-arrows {
    width: 100%;
    height: 100%;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 0px;
    -ms-flex-item-align: auto;
        align-self: auto;
    -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: 575px;
            column-gap: 575px;
  }
  .treatment-results__swiper-container {
    max-width: 375px;
    overflow: hidden;
  }
  .treatment-results .swiper-backface-hidden .swiper-slide {
    height: 397px;
    width: 387px;
  }
  .treatment-results .swiper-backface-hidden .swiper-slide img {
    height: 397px;
    width: 387px;
  }
  .treatment-results .swiper-backface-hidden .swiper-slide-active img {
    height: 397px;
    width: 387px;
  }
}

@media screen and (max-width: 768px) {
  .treatment-results__swiper-arrows {
    -webkit-column-gap: 500px;
            column-gap: 500px;
  }
}

@media screen and (max-width: 650px) {
  .treatment-results {
    padding: 123px 0px 0px 0px;
  }
  .treatment-results h1 {
    font-size: 40px;
    line-height: 36px;
    top: -80px;
  }
  .treatment-results__swiper-arrows {
    -webkit-column-gap: 440px;
            column-gap: 440px;
  }
}

@media screen and (max-width: 550px) {
  .treatment-results {
    padding-top: 150px;
    margin-top: 75px;
  }
  .treatment-results__container {
    padding: 0px 100px 80px 100px;
    width: calc(100vw - 32px);
  }
  .treatment-results h1 {
    max-width: 12ch;
    top: -110px;
    text-align: center;
    line-height: 125%;
  }
  .treatment-results__swiper-container {
    max-width: 386px;
  }
  .treatment-results__swiper-arrows {
    -webkit-column-gap: 330px;
            column-gap: 330px;
  }
  .treatment-results .treatment-results__swiper-pagination {
    bottom: 30px;
  }
  .treatment-results .swiper-backface-hidden .swiper-slide {
    height: 216px;
    width: 210px;
  }
  .treatment-results .swiper-backface-hidden .swiper-slide img {
    height: 216px;
    width: 210px;
  }
  .treatment-results .swiper-backface-hidden .swiper-slide-active img {
    height: 216px;
    width: 210px;
  }
}

@media screen and (max-width: 425px) {
  .treatment-results__swiper-arrows {
    display: none;
  }
}

/* СТРАНИЦА "СТАТЬИ" */
.article-selector {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows: (auto)[2];
      grid-template-rows: repeat(2, auto);
  row-gap: 34px;
  -webkit-column-gap: 32px;
          column-gap: 32px;
}

.article-selector #mobile-scrollbar {
  display: none;
}

.article-selector__search-block {
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1/8;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-top: 167px;
}

.article-selector__search-block .search-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-column-gap: 8px;
          column-gap: 8px;
  margin-top: 53px;
}

.article-selector__search-block .search-container .search-field {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #d3d3d3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 0px 0px 35px;
  -webkit-column-gap: 30px;
          column-gap: 30px;
}

.article-selector__search-block .search-container .search-field .search-input {
  border: none;
  font-size: 18px;
  line-height: 22px;
  outline: none;
  padding: 0;
  width: 100%;
  border-radius: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
}

.article-selector__search-block .search-container .search-field .search-input::-webkit-input-placeholder {
  color: #d3d3d3;
}

.article-selector__search-block .search-container .search-field .search-input:-ms-input-placeholder {
  color: #d3d3d3;
}

.article-selector__search-block .search-container .search-field .search-input::-ms-input-placeholder {
  color: #d3d3d3;
}

.article-selector__search-block .search-container .search-field .search-input::placeholder {
  color: #d3d3d3;
}

.article-selector__search-block .search-container .search-field button {
  border: none;
  background: none;
}

.article-selector__article-groups {
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1/8;
  -ms-flex-item-align: end;
  align-self: flex-end;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  row-gap: 8px;
  -webkit-column-gap: 8px;
          column-gap: 8px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.article-selector__article-groups .article-group {
  min-width: 147px;
  min-height: 104px;
  max-height: 104px;
  width: 100%;
  background-color: #f2f2f2;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
}

.article-selector__article-groups .article-group:hover, .article-selector__article-groups .article-group_active {
  background-color: #e1eef2;
}

.article-selector__article-groups .article-group:hover .article-group__image, .article-selector__article-groups .article-group_active .article-group__image {
  -webkit-filter: brightness(0) saturate(100%) invert(94%) sepia(9%) saturate(642%) hue-rotate(160deg) brightness(91%) contrast(88%);
          filter: brightness(0) saturate(100%) invert(94%) sepia(9%) saturate(642%) hue-rotate(160deg) brightness(91%) contrast(88%);
}

.article-selector__article-groups .article-group_disabled {
  opacity: 0.2;
  z-index: -1;
}

.article-selector__article-groups .article-group__size {
  position: absolute;
  top: 10px;
  left: 15px;
}

.article-selector__article-groups .article-group__image {
  position: absolute;
  top: 10px;
  right: 18px;
}

.article-selector__article-groups .article-group__name {
  position: absolute;
  bottom: 10px;
  left: 15px;
}

.article-selector__article-scrollbar {
  grid-column: 8/-1;
  grid-row: 1/-1;
  padding: 29px 0px 67px 67px;
  background-color: #f2f2f2;
  position: relative;
  -ms-flex-negative: 5;
      flex-shrink: 5;
  min-height: 712px;
}

.article-selector__article-scrollbar .background {
  background-color: #f2f2f2;
  width: calc(100% + 32px);
  height: calc(100% + 28px);
  margin: -28px 0px 0px 32px;
  -webkit-transform: translateX(-32px);
          transform: translateX(-32px);
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

.article-selector__article-scrollbar .article-scrollbar-single .title {
  position: relative;
}

.article-selector__article-scrollbar .article-scrollbar-single .title__image {
  height: 216px;
}

.article-selector__article-scrollbar .article-scrollbar-single .title__text {
  font-family: "Oswald";
  font-weight: 600;
  font-size: 28px;
  line-height: 30px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  position: absolute;
  bottom: 15px;
  left: 5px;
}

.article-selector__article-scrollbar .article-scrollbar-single .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
  row-gap: 12px;
  max-height: 370px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 20px;
}


.article-selector__article-scrollbar #all_articles_list {
  padding-top: 100px;
}

.article-selector__article-scrollbar #all_articles_list .links {
  max-height: 485px;
}

.article-selector__article-scrollbar .article-scrollbar-single .links::-webkit-scrollbar {
  width: 9px;
}

.article-selector__article-scrollbar .article-scrollbar-single .links::-webkit-scrollbar-track {
  background: black;
  border: 4px solid transparent;
  background-clip: content-box;
}

.article-selector__article-scrollbar .article-scrollbar-single .links::-webkit-scrollbar-thumb {
  background: #191919;
  border: 1px solid black;
  border-radius: 20px;
}

.article-selector__article-scrollbar .article-scrollbar-single .links .article-link {
  color: #000;
  line-height: 28px;
  text-decoration: underline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  color: black;
  max-width: 34ch;
}

.article-selector__article-scrollbar .article-scrollbar-single .links .article-link:hover {
  color: #ceb0f9;
}

.articles-on-theme .article__preview-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1140px) {
  .article-selector__article-groups, .article-selector__search-block {
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
    grid-column: 1/9;
  }
  .article-selector__article-scrollbar {
    grid-column: 9/-1;
  }
}

@media screen and (max-width: 1000px) {
  .article-selector {
    -ms-grid-rows: 278px 1fr;
        grid-template-rows: 278px 1fr;
  }
  .article-selector__search-block {
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
  }
  .article-selector__search-block .search-container .search-field {
    padding-left: 28px;
    -webkit-column-gap: 20px;
            column-gap: 20px;
  }
  .article-selector__article-groups {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .article-selector__article-scrollbar {
    padding: 29px 0px 58px 28px;
  }
  .article-selector__article-scrollbar .article-scrollbar-single .title__text {
    bottom: 0px;
    left: 12px;
  }
  .article-selector__article-scrollbar .article-scrollbar-single .title__image {
    height: 163px;
  }
  .article-selector__article-scrollbar .article-scrollbar-single .links {
    max-height: 470px;
  }

  .article-selector__article-scrollbar #all_articles_list .links {
    max-height: 530px;
  }
}

@media screen and (max-width: 768px) {
  .article-selector__search-block {
    padding-top: 128px;
  }
  .article-selector__search-block .search-container {
    margin-top: 35px;
  }
  .article-selector__search-block .search-container .search-field .search-input {
    font-size: 16px;
    line-height: 20px;
  }
  .article-selector__article-groups {
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
  .article-selector__article-scrollbar .article-scrollbar-single .title__text {
    font-size: 26px;
  }
  .article-selector__article-scrollbar .article-scrollbar-single .links {
    max-height: 470px;
    row-gap: 21px;
  }

  .article-selector__article-scrollbar .article-scrollbar-single .links .article-link {
    line-height: 20px;
  }
}

@media screen and (max-width: 760px) {
  .article-selector__article-groups {
    -ms-flex-item-align: baseline;
        align-self: baseline;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }

  .article-selector__article-scrollbar .article-scrollbar-single .links {
    max-height: 690px;
  }

  .article-selector__article-scrollbar #all_articles_list .links {
    max-height: 748px;
  }
}

@media screen and (max-width: 700px) {
  .article-selector {
    -ms-grid-rows: (fit-content)[3];
        grid-template-rows: repeat(3, -webkit-fit-content);
        grid-template-rows: repeat(3, fit-content);
  }

  .article-selector__article-scrollbar {
    min-height: unset;
    padding: 21px 21px 25px 21px;
  }

  .article-selector__article-scrollbar #all_articles_list {
    padding-top: 0px;
  }

  .article-selector #mobile-scrollbar {
    display: block;
    grid-column: 1/-1;
    grid-row: var(--row);
  }
  .article-selector__search-block {
    grid-column: 1/-1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .article-selector__article-scrollbar {
    grid-column: 1/-1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .article-selector__article-scrollbar .article-scrollbar-single .links {
    row-gap: 13px;
    margin-top: 15px;
  }

  .article-selector__article-scrollbar .article-scrollbar-single .links {
    max-height: 240px;
  }

  .article-selector__article-scrollbar #all_articles_list .links {
    max-height: 260px;
  }

  .article-selector__article-scrollbar .article-scrollbar-single .links .article-link {
    max-width: unset;
  }
  .article-selector__article-scrollbar .background {
    display: none;
  }
  .article-selector__article-groups {
    grid-column: 1/-1;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .article-selector__article-groups .article-group {
    min-width: 140px;
  }
}

@media screen and (max-width: 550px) {
  .article-selector {
    -webkit-column-gap: 0px;
            column-gap: 0px;
    -ms-grid-rows: max-content;
        grid-template-rows: -webkit-max-content;
        grid-template-rows: max-content;
    margin-top: 16px;
  }

  .article-selector__search-block .search-container{
    margin-top: 26px;
  }

  .article-selector__search-block {
    grid-column: 1/-1;
    -ms-grid-row: 1;
    grid-row: 1;
    padding-top: 0px;
  }
  .article-selector__search-block .search-container .search-field {
    padding-left: 13px;
    -webkit-column-gap: 12px;
            column-gap: 12px;
  }
  .article-selector__search-block .search-container .search-field .search-input {
    font-size: 14px;
    line-height: 17px;
  }
  .article-selector__article-scrollbar {
    grid-column: 1/-1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .article-selector__article-scrollbar .article-scrollbar-single .title__text {
    font-size: 20px;
    line-height: 30px;
    left: 0px;
    position: unset;
  }
  .article-selector__article-scrollbar .article-scrollbar-single .title__image {
    display: none;
  }
  .article-selector__article-scrollbar .article-scrollbar-single .links {
    row-gap: 13px;
    margin-top: 15px;
  }
  .article-selector__article-scrollbar .article-scrollbar-single .links .article-link {
    max-width: unset;
  }
  .article-selector__article-scrollbar .background {
    display: none;
  }
  .article-selector__article-groups {
    grid-column: 1/-1;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .article-selector__article-groups .article-group {
    min-width: 140px;
  }
  .article-selector__article-groups .article-group__name, .article-selector__article-groups .article-group__size {
    font-size: 14px;
    line-height: 17px;
  }
}

.article-grid-section {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 63px;
}

.article-grid-section__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 32px;
          column-gap: 32px;
  row-gap: 38px;
}

.article-grid-section__item {
  grid-column: span 4;
}

.articles-on-theme .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  text-decoration: none;
  color: #000;
}

.articles-on-theme .article__image-container {
  position: relative;
  border-radius: 20px;
    border: 1px solid #cfcfcf;  
}

.articles-on-theme .article__image-container .hover-effect {
  position: absolute;
  border-radius: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(101, 164, 186, 0.4);
  display: -ms-grid;
  display: grid;
  place-items: center;
  opacity: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.articles-on-theme .article__image-container .hover-effect img {
  margin-right: 250px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.articles-on-theme .article:hover .article__image-container .hover-effect {
  opacity: 1;
}

.articles-on-theme .article:hover .article__image-container .hover-effect img {
  margin-right: 0px;
}

.articles-on-theme .article__image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 1.3;
}

.articles-on-theme .article__title {
  font-weight: 600;
  min-height: 40px;
}

@media screen and (max-width: 768px) {
  .article-grid-section {
    margin-top: 50px;
    row-gap: 50px;
  }
  .article-grid-section__grid {
    -webkit-column-gap: 18px;
            column-gap: 18px;
    row-gap: 50px;
  }
}

@media screen and (max-width: 600px) {
  .article-grid-section {
    margin-top: 35px;
    row-gap: 30px;
  }
  .article-grid-section__grid {
    -webkit-column-gap: 8px;
            column-gap: 8px;
    row-gap: 30px;
  }
  .article-grid-section__item {
    grid-column: span 6;
  }
  .articles-on-theme .article__title, .articles-on-theme .article__preview-text {
    padding-right: 10px;
  }
  .articles-on-theme .article:last-child {
    display: none;
  }

  .articles-on-theme .article__image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 1.23;
  }
}

@media screen and (max-width: 550px){
  .articles-on-theme .article__title {
    min-height: 34px;/*34*/
  }
}

.has-iframe .fancybox__content {
  padding: 0px;
}

.video-preview .thumbnail-container {
  position: relative;
}

.video-preview .thumbnail-container .thumbnail {
  border-radius: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.video-preview .thumbnail-container .play-button {
  display: -ms-grid;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 128px;
  height: 128px;
  border-radius: 100%;
  border: 1px solid #fff;
}

.video-preview .thumbnail-container .play-button img {
  margin-left: 5px;
}

.video-preview .thumbnail-container .play-button:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.video-preview .video-title {
  font-weight: 600;
  margin-top: 15px;
}

@media screen and (max-width: 850px) {
  .video-preview .thumbnail-container .thumbnail {
    border-radius: 16px;
  }
  .video-preview .thumbnail-container .play-button {
    width: 74px;
    height: 74px;
  }
  .video-preview .thumbnail-container .play-button img {
    margin-left: 0px;
    width: 20px;
  }
  .video-preview .video-title {
    margin-top: 14px;
  }
}

@media screen and (max-width: 450px) {
  .video-preview .thumbnail-container .thumbnail {
    border-radius: 14px;
  }
  .video-preview .thumbnail-container .play-button {
    width: 50px;
    height: 50px;
  }
  .video-preview .thumbnail-container .play-button img {
    width: 13px;
  }
  .video-preview .video-title {
    margin-top: 16px;
  }
}

.article-header {
  width: 100vw;
  max-width: calc(1280px - var(--container-padding));
  margin-top: 120px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 80px;
          column-gap: 80px;
}

.article-header__title-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-column: 1/7;
  width: 100%;
}

.article-header__title-block .link-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 17px;
          column-gap: 17px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  text-decoration: none;
  color: black;
}

.article-header__title-block .link-back__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 14px;
}

.article-header__title-block .link-back__name {
  font-size: 18px;
  line-height: 22px;
}

.article-header__title-block .link-back:hover {
  color: #8a7b9f;
}

.article-header__title-block .article-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 14px;
          column-gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-self: flex-end;
  -webkit-align-self:flex-end;
  -webkit-box-align:flex-end;
}

.article-header__title-block .article-data__date::after {
  content: " г";
}

.article-header__title-block .article-data__separation-line {
  height: 16px;
  width: 5px;
  background-color: #000;
}

.article-header__title-block .article-data__times-read::before {
  content: "Прочитано ";
}

.article-header__title-block .article-data__times-read::after {
  content: " раз";
}

.article-header__title {
  margin: 41px 0px 79px 0px;
}

.article-header__article-image-container {
  position: relative;
  grid-column: 7/-1;
}

.article-header__article-image-container .reading-time {
  --block-size: 140px;
  position: absolute;
  width: var(--block-size);
  height: var(--block-size);
  border-radius: 100%;
  background-color: #e1eef2;
  top: calc(var(--block-size) / (-2));
  left: calc(var(--block-size) / (-2));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 5px;
  text-align: center;
}

.article-header__article-image-container .reading-time__time {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}

.article-header__article-image-container .reading-time__time::after {
  content: " мин.";
}

.article-header__article-image-container .reading-time__title {
  max-width: 10ch;
  text-align: center;
}

.article-header__article-image-container .article-image {
  width: 624px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .article-header {
    -webkit-column-gap: 35px;
            column-gap: 35px;
  }
  .article-header__title {
    margin: 37px 0px 73px 0px;
  }
  .article-header__article-image-container {
    position: relative;
  }
  .article-header__article-image-container .article-image {
    height: 353px;
    width: auto;
  }
}

@media screen and (max-width: 700px) {
  .article-header {
    -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
    row-gap: 23px;
  }
  .article-header__title-block {
    grid-column: 1/-1;
    max-width: calc(100% - 35px);
  }
  .article-header__title-block .link-back {
    -webkit-column-gap: 16px;
            column-gap: 16px;
  }
  .article-header__title-block .link-back__arrow {
    width: 10px;
  }
  .article-header__title-block .link-back__name {
    font-size: 14px;
    line-height: 17px;
  }
  .article-header__title-block .article-data {
    -webkit-column-gap: 11px;
            column-gap: 11px;
  }
  .article-header__title-block .article-data__separation-line {
    width: 3px;
  }
  .article-header__title {
    margin: 32px 0px 24px 0px;
  }
  .article-header__article-image-container {
    grid-column: 1/-1;
  }
  .article-header__article-image-container .reading-time {
    --block-size: 123px;
    top: calc(100% - 12px - var(--block-size));
    left: calc(100% - 50px - var(--block-size));
    row-gap: 6px;
  }
  .article-header__article-image-container .reading-time__time {
    font-size: 20px;
    line-height: 24px;
  }
  .article-header__article-image-container .article-image {
    width: 100%;
    height: 300px;
    margin-left: calc(-1 * var(--container-padding));
  }
}

@media screen and (max-width: 550px) {
  .article-header {
    margin-top: 30px;
  }
  .article-header__article-image-container {
    grid-column: 1/-1;
  }
  .article-header__article-image-container .reading-time {
    left: calc(100% - 30px - var(--block-size));
  }
  .article-header__article-image-container .article-image {
    height: 200px;
  }
}

.article-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 94px;
}

.article {
  max-width: 802px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  --article-row-gap: 34px;
  row-gap: var(--article-row-gap);
}

.article blockquote {
  position: relative;
  font-style: italic;
  color: #959595;
}

.article blockquote::before {
  background-image: url("https://doctor-guzel.ru/assets/img/quote-marks.svg");
  background-size: 46px 38px;
  height: 38px;
  min-width: 46px;
  content: "";
  -webkit-filter: brightness(0) saturate(100%);
          filter: brightness(0) saturate(100%);
  position: absolute;
  left: -77px;
  top: 5px;
}

.article h3 {
  font-weight: 700;
  font-size: 31px;
  line-height: 38px;
  position: relative;
  margin-top: 32px;
}

.article h3 .header-numeration {
  position: absolute;
  left: -77px;
  top: 0;
}

.article h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  margin-top: 20px;
  margin-bottom: -16px;
}

.article__image-container {
  margin-top: 10px;
}

.article__image-container .image-caption {
  margin-top: 16px;
  color: #959595;
  font-style: italic;
}

h6 {
  padding: 38px 40px;
  background-color: rgba(100, 164, 185, 0.1);
  font-weight: 500;
}

.about .about__info .project-button{
  position: absolute;
  bottom: 0;
}

.about__info b {
  font-weight: 600;
}

.article__paragraph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.article .article__unordered-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  padding-left: 10px;
}

.article .article__unordered-list li::before {
  content: "• ";
}

.article .article__ordered-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  list-style-type: decimal;
  list-style-position: inside;
}

@media screen and (max-width: 1100px) {
  .article blockquote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 33px;
            column-gap: 33px;
  }
  .article blockquote::before {
    position: unset;
    margin-top: 5px;
  }
  .article h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-column-gap: 19px;
            column-gap: 19px;
  }
  .article h3 .header-numeration {
    position: unset;
  }
}

@media screen and (max-width: 768px) {
  .article-container {
    padding-top: 50px;
  }
  .article {
    --article-row-gap: 40px;
  }
  .article h3 {
    margin-top: 25px;
  }
  .article h4 {
    font-size: 20px;
    line-height: 24px;
    margin-top: 0px;
    margin-bottom: -20px;
  }
  .article__image-container {
    margin-top: 0px;
  }
  h6 {
    padding: 40px 40px;
  }
}

@media screen and (max-width: 550px) {
  .article-container {
    padding-top: 15px;
  }
  .article {
    --article-row-gap: 20px;
  }
  .article blockquote {
    -webkit-column-gap: 18px;
            column-gap: 18px;
  }
  .article blockquote::before {
    background-size: 20px 17px;
    height: 17px;
    min-width: 20px;
  }
  .article h3 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 22px;
  }
  .article h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: -4px;
  }
  .article__image-container {
    margin-top: 0px;
    margin-bottom: -6px;
  }
  .article__image-container .image-caption {
    margin-top: 8px;
  }
  h6 {
    padding: 20px 15px;
  }
}

.articles-next-prev {
  max-width: 864px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 32px;
          column-gap: 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 54px;
}

.articles-next-prev .article-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #d3d3d3;
  border-radius: 20px;
  padding: 30px;
  -webkit-column-gap: 25px;
          column-gap: 25px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  text-decoration: none;
  color: black;
}

.articles-next-prev .article-link img {
  max-width: 41px;
}

.articles-next-prev .article-link:hover {
  background-color: rgba(100, 164, 185, 0.1);
}

.articles-next-prev .article-link__text {
  display: flex;
  flex-direction: column;
  row-gap: 13px;
  width: 100%;
}

.articles-next-prev .article-link__text .type {
  color: #d3d3d3;
  text-align: center;
}

.articles-next-prev .article-link__text .name {
  max-width: 27ch;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: fit-content;
  text-decoration: underline;
}


.articles-next-prev #next-article {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.articles-next-prev #next-article img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.articles-next-prev #next-article .type::after {
  content: "Следующая статья";
}

.articles-next-prev #next-article .name{
  align-self: flex-end;
}

.articles-next-prev #prev-article .type::after {
  content: "Предыдущая статья";
}

@media screen and (max-width: 950px) {
  .articles-next-prev .article-link__text .name {
    max-width: 20ch;
  }
}

@media screen and (max-width: 768px) {
  .articles-next-prev {
    -webkit-column-gap: 25px;
            column-gap: 25px;
    margin-top: 50px;
  }
  .articles-next-prev .article-link {
    border-radius: 16px;
    width: 100%;
  }
  .articles-next-prev .article-link__text .name {
    max-width: 20ch;
  }
}

@media screen and (max-width: 760px) {
  .articles-next-prev .article-link__text .name {
    max-width: 15ch;
  }
  .articles-next-prev .article-link__text .type {
    text-align: start;
  }
}

@media screen and (max-width: 680px) {
  .articles-next-prev #next-article .name {
    display: none;
  }
  .articles-next-prev #next-article .type::after {
    content: "След. статья";
  }
  .articles-next-prev #prev-article .name {
    display: none;
  }
  .articles-next-prev #prev-article .type::after {
    content: "Пред. статья";
  }

  .articles-next-prev #next-article .type{
    align-self: flex-end;
    width: fit-content;
  }
}

@media screen and (max-width: 555px) {
  .articles-next-prev {
    margin-top: 30px;
    column-gap: 8px;
  }
  .articles-next-prev img {
    max-width: 39px;
  }
  .articles-next-prev .article-link {
    padding: 9px;
    border-radius: 14px;
    -webkit-column-gap: 18px;
            column-gap: 18px;
  }
  #next-article {
    padding-left: 17px;
  }
  #prev-article {
    padding-right: 17px;
  }
  
}

@media screen and (max-width: 398px) {
  .articles-next-prev #next-article .type{
    width: 45px;
  }
}

.videos-on-theme__head-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.videos-on-theme__head-panel .selectors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-column-gap: 95px;
          column-gap: 95px;
}

.videos-on-theme__head-panel .selectors button {
  background-color: transparent;
  border: none;
  outline: none;
  color: black;
}

.videos-on-theme__head-panel .selectors .video-type-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  cursor: pointer;
  position: relative;
}

.videos-on-theme__head-panel .selectors .video-type-selector img {
  width: 10px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.videos-on-theme__head-panel .selectors .video-type-selector_active img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.videos-on-theme__head-panel .selectors .video-sort-selector {
  cursor: pointer;
  position: relative;
}

.videos-on-theme__head-panel .video-menu {
  position: absolute;
  background-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;
  row-gap: 16px;
  padding: 24px 51px 24px 31px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-shadow: 0px 7px 37px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 7px 37px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  max-width: 200px;
  top: 100px;
  left: -30px;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  z-index: 100;
  visibility: hidden;
}

.videos-on-theme__head-panel .video-menu .menu-item {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.videos-on-theme__head-panel .video-menu .menu-item:hover {
  color: #8a7b9f;
}

.videos-on-theme__head-panel .video-menu_active {
  top: 40px;
  opacity: 1;
  visibility: visible;
}

.videos-on-theme__head-panel .video-sort-menu {
  max-width: 200px;
  padding: 24px 31px 24px 31px;
  left: unset;
  right: 0;
}

@media screen and (max-width: 768px) {
  .videos-on-theme {
    margin-top: 134px;
  }
  .videos-on-theme .selectors {
    -webkit-column-gap: 80px;
            column-gap: 80px;
  }
}

@media screen and (max-width: 550px) {
  .videos-on-theme {
    margin-top: 32px;
    font-size: 14px;
    line-height: 17px;
  }
  .videos-on-theme__head-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 33px;
  }
  .videos-on-theme__head-panel .video-type-menu {
    left: 0;
  }
  .videos-on-theme .selectors {
    -webkit-column-gap: 40px;
            column-gap: 40px;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .videos-on-theme .selectors .video-type-selector img {
    width: 8px;
  }
  .videos-on-theme .selectors .video-sort-selector img {
    width: 21px;
  }
}


.form-header {
  -ms-grid-columns: auto;
      grid-template-columns: auto;
}

.form-header__title-block {
  row-gap: 40px;
  font-family: "Montserrat", sans-serif;
}

.appointment-form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 32px;
          column-gap: 32px;
  row-gap: 40px;
  margin-top: 77px;
  font-family: "Montserrat";
}

.appointment-form__input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.appointment-form__input-container .input-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

.appointment-form__input-container .input-label_required::after {
  content: " *";
  color: #fd8181;
}

.appointment-form__text-input::-webkit-input-placeholder {
  color: #d3d3d3;
}

.appointment-form__text-input:-ms-input-placeholder {
  color: #d3d3d3;
}

.appointment-form__text-input::-ms-input-placeholder {
  color: #d3d3d3;
}

.appointment-form__text-input::placeholder {
  color: #d3d3d3;
}

.appointment-form .custom-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #d3d3d3;
  cursor: pointer;
  position: relative;
  width: 100%;
}

.appointment-form .custom-selector__arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 11px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.appointment-form .custom-selector__value {
  max-width: 23ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.appointment-form .custom-selector__menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 7px 37px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 7px 37px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 24px 20px 30px 32px;
  width: 100%;
  visibility: hidden;
}

.appointment-form .custom-selector__menu .menu-list {
  max-height: 250px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  padding-right: 12px;
  scrollbar-width: thin;
  color: rebeccapurple;
}

.appointment-form .custom-selector__menu .menu-list::-webkit-scrollbar {
  width: 9px;
}

.appointment-form .custom-selector__menu .menu-list::-webkit-scrollbar-track {
  background: black;
  border: 4px solid transparent;
  background-clip: content-box;
}

.appointment-form .custom-selector__menu .menu-list::-webkit-scrollbar-thumb {
  background: #191919;
  border: 1px solid black;
  border-radius: 20px;
}

.appointment-form .custom-selector__menu p {
  font-size: 16px;
  line-height: 20px;
  color: black;
  -webkit-transition: 0.25s color;
  transition: 0.25s color;
}

.appointment-form .custom-selector__menu p:hover {
  color: #8a7b9f;
}

.appointment-form .custom-selector_opened .custom-selector__menu {
  visibility: visible;
}

.appointment-form .custom-selector_opened .custom-selector__arrow {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.appointment-form__text-input,
.appointment-form .custom-selector {
  padding: 26px 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  outline: none;
  border: 1px solid #d3d3d3;
  border-radius: 20px;
  -webkit-transition: 0.25s border;
  transition: 0.25s border;
}

.appointment-form__text-input:focus,
.appointment-form .custom-selector:focus {
  border: 1px solid #8a7b9f;
}

.appointment-form__text-input_filled,
.appointment-form .custom-selector_filled {
  border: 1px solid black;
  color: black;
}

.appointment-form__textarea {
  grid-column: span 2;
  -ms-grid-row-span: 2;
      grid-row-end: span 2;
}

.appointment-form__textarea textarea {
  min-height: 160px;
  max-height: 400px;
  height: 100%;
  background: url("https://doctor-guzel.ru/assets/img/custom-resizer.svg") no-repeat right 12px bottom 12px;
}

.appointment-form__textarea textarea::-webkit-resizer {
  display: none;
}

.appointment-form__promocode {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 100%;
}

.appointment-form__promocode .input-label {
  font-weight: 600;
}

.appointment-form__promocode .custom-checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
          column-gap: 12px;
}

.appointment-form__promocode .custom-checkbox {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid #d3d3d3;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: relative;
}

.appointment-form__promocode .custom-checkbox img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.appointment-form__promocode .custom-checkbox_checked {
  background-color: #8a7b9f;
}

.appointment-form__promocode .custom-checkbox:hover {
  border: 1px solid #8a7b9f;
}

.appointment-form__promocode #promocode {
  margin-top: 14px;
  width: 100%;
}

.appointment-form__info {
  grid-column: 1/-1;
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}

.appointment-form__info .form-info-text {
  max-width: 75ch;
  font-size: 14px;
  line-height: 120%;
}

.appointment-form__info .form-info-text:first-child::before {
  content: "* ";
  color: #fd8181;
  font-weight: 700;
}

.appointment-form__info .form-info-link {
  color: #8a7b9f;
}

.appointment-form__project-button {
  margin-top: 22px;
  padding: 21px 80px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 900px) {
  .appointment-form {
    -ms-grid-columns: (calc(100% / 2))[2];
        grid-template-columns: repeat(2, calc(100% / 2));
    -webkit-column-gap: 18px;
            column-gap: 18px;
    row-gap: 40px;
    margin-top: 65px;
  }
  .appointment-form__input-container {
    row-gap: 14px;
  }
  .appointment-form__textarea textarea {
    min-height: 191px;
  }
  .appointment-form .custom-selector__value {
    max-width: calc(100% - 30px);
  }
  .appointment-form__text-input,
  .appointment-form .custom-selector {
    padding: 17px 25px;
    border-radius: 16px;
  }
  .appointment-form__project-button {
    margin-top: 28px;
    padding: 17px 66px;
  }
}

@media screen and (max-width: 550px) {
  .appointment-form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 30px;
    margin-top: 31px;
  }
  .appointment-form__input-container {
    row-gap: 15px;
  }
  .appointment-form__input-container .input-label {
    font-size: 14px;
    line-height: 17px;
  }
  .appointment-form__text-input,
  .appointment-form .custom-selector {
    padding: 17px 17px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 17px;
  }
  .appointment-form .custom-selector__arrow {
    width: 9px;
  }
  .appointment-form__textarea {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .appointment-form__textarea textarea {
    min-height: 150px;
    background: url("https://doctor-guzel.ru/assets/img/custom-resizer.svg") no-repeat right 8px bottom 8px;
    background-size: 12px;
  }
  .appointment-form__info {
    grid-column: 1/-1;
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
  .appointment-form__info .form-info-text {
    font-size: 12px;
  }
  .appointment-form__project-button {
    margin-top: 15px;
    padding: 17px 0px;
    width: 100%;
  }
}

.success-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 43px;
  position: relative;
}

.success-text__info {
  font-size: 18px;
  line-height: 133%;
  text-align: center;
}

.success-text .check-mark-container {
  width: 136px;
  height: 136px;
  position: relative;
  background-color: #c0e6ba;
  border-radius: 50%;
  margin-top: 11px;
}

.success-text .check-mark-container img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.success-text .decorative-circle {
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 770px;
  height: 770px;
  border-radius: 50%;
  background-color: #EFF6F8;
  z-index: -1;
  -webkit-filter: blur(70px);
          filter: blur(70px);
}

@media screen and (max-width: 768px) {
  .success-text__info {
    font-size: 16px;
  }
  .success-text .check-mark-container {
    width: 110px;
    height: 110px;
  }
  .success-text .decorative-circle {
    width: 470px;
    height: 470px;
    -webkit-filter: blur(40px);
            filter: blur(40px);
  }
}

@media screen and (max-width: 550px) {
  .success-text {
    row-gap: 35px;
    height: 60vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .success-text__info {
    font-size: 14px;
  }
  .success-text .check-mark-container {
    width: 100px;
    height: 100px;
  }
  .success-text .decorative-circle {
    width: 370px;
    height: 370px;
    -webkit-filter: blur(30px);
            filter: blur(30px);
  }
}


/* Обо мне */

.about-greeting-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 32px;
          column-gap: 32px;
  position: relative;
}

.about-greeting-block .blurred-circle {
  width: 619px;
  height: 619px;
  left: -300px;
  top: 150px;
}

.about-greeting-block__text {
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-column: 1/6;
  margin-top: 151px;
  -ms-flex-negative: 5;
      flex-shrink: 5;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
      grid-template-columns: auto;
}

.about-greeting-block__project-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 30px;
}

.about-greeting-block__text-overflow {
  padding-top: 59px;
}

.about-greeting-block .about-info {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  max-width: 45ch;
  margin-bottom: 25px;
}

.about-greeting-block .extra-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  max-width: 44ch;
  position: relative;
  overflow: hidden;
}

.about-greeting-block .extra-text_unrolled {
  max-height: unset !important;
}

.about-greeting-block__show-more {
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-column-gap: 7px;
          column-gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 14px;
  display: none;
}

.about-greeting-block__show-more::before {
  content: "Развернуть";
  font-size: 16px;
  line-height: 20px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.about-greeting-block__show-more img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  height: 13px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.about-greeting-block__show-more_unrolled::before {
  content: "Скрыть";
}

.about-greeting-block__show-more_unrolled img {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.about-greeting-block__portrait {
  position: relative;
  grid-column: 7/-1;
  background: linear-gradient(20.93deg, #f2f2f2 21.75%, rgba(242, 242, 242, 0) 73.81%);
  margin: -28px -32px 0px 0px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 50px 0px 0px;
  min-height: 650px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: fit-content;
}

.about-greeting-block__guzel-img {
  max-height: 713px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-qualification {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 64px;
          column-gap: 64px;
  max-width: 800px;
  margin-top: 97px;
}

.about-qualification-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-qualification h3 {
  margin-bottom: 55px;
}

.about-qualification__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 14px;
  font-size: 16px;
  line-height: 18px;
  max-width: 37ch;
  list-style: none;
}

.about-qualification__list p {
  padding-left: 29px;
  position: relative;
}

.about-qualification__list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background-color: black;
  border-radius: 5px;
}

.about-diplomas {
  width: 100%;
  background-color: #f2f2f2;
  margin-top: 95px;
  padding: 80px 105px;
}

.about-diplomas h2 {
  position: absolute;
  left: 385px;
  z-index: 100;
}

.about-diplomas__container {
  position: relative;
  padding-right: 100px;
}

.about-diplomas__swiper-container {
  max-width: calc(min(100%, 905px));
  overflow: hidden;
}

.about-diplomas__swiper-arrows {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

.about-diplomas__swiper-pagination {
  display: none;
}

.about-diplomas-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about-diplomas-slide .diploma-slide__img {
  min-width: 350px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-diplomas-slide .diploma-slide__img .hover-effect {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(101, 163, 186, 0.4);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  opacity: 0;
  cursor: pointer;
}

.about-diplomas-slide .diploma-slide__img .hover-effect::after {
  content: url("https://doctor-guzel.ru/assets/img/diploma-looking-glass.svg");
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-diplomas-slide .diploma-slide__img:hover .hover-effect {
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.14);
  opacity: 1;
}

.about-diplomas-slide .diploma-slide__text {
  max-width: 50ch;
}

.about-diplomas-slide .diploma-slide__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 15px;
}

.about-info-blocks {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 89px;
}

.about-info-blocks__container {
  max-width: 802px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 96px;
}

.about-info-blocks__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 32px;
          column-gap: 32px;
}

.about-info-blocks__block:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.about-info-blocks__block .image-container {
  min-width: calc(max(50%, 250px));
  min-height: 440px;
}

.about-info-blocks__block .image-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-info-blocks__block .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.about-info-blocks__block h2 {
  margin-bottom: 14px;
}

.about-projects {
  margin-top: 94px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-projects__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 32px;
          column-gap: 32px;
  row-gap: 32px;
  justify-items: center;
}

.about-projects h2 {
  grid-column: 1/-1;
  font-size: 50px;
  line-height: 64px;
  margin-bottom: 64px;
}

.about-projects .channel-img {
  position: absolute;
  top: 35px;
  right: 35px;
}

.about-projects .video-preview {
  grid-column: span 5;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 328px;
}

.about-projects .video-preview_big {
  grid-column: span 7;
}

.about-projects .video-preview_small {
  grid-column: span 4;
}

.about-projects .video-preview .title {
  position: absolute;
  left: 0;
  bottom: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 62px 52px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about-projects .video-preview .title__text {
  color: #fff;
}

.about-projects .video-preview .video-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -0.04em;
  font-family: "Oswald", sans-serif;
}

.about-projects .video-preview .video-description {
  margin-top: 24px;
  height: 2em;
  font-weight: 600;
}

.about-projects .video-preview .play-button {
  opacity: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.about-projects .video-preview .thumbnail-container {
  width: 100%;
  height: 100%;
  max-height: 328px;
  min-width: 140px;
}

.about-projects .video-preview .thumbnail-container .thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-projects .video-preview .hover-effect {
  background-color: rebeccapurple;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #65a4ba;
  opacity: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.about-projects .video-preview:hover .hover-effect {
  opacity: 0.4;
}

.about-projects .video-preview:hover .play-button {
  opacity: 1;
}

.about-projects__show-more {
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-column-gap: 7px;
          column-gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 14px;
  display: none;
  grid-column: 1/-1;
  color: black;
}

.about-projects__show-more::before {
  content: "Развернуть";
  font-size: 16px;
  line-height: 20px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.about-projects__show-more img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  height: 13px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.about-projects__show-more_unrolled::before {
  content: "Скрыть";
}

.about-projects__show-more_unrolled img {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

@media screen and (max-width: 1100px) {
  .about-diplomas {
    padding: 50px 40px;
  }
}

@media screen and (max-width: 1000px) {
  .about-greeting-block .about-info {
    margin-bottom: 7px;
  }
  .about-greeting-block__show-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .about-greeting-block .extra-text {
    max-height: 12em;
  }
  .about-diplomas {
    margin-top: 64px;
  }
  .about-diplomas__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 50px;
    padding: 0px 0px 75px 0px;
  }
  .about-diplomas-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 40px;
  }
  .about-diplomas__swiper-pagination {
    display: block;
  }
  .about-diplomas__swiper-arrows {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 120;
  }
  .about-diplomas h2 {
    position: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 10px;
  }
  .about-projects__grid {
    -webkit-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }
  .about-projects .video-preview .title {
    padding: 70px 30px;
  }
}

@media screen and (max-width: 768px) {
  .about-greeting-block {
    -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
    position: relative;
  }
  .about-greeting-block .blurred-circle {
    top: 50px;
    left: -450px;
  }
  .about-greeting-block__text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    margin-top: 145px;
  }
  .about-greeting-block__text-overflow {
    padding-top: 32px;
  }
  .about-greeting-block .about-info {
    font-size: 16px;
    line-height: 19.5px;
  }
  .about-greeting-block .extra-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
    max-height: 12em;
  }
  .about-greeting-block .extra-text .project-paragraph {
    max-width: 27ch;
  }
  .about-greeting-block__portrait {
    grid-column: 4/-1;
    margin: -28px -32px 0px 0px;
    padding: 0px 10px 0px 0px;
    min-width: 290px;
    min-height: 588px;
  }
  .about-greeting-block__guzel-img {
    max-height: 713px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .about-qualification {
    -webkit-column-gap: 20px;
            column-gap: 20px;
    margin-top: 68px;
  }
  .about-qualification h3 {
    margin-bottom: 42px;
  }
  .about-info-blocks {
    margin-top: 64px;
  }
  .about-info-blocks h2 {
    font-size: 50px;
    line-height: 64px;
  }
  .about-info-blocks__container {
    row-gap: 64px;
  }
  .about-info-blocks__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 42px;
            column-gap: 42px;
  }
  .about-projects {
    margin-top: 51px;
  }
  .about-projects__grid {
    max-height: 1186px;
    overflow: hidden;
  }
  .about-projects__grid_unrolled {
    max-height: unset;
  }
  .about-projects h2 {
    font-size: 55px;
    margin-bottom: 43px;
    max-width: 13ch;
    text-align: center;
  }
  .about-projects .channel-img {
    top: 20px;
    right: 20px;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  .about-projects .video-preview {
    height: 382px;
  }
  .about-projects .video-preview .title {
    padding: 70px 30px;
  }
  .about-projects .video-preview .video-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 35px;
  }
  .about-projects .video-preview .thumbnail-container {
    max-height: 382px;
  }
  .about-projects__show-more {
    margin-top: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 680px) {
  .about-info-blocks__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 18px;
  }
  .about-info-blocks__block:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about-projects__grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
  .about-projects .video-preview {
    grid-column: span 2;
  }
  .about-projects .video-preview_big {
    grid-column: span 2;
  }
  .about-projects .video-preview_small {
    grid-column: span 2;
  }
  .about-projects .video-preview .video-title {
    font-size: 30px;
    line-height: 34px;
  }
}

@media screen and (max-width: 550px) {
  .about-greeting-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about-greeting-block .blurred-circle {
    display: none;
  }
  .about-greeting-block h1 {
    position: absolute;
    top: 56px;
    left: 16px;
  }
  .about-greeting-block__text {
    margin-top: 24px;
  }
  .about-greeting-block__text-overflow {
    padding-top: 0px;
  }
  .about-greeting-block__portrait {
    margin: 0;
    padding: 0;
    width: 100vw;
    margin-left: -16px;
    overflow: hidden;
    min-height: 440px;
  }
  .about-greeting-block .about-info {
    max-width: unset;
    margin-bottom: 3px;
  }
  .about-greeting-block .extra-text {
    max-height: unset;
    max-width: unset;
    row-gap: 15px;
  }
  .about-greeting-block .extra-text .project-paragraph {
    max-width: unset;
  }
  .about-greeting-block__show-more {
    display: none;
  }
  .about-greeting-block__project-button {
    width: 100%;
    margin-top: 24px;
  }
  .about-greeting-block__guzel-img {
    position: absolute;
    max-height: 524px;
    right: 0px;
    top: 0;
  }
  .about-qualification {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    row-gap: 24px;
    margin-top: 36px;
  }
  .about-qualification-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .about-qualification__list {
    max-width: unset;
    font-size: 14px;
  }
  .about-qualification h3 {
    margin-bottom: 18px;
  }
  .about-diplomas {
    padding: 20px 20px;
    margin-top: 35px;
  }
  .about-diplomas__container {
    row-gap: 34px;
    padding: 0px 0px 50px 0px;
  }
  .about-diplomas-slide {
    row-gap: 25px;
  }
  .about-diplomas-slide .diploma-slide__img {
    min-width: unset;
  }
  .about-diplomas__swiper-arrows {
    display: none;
  }
  .about-info-blocks {
    margin-top: 20px;
  }
  .about-info-blocks__container {
    row-gap: 20px;
  }
  .about-info-blocks__block .text {
    row-gap: 17px;
  }
  .about-info-blocks h2 {
    font-size: 32px;
    line-height: 64px;
    margin-bottom: -10px;
  }
  .about-projects {
    margin-top: 20px;
  }
  .about-projects h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 18px;
  }
  .about-projects__grid {
    row-gap: 8px;
    -webkit-column-gap: 8px;
            column-gap: 8px;
    max-height: 586px;
  }
  .about-projects__grid_unrolled {
    max-height: unset;
  }
  .about-projects .channel-img {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    top: 0px;
    right: 0px;
  }
  .about-projects .video-preview {
    height: 190px;
  }
  .about-projects .video-preview .title {
    padding: 35px 15px;
  }
  .about-projects .video-preview .video-title {
    font-size: 16px;
    line-height: 20px;
  }
  .about-projects .video-preview .video-description {
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    margin-top: 19px;
  }
  .about-projects__show-more {
    margin-top: 19px;
  }
}

@media screen and (max-width: 400px) {
  .about-greeting-block__guzel-img {
    right: -80px;
    min-width: 367.45px; 
  }
}

.scroll-to-top-btn{
  background-color: rgba(138, 123, 159, 0.2);
  width: 106px;
  height: 106px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: fixed;
  bottom: 44px;
  left: calc(100%);
  z-index: 100;
  cursor: pointer;
}

.scroll-to-top-btn_fixed{
  display: flex;
  left: calc(100% - 122px);
}


@media screen and (max-width: 768px) {
  .scroll-to-top-btn_fixed{
    left: calc(100% - 124px);
  }
  

}

@media screen and (max-width: 550px) {

  .scroll-to-top-btn{
    width: 60px;
    height: 60px;
    bottom: 22px;
  }

  .scroll-to-top-btn img{
    height: 25px;
  }
  
  .scroll-to-top-btn_fixed{
    left: calc(100% - 67px);
  }
  

}
/*# sourceMappingURL=style.css.map */

.asterisk::before{
	//content:'*';
	
}

.footer {
  padding-top: 36px;
  border-top: 1px solid #000000;
}

.footer__columns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto 1fr;
      grid-template-columns: 1fr auto 1fr;
  gap: 87px;
  margin-bottom: 48px;
}

.footer__divider {
  background: #DBDBDB;
  height: 100%;
  width: 1px;
}

.footer__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 46px;
}

.footer__logo {
  font-weight: 700;
  font-size: 24px;
  line-height: 22px;
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
  font-family: 'Oswald', sans-serif;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}

.footer__nav a {
  color: #000000;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  transition: .3s;
  white-space: nowrap;
}

.footer__nav a.active, .footer__nav a:hover {
  color: #8A7B9F;
}

.footer__nav a.active {
  font-weight: 700;
}

.footer__info {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.footer__info p + p {
  margin-top: 20px;
}

.footer__controls {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
}

.footer__btn {
  border-radius: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  transition: .3s;
  text-align: center;
  padding: 20px;
  width: 269px;
}

.footer__btn.purple {
  background: #8A7B9F;
  border: none;
  color: #FFFFFF;
}

.footer__btn.purple:hover {
  background-color: #af94d6;
}

.footer__btn.outlined {
  background: #FFFFFF;
  border: 1px solid #8A7B9F;
  display: block;
  color: #8A7B9F;
  margin-top: 16px;
  text-decoration: none;
}

.footer__btn.outlined:hover {
  background-color: #af94d6;
  color: #FFFFFF;
}

.footer__messangers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23px;
}

.footer__messangers a img {
  width: 34px;
}

.footer__text {
  color: #ACACAC;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.footer__text a {
  color: inherit;
  text-decoration: underline;
}

.footer__text a:hover {
  text-decoration: none;
}

.footer__text + .footer__text {
  margin-top: 11px;
}

.footer__contraindications {
  color: #ACACAC;
  font-weight: 250;
  font-size: 27.82px;
  line-height: 32px;
  letter-spacing: 0.007em;
  margin-top: 22px;
  text-transform: uppercase;
}

.footer__mobile-nav {
  display: none;
}

/* Прием в клинике */
.reception{
  margin-top: 100px;
  margin-bottom: 88px;
}
.reception .project-button_color_dark-violet{
  color: white;
  text-decoration: none;
  display: inline-flex;
  padding: 0px 50px;
}
.reception .top{
  margin-top: 45px;
  margin-bottom: 90px;
}
.reception .top .imgbox{
  display: flex;
  align-items: flex-start;
}
.reception .top img{ width: 100%; }
.reception .top .img{
  width: 50%;
  margin-right: 104px;
}
.reception .top .service_list{
  width: 50%;
}
.reception .top .service_list .item{
  border-bottom: 1px solid #000000;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.reception .top .service_list .item .service{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.reception .top .service_list .item .service .price{
  font-family: 'Oswald';
  font-weight: 600;
  font-size: 32px;
  line-height: 30px;
  white-space: nowrap;
}
.reception .top .service_list .item .service span:first-child{
  margin-right: 40px;
}
.reception .top .service_list .item .service .price small{
  font-size: 16px;
}
.reception .top .info{
  display: flex;
  align-items: center;
  margin-bottom: 25px; 
}
.reception .top .info svg{
  width: 27px;
  height: 27px;
  margin-right: 11px;
}
.reception .top .img .info{
  display: none;
}
.links_to_services{
  text-align: center;
  margin-bottom: 90px;
}
.links_to_services .to_services{
  display: flex;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 8px;
  border: 1px solid #000000;
  border-radius: 20px;
  padding: 13px 35px;
  align-items: center;
  color: #212529;
  text-decoration: none;
  position: relative;
}
.links_to_services .to_services:after{
  content: '';
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAxMiAyMCI+CiAgPHBhdGggc3Ryb2tlPSIjMDAwIiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjMiIGQ9Im0zIDE3IDctNy03LTciLz4KPC9zdmc+Cg==');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 9px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
.links_to_services .to_services svg{
  width: 35px;
  height: 35px;
  margin-right: 30px;
  flex: 0 0 35px;
}
.links_to_services .project-button_color_dark-violet{
  margin-top: 42px;
}
.links_to_services.mob{ display: none; }
.links_to_services.all{ display: block !important; }
.check_up{
  margin-bottom: 90px;
}
.check_up .blocks{
  display: flex;
  align-items: flex-start;
}
.check_up .blocks > div{
  width: 50%;
}
.check_up h2{
  font-weight: 700;
  font-size: 50px;
  line-height: 52px;
  margin-bottom: 42px;
}
.check_up h3{
  margin-bottom: 55px;
}
.check_up .blocks > div:first-child{
  padding-right: 130px;
}
.check_up .blocks > div:last-child{
  background: #64A4B91A;
  padding: 60px 72px;
}
.check_up .info{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
}
.check_up .info svg{
  width: 30px;
  height: 30px;
  margin-right: 20px;
}
.check_up .footnote{
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #8A7B9F;
}
.check_up ul li{
  margin-bottom: 20px;
}
.check_up .buttons{
  margin-top: 50px;
  text-align: center;
}
.enrolll{
  margin-bottom: 50px;
}
.enrolll h1{
  text-align: center;
  margin-bottom: 60px;
}
.enrolll h2{
  text-align: center;
  margin-bottom: 50px;
}
.doctor{
  background: #F2F2F2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  margin-bottom: 50px;
}
.doctor img{
  margin-right: 32px;
}
.doctor h3{
  font-weight: 700;
  font-size: 50px;
  line-height: 64px;
  margin-bottom: 20px;
}
.doctor .list{
  display: flex;
}
.doctor ul{
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
}
.doctor ul:first-child{
  margin-right: 54px;
}
.faq{
  margin-bottom: 90px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  width: 70%;
  margin: 0 auto;
}
.faq h2{
  text-align: center;
  margin-bottom: 50px;
}
.faq .list{
  border-top: 1px solid #000;
}
.faq .list .item{
  border-bottom: 1px solid #000;
}
.faq .list .item .title{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  padding: 30px 0px;
  cursor: pointer;
  position: relative;
  padding-right: 30px; 
}
.faq .list .item .title::before,
.faq .list .item .title::after{
  content: '';
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  transition-duration: .4s !important;
  transition-property: transform;
  padding-right: 20px;
}
.faq .list .item .title::after{
  transform: translateY(-50%) rotate(90deg);
}
.faq .list .item.open .title::after{
  transform: translateY(-50%) rotate(0deg);
}
.faq .list .item .box{
  overflow: hidden;
  height: 0;
  transition-duration: .4s !important;
  transition-property: height;
}
.faq .list .item.open .box{
  height: auto;
}
.faq .list .item .box .sub{
  padding-bottom: 30px;
}
.faq .list .item .box .sub{
  display: flex;
}
@media screen and (max-width: 1300px) {
  .reception .top img{ margin-bottom: 25px; }
  .reception .top .img{ width: 50%; }
  .reception .top .service_list{ width: 50%; }
  .reception .top .service_list .info{ display: none; }
  .reception .top .img .info:first-child{ margin-top: 25px; }
  .reception .top .img .info{ display: flex; }
  .reception .top .service_list .item:nth-child(3){ margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
}
@media screen and (max-width: 1000px) {
  .reception .project-button_color_dark-violet { font-weight: 500; font-size: 16px; line-height: 20px; }
  .reception .top .img{ width: 60%; margin-right: 40px; }
  .reception .top .service_list{ width: 40%; }
  .links_to_services .to_services { width: 90%; } 
  .faq { width: 90%; }
  .check_up .blocks > div:first-child { padding-right: 40px; }
  .check_up .blocks > div:last-child { padding: 32px 37px; }
  .reception .top .service_list .item .service { display: block; }
  .reception .top .service_list .item .service span:first-child { display: block; margin-right: 0px; margin-bottom: 20px; width: 100%; }
  .reception .top .service_list .item { padding-bottom: 20px; margin-bottom: 20px; }
  .reception .top { margin-bottom: 20px; }
  .check_up h2 { font-weight: 700; font-size: 38px; line-height: 40px; margin-bottom: 20px; }
  .check_up .info { margin-bottom: 20px; }
  .check_up h3 { margin-bottom: 30px; }
  .check_up ul li { margin-bottom: 15px; }
  .check_up .blocks > div:last-child{ font-weight: 400; font-size: 16px; line-height: 18px; }
  .links_to_services { text-align: center; margin-bottom: 50px; }
  .check_up { margin-bottom: 50px; }
  .enrolll h1 { font-size: 55px; line-height: 50px; }
  .enrolll h2 { font-size: 38px; line-height: 64px; }
  .doctor img { width: 261px; }
  .doctor h3 { font-size: 38px; line-height: 64px; letter-spacing: -0.04em; margin-bottom: 5px; }
  .doctor .list { display: block; }
  .doctor { padding: 30px; }
  .doctor ul { font-size: 16px; line-height: 28px; }
  .faq h2 { font-size: 55px; line-height: 50px; }
}
@media screen and (max-width: 768px) {
  .reception .top .imgbox { display: block; }
  .reception .top .img { width: 100%; margin-right: 0; }
  .reception .top .service_list .info{ display: flex; }
  .reception .top .img .info{ display: none; }
  .reception .top .service_list { width: 100%; }
  .reception .top .service_list .item .service { display: flex; }
  .reception .top .service_list .item .service span:first-child { margin-bottom: 0px; }
  .reception .top .service_list .item:nth-child(3) { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #000000; }
  .links_to_services { display: none; }
  .links_to_services.mob{ display: block; }
  .links_to_services.mob div{ display: none; }
  .check_up .blocks { display: block; }
  .check_up .blocks > div:first-child { padding-right: 0; margin-bottom: 20px; }
  .check_up .blocks > div { width: 100%; }
  .check_up .buttons { margin-top: 30px; }
  .enrolll h1{ font-size: 32px; line-height: 30px; margin-bottom: 10px; }
  .enrolll h2{ font-size: 26px; line-height: 30px; margin-bottom: 25px; }
  .links_to_services { margin-bottom: 25px; }
  .doctor { display: block; }
  .doctor img { width: 261px; margin: 0 auto; margin-bottom: 18px; }
  .doctor h3 { font-size: 26px; line-height: 39px; }
  .doctor ul { font-size: 14px; line-height: 24px; }
  .doctor > div { width: 261px; margin: 0 auto; }
  .faq h2 { font-size: 32px; line-height: 30px; margin-bottom: 30px; }
  .faq .list .item .title { font-size: 14px; line-height: 17px;  padding: 15px 0px;  padding-right: 20px; }
  .faq .list .item .box { font-size: 14px; line-height: 17px; }
  .faq .list .item .title::before, .faq .list .item .title::after { width: 13px; height: 2px; }
  .links_to_services .to_services { width: 100%; }
  .check_up { margin-bottom: 30px; }
  .enrolll { margin-bottom: 30px; }
  .doctor { margin-bottom: 30px; } 
  .reception { margin-top: 100px; margin-bottom: -66px; }
  .faq { width: 100%; }
  .links_to_services .to_services { padding: 13px 20px; }
  .links_to_services .to_services svg { margin-right: 20px; }
  .links_to_services .to_services:after { right: 17px; }
}
@media screen and (max-width: 550px) {
  .reception { margin-top: 20px; margin-bottom: -36px; }
  .reception .project-button_color_dark-violet { width: 100%; justify-content: center; margin-bottom: 15px; }
  .links_to_services .to_services { text-align: left; font-size: 14px; line-height: 17px; }
  .reception .top .service_list .item .service { display: block; }
  .reception .top .service_list .item .service span:first-child { margin-bottom: 15px; }
}
@media screen and (max-width: 445px) {

}
/* Прием в клинике */

@media screen and (max-width: 1300px) {
  .footer__logo {
    display: none;
  }
  .footer__controls {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 44px;
    margin-bottom: 30px;
  }
  .footer__contraindications {
    font-size: 2.36vw;
    letter-spacing: -0.144vw;
    margin-top: 14px;
  }
}

@media screen and (max-width: 960px) {
  .footer__columns {
    gap: 50px;
    margin-bottom: 17px;
  }
  .footer__footer {
    display: -ms-grid;
    display: grid;
  }
  .footer__text:first-child {
    margin-top: 18px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer__contraindications {
    font-size: 2.33vw;
    letter-spacing: -0.15vw;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 28px;
  }
  .footer__header {
    display: none;
  }
  .footer__mobile-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 43px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__mobile-nav a {
    color: #000000;
    font-size: 18px;
    line-height: 22px;
    white-space: nowrap;
  }
  .footer__mobile-nav a.active, .footer__mobile-nav a:hover {
    color: #8A7B9F;
  }
  .footer__mobile-nav a.active {
    font-weight: 700;
  }
  .footer__columns {
    gap: 28px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-top: 28.8px;
    margin-bottom: 9px;
  }
  .footer__left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer__right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__controls {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    margin-bottom: 28px;
  }
  .footer__info {
    width: 100%;
  }
  .footer__info p + p {
    margin-top: 16px;
  }
  .footer__btn.outlined {
    margin-top: 14px;
  }
  .footer__messangers {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .footer__divider {
    display: none;
  }
  .footer__contraindications {
    font-size: 2.26vw;
  }
}

@media screen and (max-width: 640px) {
  .footer__contraindications {
    font-size: 4.7vw;
    line-height: 5vw;
    margin-top: 9px;
    letter-spacing: 0.025em;
  }
  .footer__contraindications span:first-child {
    letter-spacing: 0.38vw;
  }
  .footer__contraindications span:last-child {
    letter-spacing: 4.82vw;
  }
}

@media screen and (max-width: 480px) {
  .footer__mobile-nav a {
    font-size: 14px;
    line-height: 17px;
  }
  .footer__messangers a img {
    width: 27px;
  }
  .footer__controls {
    width: 100%;
  }
  .footer__btn {
    font-size: 14px;
    line-height: 17px;
    width: 100%;
  }
  .footer__info p {
    font-size: 14px;
    line-height: 17px;
  }
  .footer__text {
    font-size: 14px;
    line-height: 17px;
  }
  .footer__contraindications {
    font-size: 4.5vw;
    letter-spacing: 0.34vw;
    overflow: hidden;
  }
  .footer__contraindications span:first-child {
    letter-spacing: 0.6vw;
  }
  .footer__contraindications span:last-child {
    letter-spacing: 5.14vw;
  }
}

.iti--separate-dial-code .iti__selected-flag {
     background-color: rgba(0,0,0, 0) !important;  
}

.appointment-form__text-input{width: 100%;}





 
@media screen and (max-width: 768px){
.article-selector__article-groups{
    min-width: 92vw;
width: 92vw;
}


}
@media screen and (min-width: 768px){
.appointment .list .item .box .sub .content  {
 
     
    position: relative;
}

.appointment .list .item .box .sub .content .info {
 
     bottom: 32px;
    position: absolute;
}
}



a.more-btn {text-decoration:none;color:#fff !important}