﻿.awards {
    position: relative;
    padding: 10px 0;
}
body .awards__list {
    padding: 0;
}
.awards__list {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #333;
}
.awards__item {
    max-width: 142px;
    width: calc(100% / 6 - 10px);
    margin: 0 20px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: currentColor;
}
.awards__name {
    width: 100%;
    padding: 10px 20px;
    color: #333;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    line-height: 12px;
    background: url(../image/branches.svg) no-repeat center;
    background-size: contain;
}
.awards__description {
    margin-top: 10px;
    width: 100%;
    color: inherit;
    font-weight: 200;
    font-size: 10px;
    line-height: 12px;
}
