.happyCustomerGallery {
    width: 100%;
    padding: 40px 0 30px 0;
}

.happyCustomerGallery>h1 {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    font-family: var(--font2);
    font-size: 210%;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: capitalize;
    color: #373435;
}

.happyCustomerGallery>h1>span {
    font-weight: 400;
}

.gallerContainer{
    max-height: 768px;
    position: relative;
    overflow: hidden;
}

#gallery {
    -webkit-column-count: 5;
    -webkit-column-gap: 15px;
    -moz-column-count: 5;
    -moz-column-gap: 15px;
    column-count: 5;
    column-gap: 15px;
}

#gallery img {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px;
    border-radius: 0.7rem;
    filter: brightness(0.9);
    border: 1px solid rgba(55,52,53, 0.35);
    transition: 500ms ease-out;
}

#gallery img:hover{
    filter: brightness(1);
}

.loadImages{
    width: 100%;
    height: auto;
    padding: 100px 0 0 0;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(transparent, #d2d3d5de, white);
}

.loadImages>button{
    font-family: var(--font1);
    border: 2px solid #373435;
    color: #373435;
    background-color: transparent;
    border-radius: 0.5rem;
    padding: 10px 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 105%;
    cursor: pointer;
}


@media only screen and (max-width: 992px) {
    .happyCustomerGallery>h1 {
        font-size: 180%;
    }

    #gallery {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media only screen and (max-width: 768px) {
    .happyCustomerGallery>h1 {
        font-size: 165%;
    }

    #gallery {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (max-width: 576px) {
    .happyCustomerGallery>h1 {
        font-size: 150%;
    }

}