
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Roboto:wght@300;400;500');
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css");

@import "normalize.css";
@import "webflow.css";
@import "dicosola_live.webflow.css?v=9";

#video-logo {
    z-index: 999;
}


@media (max-width: 991px) {

    .home-video-wrapper {
        height: 100vh;
    }

}

@media (max-width: 991px) { 

    .home-video-wrapper .cms-video {
        display: block !important;
    }

    .home-video-wrapper .cms-video,
    .video-banner .cms-video {
        --videoRatio: calc(16 / 9);
        background-color: white;
        padding: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: absolute;
    }

    .video-banner .cms-video {
        z-index: -1;
    }

    .home-video-wrapper .cms-video iframe,
    .video-banner .cms-video iframe {
        padding: 0;
        margin: 0;
        position: relative;
        --w: 100vw;
        --h: calc(var(--w) / var(--videoRatio));
        height: var(--h);
        width: var(--w);
        top: calc(50% - (var(--h) / 2));
        left: 0;
        width: var(--w);
        height: var(--h);
    }

    @media (max-aspect-ratio: 16/9) {
        .home-video-wrapper .cms-video iframe,
        .video-banner .cms-video iframe {
            --h: 100vh;
            --w: calc(var(--h) * var(--videoRatio));
            top: 0;
            left: calc(50% - (var(--w) / 2));
        }
    }

}