/* Style The Dropdown Button */
@media (max-width: 1170px){
    .menu .desktop-only-indi{
        display: none !important;
    }
}
@media (min-width: 1171px){

    .menu .mobile-only-menu > *:not(.desktop-only-indi){
        display:none!important;
    }
}
.dropbtn {
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    
    position: absolute;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

/* Links inside the dropdown */
.dropdown-content a {
    text-decoration: none;
    display: block;
    text-align: left;
    line-height: 2.4em !important;
}

/* Change color of dropdown links on hover */

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    pointer-events: all;
    display: block;
    opacity: 1;
    
}
.dropdown-content{
    transition: ease 0.2s all;
    
    opacity:0;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {}