html {
  font-family: "Nunito", sans-serif;
  background-color: #fefefe;
  color: #000000;
  font-size: 14px;
}

body,
html {
  overflow-x: hidden;
}

html.menu-open {
  overflow: hidden;
}

.no-scroll {
  overflow: hidden !important;
  height: 100%;
}

li {
  list-style: none;
}

input {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #383297;
  display: block;
  transition: all 0.3s;
}

.container {
  padding: 0 16px;
  max-width: 1320px;
  margin: 0 auto;
}

h1 {
  font-family: "Dela Gothic One", sans-serif;
  color: #fefefe;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}
h1 span {
  color: #ffc626;
  font-size: 40px;
}

section {
  margin-bottom: 80px;
}

.title {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 24px;
  color: #9d6bfe;
  margin-bottom: 32px;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
.title_color_dark-purple {
  color: #383297;
}
.title_color_white {
  color: #fefefe;
}
.title_color_yellow {
  color: #ffc626;
}

.gradient-block {
  padding: 40px;
  background: linear-gradient(to bottom right, #9d6bfe, #06d1de);
  border-radius: 24px;
  color: #fefefe;
}
.gradient-block__content {
  line-height: 1.5;
  text-align: center;
}
.gradient-block__content p {
  margin-bottom: 32px;
  text-align: left;
}

.button {
  border-radius: 24px 4px 24px 4px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 40px;
  border: 0;
  text-wrap: nowrap;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
  text-align: center;
}
.button_primary {
  color: #fefefe;
  background: linear-gradient(to bottom right, #9d6bfe, #06d1de);
}
.button_primary:after {
  background: linear-gradient(-70deg, #06d1de, #383297, #9d6bfe);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  border-radius: 24px 4px 24px 4px;
}
.button_secondary {
  color: #383297;
  background-color: #ffc626;
}
.button_secondary:after {
  background: linear-gradient(70deg, #fefefe, #ffc626);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  border-radius: 24px 4px 24px 4px;
}

.button_primary:hover::after,
.button_secondary:hover::after {
  opacity: 1;
}

header {
  position: relative;
  z-index: 2;
  font-family: "Nunito", sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
}
.header__nav {
  display: none;
}
.header__nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.header__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.header__link {
  transition: 0.3s;
  position: relative;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: currentColor;
  transition: all ease 0.3s;
}
.header__link:hover::after {
  left: 0;
  right: 0;
  height: 1px;
}
.header__menu-mobile {
  display: block;
  position: relative;
}
.header__nav-mobile {
  position: fixed;
  right: 0;
  top: 90px;
  height: calc(100dvh - 90px);
  transform: translateX(100%);
  z-index: 100;
  background-color: #fefefe;
  width: 100%;
  padding: 32px 16px;
  transition: all 0.3s;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header__nav-mobile__link {
  width: 100%;
}
.header__nav-mobile__item {
  margin-bottom: 16px;
  font-size: 24px;
}
.header__nav-mobile.active {
  transform: translateX(0);
}

.burger {
  position: relative;
  width: 1em;
  height: 1em;
  font-size: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.5rem;
  color: #383297;
}
.burger-line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.125em;
  border-radius: 0.125em;
  background: currentColor;
  transition: inherit;
}
.burger-line:nth-child(1) {
  top: 0.125em;
}
.burger.is-active .burger-line:nth-child(1),
.w-nav-button.w--open .burger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotateZ(-135deg);
}
.burger-line:nth-child(2) {
  top: 0.438em;
}
.burger.is-active .burger-line:nth-child(2),
.w-nav-button.w--open .burger-line:nth-child(2) {
  right: 50%;
  width: 0;
}
.burger-line:nth-child(3) {
  top: 0.75em;
  width: 0.625em;
}
.burger.is-active .burger-line:nth-child(3),
.w-nav-button.w--open .burger-line:nth-child(3) {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotateZ(135deg);
}

.card {
  background-color: #fefefe;
  border-radius: 48px 16px 48px 16px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: left;
}
.card:last-child {
  margin-bottom: 0;
}
.card__caption {
  --pl_courses-howto-card: "";
  font-size: 24px;
  font-weight: 700;
  color: #383297;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
}
.card__caption:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: var(--pl_courses-howto-card);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.card__text {
  line-height: 1.5;
}

.about__img-container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  height: 460px;
  margin-bottom: 24px;
}
.about__img-container__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about__info-container__text-container {
  margin-bottom: 24px;
  background-color: #f4f4f4;
  border-radius: 24px;
  padding: 32px;
}
.about__info-container__text-container__p p {
  margin-bottom: 8px;
  line-height: 1.5;
}
.about__info-container__stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  align-items: stretch;
}
.about__info-container__stats__stat {
  background: linear-gradient(to bottom right, #9d6bfe, #06d1de);
  color: #fefefe;
  border-radius: 16px;
  padding: 24px;
  width: 50%;
}
.about__info-container__stats__stat:last-child {
  border-radius: 16px 16px 48px 16px;
}
.about__info-container__stats__stat__number {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 16px;
}
.about__info-container__stats__stat__caption {
  font-size: 16px;
  font-weight: 700;
}

.for-whom__title {
  text-align: center;
  margin-bottom: 32px;
}
.for-whom__content {
  line-height: 1.5;
}
.for-whom__content__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  gap: 16px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.for-whom__content__item:last-child {
  margin-bottom: 0;
}
.for-whom__content__item__icon {
  --pl_courses-icon: "";
  width: 42px;
  height: 42px;
  background-image: var(--pl_courses-icon);
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  opacity: 0;
  transform: translate(30px, 30px) scale(0.5);
}

.howto {
  background-color: #9d6bfe;
  padding: 40px;
  border-radius: 24px;
}
.howto__picture {
  max-width: 100%;
  object-fit: contain;
}
.howto__left-side {
  margin-bottom: 24px;
}

.course-wrapper {
  border-radius: 24px;
  padding: 32px;
  background-color: #f4f4f4;
  margin-bottom: 32px;
}
.course-wrapper:last-child {
  margin-bottom: 0px;
}
.course {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 24px;
}
.course__title {
  --pl_courses-course__title: "";
  font-size: 24px;
  font-weight: 700;
  color: #383297;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 16px;
}
.course__title:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: var(--pl_courses-course__title);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.course__description {
  line-height: 1.5;
}
.course__description p:nth-child(n + 2) {
  margin-top: 8px;
}
.course__description p img {
  margin-right: 8px !important;
}
.course__description strong,
.course__description b {
  font-weight: 700;
}
.course__price {
  font-size: 40px;
  font-weight: bold;
  padding: 4px 8px;
  color: #383297;
  border-radius: 4px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  justify-content: flex-end;
}
.course__price__discount {
  text-decoration: line-through;
  font-size: 24px;
  font-weight: 400;
}
.course__button {
  width: 100%;
}

.lessons-container {
  border: 1px dashed #9d6bfe;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
}
.lessons-container__subtitle {
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 700;
}
.lesson {
  margin-bottom: 8px;
  line-height: 1.5;
}
.lesson:last-child {
  margin-bottom: 0;
}
.lesson__title {
  position: relative;
  color: #383297;
  padding-left: 24px;
  margin-bottom: 4px;
}
.lesson__title:before {
  position: absolute;
  content: "⟶";
  color: #383297;
  left: 0;
  top: -2px;
}
.lesson__description {
  line-height: 1.5;
}

.price-wrapper-desktop {
  display: none;
  margin-top: 24px;
}

.feedback {
  background-color: #ffc626;
  padding: 60px 0;
  text-align: center;
  line-height: 1.5;
}
.feedback__title {
  --pl_courses-feedback__title: "";
  font-size: 24px;
  font-weight: 700;
  color: #383297;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
}
.feedback__title:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: var(--pl_courses-feedback__title);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.feedback__card {
  height: 100%;
}

.question {
  border-bottom: 1px solid #383297;
  margin: 0 auto 24px auto;
}
.question__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}
.question__title {
  font-size: 24px;
  font-weight: 700;
  color: #383297;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
  padding-left: 0;
}
.question__title:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.question__answer {
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  margin-bottom: 16px;
  padding: 0 16px;
}
.question__icon {
  transition: 0.3s;
}
.question.active .question__answer {
  max-height: 500px;
}
.question.active .question__icon {
  transform: rotateX(180deg);
}

.form-container__text {
  margin-bottom: 24px;
}

.input {
  width: 100%;
  border-radius: 24px 4px 24px 4px;
  border: 0;
  padding: 20px;
  font-size: 14px;
  color: #383297;
  background-color: #fefefe;
  resize: none;
  font-family: "Nunito", sans-serif;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.input::placeholder {
  color: #383297;
  font-size: 14px;
}
.input:focus-visible {
  outline: #ffc626 auto 1px;
}

.form {
  margin-bottom: 24px;
}
.form__button {
  width: 100%;
}

.footer {
  background-color: #ffc626;
  padding: 60px 0;
  color: #383297;
  font-family: "Nunito", sans-serif;
}
.footer__container {
  width: max-content;
}
.footer__container__logo {
  margin: 0 auto 16px auto;
}
.footer__link {
  text-align: center;
}
.footer a:hover {
  color: #fefefe;
}

.contact-info {
  margin-top: 32px;
}
.contact-info__item {
  --pl_courses-info__item: "";
  padding-left: 40px;
  position: relative;
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-info__item:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: var(--pl_courses-info__item);
}

.contact-info_mail a:hover {
  color: #fefefe;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 10px;
  gap: 0.5rem;
  margin-bottom: 16px;
}
.custom-checkbox a {
  display: inline;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  flex-shrink: 0;
}

.custom-checkbox .checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #fefefe;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
}
.wpcf7-list-item-label {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.wpcf7-list-item-label .checkmark {
  margin-top: 1px;
}

.custom-checkbox .checkmark_payment {
  border: 1px solid #c6c5c5;
}

.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid #fefefe;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked + * .checkmark {
  background-color: #29bf12;
  border-color: #29bf12;
}

.custom-checkbox input:checked + * .checkmark::after {
  display: block;
}

.social-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.social-list__item {
  width: 32px;
  height: 32px;
}
.social-list__link svg {
  width: 32px;
  height: 32px;
}
.social-list__link svg path {
  transition: all 0.3s;
}
.social-list__link:hover svg path {
  fill: #fefefe;
}

.logo-wrapper {
  width: 200px;
}
.logo-wrapper__logo {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.privacy-section {
  margin: 60px 0;
  line-height: 1.5;
  font-family: "Nunito", sans-serif;
}
.privacy-section p {
  margin-bottom: 8px;
}
.privacy-section strong {
  font-weight: 700;
}
.privacy-section li {
  list-style: disc;
  list-style-position: inside;
}

.popup-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  transition: all ease-in 300ms;
}
.popup-wrapper:before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
  backdrop-filter: blur(3px);
}

.popup-wrapper.open {
  opacity: 1;
  pointer-events: all;
}

.popup-payment {
  background-color: #fefefe;
  border-radius: 24px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: scale(0.6) translate(-50%, -50%);
  padding: 44px 36px 36px 36px;
  width: 90%;
  max-height: 90dvh;
  z-index: 10;
  line-height: 1.5;
  transition: all ease-in 300ms;
}
.popup-wrapper.open .popup-payment {
  transform: translate(-50%, -50%);
}
.popup-payment__container {
  max-height: calc(90dvh - 80px);
  overflow-y: auto;
}
.popup-payment input {
  border: 1px solid #383297;
}
.popup-payment__product {
  font-size: 24px;
  font-weight: 700;
  color: #383297;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 24px;
  padding-left: 0;
  text-align: center;
}
.popup-payment__product:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.popup-payment__price {
  font-size: 24px;
  font-weight: 700;
  color: #383297;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 24px;
  padding-left: 0;
}
.popup-payment__price:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.popup-payment__button {
  width: 100%;
}
.popup-payment__info {
  margin-bottom: 16px;
}
.popup-payment__info__title {
  margin-bottom: 8px;
  color: #ff0054;
  font-weight: 700;
}

.payment-title {
  font-weight: 700;
  margin-bottom: 16px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid #383297;
  border-radius: 24px 4px 24px 4px;
  margin-bottom: 16px;
  cursor: pointer;
}

.payment-option input[type="radio"] {
  accent-color: #383297;
}

.label-text {
  font-weight: 700;
  flex-grow: 1;
}

.logos img {
  min-width: 40px;
  max-height: 24px;
}

.payment-details {
  display: none;
}

.payment-details {
  margin-bottom: 24px;
}
.payment-details input {
  width: 100%;
  padding: 16px;
  border: 1px solid #c6c5c5;
  border-radius: 8px;
  margin-bottom: 16px;
  color: #383297;
}
.payment-details input::placeholder {
  color: #c6c5c5;
  font-size: 14px;
}
.payment-details input:focus-visible {
  outline: #383297 auto 1px;
}

.two-cols {
  display: flex;
  gap: 12px;
}

.note {
  font-size: 14px;
  margin-bottom: 16px;
}
.note a {
  display: inline-block;
}

.close-button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  color: #ff0054;
  font-size: 18px;
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 0 6px;
}

.success-popup {
  --pl_courses-icon: "";
  background-color: #fefefe;
  border-radius: 24px;
  position: fixed;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  opacity: 0;
  pointer-events: none;
  padding: 36px 36px 36px 76px;
  z-index: 11;
  line-height: 1.5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.1);
  transition: all ease-in 300ms;
}
.success-popup.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
.success-popup.after-open {
  transform: translate(-50%, -100%);
}
.success-popup:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  left: 36px;
  transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: var(--pl_courses-icon);
}

.form-submitted {
  display: none;
}

.swiper-container {
  position: relative;
  padding: 0 16px 32px 16px;
}

.swiper-slide {
  height: auto !important;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  border: 1px solid #383297;
  background-color: transparent !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
}

.swiper-pagination-bullet-active {
  background-color: #383297 !important;
}

.swiper-button-next,
.swiper-button-prev {
  background: linear-gradient(to bottom right, #9d6bfe, #06d1de) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  color: #fefefe !important;
  transition: all 0.5s;
  position: absolute;
  z-index: 10;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}
.swiper-button-next:before,
.swiper-button-prev:before {
  background: linear-gradient(-70deg, #9d6bfe, #383297, #06d1de);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  border-radius: 50%;
}

.swiper-button-next:hover:before,
.swiper-button-prev:hover:before {
  opacity: 1;
}

.swiper-button-next {
  right: -6px !important;
}

.swiper-button-prev {
  left: -6px !important;
}

@media (min-width: 480px) {
  h1 {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 42px;
    margin-bottom: 40px;
  }
  h1 span {
    font-size: 62px;
  }
  .title {
    font-size: 40px;
  }
  .about__info-container__stats__stat__number {
    font-size: 38px;
  }
  .about__info-container__stats__stat__caption {
    font-size: 24px;
  }
  .question {
    width: 80%;
  }
  .question__answer {
    padding: 0 40px;
  }
  .footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: auto;
  }
  .footer__container__logo {
    margin: 0 0 16px 0;
  }
  .footer__link {
    text-align: left;
  }
  .social-list {
    justify-content: flex-start;
  }
  .contact-info {
    margin-top: 0;
  }
  .swiper-container {
    position: relative;
    padding: 0 32px 32px 32px;
  }
  .swiper-button-next {
    right: 10px !important;
  }
  .swiper-button-prev {
    left: 10px !important;
  }
  .popup-payment {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
  h1 {
    font-size: 44px;
    margin-bottom: 40px;
    text-align: left;
  }
  h1 span {
    font-size: 68px;
  }
  section {
    margin-bottom: 120px;
  }
  .header {
    padding: 32px 0;
  }
  .header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
  .header__menu-mobile {
    display: none;
  }
  .form__button {
    width: 100%;
  }
  .title_margin {
    margin-bottom: 60px;
  }
  .card {
    padding: 32px;
    margin-bottom: 32px;
  }
  .card:last-child {
    margin-bottom: 0;
  }
  .gradient-block {
    --pl_courses-hero: "";
    padding: 80px;
    border-radius: 50px 50px 200px 50px;
    position: relative;
    overflow: hidden;
  }
  .gradient-block__content {
    width: 50%;
    text-align: left;
  }
  .gradient-block::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 50%;
    height: 90%;
    background-image: var(--pl_courses-hero);
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .gradient-block_contact::after {
    width: 43%;
    height: 90%;
  }
  .gradient-block__link {
    width: max-content;
  }
  .about {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    position: relative;
  }
  .about__img-container {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    margin-bottom: 0;
    max-height: 100%;
  }
  .about__img-container__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .about__info-container {
    width: 50%;
    margin-left: calc(50% + 32px);
  }
  .about__info-container__text-container {
    padding: 40px;
    margin-bottom: 24px;
  }
  .about__info-container__text-container__p p {
    margin-bottom: 16px;
  }
  .about__info-container__text-container__title {
    text-align: left;
  }
  .about__info-container__stats__stat {
    padding: 24px 40px;
  }
  .for-whom__title {
    margin-bottom: 60px;
  }
  .for-whom__content {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr;
  }
  .for-whom__content__item {
    margin-bottom: 0;
  }
  .howto {
    border-radius: 50px;
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
  .howto__title {
    text-align: left;
  }
  .howto__left-side {
    width: 50%;
    margin-bottom: 0;
  }
  .howto__right-side {
    width: 50%;
  }
  .course-wrapper {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
  .courses-container__title {
    margin-bottom: 60px;
  }
  .course,
  .lessons-container {
    width: calc(50% - 16px);
    margin-bottom: 0;
  }
  .price-wrapper-mobile {
    display: none;
  }
  .price-wrapper-desktop {
    display: block;
  }
  .feedback {
    padding: 120px 0;
  }
  .feedback-container__title {
    margin-bottom: 60px;
  }
  .popup-payment {
    width: 50%;
  }
  .success-popup {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  h1 {
    font-size: 58px;
  }
  h1 span {
    font-size: 88px;
  }
}

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