.photo-gallery-section {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.photo-gallery-section .left {
    display: flex;
    width: 574px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}
.photo-gallery-section .right {
    display: flex;
    width: 574px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}
.photo-gallery-section .right .two-images {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

@media only screen and (max-width: 1200px){
    .photo-gallery-section {
        flex-direction: column;
    }
}
@media only screen and (max-width: 600px){
    .photo-gallery-section, .photo-gallery-section .left, .photo-gallery-section .right, .photo-gallery-section .right .two-images, .photo-gallery-section .left img, .photo-gallery-section .right img {
        width: 100%;
    }
}

