/* =========================
   About Us Page
========================= */

.sr-about-page {
    padding: 40px 0 80px;
}

.sr-about-page .sr-container {
    max-width: 1170px;
    padding-left: 0;
    padding-right: 0;
}

.sr-about-hero {
    width: 100%;
    height: 94px;
    margin-bottom: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    background: #D6DAE0;
}

.sr-about-hero div {
    margin-bottom: 6px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    color: #A7ACB5;
}

.sr-about-hero h1 {
    margin: 0;

    font-size: 30px;
    font-weight: 700;
    line-height: 1;

    color: #464855;
}

.sr-about-banner {
   /* height: 300px; */
    margin-bottom: 30px;

    overflow: hidden;
    border-radius: 10px;
    background: #D6DAE0;
}

.sr-about-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.sr-about-textbox {
    max-width: 769px;
    margin: 0 auto 30px;
    padding: 10px;

    border-radius: 10px;
    background: #D6DAE0;
}

.sr-about-textbox p {
    margin: 0;
    padding: 20px;

    border-radius: 8px;
    background: #FFFFFF;

    text-align: center;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;

    color: #8592A4;
}

.sr-about-video {
    max-width: 769px;
    height: 364px;
    margin: 0 auto 30px;

    overflow: hidden;
    border-radius: 10px;
    background: #D6DAE0;
}

.sr-about-video video,
.sr-about-video > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bottom cards */

.sr-about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.sr-about-card {
    overflow: hidden;

    border: 1px solid #D6DAE0;
    border-radius: 10px;
    background: #FFFFFF;
}

.sr-about-card h2 {
    margin: 0;
    padding: 20px;

    background: #D6DAE0;

    text-align: center;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    color: #464855;
}

.sr-about-card div {
    min-height: 83px;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-about-card p {
    margin: 0;

    text-align: center;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;

    color: #464855;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1200px) {
    .sr-about-page .sr-container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 768px) {
    .sr-about-page {
        padding: 28px 0 60px;
    }

    .sr-about-page .sr-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sr-about-hero {
        height: 80px;
        margin-bottom: 24px;
    }

    .sr-about-hero h1 {
        font-size: 26px;
    }

    .sr-about-banner {
        height: auto;
        margin-bottom: 24px;
    }

    .sr-about-textbox {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .sr-about-textbox p {
        padding: 16px;
        font-size: 14px;
    }

    .sr-about-video {
        max-width: 100%;
        height: 210px;
        margin-bottom: 24px;
    }

    .sr-about-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }
}
