/*Medium Layout: 1280*/
@media only screen and (min-width: 992px) and (max-width: 1200px) {}

/*Tablet Layout: 768px*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu ul li a {
        padding: 5px;
        font-size: 0.8rem;
    }

    footer h3 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    img[src="assets/images/payment-methods.png"] {
        height: 20px;
    }

    .gallery-images .single-image img {
        height: 250px;
    }
}

/*Mobile Layout: 320px*/
@media only screen and (max-width: 767px) {
    .mobile-header {
        display: block;
    }

    .section-padding {
        padding: 50px 0;
    }

    .hero-bg-wrapper {
        margin: 0;
    }

    section.sec-1 .row .col-md-6 {
        padding: 0;
    }

    section.sec-1 .row .col-md-6 .section-title {
        padding: 0 15px;
    }

    section.sec-1 .row .col-md-6 p {
        padding: 0 15px;
    }

    .sec-2-bg {
        height: 730px;
    }

    .btn-wrapper .theme-btn:first-child {
        margin-bottom: 10px;
    }

    .col-md-4.text-right {
        text-align: left !important;
        margin-top: 10px;
    }

    span.copy-right img {
        width: 100px;
    }

    footer h3 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .footer-widget {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-images .single-image img {
        height: 200px;
    }

    .sec-1 {
        text-align: center;
    }
}

/*Wide Mobile Layout: 480px*/

@media only screen and (min-width: 480px) and (max-width: 767px) {}