@charset "UTF-8";
/* @include transition(all,3s,ease-out); */
/* stylelint-disable */
/* Убираем внутренние отступы */
ul,
ol {
  padding: 0;
}

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

/* Выставляем основные настройки по-умолчанию для body */
/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul,
ol {
  list-style: none;
}

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

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

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

button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

:root {
  --font-family: "Raleway", sans-serif;
  --font-size: 10px;
  --minWidth: 320px;
  --content-width: 1680px;
  --container-offset: 15px;
  --container-offset-30: 30px;
  --container-offset-60: 60px;
  --container-width: calc(
      var(--content-width) + (var(--container-offset) * 2)
  );
  --background: #242520;
  --text: #fff;
  --greenLight: #aab153;
  --accent: #5c8206;
  --contact-bg: #656753;
  --border: #606038;
  --title: #ead2b7;
  --date-bg: #3b3f2b;
  --date-text: #b4bb6c;
}

@font-face {
  font-family: "MoniqaLD";
  src: url("../fonts/../fonts/Moniqa/moniqa-light-display.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "MoniqaMD";
  src: url("../fonts/../fonts/Moniqa/moniqa-medium-display.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "MoniqaMP";
  src: url("../fonts/../fonts/Moniqa/moniqa-medium-paragraph.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "MoniqaBP";
  src: url("../fonts/../fonts/Moniqa/moniqa-bold-paragraph.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/../fonts/Lato/Lato-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/../fonts/Lato/Lato-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/../fonts/Lato/Lato-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/../fonts/Lato/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/../fonts/Lato/Lato-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/Raleway/Raleway-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/Raleway/Raleway-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/Raleway/Raleway-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/Raleway/Raleway-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/Raleway/Raleway-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
.title {
  font-family: "MoniqaMD";
  color: var(--title);
  font-size: clamp(4.8rem, 1.869rem + 7.8161vw, 15rem);
  line-height: 1.2;
}

html,
body {
  width: 100%;
  min-height: 100vh;
}

html {
  box-sizing: border-box;
  font-size: var(--font-size);
  overflow-x: hidden;
}
html.html-lock {
  overflow: hidden;
}
* {
  box-sizing: inherit;
}
*:before, *:after {
  box-sizing: inherit;
}

body {
  background-color: var(--background);
  font-family: var(--font-family);
  font-size: 1.6rem;
  color: var(--text);
  overflow-x: hidden;
}
@media only screen and (max-width: 991px) {
  body.js-lock {
    overflow: hidden;
  }
}

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

a {
  text-decoration: none;
}

.container {
  margin: 0 auto;
  width: calc(100% - var(--container-offset) * 2);
  max-width: var(--content-width);
}
@media only screen and (min-width: 576px) {
  .container {
    width: calc(100% - var(--container-offset-30) * 2);
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: calc(100% - var(--container-offset-60) * 2);
  }
}

.none {
  display: none;
}

.logo svg {
  transition: all 0.3s ease-in-out;
}
.logo svg:hover path {
  fill: var(--accent);
  transition: all 0.3s ease-in-out;
}

.menu__list {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .menu__list {
    flex-direction: column;
    align-items: center;
  }
}
.menu__item:first-child {
  padding-right: clamp(6rem, -5.4379rem + 11.5302vw, 16.7rem);
}
.menu__item:nth-child(2) {
  padding-right: clamp(6rem, -1.4828rem + 7.5431vw, 13rem);
}
.menu__item:nth-child(3) {
  padding-left: clamp(6rem, -3.6207rem + 9.6983vw, 15rem);
}
.menu__item:last-child {
  padding-left: clamp(6rem, -5.4379rem + 11.5302vw, 16.7rem);
}
@media only screen and (max-width: 991px) {
  .menu__item {
    position: relative;
    padding: 0 0 4.5rem 0 !important;
  }
}
@media only screen and (max-width: 991px) {
  .menu__item:not(:last-child):after {
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #fff;
    right: 50%;
    top: 40px;
    margin-right: -2px;
  }
}
.menu__link {
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.menu__link::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 5px;
  width: 0%;
  height: 2px;
  background-color: var(--greenLight);
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.menu__link:hover {
  color: var(--greenLight);
}
.menu__link:hover::after {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .menu__icon {
    position: absolute;
    top: 40%;
    transform: translate(-50%);
    right: 0;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }
  .menu__icon span {
    transition: all 0.3s ease-in-out;
    top: 8px;
    left: 0;
    position: absolute;
    background-color: var(--text);
    width: 100%;
    height: 2px;
  }
  .menu__icon span:first-child {
    top: 0;
  }
  .menu__icon span:last-child {
    top: auto;
    bottom: 0;
  }
  .menu__icon.js-active span {
    background-color: #fff;
    transform: scale(0);
  }
  .menu__icon.js-active span:first-child {
    transform: rotate(-45deg);
    top: 8px;
  }
  .menu__icon.js-active span:last-child {
    transform: rotate(45deg);
    top: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .menu__body {
    position: fixed;
    z-index: 4;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--background);
    padding-top: 8rem;
    padding-bottom: 20px;
    overflow: auto;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .menu__body.js-active {
    transform: translateY(100%);
    opacity: 1;
  }
}

.service {
  position: relative;
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
}
.service__photo {
  border-radius: 40px;
  margin-bottom: 18px;
  overflow: hidden;
}
#certificates .service__photo {
  margin-bottom: 0px;
}
#certificates .services__list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) {
  .service__img {
    height: 254px;
  }
}
.service__content {
  display: flex;
  flex-direction: column;
}
.service__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  margin-block-end: 18px;
  color: var(--title);
}
.service__description {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.31;
  margin-block-end: 18px;
}
.service__info {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.05;
  margin-block-end: 36px;
  display: flex;
  gap: 64px;
  transition: all 0.3s ease-in-out;
}
.service__info span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.service__btn {
  margin-block-start: auto;
  align-self: start;
}

.circle {
  position: absolute;
  left: 0;
  bottom: -22px;
  transform: translateX(-50%);
  display: none;
}
@media only screen and (min-width: 768px) {
  .circle {
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .circle {
    left: 10px;
  }
}
@media only screen and (min-width: 1680px) {
  .circle {
    left: 0;
  }
}
.circle-100 {
  display: none;
}
@media only screen and (min-width: 768px) {
  .circle-100 {
    display: none;
  }
}
.circle__text {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 123%;
  fill: rgba(234, 210, 183, 0.58);
  font-size: 2.2rem;
}
.circle__text-sm {
  font-size: 1.8rem;
}

.button-lang {
  text-transform: uppercase;
  color: currentColor;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 0.5rem;
  width: 3.7rem;
  aspect-ratio: 1;
  font-family: "Inter", sans-serif;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background: rgba(55, 57, 45, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
}
@media only screen and (min-width: 992px) {
  .button-lang {
    right: 0;
    left: auto;
  }
}

.master-class {
  border-radius: 2rem;
  background-color: rgba(96, 105, 54, 0.09);
  -webkit-backdrop-filter: blur(22px);
          backdrop-filter: blur(22px);
  padding-inline: 18px;
  padding-block-start: 18px;
  padding-block-end: 24px;
}
@media only screen and (min-width: 768px) {
  .master-class {
    padding-inline: 22px;
  }
}
@media only screen and (min-width: 1440px) {
  .master-class {
    padding-block-start: 22px;
    padding-block-end: 30px;
  }
}
.master-class__title {
  font-family: "MoniqaMD";
  font-size: 4rem;
  text-align: center;
  color: var(--title);
  margin-block-end: 20px;
}
@media only screen and (min-width: 768px) {
  .master-class__title {
    margin-block-end: 26px;
  }
}
.master-class:has(#master-class-mobile) .master-class__title {
  margin-block-end: 5px;
}
@media only screen and (min-width: 992px) {
  .master-class__wrapper {
    display: block;
  }
}
.master-class__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  border-radius: 2rem;
  overflow: hidden;
}
.master-class__item:not(:last-child) {
  margin-block-end: 20px;
}
@media only screen and (min-width: 1440px) {
  .master-class__item:not(:last-child) {
    margin-block-end: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .master-class__item {
    position: static;
  }
}
.master-class__img-box {
  grid-column: 1/2;
  grid-row: 1/3;
  position: relative;
  width: 256px;
  min-width: 256px;
  height: 166px;
}
.master-class__img-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #37392d 0%, #151b00 100%);
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}
.master-class__img {
  border-radius: 2rem;
  height: auto;
}
.master-class__description {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
  color: var(--title);
  margin-block-end: 18px;
  grid-column: 1/2;
  grid-row: 2/3;
  z-index: 1;
  width: 256px;
  min-width: 256px;
  padding: 0 10px;
}
.master-class__item:hover .master-class__img-box::after {
  opacity: 0;
}
@media only screen and (max-width: 991px) {
  #master-class-mobile .master-class__item {
    margin-block-end: 0;
  }
  #master-class-mobile .master-class__item:not(:first-child) {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .master-class__description, .master-class__img-box {
    width: 189px;
    min-width: 189px;
  }
  .master-class__img-box {
    height: 123px;
  }
}
@media only screen and (min-width: 1440px) {
  .master-class__description, .master-class__img-box {
    width: 256px;
    min-width: 256px;
  }
  .master-class__img-box {
    height: 166px;
  }
}

.schedule-item {
  border-radius: 3rem;
  padding-inline: 25px 18px;
  padding-block: 25px 22px;
  position: relative;
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media only screen and (min-width: 992px) {
  .schedule-item {
    display: grid;
    gap: 22px;
    grid-template-rows: 1fr 1fr;
  }
}
@media only screen and (min-width: 1200px) {
  .schedule-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 39px;
  }
}
.schedule-item__img {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .schedule-item__img {
    margin-block-end: 0;
  }
}
.schedule-item__img img {
  border-radius: 30px;
}
@media only screen and (min-width: 992px) {
  .schedule-item__img img {
    height: 100%;
  }
}
.schedule-item__img time {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  background-color: var(--date-bg);
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  line-height: 125%;
  text-align: center;
  color: var(--date-text);
  width: 110px;
  height: 55px;
  border-bottom-left-radius: 55px;
  border-bottom-right-radius: 55px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.schedule-item__content {
  display: flex;
  flex-direction: column;
}
.schedule-item__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--title);
  margin-block-end: 22px;
}
.schedule-item__description {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.31;
  margin-block-end: 33px;
}
.schedule-item__btn {
  margin-block-start: auto;
  align-self: start;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  min-width: 19.6rem;
  height: 6rem;
  padding-inline: 28px;
  border-radius: 30px;
  border: 1px solid var(--title);
  color: currentColor;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}
.btn--arrow::after {
  content: url(./../img/arrow-right.svg);
  margin-top: 2px;
}

.border {
  border: 1px solid var(--border);
}
.border::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--border);
  left: 50%;
}
.border::before {
  transform: translateX(-50%) rotate(-45deg);
  top: -6px;
}

.audience {
  max-width: 350px;
  margin-inline: auto;
  margin-block-end: clamp(3rem, 2.2241rem + 2.069vw, 5.7rem);
}
@media only screen and (min-width: 768px) {
  .audience {
    margin-block-end: 0;
  }
}
.audience__body {
  position: relative;
  padding-inline: 20px;
  padding-block: 16px;
  border: 1px solid #606038;
  border-radius: 100%/150%;
  margin-block-end: 16px;
}
.audience__body::after {
  content: url("./../img/star.svg");
  position: absolute;
  left: 50%;
  top: -1.5rem;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  z-index: 3;
}
.audience__img {
  border-radius: 100%/150%;
  display: block;
  height: 155px;
}
.audience__description {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}

.modal {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s ease;
  z-index: 20;
}
.modal.js-show {
  pointer-events: auto;
  opacity: 1;
}
.modal.js-show .modal__container {
  transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
}
.modal.js-show .master-class {
  transform: translate(0px, 0%);
  max-width: 300px;
}
.modal__container {
  border-radius: 10px;
  background-color: #fff;
  max-width: 80%;
  transition: all 0.8s ease;
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
}
@media only screen and (min-width: 576px) {
  .modal.js-show .master-class {
    max-width: 335px;
  }
  .modal__container {
    min-width: 500px;
  }
}
@media only screen and (max-width: 576px) {
  .modal__container {
    min-width: 80%;
  }
}
.modal .master-class {
  transition: all 0.8s ease;
  transform: translate(0px, -100%);
  position: relative;
}
.modal__header {
  padding-inline: 15px;
  padding-block: 10px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.modal__title {
  font-size: 2rem;
  font-weight: bold;
}
.modal__close {
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
  /* Стили для горизонтальной линии */
  /* Стили для вертикальной линии */
  /* Стили для второй вертикальной линии */
}
.modal__close span {
  display: inline-block;
  width: 20px; /* Вы можете задать любой желаемый размер */
  height: 20px; /* Вы можете задать любой желаемый размер */
  position: relative;
  cursor: pointer;
}
.modal__close span::before,
.modal__close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black; /* Цвет линии */
}
.modal__close span::before {
  transform: translateY(-50%) rotate(45deg);
}
.modal__close span::after {
  transform: translateY(-50%) rotate(-45deg);
}
.modal__body {
  padding-inline: 15px;
  padding-block: 10px;
}
.modal .master-class__close {
  border: none;
  background-color: transparent;
  position: absolute;
  right: 15px;
  top: 15px;
  /* Стили для горизонтальной линии */
  /* Стили для вертикальной линии */
  /* Стили для второй вертикальной линии */
}
.modal .master-class__close span {
  display: inline-block;
  width: 20px; /* Вы можете задать любой желаемый размер */
  height: 20px; /* Вы можете задать любой желаемый размер */
  position: relative;
  cursor: pointer;
}
.modal .master-class__close span::before,
.modal .master-class__close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--title);
}
.modal .master-class__close span::before {
  transform: translateY(-50%) rotate(45deg);
}
.modal .master-class__close span::after {
  transform: translateY(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 1px;
  min-height: 100vh;
}
@media only screen and (min-width: 992px) {
  .hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.hero__text {
  margin-top: calc(6rem + clamp(5rem, 3.2759rem + 4.5977vw, 11rem));
  text-align: center;
  margin-block-end: clamp(3rem, 1.0916rem + 5.0891vw, 5rem);
}
@media only screen and (min-width: 992px) {
  .hero__text {
    margin-top: calc(9.8rem + clamp(5rem, 3.2759rem + 4.5977vw, 11rem));
    text-align: left;
    margin-top: 22rem;
    margin-block-end: 0;
    max-width: 550px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__text {
    max-width: 700px;
  }
}
.hero__title {
  color: var(--title);
  font-family: "MoniqaMD";
  font-size: clamp(5.8rem, 3.793rem + 5.3521vw, 11.5rem);
  line-height: 1;
  margin-bottom: clamp(2rem, 1.1412rem + 2.2901vw, 2.9rem);
}
.hero__description {
  font-weight: 400;
  font-size: clamp(1.8rem, 1.5126rem + 0.7663vw, 2.8rem);
  font-family: "Lato", sans-serif;
}
@media only screen and (min-width: 768px) {
  .hero__description {
    padding-inline-end: 35px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__description {
    padding-inline-end: 85px;
  }
}
@media only screen and (min-width: 1440px) {
  .hero__description {
    padding-inline-end: 0;
  }
}
.hero__master {
  max-width: 300px;
  margin-inline: auto;
}
@media only screen and (min-width: 992px) {
  .hero__master {
    height: auto;
    margin-inline: 0;
    position: relative;
    right: 0;
    transform: translateX(22px);
    top: calc(9.8rem + clamp(0.5rem, -11.75rem + 10.2083vw, 5.4rem));
  }
}
@media only screen and (min-width: 1200px) {
  .hero__master {
    width: auto;
  }
}
.hero__master:has(#master-class-mobile) {
  max-width: 250px;
}
.hero__arrow {
  position: absolute;
  left: 50%;
  bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #b4bb6c;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.hero__arrow::before {
  content: url(./../img/hero-arrow.svg);
  width: 43px;
  height: 43px;
}
@media only screen and (min-width: 768px) {
  .hero__arrow {
    bottom: 40px;
  }
}

.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, rgba(36, 37, 32, 0.3) 0%, rgba(36, 37, 32, 0) 100%);
  position: absolute;
  width: 100%;
  z-index: 3;
}
.header::after {
  content: "";
  width: 1.2021rem;
  height: 1.2021rem;
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  background-color: var(--text);
}
.header__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
}
@media only screen and (min-width: 768px) {
  .header__nav {
    min-height: 9.8rem;
  }
}
.header__nav::after {
  content: "";
  width: 1.2021rem;
  height: 1.2021rem;
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  background-color: var(--mainColor);
}
.header__nav .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  /* margin-block-end: clamp(5rem, 3.0172rem + 5.2874vw, 11.9rem); */
  margin-block-start: clamp(2rem, 0.1322rem + 4.9808vw, 8.5rem);
}
.about::before, .about::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--border);
  left: 50%;
}
.about::before {
  transform: translateX(-50%) rotate(-45deg);
  top: -6px;
}
.about::after {
  transform: translateX(-50%) rotate(-45deg);
  bottom: -6px;
}
.about .container {
  position: relative;
}
@media only screen and (min-width: 1440px) {
  .about .container::after {
    content: "";
    position: absolute;
    background-color: var(--border);
    z-index: 3;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .about .container::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--border);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@media only screen and (min-width: 1440px) {
  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.about__desc {
  padding-top: clamp(3.3rem, 1.7859rem + 4.0376vw, 7.6rem);
  position: relative;
}
@media only screen and (min-width: 1440px) {
  .about__desc {
    width: 79%;
  }
}
.about__title {
  margin-bottom: clamp(1.5rem, -0.5775rem + 5.5399vw, 7.4rem);
  text-align: center;
}
@media only screen and (min-width: 1440px) {
  .about__title {
    text-align: left;
  }
}
.about__text {
  font-size: clamp(1.3rem, 0.9831rem + 0.8451vw, 2.2rem);
  font-weight: 400;
  line-height: 138%;
  font-family: "Lato", sans-serif;
  margin-block-end: 33px;
}
@media only screen and (min-width: 1440px) {
  .about__text {
    line-height: 145%;
    margin-block-end: 0;
  }
}
.about__text--bold {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.1831rem + 0.8451vw, 2.4rem);
  line-height: 133%;
  margin-block-end: clamp(1rem, 0.331rem + 1.784vw, 2.9rem);
}
.about__photo {
  display: flex;
  justify-content: center;
  padding-block-end: clamp(6.6rem, 6.1775rem + 1.1268vw, 7.8rem);
}
@media only screen and (min-width: 1440px) {
  .about__photo {
    display: block;
    justify-self: center;
    align-self: start;
    position: relative;
  }
}
.about__photo-body {
  position: relative;
}
.about__photo-body::after {
  content: url("./../img/star.svg");
  position: absolute;
  left: 50%;
  top: -1.5rem;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  z-index: 10;
}
.about__img {
  border-radius: 150%/100%;
  border: 1px solid #606038;
  -o-object-position: 90%;
     object-position: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 14px;
  width: 213px;
  height: 306px;
}
@media only screen and (min-width: 768px) {
  .about__img {
    width: 330px;
    height: 473px;
    padding: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .about__img {
    width: 473px;
    height: 679px;
    padding: 30px;
  }
}
.about__relax {
  color: rgba(77, 79, 62, 0.34);
  font-family: "MoniqaMP";
  font-size: clamp(15rem, 11.78rem + 10.0625vw, 31.1rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -4%;
}
.about__relax-svg {
  position: absolute;
  left: 30%;
  bottom: -30px;
}
@media only screen and (min-width: 768px) {
  .about__relax-svg {
    left: 50%;
  }
}

.schedule {
  position: relative;
  margin-block-end: clamp(5rem, 3.3908rem + 4.2912vw, 10.6rem);
}
.schedule__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url("./../img/schedule-bg.jpg");
  opacity: 0.23;
  filter: blur(17px);
  background-repeat: no-repeat;
  background-position: center 0;
}
.schedule__title {
  margin-block-end: 20px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .schedule__title {
    margin-block-end: 30px;
  }
}
.schedule__month {
  margin-block-end: clamp(3rem, 0.3851rem + 6.9732vw, 12.1rem);
  font-size: clamp(3rem, 1.1034rem + 5.0575vw, 9.6rem);
  text-align: center;
}
.schedule__grid {
  display: grid;
  grid-template-columns: minmax(290px, 465px);
  justify-content: center;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  .schedule__grid {
    grid-template-columns: minmax(290px, 565px);
  }
}
@media only screen and (min-width: 992px) {
  .schedule__grid {
    width: auto;
    margin-inline: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1680px) {
  .schedule__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services {
  margin-block-end: clamp(5rem, 2.6149rem + 6.3602vw, 13.3rem);
}
.services__title {
  text-align: center;
  margin-block-end: clamp(3rem, 0.0402rem + 7.8927vw, 13.3rem);
}
.services__list {
  display: grid;
  grid-template-columns: minmax(290px, 465px);
  gap: clamp(3rem, 2.7414rem + 0.6897vw, 3.9rem);
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .services__list {
    grid-template-columns: minmax(290px, 565px);
  }
}
@media only screen and (min-width: 992px) {
  .services__list {
    margin-inline: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1440px) {
  .services__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services__item {
  border-radius: 40px;
  padding-inline: 26px;
  padding-block: 26px 29px;
}

.target-audience {
  position: relative;
  padding-block-end: 121px;
  padding-block-start: 94px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.target-audience::before, .target-audience::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--border);
  left: 50%;
}
.target-audience::before {
  transform: translateX(-50%) rotate(-45deg);
  top: -6px;
}
.target-audience::after {
  transform: translateX(-50%) rotate(-45deg);
  bottom: -6px;
}
.target-audience__grid {
  grid-template-columns: minmax(330px, 350px);
}
@media only screen and (min-width: 768px) {
  .target-audience__grid {
    grid-template-columns: repeat(2, minmax(330px, 350px));
    gap: clamp(3rem, 2.2241rem + 2.069vw, 5.7rem) clamp(5rem, -11rem + 13.3333vw, 11.4rem);
    justify-items: center;
    justify-content: center;
    display: grid;
  }
}
@media only screen and (min-width: 1200px) {
  .target-audience__grid {
    grid-template-columns: repeat(3, minmax(330px, 350px));
  }
}
@media only screen and (min-width: 1440px) {
  .target-audience__grid {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: clamp(2rem, -5.5rem + 6.25vw, 5rem);
         column-gap: clamp(2rem, -5.5rem + 6.25vw, 5rem);
  }
}
@media only screen and (min-width: 1680px) {
  .target-audience__grid {
    -moz-column-gap: clamp(6rem, -31.8rem + 22.5vw, 11.4rem);
         column-gap: clamp(6rem, -31.8rem + 22.5vw, 11.4rem);
  }
}
.target-audience__title {
  text-align: center;
  margin-block-end: clamp(3rem, 2.2241rem + 2.069vw, 5.7rem);
}
@media only screen and (min-width: 768px) {
  .target-audience__title {
    grid-column: 1/span 2;
    margin-block-end: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .target-audience__title {
    grid-column: 1/span 3;
  }
}
@media only screen and (min-width: 1440px) {
  .target-audience__title {
    grid-column: 2/span 2;
    align-self: center;
  }
}
@media only screen and (min-width: 1440px) {
  .target-audience__item:first-of-type {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.author {
  padding-block: clamp(5rem, 2.4713rem + 6.7433vw, 13.8rem);
  overflow-x: hidden;
}
.author__top {
  position: relative;
  border-bottom: 1px solid var(--border);
}
.author__top::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--border);
  left: 50%;
}
.author__top::before {
  transform: translateX(-50%) rotate(-45deg);
  bottom: -6px;
}
.author__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url("./../img/schedule-bg.jpg");
  opacity: 0.23;
  filter: blur(54px);
  background-repeat: no-repeat;
  background-position: center 0;
}
.author__title {
  text-align: center;
  margin-block-end: clamp(5rem, 4.1379rem + 2.2989vw, 8rem);
}
.author__content {
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 1200px) {
  .author__content {
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 40px;
  }
}
.author__text {
  order: 0;
}
.author__description {
  font-weight: 400;
  font-size: 2rem;
  font-family: "Lato", sans-serif;
  list-style-position: inside;
  position: relative;
  padding-left: 39px;
  margin-block-end: 29px;
}
.author__description::before {
  content: url("./../img/star-sm.svg");
  position: absolute;
  left: 0;
  padding-right: 13px;
}
@media only screen and (min-width: 992px) {
  .author__description {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1440px) {
  .author__description {
    font-size: 2.4rem;
  }
}
.author__info {
  border: 1px solid #606038;
  border-bottom: none;
  border-radius: 20rem 20rem 0 0;
  margin-block-start: 29px;
  width: 300px;
  height: 241px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  order: 3;
  justify-self: center;
}
.author__info::after {
  content: url("./../img/star-lg.svg");
  position: absolute;
  left: 50%;
  top: -2.05rem;
  transform: translateX(-50%);
  width: 4.1rem;
  height: 4.1rem;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .author__info {
    width: 395px;
    height: 319px;
  }
}
@media only screen and (min-width: 1200px) {
  .author__info {
    order: inherit;
    margin-block-start: 0;
  }
}
.author__name {
  font-family: "MoniqaMD", sans-serif;
  font-size: clamp(5.6rem, 4.9391rem + 1.7625vw, 7.9rem);
  text-align: center;
  color: #fff;
  margin-bottom: 27px;
}
.author__job {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.33;
  text-align: center;
  color: var(--title);
}
.author__bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 1200px) {
  .author__bottom {
    grid-template-columns: repeat(3, 1fr);
  }
}
.author__img {
  border-radius: 0 0 20rem 20rem;
  width: 300px;
  height: 309px;
  overflow: hidden;
  margin-block-start: 23px;
  position: relative;
  justify-self: center;
}
@media only screen and (min-width: 768px) {
  .author__img {
    width: 39.5rem;
    height: 40.7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .author__img {
    grid-column: 2/3;
  }
}
.author__soul {
  position: absolute;
  left: 70%;
  bottom: 0;
  z-index: 5;
  width: auto;
  max-height: 200px;
  pointer-events: none;
}
@media only screen and (min-width: 576px) {
  .author__soul {
    height: auto;
    left: 63%;
  }
}
@media only screen and (min-width: 768px) {
  .author__soul {
    height: auto;
    max-height: 265px;
  }
}
@media only screen and (min-width: 992px) {
  .author__soul {
    left: 60%;
  }
}
@media only screen and (min-width: 992px) {
  .author__soul {
    left: 56%;
  }
}

.contact {
  padding-block: clamp(5rem, 2.4713rem + 6.7433vw, 13.8rem);
  padding-block-end: clamp(5rem, 3.5632rem + 3.8314vw, 10rem);
  position: relative;
  border-bottom: 1px solid var(--border);
}
.contact::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--border);
  left: 50%;
}
.contact::before {
  transform: translateX(-50%) rotate(-45deg);
  bottom: -6px;
}
.contact__title {
  margin-block-end: 45px;
  text-align: center;
  font-size: clamp(5.6rem, 4.4506rem + 3.0651vw, 9.6rem);
}
@media only screen and (min-width: 992px) {
  .contact__title {
    margin-block-end: 36px;
  }
}
.contact__text {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  margin-block-end: 45px;
}
.contact__form {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 1200px) {
  .contact__form {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .contact__control:nth-child(4) {
    grid-column: 1/span 3;
  }
}
.contact__control:last-child {
  justify-self: center;
}
@media only screen and (min-width: 1200px) {
  .contact__control:last-child {
    grid-column: 2/span 1;
  }
}
.contact__control label {
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  white-space: nowrap;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  position: absolute;
  left: -10000px;
}
.contact__control input, .contact__control textarea {
  width: 100%;
  border-radius: 10px;
  padding-inline: 19px;
  height: 60px;
  background-color: var(--contact-bg);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--text);
  border: none;
  outline: none;
}
.contact__control input:focus-visible, .contact__control textarea:focus-visible {
  outline: 2px solid var(--accent);
}
.contact__control textarea {
  margin-block-end: 21px;
  height: 96px;
  padding-block-start: 22px;
  resize: none;
}
.contact__control > *::-moz-placeholder {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--text);
}
.contact__control > *::placeholder {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--text);
}
.contact__btn {
  border: none;
  background-color: var(--accent);
}

.footer {
  min-height: 124px;
}
.footer__wrapper {
  min-height: 124px;
  display: block;
  text-align: center;
  padding-block: 33px 30px;
}
.footer__wrapper > div:not(:last-child) {
  margin-block-end: 20px;
}
@media only screen and (min-width: 768px) {
  .footer__wrapper > div:not(:last-child) {
    margin-block-end: 0;
  }
}
@media only screen and (min-width: 768px) {
  .footer__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}
@media only screen and (min-width: 1440px) {
  .footer__wrapper {
    gap: 0;
    justify-content: flex-start;
  }
}
.footer__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  .footer__icons {
    gap: 10px;
  }
}
.footer__icons a:first-child {
  order: 1;
}
@media only screen and (min-width: 768px) {
  .footer__icons a:first-child {
    margin-inline-end: 35px;
    order: inherit;
  }
}
@media only screen and (min-width: 768px) {
  .footer__icons a:nth-child(2) {
    order: inherit;
  }
}
.footer__icons a:last-child {
  order: 2;
}
@media only screen and (min-width: 768px) {
  .footer__icons a:last-child {
    order: inherit;
  }
}
.footer__invite-text {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 2rem;
}
.footer__invite-text p {
  font-size: 1.6rem;
  margin-block-start: 10px;
}
@media only screen and (min-width: 768px) {
  .footer__invite-text {
    margin-inline: 70px 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .footer__invite-text {
    margin-inline: clamp(5rem, -40.76rem + 32vw, 13rem) 50px;
  }
}
.footer__button {
  display: flex;
  justify-content: center;
}
.footer__text {
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(2rem, 0.2759rem + 4.5977vw, 8rem);
}
@media only screen and (min-width: 1440px) {
  .footer__text {
    margin-inline-start: auto;
  }
}
.footer__text a {
  padding-block-end: 3px;
  border-bottom: 1px solid var(--text);
  color: currentColor;
}/*# sourceMappingURL=style.css.map */
#bpa-front-tabs {
  padding: 10px !important;
}

.static__content {
  margin-top: calc(6rem + clamp(5rem, 3.2759rem + 4.5977vw, 11rem));
  padding-block-end: clamp(5rem, 3.5632rem + 3.8314vw, 10rem);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.1831rem + 0.8451vw, 2.4rem);
  line-height: 1.75;
  margin-block-end: clamp(1rem, 0.331rem + 1.784vw, 2.9rem);
}

.woocommerce {
	padding: 120px 60px;
}

.woocommerce-checkout #payment {
	background-color: #E7E7E7 !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
	color: #000000;
}

.woocommerce-checkout #payment ul.payment_methods li label img {
	margin-top: 20px;
}

#place_order {
	background-color: #5c8206;
}

.woocommerce-form-coupon-toggle,
#customer_details .col-2 {
	display: none;
}

.woocommerce table.shop_table th {
	padding: 9px 0 !important;
}

#customer_details {
	margin-bottom: 24px;
}

.bpa-front-module--pm-body__item.bpa-onsite {
	display: none !important;
}	