.video-section .item {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    transform: scale(0.9);
    transition: .4s ease all;
    padding: 0 !important;
    margin: 0 !important;
}

.video-section .owl-item.center .item {
    opacity: 1;
    transform: scale(1);
}


@media(max-width:1000px) {
    .video-section .item {
        margin: 0;
        transform: scale(.9)
    }
}

iframe {
    width: 100%;
    border-radius: 12px;
}

.video-section .active .item {
    opacity: 1;
    transform: scale(1);
}

.video-section .owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.video-section video {
    max-width: 100%;
    height: auto;
}

#dots {
    display: flex;
    gap: 8px;
    justify-content: center;

}

#dots .owl-dot {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffc800;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

#dots .owl-dot.active {
    width: 25px;
    border-radius: 10px;
    background-color: #ff9900;
    opacity: 1;
    border: none;
}