.about{
    padding: 1rem;
    padding-top: 5rem;
}
.wrapper{
    max-width: 1200px;
    /* margin: auto; */
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 1rem;
    background-color: var(--vary-light-gray);
}
.section_wrapper{
    flex-wrap: wrap;
}
.wrapper p{
    text-align: justify;
    line-height: 1.5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 2rem 0;

}
.primary_btn{
    display: inline-block;
    box-sizing: border-box;
    padding: 1rem 3rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
}
.about_hero_img img{
    border-bottom-right-radius: 100%;
    border-bottom-left-radius: 100%;
}
.quote{
    color: var(--gray);
    font-size: 2rem;
}
.about_hero_img_mobile{
    display: none;
    text-align: center;
}
.about_hero_img_mobile img{
    max-width: 400px;
    
}
.col_2_wrapper{
    display: flex;
    gap: 2rem;
}
.three_styled_div{
    display: flex;
    max-width: 900px;
    margin: auto;
    gap: 2rem;
    text-align: justify;
    color: var(--white);
    flex-wrap: wrap;
}
.three_styled_div div{
    padding: 2rem 1rem;
    border-radius: 10px;
    line-height: 1.5rem;
    transition: all .25s ease-in-out;
    flex: 1;
    flex-basis: 200px;
    box-shadow: 0 0 10px 0 #aaa;
}
.three_styled_div div:hover{
    transform: translateY(-10px);
}
.three_styled_div div b{
    font-size: 30px;
    margin-bottom: 2rem;
    display: inline-block;
}
.three_styled_div div:first-child{
    background-color: #3c51e0;
}
.three_styled_div div:nth-child(2){
    background-color: #ff5670;
}
.three_styled_div div:nth-child(3){
    background-color: var(--primary);
}
.reach_status_wrapper .heading{
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    /* color: #333; */
}
.reach_status_wrapper{
    background-color: var(--primary);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    color: var(--white);
}
.reach_status{
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.reach_status div{
    display: flex;
    flex-direction: column;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    width: 200px;
    height: 200px;
    background-color: #3c51e0;
    box-shadow: 0 0 10px 0 #888888;
    border-radius: 10px;
    padding: 2rem;
    color: var(--white);
}
.reach_status div span{
    font-size: 6rem;
    line-height: 6rem;
}
.reach_exand{
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
   .about_hero_img{
        display: none;
   } 
   .about_hero_img_mobile{
        display: block;
   }
}
@media screen and (max-width:600px) {
    .col_2_wrapper{
        flex-wrap: wrap;
    }
}