/* Award Section */
section.technologies-award-section {
    padding: 35px 0 25px 0;
    background-color: var(--white);
}

.technologies-award-section .container {
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.technologies-award-section .section-heading {
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    color: var(--pale-sky);
    border-right: 1px solid var(--athens-gray);
    padding: 0 32px;
}

.technologies-award-section .award-list {
    gap: 16px;
}

.technologies-award-section .award-item {
    padding: 5px 16px;
}

.technologies-award-section .award-item img {
    height: 141px;
    object-fit: contain;
}

@media only screen and (max-width: 768px) {
    section.technologies-award-section {
        padding: 32px 0 18px 0;
    }

    .technologies-award-section .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .technologies-award-section .section-heading {
        padding: 0;
        border: none;
        font-size: 10px;
        line-height: 16px;
        text-align: left;
    }

    .technologies-award-section .award-list {
        width: 100%;
        justify-content: space-between;
        gap: 0;
    }

    .technologies-award-section .award-item {
        padding: 0;
    }

    .technologies-award-section .award-item img {
        height: 93px;
    }
}