@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Pacifico&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Oranienbaum&family=Pacifico&display=swap");
body {
  font-family: "Jost", serif;
  font-weight: 400;
  font-style: normal;
  background-color: #e7e7e7;
}

[class*=__container] {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

h1,
.h1 {
  font-family: "Oranienbaum", serif;
  font-weight: inherit;
  font-size: 39.0625px;
  text-transform: uppercase;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 31.25px;
  }
}

h2,
.h2 {
  font-family: "Oranienbaum", serif;
  font-weight: inherit;
  font-size: 31.25px;
  text-transform: uppercase;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h2,
  .h2 {
    font-size: 25px;
  }
}

h3,
.h3 {
  font-family: "Oranienbaum", serif;
  font-weight: inherit;
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}

h4,
.h4 {
  font-family: "Oranienbaum", serif;
  font-weight: inherit;
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h4,
  .h4 {
    font-size: 16px;
  }
}

h5,
.h5 {
  font-family: "Oranienbaum", serif;
  font-weight: inherit;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h5,
  .h5 {
    font-size: 12.8px;
  }
}

h6,
.h6 {
  font-family: "Oranienbaum", serif;
  font-weight: inherit;
  font-size: 12.8px;
  text-transform: uppercase;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h6,
  .h6 {
    font-size: 10.24px;
  }
}

.header__icon-body {
  width: 20px;
  height: 18px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 2px solid #4D0218;
  /* Цвет рамки круга */
  cursor: pointer;
}

.header__icon span {
  width: 100%;
  height: 2px;
  background-color: #4D0218;
}

.header {
  margin-bottom: 2.5rem;
}
.header__container {
  border-bottom: 1px solid #4D0218;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media (max-width: 36em) {
  .header__tel {
    gap: 18px;
  }
}
.menu__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu__drop {
  font-size: 18px;
}
.menu__link {
  position: relative;
}
.menu__link::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  border-radius: 5px;
  height: 0.05em;
  bottom: 0;
  left: 0;
  background: #4D0218;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.menu__link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.hero__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.hero__text {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 25px;
  font-family: "Oranienbaum", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media (max-width: 48em) {
  .hero__text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.hero__title {
  line-height: 1.2;
  font-size: 5rem;
  margin-bottom: 0.9375rem;
}
@media (max-width: 48em) {
  .hero__title {
    font-size: 3.75rem;
  }
}
@media (max-width: 26.25em) {
  .hero__title {
    font-size: 3.125rem;
  }
}
.hero__name {
  line-height: 1.2;
  font-size: 2.1875rem;
}
.hero__image img {
  max-width: 100%;
}
.hero__button {
  margin-bottom: 3.125rem;
}

.button-hero {
  color: #000;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
  padding: 15px 60px;
  letter-spacing: 0.5px;
  border: 1px solid #4D0218;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .button-hero:hover {
    background-color: #4D0218;
    color: white;
  }
}

.forwho {
  background-color: #4D0218;
  min-height: 170px;
  margin-bottom: 2.5rem;
}
.forwho__container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
  padding-top: 20px;
}
@media (max-width: 48em) {
  .forwho__container {
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  }
}
.forwho__items {
  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;
  gap: 15px;
}
.forwho__image span {
  display: block;
  width: 100px;
  height: 100px;
  border: 1px solid white;
}
.banner {
  margin-bottom: 2.5rem;
}
.banner__info {
  display: block;
  padding: 50px 50px;
  text-align: center;
  border: 2px solid #4D0218;
  font-size: 1.5625rem;
}

.services__body {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}
.services__item {
  text-align: center;
  padding: 25px;
  background: #fff;
  border-radius: 5px;
  font-size: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.services__item svg {
  fill: #4D0218;
  min-width: 55px;
  max-width: 55px;
}
@media (any-hover: hover) {
  .services__item:hover {
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.services__text {
  text-align: left;
}

.formens__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3.125rem;
}
.formens__left {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.formens__title {
  font-size: 3.125rem;
  margin-bottom: 1.875rem;
}
.formens__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
}
.formens__image {
  padding: 25px 0;
}

.events__title {
  font-size: 1.5625rem;
  margin-bottom: 0.9375rem;
}
.events__body {
  border: 1px solid #4D0218;
  border-radius: 8px;
  padding: 16px;
  font-family: Arial, sans-serif;
  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;
  color: #4D0218;
}
.events__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}
.events__image img {
  width: 100%;
  height: 150px;
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
  border-radius: 8px;
}
.events__time-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.events__date {
  background-color: #4D0218;
  color: #fff;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 14px;
}
.events__time {
  background-color: #4D0218;
  color: #fff;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 14px;
}
.events__text {
  text-align: center;
  margin-bottom: 16px;
}
.events__text h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 8px;
}
.events__text p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.events__button {
  background-color: #4D0218;
  color: #fff;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.events__button:hover {
  background-color: #55072f;
}

footer {
  background: #4D0218;
  color: #fff;
  min-height: 50px;
}

.services-page__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 48em) {
  .services-page__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.services-page__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}
.services-page__title {
  margin-bottom: 1.25rem;
}
.services-page__text {
  line-height: 1.2;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.services-page__image img {
  width: 100%;
}

.services-doctor__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 48em) {
  .services-doctor__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.services-doctor__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}
.services-doctor__text {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.services-doctor__image img {
  width: 100%;
}

.img-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 48em) {
  .img-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.events-page__container {
  margin-bottom: 2.5rem;
}
.hero-events__height {
  min-height: 55px;
}
.hero-events__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.5625rem;
}
@media (max-width: 48em) {
  .hero-events__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hero-events__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}
.hero-events__image img {
  width: 100%;
}
.hero-events__when {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.hero-events__status {
  background-color: transparent;
  border-radius: 10px;
  color: #fff;
  padding: 5px 20px;
}
.hero-events__text p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.hero-events__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.hero-events__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hero-events__money {
  font-size: 1.25rem;
  font-weight: 500;
}

.offline-status {
  background-color: #4D0218;
}

.all-status {
  background-color: #1c3b74;
}

.online-status {
  background-color: #1c7430;
}

.button-hero-events {
  padding: 15px 25px;
  letter-spacing: 0.5px;
  border: 1px solid #4D0218;
  color: #4D0218;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
  background: linear-gradient(transparent, transparent);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button-hero-events:hover {
  background-color: #4D0218;
  color: white;
}

.forwho-events__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  padding: 20px;
}
@media (max-width: 48em) {
  .forwho-events__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.forwho-events__block {
  padding: 20px;
}
.forwho-events__block p {
  font-size: 16px;
  line-height: 1.6;
}
.forwho-events__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.forwho-events__number {
  font-size: 48px;
  font-weight: bold;
  color: #000;
  margin-right: 10px;
  font-family: "Oranienbaum", serif;
}
.forwho-events__line {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background-color: #000;
}

.programm-events__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 48em) {
  .programm-events__container {
    -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: 10px;
  }
}
.programm-events__image {
  position: sticky;
  top: 20px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 48em) {
  .programm-events__image {
    position: relative;
    margin-bottom: 2.5rem;
  }
}
.programm-events__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.programm-events__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  margin-left: 30px;
}
.programm-events__text div {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.programm-events__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.programm-events__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
  font-size: 18px;
}
.programm-events__icon {
  margin-right: 10px;
  font-size: 24px;
  margin-top: 10px;
}

.text-learn {
  font-size: 1.25rem;
}

.bg-primary {
  background: #4D0218;
}

.forwho__image {
  border-radius: 15px;
  overflow: hidden;
}

.forwho__text {
  color: #fff;
}

.faq__items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));
  grid-gap: 30px;
  gap: 30px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.faq__item {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #800040;
  -webkit-transition: all ease;
  transition: all ease;
}

.faq__item_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -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;
  width: 100%;
  font-size: 24px;
}

.faq__item_answer p {
  padding: 15px;
  font-size: 18px;
}

.faq__item_answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq__item_answer.open {
  height: 100%;
}

.text-italic {
  font-style: italic;
}

.about_owner__block::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(25deg, rgba(77, 2, 24, 0.7333333333) 0%, rgba(77, 2, 24, 0) 50%);
  pointer-events: none;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.about_owner__block {
  position: relative;
}

.about_owner__block .main_image {
  border-radius: 30px;
  width: 100%;
  height: auto;
}

.about_owner__block .main_image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

.about_owner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.about_owner__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.about_owner__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.about_owner__block_name {
  font-size: 60px;
}
@media (max-width: 26.25em) {
  .about_owner__block_name {
    font-size: 2.5rem;
  }
}

.about_owner__block__body {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  max-width: 75%;
  padding-left: 20px;
  padding-bottom: 1.25rem;
}
@media (max-width: 26.25em) {
  .about_owner__block__body {
    position: relative;
  }
}

.about_owner__block_degree {
  font-size: 30px;
}
@media (max-width: 26.25em) {
  .about_owner__block_degree {
    font-size: 1.25rem;
  }
}

.about_owner__block_text p {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 30px;
}

.open_events__item_action {
  padding: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme-gradient {
  background: linear-gradient(25deg, rgb(128, 0, 64) 0%, rgba(128, 0, 64, 0) 50%);
}

.tbs {
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.05);
}

.open_events__item_heading span {
  padding: 5px;
  border-radius: 5px;
}

.nm {
  margin-bottom: 0px;
  margin-top: 0px;
}

section {
  margin-bottom: 2.5rem;
}

.open_events__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(25%, 1fr) 10px minmax(25%, 1fr) 10px minmax(25%, 1fr) 10px minmax(25%, 1fr);
  grid-template-columns: repeat(4, minmax(25%, 1fr));
  grid-gap: 10px;
  gap: 10px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

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

.open_events__item {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.open_events__item_action:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.open_events__item_subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100px;
          flex: 1 0 100px;
}

.open_events__item_description {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100px;
          flex: 1 0 100px;
}

.latest_blogs__items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  grid-gap: 30px;
  gap: 30px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.latest_blogs__item {
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.latest_blogs__item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.latest_blogs__item_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 15px;
}
.latest_blogs__item_heading span {
  padding: 5px;
  border-radius: 5px;
}

.latest_blogs__item_description {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 98px;
          flex: 1 0 98px;
}

.latest_blogs__item_image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.875rem;
  height: 12.8125rem;
  min-width: 15.9375rem;
  display: flex;
  padding-bottom: 50%;
}
.latest_blogs__item_image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.latest_blogs__item_subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
  height: 175px;
  position: relative;
}
.latest_blogs__item_subtitle :nth-child(2) {
  padding-top: 15%;
}

.get_consultation {
  padding: 40px 0;
  text-align: center;
}

.get_consultation[class*=bg-] .section-title {
  color: #fff;
}

.get_consult__form input {
  background: transparent;
  border-bottom: 2px solid #fff;
  font-size: 20px !important;
  padding: 5px 15px;
  color: #fff;
}

.get_consult__form.form-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 35px;
}

.get_consult__form input::-webkit-input-placeholder {
  font-size: 20px;
  color: #fff;
}

.get_consult__form input::-moz-placeholder {
  font-size: 20px;
  color: #fff;
}

.get_consult__form input:-ms-input-placeholder {
  font-size: 20px;
  color: #fff;
}

.get_consult__form input::-ms-input-placeholder {
  font-size: 20px;
  color: #fff;
}

.get_consult__form input::placeholder {
  font-size: 20px;
  color: #fff;
}

input {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input:focus,
input:hover {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.get_consult__form [type=button] {
  border: 2px solid #fff;
  padding: 15px;
  background: transparent;
  color: #fff;
  font-size: 20px;
  border-radius: 10px;
}

.counters__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  padding: 40px;
}
@media (max-width: 26.25em) {
  .counters__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
}

.counters {
  font-family: "Oranienbaum", serif;
  font-weight: inherit;
  text-transform: uppercase;
  line-height: 1.2;
}

.counters[class*=bg-] * {
  color: #fff;
}

.counters__item {
  text-transform: uppercase;
  text-align: center;
}

.counters__num {
  font-size: 80px;
}

.counters__text {
  max-width: 200px;
}

.counters__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  padding: 40px;
}

.counters__item {
  text-transform: uppercase;
  text-align: center;
}

.counters__num {
  font-size: 80px;
}

.counters__text {
  max-width: 200px;
}

.event_observer__items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  grid-gap: 30px;
  gap: 30px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.event_observer__item_title {
  color: #fff;
  position: absolute;
}

.event_observer__item_description {
  color: #fff;
  position: absolute;
}

.event_observer__item {
  min-height: 300px;
  background-size: cover !important;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 15px;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
}

.event_observer__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), color-stop(50%, rgba(128, 0, 64, 0)));
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(128, 0, 64, 0) 50%);
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  pointer-events: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.event_observer__item_title {
  color: #fff;
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 75%;
}

.event_observer__item_description {
  color: #fff;
  position: absolute;
  width: 75%;
  bottom: 100px;
  left: 15px;
}

.event_observer__item_start {
  position: absolute;
  top: 15px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  border: 2px dashed transparent;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
}

span.start_day_num {
  font-size: 40px;
}

span.start_day_text {
  font-size: 25px;
}

span.start_month {
  font-size: 16px;
}

.event_observer__item_member {
  position: absolute;
  top: 15px;
  right: 125px;
}

.event_observer__item_member a {
  border: 2px dashed #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}

.blog-page__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  margin-bottom: 2.5rem;
}
.blog-page__name {
  padding: 5px;
  border-radius: 5px;
  background-color: #1c7430;
  color: white;
}
.blog-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3.75rem;
  gap: 40px;
}
@media (max-width: 41.25em) {
  .blog-page__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog-page__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  text-align: right;
}
@media (max-width: 41.25em) {
  .blog-page__info {
    text-align: left;
  }
}
.blog-page__servise {
  font-weight: 500;
  color: #4D0218;
  font-size: 22px;
}
.blog-page__image img {
  width: 100%;
}
.blog-page__divide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-bottom: 3.125rem;
}
.blog-page__divide span {
  font-weight: 600;
  color: #4D0218;
  font-size: 2.1875rem;
}

.blog-page__description {
  text-indent: 30px;
}
.blog-page__list-title {
  color: #4D0218;
  text-indent: 30px;
}
.blog-page__list-subtitle {
  text-indent: 30px;
}
.blog-page__list-item h3 {
  text-indent: 30px;
  color: #4D0218;
  font-weight: 600;
}
.blog-page__list-subtitle {
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
.blog-page__list-item2 {
  margin-bottom: 0.9375rem;
  font-weight: 500;
}
.blog-page__list-item2::before {
  content: "-";
  font-size: 1.25rem;
  padding-right: 5px;
}
.blog-page__list-link {
  font-weight: 600;
  color: #4D0218;
}
@media (any-hover: hover) {
  .blog-page__list-link:hover {
    text-decoration: underline;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.mb-2 {
  margin-bottom: 20px;
}

.modal__logo {
  width: 60px;
}

.modal_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.modal_form .mandatory {
  color: #4D0218;
}
.modal_form .modal_form_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.modal_form .modal_form_group label {
  font-size: 18px;
}
.modal_form .modal_form_group .modal_form_control {
  border-bottom: 2px solid #650033;
  min-height: 35px;
  width: 100%;
  padding: 0 10px;
  font-size: 22px;
}
.modal_form .modal_form_group.form_inline {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border: 2px solid #4D0218;
  min-width: 320px;
  width: 600px;
  border-radius: 35px;
}
@media (max-width: 48em) {
  .modal-content {
    width: 80%;
  }
}

.close {
  color: #4D0218;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.sidebar__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.sidebar__item {
  margin-bottom: 10px;
  border-bottom: 2px solid transparent;
}
.sidebar__item:last-child {
  margin-bottom: 0;
}
.sidebar__item--with-border {
  border-bottom: 2px solid white;
  padding-bottom: 20px;
  max-width: 155px;
}
@media (max-width: 36em) {
  .sidebar__item {
    text-align: center;
  }
}
.sidebar__link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}
.sidebar__about {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-top: 20px;
}

.social-link img {
  width: 50px;
}

.modal__logo img {
  width: 60px;
}

.modal__head {
  margin-bottom: 1.25rem;
}

.modal_title {
  color: #4D0218;
  text-align: center;
}

.main_title {
  color: #4D0218;
  text-align: center;
  margin-bottom: 1.25rem;
}

.description {
  text-align: center;
  margin-bottom: 80px;
}

.footer__logo svg {
  fill: white;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 1.25rem;
}
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__logo {
  margin-bottom: 0.3125rem;
}
.footer__info {
  margin-bottom: 10px;
}
.footer__clinic-name {
  margin-bottom: 10px;
  font-weight: bold;
}
.footer__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}
.footer__title {
  margin-bottom: 0.9375rem;
}
.footer__contact-item {
  margin-bottom: 15px;
}
.footer__bottom {
  text-align: center;
  padding-bottom: 20px;
}

.menu__drop::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  color: #4D0218;
}

.menu__list .menu__item {
  position: relative;
}
.menu__list .menu__item .menu__link {
  padding: 10px;
  display: block;
}
.menu__list .menu__item.menu__dropdown .menu__dropdown-list {
  display: none;
  position: absolute;
  top: 140%;
  left: -5;
  background-color: #4D0218;
  border: 1px solid #4D0218;
  padding: 10px;
  list-style: none;
  min-width: 200px;
  z-index: 100;
  border-radius: 10px;
}
.menu__list .menu__item.menu__dropdown .menu__dropdown-list .menu__dropdown-item {
  padding: 8px 10px;
  color: white;
  cursor: pointer;
}
.menu__list .menu__item.menu__dropdown .menu__dropdown-list.active {
  display: block;
}

.sidebar-title {
  padding: 10px;
  margin-bottom: 1.25rem;
}

.ta-center {
  text-align: center;
}

.styled_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.styled_text.fd-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.styled_text.ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.styled_text p {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 0px;
}
.styled_text p img {
  border-radius: 30px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
}
.styled_text .page_image {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
}
.styled_text .info-page__side {
  min-width: 50%;
}
.styled_text .info-page__side img {
  position: sticky;
  top: 20px;
}

.services-pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.services-pricing__price {
  padding: 8px 45px;
  letter-spacing: 0.5px;
  border: 1px solid #4D0218;
  color: #000;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
  background: linear-gradient(transparent, transparent);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.latest_blogs__item_subtitle a svg path {
  fill: #4D0218 !important;
}

[class*=__description] p {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 30px;
}

[class*=__specialization] {
  font-size: 22px;
  margin-bottom: 15px;
  font-family: "Oranienbaum", serif;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-color: #4D0218;
  text-decoration-style: dotted;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 7px;
  line-height: 1.2;
}

[class*=__block_navigation] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

[class*=__block_navigation].full_width {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 450px) {
  [class*=__block_navigation].full_width {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

[class*=__block_navigation].items_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

[class*=__block_navigation].as_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.services-page [class*=__image] {
  border-radius: 30px;
  overflow: hidden;
}

.events-page [class*=__image] {
  border-radius: 30px;
  overflow: hidden;
}

.info-page [class*=__image] {
  border-radius: 30px;
  overflow: hidden;
}
.info-page [class*=__image] img {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.formens__image {
  border-radius: 30px;
  overflow: hidden;
  padding: 0px;
}

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

.social-link svg {
  width: 50px;
}

.services-doctor__container .services-doctor__body:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 1015px) {
  .latest_blogs__items {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
}
@media (max-width: 999px) {
  .open_events__items {
    grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
  }
  .services__body {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .about_owner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .formens__hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .formens__hero .formens__button {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .event_observer__items {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  }
  .open_events__items {
    grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
  }
  .event_observer__item_description {
    bottom: 60px;
  }
  .services__body {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .latest_blogs__items {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .get_consult__form.form-horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services-doctor__container .services-doctor__body:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .faq__items {
    grid-template-columns: repeat(auto-fit, minmax(90%, 1fr));
  }
}
@media (max-width: 576px) {
  .services__body {
    grid-template-columns: repeat(auto-fit, minmax(80%, 1fr));
  }
  .modal_form h4 {
    display: none;
  }
  .hero__image {
    display: none;
  }
  .event_observer__item_description {
    bottom: 85px;
  }
  .faq__items {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .sidebar__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .forwho__items {
    padding-bottom: 10px;
  }
  .latest_blogs__items {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .info-page__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .hero-events__body {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .services-pricing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 20px;
  }
}
@media (max-width: 360px) {
  .latest_blogs__items {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .services__body {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .info-page__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .forwho__container {
    grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));
  }
}
@media (max-width: 35.625em) {
  .open_events__items {
    grid-template-columns: repeat(auto-fit, minmax(99%, 1fr));
  }
}
.header {
  position: sticky;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 0px;
  background: #e7e7e7;
  z-index: 1;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.header__logo img {
  width: 100%;
}
@media (max-width: 48em) {
  .header__menu {
    display: none;
  }
}
.header__menu .menu__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__menu .menu__body .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.header__menu .menu__body .menu__list .menu__item {
  margin-right: 20px;
}
.header__menu .menu__body .menu__list .menu__item .menu__link {
  color: black;
  text-decoration: none;
  font-size: 18px;
}
.header__tel a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  position: relative;
}
.header__tel a::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  border-radius: 5px;
  height: 0.05em;
  bottom: 0;
  left: 0;
  background: #4D0218;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.header__tel a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #333;
  color: #fff;
  padding: 20px;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  z-index: 10;
  overflow: auto;
}
.sidebar .menu__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
}
@media (max-width: 36em) {
  .sidebar .menu__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sidebar .menu__list .menu__item.menu_sub {
  margin-left: 0;
}
.sidebar .menu__list .menu__item .menu__link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.sidebar .menu__list .menu__item .menu__link:hover {
  text-decoration: underline;
}
.sidebar__info {
  margin-top: 20px;
  color: #ddd;
}
.sidebar__info h2,
.sidebar__info h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}
.sidebar__info p {
  margin-bottom: 10px;
  font-size: 14px;
}
.sidebar__info p a {
  color: #ddd;
  text-decoration: none;
}
.sidebar__info p a:hover {
  text-decoration: underline;
}
.sidebar__info .social-link {
  color: #ddd;
  text-decoration: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.show-sidebar {
  left: 0;
}

.show-overlay {
  opacity: 1;
  visibility: visible;
}

.header__icon-body {
  width: 20px;
  height: 18px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Add transition for smooth animation */
}

.header__icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 2px solid #4D0218;
  cursor: pointer;
}

.header__icon span {
  width: 100%;
  height: 2px;
  background-color: #4D0218;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Add transition for smooth animation */
}

/* Animation for the X shape */
.header__icon.active .header__icon-body {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header__icon.active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(90deg);
          transform: translateY(8px) rotate(90deg);
}

.header__icon.active span:nth-child(2) {
  opacity: 1;
  /* Hide the middle line */
}

.header__icon.active span:nth-child(3) {
  opacity: 0;
}

.sidebar-close {
  text-align: end;
}

.list-menu {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sidebar__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 36em) {
  .sidebar__body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero-events__bottom.fixed {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background: white;
  padding: 10px;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  background-color: #4D0218;
  color: white;
}
.hero-events__bottom.fixed .button-hero-events {
  border: 1px solid white;
  color: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hero-events__bottom.fixed .button-hero-events:hover {
  background-color: white;
  color: black;
}
@media (max-width: 48em) {
  .hero-events__bottom.fixed {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 0;
    opacity: 0.9;
    padding: 20px 35px;
  }
}

.uinav__button {
  padding: 15px 25px;
  letter-spacing: 0.5px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
  background: linear-gradient(transparent, transparent);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 22px;
  font-family: "Oranienbaum";
  border: 1px solid #4D0218;
  color: #4D0218;
}
.uinav__button.button_primary_inv {
  border: 1px solid #4D0218;
  color: #fff;
  background: #4D0218;
}
.uinav__button.button_primary_inv:hover {
  border: 1px solid #4D0218;
  background-color: transparent;
  color: #4D0218;
}
@media (max-width: 36em) {
  .uinav__button.button_primary_inv {
    padding: 10px;
    font-size: 0.9rem;
  }
}
.uinav__button:hover {
  background-color: #4D0218;
  color: white;
}
.uinav__button.inactive {
  border: 1px solid #ddd;
  background: #ddd;
  color: #4D0218;
}
.uinav__button.inactive:hover {
  border: 1px solid #ddd;
  background: #ddd;
  color: #4D0218;
}
@media (max-width: 23.75em) {
  .uinav__button {
    padding: 10px 15px;
    font-size: 18px;
  }
}

[class*=__block_navigation] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
[class*=__block_navigation].full_width {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
[class*=__block_navigation].items_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
[class*=__block_navigation].as_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog_categories__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}

.blog_categories__item {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #4D0218;
  -webkit-transition: all ease;
  transition: all ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.blog_categories__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 25px;
  -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;
  font-size: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 15px;
}

.pagination-links .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 30px 0;
  gap: 35px;
}

.pagination-links .pagination .page-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 26px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  border: 2px solid transparent;
}

.pagination-links .pagination .page-item > * {
  width: 50px;
  height: 50px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  vertical-align: middle;
}

.pagination-links .pagination .page-item:hover {
  border: 2px solid #4D0218;
}

.pagination-links .pagination .page-item.disabled {
  color: #4D0218;
}

.pagination-links .pagination .page-item.active {
  border: 2px solid #4D0218;
}

nav.st-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.gd-md-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(50%, 1fr))[2];
  grid-template-columns: repeat(2, minmax(50%, 1fr));
}

@media (max-width: 1000px) {
  .gd-xs-1 {
    -ms-grid-columns: (minmax(100%, 1fr))[1];
    grid-template-columns: repeat(1, minmax(100%, 1fr));
    grid-row-gap: 25px;
  }
}
.fl-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 1920px) {
  .fl-row .fl-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media (max-width: 1200px) {
  .fl-row .fl-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
}
@media (max-width: 767px) {
  .fl-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (max-width: 520px) {
  .fl-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.iframe-sticky {
  position: sticky;
  top: 20px;
}

.getConsultSubmit {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .getConsultSubmit:hover {
    background-color: white;
    color: black;
  }
}

.services-pricing__payparts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.service_items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}
@media (max-width: 36em) {
  .service_items {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.service_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px 15px;
  background: #fff;
  border: 2px solid #4D0218;
  border-radius: 5px;
}
.service_item h2 {
  margin: 0;
}
.service_item .service_item_time {
  color: #4D0218;
  font-weight: bold;
}
.service_item p {
  font-size: 1rem;
  line-height: 1.3rem;
}
.service_item .service_item_button {
  padding: 10px 75px;
  margin: 0 auto;
  background: #4D0218;
  color: #fff;
  border-radius: 5px;
}

.reviews__container {
  margin-bottom: 20px;
}

.reviews__item_wrap {
  padding: 20px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.reviews__item {
  border: 2px solid #4D0218;
  border-radius: 25px;
  padding: 25px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.reviews__separator {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.reviews__separator i {
  color: white;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 45px;
  width: 45px;
  background: rgba(77, 3, 24, 0.35);
  border-radius: 500px;
}

.reviews__author {
  font-size: 1.3rem;
  color: #4D0218;
  font-weight: bold;
}

.reviews__text {
  line-height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.reviews__rating {
  padding: 10px 0;
  color: #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.reviews__rating .checked {
  color: orange;
}

.reviews__items {
  position: relative;
}

.reviews__slider_button {
  height: 44px;
  width: 44px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: absolute;
  z-index: 10;
  border-radius: 100%;
  background: #c1a7af;
  color: white;
  top: calc(50% - 22px);
}
.reviews__slider_button i {
  font-size: 1.5rem;
  font-weight: 100;
}

.reviews__slider_button.rsb-next {
  right: 0;
}

.reviews__slider_button.rsb-prev {
  left: 0;
}