*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section.section{
    margin: 120px 0;
}
.imageWrapper{
    display: flex;
    align-items: center;
    margin: 0 4%;
    column-gap: 15px;
    margin-bottom: 50px;
    position: relative;
    /* justify-content: space-between; */
}

.leftImage,.rightImage,
.leftImage2,.rightImage2{
    flex-basis: 50%;
    height: 400px;
    border-radius: 30px;
    background-size: cover;
}

.imageWrapper .leftImage{
    background-image: url(../Gallery/1.jpg);
}

.imageWrapper .rightImage{
    background-image: url(../Gallery/3.JPEG);
}

.imageWrapper .leftImage2{
    background-image: url(../Gallery/4.JPEG);
}


.imageWrapper .rightImage2{
    opacity: 0.3;
    background-image: url(../Gallery/translucent.JPEG);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.imageWrapper .button{
    position: absolute;
    right: 19%;
    font-family: 'open sans';
    padding: 12px 18px;
}
.fa-solid.fa-arrow-right{
    transform: rotate(-45deg);
    margin-left: 10px;
}



@media screen and (max-width:920px){
    .imageWrapper{
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .leftImage, .rightImage, .leftImage2, .rightImage2{
        flex-basis: 100%;
        height: 200px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    .imageWrapper .button{
        right: 30%;
        bottom: 23%;
    }
    section.section{
        margin: 80px 0;
    }
}