section.awards {
    margin: 60px 0;
}

section.awards h2 {
    font-weight: bold;
    color: var(--dark-blue-100);
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 28px;
}

section.awards .awards__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
    color: var(--dark-blue-100);
}

section.awards .awards__item:hover .awards__item-image {
    box-shadow: 0px 4px 20px 0px #00000024;
}

section.awards .awards__item-image {
    background: #FBF5F2;
    border-radius: 30px;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin-bottom: 15px;
    transition: all .3s;
}

section.awards h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-blue-100);
    line-height: 1.2;
}

section.awards p {
    font-size: 14px;
    margin-bottom: 30px;
}


@media all and (max-width:1170px) {
    section.awards .container {
        max-width: 90%;
    }

    section.awards .awards__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media all and (max-width:768px) {
    section.awards .awards__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}