@media only screen and (max-width: 1200px){
h1{
    font-size: 30px;
}
h2{
    font-size: 36px;
}
}

@media only screen and (max-width: 992px){
    header {

        .primary-menu {
            display: block;
            flex-direction: column;
            padding: 150px 20px;
            position: fixed;
            background: #000000;
            width: 100%;
            max-width: 300px;
            right: -100%;
            top: 0;
            transition: all .4s ease-in;
            z-index: 1;
            height: 100vh;
            transition: .5s;
            border: none;

            ul {
                flex-direction: column;
                gap: 5px
            }

            nav {
                text-align: center;

                a {
                    display: block;
                    padding: 10px 0;
                    font-size: 18px
                }

                ul a {
                    color: #ffffff
                }
            }
        }

        .primary-menu.active {
            right: 0%;
            z-index: 8;
            text-align: center
        }

        .menu-icon {
            display: flex;
            justify-content: end;
            border: none;
            background: #fff0;
            width: 100%;
            position: relative;
            z-index: 9;
            font-size: 32px;
        }

        .fa-bars, .fa-xmark {
            color: #ffffff
        }

    }
    .sticky {
        box-shadow: 0 2px 20px 0 #d1d1d199;
        position: fixed !important;
        top: 0;
        width: 100%;
        padding: 0;
        z-index: 999;
        transition: all .2s linear;
        background-color: #111111 !important
    }
    .hero-section{
        img{
            width: 100%;
        }
        .main-hero-section {
            top: 50%;
        }
    }
    .about-us {
        position: static;
        background-position: left;
        .main-about{
            flex-direction: column;
        }
        .about-content{
            width: 100%;
        }
    }
    .facebook {
        position: static;
        .main-facebook {
            flex-direction: column-reverse;
        }
        .facebook-content{
            width: 100%;
        }
    }

    .insta {
        position: static;
        .main-insta {
            flex-direction: column;
        }
        .insta-content{
            width: 100%;
        }
    }

    .gallery{
        position: static;

    }
}

@media only screen and (max-width: 768px){
    header {
        .top-details {
            .item {
                font-size: 14px;
            }
        }
    }
    .about-us{
        .about-img{
            display: none;
        }
    }
    footer {
         .top-footer {
             .main-top-footer {
                .item {
                    font-size: 18px;
                }
            }
        }
    }
}
@media only screen and (max-width: 600px){
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 32px;
    }
    .section-padding {
        padding: 50px 0px;
    }
    header {
         .logo {
            img {
                width: 85px;
            }
        }
    }
    .hero-section{
        height: auto;
        .desktop{
            display: none;
        }
        .phone{
            display: block;
        }
    }
    header {
        .top-details {
            display: none;
        }
    }
    .about-us {
        .about-img {
            width: 100%;
        }
    }
    .facebook {
        .facebook-img {
            width: 100%;
        }
    }
    .insta {
        .insta-img {
            width: 100%;
        }
    }
    footer {
         .top-footer {
             .main-top-footer {
                display: flex;
            justify-content: center;
            flex-direction: column;
                .item {
                    font-size: 16px;
                    padding: 0px;
                    border: none;
                }
            }
        }
    }
    .marquee__group p {
        font-size: 28px;
    }
}

@media only screen and (max-width: 450px){
    p{
        font-size: 14px;
    }
    h1 {
        font-size: 21px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 24px;
    }
    footer {
        .bottom-footer {
            background: #000;
            text-align: center;
            padding: 15px 0px;
            color: #fff;
            font-size: 10px;
        }
    }
}