.impressive {
    background-color: var(--primary-color);
    width: 100%;
}

.impressive .section-title {
    color: var(--white);
}

.impressive .main-title {
    color: var(--white);
}

.middle-padding {
    margin-bottom: 40px;
}

.stats-content {
    position: relative;
    width: 100%;
    height: 100%;
    align-items: center;
}
.stats-content::before {
    content: "";
    position: absolute;
    background-image: url('/assets/world-map-dot.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: center;
    z-index: 1;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0;
    padding: 91px 0;
    margin: 64px 0;
}


.stat-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px;
    gap: 16px;
}

.number {
    font-size: 64px;
    color: var(--accent-blue);
    font-weight: 400;
    flex-shrink: 0;
    line-height: 72px;
}


.description-container {
    font-weight: 400;
    line-height: 32px;
    font-size: 25px;
    color: var(--white);
    text-align: start;
    text-wrap-mode: nowrap;
}

.description-highlight {
    font-size: 25px;
    font-weight: 700;
    color: var(--accent-blue);
}


.impressive-scroll-logo-list {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 28px 8px;
    animation: scroll 20s linear infinite;
    width: calc(200%);
    height: 120px;
    overflow-x: auto;
    overflow-y: hidden; 
    -webkit-overflow-scrolling: touch; 
    scroll-behavior: smooth;
}

.impressive-scroll-logo-list:hover {
    animation-play-state: paused; 
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.award-logo {
    width: 170px;
    height: 120px;
    display: flex;
    justify-content: center; 
    align-items: center;
}



@media (min-width: 1440px) {
    .stats-grid {
        margin: 64px 0;
    }
    .stat-item:nth-child(-n+2) {
        flex: 1 1 50%;
    }
    .stat-item:nth-child(1) {
        justify-content: right;
    }
    .stat-item:nth-child(2) {
        justify-content: left;
    }
    .stat-item:nth-child(n+3) {
        flex: 1 1 calc(33.333%);
    }
}

@media (min-width: 768px) and (max-width: 1439px) {

    .stats-grid {
        margin: 0;
        padding: 64px 0;
        align-content: center;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        flex: 1 1 50%;
        max-width: 50%;
    }

    /* .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        flex: 1 1 100%;
        max-width: 100%;
    } */

    /* .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        flex: 1 1 calc(50%);
    }
    .stat-item:nth-child(3) {
        justify-content: right;
    }
    .stat-item:nth-child(4) {
        justify-content: left;
    }

    .stat-item:nth-child(5) {
        flex: 1 1 100%;
        max-width: 100%;
    } */

    .number {
        font-size: 58px;
        line-height: 48px;
    }
    .description-container {
        font-size: 20px;
    }
    .description-highlight {
        font-size: 20px;
    }

    .impressive-scroll-logo-list  {
        gap: 60px;
    }
}

@media (max-width: 767px) {
    .stats-grid {
        padding: 64px 0;
        margin: 0;
    }
    .stat-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4), .stat-item:nth-child(5) {
        padding-right: 110px;

    }
    .middle-padding {
        margin-bottom: 0;
    }
    .number {
        font-size: 44px;
        line-height: 36px;
    }
    .description-container {
        font-size: 18px;
        line-height: 25px;
    }
    .description-highlight {
        font-size: 18px;
    }
    .impressive-scroll-logo-list  {
        gap: 60px;
    }
    
}


