.gallery-image img {
    width: auto;
    border-radius: 24px;
}

.gallery-item .caption {
    font-size: 18px;
    color: #272829;
    font-family: var(--main_font);
    text-align: center;
    margin-top: 20px;
    transition: 0.4s ease;
    line-height: 1.5;
    position: relative;
}

.gallery-item:hover .caption {
    color: var(--color1);
}

.gallery-item a {
    position: relative;
    background: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    overflow: hidden;
}

.gallery-item a:before {
    opacity: 0;
    content: "";
    position: absolute;
    height: 100%;
    background: #024A638C;
    filter: blur(12px);
    opacity: 0;
    right: 0;
    left: 0;
    transition: 0.3s;
    z-index: 1;
}

.gallery-item a:after {
    content: "\e925";
    font-family: icomoon;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    font-size: 32px;
    color: #fff;
    opacity: 0;
    transition: 0.3s;
    z-index: 3;
}

.gallery-item:hover a::before {
    opacity: .6
}

.gallery-item:hover a:after {
    opacity: 1;
}

.section-award .sw-between .swiper-nav-prev,
.section-award .sw-between .swiper-nav-next {
    transform: translateY(-100%);
}