.section_top_box{
    background-image: url(/src/img/sample6.webp);
    background-size: cover;
    background-position: center;
}

.section.section_2{
    align-items: center;
    padding: 50px 10px 0;
}

.section_content_container{
    width: 100%;
    position: relative;
}
.section_content_container.container_1{
    max-width: 1200px;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 10px;
}
.section_content_box{
    width: 100%;
    position: relative;
    box-shadow: 5px 5px 10px rgb(70, 70, 70);
}
.section_content_image_box{
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgb(18,77,137);
    overflow: hidden;
}
.section_content_image_box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section_content_name_box{
    width: 100%;
    padding: 20px 10px;
    align-items: center;
    background: rgb(126, 137, 143);
}
.section_content_name{
    font-size: 18px;
    letter-spacing: 1px;
    color: white;
    text-align: center;
    font-weight: bold;
}
.section_content_name .for_small{
    color: white;
    font-size: 14px;
}
@media all and (max-width:1200px){

}
@media all and (max-width:900px){
    .section_content_container.container_1{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media all and (max-width:524px){
    .section_content_container.container_1{
        grid-template-columns: 1fr;
    }
}
