.videos-section {
    width: 100%;
    background: #ffffff
}

.videos-section .videos {
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.videos-section .videos .videos__content {
    width: 100%;
    height: 100%;
}

.videos-section .videos .videos__list {
    width: 30%;
    max-width: 452px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 20px;
    gap: 15px;
    z-index: 1;
}

.videos-section .videos .videos__list-item {
    height: 55px;
    padding: 0 20px;
    box-sizing: border-box;
    background: rgba(78, 74, 217, 0.3);
    border-radius: 10px;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 55px;
    cursor: pointer;
}

.videos-section .videos .videos__list-item.active {
    background: #4E4AD9;
}

.videos-section .videos .videos__video {
    width: 100%;
    height: 100%;
    position: relative;
}

.videos-section .videos .videos__video video {
    width: 100%;
    box-sizing: border-box
}

.videos-section .videos .videos-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
}

.videos-section .videos .videos-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media screen and (max-width:760px) {}

@media screen and (min-width:760px) and (max-width:1020px) {}

@media screen and (min-width:1020px) and (max-width:1350px) {}