@import url(base.css);
.menuMobile{
    display: none;
}
.auxNav{
    position: sticky;
    top: 0px;
    z-index: 10;
}
.menuDesk{
    background-color: var(--azulMedio);
    width: 100%;
    height: 100px;
}
.menuDesk nav{
    max-width: 1200px;
    margin: auto;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
}
.menuDesk nav ul li a{
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    border-bottom: 5px transparent solid;
    padding: 0px 30px;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}
.menuDesk nav a p{
    transition: all 0.3s;
}
.menuDesk nav a:hover{
    border-color: var(--azulClaro);
}
.menuDesk nav a:hover p{
    color: var(--azulClaro);
}
.menuDesk nav a img{
    width: 65px;
    height: 65px;
}
.menuDesk nav ul{
    list-style: none;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
}
.activo{
    color: var(--azulClaro);
}
.activo2{
    border-bottom: 5px var(--azulClaro) solid !important;
}
@media only screen and (min-width: 0px) and (max-width: 1200px) {
    .menuDesk{
        display: none;
    }
    .menuMobile{
        padding: 0px 20px;
        display: block;
        background-color: var(--azulMedio);
        width: 100%;
        height: 80px;
        position: relative;
        z-index: 9;
    }
    .menuMobile nav{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        align-content: center;
    }
    .menuMobile nav i{
        font-size: 20px;
        cursor: pointer;
    }
    .menuMobile nav a{
        width: 55px;
        height: 55px;
    }
    .menuMobile nav a img{
        width: 100%;
        height: 100%;
    }
    .menuMobile nav ul{
        z-index: 9;
        position: absolute;
        top: 100%;
        left: -100%;
        background-color: var(--azulMedio);
        list-style: none;
        width: 100%;
        padding: 20px;        
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        align-content: stretch;
        gap: 5px;
        transition: all 0.5s ease;
        border-top: 3px white solid;
    }
    .menuMobile nav ul li{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        align-content: center;
    }
    .menuMobile nav ul li a{
        display: inline-block;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        text-decoration: none;
        width: 100%;
        height: 40px;
        border-bottom: 5px var(--azulMedio) solid;
    }
    .menuMobile nav ul li a p{
        width: 100%;
        text-align: center;
    }
    .activo{
        color: var(--azulClaro);
    }
    .activo2{
        border-bottom: 5px var(--azulClaro) solid !important;
    }
    .show{
        left: 0% !important;
    }
}