.videos_sect {
    padding: 6.125em 0;
    background-color: #F5F5F5;
}
.videos_sect .sect_title {

}
.videos_sect .description {
    line-height: 1.5;
    color: #374151;
    margin: 0 0 2.5em;
    text-align: center;
}
.videos_sect .items {
    display: flex;
    flex-wrap: wrap;
    margin: -0.625em;
    justify-content: center;
}
.videos_sect .item {
    margin: 0.625em;
    background-color: #ffffff;
    border: 1px solid #D1D5DB;
    box-sizing: border-box;
    border-radius: 1.25em;
    background-position: center;
    background-size: cover;
    position: relative;
    width: calc(50% - 1.25em);
    color: inherit;
}
.videos_sect .item:before {
    content: '';
    display: block;
    padding: 27.12% 0;
}
.videos_sect .item.full_width {
    width: calc(100% - 1.25em);
}
.videos_sect .item.full_width:before {
    padding: 16.67% 0;
}
.videos_sect .item.full_width:first-child:last-child:before {
    padding: 18.04% 0;
}
.videos_sect .item_content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 100%;
    text-align: center;
}
.videos_sect .item_title {
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-size: 3.25em;
    line-height: 1.08;
    margin: 0 0 0.2em;
}
.videos_sect .item_desc {
    font-size: 1.125em;
    line-height: 1.56;
    margin: 0 0 1.1em;
}
.videos_sect .item_play {
    max-width: 8em;
    max-height: 8em;
    opacity: 0.75;
    transition-property: opacity;
    transition-duration: 0.3s;
    margin: 0 auto;
}
.videos_sect .item:hover .item_play {
    opacity: 1;
}
@media(max-width: 1199px) {
    .videos_sect {
        padding: 5em 0;
    }
    .videos_sect .item_title {
        font-size: 2em;
    }
    .videos_sect .item_desc {
        font-size: 0.875em;
    }
    .videos_sect .item_play {
        max-width: 4em;
        max-height: 4em;
    }
}
@media(max-width: 767px) {
    .videos_sect {
        padding: 3em 0;
    }
    .videos_sect .description {
        font-size: 0.875em;
    }
    .videos_sect .item {
        width: calc(100% - 1.25em);
    }
    .videos_sect .item:before,
    .videos_sect .item.full_width:before,
    .videos_sect .item.full_width:first-child:last-child:before {
        padding: 35% 0;
    }
    .videos_sect .item_title {
        font-size: 1.25em;
    }
    .videos_sect .item_desc {
        font-size: 0.75em;
    }
    .videos_sect .item_play {
        max-width: 3em;
        max-height: 3em;
    }
}