/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {}


/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {

    .hero-video {
        height: 100vh;
        width: 100vw;
    }

    .hero-area {
        background: #000;
    }

    .contact-area .container {
        max-width: 100%;
    }

    .footer-area {
        background: #231f20;
    }

    .footer-area .container {
        width: 100%;
        max-width: 100%;
    }

    .hero-area .container {
        max-width: 100%;
    }
}


/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 100%;
    }

    .hero-video {
        height: auto;
        margin-bottom: -15px;
    }

    .ftr-video-itm {
        margin-bottom: -15px;
    }

}


/* small mobile :320px. */
@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .container {
        max-width: 100%;
        width: 100%;
    }

    .hero-video {
        height: 100vh;
        width: 100%;
    }

    .menu-toggler img {
        width: 60px;
    }
}