.awards__nav {
    display: flex;
    min-width: 820px;
}
.awards__nav-wrap {

    overflow: auto;
}

.awards {
    margin: 40px 0 100px 0;
}

.awards__title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.awards__nav {
    display: flex;

}

.awards__nav-item {
    padding: 25px 0;
    margin-right: 40px;
    position: relative;

}

.awards__nav-item:after {
    content: '';
    display: block;
    background: #0C2D70;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.awards__nav-item:hover:after {
    opacity: 1;
    visibility: visible;
}
.awards__nav-item.active:after {
    opacity: 1;
    visibility: visible;
}

.awards__nav-item:hover {
    cursor: pointer;
}

.awards__nav-item:hover {


}

.awards__nav-wrap {
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 30px;
}
.awards__items-wrap{
    margin-top: 20px;
}
.awards__items-title{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}
.awards__items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}
.awards__item{
    width: calc(33.33% - 24px);
    margin: 0 12px 30px 12px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    border-radius: 12px;
}
.awards__item:hover {
    cursor: pointer;
}
.awards__img img{
    width: 100%;
}
.awards__text{
    font-size: 16px;
    margin-top: 30px;
}
@media (max-width: 1365px){
    .awards__item{
        width: calc(50% - 24px);
    }
    .awards__items-title{
        margin-bottom: 23px;
        font-size: 28px;
    }
    .awards__title{
        font-size: 32px;
    }
    .awards{
        margin: 50px 0 50px 0;
    }
}
@media (max-width: 767px){
    .awards__item{
        width: 100%;
    }
    .awards__items{
        margin: 0 0 30px 0;
    }
    .awards{
        margin: 30px 0 50px 0;
    }
}