.about-hero{
    position:relative;
    height:400px;
    background:url("images/about-banner.png") center center/cover no-repeat;
    overflow:hidden;
}

.about-hero::before{
    content:"";
    position:absolute;
    inset:-10px;
    background:url("images/about-banner.jpg") center center/cover no-repeat;
    filter:blur(6px);
    transform:scale(1.08);
    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:2;
    display:flex;
    align-items:center;
}

.hero-content{
    color:#fff;
    max-width:600px;
}

.hero-content h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:15px;
    text-shadow:0 4px 15px rgba(0,0,0,.4);
}

.hero-content p{
    font-size:1.25rem;
    font-weight:400;
    margin:0;
    text-shadow:0 2px 10px rgba(0,0,0,.4);
}

@media (max-width:768px){

    .about-hero{
        height:260px;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:2.4rem;
    }

    .hero-content p{
        font-size:1rem;
    }

}