*{
    outline: none !important;
}
.contentNav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 10;
    padding:1rem 1rem;
    width: 100vw;
}
.contentNav img{
    margin-top: .5rem;
    width: 10rem;
}
#contactoItem{
    display: initial;
}
.contentContactoNav{
    display: none;
}
#idiomaItem{
    display: flex;
    align-items: center;
    justify-content: start;
}
/* MENU
========================================== */
.menu {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 21;
    right: 1%;
}
.menu span {
    position: relative;
    margin-top: 9px;
    margin-bottom: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -1.5px;
}
.menu span, .menu span::before, .menu span::after {
    display: block;
    width: 26px;
    right: 0;
    height: 3px;
    background-color: #eebb43;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.menu span::before, .menu span::after {
    position: absolute;
    content: "";
}
.menu span::before {
    top: -9px;
    width:20px
}
.menu span::after {
    top: 9px;
    width: 33px;
}
.menu.clicked span {
    background-color: transparent;
}
.menu.clicked span::before {
    -webkit-transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);    
    width: 33px;
}
.menu.clicked span::after {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}
.menu.clicked span:before, .menu.clicked span:after {   
    background-color: #ffffff;
}
.menu:hover {
    cursor: pointer;
} 
/*  NAV
========================================== */
#nav {
    background: #09204C;
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    height: 100%;
    max-width: 250px;
    width: 100%;
    padding: 100px 40px 60px 40px;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    overflow: hidden;
}
#nav.show {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}
#nav.show ul.main li {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}
.menu.clicked {
    position: fixed;
    z-index: 99;
}
#nav.show ul.main li:nth-child(1) {
    transition-delay: 0.15s;
}
#nav.show ul.main li:nth-child(2) {
    transition-delay: 0.3s;
}
#nav.show ul.main li:nth-child(3) {
    transition-delay: 0.45s;
}
#nav.show ul.main li:nth-child(4) {
    transition-delay: 0.6s;
}
#nav.show ul.main li:nth-child(5) {
    transition-delay: 0.75s;
}
#nav.show ul.main li:nth-child(6) {
    transition-delay: 0.9s;
}
#nav.show ul.main li:nth-child(7) {
    transition-delay: 1.05s;
}
#nav.show ul.main li:nth-child(8) {
    transition-delay: 1.2s;
}
#nav.show ul.main li:nth-child(9) {
    transition-delay: 1.35s;
}
#nav.show .about, #nav.show .social, #nav.show ul.sub {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: .85s;
}
#nav ul.main {
    list-style-type: none;
}
#nav ul.main li {
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    float: none;
    list-style: none;
    color: #fff
}
#nav ul.main li:last-of-type {
    margin-bottom: 0px;
}
#nav ul.main li a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    display: block;
    padding: 10px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#nav ul.main li a span {
    color: #55c9d2;
}
#nav ul.main li a:hover {
    color: #55c9d2;
}
#nav ul.sub {
    list-style-type: none;
    margin-top: 40px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
#nav ul.sub li {
    margin-bottom: 10px;
}
#nav ul.sub li:last-of-type {
    margin-bottom: 0px;
}
#nav ul.sub li a {
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#nav ul.sub li a:hover {
    color: #55c9d2;
}
/*  OVERLAY
========================================== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
}
.overlay.show {
    opacity: 0.8;
    visibility: visible;
}

/* whatsapp */
#imgWhatsapp{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 1.3rem;
    right: .5rem;
    z-index: 10;
}
#imgWhatsapp img{
    width: 3rem;
    margin: .2rem;
}
/* FOOTER */
footer{
    background-color: #040c17;
    padding: 3rem;
    color: #fff;
}
.txtTituloFooter{
    font-weight: bold;
    margin: 0px;
}
.contentTextFooter, .contentCiudades{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contentRedesFooter{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.iconRedes{
    font-size: 2rem;
    color: #fff;
}
.iconRedes:hover{
    color: #55c9d2;
}
/* Large devices (ipad, 768px and up) */
@media only screen and (min-width: 768px) {
    #nav {
        padding: 120px 30px 70px 20px;
    }

    .contentTextFooter, .contentCiudades{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: row;
    }
    .iconRedes{
        font-size: 3rem;
        color: #fff;
    }
}

/* Large devices (large laptops and desktops, 1024px and up) */
@media only screen and (min-width: 1024px) {
    .contentNav{
        padding: 1rem 10rem;
        width: 100vw;
    }
    .contentNav img{
        margin-top: 0rem;
        width: 14rem;
    }
    .menu {
        right: 4%;
    }
    #contactoItem{
        display: none;
    }
    #idiomaItem{
        display: none;
    }
    .contentContactoNav{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .contentContactoNav a{
        color: #fff;
        text-decoration: none;
    }
    .contentContactoNav a:hover{
        color: #eebb43;
    }
    .contentContactoNav img{
        margin: 0px 1rem;
    }
    #flechaContacto{
        width: 2rem;
    }
    .contentIdiomas{
        margin-left: 4rem;
    }
    .contentIdiomas a{
        font-size: 1rem;
        font-weight: lighter;
    }
    #txtContacto{
        font-size: 1.3rem;
        font-weight: bold;
    }
}

/* Large devices (large laptops and desktops, 1280px and up) */
@media only screen and (min-width: 1280px) {
    
}
/* Large devices (large laptops and desktops, 1366px and up) */
@media only screen and (min-width: 1366px) {
    
}

/* Large devices (large laptops and desktops, 1440px and up) */
@media only screen and (min-width: 1440px) {
    
}

/* Extra Large devices (large laptops and desktops, 1400px and up)*/
@media only screen and (min-width: 1920px) {
   
}

