main {
    background-color: var(--lightBg);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}


.hero-img-hours {
    background-image: url('../img/hero_hours_blur.jpg');
    background-attachment: fixed;
    width: 100%;
    height: 70vh;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
    position: relative;
}

.hero-h1-wrapper {
    display: flex;
    justify-content: center;
    flex: 1;
}

.hero-h1 {
    display: flex;
    align-items: center;  
}




.map-frame {
    width: 100%;          
    max-width: 1200px;     
    height: 600px;         
    border: 0;             
    display: block;          
    padding: 40px 0px 40px 40px;  
}


.hours-flex {
    width: 100%;
    height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hours-flex p {
    padding-bottom: 10px;
}

h2 {
    font-weight: 700;
    text-align: left;
    padding-top: 0;
    line-height: 1;
    margin-bottom: 30px;
}

@media (max-width: 800px) {
    .map-frame {
        height: 400px;  
    }
}
@media (max-width: 750px) {
    main {
        flex-direction: column;
    }
    .map-frame {
        padding: 40px;  

    }
    .hours-flex {
        margin-bottom: 40px;
    }
}