/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

/* @font-face {
  font-family: "AnastasiaScript";
  src: url("../fonts/AnastasiaScript.woff2") format("woff2"),
    url("../fonts/AnastasiaScript.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  color: #000;
}

*:focus {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #d9dcdf;
  display: flex;
  flex-direction: column;
}

.heade-menu .list-menu-item {
  background: #d9dcdf;
}

main {
  flex: auto;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: #6d6d6d;
  background-color: #fff;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #6d6d6d;
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #6d6d6d;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #6d6d6d;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #ffffff7a;
}

.hover {
  cursor: pointer;
  transition: opacity 0.4s;
}

.hover:hover {
  opacity: 0.5;
}

.container {
  display: block;
  position: relative;
  width: 1200px;
  padding: 0;
  margin: 0 auto;
  height: 100%;
}
.color-red.color-red.color-red.color-red{
  color: #c00909;
}
/* section {
  overflow: hidden;
} */

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/
body::-webkit-scrollbar-track {
  background: #d9dcdf;
  /* цвет зоны отслеживания */
}

body::-webkit-scrollbar-thumb {
  background-color: #1b1b1b;
  /* цвет бегунка */
  border-radius: 20px;
}

.black-button {
  display: flex;
  align-items: center;
}

.text-btn {
  padding: 20px 30px;
  border-radius: 30px;
  background: #0b0b0b;
  color: #fff;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.arow-btn {
  border-radius: 30px;
  background: #0b0b0b;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}

.arow-btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.blur2 {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.blur4 {
  display: block;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.blur15 {
  display: block;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.section_top {
  margin-top: 120px;
}

.title,
.title span {
  color: #0b0b0b;
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
}

.title span {
  font-weight: 700;
}

/* header */
.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  background-color: #d9dcdf;
}

.menu {
  display: none;
}

.heade-menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 15px;
}

.wrap__logo {
  width: 185px;
  height: 39px;
  flex-shrink: 0;
}

.heade-menu ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.heade-menu ul li {
  position: relative;
  width: max-content;
}

.heade-menu ul li::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  background: #c00909;
  transition: 0.3s all;
  top: -31px;
  left: 0;
}

.heade-menu ul li:hover::before {
  width: 100%;
}

.heade-menu ul li a {
  color: #0b0b0b;
  font-size: 16px;
  font-weight: 400;
}

.header .text-btn {
  padding: 16px 24px;
  font-size: 14px;
}

.heade-menu .arow-btn {
  width: 49px;
  height: 49px;
}

.heade-menu .arow-btn img {
  width: 20px;
  height: 20px;
}

/* hero */
.hero {
  min-height: 100vh;
  height: fit-content;
  display: flex;
  justify-content: center;
  padding: 130px 0 68px;
}

.hero_top {
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero_center {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.title_hero,
.title_hero span {
  color: #0b0b0b;
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  min-width: max-content;
}

.title_hero span {
  display: block;
  font-size: 48px;
  font-weight: 700;
}

.text_description,
.text_description span {
  color: #0b0b0b;
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  width: 325px;
}

.text_description span {
  font-weight: 700;
}

.hero_bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.hero_bottom-l {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;

  padding: 30px;
  padding-right: 45px;
  width: 500px;
}

.hero__inner {
  position: relative;
  display: grid;
  height: 100%;
  grid-template-rows: auto auto 1fr;
}

.hero_bg-mob {
  display: none;
}

.hero_bg {
  position: absolute;
  max-width: 1649px;
  top: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero_bg img {
  object-position: center;
}

.hero_bottom-text,
.hero_bottom-text span {
  color: #0b0b0b;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.hero_bottom-text{
  display: flex;
  justify-content: space-between;
}

.hero_bottom-text span {
  font-weight: 600;
}

.hero_b-descr {
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
}

.hero_b-start {
  display: flex;
  align-items: center;
  gap: 18px;

  color: #0b0b0b;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.data {
  display: flex;
  align-items: center;
  gap: 5px;
}

.data .line {
  flex-shrink: 0;
  width: 2px;
  height: 14px;
  background: #c00909;
}

.hero_bottom-r {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.hero_bottom-r span {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 60px;
  background: #0b0b0b;
}

/* course-fit */
.course-fit {
  position: relative;
  display: flex;
  justify-content: center;
}

.course_bg {
  position: absolute;
  top: -90px;
  max-width: 1593px;
}

.course-fit .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.course-fit__item {
  display: flex;
  padding: 20px;
  gap: 20px;
  align-items: center;
}

.course-fit__item .line {
  width: 2px;
  height: 34px;
  background: #c00909;
  flex-shrink: 0;
}

.course-fit__item p {
  color: #0b0b0b;
  font-size: 18px;
  font-weight: 400;
  flex: 1;
}

.course-fit_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.course-fit__bottom .text {
  color: #0b0b0b;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.course-fit__bottom-item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 8px;
}

.course-fit__bottom-item span {
  display: block;
  padding: 10px 20px;
  border-radius: 24px;
  background: #6d6d6d;

  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

/* after-course */
.after-course {
  position: relative;
}

.after-course .container {
  position: relative;
  display: flex;
  gap: 63px;
}

.after-l {
  height: 620px;
  width: 500px;
  position: sticky;
  top: 100px;
}

.after-r {
  flex: 1;
}

.after-r_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 10px;
}

.after_bg {
  position: absolute;
  max-width: 690px;
  left: -85px;
  top: 173px;
  z-index: -1;
}

.after-r__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.after-r_wrap::-webkit-scrollbar {
  width: 2px;
  /* Ширина полосы прокрутки */
}

.after-r_wrap::-webkit-scrollbar-track {
  background: #d9d9d9;
  /* Цвет фона полосы */
  border-radius: 0;
}

.after-r_wrap::-webkit-scrollbar-thumb {
  background: #fff;
  /* Цвет бегунка */
  border-radius: 0px;
}

.after-r__item .num {
  color: #0b0b0b;
  font-size: 64px;
  font-weight: 500;
  text-transform: uppercase;
}

.after-r__item .line {
  width: 2px;
  height: 34px;
  background: #c00909;
}

.after-r__item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.after-r__item .text .text-title {
  color: #0b0b0b;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.after-r__item .text .text-descr {
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
}

.after_descr {
  margin-top: 20px;
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

/* tarif */
.tarif .title {
  display: flex;
  justify-content: center;
}

.tarif__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
  gap: 150px;
}

.tarif__item-t__block-position {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.tarif__item-t__block-position p {
  color: #0b0b0b;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.tarif__item-t__block-position p.red {
  color: #c00909;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.tarif__item-t__block-position .red-line {
  width: 2px;
  height: 14px;
  background: #c00909;
}

/* .tarif__item:nth-child(1) .black-button {
  max-width: 50%;
}
.tarif__item:nth-child(1) {
  background-image: url(../images/tarif_bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right -50px;

  grid-column: span 2;
} */
.tarif__item:nth-child(2) {
  background-image: url(../images/4_bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.tarif__item:nth-child(1) {
  background-image: url(../images/5_bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right -90px;
}

.tarif__wrap {
  margin-top: 50px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.tarif-title,
.tarif-title span {
  color: #0b0b0b;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
}

.tarif-title span {
  font-weight: 700;
}

.tarif__item-t ul {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  gap: 12px;
  max-width: 78%;
}

.tarif__item-t ul li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tarif__item-t ul li img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}

.tarif__item-t ul li>div {
  flex: 1;
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
  max-width: 300px;
}

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

.tarif__item-t__block>div {
  padding: 10px 20px;
  border-radius: 24px;
  width: max-content;
  border: 1px solid #0b0b0b;

  color: #0b0b0b;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.tarif__item-b .price {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  color: #0b0b0b;
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
}

.tarif__item-b .price span {
  color: #c00909;
  font-size: 18px;
  font-weight: 700;
  text-decoration-line: line-through;
  text-transform: uppercase;
}

.tarif__item-b .black-button .text-btn {
  width: 100%;
}

/* plan */
.plan-bottom {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s;
}

.plan-bottom span {
  display: block;
  height: 40px;
}

.active .plan-bottom {
  grid-template-rows: 1fr;
}

.plan-bottom>div {
  min-height: 0;
  font-size: 18px;
  font-weight: 400;
}

.plan {
  background-image: url(../images/bg_6.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.plan-item {
  padding: 25px;
}

.paln-top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.plan-wrap {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.active .plan-close {
  transform: rotate(-90deg);
}

.plan-close {
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  transition: 0.3s all;
}

.plan-top_title,
.plan-top_title span {
  color: #0b0b0b;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.plan-top_title span {
  font-weight: 500;
}

.plan-bottom__wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.plan-bottom__wrap-i {
  display: grid;
  align-items: start;
  gap: 20px;
  grid-template-columns: auto 1fr;
}

.plan-bottom__wrap-i .left {
  width: 224px;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
}

.plan-bottom__wrap-i .left .l-title {
  color: #0b0b0b;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.l-block .img {
  width: 24px;
  height: 24px;
}

.plan-bottom__wrap-i .left .l-block {
  display: grid;
  margin-top: 12px;
  gap: 12px 8px;
  align-items: center;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: 24px 1fr;
}

.time {
  color: #0b0b0b;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.plan-bottom__wrap-i .right ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-bottom__wrap-i .right ul li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.plan-bottom__wrap-i .right ul li img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}

.plan-bottom__wrap-i .right ul li div {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  flex: 1;
}

/* benefit */
.benefit_wrap {
  margin-top: 50px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.benefit_wrap .benefit-item:nth-child(1) {
  grid-column: span 2;
}

.benefit-item {
  padding: 20px;
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
}

.benefit-item p {
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
  flex: 1;
}

.benefit-item::before {
  content: "";
  display: block;
  width: 2px;
  height: 34px;
  background: #c00909;
}

/* faq */
.f-bottom {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s;
}

.f-bottom span {
  display: block;
  height: 20px;
}

.active .f-bottom {
  grid-template-rows: 1fr;
}

.f-bottom>div {
  min-height: 0;
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
}

.faq_wrap {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-top_title {
  color: #0b0b0b;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.faq-item {
  padding: 25px;
}

.f-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.f-close {
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  transition: 0.3s all;
}

.active .f-close {
  transform: rotate(-90deg);
}

/* about */

.about__inner {
  position: relative;
  background: #eceeef;
  border-radius: 30px;
  overflow: hidden;
}

.about-img {
  position: absolute;
  left: 0;
  bottom: -5px;
  max-width: 850px;
  z-index: 0;
}

.about_wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 90px 100px 60px 60px;
}

.about-l {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-title,
.about-title span {
  color: #0b0b0b;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
}

.about-title span {
  font-weight: 700;
}

.about-text {
  max-width: 200px;
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.about-text::before {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  background: #c00909;
}

.about-text p {
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
  flex: 1;
}

.about-l_bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-l_bottom>div {
  border-radius: 50px;
  background: #6d6d6d;
  padding: 10px 20px;
  width: max-content;

  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.about-r {
  width: 458px;
  display: flex;
  flex-direction: column;
  gap: 145px;
}

.about-r__title,
.about-r__title span {
  color: #0b0b0b;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.about-r__title span {
  font-weight: 700;
}

.about-r__img {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.about-r__img .img {
  padding: 20px;
}

.about-r_top p {
  margin-top: 20px;
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
}

/* main-footer */
.main-footer {
  background: rgba(217, 220, 223, 0.7);
  padding-top: 40px;
  margin-top: 110px;
}

.main-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 50px;
}

.logo_footer {
  width: 185px;
  height: 39.049px;
}

.contact_footer p {
  color: #6d6d6d;
  font-size: 16px;
  font-weight: 400;
}

.contact_footer>div {
  margin-top: 20px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.contact_footer div .img {
  width: 40px;
  height: 40px;
}

.main-footer ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-footer ul a {
  color: #0b0b0b;
  font-size: 16px;
  font-weight: 400;
}

.footer_social {
  border-radius: 20px;
  background: #6d6d6d;
  padding: 20px;
}

.footer_social-title,
.footer_social-title span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  width: 245px;
}

.footer_social-title span {
  font-weight: 600;
}

.footer_social-wrap {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_social-wrap .img {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_social-wrap .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.footer {
  background: #6d6d6d;
  padding: 12px 0;
}

.footer__inner {
  display: flex;
  justify-content: center;
  gap: 112px;
}

.footer p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer p img {
  width: 39px;
  height: 16px;
}

/* questions */
.questions-l_title {
  text-align: center;
  color: #0b0b0b;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.questions .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

form.wpcf7-form>p>br {
  display: none;
}

form.wpcf7-form>p {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wpcf7 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form .black-button {
  margin-top: 40px;
}

.input {
  width: 100%;
  display: block;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.questions-l {
  padding: 35px 30px;
}

.questions-r {
  padding: 66px 30px;
}

.questions-r .text {
  margin-top: 20px;
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
}

.last-bg {
  position: relative;
  /*background-image: url(../images/bg-7.webp);*/
  /*background-size: 100% 100%;*/
  /*background-position: bottom;*/
  /*background-repeat: no-repeat;*/
}

.last-bg-img {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  z-index: -1;
}

.simple-section {
  margin-top: 110px;
}

.simple-section .title {
  text-align: center;
}

.mk-simple-text * {
  margin-top: 15px;
  line-height: 28px;
  font-size: 18px;
}

/* pop-up styles */
.pop_up {
  position: fixed;
  z-index: -1;
  top: -100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.308);
  overflow: hidden;
  opacity: 0;
  /* backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px); */
  transition: 0.5s all;
}

.pop_up.modal_active {
  opacity: 1;
  z-index: 10;
  top: 0;
}

.pop-up_container {
  background-color: var(--dark-blue);
  padding: 0 20px;
  width: 100%;
  max-width: 960px;
  position: relative;
  display: flex;
  justify-content: center;
}

.pop-up_content {
  padding: 30px 20px;
  width: 100%;
}

.close-pop_up {
  position: absolute;
  right: 30px;
  top: 10px;
  cursor: pointer;

  font-size: 48px;
  font-weight: 400;
  transform: rotate(45deg);

  transition: 0.5s;
}

.close-pop_up:hover {
  transform: rotate(225deg);
}

.pop_up .footer-form__btn:hover {
  opacity: 0.8;
  background-color: var(--white);
}

.pop_up .footer-form__btn:hover span {
  color: var(--black);
}

div#wpcf7-f54-o1 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pop-up_container form {
  max-width: 650px;
}

/* pop-up styles */
.cf7sr-g-recaptcha {
  display: flex;
  margin-top: 20px;
  justify-content: center;
}

.grecaptcha-badge {
  display: none;
}

/* mk-home-all */
.mk-home {
  .hero {
    padding: 120px 0 68px;
  }

  .title_hero,
  .title_hero span {
    font-size: 24px;
    font-weight: 400;
  }

  .title_hero span {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .hero_center {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  /* after-course */
  .after-course .container {
    gap: 20px;
  }

  .after-r__item .text {
    gap: 5px;
  }

  .after-course {
    padding: 150px 0;
    background-image: url(../images/benef-bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}

/* mentors */
.mentors {
  overflow: hidden;
}

.mentors .mentorsSwiper {
  overflow: visible;
}

.mentors-wrap {
  margin-top: 50px;
  gap: 20px;
}

.mentors .top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.mentors--item {
  height: 100%;
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mentors-wrap .year {
  padding: 10px 20px;
  width: max-content;
  border-radius: 50px;
  background: #fff;
  color: #c00909;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  left: 20px;
}

.mentors--item .img {
  max-height: 400px;
}

.mentors--item .name,
.mentors--item .name span {
  color: #0b0b0b;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.mentors--item .name span {
  font-weight: 600;
}

.mentors--item .text,
.mentors--item .text span {
  color: #0b0b0b;
  font-size: 18px;
  font-weight: 400;
}

.mentors--item .text span {
  font-weight: 600;
}

.mentors--bottom-btn {
  flex: 1;
  display: flex;
  align-items: end;
}

.mentors--bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

/* gallery */
.gallery--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery_wrap {
  margin-top: 50px;
}

.gallery_wrap .swiper-slide {
  /* max-height: 430px; */
  height: auto;
}

.reviews .swiper-slide img {
  border-radius: 20px;
}

.swiper-slide {
  overflow: hidden;
  border-radius: 20px;
  height: auto;
}

.gallery_wrap .swiper-slide img {
  display: block;
  height: 100%;
  object-position: center;
}

/* course */
.course-fit__item--text>div {
  color: #0b0b0b;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.courses-fit_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.courses--title {
  color: #0b0b0b;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.courses--subtotal {
  margin-bottom: 20px;
  color: #0b0b0b;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
.courses--subtotal:has(span){
  display: flex;
  gap: 20px;
  align-items: center;
}
.courses-fit__item {
  display: flex;
  flex-direction: column;
  padding: 35px 30px;
  min-height: 270px;
}

.courses--bottom {
  flex: 1;
  display: flex;
  align-items: end;
}

.courses--data {
  margin-bottom: 20px;
  color: #c00909;
  font-size: 18px;
  font-weight: 400;
}

.courses-fit__item {
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}

.courses-fit__item:nth-child(1) {
  background-image: url(../images/home-course-env.webp);
}

.courses-fit__item:nth-child(2) {
  background-image: url(../images/curse-bg4.webp);
}

.courses-fit__item:nth-child(3) {
  background-image: url(../images/curse-bg3.webp);
}

.courses-fit__item:nth-child(4) {
  background-image: url(../images/curse-bg.webp);
}

.courses-fit__item:nth-child(5) {
  background-image: url(../images/curse-bg2.webp);
}

/* reviews */
.nav {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #0b0b0b;
}

.reviews--btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews--left_top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews--left_top>div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.reviews--left_top .img {
  width: 130px;
  flex-shrink: 0;
}

.raiting {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.raiting p {
  color: #0b0b0b;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
}

.raiting img {
  width: 120px;
}

.reviews {
  position: relative;
}

.reviews .container {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

.reviews-right {
  max-width: 60%;
}

.reviews--left {
  gap: 150px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.swiper-button-disabled {
  opacity: 0.5;
}

/* offer */
.offer .title {
  text-align: center;
}

.offer__wrap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  max-height: 535px;
  padding: 25px 20px;
}

.offer-arrow-wrapp {
  position: absolute;
  z-index: 1;
  bottom: 25px;
  right: 20px;
}

.offer__item .img img {
  display: block;
}

.offer__item .arrow {
  border-radius: 30px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px;
  background-color: #fff;
  transition: 0.4s all;
}

.offer__item:hover .arrow {
  rotate: -90deg;
  opacity: 0.7;
}

.offer--title,
.offer--title span {
  color: #0b0b0b;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.offer--title span {
  font-weight: 600;
}

.mk-block {
  margin: 10px 0 15px;
}

/**************************************************/
/**                 Marvelous                    **/
/**************************************************/
.marvelous-page .hero_bottom-l {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.marvelous-page .hero_bg {
  max-width: 1500px;
  display: flex;
  justify-content: end;
  top: auto;
  bottom: 0;
}

/* marvelous-course */

.marvelous-course--inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.course-mar_bg {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 50%;
  height: 100%;
}

.course-mar_bg img {
  display: block;
  height: 100%;
  width: auto;
}

.marvelous-course--inner .title,
.course-mar_wrap {
  max-width: 50%;
}

.course-mar_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-mar__item {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.course-mar__item p {
  color: #0b0b0b;
  font-size: 18px;
  font-weight: 400;
}

.course-mar__item .line {
  flex-shrink: 0;
  height: 34px;
  width: 2px;
  background: #c00909;
}

.marvelous-course .course-fit__bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

/* marvelous-course */

/* .after-course */
.after-tabs {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  padding: 10px;
  width: max-content;
}

.after-tabs .tab {
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 60px;
  color: #0b0b0b;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  transition: 0.4s all;
}

.after-tabs .tab.active {
  color: #fff;
  background-color: #0b0b0b;
}

.after-r {
  position: relative;
}

.marvelous-page .after-r_wrap {
  position: absolute;
  top: 0;
  z-index: 0;
  opacity: 0;
  transition: 0.4s all;
}

.marvelous-page .after-r_wrap.active {
  position: relative;
  top: 0;
  z-index: 1;
  opacity: 1;
  transition: 0.4s all;
}

.marvelous-page .after_bg {
  position: absolute;
  max-width: 690px;
  left: -85px;
  top: 250px;
  z-index: -1;
}

/* .after-course */

/* tarif */
.marvelous-page .tarif__item-b {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tarif-descr {
  margin-top: 6px;
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
}

.tarif_line {
  max-width: 190px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tarif_line p {
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 600;
}

.tarif_line .line {
  width: 2px;
  height: 24px;
  flex-shrink: 0;
  background: #c00909;
}

.tarif__item-b-mar {
  width: max-content;

  display: flex;
  padding: 10px;
  flex-direction: column;
  gap: 10px;
}

.tarif__item-b-mar .item {
  justify-content: space-between;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tarif__item-b-mar .item p {
  /* max-width: 171px;
  width: 100%; */
  padding: 10px 20px;
  border-radius: 24px;
  border: 1px solid #0b0b0b;

  color: #0b0b0b;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.tarif__item-b .tarif__item-b-mar .price {
  margin-bottom: 0;
}

.tarif-descr2 {
  max-width: 385px;
  margin-top: 6px;
  color: #6d6d6d;
  font-size: 16px;
  font-weight: 400;
}

.tarif__item .or {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tarif__item .or .line {
  flex-shrink: 0;
  max-width: 45px;
  height: 2px;
  background: #c00909;
}

.tarif__item .or p {
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 600;
}

.mk-tarif--text {
  color: #6d6d6d;
  font-size: 16px;
  font-weight: 500;
}

.tarif--banners {
  grid-column: span 2;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tarif--banners img {
  display: block;
}

.marvelous-page .tarif__item:nth-child(1) {
  background-image: url(../images/4_bg-mk.webp);
}

.marvelous-page .tarif__item:nth-child(2) {
  background-image: url(../images/5_bg-mk.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom -50px right -90px;
}

/* .marvelous-page .tarif__item:nth-child(3) {
  background-image: url(../images/5_bg-mk.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right -90px bottom -100px;
} */
/* tarif */

/* plan */
.marvelous-page .plan {
  background-image: none;
  min-height: 1140px;
  overflow: hidden;
}

.plan .container,
.plan {
  position: relative;
  overflow: visible;
}

.marvelous-page .plan-mar_bg {
  position: absolute;
  z-index: -1;
  right: -340px;
  max-width: 645px;
  top: 10px;
}

.plan-mar-top {
  margin-top: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.plan-tabs {
  display: flex;
  gap: 20px;
  padding: 10px;
  width: max-content;
}

.plan-tabs .tab {
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 60px;
  color: #0b0b0b;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  transition: 0.4s all;
}

.plan-tabs .tab.actives {
  color: #fff;
  background-color: #0b0b0b;
}

.plan--inner {
  position: relative;
}

.marvelous-page .plan-wrap {
  margin-top: 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 0;
  opacity: 0;
  transition: 0.4s all;
}

.marvelous-page .plan-wrap.actives {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.plan-mar-top-inner {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.plan-mar-top-inner p {
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.plan-mar-top-inner .l-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* plan */

/* about */
.marvelous-page .about-title,
.marvelous-page .about-title span,
.marvelous-page .about-r__title,
.marvelous-page .about-r__title span,
.marvelous-page .about-text p {
  color: #fff;
}

.marvelous-page .about-l_bottom>div {
  color: #0b0b0b;
  background: #fff;
}

.marvelous-page .about-r_top p {
  margin-top: 50px;
  color: #fff;
  font-weight: 400;
}

.marvelous-page .about-r {
  width: 500px;
}

.marvelous-page .about__inner {
  background-image: url(../images/bg-about-anna.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
}

.marvelous-page .about-img {
  bottom: -65px;
  max-width: 760px;
}

.nowrap {
  white-space: nowrap;
  color: #6d6d6d;
}

.marvelous-page .data-wraps,
.plan-mar-top-text,
.marvelous-page .after-relative {
  position: relative;
  display: flex;
  align-items: center;
}

.marvelous-page .data-wraps .data,
.plan-mar-top-text p,
.marvelous-page .after-relative .after_descr {
  position: absolute;
  left: 0;
  z-index: 0;
  opacity: 0;
  transition: 0.3s all;
}

.marvelous-page .data-wraps .data.actives,
.plan-mar-top-text p.actives,
.marvelous-page .after-relative .after_descr.active {
  position: relative;
  z-index: 1;
  opacity: 1;
}

/**************************************************/
/**               substance-page                 **/
/**************************************************/
.substance-page .title_hero span {
  min-width: auto;
  max-width: 835px;
}

.substance-page .text-h-innner .text,
.substance-page .text-h-innner .text span {
  color: #0b0b0b;
  font-size: 18px;
  text-transform: uppercase;
}
.substance-page .text-h-innner .text{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.substance-page .text-h-innner .text span {
  font-weight: 600;
}

.substance-page .text-h-innner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.substance-page .hero_bottom-l {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.substance-page .hero_bg {
  max-width: 1620px;
  top: 50px;
}

.substance-about .inner {
  display: grid;
  align-items: center;
  grid-template-columns: 50% 48.4%;
}

.substance-about .inner .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.substance-about .text .item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.substance-about .text .item .line {
  width: 2px;
  height: 34px;
  background: #c00909;
  flex-shrink: 0;
}

.substance-about .text .item .title {
  color: #0b0b0b;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.substance-about .text .item p {
  margin-top: 20px;
  color: #6d6d6d;
  font-size: 18px;
}

.substance-course--inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.substance-page .course-mar_bg {
  position: absolute;
  top: 50px;
}

.substance-page .course-mar_bg img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.substance-page .after_bg {
  max-width: 550px;
  left: 0px;
}

.substance-page .after-course .container {
  gap: 43px;
}

.tarif__item-s {
  padding: 40px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tarif__item-s .mk--title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.tarif__item-s .img {
  position: relative;
  height: 271px;
  overflow: visible;
  width: 100%;
}

.tarif__item-s .img img {
  position: absolute;
  min-width: 760px;
  top: 0;
  left: 0;
}

.tarif__item-s .price-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.tarif__item-s .price-wrap p {
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.tarif__item-s .price {
  color: #0b0b0b;
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
}

.tarif__item-s .text-btn {
  width: 100%;
  max-width: none;
}

.substance-page .plan {
  overflow: hidden;
  background: none;
}

.substance-page .plan .container {
  overflow: visible;
  position: relative;
  min-height: 400px;
}

.plan-s_bg {
  position: absolute;
  width: 650px;
  top: 80px;
  right: -250px;
}

.stay-substance__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.stay-substance__inner .item {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stay-substance__inner .text {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}

.stay-substance__inner ul {
  margin-top: -10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stay-substance__inner ul li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.stay-substance__inner ul li img {
  display: block;
  width: 24px;
  height: 23px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

.stay-substance-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stay-substance-social a {
  display: block;
  cursor: pointer;
  width: 35px;
  height: 35px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  transition: 0.3s all;
}

.stay-substance-social a:hover {
  opacity: 0.8;
}

.utm-field {
  display: none !important;
}


.substance-page .tarif__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.substance-page .tarif-announcement {
  grid-column: 1 / 3;
  background-image: url("../imgmk/announcement.webp");
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  gap: 20px;
}

.tarif-announcement-title *,
.tarif-announcement-title {
  color: #FFF;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.tarif-announcement-title span {
  font-weight: 600;
}

.tarif-announcement-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tarif-announcement-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #D3D3D3;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.tarif-announcement-price {
  color: #FFF;
  font-family: Montserrat;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 20px;
}

.tarif-announcement .arow-btn,
.tarif-announcement .text-btn {
  background-color: #fff;
  color: #000;
}

.tarif-announcement .text-btn {
  padding: 20px 128px;
}

.tarif-announcement .arow-btn {
  padding-top: 20px;
  padding-bottom: 20px;
}

.substance-page .tarif__item-s {
  display: none;
}

.marvelous-page .tarif__item-new-title {
  color: #0B0B0B;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.marvelous-page .tarif__item-new-title span {
  font-weight: 700;
}

.marvelous-page .tarif__item-new-title span span {
  color: #C00909;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.marvelous-page .tarif__item-new-t {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.marvelous-page .tarif__item-new-descr {
  color: #0B0B0B;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 24px;
  border: 1px solid #0B0B0B;
  width: fit-content;
}

.marvelous-page .tarif__item-new:nth-child(1) {
  padding: 20px;
  border-radius: 20px;
  background-image: url("../imgmk/tarif-new-bg-1.webp");
  background-position: right;
  background-size: contain;
  backdrop-filter: blur(15px);
  background-repeat: no-repeat;
}

.marvelous-page .tarif__item-new:nth-child(2) {
  padding: 20px;
  border-radius: 20px;
  background-image: url("../imgmk/tarif-new-bg-2.webp");
  background-position: right -20px;
  background-size: 97%;
  backdrop-filter: blur(15px);
  background-repeat: no-repeat;
}

.marvelous-page .tarif__item-new-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.marvelous-page .tarif__item-new-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.marvelous-page .tarif__item-new-price {
  color: #0B0B0B;
  font-family: Montserrat;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.marvelous-page .tarif__item-new-b {
  display: flex;
  align-items: center;
  gap: 20px;
}

.marvelous-page .tarif__item-new {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
}

.marvelous-page .tarif__item-new:nth-child(3) {
  grid-area: 1 / 2 / 3 / 3;
  background-image: url("../imgmk/tarif-new-bg-3.webp");
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 845px;
}

.marvelous-page .tarif__item-new-subtitle {
  color: #0B0B0B;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: normal;
  text-transform: uppercase;
}

.marvelous-page .tarif__item-new-live {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.marvelous-page .tarif__item-new-live-red {
  color: #C00909;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.marvelous-page .tarif__item-new-live>div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.marvelous-page .tarif__item-new-live>div>span {
  color: #0B0B0B;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 25.2px */
  letter-spacing: -0.36px;
  text-transform: uppercase;
}

.marvelous-page .tarif__item-new-live-start {
  display: flex;
  align-items: center;
  gap: 5px;
}

.marvelous-page .tarif__item-new-live-start span {
  color: #0B0B0B;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  letter-spacing: -0.36px;
}

.marvelous-page .tarif__item-new-live-divider {
  width: 2px;
  height: 14px;
  background: #C00909;
}

.marvelous-page .tarif__item-new-b-text {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.marvelous-page .tarif__item-new-b-options {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(15px);
  gap: 10px;
  margin-bottom: 5px;
}

.marvelous-page .tarif__item-new-b-option {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marvelous-page .tarif__item-new-b-btn {
  color: #0B0B0B;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 24px;
  border: 1px solid #0B0B0B;
}

.marvelous-page .tarif__item-new-b-price {
  color: #0B0B0B;
  font-family: Montserrat;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-right: 8px;
}

.marvelous-page .tarif__item-new-b-price-old {
  color: #C00909;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: line-through;
  text-transform: uppercase;
}

.marvelous-page .tarif__item-new:nth-child(3) .tarif__item-new-b {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}

.marvelous-page .tarif__item-new .black-button .text-btn {
  min-width: 100%;
}

.marvelous-page .tarif__item-new-b>.black-button {
  flex: 1;
  width: 100%;
  align-self: stretch;
}

.marvelous-page .tarif__item-new-b>.black-button .text-btn {
  flex: 1;
  min-width: 0;
}
/*/
  Promotion
/*/
.mk-home .hero {
  position: relative;
  padding-top: 0;
}
.mk-home .hero_banner{
  display: block;
  height: auto;
  margin: 110px auto 36px;
  border-radius: 20px;
}
.mk-home .hero_banner_mobile{
  display: none;
}
.courses-fit__item:nth-child(4) {
  background-image: url(../images/curse-bg_temp_MIMIK2.webp);
  /* background-size: 50%;
  background-position: right calc(50% + 5px); */
}

.courses-fit__item:nth-child(5) {
  background-image: url(../images/curse-bg_temp_TEC92.webp);
  /* background-position: right calc(50% + 31px);
  background-size: 50%; */
}
.summer_promotion{
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.courses-fit__item{
  position: relative;
  isolation: isolate;
}
.tarif-announcement-price span {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    position: relative;
}
.tarif-announcement-price span::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background: #c00909;
}
/*/
.hero_bottom{
  flex-direction: column;
  justify-content: unset;
  width: fit-content;
  align-items: flex-start;
}
/*/
.sub_hero_banner{
  width: 500px;
  border-radius: 40px;
}
.art-page .hero_bottom,
.substance-page .hero_bottom,
.marvelous-page .hero_bottom{
  margin-top: 30px;
  flex-direction: column;
  justify-content: unset;
  width: fit-content;
  align-items: flex-start;
  justify-content: end;
}
.art-page .tarif__item-b .price{
    flex-direction: column;
    align-items: start;
    gap: unset;
    word-spacing: -0.3ch;
}
.art-page .tarif__item-b .price span{
    font-size: 44px;
    color: #0b0b0b;
    gap: unset;
    text-decoration-color: red;
    text-decoration-thickness: 2px;
    word-spacing: normal;
}
.mk-home .courses-fit .courses-fit_wrap{
    overflow: hidden;
}
/*/
  Promotion end
/*/

.tarif__item-t__block>div {
  max-width: 45%;
}

.marvelous-page .tarif__item-new-price.underline {
  text-decoration: line-through red;
}