/*
    Theme Name: Hello Elementor Child
    Template: hello-elementor
    Author: DATASOLUTION.jetpulp
    Version: 1.0
*/

.elementor-widget-container {
    font-weight: 400 !important;
}

strong, b {
    font-weight: 700 !important;
}

/* Video facade: background + spinner */
.elementor-background-video-container {
    background-color: #2971FF;
}

.video-facade-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: video-facade-spin 0.8s linear infinite;
    z-index: 1;
}

@keyframes video-facade-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    .e-con {
        --container-max-width: 100% !important;
        --content-width: calc(100% - 40px) !important;
        overflow: hidden;
    }
}
