.main-title {
    height: 1000px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.main-title .main-title__bg-pic {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

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

.header {
    background: #0000001A;
    backdrop-filter: blur(31px);
    -webkit-backdrop-filter: blur(31px);
}

.header .header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 77px;
}

.header .header__links {
    display: flex;
    gap: 32px;
}

.header .header__link {
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

@media screen and (hover:hover) {
    .header .header__link:hover {
        color: #FF094A;
    }
}

.header .header__link:active {
    color: #FF094A;
}

.header .header__link::before {
    content: '/ ';
}

.header .header__logo {
    display: flex;
    height: fit-content;
}

.header .header__logo-img {
    height: 23.62px;
    width: auto;
}

.header .header__mobile-menu {
    display: none;
}

.main-title .main-title__wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.main-title .main-title__date {
    font-family: Unbounded;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #fff;
    margin-left: auto;
    margin-top: 33px;
    width: fit-content;
}

.main-title .main-title__text-wrap {
    margin-top: auto;
    position: relative;
}

.main-title .main-title__title {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 203.82px;
    line-height: 93%;
    letter-spacing: -4%;
    text-transform: uppercase;
    color: #FF094A;
    margin: 0;
    margin-bottom: 83px;
}

.main-title .main-title__description-wrapper {
    max-width: 337px;
    position: absolute;
    right: 81px;
    bottom: 237.5px;
    z-index: 1;
}

.main-title .main-title__description {
    font-family: Unbounded;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0%;
    color: #fff;
}

.main-title .sign-up-btn {
    width: calc(100% - 27px);
    margin-top: 33px;
}

.main-title .main-title__five {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

@media screen and (max-width: 1460px) {
    .main-title .main-title__title {
        font-size: 13.5vw; 
    }

    .main-title .main-title__description-wrapper {
        width: 25vw;
        right: 2vw;
        bottom: 17vw;
    }
}

@media screen and (max-width: 1200px) {
    .main-title .main-title__description-wrapper {
        bottom: 18vw;
    }
}

@media screen and (max-width: 1000px) {
    .main-title .main-title__description-wrapper {
        bottom: 19vw;
    }
}

@media screen and (max-width: 960px) {
    .header .header__link {
        font-size: 11px;
    }

    .header .header__logo-img {
        height: 19.88px;
    }
}

@media screen and (max-width: 880px) {
    .main-title .main-title__description-wrapper {
        bottom: 20vw;
        width: 33vw;
        right: 0;
    }

    .main-title .sign-up-btn {
        width: calc(100% - 35px);
    }

    .main-title {
        height: 657px;
    }

    .main-title .main-title__title {
        margin-bottom: 52px;
    }

}

@media screen and (max-width: 750px) {
    .main-title .main-title__description-wrapper {
        position: initial;
        width: 100%;
        max-width: unset;
        margin-bottom: 49.2px;
    }

    .main-title .sign-up-btn {
        width: 100%;
        max-width: 400px;
    }

    .main-title .main-title__title {
        margin-bottom: 14px;
    }

    .main-title .main-title__title {
        font-size: 13vw; 
    }
}

@media screen and (max-width: 740px) {
    .header {
        z-index: 4;
    }

    .header .header__wrapper {
        height: 60px;
        position: relative;
    }

    .header .header__mobile-menu {
        display: flex;
        background: none;
        height: 24px;
        width: 24px;
        align-items: center;
        justify-content: center;
        border: none;
    }

    .header .header__links {
        position: absolute;        
        flex-direction: column;
        top: 100%;
        right: 1px;
        width: calc(100% - 1px);
        padding: var(--page-margin);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s, transform 0.3s;
        z-index: 1;
    }

    .main-title::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        backdrop-filter: blur(31px);
        -webkit-backdrop-filter: blur(31px);
        z-index: 3;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        background: #0000004f;
        pointer-events: none;
    }

    .main-title.mobile-open::before {
        opacity: 1;
    }

    .main-title.mobile-open .header .header__links {
        opacity: 1;
        transform: none;
        pointer-events: all;
    }

    .main-title .main-title__date {
        font-size: 18px;
        margin-top: 20px;
        margin-right: 10px;
    }

    .main-title {
        height: 734px;
    }
}
