/* Navigation Menu */

.navigation-wrapper {
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    z-index: 1;
    position: relative;
    gap: 50px;
}

.navigation-menu-repeater {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    gap: 36px;
}

.navigation-content {
    margin-right: auto;
    width: 354px;
    position: relative;
    max-width: 100%;
}

.navigation-button {
    display: flex;
}

.navigation-button a.button {
    border-radius: 2px;
    border: 1px solid var(--green);
    background: var(
    --green);
    backdrop-filter: blur(5px);
    color: var(--white);
    font-family: 'Instrument Sans';
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 120%;
}

.navigation-menu-repeater a {
    overflow: hidden;
    color: var(--green);
    text-overflow: ellipsis;
    font-family: 'adobe-caslon-pro';
    font-size: clamp(20px, 3.2vw, 32px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-decoration: none;
}

.navigation-content h2 {
    color: var(--green);
    font-size: clamp(25px, 5vw, 50px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.navigation-content p {
    color: var(--black);
    font-size: clamp(16px, 1.8vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.navigation-content:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -60px;
    height: 1px;
    width: 150%;
    background: rgba(9, 32, 8, 0.48);
}

@media (max-width: 1200px) {
    .navigation-content:after {
        width: 100%;
    }
}

@media (max-width: 980px) {
    .navigation-content:after {
        display: none;
    }

    .navigation-menu-repeater,
    .navigation-content {
        margin: auto;
    }

    .navigation-wrapper {
        padding: 60px 30px;
    }

}