:root {
  --bg-beige: #F7F5F3;
  --beige-dark: #656561;
  --accent-pink: #CE6EA3;
  --color-border: #E9E4DF;
  --padding-gap: 60px;
  --fz-h1: 100px;
  --fz-title: 80px;
  --fz-p: 16px;
  --fz-text: 18px;
  --fz-quote: 32px;
  --fz-contacts: 40px;
}
@media screen and (max-width: 1024px) {
  :root {
    --padding-gap: 40px;
    --fz-h1: 60px;
    --fz-title: 46px;
    --fz-quote: 24px;
    --fz-contacts: 24px;
  }
}
@media screen and (max-width: 590px) {
  :root {
    --padding-gap: 30px;
    --fz-h1: 40px;
    --fz-title: 36px;
    --fz-text: 16px;
    --fz-quote: 20px;
    --fz-contacts: 22px;
  }
}

.container {
  width: 1240px;
  max-width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1550px) {
  .container {
    width: 1140px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    width: 1060px;
  }
}
@media screen and (min-width: 590px) and (max-width: 1024px) {
  .container {
    max-width: calc(100% - 30px);
    width: 900px;
  }
}
@media screen and (max-width: 590px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container__fluid {
  width: 78%;
}
@media screen and (max-width: 1550px) {
  .container__fluid {
    width: 90%;
  }
}
@media screen and (max-width: 1200px) {
  .container__fluid {
    width: 95%;
  }
}
@media screen and (max-width: 590px) {
  .container__fluid {
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 590px) {
  .layout-container {
    padding-top: 85px;
  }
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}
@media screen and (max-width: 590px) {
  ::-webkit-scrollbar {
    width: 5px;
    height: 3px;
  }
}

/* Track */
::-webkit-scrollbar-track {
  background: #F7F8FA;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--accent-pink);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-pink);
}

body {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
  color: var(--beige-dark);
}
body.modal_opened {
  overflow: hidden;
}

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

.button,
.btn {
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  background: var(--accent-pink);
  border: 2px solid var(--accent-pink);
  color: #fff;
  font-size: var(--fz-p);
  padding: 5px var(--padding-gap);
  font-weight: 300;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  max-width: 100%;
}
.button:hover,
.btn:hover {
  color: #fff;
  border-color: var(--accent-pink);
  background: var(--accent-pink);
  opacity: 0.9;
}
.button__white,
.btn__white {
  color: var(--accent-pink);
  border-color: #fff;
  background: #fff;
}
.button__white:hover,
.btn__white:hover {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  color: #fff;
}
.button__bg,
.btn__bg {
  color: #fff;
  border-color: var(--accent-pink);
  background: var(--accent-pink);
}
.button__bg:hover,
.btn__bg:hover {
  color: #fff;
  border-color: var(--accent-pink);
  background: var(--accent-pink);
  opacity: 0.9;
}
.button__dark,
.btn__dark {
  color: #fff;
  border-color: var(--beige-dark);
  background: var(--beige-dark);
}
.button__dark:hover,
.btn__dark:hover {
  color: #fff;
  border-color: var(--beige-dark);
  background: var(--beige-dark);
  opacity: 0.9;
}

* {
  box-sizing: border-box;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  background: var(--bg-beige);
  padding: 25px 0;
}
@media screen and (max-width: 590px) {
  .header {
    padding: 10px 0;
  }
}
.header__content {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
@media screen and (max-width: 590px) {
  .header__content {
    gap: 0;
    align-items: center;
  }
}
.header__logos {
  display: flex;
  flex-flow: row;
  gap: 30px;
}
@media screen and (max-width: 590px) {
  .header__logos {
    gap: 10px;
    width: 80%;
    justify-content: flex-start;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
@media screen and (max-width: 590px) {
  .header__logo {
    width: 30%;
  }
}
.header__logo img, .header__logo svg {
  height: 68px;
  width: auto;
  display: block;
}
@media screen and (max-width: 590px) {
  .header__logo img, .header__logo svg {
    height: auto;
    width: 100%;
  }
}
.header__logo__school {
  border-left: 1px solid var(--color-border);
  padding-left: 30px;
}
@media screen and (max-width: 590px) {
  .header__logo__school {
    padding-left: 10px;
    width: 60%;
  }
}
.header__logo__school img, .header__logo__school svg {
  height: 50px;
}
@media screen and (max-width: 590px) {
  .header__logo__school img, .header__logo__school svg {
    height: auto;
    width: 100%;
  }
}
.header__logo:hover {
  opacity: 0.8;
}
.header__menu {
  margin-left: auto;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 590px) {
  .header__menu {
    display: none;
  }
  .menu_opened .header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-beige);
    margin: 0;
    width: 100%;
    border-top: 1px solid var(--color-border);
    padding: var(--padding-gap) 0;
    margin-top: 10px;
  }
}
.header__menu__item {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--beige-dark, #656561);
  font-size: 16px;
  line-height: 120%;
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}
.header__menu__item:hover, .header__menu__item.active {
  color: var(--accent-pink);
}
.header__menu__btn {
  display: none;
}
@media screen and (max-width: 590px) {
  .header__menu__btn {
    margin-left: auto;
    width: 30px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }
  .header__menu__btn span {
    width: 100%;
    margin: 3px 0;
    height: 2px;
    background: var(--accent-pink);
  }
  .header__menu__btn span:last-child {
    width: 70%;
  }
}

.section {
  scroll-margin-top: calc(2 * var(--padding-gap));
}
.section__header {
  margin-bottom: var(--padding-gap);
  text-align: center;
}
.section__header__pn {
  text-align: left;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 590px) {
  .section__header__pn {
    flex-wrap: wrap;
    gap: 0;
  }
}
.section__header__pn__l {
  flex-shrink: 0;
}
@media screen and (max-width: 590px) {
  .section__header__pn__l {
    width: 100%;
  }
}
.section__header__pn__r {
  padding-top: 40px;
  flex-shrink: 0;
  display: flex;
  gap: 4px;
  margin-left: auto;
}
@media screen and (max-width: 590px) {
  .section__header__pn__r {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
}
.section__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: var(--fz-title);
  font-style: italic;
}
.section__subtitle {
  text-transform: uppercase;
  font-size: var(--fz-p);
}
.section__title + .section__subtitle {
  margin-top: calc(var(--padding-gap) / 3);
}
.section__top {
  background-image: url("../img/top_bg.jpg");
  background-size: cover;
  background-position: bottom center;
  padding: calc(2 * var(--padding-gap)) 0 var(--padding-gap);
}
.section__top__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__top__content h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: calc(var(--padding-gap) / 2);
  text-align: center;
  font-size: var(--fz-h1);
  max-width: 690px;
  font-style: italic;
}
.section__top__content h1 strong {
  color: var(--accent-pink);
}
.section__top__text {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
  text-align: center;
  text-transform: uppercase;
  font-size: var(--fz-p);
  max-width: 590px;
  line-height: 160%;
  color: var(--beige);
  margin-bottom: calc(1.2 * var(--padding-gap));
}
.section__contacts {
  background-image: url("../img/top_bg.jpg");
  background-size: cover;
  background-position: center;
  padding: var(--padding-gap) 0 calc(2 * var(--padding-gap)) 0;
}
.section__contacts .section__title {
  text-align: center;
  margin-bottom: var(--padding-gap);
}
.section__bg {
  background-color: var(--bg-beige);
  padding: calc(2 * var(--padding-gap)) 0;
}
.section__bg + .section__bg {
  padding-top: 0;
}
.section__white {
  background-color: #fff;
  padding: calc(2 * var(--padding-gap)) 0;
}
.section__white + .section__white {
  padding-top: 0;
}
.section__videogallery, .section__reviews, .section__gallery {
  overflow: hidden;
}
.section__gallery {
  background-image: url("../img/gallery_bg.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 15% auto;
}
.section__reviews + .section__gallery {
  padding-top: calc(var(--padding-gap) * 2);
}
.section__lect {
  background: var(--accent-pink, #CE6EA3);
  padding: calc(2 * var(--padding-gap)) 0;
}
.section__lect .section__subtitle,
.section__lect .section__title {
  color: #fff;
}

.author {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.author__content {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 590px) {
  .author__content {
    width: 100%;
    margin-bottom: var(--padding-gap);
  }
}
.author__video {
  width: 100%;
}
@media screen and (max-width: 590px) {
  .author__video {
    width: 100%;
  }
}
.author__quote svg {
  margin-bottom: calc(var(--padding-gap) / 2);
}
.author__quote p {
  font-size: var(--fz-quote);
  margin-top: 0;
  margin-bottom: calc(var(--padding-gap) / 2);
  line-height: 140%;
}
.author__text {
  font-size: var(--fz-text);
  margin-bottom: var(--padding-gap);
  line-height: 160%;
}
.author__name {
  margin-top: auto;
  line-height: 140%;
  margin-top: 40px;
}
.author__name__icon {
  margin-bottom: var(--padding-gap);
  display: block;
}
.author__name__icon img, .author__name__icon svg {
  width: 130px;
  height: auto;
  display: block;
  pointer-events: none;
}
.author__name__dolj {
  font-size: var(--fz-p);
}
.author__name__title {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
  color: var(--accent-pink);
  text-transform: uppercase;
}

.iframe_video {
  aspect-ratio: 16/9;
  position: relative;
}
.iframe_video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.doctors {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
}
.doctors__quote {
  width: calc(33.33333% - 7px);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .doctors__quote {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 590px) {
  .doctors__quote {
    width: 100%;
  }
}
.doctors .doctor {
  border-radius: 20px;
  background: #fff;
  width: calc(50% - 10px);
  padding: 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .doctors .doctor {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 590px) {
  .doctors .doctor {
    width: 100%;
  }
}
.doctors .doctor__img {
  margin-bottom: calc(var(--padding-gap) / 3);
}
.doctors .doctor__img img {
  border-radius: 10px;
  background: var(--bg-beige, #F7F5F3);
  display: block;
  width: 100%;
  height: auto;
}
.doctors .doctor__info {
  padding-bottom: calc(var(--padding-gap) / 3);
  padding-left: 40px;
  background-image: url(../img/icon.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: top left;
}
.doctors .doctor__name {
  text-transform: uppercase;
  font-size: var(--fz-text);
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}
.doctors .doctor__text {
  font-size: var(--fz-p);
  color: #BEBEBB;
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}

.paper {
  border-radius: 20px;
  background-color: var(--bg-white, #FFF);
  box-shadow: -63px 17px 60.6px 0px rgba(172, 163, 153, 0.13);
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(5deg);
  padding: calc(var(--padding-gap) / 2);
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  background-image: url(../img/paper_bg.jpg);
  background-size: cover;
  background-position: bottom center;
  color: var(--beige-dark);
  font-size: 19px;
  line-height: 130%;
}
@media screen and (max-width: 590px) {
  .paper {
    position: unset;
    padding-top: calc(2 * var(--padding-gap));
    padding-bottom: calc(3 * var(--padding-gap));
  }
}
.paper i {
  color: var(--accent-pink);
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-style: italic;
}

.results {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media screen and (max-width: 590px) {
  .results__img {
    margin-bottom: var(--padding-gap);
  }
}
.results__img img {
  width: 100%;
  transform: rotate(-5deg);
  height: auto;
  display: block;
}
.results__img {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .results__img {
    width: 30%;
  }
}
@media screen and (max-width: 590px) {
  .results__img {
    width: 100%;
  }
}
.results__content {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .results__content {
    width: 68%;
  }
}
@media screen and (max-width: 590px) {
  .results__content {
    width: 100%;
  }
}
.results__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  border-bottom: 1px solid var(--color-border);
  padding-left: calc(var(--padding-gap) / 2);
  padding-bottom: calc(var(--padding-gap) / 2);
  margin-bottom: calc(var(--padding-gap) / 2);
  font-size: 26px;
  font-style: italic;
}
.results__list {
  padding: 0;
  list-style: none;
  margin-bottom: calc(var(--padding-gap) / 2);
  font-size: var(--fz-text);
  line-height: 120%;
}
.results__list + .results__title {
  margin-top: 40px;
}
.results__list li {
  padding-left: 30px;
  margin-bottom: calc(var(--padding-gap) / 3);
  background-image: url(../img/list_grey.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: top left;
}
.results__list__color li {
  background-image: url(../img/icon.png);
}

.programms {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
}

.programm {
  border-radius: 20px;
  background: var(--bg-beige, #F7F5F3);
  width: calc(50% - 5px);
  padding: calc(var(--padding-gap) / 2);
}
@media screen and (max-width: 590px) {
  .programm {
    width: 100%;
  }
}
.programm__full {
  width: 100%;
}
.programm__bg {
  background-image: url("../img/programm_bg.png");
  background-repeat: no-repeat;
  background-position: bottom right 60px;
  background-size: 15% auto;
}
@media screen and (max-width: 590px) {
  .programm__bg {
    padding-bottom: calc(2 * var(--padding-gap));
  }
}
.programm__bgy {
  background-image: url("../img/programm_bg1.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 30% auto;
}
@media screen and (max-width: 590px) {
  .programm__bgy {
    padding-bottom: calc(2 * var(--padding-gap));
  }
}
.programm__head {
  padding: calc(var(--padding-gap) / 2);
  padding-top: 0;
  border-bottom: 1px solid var(--color-border);
}
.programm__content {
  padding: calc(var(--padding-gap) / 2) 0;
}
.programm__content ul {
  padding: 0;
  list-style: none;
  font-size: var(--fz-text);
  line-height: 120%;
}
.programm__content ul + .results__title {
  margin-top: 40px;
}
.programm__content ul li {
  padding-left: 30px;
  margin-bottom: calc(var(--padding-gap) / 3);
  background-image: url(../img/icon.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: top left;
}
.programm__number {
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 10px;
  font-size: var(--fz-text);
}
.programm__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
  color: var(--beige-dark);
  font-style: italic;
}

.ul_iconic {
  padding: 0;
  list-style: none;
  font-size: var(--fz-text);
  line-height: 120%;
}
.ul_iconic + .results__title {
  margin-top: 40px;
}
.ul_iconic li {
  padding-left: 30px;
  margin-bottom: calc(var(--padding-gap) / 3);
  background-image: url(../img/icon.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: top left;
}

.prices {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.prices__item {
  border-radius: 20px;
  background: var(--bg-beige, #F7F5F3);
  width: calc(33.33333% - 15px);
  padding: calc(var(--padding-gap) / 2);
}
@media screen and (max-width: 590px) {
  .prices__item {
    width: 100%;
  }
}
.prices__item__head {
  padding: calc(var(--padding-gap) / 2);
  padding-top: 0;
  border-bottom: 1px solid var(--color-border);
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 10px;
  font-size: var(--fz-text);
}
.prices__item__content {
  padding: calc(var(--padding-gap) / 4) calc(var(--padding-gap) / 2);
  text-transform: uppercase;
  font-size: 44px;
  font-weight: 400;
}
@media screen and (max-width: 590px) {
  .prices__item__content {
    font-size: 30px;
  }
}
.prices__item:first-child {
  background-image: url("../img/price_bg.png");
  background-repeat: no-repeat;
  background-position: bottom right 60px;
  background-size: 15% auto;
}
.prices__item:last-child {
  background-image: url("../img/price_bg1.png");
  background-repeat: no-repeat;
  background-position: bottom right 60px;
  background-size: 15% auto;
}

.course_prices {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.course_prices__col {
  width: calc(33.33333% - 15px);
}
@media screen and (max-width: 1024px) {
  .course_prices__col {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 590px) {
  .course_prices__col {
    width: 100%;
  }
}
.course_prices__col .btn {
  width: 100%;
  margin-top: 10px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}
.course_prices__col .btn:hover {
  background: #fff;
  color: var(--accent-pink);
}
.course_prices__item {
  border-radius: 20px;
  padding: 40px 20px 20px 20px;
  background: #FFF;
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 590px) {
  .course_prices__item {
    height: 100%;
  }
}
@media screen and (min-width: 590px) {
  .course_prices__item.with_bg {
    background-image: url("../img/bonus_bg.jpg");
    background-repeat: no-repeat;
    background-position: center left;
  }
}
.course_prices__item__head {
  font-family: var(--fon);
  color: var(--accent-pink);
  margin-bottom: 24px;
  font-size: var(--fz-quote);
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-style: italic;
  line-height: 110%;
}
.course_prices__item ul {
  padding: 0;
  list-style: none;
  color: var(--beige-dark, #656561);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
}
.course_prices__item ul li {
  padding-left: 20px;
  background-image: url(../img/icon_c.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: 0 5px;
  border-bottom: 1px solid #F4EBF0;
  padding-bottom: 10px;
  margin-top: 10px;
  margin-bottom: 0;
}
.course_prices__item__prices {
  margin-top: auto;
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  padding-top: 40px;
}
.course_prices__item__price__label {
  color: var(--beige-dark, #656561);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.course_prices__item__price__old .course_prices__item__price__label {
  color: #CDCDC8;
}
.course_prices__item__price__labes {
  margin-top: 10px;
  display: flex;
  gap: 4px;
}
.course_prices__item__price__labe {
  border-radius: 8px;
  border: 1px solid var(--beige-dark, #656561);
  padding: 6px;
  color: var(--beige-dark, #656561);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.course_prices__item__price__value {
  color: var(--accent-pink, #CE6EA3);
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  position: relative;
  line-height: 130%;
}
.course_prices__item__price__old .course_prices__item__price__value {
  color: #CDCDC8;
}
.course_prices__item__price__old .course_prices__item__price__value:before {
  width: 100%;
  height: 1px;
  background: #CDCDC8;
  display: block;
  content: "";
  position: absolute;
  transform: rotate(-15deg);
  left: 0;
  top: 50%;
}

.footer {
  background-color: var(--bg-beige);
  padding: calc(2 * var(--padding-gap)) 0 var(--padding-gap);
}
.footer__logos {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.footer__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.footer__logo img, .footer__logo svg {
  height: 68px;
  width: auto;
  display: block;
}
.footer__logo__partner, .footer__logo__school {
  border-left: 1px solid var(--color-border);
  padding-left: 30px;
}
@media screen and (max-width: 590px) {
  .footer__logo__partner, .footer__logo__school {
    padding-left: 10px;
    max-width: 50%;
  }
}
.footer__logo__partner img, .footer__logo__partner svg, .footer__logo__school img, .footer__logo__school svg {
  height: 50px;
}
@media screen and (max-width: 590px) {
  .footer__logo__partner img, .footer__logo__partner svg, .footer__logo__school img, .footer__logo__school svg {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 590px) {
  .footer__logo__partner {
    padding-left: 0;
    border-left: none;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  .footer__logo__partner img, .footer__logo__partner svg {
    width: auto;
    height: 40px;
  }
}
.footer__cards {
  width: 100%;
  margin: 0 auto;
  max-width: 600px;
}
.footer__cards img {
  display: block;
  width: 100%;
  height: auto;
}

a.footer__logo:hover {
  opacity: 0.8;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contacts__title {
  text-transform: uppercase;
  font-size: var(--fz-p);
  margin-bottom: calc(var(--padding-gap) / 2);
}
.contacts__item + .contacts__title {
  margin-top: calc(var(--padding-gap) / 2);
}
.contacts__item {
  font-size: var(--fz-contacts);
  font-weight: 400;
  display: inline-flex;
  text-decoration: none;
  color: var(--beige-dark);
  margin-bottom: calc(var(--padding-gap) / 2);
}
.contacts__item:hover {
  color: var(--accent-pink);
}
.contacts__item__soc {
  color: var(--accent-pink);
}
.contacts__item__soc:hover {
  opacity: 0.8;
}

.faqs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq {
  border-radius: 20px;
  background: var(--bg-beige, #F7F5F3);
  padding: 30px 40px;
}
@media screen and (max-width: 590px) {
  .faq {
    padding: 20px;
  }
}
.faq__question {
  position: relative;
  display: flex;
  gap: 20px;
  cursor: pointer;
  text-transform: uppercase;
  align-items: center;
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
  font-size: var(--fz-p);
  line-height: 160%;
  transition: all 0.2s ease-in-out;
}
.faq__question__icon {
  width: 33px;
  height: 33px;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 590px) {
  .faq__question__icon {
    width: 20px;
    height: 20px;
  }
}
.faq__question__icon span {
  width: 33px;
  height: 1px;
  display: block;
  position: absolute;
  background: var(--beige-dark);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0);
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 590px) {
  .faq__question__icon span {
    width: 20px;
  }
}
.faq__question__icon span:last-child {
  width: 1px;
  height: 33px;
}
@media screen and (max-width: 590px) {
  .faq__question__icon span:last-child {
    height: 20px;
  }
}
.faq__question:hover {
  color: var(--accent-pink);
}
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: all 0.2s ease-in-out;
}
.faq.opened .faq__answer {
  max-height: 500px;
  padding-top: 10px;
}
.faq.opened .faq__question__icon span {
  transform: translate(-50%, -50%) rotate(225deg);
}

.review {
  border-radius: 20px;
  background: var(--bg-white, #FFF);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
}
.review__name {
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: calc(var(--padding-gap) / 3);
  font-size: var(--fz-p);
  font-weight: 400;
}
.review__text {
  font-size: var(--fz-p);
  line-height: 140%;
  margin-bottom: var(--padding-gap);
}
.review__btns {
  margin-top: auto;
}
.review__link {
  display: inline-flex;
  text-transform: uppercase;
  color: var(--accent-pink);
  font-size: var(--fz-p);
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(206, 110, 163, 0.2);
  text-decoration: none;
}
.review__link:hover {
  border-color: var(--accent-pink);
}

.gallery_item {
  background: var(--bg-white, #FFF);
  display: flex;
  height: 100%;
}
.gallery_item img {
  width: 100%;
  border-radius: 20px;
  height: auto;
  display: block;
  transition: all 0.2s ease-in-out;
}
.gallery_item:hover img {
  opacity: 0.8;
}

.sw-button {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige-dark);
  border: 1px solid var(--beige-dark);
  cursor: pointer;
}
.sw-button:not(.swiper-button-disabled):hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
}
.sw-button.swiper-button-disabled {
  opacity: 0.5;
}
@media screen and (max-width: 590px) {
  .sw-button {
    width: 40px;
    height: 40px;
  }
  .sw-button svg {
    width: 18px;
    height: auto;
  }
}

.swiper-slide {
  height: auto;
}

.swiper {
  overflow: visible !important;
}

.lt-vertical {
  position: relative;
  display: block;
  border-radius: 20px;
  width: 100%;
  padding-top: 177%;
}
.lt-vertical lite-youtube {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 20px;
}

.bonuses {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
}

.bonus {
  min-height: 80px;
  padding: 10px 20px 10px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  font-style: normal;
  border-radius: 10px;
  background-color: #FCF1F7;
  background-image: url(../img/bonus_bg.png);
  background-repeat: no-repeat;
  background-size: 48px;
  background-position: center left;
}
.bonus__title {
  color: var(--accent-pink, #CE6EA3);
  font-weight: 600;
  line-height: 130%;
}
.bonus__text {
  color: var(--beige-dark, #656561);
  font-weight: 400;
  line-height: 110%;
}

/*# sourceMappingURL=styles.css.map */
