
/* =========================================
   ABOUT US BANNER
========================================= */

.about-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    height: 300px;

    background-image:
        url("images/about-banner.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* =========================================
   DARK OVERLAY
========================================= */

.about-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 20, 38, 0.88),
            rgba(3, 20, 38, 0.58),
            rgba(3, 20, 38, 0.35)
        );

    z-index: 1;
}


/* =========================================
   CONTENT
========================================= */

.about-banner-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    padding: 20px 30px;

    text-align: center;
    color: #ffffff;
}


/* =========================================
   SMALL TAG
========================================= */

.about-banner-tag {
    display: inline-block;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: #f4c542;

    margin-bottom: 8px;
}


/* =========================================
   HEADING
========================================= */

.about-banner h1 {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;

    font-weight: 700;
    letter-spacing: -1px;
}

.about-banner h1 span {
    color: #f4c542;
}


/* =========================================
   DESCRIPTION
========================================= */

.about-banner p {
    max-width: 650px;

    margin: 10px auto 15px;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================
   BREADCRUMB
========================================= */

.about-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
}

.about-breadcrumb a {
    color: #ffffff;
    text-decoration: none;

    transition: 0.3s ease;
}

.about-breadcrumb a:hover {
    color: #f4c542;
}

.about-breadcrumb i {
    font-size: 10px;
    color: #f4c542;
}

.about-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .about-banner {
        min-height: 250px;
        height: 250px;
    }

    .about-banner-content {
        padding: 15px 20px;
    }

    .about-banner-tag {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 6px;
    }

    .about-banner h1 {
        font-size: 36px;
    }

    .about-banner p {
        font-size: 12px;
        line-height: 1.6;

        max-width: 500px;
        margin: 8px auto 12px;
    }

    .about-breadcrumb {
        font-size: 12px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .about-banner {
        min-height: 220px;
        height: 220px;
    }

    .about-banner h1 {
        font-size: 32px;
    }

    .about-banner p {
        font-size: 11px;
        max-width: 330px;
    }
}

