.hero-section {
    display: flex;
    justify-content: center;
    /* height: 762px; */
    background: linear-gradient(360deg, #16231B 0%, rgba(22, 35, 27, 0) 100%), url('/assets/hero.jpg');
    /* background-image: url('/assets/hero.jpg'); */
    /* background-attachment: fixed; */
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 50px;
    padding-bottom: 80px;
}

.hero-section-centering {
    max-width: var(--max-width);
    width: 100%;
    display: grid;
}

.white {
    color: #FFFFFF;
}

.hero-section-title {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 55px;
    font-weight: 300;
    line-height: 57px;
    letter-spacing: -4%;
    margin-top: 36px;
    color: #FFFFFF;
}

.hero-section-title span {
    color: var(--base);
}

@media (max-width: 800px) {
    .hero-section-title {
        font-size: 45px;
        margin-top: 0px;
    }

    .hero-section-title span {
        font-size: 45px;
    }
}

@media (max-width: 600px) {
    .hero-section-title {
        font-size: 35px;
        line-height: 47px;
        margin-top: 0px;
    }

    .hero-section-title span {
        font-size: 35px;
        line-height: 47px;
    }
}

.left-buttons {
    display: flex;
    gap: 18px;
    margin-top: 40px;
}

.hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    /* width: 160px; */
    opacity: 1;
    gap: 8px;
    border-radius: 6px;
    border-width: 1px;
    border: 1px solid var(--base);
    color: var(--base);
    text-decoration: none;
}

.hero-secondary {
    padding-right: 36px;
    padding-left: 36px;
}

.hero-secondary:hover {
    background-color: var(--base);
    color: #1B6153;
}

.hero-primary {
    background-color: var(--base);
    color: #1B6153;
    width: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.hero-primary:hover {
    background-color: transparent;
    color: var(--base);
}

.center-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 80px;
    gap: 16px;
    text-transform: uppercase;
}

.center-buttons-secondary {
    padding-right: 36px;
    padding-left: 36px;
    opacity: 0.7;
}

.center-buttons-secondary:hover {
    opacity: 1;
}

.hero-footer-text {
    font-family: Geist;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px !important;
    line-height: 120% !important;
    letter-spacing: 0%;
    text-align: center;
    color: var(--base) !important;
    margin-top: 30px;
}