*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
}

body {
    font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
    background: #050505;
    color: #fff;
    line-height: 1.4;
}

.container {
    width: min(1200px, 100% - 40px);
    margin-inline: auto;
}

.site-header {
    padding: 20px 0 10px;
    position: sticky;
    top: 0;
    width: 100%;
    background: #050505;
    z-index: 9999;
}

.header__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-align: center;

}

.logo img {
    height: 90px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}


.lang-switch {
    display: inline-flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 4px;
}

.lang-switch__btn {
    width: 42px;
    height: 28px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    display: grid;
    place-items: center;
}

.lang-switch__btn--active {
    background: #fff;
    color: #000;
}

main {
    margin-top: 100px;
}


.header__menu-btn {
    color: #fff;
    font-size: 15px;
}


.hero {
    padding: 10px 0 70px;
    position: relative;
}

.hero__inner {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 25px;
    align-items: start;
}

.hero__top {
    grid-column: 1 / -1;
    font-size: 18px;
    color: #F4F4F4;
    margin-bottom: 20px;
    text-align: center;
}

.hero__title {
    grid-column: 1 / -1;
    font-size: clamp(38px, 5.6vw, 70px);
    font-weight: 300;
    color: #F4F4F4;
    max-width: 900px;
    text-align: center;
    margin: 0 auto 30px auto;
    line-height: 1.1;
}

.hero__title span {
    color: #f4f4f49c;
    font-weight: 300;
}


.hero__side--left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__side--left__mob {
    display: none;
}

.quote-card {
    border-left: 2px solid #ffcc00;
    padding-left: 20px;
    max-width: 300px;
    width: 100%;
    font-size: 16px;
    color: #f4f4f49c;
}

.hero__photo-small {
    width: 220px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: self-start;
}

.stat__number {
    font-size: 70px;
    font-weight: 300;
    color: #ffcc00;
}

.stat__label {
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #f4f4f49c;
    line-height: 1.3;
}


.hero__center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.hero__photo-main {
    width: min(340px, 100%);
    height: 490px;
    border-radius: 40px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);

}

.hero__photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-nav {
    display: flex;
    gap: 10px;
    background: rgba(7, 7, 7, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    padding: 10px 18px;
    align-items: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.hero-nav__link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.25s;
}

.hero-nav__link--active,
.hero-nav__link:hover {
    color: #ffcc00;
}

.hero-nav__dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
}


.hero__side--right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero__photo-small--right {
    width: 260px;
    border-radius: 26px;
    overflow: hidden;
}

.hero__text-block {
    display: flex;
    gap: 12px;
    max-width: 260px;
}

.hero__text-line {
    width: 32px;
    height: 2px;
    background: #ffcc00;
    margin-top: 10px;
    flex: 0 0 32px;
}

.hero__text-block p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}


.hero__cta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.btn-primary {
    background: #ffcc00;
    color: #050505;
    padding: 14px 40px;
    border-radius: 999px;
    font-weight: 300;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    transition: transform 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
}


.mobile-menu {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 100;
    display: none;
}

.mobile-menu[data-open="true"] {
    display: block;
}

.mobile-menu__inner {
    position: relative;
    height: 100%;
    padding: 26px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(217, 175, 109, 0.6);
    color: #ffcc00;
    font-size: 18px;
    line-height: 0;
    display: grid;
    place-items: center;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 18px;
    margin-top: 50px;
}

.mobile-menu__link {
    font-size: 16px;
    color: #fff;
}

.mobile-menu__link--active {
    color: #ffcc00;
}

.mobile-menu__langs {
    align-self: center;
}


.desktop-only {
    display: inline-flex;
}

.mobile-only {
    display: none;
}

@media (max-width: 991px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero__center {
        order: -1;
        height: 100%;
        grid-column: 1 / -1;
    }

    .hero__photo-main {
        height: 100%;
    }
}

@media (max-width: 720px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: inline-flex;
    }



    .hero {
        padding-bottom: 50px;
    }

    .hero__inner {
        display: block;
    }

    .hero__title {
        font-size: 24px;
        line-height: 1.03;
        margin-bottom: 22px;
    }


    .hero__center {
        margin-bottom: 20px;
        align-items: flex-start;
    }

    .hero__photo-main {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        border-radius: 38px;
    }

    .hero__side--right {
        display: none;
    }

    .hero__side--left {
        gap: 16px;
    }

    .hero__side--left__dest {
        display: none;
    }

    .hero__side--left__mob {
        display: block;
    }

    .stat_mob {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .quote-card {
        max-width: 100%;
        background: none;
        border-left: 2px solid #ffcc00;
        padding-left: 14px;
    }

    .hero__photo-small,
    .hero__photo-small--right {
        width: 100%;
        border-radius: 26px;
    }

    .hero__photo-small {
        margin-top: 20px;
    }

    .hero__photo-small img {
        width: 100%;
    }

    .hero__side--right {
        margin-top: 18px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 18px;
    }

    .stat {
        gap: 10px;
    }

    .stat__number {
        font-size: 50px;
    }

    .stat__label {
        font-size: 16px;

    }

    .hero__text-block {
        max-width: 100%;
    }

    .hero__cta {
        justify-content: flex-start;
        margin-top: 32px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

.about {
    background: #050505;
    padding: 65px 0 80px;
}

.about .container {
    width: min(1200px, 100% - 40px);
    margin: 0 auto;
}

.about__title {
    font-size: 50px;
    color: #ffcc00;
    font-weight: 300;
    margin-bottom: 32px;
}


.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;

    min-height: 230px;
}


.timeline::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(212, 196, 168, 0.4);
}


.timeline__item {
    position: relative;
    flex: 1 1 0;
}


.timeline__marker {
    width: 30px;
    height: 30px;
    border: 1px solid #ffcc00;
    border-radius: 50%;
    background: #050505;
    position: absolute;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
}

.timeline__marker::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #ffcc00;
    border-radius: 50%;
}


.timeline__content {
    position: absolute;
    color: #F4F4F4;
    font-weight: 100;
    font-size: 20px;
    line-height: 1.35;
    max-width: 325px;
}

.timeline__content span {
    color: #f4f4f49c;
}

.timeline__content p {
    width: 325px;
}

.timeline__item:nth-child(1) .timeline__content {
    top: 25px;
    left: -20%;
    text-align: center;
    width: 100%;
    max-width: 200px;
}


.timeline__item:nth-child(2) .timeline__content {
    top: 145px;
    left: -20%;
    text-align: center;
    width: 100%;
    max-width: 325px;
}


.timeline__item:nth-child(3) .timeline__content {
    top: 25px;
    left: -20%;
    text-align: center;
    max-width: 325px;
}


.timeline__item:nth-child(4) .timeline__content {
    top: 145px;
    left: -20%;
    text-align: center;
    max-width: 325px;
}


.timeline__item:nth-child(5) .timeline__content {
    top: 25px;
    left: -20%;
    text-align: center;
    max-width: 325px;
}


@media (max-width: 768px) {
    .about {
        padding: 50px 0 55px;
    }

    .about__title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .timeline {
        display: block;
        min-height: unset;
    }


    .timeline::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 15px;
        width: 2px;
        height: 110%;
        background: #f4f4f4;
    }

    .timeline__item {
        margin-bottom: 42px;
    }

    .timeline__marker {
        top: 0;
        left: 15px;
        transform: translate(-50%, 0);
    }

    .timeline__content {
        font-size: 16px;
    }

    .timeline__content,
    .timeline__item:nth-child(1) .timeline__content,
    .timeline__item:nth-child(2) .timeline__content,
    .timeline__item:nth-child(3) .timeline__content,
    .timeline__item:nth-child(4) .timeline__content,
    .timeline__item:nth-child(5) .timeline__content {
        position: static;
        margin-left: 50px;
        max-width: none;
        text-align: left;
        transform: none;
    }

}


.today {
    background: #050505;
    padding: 70px 0 95px;
}

.today .container {
    width: min(1280px, 100% - 40px);
    margin: 0 auto;
}

.today__head {
    text-align: center;
    margin-bottom: 36px;
}

.today__title {
    font-size: 50px;
    font-weight: 300;
    color: #F4F4F4;
    text-transform: uppercase;
}

.today__line {
    margin: 10px auto;
}

.today__line img {
    margin: 0 auto;
}


.today__canvas {
    position: relative;
    min-height: 520px;
}


.today__photo {
    width: 640px;
    margin: 0 auto;
    position: relative;
    top: -10px;
    z-index: 2;
}

.today__photo img {
    width: 100%;
    display: block;
    object-fit: contain;
}


.today__item {
    position: absolute;
    max-width: 240px;
    font-size: 20px;
    font-weight: 300;
}

.today__num {
    color: #ffcc00;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 300;
}

.today__text {
    color: rgba(255, 255, 255, 0.8);
}


.today__arrow {
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, 1);
}

.today__arrow::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 1px solid rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    transform: rotate(-45deg);
    right: -3px;
    top: -3px;
}


@media (min-width: 769px) {
    .today__item--1 {
        top: 95px;
        left: 150px;
        text-align: left;
    }

    .today__arrow--1 {
        top: 140px;
        left: 130px;
        width: 100px;
        transform: rotate(223deg);
    }


    .today__item--2 {
        top: 105px;
        right: 150px;
        text-align: left;
    }

    .today__arrow--2 {
        top: 120px;
        left: -70px;
        width: 100px;
        transform: rotate(336deg);
        transform-origin: right center;
    }


    .today__item--3 {
        top: 310px;
        left: 60px;
    }

    .today__arrow--3 {
        top: 160px;
        left: 188px;
        width: 105px;
        transform: rotate(200deg);
    }


    .today__item--4 {
        top: 450px;
        right: 50px;
        max-width: 270px;
    }

    .today__arrow--4 {
        top: -8px;
        left: -30px;
        width: 100px;
        transform: rotate(15deg);
        transform-origin: right center;
    }


    .today__item--5 {
        bottom: -90px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 425px;
        text-align: left;
    }


}


@media (max-width: 768px) {
    .today {
        padding: 50px 0 55px;
    }

    .today .container {
        width: min(100%, 100% - 24px);
    }

    .today__title {
        font-size: 32px;
        text-transform: none;
    }

    .today__canvas {
        min-height: 0;
    }


    .today__photo {
        width: 350px;
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .today__item {
        position: relative;
        max-width: none;
        margin-bottom: 26px;
        z-index: 9;
    }


    .today__arrow {
        display: none;
    }

    .today__item--1 {
        margin-top: 0;
    }

    .today__item--2 {
        margin-top: -20px;
        margin-left: 65%;
    }

    .today__item--3 {
        margin-top: 120px;
        margin-left: 65%;
    }

    .today__text {
        font-size: 16px;
        color: #f4f4f4;
    }

    .today__num {
        font-size: 16px;
    }

    .course__label {
        font-size: 28px;
    }

    .today__item--5 {
        left: 50%;
        transform: translateX(-50%);
        max-width: 240px;
        text-align: left;
    }
}



.recipes {
    background: #050505;
    padding: 60px 0 80px;
}

.recipes .container {
    width: min(1280px, 100% - 40px);
    margin: 0 auto;
    display: flex;
    gap: 180px;
    align-items: flex-start;
}


.recipes__title-wrap {
    flex: 0 0 38%;
}

.recipes__title {
    font-size: 50px;
    font-weight: 300;
    color: #ffcc00;
    text-transform: uppercase;
    white-space: nowrap;
}


.recipes__content {
    flex: 1 1 auto;
    max-width: 560px;
    color: #f4f4f49c;
    font-size: 20px;
    font-weight: 300;
}

.recipes__content span {
    color: #F4F4F4;
}

.recipes__content p+p {
    margin-top: 20px;
}


@media (max-width: 992px) {
    .recipes .container {
        flex-direction: column;
        gap: 32px;
    }

    .recipes__title-wrap {
        flex: none;
    }

    .recipes__title {
        font-size: 42px;
        white-space: normal;
    }

    .recipes__content {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .recipes {
        padding: 45px 0 60px;
    }

    .recipes .container {
        width: min(100%, 100% - 24px);
    }

    .recipes__title {
        font-size: 28px;
        line-height: 1.1;
    }

    .recipes__content {
        font-size: 16px;
    }
}

.products {
    background: #0f0f0f;
    padding: 80px 0 90px;
}

.products__container {
    width: min(1280px, 100% - 40px);
    margin: 0 auto;
}

.products__heading {
    font-size: clamp(34px, 3.3vw, 48px);
    color: #ffcc00;
    margin-bottom: 38px;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


.product-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 100%;
}


.flip-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    perspective: 1000px;
}

.flip-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    transition: transform .5s ease;
}

.flip-img__front {
    transform: rotateY(0deg);
}

.flip-img__back {
    transform: rotateY(180deg);
}

.product-card:hover .flip-img__front,
.flip-img:hover .flip-img__front {
    transform: rotateY(-180deg);
}

.product-card:hover .flip-img__back,
.flip-img:hover .flip-img__back {
    transform: rotateY(0deg);
}


.product-card__body {
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: auto;

}

.product-card__title {
    color: #F4F4F4;
    font-size: 24px;
    font-weight: 300;
}

.product-card__desc {
    color: #f4f4f49c;
    font-size: 16px;
}


.product-card__list {
    list-style: disc;
    padding-left: 16px;
    display: grid;
    gap: 4px;
}

.product-card__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.product-card__price {
    color: #f4f4f4;
    font-size: 24px;
    font-weight: 300;
}

.product-card__btn {
    background: transparent;
    border: 1px solid #ffcc00;
    border-radius: 999px;
    padding: 12px 24px 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffcc00;
    font-size: 16px;
    cursor: pointer;
    transition: .15s ease;
}

.product-card__btn span {
    transition: .15s ease;
}

.product-card__btn:hover {
    background: #ffcc00;
    color: #0f0f0f;
}

.product-card__btn:hover span {
    transform: translateX(3px);
}


.products__more-list {
    display: none;
    grid-column: 1 / -1;
    gap: 28px;
}

.products__more-list._open {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.products__more-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.products__more-btn {
    background: #ffcc00;
    border: none;
    border-radius: 999px;
    padding: 12px 40px 12px 32px;
    color: #0f0f0f;
    font-weight: 300;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: .15s ease;
}

.products__more-btn span {
    transition: .15s ease;
}

.products__more-btn:hover {
    transform: translateY(-1px);
}

.products__more-btn:hover span {
    transform: translateX(3px);
}


@media (max-width: 1024px) {
    .products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products__more-list._open {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 630px) {
    .products {
        padding: 60px 0 70px;
    }

    .products__container {
        width: min(100%, 100% - 24px);
    }

    .products__grid {
        grid-template-columns: 1fr;
    }

    .products__more-list._open {
        grid-template-columns: 1fr;
    }

    .product-card__body {
        padding: 16px 16px 14px;
    }

    .product-card__price {
        font-size: 20px;
    }

    .product-card__btn {
        padding: 10px 20px;
    }
}



.product-card__more-wrap {
    position: relative;
    max-height: 136px;
    overflow: hidden;
}


.product-card__more-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 1) 90%);

}


.product-card._expanded .product-card__more-wrap {
    max-height: none;
}

.product-card._expanded .product-card__more-wrap::after {
    display: none;
}


.product-card__more-btn {
    align-self: flex-start;
    background: transparent;
    border: 1px solid #3a3a3a;
    border-radius: 999px;
    padding: 8px 14px;
    color: #ddd;
    font-size: 14px;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}

.product-card__more-btn:hover {
    background: #222;
    transform: translateY(-1px);
}


.product-card__footer {
    margin-top: auto;
}


@media (max-width: 630px) {
    .product-card__more-wrap {
        max-height: 120px;
    }
}


.course {
    background: #050505;
    padding: 70px 0 80px;
}

.course__container {
    width: min(1280px, 100% - 40px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course__content {
    flex: 0 1 50%;
}

.course__label {
    font-size: 50px;
    color: #ffcc00;
    margin-bottom: 20px;
    text-transform: none;
}

.course__meta {
    margin-bottom: 42px;
    font-weight: 300;
    color: #f4f4f4;
    font-size: 20px;
}

.course__meta p+p {
    margin-top: 4px;
}

.course__text {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.course__text p {
    color: #f4f4f49c;
    font-size: 20px;
    max-width: 540px;
}

.course__text span {
    color: #f4f4f4;
}

.course__text p strong {
    color: #f4f4f4;
}

.course__btn {
    background: transparent;
    border: 1px solid #ffcc00;
    border-radius: 999px;
    padding: 12px 24px 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffcc00;
    font-weight: 300;
    cursor: pointer;
    transition: 0.16s ease;
}


.course__btn:hover {
    background: #ffcc00;
    color: #0f0f0f;
}

.course__btn span {
    display: inline-block;
    transform: translateY(1px);
}

.course__btn:hover {
    filter: brightness(0.9);
}

.course__media {
    flex: 0 1 50%;
    display: flex;
    justify-content: flex-end;
}

.course__img-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #222;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.course__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


@media (max-width: 960px) {
    .course__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .course__media {
        width: 100%;
    }

    .course__img-wrap {
        width: 100%;
    }

    .course {
        padding: 54px 0 70px;
    }

    .course__label {
        margin-bottom: 26px;
    }
}

@media (max-width: 540px) {
    .course__container {
        width: min(100%, 100% - 24px);
    }

    .course__text p {
        font-size: 14px;
    }

    .course__btn {
        width: auto;
        margin-left: 50%;
        transform: translateX(-10%);
    }

    .apply__btn {
        width: 100%;
        margin: 0 auto;

    }
}

.mk {
    background: #050505;
    padding: 70px 0 90px;
}

.mk__container {
    width: min(1280px, 100% - 40px);
    margin: 0 auto;
    text-align: center;
}

.mk__title {
    color: #ffcc00;
    font-size: clamp(34px, 3.3vw, 50px);
    font-weight: 300;
    margin-bottom: 20px;
}

.mk__subtitle {
    color: #f4f4f4;
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 300;
}

.mk__circles {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
}

.mk__circle {
    width: 250px;
    height: 250px;
    border: 1px solid #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;

    margin: 0 -10px;
}

.mk__circle p {
    color: #f4f4f4;
    font-size: 18px;
}


@media (max-width: 880px) {
    .mk__circles {
        flex-direction: column;
        align-items: center;
    }

    .mk__circle {
        margin: 0 0 -25px 0;
        width: 250px;
        height: 250px;
    }

    .mk__subtitle {
        margin-bottom: 38px;
    }
}

@media (max-width: 520px) {
    .mk__container {
        width: min(100%, 100% - 24px);
    }

    .mk__title {
        font-size: 32px;
    }

    .mk__circle {
        width: 250px;
        height: 250px;
    }

    .mk__circle p {
        font-size: 20px;
    }
}

.apply {
    background: #050505;
    padding: 70px 0 90px;
}

.apply__container {
    width: min(1280px, 100% - 40px);
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.apply__image {
    flex: 0 1 50%;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    min-height: 430px;
}

.apply__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.apply__form-card {
    flex: 0 1 50%;
    background: #121212;
    border: 1px solid rgba(217, 175, 109, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.apply__lead {
    color: #f4f4f4;
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 28px;
}

.apply__lead span {
    color: #f4f4f49c;
}

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

.apply__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.apply__field span {
    color: #f4f4f4;
    font-size: 16px;
}

.apply__field input,
.apply__field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(217, 175, 109, 0.4);
    padding: 6px 0 10px;
    color: #f4f4f49c;
    font-size: 16px;
    outline: none;
    transition: border 0.15s ease;
}

.apply__field input::placeholder,
.apply__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
}

.apply__field input:focus,
.apply__field textarea:focus {
    border-bottom: 1px solid rgba(217, 175, 109, 1);
}

.apply__btn {
    margin-top: 8px;
    background: transparent;
    border: 1px solid #ffcc00;
    border-radius: 999px;
    padding: 12px 0 12px 0;
    color: #ffcc00;
    font-weight: 300;
    display: inline-flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
    cursor: pointer;
    transition: 0.15s ease;
    max-width: 230px;
}

.apply__btn span {
    display: inline-block;
    transform: translateY(-1px);
    font-size: 16px;
}

.apply__btn:hover {
    background: rgba(217, 175, 109, 0.15);
}

@media (max-width: 980px) {
    .apply__container {
        flex-direction: column;
    }

    .apply__image,
    .apply__form-card {
        width: 100%;
    }
}

@media (max-width: 540px) {
    .apply {
        padding: 54px 0 30px;
    }

    .apply__container {
        width: min(100%, 100% - 24px);
    }

    .apply__form-card {
        padding: 26px 20px 30px;
    }

    .apply__lead {
        font-size: 20px;
    }
}

.hero-quote {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.hero-quote__img {
    width: 100%;
    height: auto;
}

.hero-quote__img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-quote__text {
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #f4f4f49c;
    font-weight: 300;
    font-size: 32px;
    width: min(1020px, 100% - 40px);
}

.hero-quote__text span {
    color: #f4f4f4;
}

@media (max-width: 768px) {
    .hero-quote__text {
        top: 20px;
        font-size: 22px;
        width: min(100%, 100% - 30px);
    }
}

.faq {
    background: #050505;
    padding: 80px 0 100px;
}

.faq__container {
    width: min(1280px, 100% - 40px);
    margin: 0 auto;
    display: flex;
    gap: 48px;
}

.faq__left {
    flex: 0 0 34%;
}

.faq__title {
    color: #ffcc00;
    font-weight: 300;
    font-size: clamp(38px, 3.4vw, 50px);
    margin-bottom: 20px;
}

.faq__text {
    color: #f4f4f49c;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 14px;
}

.faq__text span {
    color: #f4f4f4;
}

.faq__right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.faq-item {
    background: transparent;
    border: 1px solid rgba(217, 175, 109, 0.6);
    border-radius: 28px;
    overflow: hidden;
}

.faq-item__head {
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px 24px 20px 32px;
    cursor: pointer;
}

.faq-item__head span:first-child {
    color: #f4f4f4;
    font-size: 20px;
    text-align: left;
}

.faq-item__icon {
    min-width: 54px;
    height: 54px;
    background: #ffcc00;
    border-radius: 999px;
    display: grid;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 28px;
    line-height: 1;
}

.faq-item__body {
    display: none;
    padding: 0 32px 24px;
}

.faq-item__body p {
    color: #f4f4f49c;
    font-size: 16px;
}


.faq-item--open {
    background: rgba(0, 0, 0, 0.2);
}

.faq-item--open .faq-item__icon {
    content: '−';
}


@media (max-width: 960px) {
    .faq__container {
        flex-direction: column;
    }

    .faq__left {
        flex: 0 0 auto;
    }

    .faq-item__head {
        padding: 18px 18px 18px 20px;
    }
}

@media (max-width: 540px) {
    .faq {
        padding: 60px 0 80px;
    }

    .faq__container {
        width: min(100%, 100% - 24px);
    }

    .faq-item__icon {
        min-width: 46px;
        height: 46px;
        font-size: 24px;
    }

    .faq-item__head span:first-child {
        font-size: 16px;
    }
}

.site-footer {
    background: #050505;
    padding: 40px 0 52px;
}

.site-footer__line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 26px;
}

.site-footer__inner {
    width: min(1280px, 100% - 40px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.site-footer__brand p:first-child {
    color: #ffcc00;
    font-size: 20px;
    font-weight: 300;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.site-footer__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffcc00;
    display: inline-block;
}

.site-footer__link {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 16px;
    transition: opacity .15s ease;
}

.site-footer__link:hover {
    opacity: .7;
}


@media (max-width: 540px) {
    .site-footer {
        padding-bottom: 44px;
    }

    .site-footer__inner {
        width: min(100%, 100% - 24px);
        flex-direction: column;
        align-items: center;
    }

    .site-footer__links {
        gap: 10px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .course__label {
        font-size: 28px;
    }

    .course__meta {
        font-size: 16px;
    }

    .course__text p {
        font-size: 16px;
    }

    .mk__title {
        font-size: 28px;
    }

    .mk__subtitle {
        font-size: 20px;
    }

    .apply__form-card {
        padding: 15px;
    }

    .hero-quote__img {
        margin-top: 150px;
    }

    .faq__title {
        font-size: 28px;
    }

    .faq__text {

        font-size: 16px;
    }

    .faq-item__body p {
        font-size: 14px;
    }
}