.About-us_banner {
    position: relative;
    width: 110%;
    height: 350px;
    background: url('../images/about_us.jpg') center/cover no-repeat;
}

.About-us_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.249);
}

.about-banner_text h2 {
    color: #ffffff;
    z-index: 2;
}

.about-banner_text {
    width: 50%;
    display: flex;
    justify-content: end;
    padding: 8%;
    float: right;
}

.mission-vision-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.card {
    border: none;
    text-align: center;
    padding: 30px;
    height: 459px;
    border-radius: 10px;
    background: white;
    transition: 0.3s ease-in-out;
    box-shadow: 0 9px 8px #15c1ad21;
}

.card p {
    font-size: 21px;
    line-height: 30px;
}

.card .icon-box img{
    width: 40px;
}

.card:hover {
    background: #bea930;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card:hover p {
    color: #ffffff;
}

.card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 575px) {
    .About-us_banner {
        position: relative;
        width: 100%;
        height: 173px;
        background: url(../images/about_us.jpg) center / cover no-repeat;
    }   

    .about-banner_text {
        width: 100%;
        display: flex;
        justify-content: end;
        padding-top: 70px;
        float: right;
    }

    .mission-vision-section p {
        font-size: 13px;
        line-height: 20px;
        font-weight: 400;
        color: var(--e-global-color-text);
    }

    .card {
        margin-bottom: 30px;
        height: 375px;
        padding-bottom: 10px;
    }

    .mission-vision-section {
        padding: 37px 0;
        background: #f8f9fa;
    }
}