.videos {
    background: #fff;
}

.videos .wrap {
    width: 1600px;
    margin: 120px auto 131px;
}

.videos .wrap .title {
    text-align: center;
}

.videos .wrap .title span {
    font-size: 54px;
    font-family: Roboto b;
    font-weight: 500;
    color: #0D0D0D;
    text-align: center;
    margin: 0 0 56px 0;
}

.videos .wrap .content .item .images .play {
    width: 62px;
    height: 62px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: 1s;
}

.videos .wrap .content .item .images .play div {
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 20px solid #79A24F;
    transition: 1s;
}
.videos .wrap .content .item video{
    display:none;
}

.videos .wrap .content .item .images .play:hover {
    background: #79A24F;
}

.videos .wrap .content .item .images .play:hover div {
    border-left: 20px solid #fff;
}
.videos .wrap .title .cut {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 56px auto 0;
}

.videos .wrap .title .cut a {
    padding: 0 17px;
    height: 30px;
    border: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 400;
    color: #505050;
    transition: 0.6s;
}

.videos .wrap .title .cut a:not(:last-child) {
    margin: 0 4px 0 0;
}

.videos .wrap .title .cut a.on, .videos .wrap .title .cut a:hover {
    background: rgba(81, 125, 108, 1);
    color: #fff;
}

.videos .wrap .content {
    margin: 54px 0 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 58px 19px;
}

.videos .wrap .content .item {
    width: 385px;
    display: block;
}

.videos .wrap .content .item .images {
    width: 100%;
    height: 258px;
    overflow: hidden;
    position: relative;
}

.videos .wrap .content .item .images img {
    width: 100%;
    height: 100%;
    transition: 2s;
}

.videos .wrap .content .item .text {
    text-align: center;
    margin: 24px auto 0;
}

.videos .wrap .content .item .text p {
    font-size: 14px;
    font-family: Roboto;
    font-weight: 400;
    color: #505050;
    line-height: 20px;
}

.videos .wrap .content .item:hover .images img {
    transform: scale(1.1);
}
@media screen and (max-width: 1900px) {
    .videos .wrap{
        max-width: 90%;
    }
    .videos .wrap .content .item{
        width: 100%;
    }
    .videos .wrap .content .item .images{
        height: auto;
    }
}
@media screen and (max-width: 1023px) {
    .videos .wrap{
        max-width: 90%;
        margin: 38px auto 10px;
    }
    .videos .wrap .title span{
        font-size: 28px;
    }
    .videos .wrap .title .cut{
        flex-wrap: wrap;
        margin: 25px auto 0;
    }
    .videos .wrap .title .cut a{
        margin: 0 4px 6px 0!important;
    }
    .videos .wrap .title .cut a:last-child{
        margin: 0 0 6px 0!important;
    }
    .videos .wrap .content {
        margin: 28px 0 0 0;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px 0;
    }
    .videos .wrap .content .item{
        width: 100%;
    }
    .videos .wrap .content .item .images{
        height: auto;
    }
    .videos .wrap .content .item .text {
        margin: 16px auto 0;
    }
}