/* Medium Device */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .container {
        width: 970px;
    }
    .banner-slide {
        width: 35%;
    }
}

/* Tablet Device */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .container {
        width: 750px;
    }
    .banner-content h2 {
        font-size: 26px;
    }
    .banner-content h4 {
        font-size: 16px;
    }
    .banner-content input[type="text"], .banner-content input[type="submit"] {
        padding: 15px;
    }
    .banner-slide {
        width: 35%;
    }
    .single-logo {
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
    }
}

/* Mobile Device */
@media only screen and (max-width: 767px) {
    .container {
        width: 320px;
    }
    .mobile-menu {
        display: block;
        color: #fff;
        cursor: pointer;
    }
    .mobile-menu.close i:before {
        content: '\f00d';
    }
    .menu ul {
        position: absolute;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
        left: 0;
        top: -1000px;
        padding: 15px 25px;
        background-color: var(--primary-color);
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }
    .menu ul.open {
        top: 75px;
    }
    .menu ul li:not(:last-child) {
        margin-bottom: 5px;
        padding-bottom: 5px;
    }
    .banner-area {
        padding: 120px 0 80px;
    }
    .banner-content {
        width: 100%;
        text-align: center;
    }
    .banner-slide {
        display: none;
    }
    .banner-content h2 {
        font-size: 22px;
    }
    .banner-content h4 {
        font-size: 16px;
        margin: 20px 0;
    }
    .banner-content input[type="text"] {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    }
    .banner-content input[type="submit"] {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-top: 10px;
    }
    .single-logo {
        -ms-flex-preferred-size: 47%;
            flex-basis: 47%;
    }
    .header-ads {
        display: none;
    }
}

/* Wide Mobile Device */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        width: 450px;
    }
}