html, body {
    overflow-x: hidden;
    height: 100%;
    margin: 0;
}

header, header * {
    box-sizing: border-box;
}

header {
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.mobile-menu-box {
    display: none;
}

.menu-box {
    padding: 16px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.logo-div {
    width: 141px;
    height: 32px;
    flex-shrink: 0;
    position: relative;
}

.logo {
    position: absolute;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    overflow: visible;
    aspect-ratio: 92.72/32;
}

.menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}

.menu-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.link {
    color: var(--black, #1c1c1c);
    text-align: left;
    font-family: var(--text-1-font-family, "Manrope", sans-serif), serif;
    font-size: var(--text-1-font-size, 14px);
    line-height: var(--text-1-line-height, 150%);
    font-weight: var(--text-1-font-weight, 400);
    position: relative;
}

.primary-button {
    background: var(--secondary-900, #bff404);
    border-radius: 48px;
    padding: 12px 24px 12px 24px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 180px;
    width: fit-content;
    height: 40px;
    position: relative;

}

.primary-button:active, .title-button-green:active {
    background: #B4E800;
}

.title-button-transparent:active {
    background: #F8F8FA;
}

.button-text {
    font-size: 12px;
    font-weight: 700;
    line-height: 140%;
    color: var(--black, #1c1c1c);
    text-align: center;
    font-family: Manrope, serif;
    font-style: normal;
}

@media (max-width: 768px) {
    .menu-box{
        display: none;
    }

    .mobile-menu-box {
        display: flex;
        z-index: 10;
    }

    .mobile-menu-line {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 16px;
    }

    .menu-mobile-icon {
        display: block;
        font-size: 24px;
        position: absolute;
        right: 16px;
        top: 20px;
        cursor: pointer;
    }

    .menu-mobile {
        display: none;
        background: #6F68FB;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        z-index: 9999;
    }

    .mobile-menu-items {
        display: flex;
        width: 100%;
        padding: 32px 16px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 32px;
    }

    .mobile-menu-item {
        font-family: Manrope, serif;
        font-size: 24px;
        font-weight: normal;
        font-style: normal;
        line-height: 100%;
        color: #FFF;
    }

    .menu-mobile.active {
        display: flex;
    }

    .cta-button {
        background-color: #bff404;
        margin-top: 24px;
    }

    .close-btn {
        align-self: flex-end;
        font-size: 24px;
        background: none;
        border: none;
        color: white;
        margin-bottom: 24px;
        cursor: pointer;
    }

    .mobile-menu-buttons {
        position: absolute;
        bottom: 32px;
        left: 16px;
        right: 16px;
    }

    .mobile-menu-button-green,
    .mobile-menu-button-transparent {
        display: flex;
        height: 48px;
        padding: 12px 24px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        align-self: stretch;
        margin-bottom: 16px;
    }

    .mobile-menu-button-green {
        border-radius: 48px;
        background: #BFF404;
    }

    #green-button-text {
        color: #1C1C1C;
        text-align: center;
        font-family: Manrope, serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
    }

    #transparent-button-text {
        color: #FFF;
        text-align: center;
        font-family: Manrope, serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
    }

    .mobile-menu-button-transparent {
        border-radius: 48px;
        border: 1px solid var(--white-50, rgba(255, 255, 255, 0.50));
    }
}