.grid_2{
    display: flex;
    gap: 5px;
    width: 100%;
    margin-top: 10px;
}
.grid_2 img{
    flex: 1;
    width: 50%;
    height: auto;
    object-fit: cover;
}
@media (max-width: 600px) {
    .grid_2{
        flex-direction: column;
    }
    .grid_2 img{
        width: 100%;
    }
}