/* awards section */
.awards-section {
    background: #fff;
    padding-top: 0;
    padding-bottom: 100px;
}

.awards-section .awards-marquee {
    position: relative;
    overflow: hidden;
}

.awards-section .awards-marquee::before,
.awards-section .awards-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.awards-section .awards-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
}

.awards-section .awards-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
}

.awards-section .awards-marquee__viewport {
    overflow-x: hidden;
    width: 100%;
    cursor: grab;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

.awards-section .awards-marquee__viewport--dragging {
    cursor: grabbing;
}

.awards-section .awards-marquee__track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    will-change: transform;
}

.awards-section .awards-marquee__track--animating {
    animation: awards-section-marquee-scroll var(--awards-marquee-speed, 60s) linear infinite;
}

.awards-section .awards-marquee__track--dragging {
    animation: none !important;
    cursor: grabbing;
}

.awards-section .awards-marquee__set {
    display: flex;
    align-items: center;
    gap: 70px;
    flex-shrink: 0;
}

.awards-section .awards-marquee__track--pause-on-hover:hover:not(.awards-marquee__track--dragging) {
    animation-play-state: paused;
}

.awards-section .awards-marquee__viewport img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.awards-section .awards-marquee__item a {
    pointer-events: auto;
}

@keyframes awards-section-marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-1 * var(--awards-loop-width, 0px)), 0, 0);
    }
}

.awards-section .awards-marquee__item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    width: fit-content;
}

.awards-section .awards-marquee__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.awards-section .awards-marquee__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: fit-content;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 400;
}

.awards-section .awards-marquee__title {
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    color: #2d333e;
    white-space: nowrap;
}

.awards-section .awards-marquee__subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
    color: #687587;
    white-space: nowrap;
}

.awards-section .awards-marquee__item--rating {
    gap: 16px;
}

.awards-section .awards-marquee__logo {
    flex-shrink: 0;
    width: auto;
    max-width: 169px;
    height: auto;
    object-fit: contain;
}

.awards-section .awards-marquee__score {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.awards-section .awards-marquee__star {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.awards-section .awards-marquee__value {
    margin: 0;
    font-family: Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .awards-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .awards-section .content-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    /*.awards-section .awards-marquee__track,*/
    .awards-section .awards-marquee__set {
        gap: 60px;
    }

    .awards-section .awards-marquee::before,
    .awards-section .awards-marquee::after {
        width: 32px;
    }

    .awards-section .awards-marquee__item {
        width: auto;
     
    }

    .awards-section .awards-marquee__title,
    .awards-section .awards-marquee__subtitle {
        white-space: normal;
    }
}