.videos_archive_sect {
    background-color: #F5F5F5;
}
.videos_archive_sect .sect_title {
    margin: 0 0 1.1em;
}
.videos_archive_sect .cats_and_sort {
    display: flex;
    margin: 0 -1em 2.5em;
}
.videos_archive_sect .cats_wrap {
    margin: 0 1em;
    box-sizing: border-box;
    width: calc(75% - 2em);
}
.videos_archive_sect .sort_wrap {
    margin: 0 1em;
    box-sizing: border-box;
    width: calc(25% - 2em);
}
.videos_archive_sect .cats {
    list-style-type: none;
    margin: 0 -0.5em;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}
.videos_archive_sect .cats li {
    margin: 0 0.5em;
}
.videos_archive_sect .cat {
    padding: 0 0.25em;
    box-sizing: border-box;
    height: 2.5em;
    display: flex;
    align-items: center;
    color: #667085;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition-property: color;
    transition-duration: 0.3s;
}
.videos_archive_sect .cat.active,
.videos_archive_sect .cat:hover {
    color: #101828;
}
.videos_archive_sect .cat.active:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    transform: translate(0, -50%);
    height: 0.125em;
    width: 100%;
    background-color: #101828;
}
.videos_archive_sect .cat_label {
    font-size: 0.75em;
    line-height: 1.33;
}
.videos_archive_sect .cats_wrap {
    border-bottom: 1px solid #EAECF0;
}
.videos_archive_sect .sort_select {
    background-color: #ffffff;
    padding: 0 0.875em;
    font-size: 1em;
    color: #101828;
    height: 2.75em;
    box-shadow: 0 1px 0.125em 0 rgba(16, 24, 40, 0.05);
    border: 1px solid #D0D5DD;
    border-radius: 0.5em;
    font-weight: 500;
    outline: none;
    width: 100%;
}
.videos_archive_sect .cards {
    display: flex;
    margin: -1.25em -0.625em;
    flex-wrap: wrap;
}
.videos_archive_sect .card {
    margin: 1.25em 0.625em;
    width: calc(100%/3 - 1.25em - 1px);
    box-sizing: border-box;
    background-color: #ffffff;
    color: #2F3132;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.videos_archive_sect .card_image {
    background-size: cover;
    background-position: center;
    position: relative;
}
.videos_archive_sect .card_image:before {
    content: '';
    display: block;
    padding: 28.17% 0;
}
.videos_archive_sect .card_image:after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../img/videos-sect/play.svg);
    background-position: center;
    background-size: contain;
    width: 6em;
    height: 6em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
}
.videos_archive_sect .card_info {
    padding: 1.25em;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.videos_archive_sect .card_under_title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.875em;
    color: #2F3132;
    /*margin: 0 0 1.25em;*/
    margin-bottom: 0.25em;
    line-height: 1.15;
}
.videos_archive_sect .card_title {
    margin: 0 0 0.5em;
    font-weight: 700;
    line-height: 1.5;
    flex-grow: 1;
}
.videos_archive_sect .card_title:last-child {
    margin-bottom: 0;
}
.videos_archive_sect .card_published_at {
    font-weight: 400;
    color: #9CA3AF;
    font-feature-settings: 'salt' on;
    font-size: 0.75em;
    line-height: 1.67;
    margin: 0 0 0.25em;
}
.videos_archive_sect .card_desc {
    font-size: 0.875em;
    line-height: 1.3;
    color: #475467;
}
@media(max-width: 1199px) {
    .videos_archive_sect .cats_and_sort {
        margin: 0 -0.625em 1.25em;
    }
    .videos_archive_sect .cats_wrap {
        margin: 0 0.625em;
        width: calc(65% - 1.25em);
    }
    .videos_archive_sect .sort_wrap {
        margin: 0 0.625em;
        width: calc(35% - 1.25em);
    }
    .videos_archive_sect .cards {
        margin: -0.625em;
    }
    .videos_archive_sect .card {
        margin: 0.625em;
        width: calc(100%/3 - 1.25em - 1px);
    }
}
@media(max-width: 767px) {
    .videos_archive_sect .cats_and_sort {
        margin: 0 0 1.25em;
        display: block;
    }
    .videos_archive_sect .cats_and_sort:last-child {
        margin-bottom: 0;
    }
    .videos_archive_sect .cats_wrap {
        width: 100%;
        margin: 0 0 1.25em;
    }
    .videos_archive_sect .cats_wrap:last-child {
        margin-bottom: 0;
    }
    .videos_archive_sect .sort_wrap {
        width: 100%;
        margin: 0;
    }
    .videos_archive_sect .card {
        width: calc(100% - 1.25em);
    }
}