.about_us_section_three {
    width: 100%;
    height: auto;
    padding: 10vw 5vw;
    display: flex;
    align-items: center ;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about_us_section_three img {
    border-radius: 10px;
    width: 20vw;
}
.about_us_section_three img:hover {
    transform: scale(1.2,1.2);
}
@media (min-width: 600px){
    .about_us_section_three {
        padding: 10vw 6vw;
    }
    
    .about_us_section_three img {
        width: 20vw;
    }
}
@media (min-width: 800px){
    .about_us_section_three {
        padding: 10vw 6vw;
    }
    
    .about_us_section_three img {
        width: 18vw;
    }
}
@media (min-width: 1024px){
    .about_us_section_three {
        padding: 10vw 8vw;
    }
    
    .about_us_section_three img {
        width: 16vw;
    }
}
@media (min-width: 1280px){
    .about_us_section_three {
        padding: 10vw 15vw;
    }
    
    .about_us_section_three img {
        width: 13vw;
    }
}