@media only screen and (max-width: 1200px) {

    header {
        .bottom-header {
            .primary-menu {
                gap: 10px;
                nav {
                    ul a {
                        font-size: 18px;
                    }
                }
            }
        }
        .primary-btn {
            a {
                padding: 10px 10px;
            }
        }
    }

    .hero-section {
        .item {
            padding: 200px 0px 200px;

            .banner-content {
                .banner-title {
                    font-size: 50px;
                }
            }
        }
    }

    .services {
        .service-heading {
            width: 70%;
        }
    }

}

@media only screen and (max-width: 992px) {

    header {

        .logo {
            width: 50%
        }
        .bottom-header {
            & .logo {
                img {
                    width: 180px;
                }
            }
        }

        .primary-menu {
            display: block;
            flex-direction: column;
            padding: 150px 20px;
            position: fixed;
            background: #5c715e;
            width: 100%;
            max-width: 300px;
            right: -100%;
            top: 0;
            transition: all .4s ease-in;
            z-index: 1;
            height: 100vh;
            transition: .5s;

            ul {
                flex-direction: column;
                gap: 5px
            }

            nav {
                text-align: center;

                a {
                    display: block;
                    padding: 10px 0;
                    font-size: 18px
                }

                ul a {
                    color: #000
                }
            }
        }

        .primary-menu.active {
            right: 0%;
            z-index: 8;
            text-align: center
        }

        .menu-icon {
            display: block;
            border: none;
            background: #fff0;
            width: 40px;
            z-index: 9;
            font-size: 32px
        }

        .fa-bars {
            color: #ffffff
        }

        .primary-btn {
            text-align: center;
            margin-top: 20px
        }

        .social-icon {
            margin-top: 30px;

            ul {
                display: flex;
                flex-direction: row;
                justify-content: center;
                font-size: 22px;
                gap: 20px
            }

            li a {
                color: #fff
            }
        }
    }

    .hotel-features{
        h5{
            font-size: 20px;
            text-align: center;
        }
    }
    .hero-section {
        .item {
             .banner-content {
                .banner-title {
                    font-size: 42px;
                }
            }
        }
    }

    .about-us {
        .main-about {
            flex-direction: column;
        }
        .about-img{
            display: none;
        }
        .about-content{
            width: 100%;
        }
    }

    .services {
        .service-heading {
            width: 90%;
        }
    }

    footer {
        .top-footer {
            .main-top-footer {
                flex-wrap: wrap;
            }
            .col {
                width: 47%;
                flex: none;
            }
        }

    }

    /* ======= blog === */
    
    #blog-page {
        .blogs {
            flex-direction: column
        }

        .blog-side-bar {
            width: 100%
        }

        .blog-grid {
            width: 100%
        }
    }

    #blog-detail-page {
        .main-detail-page {
            flex-direction: column
        }

        .blog-side-bar {
            width: 100%
        }

        .single-blog-content {
            width: 100%
        }
    }

    #contact-page {
        .main-contact {
            flex-direction: column;
        }
        .contact-details {
            width: 100%;
        }
        .contact-form {
            width: 100%;
        }
    }

    #career-page {
        .career-img {
            display: none;
        }
        .career-form {
            width: 100%;
        }
    }

    .services-page {
        .main-service-section {
            flex-direction: column;
        }
        .service-side-content{
            width: 100%;
        }
        .service-side {
            width: 50%;
        }
    }
}

@media only screen and (max-width: 600px) {
    header {
         .top-header {
            .top-social {
                display: none;
            }
        }
    }
    .hero-section {
        .item {
            padding: 120px 0px;
         .banner-content {
                .banner-title {
                    font-size: 32px;
                }
            }
        }
    }
    .hotel-features{
        .main-hotel-features{
            .item{
                width: 50%;
            }
            .last{
                display: none;
            }
        }

    }

    footer {
        .top-footer {
            .col {
                width: 100%;
                flex: none;
            }
        }
    }

    #blog-page {
        .blog-grid {
            grid-template-columns: repeat(auto-fill, minmax(100%, 1fr))
        }
    }

    .inner-banner{
        padding: 60px;
    }

}

@media only screen and (max-width: 450px) {
    h1 {
        font-family: jost;
        font-size: 28px;
    }
    .section-padding {
        padding: 30px 0px;
    }
    h2, h3 {
        font-family: jost;
        font-size: 28px;
    }
    h5 {
        font-family: jost;
        font-size: 20px;
    }
    header {
        .top-header {
            .top-call{
                padding: 0px;
            }
            .top-details {
                align-items: self-start;
                flex-direction: column;
                gap: 8px;
            }
            .top-address{
                border: none;
            }
        }
    }
    .hero-section {
        .item {
            padding: 100px 0px;
        }
    }
    .services {
        .service-heading {
            width: 100%;
            p{
                display: none;
            }
        }
    }
    .hotel-features{
        padding: 20px 0px;
    }
    footer {
        .main-bottom-footer {
            text-align: center;
            font-size: 12px;
        }
    }

    form {
        padding: 20px 15px;
        .group-box {
            flex-direction: column;
            .box{
                width: 100%;
            }
        }
    }

    .services-page {
        .service-side {
            width: 100%;
        }
        .box-title{
            padding: 10px;
        }
        .service-box a{
            padding: 10px;
        }
    }

}