.content-videos .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 48px;
}

.content-videos .videos-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    height: auto;
}

.content-videos .video-single {
    width: calc(50% - 20px);
    flex: 1 auto;
}

.content-videos iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 640 / 358;
    border: 0;
}

.content-videos .video-facade {
    position: relative;
    cursor: pointer;
    background: #000;
    width: 100%;
    aspect-ratio: 640 / 358;
    overflow: hidden;
}

.content-videos .video-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.content-videos .video-facade:hover img {
    opacity: 0.75;
}

.content-videos .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 68px;
    height: 48px;
}

.content-videos .video-play-btn svg {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5));
}

.content-videos .btn-wrapper {
    justify-content: center;
}

.content-videos .btn-normal-white svg {
    max-width: 23px;
}

.content-videos .btn-normal-white svg path {
    stroke: #fff;
}

@media (max-width:991px) {
    .content-videos .videos-wrapper {
        gap: 32px;
    }

    .content-videos .video-single {
        width: 100%;
    }
}