.section-custom_video {
    padding: 0;
}

.repeater-row_wrap{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    gap: 24px;
}
.repeater-row_item {
    width: calc((100% / 2) - 12px);
    border-radius: 8px;
    background-color: #F2F2F2;
    padding: 24px;
}

.repeater-row_item-img {
    margin-bottom: 16px;
    margin-right: auto;
    width: 100%;
}

.ar .repeater-row_item-img{
    margin-left: auto;
    margin-right: 0;
}

.repeater-row_item-title {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    line-height: 21px;
    margin-bottom: 4px;
    text-align: center;
}

@media (max-width: 1199px) {
    .repeater-row_wrap {
        /* flex-direction: column; */
        margin-top: 56px;
    }

}

@media (max-width: 640px) {
    .repeater-row_wrap {
        margin-top: 48px;
    }
    .repeater-row_item{
        width: 100%;
    }
}


.video-block {
    text-align: center;
}

.video-inner {
    position: relative;
    margin-top: 20px;
}

.video-back {
    margin: 20px auto auto auto;
    border: none;
    cursor: pointer;
}

#video-frame {
    width: 100%;
    max-width: 900px;
    height: 506px;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none; 
}

.overlay div {
    position: absolute;
    background: transparent; 
    pointer-events: auto; 
}
.overlay .top {
    top: 0;
    left: 0;
    width: 100%;
    height: calc(50% - 80px);
}
.overlay .bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(50% - 80px);
}
