/* 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%;
}

.awards-section .awards-marquee__track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: awards-section-marquee-scroll var(--awards-marquee-speed, 60s) linear infinite;
}

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

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

@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;
}

@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: 20px;
    }

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

    .awards-section .awards-marquee__item {
        width: 100%;
        max-width: 280px;
    }

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