.section-honors {
    background: linear-gradient(180deg, rgba(241, 245, 249, 0) 0%, #F1F5F9 100%);
    padding-bottom: 72px;
}
.item-honors {
    position: relative;
    transition: 0.4s;
    .honor-item {
        position: relative;
        border-radius: 48px;
        overflow: hidden;
        &:after {
            content: "\e92a";
            font-family: 'icomoon';
            font-size: 40px;
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #FFFFFF47;
            backdrop-filter: blur(4px);
            position: absolute;
            right: 50%;
            top: 50%;
            transform: translate(50%, -50%);
            z-index: 1;
            opacity: 0;
            transition: 0.4s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        a {
            display: flex;
            position: relative;
            img {
                width: 100%;
            }
            &:before {
                content: "";
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                right: 0;
                backdrop-filter: blur(6px);
                background: #00000033;
                z-index: 1;
                opacity: 0;
                transition: 0.4s;
            }
        }
    }
    .honor-content {
        padding: 24px 24px 0;
        text-align: center;
        font-size: 16px;
        font-family: var(--SemiBold);
        transition: 0.4s;
    }
    &:hover {
        transition: 0.4s;
        .honor-item {
            a:before,
            &:after {
                opacity: 1;
            }
        }
        .honor-content {
            color: var(--color2);
        }
    }
}