.about_us_section{
    width: 100%;
    height: auto;
    display: flex;
    padding-bottom: 1rem;
    
    position: relative;
    z-index: 1;
}
.about_us_section .center_about{
    
    max-width: 1100px;
    width: 100%;
    height: 400px;
    margin: auto;
    display: flex;
    gap: 10px;
}
.about_us_section .center_about .about_part{
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
}
.about_us_section .center_about .about_part .about_text{
    margin: auto;
    width: 80%;
}
.about_us_section .center_about .about_part .about_text h2{
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 20px;
    text-shadow: 0.5px 0.5px 1px #000000;
    color: var(--primary-color);
}
.about_us_section .center_about .about_part .about_text p{
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
    color: rgba(0, 0, 0, 0.563);
}


.about_us_section .center_about .about_part .img_div{
    margin: auto;
    position: relative;
}
.about_us_section .center_about .about_part img{
    max-height: 300px;
    width: auto;
    border-radius: 30px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.about_us_section .center_about .about_part .img_div .circle_div{
    display: flex;
    height: auto;
    width: 100%;
    position: absolute;
    bottom: -50px;
    left: 0px;
}
.about_us_section .center_about .about_part .img_div .circle_div .circle{
    height: 120px;
    width: 120px;
    margin: auto;
    background-color: white;
    border-radius: 50%;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.about_us_section .center_about .about_part .img_div .circle_div .circle .summery{
    margin: auto;
    width: 100%;
    height: auto;
    text-align: center;
}
.about_us_section .center_about .about_part .img_div .circle_div .circle .summery h1{
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 800;
    text-shadow: 0.5px 0.5px 1px #000000;
}
.about_us_section .center_about .about_part .img_div .circle_div .circle .summery p{
    font-weight: 600;
    color: #00000077;
}


@media (max-width: 880px) {
    .about_us_section{
        padding-bottom: 5rem;
    }
    .about_us_section .center_about{
        display: block;
        height: auto;
    }
    .about_us_section .center_about .about_part{
        width: 100%;
    }
}
@media (max-width: 400px) {
    .about_us_section .center_about .about_part .img_div .circle_div .circle{
        height: 80px;
        width: 80px;
    }
    .about_us_section .center_about .about_part .img_div .circle_div{
        bottom: -30px;
    }
    .about_us_section .center_about .about_part .img_div .circle_div .circle .summery h1{
        font-size: 20px;
    }
    .about_us_section .center_about .about_part .img_div .circle_div .circle .summery p{
        font-size: 12px;
    }
    .about_us_section .center_about .about_part img{
        border-radius: 10px;
        width: 100%;
    }
}