.gallery-container {
    margin-top: 2.25rem;
    min-height: 100%;
}
.galleryBox{
    width: 90%;
    margin: 1.125rem auto;
    display: flex;
    justify-content: space-between;
}
.imgsBox{
    width: 30%;
}
.img{
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.img img{
    width: 100%;
    height: 100%;
}
.galleryDesc h3{
    line-height: 1.275rem;
    font-size: .275rem;
    text-align: center;
    font-weight: bold;
}
.galleryDesc a:hover{
    color:#bc261a;
}
@media (max-width: 1500px){
    .galleryDesc h3 {
        line-height: 102px;
        font-size: 22px;
    }
}
@media (max-width: 1024px){
    .gallery-container {
        margin-top: 100px;
    }
    .img{
        height: 170px;
    }
    .img img{
        transform: scale(1);
        transition: all 0.4s ease;
    }
    .galleryBox {
        margin-top: 80px;
        margin-bottom: 50px;
    }
    .galleryDesc h3 {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .img{
        height: 130px;
    }
    .galleryDesc h3{
        font-size: 18px;
    }
}
@media (max-width: 576px) {
    .imgsBox {
        width: 100%;
        margin-bottom: 20px;
    }
    .img {
        width: 100%;
        height: auto;
    }
    .galleryDesc h3 {
        font-size: 16px;
        line-height: 40px;
    }
    .galleryBox {
        display: block;
        margin-top: 50px;
    }
}