﻿
/* about_us/styles.css */

.about-hero {
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.about-hero__bg {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
}

.about-hero .banner-container {
    padding: 0 max(0px, calc((100% - var(--max-width)) / 2));
    position: relative;
    z-index: 2; /* above bg and overlay */
}

.about-hero h1,
.about-hero__title {
    color: white;
    font-size: 48px;
    font-weight: 700;
}

.about-page {
    background: #fdfdfd;
}
@media (min-width:1280px) and (max-width:1897px) {
    .about-hero .banner-container {
        padding-left: 32px;
    }
}

@media (max-width: 1279px) {
    .about-hero .banner-container {
        padding-left: 1.25rem;
    }

    .about-hero {
        height: 400px;
    }
    .about-hero h1,
    .about-hero__title {
        font-size: 40px;
    }
 }