/* =========================================
   ABOUT PAGE
========================================= */

.about-banner {
    position: relative;
    min-height: 390px;

    display: flex;
    align-items: center;

    background-image: url("https://images.unsplash.com/photo-1517935706615-2717063c2225?auto=format&fit=crop&w=2000&q=85");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.inner-page-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 45, 99, .90),
            rgba(7, 86, 165, .62),
            rgba(7, 86, 165, .35)
        );
}

.inner-page-banner .wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

.inner-page-banner-content {
    max-width: 760px;
}

.inner-page-banner .eyebrow {
    color: #f59e0b;
}

.inner-page-banner h1 {
    margin: 10px 0 22px;

    color: #fff;

    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255,255,255,.75);

    font-size: 13px;
}

.inner-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.inner-breadcrumb a:hover {
    color: #f59e0b;
}

.inner-breadcrumb i {
    font-size: 10px;
}


/* =========================================
   INTRO
========================================= */

.about-intro-section {
    padding: 90px 0;
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.about-experience-box {
    position: absolute;

    right: -25px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 18px 20px;

    background: #0756a5;
    color: #fff;

    border-radius: 12px;

    box-shadow: 0 15px 35px rgba(16,24,40,.18);
}

.about-experience-box strong {
    font-size: 31px;
    line-height: 1;
}

.about-experience-box span {
    max-width: 120px;
    font-size: 12px;
    line-height: 1.4;
}

.about-intro-content h2 {
    margin: 9px 0 18px;

    color: #101828;

    font-size: 34px;
    line-height: 1.25;
}

.about-intro-content p {
    margin-bottom: 17px;

    color: #667085;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   CHECK LIST
========================================= */

.about-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 13px;

    margin-top: 25px;
}

.about-check-list div {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    color: #344054;

    font-size: 13px;
    line-height: 1.5;
}

.about-check-list i {
    flex-shrink: 0;

    color: #0756a5;

    font-size: 15px;
}


/* =========================================
   MISSION
========================================= */

.about-mission-section {
    padding: 85px 0;

    background: #f8faff;
}

.about-section-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.about-section-heading h2 {
    margin: 9px 0 15px;

    color: #101828;

    font-size: 32px;
    line-height: 1.3;
}

.about-section-heading p {
    margin: 0;

    color: #667085;

    font-size: 15px;
    line-height: 1.75;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-value-card {
    padding: 30px;

    background: #fff;

    border: 1px solid #eaecf0;
    border-radius: 16px;

    transition: .25s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);

    border-color: #b7d7f5;

    box-shadow: 0 15px 35px rgba(16,24,40,.07);
}

.about-value-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: #eaf4ff;
    color: #0756a5;

    border-radius: 13px;

    font-size: 22px;
}

.about-value-card h3 {
    margin: 0 0 10px;

    color: #101828;

    font-size: 18px;
}

.about-value-card p {
    margin: 0;

    color: #667085;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   SERVICES
========================================= */

.about-services-section {
    padding: 90px 0;

    background: #fff;
}

.about-services-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.about-services-content h2 {
    margin: 9px 0 16px;

    color: #101828;

    font-size: 32px;
    line-height: 1.3;
}

.about-services-content p {
    margin-bottom: 25px;

    color: #667085;

    font-size: 15px;
    line-height: 1.8;
}

.about-primary-btn,
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 20px;

    background: #0756a5;
    color: #fff;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: .25s ease;
}

.about-primary-btn:hover,
.about-cta-btn:hover {
    background: #05427f;
    color: #fff;

    transform: translateY(-2px);
}


/* =========================================
   SERVICE LIST
========================================= */

.about-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-service-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;

    padding: 22px;

    border: 1px solid #eaecf0;
    border-radius: 15px;

    transition: .25s ease;
}

.about-service-item:hover {
    border-color: #b7d7f5;

    box-shadow: 0 12px 30px rgba(16,24,40,.06);
}

.about-service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf4ff;
    color: #0756a5;

    border-radius: 12px;

    font-size: 21px;
}

.about-service-item h3 {
    margin: 1px 0 7px;

    color: #101828;

    font-size: 17px;
}

.about-service-item p {
    margin: 0;

    color: #667085;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   CTA
========================================= */

.about-cta-section {
    padding: 70px 0;

    background: #fff;
}

.about-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 45px;

    background: #062d63;

    border-radius: 20px;
}

.about-cta-box .eyebrow {
    color: #f59e0b;
}

.about-cta-box h2 {
    margin: 8px 0 10px;

    color: #fff;

    font-size: 30px;
}

.about-cta-box p {
    margin: 0;

    max-width: 650px;

    color: #d0d5dd;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-banner {
        min-height: 340px;
    }

    .inner-page-banner h1 {
        font-size: 37px;
    }

    .about-intro-grid,
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-intro-image {
        max-width: 650px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-services-grid {
        gap: 45px;
    }

}


@media (max-width: 767px) {

    .about-banner {
        min-height: 300px;
        background-position: center;
    }

    .inner-page-banner h1 {
        font-size: 30px;
    }

    .about-intro-section,
    .about-mission-section,
    .about-services-section {
        padding: 55px 0;
    }

    .about-intro-image img {
        height: 400px;
    }

    .about-experience-box {
        right: 15px;
        bottom: 20px;
    }

    .about-intro-content h2,
    .about-services-content h2 {
        font-size: 27px;
    }

    .about-section-heading h2 {
        font-size: 27px;
    }

    .about-check-list {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-section {
        padding: 50px 0;
    }

    .about-cta-box {
        display: block;
        padding: 30px 25px;
    }

    .about-cta-box h2 {
        font-size: 25px;
    }

    .about-cta-btn {
        margin-top: 23px;
    }

}


@media (max-width: 480px) {

    .inner-page-banner h1 {
        font-size: 27px;
    }

    .inner-breadcrumb {
        font-size: 12px;
    }

    .about-intro-image img {
        height: 340px;
    }

    .about-experience-box {
        padding: 14px 16px;
    }

    .about-experience-box strong {
        font-size: 25px;
    }

    .about-experience-box span {
        font-size: 11px;
    }

}