﻿.hero {
    height: 90vh;
    background-image: url('/images/hero/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(15, 76, 129, .75);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    color: white;
}

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        line-height: 1.8;
    }

.hero-buttons {
    display: flex;
    gap: 15px;
}

    @media (max-width: 991px) {

        .hero {
            min-height: 700px;
            height: auto;
            padding: 80px 0;
        }

        .hero-content {
            text-align: center;
            margin: auto;
        }

            .hero-content h1 {
                font-size: 2.5rem;
            }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
    }

.page-hero {
    min-height: 350px;
    height: auto;
    padding: 80px 0;
    background: url('/images/hero/about-hero.jpg') center/cover no-repeat;
}

.page-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(15,76,129,.75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .page-hero {
        min-height: 300px;
        padding: 60px 0;
    }

        .page-hero h1 {
            font-size: 2.3rem;
        }

        .page-hero p {
            font-size: 1rem;
        }
}
