.gallery-image {
    background: #F6F6FF;
    border-radius: 28px;
    justify-content: center;
    display: flex;
    padding: 22px;
}
.gallery-image img {
    max-height: 150px;
    max-width: 150px;
    width: auto;
}
.gallery-item .caption {
    font-size: 16px;
    color: #272829;
    font-family: var(--main_font);
    text-align: center;
    margin-top: 20px;
    transition: 0.4s ease;
}
.gallery-item:hover .caption {
    color: var(--color3);
}