:root {
    --color-dark: #3D4E62;
    --color-dark-alt: #33474D;
    --color-green: #D8DFBF;
    --color-green-muted: #9EA48A;
    --color-beige: #E0C1A4;
    --color-text: #3E3F44;
    --color-light: #F4F5F6;
    --color-white: #FFF;
    --color-disabled: #919C6D;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 222, 191, 0.75) 2.78%, rgba(115, 115, 115, 0) 38.57%);
    z-index: 1;
}

.hero-content-wrapper {
    max-width: 1184px;
    padding: 0;
    display: flex;
    height: auto;
    margin: auto;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-content {
    z-index: 10;
    background: rgba(224, 193, 164, 0.5);
    backdrop-filter: blur(10px);
    padding: 2.25rem;
    max-width: 557px;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin: 0;
    height: auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(calc(-50% - 44px));
}

.hero-heading-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-heading {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin: 0;
    font-weight: normal;
}

.hero-heading .white {
    color: var(--color-white);
}

.hero-heading .dark {
    color: var(--color-dark);
}

.hero-subheading {
    font-family: 'Inter', sans-serif;
    color: var(--color-white);
    margin: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 2.25rem;
}

.btn-primary {
    padding: 1rem 2.25rem;
    background-color: var(--color-dark);
    color: var(--color-green);
    border-radius: 5px;
    font-size: 20px;
    font-weight: 400;
    border: none;
}

.btn-primary:hover {
    background-color: #2f3e4f;
}

.btn-secondary {
    padding: 1rem 2.25rem;
    background-color: var(--color-white);
    color: var(--color-dark-alt);
    border-radius: 5px;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(61, 78, 98, 0.5);
    backdrop-filter: blur(5px);
    padding: 2.25rem 2rem;
    z-index: 20;
    width: 100%;
}

.hero-features-grid {
    max-width: 1184px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    gap: 195px;
}

@media (min-width: 768px) {
    .hero-features-grid {
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    position: relative;
}


.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -97.5px;
    top: 50%;
    width: 1px;
    height: calc(100% + 24px);
    transform: translateY(-50%);
    background: var(--color-green);
}

.feature-item h2 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: var(--color-green);
    margin: 0;
    line-height: 2.5rem;
}

.feature-item h2 .light {
    font-weight: 500;
}

.feature-item h2 .semibold {
    font-weight: 500;
}

.feature-item p {
    color: var(--color-white);
    margin: 0;
}

@media screen and (max-width: 1199px) {
    .hero-content-wrapper {
        max-width: 100%;
        padding: 100px;
    }

    .hero-content {
        padding: 24px;
        gap: 24px;
        left: 100px;
        transform: translateY(calc(-50% - 44px));
    }

    .hero-heading-wrapper {
        gap: 16px;
    }

    .hero-subheading {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-buttons {
        gap: 24px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
        width: max-content;
    }

    .btn-secondary {
        padding: 12px 24px;
        font-size: 16px;
        width: max-content;
        flex: unset;
    }

    .hero-features {
        padding: 24px 100px;
        width: 100%;
    }

    .hero-features-grid {
        max-width: 944px;
        gap: 150px;
    }

    .feature-item:not(:last-child)::after {
        right: -76px;
    }

    .feature-item h2 {
        font-size: 16px;
        line-height: 28px;
    }

    .feature-item p {
        font-size: 16px;
        line-height: 28px;
    }
    
}

@media screen and (max-width: 991px) {

    .hero {
        position: relative;
        height: 100%;
        flex-direction: column;
        gap:64px;
    }

    .hero-content {
        position: relative;
        top: 0;
        margin-top: 100px;
        left: 0;
        right: unset;
        bottom: unset;
        transform: unset;
    }

    .hero-features {
        position: relative;
        flex-direction: column;
    }

    .hero-features-grid {
        gap: 20px;
        flex-direction: column;
    }

    .feature-item::after {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .hero-content-wrapper {
        padding: 56px;
    }
    .hero-features {
        padding: 24px 56px;
    }
}

@media screen and (max-width: 639px) {
    .hero-content-wrapper {
        padding: 36px;
    }
    .hero-features {
        padding: 24px 36px;
    }
}