.awards-tabs-section {}
.awards-tabs-section.padding-top {
    padding-top: 100px;
}
.awards-tabs-section.padding-bottom {
    padding-bottom: 100px;
}
.awards-tabs-section__intro-content {
    margin: 0 auto 40px;
    max-width: 900px;
    text-align: center;
}
.awards-tabs-section__outro-content {
    margin-top: 20px;
    text-align: center;
}
.awards-tabs-section__outro-content > :last-child {
    margin-bottom: 0;
}
.awards-tabs {}
.awards-tabs__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.awards-tabs__link {
    flex: 1 0 100%;
    font-size: 16px;
    line-height: 1.63;
    text-align: center;
    color: #222527;
    display: block;
    padding: 20px 30px;
    border: solid 1px #c1c4c6;
    position: relative;
    font-weight: 700;
    background: transparent;
    cursor: pointer;
}
.awards-tabs__link:hover,
.awards-tabs__link.is-active {
    box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    color: #005186;
    border: 1px solid #fff;
    z-index: 10;
    margin-right: -1px;
}
.awards-tabs__link:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 4px;
    background-color: #005088;
    display: none;
}
.awards-tabs__link:hover:after,
.awards-tabs__link.is-active:after {
    display: block;
}
.awards-tabs__contents {
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}
.awards-tabs__content {
    height: 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.awards-tabs__content.is-active {
    height: auto;
    opacity: 1;
}
.award__logo {
    margin: 0 auto 20px;
    aspect-ratio: 4 / 3 auto;
}
.awards-tabs__content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #222527;
    margin-bottom: 18px;
    display: block;
}
.awards-tabs__content li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    line-height: 35px;
    font-size: 14px;
}
.awards-tabs__content li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    background-image: url(https://www.janek.com/wp-content/uploads/2019/12/tick.svg);
    background-repeat: no-repeat;
    background-position: left top;
    width: 14px;
    height: 11px;
}
@media (min-width: 768px) {
    .awards-tabs__link {
        flex: 0 0 auto;
        border-right: 0px;
    }
    .awards-tabs__link:first-child {
        border-left: solid 1px #c1c4c6;
    }
    .awards-tabs__link:last-child {
        border-right: solid 1px #c1c4c6;
    }
}