#awardsCarouselSec {
    position: relative;
    margin-bottom: var(--space-between-sections);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

#awardsCarouselSec .container {
    padding-top: 40px;
    padding-bottom: 80px;
}

#awardsCarouselSec .yellowDiv {
    width: 100%;
    height: 50px;
    background-color: #f0a404;
    z-index: 2;
    position: relative;
}

#awardsCarouselSec .topContent {
    position: relative;
    width: 70%;
    margin: 0 auto 86px auto;
    text-align: center;
    z-index: 2;
}

#awardsCarouselSec .topContent h1 {
    margin: 0;
    font-size: 31px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 70px;
    text-transform: uppercase;
    color: white;
}

#awardsCarouselSec .topContent p {
    margin: 20px 0 0 0;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 400;
    line-height: 28px;
    color: white;
}

.awards-carousel .item {
    text-align: center;
}

.awards-carousel .item img {
    max-height: 120px;
    object-fit: contain;
}

@media (max-width: 992px) {
    #awardsCarouselSec {
        margin-bottom: unset;
    }

    #awardsCarouselSec .topContent {
        width: unset;
    }

    #awardsCarouselSec .topContent h1 {
        font-size: 24px;
        line-height: normal;
    }
}