
/* Aquí inicia el header */

#page-container {
    position: relative;
    min-height: 100vh;
}

header {
    height: 67px;
    width: 100%;
    position: fixed;
    z-index: 102;
    background-color: white;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.07);
}

header.scrollDown {
    background-color: white;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.07);
}

.headerContent {
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
    height: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

@media (max-width: 999px) {
    .headerContent {
        display: none;
    }
}

/* Aquí inicia el logo del header */

.headerContent_Logo {
    margin-top: -5px;
    margin-right: 20px;
}

/* Aquí inicia el menu del header */

.headerContent_Navegation {
    margin-right: 20px;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
}

.menu1-nav {
    display: inline-block;
    min-width: 500px;
}

/* Este es el estilo del submenu  */

.menu1-nav ul ul {
    display: none;
    position: absolute;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 40px;
    top: 50px;
    z-index: 99999;
    /* max-width: 250px; */
    background: #fff;
    box-shadow: 0px 2px 16px rgb(0 0 0 / 20%);
    border-radius: 6px;
}

.menu1-nav ul li:hover > ul {
    display: block;
}

ul {
    list-style: none;
}

/* Para que los divs queden uno debejo del otro */

.menu1-nav ul ul li {
    display: block;
    padding: 10px;
}

.menu1-nav ul li {
    display: inline-block;
    padding: 10px;
}

li a {
    text-decoration: none;
    color: #455560;
}

li a:hover,
li a:active {
    color: #FF7333;
}

/* Aquí inicia el call to action del header */

.headerContent_Cta {
    position: absolute;
    right: 0px;
    height: 100%;
    min-width: 300px;
}

.cta-nav {
    text-align: right;
    width: 100%;
}

.cta-nav__items {
    list-style: none;
}

.cta-nav__item {
    display: inline-block;
    padding-top: 13px;
    padding-left: 10px;
    padding-right: 0px;
}

.cta-iniciarSesion {
    text-decoration: none;
    color: #455560;
    font-weight: bold;
}

.cta-iniciarSesion:hover,
.cta-iniciarSesion:active {
    color: #FF7333;
    font-weight: bold;
}

/* Menu version movil */

@media (min-width: 1000px){
    .mobile-header {
        display: none;
    }
}

@media (max-width: 1001px){
    .mobile-header {
        /* position: fixed; */
        z-index: 101;
        top: 0;
        left: 0;
        width: 100%;
        height: 67px;
    }
}

.Logo {
    padding: 10px;
}

.mobile-nav {
    display: none;
    position: fixed;
    z-index: 11;
    background-color: white;
    width: 100%;
    height: 100%;
    /* padding-top: 67px; */
}

.mobile-nav ul {
    list-style: none;
    padding: 0px;
    text-align: center;
}



.mobile-nav ul > li{
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #D9D9D9;
}

.mobile-nav .sub-menu{
    /* display: none; */
    margin-top: 20px;
    margin-bottom: -20px;
    background-color: #F8F8F8;
}

.mobile-nav .sub-menu li{
    border: 0px;
}


.mobile-nav ul li:active > ul {
    display: block;
}

.mobile-nav_item a {
    text-decoration: none;
    color: #455560;
}

.mobile-nav_item a:hover,
.mobile-nav_item a:active {
    /* color: #FF7333; */
    /* border-style: solid; */
    color: #FF7333;
}

.mobile-nav_itemsCTA {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    list-style: none;
    padding: 0px;
    text-align: center;
}

.mobile-nav_itemCTA {
    padding: 20px;
    display: block;
}

.cta-nav__itemCTA-main {
    background-color: #FF7333; 
    display: block;
    padding: 20px;
}

.cta-nav__itemCTA-main a {
    text-decoration: none;
    color: white;
}

.cta-nav__itemCTA-main a:hover,
.cta-nav__itemCTA-main a:active {
    /* color: #FF7333; */
    /* border-style: solid; */
    color: white;
    font-weight: bold;
}

.cta-nav__itemCTA-secondary {
    border: 1px solid #FF7333;
    background-color: white;
    text-decoration: none;
    display: block;
    padding: 20px;
}

.cta-nav__itemCTA-secondary a {
    text-decoration: none;
    color: #FF7333; 
}

.cta-nav__itemCTA-secondary a:hover,
.cta-nav__itemCTA-secondary a:active {
    /* color: #FF7333; */
    /* border-style: solid; */
    color: #FF7333;
    font-weight: bold;
}

/* Hamburguer Menu */

.hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 300;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

  .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }
