.about-videos {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px 30px 20px;
    box-sizing: border-box
}

.about-videos .videos__title {
    font-weight: 500;
    color: #333333;
    text-align: center;
    margin-bottom: 40px
}

.about-videos .videos__content {
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.about-videos .videos__list {
    width: 30%;
    max-width: 452px;
    display: flex;
    flex-direction: column
}

.about-videos .videos__list-item {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column
}

.about-videos .videos__list-img {
    position: relative;
    width: 100%;
    height: auto;
    cursor: pointer
}

.about-videos .videos__list-img img {
    width: 100%;
    height: auto;
    object-fit: cover
}

.about-videos .videos__list-icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%)
}

.about-videos .videos__list-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-videos .videos__list-item .video-play-icon {
    display: none;
}

.about-videos .videos__list-item.active .video-play-icon {
    display: none;
}

.about-videos .videos__list-name {
    width: 350px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
    background: #b6b6b6;
    border-radius: 5px;
    margin: 12px auto 0;
    cursor: pointer
}

.about-videos .videos__list-item.active .videos__list-name {
    background: #e0191e
}

.about-videos .videos__video {
    width: 68%;
    max-width: 1340px;
    height: auto
}

.about-videos .videos__video video {
    width: 100%;
    border-radius: 8px;
    border: 12px solid #040404;
    box-sizing: border-box
}

@media screen and (max-width:760px) {
    .about-videos .videos__content {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center
    }

    .about-videos .videos__list {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0px 10px;
        margin: 0 auto
    }

    .about-videos .videos__list-item {
        width: 100%
    }

    .about-videos .videos__list-name {
        width: 100%;
        height: auto;
        line-height: 30px;
        font-size: 16px;
        padding: 10px 0
    }

    .about-videos .videos__video {
        width: 100%;
        margin-bottom: 30px
    }
}

@media screen and (min-width:760px) and (max-width:1020px) {
    .about-videos .videos__content {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center
    }

    .about-videos .videos__list {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 0px 10px;
        margin: 0 auto
    }

    .about-videos .videos__list-item {
        width: calc(100% / 2 - 5px)
    }

    .about-videos .videos__list-name {
        width: 100%;
        height: auto;
        line-height: 30px;
        font-size: 16px;
        padding: 10px 0
    }

    .about-videos .videos__video {
        width: 100%;
        margin-bottom: 30px
    }
}

@media screen and (min-width:1020px) and (max-width:1350px) {
    .about-videos .videos__content {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center
    }

    .about-videos .videos__list {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 0px 10px;
        margin: 0 auto
    }

    .about-videos .videos__list-item {
        width: calc(100% / 3 - 5px)
    }

    .about-videos .videos__list-name {
        width: 100%;
        height: auto;
        line-height: 30px;
        font-size: 18px;
        padding: 10px 0
    }

    .about-videos .videos__video {
        width: 100%;
        margin-bottom: 30px
    }
}