/*----------MEDIA QUERY----------*/

/* iPad Portrait */
@media only screen and (min-device-width : 768px) and (max-device-width : 768px) and (orientation : portrait) {}

/* iPad Pro Portrait */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {}

/* iPad and iPad Pro Landscape */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    .content-bg {
        background-size: 80%;
    }
}

@media (max-width: 992px) {
    #bg-clients img {
        max-width: 80%;
    }
}

@media (max-width: 767px) {
    #bg-clients img {
        max-width: 95%;
    }

    .content-video h1 {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    #bg-clients img {
        max-width: 100%;
    }

    .content-video h1 {
        font-size: 50px;
    }

    .fs-5 {
        font-size: 16px !important;
    }

    .slider-video {
        height: 80vh !important;
    }
}

@media (max-width: 380px) {}

/*Mobiles landscape*/
@media only screen and (min-device-width: 375px) and (max-device-width: 830px) and (orientation: landscape) {}