/* custom-image-gallery.css */
/* 
add font 
 */
.custom-image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.custom-image-gallery img {
    height: 240px !important;
    border-radius: 10px !important;
    width: 100%;
    object-fit: cover;
}
.ems-gal-tog-wrapper h2 span:first-of-type {
    color: #f2a70c;
    font-size: 18px;
}
.ems-gal-tog-wrapper h2 span:last-of-type {
color: #151515;
    font-family: "Alumni Sans", Sans-serif;
    font-size: 58px;
    font-weight: 500;
}
a.view-all-btn {
background: #ffc109;
    float: right;
    padding: 10px 17px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    font-family: "Alumni Sans", Sans-serif;
    font-size: 20px;
    font-weight: 600;
}
a.view-all-btn i {
    padding-left: 10px;
    font-size: 22px;
}

a.view-all-btn:hover {
    color: #151515;
}