/*MAIN STYLES*/
@font-face {
    font-family: 'Commissioner';
    src: url('https://fonts.gstatic.com/s/commissioner/v9/4_2x8g3c0a0a0a0a0a0a0.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('https://fonts.gstatic.com/s/robotocondensed/v20/4_2x8g3c0a0a0a0a0a0a0.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: Webspark;
    src: url('assets/fonts/Webspark-logo-Regular.woff2') format('woff2'), url('assets/fonts/Webspark-logo-Regular.woff') format('woff');
    font-display: swap;
}

.webspark-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.webspark-logo a {
    position: relative;
    top: 2px;
    opacity: 70%;
    color: #FFFFFF;
    text-decoration: none;
    font-family: Webspark, sans-serif;
    font-size: 2em;
    vertical-align: -0.15em;
    transition: opacity 0.3s ease;
}

.webspark-logo a:hover {
    opacity: 100%;
    text-decoration: none;
}

body {
    background: #040404;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: #040404;
}

* {
    box-sizing: border-box;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

a, button {
    text-decoration: none;
}

a {
    color: inherit;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    padding: 0 74px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #040404;
    z-index: 1;
    overflow: hidden;
}

.btn-container {
    position: relative;
    display: inline-block;
}

.btn-default {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0 24px;
    color: #0B0A08;
    font-family: Roboto Condensed, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    background-color: #D1AA54;
    border: 1px solid #D1AA54;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    width: 167px;
}

.btn-container:hover .btn-default {
    transform: scale(0.9, 0.8);
    background-color: #D1AA54;
}

.btn-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -0;
    right: -0;
    bottom: -0;
    border: 1px solid #D1AA54;
    z-index: 0;
    transition: all 0.3s ease;
}

.btn-container:hover::before {
    top: -5px;
    left: -2px;
    right: -2px;
    bottom: -5px;
}

.btn-default.btn-outline {
    background-color: transparent;
    color: #D1AA54;
    border: 1px solid #D1AA54;
    padding: 0 24px;
    position: relative;
    font-family: Roboto Condensed, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    z-index: 2;
    transition: color 0.5s ease;
    max-width: unset;
    width: fit-content;
    flex-shrink: 0;
}

.btn-default.btn-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    background-color: #D1AA54;
    z-index: -1;
    transition: all 0.5s ease;
}

@media (hover: hover) {
    .btn-default.btn-outline:hover:before,
    .btn-default.btn-outline:focus:before {
        left: 0;
        right: 0;
        opacity: 1;
    }

    .btn-default.btn-outline:hover,
    .btn-default.btn-outline:focus {
        color: #FFFFFF;
    }
}

.btn-text {
    font-family: Roboto Condensed, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    color: #7D7474;
    text-align: right;
}

/*HEADER STYLES*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    height: 174px;
    background: transparent;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(4, 4, 4, 0.8) 21.63%, rgba(4, 4, 4, 0) 100%);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    z-index: -1;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 100%);
}

.header__inner {
    z-index: 1;
    position: relative;
    padding: 52px 74px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.header__cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.header__burger div {
    width: 30px;
    height: 3px;
    background-color: #D4AF5E;
    transition: all 0.3s ease;
}

.header__burger.active div:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.header__burger.active div:nth-child(2) {
    opacity: 0;
}

.header__burger.active div:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

header nav {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

header nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul, header nav li {
    margin-bottom: 0;
}

header nav a {
    color: #D0CBC0;
    font-family: Roboto Condensed, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-decoration: none;
    transition: color 0.3s;
}

.header__nav .btn-container {
    display: none;
}

header nav .link {
    height: 27px;
    display: inline-flex;
    align-items: center;
}

.mask {
    position: relative;
    padding: 0;
    height: 27px;
    overflow: hidden;
    display: inline-block;
}

.link-container {
    transition: transform 0.4s ease;
}

.title {
    display: block;
    font-family: Roboto Condensed, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    transition: transform 0.4s ease;
}

.link-title1 {
    transform-origin: right center;
}

.link-title2 {
    transform-origin: left center;
    transform: rotate(10deg);
    color: #D4AF5E;
}

@media (hover: hover) {
    .link:hover .link-container {
        transform: translateY(-27px);
    }

    .link:hover .link-title1 {
        transform: rotate(10deg);
    }

    .link:hover .link-title2 {
        transform: rotate(0);
    }
}

.header__logo {
    color: #D4AF5E;
    font-family: Commissioner, sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 110%;
    text-transform: uppercase;
}

/*FOOTER*/
.footer__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 45px 0;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.footer__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.social-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.social-wrapper .social-link {
    margin-bottom: 0;
    height: 51px;
}

.social-wrapper .social-link svg {
    width: 40px;
    height: 40px;
}

.footer__copyright {
    background-color: #0C0B0B;
    margin: 0 -74px;
    width: calc(100% + 148px);
    padding: 16px 74px;
    gap: 24px;
}

.footer__copyright__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    gap: 16px;
}

.footer__copyright p {
    font-family: Roboto Condensed, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #7D7474;
}

/*HERO SECTION*/
section.hero {
    position: relative;
}

.hero__inner {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero__content {
    padding-bottom: 40px;
    padding-left: 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.hero__content .social-link {
    position: relative;
    left: -12px;
}

.social-link {
    font-family: Roboto Condensed, sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #D0CBC0;
    max-width: 145px;
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    transition: color 0.3s, background-color 0.3s;
}

.social-link:hover {
    color: #D4AF5E;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-link svg {
    transition: all 0.3s ease;
}

.social-link:hover svg path {
    fill: #D4AF5E;
}

.hero__content h1 {
    font-family: Commissioner, sans-serif;
    font-weight: 900;
    font-size: 80px;
    line-height: 100%;
    text-transform: uppercase;
    color: #D4AF5E;
    text-align: left;
    margin-bottom: 16px;
    max-width: 1081px;
    width: 100%;
}

.hero__content p {
    font-family: Roboto Condensed, sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 150%;
    color: #BAADAD;
}

.hero__image {
    position: absolute;
    top: 0;
    left: -74px;
    right: -74px;
    bottom: 0;
    width: calc(100% + 148px);
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero__image.fallback {
    display: none;
}

/*GOALS SECTION*/
.goals__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.goals__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.goals {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-right: 1px solid #2B2828;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.goals__title h2 {
    font-family: Commissioner, sans-serif;
    font-weight: 900;
    font-size: 80px;
    line-height: 110.00000000000001%;
    text-transform: uppercase;
    color: #D4AF5E;
}

.goals__content {
    position: relative;
    display: flex;
    flex-direction: row;
}

.goals__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -74px;
    right: 0;
    height: 1px;
    background-color: #2B2828;
    width: calc(100% + 74px);
    z-index: 1;
}

.goals__content__card {
    padding: 105px 32px 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
}

.goals__content__card:first-child {
    border-left: 1px solid #2B2828;
}

.goals__content__card:nth-child(2) {
    border-left: 1px solid #2B2828;
}

.goals__main-content-wrapper {
    border-right: 1px solid #2B2828;
}

.goals__content__card h1 {
    font-family: Commissioner, sans-serif;
    font-weight: 800;
    font-size: 88px;
    line-height: 110%;
    text-transform: uppercase;
    color: #7D7474;
    margin-bottom: 32px;
}

.goals__content__card p {
    font-family: Roboto Condensed, sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 150%;
    color: #7D7474;
}

.goals__content__card p span {
    font-weight: 500;
    color: #C6B0B0;
}

/*WHY NOW SECTION*/
section.whynow {
    margin: 0 -74px;
    padding: 0 74px 0;
    position: relative;
    background-color: #0C0B0B;
}

.whynow__content__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.whynow__img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whynow__content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 49px;
}

section.whynow::before,
section.whynow::after {
    content: '';
    position: absolute;
    left: -74px;
    right: -74px;
    height: 1px;
    background-color: #2B2828;
    width: calc(100% + 148px);
    z-index: 1;
}

section.whynow::before {
    top: 0;
}

section.whynow::after {
    bottom: 0;
}

.whynow__image {
    display: flex;
}

.whynow__content {
    padding-top: 76px;
    display: flex;
    flex-direction: column;
}

.whynow__content__title {
    font-family: Commissioner, sans-serif;
    font-weight: 900;
    font-size: 80px;
    line-height: 110%;
    text-transform: uppercase;
    color: #D4AF5E;
    margin-bottom: 24px;
}

.whynow__content__list p {
    font-family: Roboto Condensed, sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 150%;
    color: #7D7474;
}

.whynow__img {
    display: flex;
    position: relative;
    z-index: 10;
}

.whynow__content {
    padding-bottom: 32px;
}

.whynow__content__list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.whynow__content__list {
    display: flex;
    flex-direction: column;
    padding-left: 48px;
    gap: 24px;
}

/*PLAN SECTION*/
section.plan {
    margin: 0 -74px;
    padding: 100px 74px 0;
    width: calc(100% + 148px);
    border-top: 1px solid #2B2828;
    background-color: #0C0B0B;
    position: relative;
}

section.plan::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -74px;
    right: -74px;
    height: 1px;
    background-color: #2B2828;
    width: calc(100% + 148px);
    z-index: 1;
}

.plan__title h2 {
    font-family: Commissioner, sans-serif;
    font-weight: 900;
    font-size: 56px;
    line-height: 110%;
    text-transform: uppercase;
    color: #C6B0B0;
    margin-bottom: 45px;
    text-align: center;
}

.plan__content {
    display: flex;
    flex-direction: row;
    padding-bottom: 94px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.plan__footer-content-wrapper {
    background-color: #D1AA54;
    margin: 0 -74px;
    width: calc(100% + 148px);
    padding: 24px 74px;
}

.plan__footer-content-wrapper__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.plan__footer-content-wrapper p {
    max-width: 777px;
    width: 100%;
    text-align: left;
    font-family: Roboto Condensed, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #040404;
}

.plan__footer-content-wrapper .btn-default {
    background-color: #040404;
    color: #D1AA54;
    border: 1px solid #D1AA54;
}

.plan__footer-content-wrapper .btn-container {
    flex-shrink: 0;
}

.plan__footer-content-wrapper .btn-container:hover .btn-default {
    background-color: #040404;
}

.plan__footer-content-wrapper .btn-container::before {
    border: 1px solid #040404;
}

.plan__content__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 33px;
    flex: 1;
}

.plan__content__card:nth-child(2) {
    border-left: 1px solid #2B2828;
    border-right: 1px solid #2B2828;
}

.plan__content__card img {
    display: flex;
    margin-bottom: 24px;
}

.plan__content__card h3 {
    font-family: Commissioner, sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    color: #C6B0B0;
    margin-bottom: 8px;
}

.plan__content__card p {
    font-family: Roboto Condensed, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #7D7474;
}

.plan__content__card__logo {
    width: 135px;
    height: 167px;
}

/*MAIN STAGES SECTION*/
section.main-stages {
    padding: 64px 0 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.main-stages__card {
    display: flex;
    flex-direction: row;
}

.main-stages__card__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #2B2828;
}

.main-stages__number {
    color: #D4AF5E;
    font-family: Commissioner, sans-serif;
    font-weight: 800;
    font-size: 88px;
    line-height: 110%;
    text-transform: uppercase;
    background-color: #040404;
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-stages__card_content-header__title h2 {
    font-family: Commissioner, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    text-transform: uppercase;
    color: #C6B0B0;
}

.main-stages__card_content-header__title p {
    font-family: Roboto Condensed, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #7D7474;
}

.main-stages__card__content-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    background-color: #0C0B0B;
    border-bottom: 1px solid #2B2828;
    padding: 32px 32px;
}

.main-stages__card_content-header__title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 726px;
    width: 100%;
}

.main-stages__card__content-footer__list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.main-stages__card__content-footer {
    display: flex;
    flex-direction: row;
}

.main-stages__card__image-wrapper {
    display: flex;
    flex-shrink: 0;
}

.main-stages__card__image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.main-stages__card__content-footer__list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.main-stages__card__content-footer__list p {
    font-family: Roboto Condensed, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #7D7474;
    text-align: left;
}

.main-stages__card:first-child .main-stages__card__content-footer__list p {
    max-width: 321px;
}

.main-stages__card__content-footer__list:first-child {
    border-right: 1px solid #2B2828;
}

.main-stages__card__content-footer__list img {
    width: 32px;
    height: 32px;
    position: relative;
    top: -3px;
}

.main-stages__card__content-footer__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
}

/*NEXT STEPS SECTION*/
section.nextsteps {
    position: relative;
}

.nextsteps__inner {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nextsteps__content .btn-container {
    margin: 0 auto;
}

.nextsteps__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nextsteps__content h1 {
    font-family: Commissioner, sans-serif;
    font-weight: 900;
    font-size: 56px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: #D4AF5E;
    margin-bottom: 16px;
}

.nextsteps__content p {
    font-family: Roboto Condensed, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #C6B0B0;
    max-width: 798px;
    width: 100%;
    margin: 0 auto 48px;
}

.nextsteps__image {
    position: absolute;
    top: 0;
    left: -74px;
    right: -74px;
    bottom: 0;
    width: calc(100% + 148px);
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/*TERMS PAGE*/
section.terms {
    padding: 200px 74px 64px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

section.terms h2, section.take-part h2 {
    font-family: Commissioner, sans-serif;
    font-weight: 900;
    font-size: 56px;
    line-height: 110%;
    text-transform: uppercase;
    color: #D4AF5E;
    margin-bottom: 32px;
    text-align: center;
}

section.terms p,
section.take-part p {
    font-family: Roboto Condensed, sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 150%;
    color: #7D7474;
    margin-bottom: 24px;
}

section.terms ul {
    margin-left: 12px;
    margin-bottom: 24px;
}

section.terms ul, section.terms li {
    list-style: disc;
    padding-left: 12px;
}

ul li {
    font-family: Roboto Condensed, sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 150%;
    color: #7D7474;
    margin-bottom: 12px;
}

/*TAKE PART SECTION*/
section.take-part {
    padding: 200px 74px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.form-container {
    max-width: 640px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-switch {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: Roboto Condensed, sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    padding: 5px 10px;
}

.lang-switch.active {
    display: none;
}

.lang-switch:hover {
    text-decoration: underline;
}

/*RESPONSIVE STYLES*/
@media (max-width: 1368px) {
    header nav a .link-title1 {
        font-size: 16px;
    }

    header nav ul {
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }

    .btn-default {
        font-size: 16px;
    }

    .btn-default.btn-outline {
        font-size: 16px;
    }

    header nav ul {
        gap: 24px;
    }

    header nav a .link-title1 {
        font-size: 14px;
    }

    .hero__content h1 {
        font-size: 64px;
    }

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

    .goals__title h2 {
        font-size: 64px;
    }

    .goals__content__card h1 {
        font-size: 64px;
    }

    .goals__content__card p {
        font-size: 24px;
    }

    .whynow__img {
        align-items: flex-end;
        flex-shrink: 0;
        max-width: 40%;
    }

    .whynow__image {
        height: auto;
        object-fit: contain;
        width: 100%;
        display: flex;
    }

    .whynow__content__title {
        font-size: 48px;
    }

    .whynow__content__list p {
        font-size: 24px;
    }

    .plan__title h2 {
        font-size: 54px;
    }

    .plan__content__card h3 {
        font-size: 28px;
    }

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


    .nextsteps__content h1 {
        font-size: 48px;
    }

    .nextsteps__content p {
        font-size: 24px;
    }

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

    .webspark-logo a {
        font-size: 1.5em;
    }

    .webspark-logo {
        gap: 4px;
    }
}

@media (max-width: 991px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(4, 4, 4, 0.9);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
    }

    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header {
        height: unset;
    }

    header::before {
        background: linear-gradient(180deg, rgba(4, 4, 4, 0.8) 21.63%, rgba(4, 4, 4, 0) 100%);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        mask-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
        -webkit-mask-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
    }

    header nav ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 32px;
    }

    header nav li {
        opacity: 0;
    }

    .header__nav.active li {
        opacity: 1;
    }

    .header__nav.active li:nth-child(1) {
        animation: animate__fadeInDown 0.5s ease forwards 0.1s;
    }

    .header__nav.active li:nth-child(2) {
        animation: animate__fadeInDown 0.5s ease forwards 0.2s;
    }

    .header__nav.active li:nth-child(3) {
        animation: animate__fadeInDown 0.5s ease forwards 0.3s;
    }

    .header__nav.active li:nth-child(4) {
        animation: animate__fadeInDown 0.5s ease forwards 0.4s;
    }

    .header__nav.active li:nth-child(5) {
        animation: animate__fadeInDown 0.5s ease forwards 0.5s;
    }

    .header__cta {
        position: fixed;
        right: 24px;
        z-index: 1002;
        display: flex;
        flex-direction: row-reverse;
        gap: 12px;
        align-items: center;
    }

    .header__cta .btn-container {
        display: none;
    }

    .hero__inner {
        min-height: 100dvh;
    }

    .header__cta .btn-container {
        display: none;
    }

    .header__burger {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .header__nav .btn-container {
        display: inline-block;
    }

    .header__burger div {
        width: 30px;
        height: 3px;
        background-color: #C6B0B0;
        transition: all 0.3s ease;
    }

    .header__burger div:nth-child(1) {
        transform: rotate(0);
    }

    .header__burger div:nth-child(2) {
        transform: rotate(0);
    }

    .header__burger div:nth-child(3) {
        transform: rotate(0);
    }

    .header__burger.active div:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .header__burger.active div:nth-child(2) {
        transform: rotate(0);
        opacity: 0;
    }

    .header__burger.active div:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    video.hero__image {
        display: none;
    }

    .hero__image.fallback {
        display: block;
    }

    .goals__logo {
        width: 15%;
    }

    .goals__title h2 {
        font-size: 48px;
    }

    .goals__image {
        width: 25%;
    }

    .goals__content__card {
        padding: 45px 16px 45px;
    }

    .goals__content__card h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

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

    .main-stages__card__image-wrapper {
        flex-shrink: unset;
    }

    .main-stages__card_content-header__title h2 {
        font-size: 26px;
    }

    .main-stages__card__content-header {
        padding: 16px 16px;
    }

    .main-stages__card__content-footer__list {
        padding: 16px;
    }

    .main-stages__number {
        font-size: 64px;
        width: 80px;
        height: 80px;
    }

    .whynow__img {
        max-width: 25%;
    }

    .whynow__content__list {
        gap: 16px;
        padding-left: 32px;
    }

    .plan__content__card {
        padding: 22px;
    }

    .plan__content__card h3 {
        font-size: 24px;
    }

    .plan__content__card p {
        font-size: 18px;
    }

    .nextsteps__inner {
        min-height: 100dvh;
    }

    .header__inner {
        min-height: 60px;
        padding: 16px 24px;
    }

    .hero__content {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .header__burger {
        display: flex;
    }

    .goals__image-content-wrapper {
        display: none;
    }

    .plan__title h2 {
        font-size: 48px;
    }

    .goals {
        border-right: unset;
    }

    .goals__main-content-wrapper {
        border-right: unset;
    }

    .goals__content__card:nth-child(2) {
        border-right: 1px solid #2B2828;
    }

    .goals__content::before {
        right: -74px;
        width: calc(100% + 148px);
    }

    section.terms {
        padding: 100px 24px 64px;
    }

    section.terms h2,
    section.take-part h2 {
        font-size: 48px;
        text-align: center;
    }

    section.take-part {
        padding: 100px 24px;
    }

    header nav a .link-title1 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero__content h1 {
        font-size: 48px;
    }

    section.terms h2,
    section.take-part h2 {
        font-size: 40px;
    }

    section.terms p,
    section.take-part p {
        font-size: 18px;
    }

    section.terms ul li {
        font-size: 18px;
    }

    section.terms {
        padding: 100px 0 64px;
    }

    .hero__content p {
        font-size: 18px;
    }

    .hero__content {
        padding-left: 0;
    }

    .goals__title h2 {
        font-size: 40px;
    }

    .goals__content {
        flex-direction: column;
        border-left: 1px solid #2B2828;
        border-right: 1px solid #2B2828;
    }

    .goals__content__card:first-child {
        border-left: unset;
    }

    .goals__content__card:nth-child(2) {
        border-left: none;
        border-right: none;
        border-top: 1px solid #2B2828;
        border-bottom: 1px solid #2B2828;
    }

    .benefits__content__list__inner__wrapper h3 {
        font-size: 24px;
    }

    .whynow__content-wrapper {
        gap: 22px;
    }

    .whynow__img-wrapper img {
        max-width: 50%;
    }

    .goals__content__card:last-child {
        border-left: none;
        border-right: none;
    }

    .whynow__content__title {
        font-size: 40px;
    }

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

    .plan__content {
        flex-direction: column;
        padding-bottom: 45px;
    }

    .plan__content__card:nth-child(2) {
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #2B2828;
        border-top: 1px solid #2B2828;
    }

    section.plan {
        padding: 45px 74px;
    }

    .plan__footer-content-wrapper p {
        font-size: 16px;
    }

    section.main-stages {
        padding: 45px 0 65px;
        gap: 32px;
    }

    iframe {
        width: 100%;
        height: 2000px;
    }

    .plan__title h2 {
        font-size: 40px;
    }

    .main-stages__card {
        flex-direction: column;
    }

    .main-stages__card:nth-child(2) {
        flex-direction: column-reverse;
    }

    .main-stages__card_content-header__title h2 {
        font-size: 22px;
    }

    .plan__footer-content-wrapper__inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .main-stages__number {
        font-size: 48px;
        width: 64px;
        height: 64px;
    }

    .nextsteps__content h1 {
        font-size: 40px;
    }

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

    .footer__logo__image {
        width: 60%;
    }
}

@media (max-width: 500px) {
    .hero__content h1 {
        font-size: 32px;
    }

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

    .goals__title h2 {
        font-size: 32px;
    }

    .goals__content__card {
        padding: 30px 16px;
    }

    .goals__content__card h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .goals__content__card p {
        font-size: 18px;
    }

    section.whynow {
        padding: 22px 74px 0;
    }

    .whynow__content {
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .main-stages__card:first-child .main-stages__card__content-footer {
        flex-direction: column;
    }

    .main-stages__card_content-header__title h2 {
        font-size: 20px;
    }

    section.terms h2,
    section.take-part h2 {
        font-size: 32px;
    }

    section.terms p,
    section.take-part p {
        font-size: 16px;
    }

    section.terms ul li {
        font-size: 16px;
    }

    .main-stages__card__content-header {
        gap: 8px;
    }

    .main-stages__card_content-header__title p {
        font-size: 16px;
    }

    .main-stages__card__content-footer__list {
        gap: 8px;
    }

    .main-stages__card__content-footer__list p {
        font-size: 16px;
    }

    .main-stages__card:first-child .main-stages__card__content-footer .main-stages__card__content-footer__list:first-child {
        border-right: unset;
        border-bottom: 1px solid #2B2828;
    }

    .whynow__content__title {
        font-size: 32px;
    }

    .whynow__content__list p {
        font-size: 18px;
    }

    .whynow__content__list {
        padding-left: 24px;
    }

    section.plan {
        padding-top: 45px;
    }

    .plan__content__card h3 {
        font-size: 20px;
    }

    .plan__title h2 {
        font-size: 32px;
    }

    .footer__cta {
        align-items: center;
        justify-content: center;
    }

    .plan__footer-content-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nextsteps__content h1 {
        font-size: 32px;
    }

    .nextsteps__content p {
        font-size: 18px;
    }

    .footer__logo__image {
        width: 45%;
    }

    .footer__inner {
        padding: 32px 0;
    }

    .footer__copyright {
        flex-direction: column;
    }

    .footer__inner {
        flex-direction: column;
        gap: 32px;
    }

    .social-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    iframe {
        width: 350px;
        max-width: 400px;
    }

    .footer__logo  a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer__copyright__inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}