.galeries-grid .gallery-item {
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f1f1f1;
    height: 300px;
    flex-direction: column;
    padding: 25px;
}
.galeries-grid .gallery-item .image-wrapper {
    height: 260px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 80%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: static;
    transition: all ease-in-out 250ms;
    background-blend-mode: multiply;
    mix-blend-mode: multiply;
}
.galeries-grid .gallery-item:hover .image-wrapper{
    transform: scale(1.1);
    transition: all ease-in-out 250ms;
}
.galeries-grid .gallery-item .image-caption {
    display:none !important;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #01195d;
    font-size: 1.2em;
    padding: 0 20px;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 0;
    height: 70px;
    align-items: center;
    display: flex;
    justify-content: center;
}
.galeries-grid .gallery-item a i{
    display:none;
}