/* ==========================================================================
   Page Hero
   ========================================================================== */
.page-hero {
    position: relative;
    width: 100%;
    background-color: var(--color-dark-green);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
}
.page-hero-bg {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    position: relative;
}
.page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* background: linear-gradient(90deg, rgba(10,46,28,0.9) 0%, rgba(10,46,28,0.4) 100%); */
    z-index: 1;
}
.page-hero-content {
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
    padding: 140px 0;
    width: 100%;
}
.page-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}
.page-hero-desc {
    color: var(--color-white);
    max-width: 500px;
    margin-top: 20px;
}


@media (max-width: 768px) {
    .page-hero {
        display: block !important;
        height: auto !important;
    }
    .page-hero-bg {
        position: relative !important;
        height: auto !important;
        width: 100% !important;
    }
    .page-hero-img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}
