.parallax-gallery{
    width: calc(100vw - 60px);
    height: 100vh;;
    position: relative;
}

.parallax-gallery .top-section{
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 120px;
}

.parallax-gallery .top-section .parallax-gallery-item{
    flex: 2.5;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.parallax-gallery .top-section .parallax-gallery-item:nth-child(2){
    flex: 4;
    height: 80%;
}

.parallax-gallery .top-section .parallax-gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.parallax-gallery .bottom-section{
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 90px;
}

.parallax-gallery .bottom-section .parallax-gallery-item{
    flex: 4;
    height: 100%;
    position: relative;
    height: 80%;
}

.parallax-gallery .bottom-section .parallax-gallery-item:nth-child(3){
    flex: 2.5;
    height: 100%;
}

.parallax-gallery .bottom-section .parallax-gallery-item:nth-child(2){
    margin-left: 40px;
}

.parallax-gallery .bottom-section .parallax-gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;          
    border-radius: 10px;
}

.parallax-gallery .center-section{
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.parallax-gallery .center-section h6{
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #000;
    font-family: 'Fraunces';
}

.parallax-gallery .center-section p{
    font-size: 20px;
    font-weight: 400;
    color: #000;
    font-family: 'Jost';
    max-width: 500px;
    text-align: center;
}

img.mfp-img{
    max-height: 80vh !important;
}

@media screen and (orientation: portrait) {
    .parallax-gallery{
        height: 60vh;
    }
    
}

@media screen and (orientation: portrait) and (max-width: 600px) {
    .parallax-gallery .top-section,
    .parallax-gallery .bottom-section{
        gap: 30px;
    }

    .parallax-gallery {
        height: 60vh;
    }

    .parallax-gallery .top-section, .parallax-gallery .bottom-section{
        height: 40%;
    }

    .parallax-gallery .bottom-section .parallax-gallery-item:nth-child(2) {
        margin-left: 30px;
    }

    .parallax-gallery .center-section {
        width: 100%;
        height: 25%;
    }
}

@media  (max-width: 1024px) {

    .parallax-gallery .center-section h6{
        font-size: 36px;
    }
    .parallax-gallery .center-section p{
        font-size: 18px;
    }
    
}


@media  (max-width: 500px) {

    .parallax-gallery .center-section h6{
        font-size: 22px;
        margin-bottom: 5px;
    }

    .parallax-gallery .center-section p{
        font-size: 16px;
    }
}