/*Video*/
.video-home {
    max-height: 380px;
}

@media (max-width: 768px) {
    .video-home {
        height: 360px;
    }
}

.video-home iframe {
    max-height: 380px;
    width: 100%;
}

@media (max-width: 768px) {
    .video-home iframe {
        height: 360px !important;
    }
}

.video-home .elementor-custom-embed-image-overlay {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/wp-content/uploads/bg-video-section.webp") !important;
    background-position: bottom !important;
    background-size: cover;
}

.video-home .elementor-custom-embed-play {
    position: relative;
    border-radius: 50%;
    width: 90px !important;
    height: 90px;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-home .elementor-custom-embed-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(rgba(255, 255, 255, 0.57), white 100%);
    animation: pulse-degrade 2s infinite !important;
    z-index: -1;
}

@keyframes pulse-degrade {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}