.mid-images {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 541px;
    flex-direction: row-reverse;
}

.first-image {
    width: 100%;
    height: 100%;
    border: none;
}

.second-image {
    height: 100%;
    border: none;
}

.grid-images {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.grid-images img {
    width: 243px;
}

@media only screen and (max-width: 960px) {
    .grid-images {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .grid-images img {
        width: 70%;
    }

    .mid-images {
        height: 100%;
    }
}
