.honors-item-image img {
    width: 100%;
}

.honors-item-image {
    overflow: hidden;
    position: relative;
}

.honors-item .honors-item-title {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5rem;
    text-align: center;
    color: rgba(99, 100, 102, 1);
    margin-top: 16px;
}



.honors-item-cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    background: #8282823d;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.honors-item:hover .honors-item-cover{
    opacity: 1;
    visibility: visible;
}

.honors-item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(188, 145, 44, 0.6);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.honors-item-icon i {
    font-size: 45px;
}

.honors-item:hover .honors-item-icon {
    opacity: 1;
    visibility: visible;
}

.honors-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 28px;
}

.honors-buttons .swiper-button-prev, .honors-buttons .swiper-button-next {
    position: unset;
    left: auto;
    right: auto;
    margin: 0;
}

.honors-buttons .swiper-button-prev::before, .honors-buttons .swiper-button-next::before {
    border-color: rgba(188, 145, 44, 1);
}

.honors-buttons .swiper-button-prev i::before, .honors-buttons .swiper-button-next i::before {
    color: rgba(188, 145, 44, 1);
}