/* ----- THIS IS THE DESKTOP ------ */


    /* Navbar */
    /*#########*/

    .navbar {
        display: none;
    }
    .nav-btn {
        display: none;
    }
    .navDesktop {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        background-color: white;
    }
    .navLogo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 80px;
    }
    .navLogo p {
        margin: 15px 0;
    }
    .containerLinks {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: row;
        flex-wrap: nowrap;
        margin: 15px 0;
    }

    .navLinks {
        display: flex;
        align-items: center;
        justify-content: right;
        flex-direction: row;
        flex-wrap: nowrap;
        margin: 0 30px;
        padding: 20px;
        position: relative;
    }
    .navLinks a {
        margin: 0 20px;
        text-transform: uppercase;
        color: #1a1a1a;
        position: relative;
        font-size: 14px;
    }
    .navLinks a:after {    
        background: none repeat scroll 0 0 transparent;
        bottom: 0;
        content: "";
        display: block;
        height: 2px;
        position: absolute;
        background: #1a1a1a;
        transition: width 0.4s ease-in-out;
        width: 0;
        top: 110%
    }
    .navLinks a:hover:after { 
        width: 100%;  
    }
  
 /* ----- THIS IS THE MOBILE ------ */

 @media screen and (max-width: 991px) {
    /*#########*/
    /* Navbar */
    /*#########*/
    .navDesktop {
        display: none;
    }
    .navbar {
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        overflow-x: hidden;
        overflow-y: hidden;
    }
    .nav-center {
        width: 90vw;
    }
    .nav-header {
        height: 130px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-header img {
        width: 100px;
    }
    .nav-header .italang a {
        color: #1a1a1a
    }
    .nav-header .italang img {
        width: 30px !important;
    }
    .nav-btn {
        display: flex;
        flex-direction: column;
        padding: 0;
        background-color: white;
        border: none;
        cursor: pointer;
    }

    .nav-bar1 {
        width: 30px;
        height: 4px;
        margin: 2px;
        background-color: #1a1a1a;
        transition: transform 0.3s ease;
    }
    .nav-bar3 {
        width: 30px;
        height: 4px;
        margin: 2px;
        background-color: #1a1a1a;
        transition: transform 0.3s ease;
    }
    .nav-bar2 {
        width: 20px;
        height: 4px;
        margin: 2px;
        background-color: #1a1a1a;
        transition: opacity 0.3s ease;
        opacity: 1;
    }
    .nav-links {
        height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        /* transition: 0.3s ease-in-out all; */
    }
    .nav-bar4 {
        width: 30px;
        height: 4px;
        margin: 2px;
        background-color: #1a1a1a;
        transform: rotate(-45deg) translate(-5px, 6px);
        transition: transform 0.3s ease;
    }
    .nav-bar5 {
        width: 30px;
        height: 4px;
        margin: 2px;
        background-color: #1a1a1a;
        transform: rotate(45deg) translate(-5px, -6px);
        transition: transform 0.3s ease;
    }
    .nav-bar6 {
        width: 30px;
        height: 4px;
        margin: 2px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .navLinksEmpty {
        opacity: 0;
        height: 0;
        overflow: hidden;
    }

    .show-links {
        height: 80vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }
    
    .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        font-size: 16px;
        text-transform: uppercase;
        color: #1a1a1a;
        letter-spacing: 1px;
        border: 1px solid #0c0c0c;
        padding: 10px;
        background-color: white;
    }
    .nav-link img {
        filter: invert(1);
        max-width: 20px;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: .4;
    }
    .active-link {
        background-color: rgb(205, 205, 205);
    }
    .hideToggle {
        display: none;
    }
    .containerLinks.footer {
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        margin: 15px 0;
    }
    .navLinks.footer {
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        margin: 0 10px;
        padding: 20px;
    }
    .navLinks.footer a {
        margin: 10px;
    }
    .lastButton.footer {
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        margin: 20px;
    }

    .languageDropdown.mobile-lang {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 25px 30px 25px;
    }
}