/*
GALLERY
GALLERY
GALLERY Start
*/

.gallery-container {
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 0px;
    display: grid;
    width: 1140px;
    grid-gap: 30px;
    grid-template-columns: repeat(3,360px);
    /*grid-template-columns: repeat(auto-fit,360px);*/
    background: #ffffff;
}

.gallery-box .gallery-image{
    height: 240px;
    width: 360px;
}

.gallery-box .gallery-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*
GALLERY
GALLERY
GALLERY Start
*/

@media screen and (max-width: 1280px){

.gallery-container {
    display: grid;
    width: 750px;
    grid-gap: 30px;
    grid-template-columns: repeat(2,360px);
}

}

/*
GALLERY
GALLERY
GALLERY Start
*/

@media screen and (max-width: 1024px){

.gallery-container {
    display: grid;
    width: 730px;
    grid-gap: 10px;
    grid-template-columns: repeat(2,360px);
}

}

/*
GALLERY
GALLERY
GALLERY Start
*/

@media screen and (max-width: 768px){

.gallery-container {
    display: grid;
    width: 360px;
    grid-gap: 10px;
    grid-template-columns: repeat(1,360px);
}

}

/*
GALLERY
GALLERY
GALLERY Start
*/

@media screen and (max-width: 400px){

.gallery-container {
    display: grid;
    width: 320px;
    grid-gap: 10px;
    grid-template-columns: repeat(1,320px);
}

.gallery-box .gallery-image{
    height: 240px;
    width: 320px;
}

}