.section-awards {
    background: none;
    position: relative;
    &:before {
        content: "";
        width: 100%;
        height: 50%;
        position: absolute;
        top: 0;
        right: 0;
        background: var(--accent);
        box-shadow: 0px 6px 20px -4px #0000001A;
        border-radius: 40px 0 0 40px;
    }
}
.main-image {
    width: 390px;
    img {
        width: 100%;
        height: 100%;
        box-shadow: 0px 6px 20px -4px #0000001A;
        border-radius: 20px;
        background: white;
    }
    .caption.honor-content {
        font-size: clamp(20px, 2vw, 24px);
        text-align: center;
        margin-top: clamp(40px, 4vw, 56px);
    }
}
.sw--awards .awards-item,
.sw--awards--mobile .awards-item {
    height: auto;
    width: auto;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    box-shadow: 0px 6px 20px -4px #0000001A;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
}
.sw--left {
    position: relative;
}
.sw--awards--mobile {
    padding-block: 20px !important;
}
@media only screen and (min-width: 1100px) {
    .section-awards:before {
        content: "";
        width: 50%;
        height: 100%;
    }
    .sw--awards .awards-item {
        height: 196px;
        width: 196px;
        img {
            width: 100px;
            height: auto;
        }
    }
    .wrapper-awards {
        display: flex;
        align-items: center;
        justify-content: space-between;
        .swiper-slide {
            cursor: grab !important;
        }
        .sw--awards {
            height: 652px;
            padding-block: 16px;
        }
    }
    .sw--left .swiper-sw-next {
        bottom: calc(100% + 20px);
        top: auto;
        left: 50%;
        transform: translateX(-50%) rotate(-90deg);
    }
    .sw--left .swiper-sw-prev {
        top: calc(100% + 20px);
        right: 50%;
        transform: translateX(50%) rotate(-90deg);
    }
}
.swiper-fade .swiper-slide {
    opacity: 0 !important;
}
.swiper-fade .swiper-slide-active {
    opacity: 1 !important;
}
@media only screen and (max-width: 768px) {
    .section-awards .row {
        flex-direction: column-reverse;
    }
}