/*
|---------------------------------------------------------
| Responsive When < 1024PX                               
|---------------------------------------------------------
|
*/

@media only screen and (max-width: 1024px) {

    /*
    |---------------------------------------------------------
    | Main Header                                      1024PX
    |---------------------------------------------------------
    |
    */

    .home-header-bg {
        height: auto;
    }

    .hamburger-label {
        display: block;
        visibility: visible;
    }
    
    .hamburger-icon {
        width: 40px;
        cursor: pointer;
        z-index: 9999;
    }
    
    .hamburger-icon:before, 
    .hamburger-icon div, 
    .hamburger-icon:after {
        background-color: #fff;
        border-radius: 3px;
        content: '';
        display: block;
        height: 5px;
        margin: 7px 0;
        transition: transform .3s ease-in-out;
    }
    
    .hamburger:checked + .hamburger-label > .hamburger-icon:before {
        transform: translateY(12px) rotate(135deg);
    }
        
    .hamburger:checked + .hamburger-label > .hamburger-icon div {
        transform: scale(0);
    }
        
    .hamburger:checked + .hamburger-label > .hamburger-icon:after {
        transform: translateY(-12px) rotate(-135deg);
    }
    
    .main-nav {
        display: none;
        visibility: hidden;
    }
    
    .main-nav ul {
        display: block;
        width: 100%;
        padding: 0;
        margin: 28px 0 0 0;
        font-size: 18px;
        text-align: center;
        list-style: none;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    
    .hamburger:checked ~ .main-nav {
        display: block;
        visibility: visible;
    }
    
    .main-nav ul li {
        margin: 0;
        padding: 20px 40px;
        background-color: rgba(0, 0, 0, 0.95);
    }

    .main-nav ul li:first-child {
        padding-top: 40px;
    }

    .main-nav ul li:last-child {
        padding-bottom: 40px;
    }

    .header-bottom {
        flex-wrap: wrap;
        gap: 5%;
        margin-top: 60px;
    }

    .header-contact-div {
        gap: 20px;
        height: 60px;
        padding-right: 5%;
        border-right: none;
        
    }

    /*
    |---------------------------------------------------------
    | Home About                                       1024PX
    |---------------------------------------------------------
    |
    */

    .about-us-img-2 {
        top: 20%;
        left: 20%;
    }

    .about-us-img {
        width: 70%;
    }

    /*
    |---------------------------------------------------------
    | Page Styles                                      1024PX
    |---------------------------------------------------------
    |
    */

    .section-about-main-content {
        flex-direction: column;
        gap: 10%;
        margin-top: 0px;
    }

    .page-about-content-txt {
        width: 100%;
    }

    .page-about-content-img {
        display: none;
    }

    /*
    |---------------------------------------------------------
    | Contact Page                                     1024PX
    |---------------------------------------------------------
    |
    */

    .contact-page-info-div {
        grid-template-columns: repeat(2, 1fr);
    }

}

/*
|---------------------------------------------------------
| Responsive When < 768PX                         
|---------------------------------------------------------
|
*/

@media only screen and (max-width: 768px) {

    /*
    |---------------------------------------------------------
    | Global Styles                                     768PX
    |---------------------------------------------------------
    |
    */

    .margin-top-120 { margin-top: 100px; }

    /*
    |---------------------------------------------------------
    | Main Header                                       768PX
    |---------------------------------------------------------
    |
    */

    .home-header-bg {
        padding-bottom: 100px;
    }

    .header-middle {
        margin-top: 40px;
    }

    .header-h1 {
        font-size: 40px;
    }

    /*
    |---------------------------------------------------------
    | Home About                                        768PX
    |---------------------------------------------------------
    |
    */

    .section-about-us {
        grid-template-columns: repeat(1, 1fr); 
    }

    .about-us-img-div {
        min-height: auto;
    }

    .about-us-img-2 {
        top: unset;
        left: unset;
        float: right;
        position: relative;
    }

    .about-us-img {
        width: 48%;
    }

    /*
    |---------------------------------------------------------
    | Home Catalogue                                    768PX
    |---------------------------------------------------------
    |
    */

    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr); 
    }

    /*
    |---------------------------------------------------------
    | Home Blog                                         768PX
    |---------------------------------------------------------
    |
    */

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /*
    |---------------------------------------------------------
    | Home Gallery                                      768PX
    |---------------------------------------------------------
    |
    */

    .gallery-grid {
        columns: 2;
        column-gap: 30px; 
    }

    /*
    |---------------------------------------------------------
    | Footer Styles                                     768PX
    |---------------------------------------------------------
    |
    */

    .footer-content {
        display: flex;
        gap: 5%;
        justify-content: start;
    }

    .footer-col {
        width: fit-content;
    }

    .footer-col-1, .footer-col-2 {
        margin-bottom: 20px;
    }

}


/*
|---------------------------------------------------------
| Responsive When < 568PX                         
|---------------------------------------------------------
|
*/

@media only screen and (max-width: 568px) {

    /*
    |---------------------------------------------------------
    | Main Header                                       568PX
    |---------------------------------------------------------
    |
    */

    .header-top {
        margin-top: 10px;
        min-height: 0;
        padding: 20px 10px;
    }

    .header-logo-img {
        max-width: 80px;
    }

    .wpm-switcher-list li a {
        font-size: 12px;
        padding: 8px 16px;
    }

    .header-btn-div {
        align-items: start;
        flex-direction: column;
    }

    .header-link {
        margin-left: 0;
        margin-top: 20px;
    }

    /*
    |---------------------------------------------------------
    | Home Catalogue                                    568PX
    |---------------------------------------------------------
    |
    */

    .section-catalogue {
        max-width: 360px;
    }

    .catalogue-grid {
        grid-template-columns: repeat(1, 1fr); 
    }

    /*
    |---------------------------------------------------------
    | Home Blog                                         568PX
    |---------------------------------------------------------
    |
    */

    .section-blog { 
        max-width: 360px;
    }

    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    /*
    |---------------------------------------------------------
    | Contact Page                                      568PX
    |---------------------------------------------------------
    |
    */

    .contact-page-info-div {
        grid-template-columns: repeat(1, 1fr);
    }

    /*
    |---------------------------------------------------------
    | Product Single                                    568PX
    |---------------------------------------------------------
    |
    */ 

    .single-product-section {
        grid-template-columns: repeat(1, 1fr);
    }

    .single-product-img-div, .single-product-content-div {
        max-width: 360px;
        width: 100%;
        margin: 0 auto;
    }

}

@media only screen and (max-width: 420px) { 

    /*
    |---------------------------------------------------------
    | Home Gallery                                      420PX
    |---------------------------------------------------------
    |
    */

    .gallery-grid {
        columns: 1;
    }

    .gallery-item-a {
        margin-top: 10px;
    }

    /*
    |---------------------------------------------------------
    | Blog Single                                       420PX
    |---------------------------------------------------------
    |
    */ 

    .single-post-container {
        padding: 0 10px;
    }

}