/* ========== banner css code start ========== */
.about_banner {
    position: relative;
    width: 100%;
    height: 250px;
    background-image: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/about-page/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.about_banner .banner_text{
    width: 100%;
    height: 100%;
}
.about_banner .banner_text .text_box {
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 2rem;
}
.about_banner .banner_text .text_box .h2had{
    color:white !important;
}

/* ========== banner css code end ========== */

/* ========== about css code start ========== */
.about_us_containers{
    position: relative;
    margin-top: 3rem;
    padding-top: 2rem;
}
.about_us_containers::before{
    content: "";
    background-color: var(--very-light-blue-color);
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 1.5rem;
}
.about_menu_containe{
    padding-left: 2rem;
    display: flex;
    justify-content: start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.about_menu_containe .about_menuh4{
    font-size: 1.1rem;
    cursor: pointer;
}
.about_menu_containe .about_menuh4.active{
    border-bottom: 2.5px solid var(--dark-blue-color);
    padding-bottom: .4rem;
    color: var(--dark-blue-color);
}
.about_box{
    display: none;
    /* padding: 0 2rem; */
}
.about_box.active{
    display: block;
    animation: zoomIn;
    animation-duration: 1s;
}
.about_us_containers .left_box {
    flex-basis: 40%;
    overflow: hidden;
    border-radius: 1.5rem;
}

.about_us_containers .left_box img {
    width: 100%;
    object-fit: cover;
}

.about_us_containers .right_box {
    flex-basis: 60%;
    padding: 0rem 2rem;
    display: flex;
    justify-content: start;
    flex-direction: column;
    row-gap: 1rem;
}

/* ========== about css code end ========== */

/* ========== what we do css code start ========== */
.what_we_do_container .flex_container {
    gap: 1rem;
}

.what_we_do_box {
    flex-basis: 50%;
    border-radius: .5rem;
}

.what_we_do_box>.flex_container {
    column-gap: .4rem;
    margin-bottom: .5rem;
}

.what_we_do_box>.flex_container>.ri-checkbox-circle-fill {
    font-size: 1.4rem;
    color: var(--dark-blue-color);
}

.what_we_do_box>.flex_container>p>span {
    color: var(--black-color);
    font-weight: 600;
}

/* ========== what we do css code end ========== */

/* ========== wour mission css code start ========== */


/* ========== wour mission css code end ========== */


/* *********************************************************************************************** */
/* ========== media query section start ========== */

@media (max-width: 768px) {

    /* ========== about css code start ========== */
    .about_us_containers{
        padding: 1rem;
    }
    .about_us_containers::before{
        width: 100%;
    }
    .about_menu_containe{
        padding-left: 0rem;
    }
    .about_us_containers .flex_container {
        flex-wrap: wrap;
        row-gap: 1rem;
        flex-direction: column-reverse;
    }

    .about_us_containers .left_box {
        flex-basis: 100%;
    }

    .about_us_containers .right_box {
        flex-basis: 100%;
        padding: 0;
    }

    /* ========== about css code end ========== */

    /* ========== what we do css code start ========== */
    .what_we_do_container .flex_container {
        flex-wrap: wrap;
    }

    .what_we_do_box {
        flex-basis: 100%;
    }

    .what_we_do_box>.flex_container {
        flex-wrap: nowrap;
    }

    /* ========== what we do css code end ========== */
}

@media (max-width: 480px){
    .about_menu_containe{
        flex-direction: column;
    }
    .about_menu_containe .about_menuh4{
        text-align: center;
    }
}