*{
    margin: 0;
    padding: 0;
    font-family: "montserrat",sans-serif;
    box-sizing: border-box;
}

.gallery-section{
    width: 100%;
    padding: 60px 0;
    background: #f1f1f1;
}

.inner-width{
    width: 100%;
    /*max-width: 1200px;*/
    margin: auto;
    padding: 0 20px;
}

.gallery-section h1,
.gallery-section h2,
.gallery-section h3,
.gallery-section h4,
.gallery-section h5,
.gallery-section h6{
    text-align: center;
    text-transform: uppercase;
    color: #333;
    margin: 60px auto;
    margin-bottom: 35px !important;
}

.border{
    width: 180px;
    height: 4px;
    background: #333;
    margin: 0 auto;
}

.gallery-section .gallery{
    display: none;
    flex-wrap: wrap-reverse;
    justify-content: center;
}

.gallery-section .image{
    flex: 20%;
    overflow: hidden;
    cursor: pointer;
}

.gallery-section .image img{
    width: 100%;
    height: 100%;
    transition: 0.4s;
}

.gallery-section .image:hover img{
    transform: scale(1.4);
}

@media screen and (max-width:960px) {
    .gallery-section .image{
        flex: 33.33%;
    }
}
