
.main{
    position: relative;
    font-family: var(--tipo-principal);
    /* top: 80px; */
    width: 100%;
    /* z-index: 0; */
}

/* ----------------------------------------------------------- */

/* Header styles START*/

.header {
    position: fixed;
    width: 100vw;
    padding: 1.3rem 2.8rem;
    -webkit-box-shadow: 0px 3px 6px #00000057;
            box-shadow: 0px 3px 6px #00000057;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--eein-oscuro);
    color: var(--eein-white);
    font-family: var(--tipo-secundaria);
    z-index: 1;
    top: 0;
}
.header__center,
.header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.header__left{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.header__logo {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
}
.header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header__nav-link {
    text-decoration: none;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header__btn {
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid var(--eein-white);
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.responsive-btn{
    display: none;
}
.header__menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .25rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header__menu-icon {
    display: block;
    width: 32px;
    height: 32px;
    position: relative;
}
/* ----------------- */
.header__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header__nav-link {
    text-decoration: none;
}
.header__nav-link:hover,
.header__btn:hover {
    color: var(--eein-caqui);
    border-color: var(--eein-caqui);
}
.header__dropdown-menu {
    width: 100vw;
    display: none;
    position: absolute;
    padding: 2rem 15rem;
    background-color: #4F4F50;
    color: #FFFFFF;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    top: 6rem;
    left: 0;
    transition: opacity 0.3s ease;
}
.separator{
    border-left: 1px solid #9E754D;
}
/* .header__li-menu:hover .header__dropdown-menu {
    display: flex;
    opacity: 1;
} */
.menu-toggle{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .5rem;
    cursor: pointer;
}
.header__menu-arrow{
    width: .75rem;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.active-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
} 
.menu{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    width: 70%;
}
.elements{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.menu__title{
    -ms-flex-item-align: baseline;
        align-self: baseline;
    color: var(--eein-caqui);
    font-weight:700;
    font-size: .9rem;
}
.ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap:1rem;
}
.header__dropdown-link{
    font-size: .7rem;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    
}
.header__dropdown-link:hover{
    color: var(--eein-caqui);
}
/* Header styles END*/

/* ----------------------------------------------------------- */

/* Sections styles START*/
.hero{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    padding: 10rem 4.5rem 7.5rem 4.5rem;
    color: var(--eein-white);
    /* background-color: var(--eein-cafe-con-leche); */
    background-color: var(--eein-caqui);
    background-image: url(../images/sections/hero/landing.jpg);
    background-size: cover;
    background-blend-mode: multiply;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    justify-content: space-between;
    align-items: flex-start;
}
.hero-int{
    flex-direction: column;
}
.hero-interior{
    background-blend-mode: normal;
    background-repeat: no-repeat;
    background-position: inherit;
    margin: 4rem 0 0;
}
.ventas{
    background-image: url(../images/sections/hero/ventas_y_servicios_calidad.png);
   
    /* margin-top: 6.25rem; */
}
.innovacion{
    background-image: url(../images/sections/hero/innovacion_y_gestion_negocios_.png);
}
.diseno{
    background-image: url(../images/sections/hero/diseno_experiencias_digitales.png);
}
.bigdata{
    background-image: url(../images/sections/hero/big_data_y_analitica_de_negocios.png);
}
.tecnologias{
    background-image: url(../images/sections/hero/tecnologias_para_negocios_.png);
}
.inteligencia{
    background-image: url(../images/sections/hero/ia_generativa.png);
}
.liderazgo{
    background-image: url(../images/sections/hero/liderazgo_y_coaching.jpg);
}

.hero__img{
    width: 12rem;
    object-fit: contain;
    
}
.interior{
    width: 3.2rem;
    z-index: 0; 
}
.hero__content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
    flex-direction: column;
    gap: .875rem;
    z-index: 0;
}
.hero__h1{
    font-size: 1.3rem;
    /* font-weight: 800; */
    font-family: var(--tipo-secundaria);
    /* letter-spacing: .263rem; */
}
.hero__h2{
    font-size: 3.75rem;
    font-weight: bold;
    /* letter-spacing: .25rem; */
    line-height: 4rem;
    width: 85%;
}
.index-h2{
    width: 100%;
}
.hero__p{
    font-size: 1.125rem;
    width: 36.25rem;
}
.hero__button{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 50px;
    padding: 0.625rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid var(--eein-white);
    color: var(--eein-white);
    background-color: transparent;
    font-weight:600;
    font-size: 1rem;
    font-family: var(--tipo-principal);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
.hero__button:hover{
    gap: 6rem;
}
.first{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.first__elements{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
.first__element{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
}
.first__tags{
    margin-top: -6rem;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    padding: 2.5rem 2.5rem;
    border-radius: 1rem;
    bottom: 0;
    background-color: var(--eein-oscuro);
    color: var(--eein-white);
}
.first__ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-around;
}
.first__li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .875rem;
    
}
.first__img-icon{
    width: .95rem;
    -o-object-fit: contain;
       object-fit: contain;
       transform: translateY(4px);
}
.first__h2{
    font-size: 1.375rem;
}
.first__p{
    font-size: 2.5rem;
    line-height: 2.8125rem;
    font-weight: bold;
    /* line-height: inherit; */
    line-height: normal;
}


.ventas-span{
    font-weight: bold;
    color: var(--eein-oscuro);
}
.ventas-h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.25rem;
    color: var(--eein-cafe-con-leche);
    font-weight: bold;
    gap: .5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
.check-icon{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .5rem;
    align-items: flex-start;
}
.check-icon-in{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
}

.materias__li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .5rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.materias {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap; 
    padding: 2rem 1rem;
    margin: 1rem 0;
}

.materias__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    margin: 0;
}

.materias__li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .5rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content; 
    padding: .5rem 2rem .5rem 1rem;
    margin-right: 1rem;
    margin-left: .5rem;
    background-color: var(--eein-oscuro);
    border-radius: 5px;
    color: var(--eein-white);
}

.first__span{
    color: var(--eein-cafe-con-leche)
}
.first__button{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 50px;
    padding: 0.625rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid var(--eein-cafe-con-leche);
    color: var(--eein-cafe-con-leche);
    background-color: transparent;
    font-weight:600;
    font-size: 1rem;
    font-family: var(--tipo-principal);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
.first__button:hover{
    color: var(--eein-white);
    background-color: var(--eein-cafe-con-leche);
}

.second{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
.second__element{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 50%;
}
.second-img{
    -o-object-fit: contain;
       object-fit: contain;
}
.second-text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2.5rem 2.5rem 2.5rem 0;
    gap: 1.875rem;
}
.second__p{
    font-size: 1.35rem;
    line-height: 2rem;
}
.second__h3, .second__h2{
    /* font-size: 1.875rem; */
    font-size: 3.125rem;
    font-weight: 600;
    color: var(--eein-cafe-con-leche);
}
.second__bullets{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.third{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
}
.third__h2{
    font-size: 3.125rem;
    font-weight: 600;
    text-align: center;
}
.third__programas{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
            align-items: center;
    width: 80%;
    gap: 1.25em;
    /* justify-content: center; */
}
.third__element{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 2.5rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 1.5rem;
    cursor: pointer;
    -webkit-transition: all .375s ease;
    -o-transition: all .375s ease;
    transition: all .375s ease;
}
.third__element:hover{
    background-color: rgba(0 0 0 / 0.025);
}

.third__p{
    width: 13rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.10rem;
}
.third__p-top{
    width: 70%;
    text-align: center;
}
.third__icon{
    width: 4.625rem;
    -o-object-fit: contain;
       object-fit: contain;
}
.third__span{
    font-weight: bold;
    font-size: 1.15em;
}

.fourth{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* background-image: url(../images/sections/features/section-1Ca.png); */
    
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    color: white;
}
.fourth__content{
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.fourth__h2{
    font-size: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.fourth__span{
    font-size: 1.5em;
    font-weight: bold;
}
.fourth-img{
    mix-blend-mode: multiply;
    width: 40%;
}
.fourth-text{
    padding: 0 5rem 0 2.5rem;
    gap: 1em;
    width: 60%;
    background-color: var(--eein-caqui);
}
.fourth__p{
    font-size: .9rem;
}

.fifth{
    background-color: var(--eein-oscuro);
    color: var(--eein-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap:1rem;
    padding: 2.5rem 2.5rem;
}

.fifth-one{
    width: 60%;
}
.fifth-two{
    width: 40%;
}
.fifth__h2{
    font-size: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.fifth__element{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}
.fifth__spanA, 
.fifth__spanB{
    font-size: 1.675em;
    font-weight: bold;
}
.fifth__spanA{
    color: var(--eein-cafe-con-leche);
}
.fifth__p{
    font-size: 1.125rem;
}

.ventas-p{
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: .75rem;
    
}
.interior-section .ventas-p{
    padding-left: 1.5rem;
}

.footer{
    background-color: var(--eein-oscuro);
    color: var(--eein-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}
.footer__element{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.footer__element:first-child{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer__element-rrss{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}
.rrss-icon{
    width: 2rem;
}
.footer__element-img{
    width: 6.25rem;
    height: 6.25rem;
}
.footer__ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
}
.footer__h4{
    font-size: 1.25rem;
    color: var(--eein-caqui);
}
.footer__element-one{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}


.copyright{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: var(--eein-oscuro);
    color: var(--eein-white);
    padding: 2.5rem 0;
    flex-direction: column;
    align-items: center;
    font-size: .75rem;
    line-height: normal;
}
.copyright__p{
    width: 70%;
    text-align: center;
}

.tape{
    background-color: var(--eein-oscuro);
    color: var(--eein-white);
    padding: 2.5rem 14.75rem;
}
.tape__p{
    font-size: 1.125rem;
    text-align: center;
}


.beneficios{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--eein-oscuro);
    color: var(--eein-white);
    gap: 4rem;
    padding: 3.5rem 2.5rem;
}
.beneficios__ul{
    width: 55%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.beneficios__li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
}
.beneficios__img{
    width: 2.5rem;
    height: 2.5rem;
}
.beneficios__h3{
    font-size: 1.875rem;
    text-align: center;
    width: 70%;
}
.beneficios__span{
    font-size: 1.125rem;
}

.contacto{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    padding: 3.5rem 2.5rem;
}
.contacto__h3{
    font-size: 1.875rem;
    font-weight: bold;
}
.contacto__ul{
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.contacto__li{
    font-size: 1.125rem;
    padding: 1rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: .25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.sixth{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2.5rem;
    z-index: 0;
}

.sixth__element{
    width: 50%;
    padding: 0 1.5rem;
}
.carrusel{
    padding: 0 4rem;
}
.sixth__text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .5rem;
}

.sixth__p{
    font-size: 1.125rem;
    color: var(--eein-oscuro);
}
.sixth__h2{
    font-size: 3.125rem;
    color: var(--eein-caqui);
    font-weight: 700;
}
.non-carrusel{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
}
.interior-section{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
}
.content-simple{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
    width: 100%;
}
.simple{
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.header__nav-link,
.footer__link{
    cursor: pointer;
}
.footer__li a:hover{
    color: var(--eein-caqui);
}

.formulario{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    background-color: white;
    z-index: 5;
    width: 100%;
    height: 80vh;
    overflow-y: scroll;
}
.formulario__container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
}
.formulario__content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 4.5rem;
    gap: 1.25rem;
}
.formulario__h2{
    font-size: 1.875rem;
}
.fomulario__h3{
    font-size: 3.125rem;
    color: var(--eein-caqui);
    font-weight: 700;
}
.fomulario__h3-modal{
    font-size: 2.5rem;
    color: var(--eein-cafe-con-leche);
    font-weight: 700;
}
.formulario__p{
    font-size: 1.125rem;
}
.formulario__h4{
    font-size: 1.875rem;
}
.formulario__img{
    width: 462px;

}
.desktop-form-img{
    display: block;
}
.mobile-form-img{
    display: none;
}
.formulario__element{
    width: 100%;
    padding: 0 0 2.5rem 0;
    gap: 1rem;
}




input, select, textarea{
    width: 100%;
    padding: .5rem 1rem;
    background-color: #EFF0F0;
    color: var(--eein-oscuro);
    font-size: .85rem;
    /* font-weight: bold; */
    border-radius: .3125rem;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
    color: var(--eein-caqui);
    font-weight: 400;
}
input::-moz-placeholder, textarea::-moz-placeholder{
    color: var(--eein-caqui);
    font-weight: 400;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder{
    color: var(--eein-caqui);
    font-weight: 400;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder{
    color: var(--eein-caqui);
    font-weight: 400;
}
input::placeholder, textarea::placeholder{
    color: var(--eein-oscuro);
    font-weight: 400;
}
.form{
    
    width: 100%;
    padding: .5rem 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .5rem;
}
.form__input-group{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .5rem;
}
.form__send{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1rem;
}


.header-modal{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
}

.modal-p{
    font-size: 1rem;
}

.modal-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
}

.row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: .5rem;
}
.contacto__icon{
    object-fit: contain;
    width: auto;
}




/* Sections styles END*/

/* ----------------------------------------------------------- */
@media (min-width: 3840px ) {
    html {
        font-size: 40px; 
    }
    .header__nav {
        gap: 2.75em;
    }
    .header {
        padding: 2.75rem 15rem;
    }
    .header__img{ 
        min-width: 150%;
    }
    .menu{
        width: 50%;
    }
    .hero{
        padding: 18rem 20rem 8rem 15rem;
    }
    .hero-ventas{
        padding: 12rem;
        
    }
    .hero__img{
        width: 11rem;
    }
    .first {
        padding: 0 15rem 0 15rem;
    }
    .first__tags{
        margin-left: 0;
        margin-right: 0;
    }
    .second{
        padding: 2rem 15rem 0 15rem;
        gap: 2rem;
    }
    .second-text{
        padding: 2.5rem 0 2.5rem 0;
    }
    .third{
        padding: 6.25rem 15rem;
    }
    .third__element{
        -webkit-box-flex: 1;
            -ms-flex: 1 0 25rem;
                flex: 1 0 25rem;
    }
    .fourth{
        margin:0 15rem;
    }

    .fifth{
        padding: 2.5rem 15rem;
    }


    .footer{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;;
        padding: 1.5rem 2.5rem;
        border-bottom: 1px solid var(--eein-cafe-con-leche);
    }

    .footer__element:first-child{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .footer__element{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1.5em;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        
    }
    .divider{
        border-left: 1px solid var(--eein-cafe-con-leche);
    }
    .formulario-modal-lg{
        max-width: 1440px;
    }
    .formulario__img {
        width: 520px;
    }
    .formulario__content {
        padding: 3.5rem;
        gap: 1.25rem;
    }
    input, select{
        padding: 1.5rem;
    }
    
}
@media (min-width: 2560px ) and (max-width: 3839px) {
    html {
        font-size: 28px; 
    }
    .header__nav {
        gap: 2.5em;
    }
    .header {
        padding: 2rem 12rem;
    }
    .header__img{ 
        min-width: 125%;
    }
    .menu{
        width: 60%;
    }
    
    .hero{
        padding: 20rem 16rem 10rem 12rem;
    }
    .hero-ventas{
        padding: 12rem;
    }
    .first {
        padding: 2.5rem 12rem 2.5rem 12rem;
    }
    .first__tags{
        margin-left: 0;
        margin-right: 0;
    }
    .second{
        padding: 2.5rem 12rem 2.5rem 12rem;
        gap: 2rem;
    }
    .second-text{
        padding: 2.5rem 0 2.5rem 0;
    }
    .third{
        padding: 3rem 12rem;
    }
    .third__element{
        -webkit-box-flex: 1;
            -ms-flex: 1 0 25rem;
                flex: 1 0 25rem;
    }
    .fourth{
        margin:0 12rem;
    }
    
    .fifth{
        padding: 2.5rem 12rem;
    }


    .footer{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;;
        padding: 1.5rem 2.5rem;
        border-bottom: 1px solid var(--eein-cafe-con-leche);
    }

    .footer__element:first-child{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .footer__element{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1.5em;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        
    }
    .divider{
        border-left: 1px solid var(--eein-cafe-con-leche);
    }
    .formulario-modal-lg{
        max-width: 1440px;
    }
    .formulario__img {
        width: 520px;
    }
    .formulario__content {
        padding: 3rem;
        gap: 1.25rem;
    }
    input, select{
        padding: 1.5rem;
    }
}
@media (min-width: 1920px) and (max-width: 2559px) {
    html {
        font-size: 20px; 
    }
    .header__nav {
        gap: 2.25em;
    }
    .header {
        padding: 1.5rem 9rem;
    }
    .hero{
        padding: 20rem 16rem 10rem 9rem;
    }
    .first {
        padding: 0rem 9rem 0rem 9rem;
    }
    .first__p{
        font-size: 3rem;
    }
    .ventas-p{
        font-size: 1rem;
    }
    .first__tags{
        margin-left: 0;
        margin-right: 0;
    }
    .second{
        padding: 2.5rem 9rem 2.5rem 9rem;
        gap: 1rem;
    }
    .ventas-content{
        gap: 4rem;
    }
    .second-text{
        padding: 2.5rem 0 2.5rem 0;
    }
    .third{
        padding: 2.5rem 9rem;
    }
    .third__element{
        -webkit-box-flex: 1;
            -ms-flex: 1 0 25rem;
                flex: 1 0 25rem;
    }
    .fourth{
        margin:0 9rem;
    }
    .fourth-text{
        padding: 0 2.5rem 0 2.5rem;
    }
    .fifth{
        padding: 2.5rem 9rem;
    }


    .footer{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;;
        padding: 1.5rem 2.5rem;
        border-bottom: 1px solid var(--eein-cafe-con-leche);
    }

    .footer__element:first-child{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .footer__element{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1.5em;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        
    }
    .divider{
        border-left: 1px solid var(--eein-cafe-con-leche);
    }
    .formulario-modal-lg{
        max-width: 1440px;
    }
    .formulario__img {
        width: 520px;
    }
    .formulario__content {
        padding: 3rem;
        gap: 1.25rem;
    }
    input, select{
        padding: 1.5rem;
    }
    
}
@media (min-width: 1440px) and (max-width: 1919px) {
    html {
        font-size: 18px; 
    }
    .header {
        padding: 1.25rem 6rem;
    }
    .header__dropdown-menu{
        padding: 2rem 8rem;
    }
    .hero{
        padding: 20rem 12rem 10rem 6rem;
    }
    .first__tags{
        margin-left: 0;
        margin-right: 0;
    }
    .first {
        padding: 2.5rem 6rem 2.5rem 6rem;
    }
    .second{
        padding: 2.5rem 6rem 2.5rem 6rem;
        gap: 2rem;
    }
    .ventas-content{
        gap: 4rem;
    }
    .second-text{
        padding: 0.5rem 0 0.5rem 0;
    }
    .third{
        padding: 6.25rem 6rem 0;
    }
    .fourth{
        margin: 0 6rem;
    }
    .fourth-text{
        padding: 0 2.5rem 0 2.5rem;
    }
    .fifth{
        padding: 2.5rem 6rem 2.5rem;
    }

    .footer{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;;
        padding: 1.5rem 2.5rem;
        border-bottom: 1px solid var(--eein-cafe-con-leche);
    }

    .footer__element:first-child{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .footer__element{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1.5em;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        
    }
    .divider{
        border-left: 1px solid var(--eein-cafe-con-leche);
    }
    .formulario-modal-lg{
        max-width: 1440px;
    }
    .formulario__img {
        width: 520px;
    }
    .formulario__content {
        padding: 2.5rem;
        gap: 1.25rem;
    }
    input, select{
        padding: 1rem;
    }
    .ventas{
        background-position: center;
    }

}
@media (min-width: 1200px) and (max-width: 1439px) {
    html {
        font-size: 16px; 
    }
    .header__nav {
        gap: 1.5em;
    }
    .header {
        padding: 1.25rem 2.5rem;
    }
    .header__dropdown-menu{
        padding: 2rem 6rem;
    }
    .header__dropdown-link {
        font-size: .9rem;
    }
    .hero{
        padding: 20rem 8rem 10rem 2.5rem;
    }
    .first__element:first-child,
    .fourth-text {
        padding: 0 2.5rem 0 2.5rem;
    }
    .third{
        padding: 2.5rem;
    }
    .second{
        padding: 2.5rem;
        
    }
    .second-text{
        padding: 0;
    }
    .second-ventas{
        padding: 2.5rem;
    }
    .ventas{
        background-position: center;
    }

    .footer{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;;
        padding: 1.5rem 2.5rem;
        border-bottom: 1px solid var(--eein-cafe-con-leche);
    }

    .footer__element:first-child{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .footer__element{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1.5em;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        
    }
    .divider{
        border-left: 1px solid var(--eein-cafe-con-leche);
    }

    .tape{
        padding: 2.5rem 12rem;
    }
    .formulario-modal-lg{
        max-width: 1200px;
    }
    .formulario__img {
        width: 500px;
    }
    .formulario__content {
        padding: 2.5rem;
        gap: 1.25rem;
    }
    input, select{
        padding: .75rem;
    }
}
@media (min-width: 990px) and (max-width: 1199px) {
    html {
        font-size: 14px; 
    }
    .header {
        padding: 1rem 2rem;
    }
    .header__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1em;
    }
    .header__img{
        width: 65%;
    }
    .header {
        padding: 1.25rem 2.5rem;
    }
    .header__dropdown-menu{
        padding: 2rem 4rem;
        top: 5rem;
    }
    
    .header__dropdown-link {
        font-size: .9rem;
    }
    .hero{
        padding: 20rem 6rem 10rem 2.5rem;
    }
    .hero__button{
        gap: 3rem;
    }
    .hero__button:hover{
        gap: 5rem;
    }
    .first__element:first-child {
        padding: 0rem 2.5rem 0rem 2.5rem;
    }
    .first__tags{
        padding-left: 0;
        padding-right: 0;
        margin-left: 2.5rem;
        margin-right: 2.5rem;
    }
    .first__li{
        width: auto;
    }
    .third{
        padding: 3rem 2.75rem;
    }
    .second{
        padding: 2rem 0;
    }.interior-section{
        padding: 2rem;
    }
    .fourth-text{
        padding: 0 2.5rem 0 2.5rem;
    }

    .footer{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;;
        padding: 1.5rem 2.5rem;
        border-bottom: 1px solid var(--eein-cafe-con-leche);
    }

    .footer__element:first-child{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .footer__element{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1.5em;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        
    }
    .divider{
        border-left: 1px solid var(--eein-cafe-con-leche);
    }
    .hero-ventas{
        margin-top: 4.6875rem;
    }
    .ventas{
        background-position: center;
    }
    .tape{
        padding: 2.5rem 6rem;
    }
    .second-ventas{
        padding: 0 2.5rem;
    }
    .materias__ul {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        
    }
    .formulario__content {
        padding: 2rem;
    }
   
}
@media (min-width: 768px) and (max-width: 989px){
    html {
        font-size: 16px; 
    }
    .header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        padding: 1.5rem 1rem;
        justify-content: flex-start;
    }
    .header__nav {
        /* margin-top: -82px; */
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        /* height: 100vh; */
    }
    .header__nav-link {
        margin-bottom: 10px;
    }
    .header__menu-btn {
        display: block;
    }
    .header__btn{
        display: none;
    }    
    .responsive-btn{
        display: block;
    }
    .header__nav {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 10px;
    }
    .header__nav.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 2rem 0;
    }
    .header__center{
        -webkit-box-pack:start;
            -ms-flex-pack:start;
                justify-content:flex-start;
    }
    .header__ul{
        gap: 1em;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .header__img{
        width: 60%;
        min-width: 86px;
    }
    .separator{
        display: none;
    }
    .elements {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
    }
    .menu{
        padding: 1rem 1rem;
        width: 100%;
    }
    .header__dropdown-menu{
        padding: 1rem 0;
        top: 23.5rem;
        position: unset;
        background-color: var(--eein-oscuro);
    }
    .header__dropdown-link {
        font-size: .95rem;
    }
    .ul{
        gap:1.25rem;
    }
    .hero{
        padding: 16rem 2rem 10rem 1rem;
    }
    
    .hero__img{
        width: 10rem;
    }
    .interior{
        width: 4rem;
    }
    .hero__content{
        gap:.775rem;
    }
    .hero__h1{
        font-size: 1.05rem;
        letter-spacing: .2rem;
    }
    .hero__h2{
        font-size: 2.75rem;
        line-height: 3rem;
    }
    .hero__p{
        width: 100%;
    }
    .hero__button{
        gap: 2rem;
        font-size: .85rem;
    }
    .hero__button:hover{
        gap: 4rem;
    }
    .first__tags{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: 0;
        margin-right: 0;
        margin-top: 2rem;
    }
    .first__ul {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }
    .first__li{
        width: auto;
    }
    .first__elements{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    .first__element{
        width: 100%;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .first__element:first-child {
        padding: 6rem 1rem 0 1rem;
    }
    .second{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        padding: 2rem 1rem 0;
    }
    .ventas{
        background-position: center;
    }
    .ventas-content{
        padding: 2rem 0;
    }
    .interior-section{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .interior-section h2{
        width: 100%;
        text-align: center;
    }
    .second__element {
        width: 100%;
        padding: 0 0 2rem 0;
    }
    .second-text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .second-ventas{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        /* align-items: start; */
        padding:2.5rem;
    }
    .second-ventas .second__h3{
        text-align: center;
    }
    .second-img{
        display: none;
    }
    .second-text{
        gap: 1rem;
    }
    .third{
        padding: 6.25rem 1rem 2.5rem;
        gap: 2rem;
    }
    .third__programas{

        width: 100%;
    }

    .fourth{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .fourth-text{
        background-color: var(--eein-caqui);
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
        padding: 4rem 1rem 2.5rem;
    }
    
    .first__p,
    .first__h2,
    .first__img,
    .second__p, 
    .second__h3,
    .fourth__h2,
    .fourth__p,
    .fourth-img,
    .fifth__element{
        width: 100%;
    }

    .fifth{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        padding: 4rem 1rem 2.5rem;
    }
    .sixth{
        padding: 4rem 1rem 2.5rem;
    }
    
    .footer{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;;
        padding: 1.5rem 2.5rem;
        border-bottom: 1px solid var(--eein-cafe-con-leche);
    }

    .footer__element:first-child{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .footer__element{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1.5em;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        
    }
    .divider{
        border-left: 1px solid var(--eein-cafe-con-leche);
    }
    .hero-ventas {
        background-position: center;
        margin-top: 3.125rem;
    }

    .tape{
        padding: 2.5rem 4rem;
    }
    .ventas-element:first-child{
        padding: 2.5rem;
    }
    .ventas-p{
        width: 100%;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .formulario__element .ventas-p{
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }
    .ventas-content{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .ventas-img{
        width: 100%;
        display: block;
    }
    .beneficios{
        text-align: center;
    }
    .contacto{
        gap: 2rem;
        /* align-items: flex-start; */
    }
    .contacto__ul{
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        /* align-items: flex-start; */
    }
    .materias__ul {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        
    }
    .formulario__container{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .desktop-form-img{
        display: none;
    }
    .mobile-form-img{
        width: 100%;
        display: block;
    }
    .formulario__content {
        padding: 1rem;
    }

}

@media screen and (max-width: 767px){
    html {
        font-size: 14px; 
    }
    .header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        padding: 1.5rem 1rem;
        justify-content: flex-start;
    }
    .header__nav {
        /* margin-top: -82px; */
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        /* height: 100vh; */
    }
    .header__nav-link {
        margin-bottom: 10px;
    }
    .header__menu-btn {
        display: block;
    }
    .header__btn{
        display: none;
    }    
    .responsive-btn{
        display: block;
    }
    .header__nav {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 10px;
    }
    .header__nav.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 2rem 0;
    }
    .header__center{
        -webkit-box-pack:start;
            -ms-flex-pack:start;
                justify-content:flex-start;
    }
    .header__ul{
        gap: 1em;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .header__img{
        width: 60%;
        min-width: 86px;
    }
    .separator{
        display: none;
    }
    .elements {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
    }
    .menu{
        padding: 1rem 1rem;
        width: 100%;

        overflow-y: auto;
        /* height: 300px; */
    }
    .header__dropdown-menu{
        padding: 1rem 0;
        top: 23.5rem;
        /* height: 100vh; */
        position: unset;
        background-color: var(--eein-oscuro);
    }
    .header__dropdown-link {
        font-size: .95rem;
    }
    .ul{
        gap:1.25rem;
    }
    .hero{
        padding: 12rem 1rem 6rem 1rem;
        flex-direction: column;
    }
    
    .hero__img{
        width: 10rem;
    }
    .interior{
        width: 4rem;
    }
    .hero__content{
        gap:.775rem;
    }
    .hero__h1{
        font-size: 1.05rem;
        letter-spacing: .2rem;
    }
    .hero__h2{
        font-size: 2.75rem;
        line-height: 3rem;
        
    }
    .hero__p{
        width: 100%;
    }
    .hero__button{
        gap: 2rem;
        font-size: .85rem;

    }
    .first__tags{
        margin-top: 2rem;
        padding: 2.5rem 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

    }
    .first__ul {
        
        -webkit-box-orient: vertical;
        
        -webkit-box-direction: normal;
        
            -ms-flex-direction: column;
        
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .first__li{
        width: auto;
    }
    .first__elements{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        
        -webkit-box-orient: vertical;
        
        -webkit-box-direction: reverse;
        
            -ms-flex-direction: column-reverse;
        
                flex-direction: column-reverse;
    }
    .first__element{
        width: 100%;
    }
    .first__p {
        font-size: 1.75rem;
        /* line-height: 2rem; */
    }
    .first__element:first-child {
        padding: 2.5rem 1rem 0 1rem;
        gap: 1rem;
    }
    .first__button{
        gap: 1rem;
    }
    .second{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        padding: 2rem 1rem 0;
    }
    .second__element {
        width: 100%;
        padding: 0 0 2rem 0;
    }
    .second-text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        gap: 1rem;
    }
    .second-ventas{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }
    .second-img{
        display: none;
    }
    .ventas-content{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .ventas-img{
        display: block;
    }
    .third{
        padding: 3rem 1rem;
        gap:1.5rem;
    }
    .third__h2{
        font-size: 2.25rem;
    }
    .third__programas{
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: .75rem;
    }
    .third__element{
        /* width: inherit; */
        width: 18.75rem;
        padding: 1rem 0;
        /* flex-direction: column;
        align-items: center;  */
        
        gap: .75rem;
    }
    .third__p{
        width: 100%;
        /* text-align: center; */
        font-size: 1rem;
    }
    
    .third__icon{
        width: 4.75rem;
    }
    .fourth{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .fourth-text{
        width: 100%;
        padding: 2.5rem 1rem;
    }
    .fourth-img{
        width: 100%;
    }

    .fifth{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        padding: 2.5rem 1rem;
    }
    .hero__h2,
    .third__h2{
        font-size: 2.5rem;
    }
    .fourth__h2,
    .fifth__h2,
    .second__h3{
        font-size: 1.25rem;
    }
    .fifth-one,
    .fifth-two {
        width: 100%;
    }

    .sixth{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .sixth__element{
        /* width: 100%; */
    }
    .carrusel{
        padding: 0;
    }
    .slider-container{
        width: 100%;
    }

    .footer{
        padding: 2.5rem 1em;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .footer__element{
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    
    .footer__element-one {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 1.5rem;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .footer__element-rrss{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        padding: 0 2rem;
    }
    
    .footer__p{
        text-align: center;
    }
   
    .footer__divider{
        border-bottom: 1px solid var(--eein-cafe-con-leche);
    }

    .footer__element:first-child{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .divider{
        border: 1px solid var(--eein-cafe-con-leche)
    }
    
    
    .hero-interior{
        position: relative;
        background-color: #cbcbcb;
    }
    .hero-interior::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 0;
    }
    .innovacion{
        margin-top: 2.75rem;
        padding: 24rem 1rem 24rem 1rem;
        background-image: url(../images/sections/hero/innovacion_y_gestion_negocios_.png);
        background-position: center;
    }
    .ventas {
        margin-top: 2.75rem;
        padding: 24rem 1rem 24rem 1rem;
        background-image: url(../images/sections/hero/ventas_y_servicios_calidad-mobile.png);
        background-position: center;
    }
    .diseno {
        margin-top: 2.75rem;
        padding: 24rem 1rem 24rem 1rem;
        background-image: url(../images/sections/hero/diseno_experiencias_digitales-mobile.png);
        background-position: center;
      
    }
    .bigdata {
        margin-top: 2.75rem;
        padding: 24rem 1rem 24rem 1rem;
        background-image: url(../images/sections/hero/big_data_y_analitica_de_negocios-mobile.png);
        background-position: center;
    }
    .tecnologias {
        margin-top: 2.75rem;
        padding: 24rem 1rem 24rem 1rem;
        background-image: url(../images/sections/hero/tecnologias_para_negocios_.png);
        background-position: center;
    }
    .inteligencia {
        margin-top: 2.75rem;
        padding: 24rem 1rem 24rem 1rem;
        background-image: url(../images/sections/hero/ia_generativa-mobile.png);
        background-position: center;
    }
    .tape{
        padding: 1rem 1rem;
    }
    .tape__p{
        font-size: 1rem;
        padding: 2rem;
    } 
    .ventas-p{
        font-size: 1.125rem;
        font-weight: 300;
    }
    .ventas-span{
        font-weight: bold;
        color: var(--eein-oscuro);
    }
    .beneficios{
        text-align: center;
    }
    .beneficios__h3{
        font-size: 1.6rem;
        line-height: 2.4rem;
        width: 100%;
    }
    .beneficios__ul{
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 3rem;
    }
    .contacto{
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .contacto__ul {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        gap: 1rem;
    }
    .contacto__li{
        padding: 0;
        
    }
    .content-simple{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-line-pack: center;
            align-content: center;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }
    .interior-section{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .interior-section h2{
        width: 100%;
        text-align: center;
    }
    .simple {
        width: 100%;
    }
    .materias__ul {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        
    }
    .formulario__container{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .desktop-form-img{
        display: none;
    }
    .mobile-form-img{
        width: 100%;
        display: block;
    }

    .header-modal{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: .5rem;
    }
    .tag-modal{
        text-align: center;
    }
    .form{
        padding: 0;
    }
    .fomulario__h3-modal{
        font-size: 1.5rem;
    }
    .formulario-modal {
        padding: 1.5rem;
        height: 80vh;
        width: 100%!important;
        overflow-y: scroll;
        padding: 2rem .5rem !important;
    }
    .formulario-modal-lg{
        padding: 2rem .5rem !important;
        width: 100%!important;
    } 
    .formulario__content {
        padding: 1.5rem;
        gap: 1rem;
    }
    .row{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    input, select{
        padding: 1rem;
        font-size: 1rem;
    }
    .sixth{
        /* padding-bottom:4rem; */
        padding: 2.5rem 1rem 4rem 1rem;
        flex-direction: column-reverse;
    }
    .sixth__element{
        padding: 0;
    }
    .sixth__text{
        align-self: center;
        /* width: 100%; */
    }
    .non-carrusel{
        width: 100%;
        align-items: center;
    }
    .left-arrow{
        left: 0;
    }
    #close_icon{
        display: none;
    }
    .formulario__content{
        gap: 2rem;
        gap: 1rem;
    }
    .fomulario__h2{
        font-size: 1rem;
    }
    .fomulario__h3{
        font-size: 1.5rem;
    }
    .fomulario__p{
        font-size: 1rem;
    }
    .formulario__element .ventas-p{
        margin: 0;
    }
    
}

