* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100%;
    overflow-x: hidden;
}
.galleryContMain{
    background: url(../image/content-bg.jpg);
    height:122vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover
}
.galleryContent{
    height: 110vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.galleryContent2{
    width: 95%;
    height: 110vh;
}
.galleryContent2title{
    font-weight: bold;
    color: #BA9A63;
    font-size: 23px;
}
.galleryborder{
    width: 8%;
    border: 1px solid #BA9A63;
}
.galleryContPart1{
    height: 30vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
   
}
.galleryContPart1New{
    display: none;
}
.gallerycontainerPart1New{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}


@media only screen and (max-width: 767px){
    .galleryContent2title{
        font-size: 20px;
    }
    .galleryborder{
        width: 21%;
    }
    .galleryContPart1{
        display: none;
    }
    .galleryContPart1New{
        height:23vh;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center
    }
    .galleryContMain{
        height: 155vh;
    }
    .galleryContent2{
        height: 149vh;
    }
    .galleryContent{
        height: 154vh;
    }
    .gallerycontainerPart1New{
        display: none;
    }
}