*{
    margin: 0;
    padding: 0;
}

.container2 {
    margin-top: 0;
    width: 100%;
    height: auto;
    background: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-flow: wrap;
}

.box {
    width: 47vw;
    height: 60vh;
    margin: 15px;
    box-sizing: border-box;
}

.slide-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width : 1200px) {
    .box {
        width: 100vw;
    }
}

@media screen and (max-width : 768px) {
    .box {
        width: 100vw;
    }
}