
/* Header Menu */

.custom-mobile-nav-menu{
    display:none;
}

.custom-show-mobile-nav-menu{
    left:0 !important;
}

.custom-hide-nav-menu{
    left:100%;
}

/* Content */

.custom-mobile-banner{
    display: none;
}

/* Footer */

.footer-links h5{
    margin-bottom:10px !important;
}

.custom-footer-content-container{
    margin-bottom:20px !important;
}

@media screen and (max-width: 1200px){

    .custom-mobile-nav-menu{
        display:block;
        position:fixed;
        top:0;
        left:-100%;
        width:100%;
        height:100%;
        background-color:white;
        z-index: 3000;
        transition: all 0.3s ease-in-out;
    }
    
    .custom-mobile-nav-menu ul{
        padding:0;
    }
    .custom-mobile-nav-menu ul li{
        list-style:none;
        padding: 5px 50px; 
    }
    .custom-mobile-nav-menu ul li a{
        color: #222222;  
        font-weight:700;
        text-transform: uppercase;
        font-size: 1.3rem;
    }
    .custom-mobile-logo{
        display:flex;
        justify-content: space-between;
        padding: 30px;
    }
    .custom-mobile-logo img.custom-burger-menu__{
        height: 40px;
    }
    .custom-mobile-logo img.custom-logo-img__{
        width: 200px;
        object-fit:contain;
    }
}

@media screen and (max-width:450px){
    .custom-desktop-banner{
        display: none;
    }

    .custom-mobile-banner{
        display: block;
    }
    .logo-footer{
        display:none !important;
    }
}

