﻿

.hero {
    position:relative;
    height: 100dvh;
    width: 100vw;
    display: flex;
    align-items: center;
}

    .hero .hero-background,
    .hero .hero-overlay {
        position: absolute;
        top:0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 0;
        max-height:100vh;
        object-fit: cover;
        width: 100%;
    }

    .hero .hero-overlay {
        z-index: 1;
        background-color: rgba(23, 26, 2,.5);
    }

    .hero .hero-content {
        width: 100%;
        z-index: 2;
    }

    .hero .hero-content > div {
        max-width: 1500px;
    }

    .hero .hero-content h2, 
    .hero .hero-content h3, 
    .hero .hero-content a, 
    .hero .hero-content strong, 
    .hero .hero-content p {
        color: var(--text-white);
    }

    /*.hero .hero-content p {
        font-weight: 500;
    }*/

.map iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    max-width: 1200px;
    filter: invert(80%) grayscale(50%);
}