.banner *,.menu-lateral *{
    font-family: 'Poppins';
}


.banner-menu{
    margin-top: 20px;
    display: flex;
    justify-content: center;    
}

.menu-lateral{
    width: 30%;
    height: 350px;    
    background-color: #444854;
}

.banner{
    width: 65%;
    height: 350px;
    position: relative;
}
.icon{
    width: 38px;
    height: 38px    
}

.menu-item{
    color: white;

    font-weight: 300;
    align-items: center;
    text-decoration: none;
    background-color: transparent;
    padding: 6px 0px 5px 30px;
    border-bottom: 1px solid #161616;
    -webkit-transition: all .5s ease;
}


.menu-item img{
    width: 40px;
    height: 40px;
}
.menu-item:hover{
    background-color: rgba(255,255,255,.1);
}

.menu-item .concept{
    margin-left: 30px;
}

.banner-item{
    width: 100%;
    height: 100%;
    display: flex;
    background-size: cover;                    
    background-position: center;
}

.banner-content{
    width: 100%;
    z-index: 4;
    height: 100%;    
    display: flex;
    margin: 0px 10%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.desktop-banner,.mobile-banner{
    width: 100%;
    height: 100%;
    z-index: 3;
    position: absolute;
}

.mobile-banner{
    display: none;
}

.banner .control{
    top: 50%;
    cursor: pointer;
    font-size: 40px;
    position: absolute;
    color: rgba(0,0,0,.5);    
}

.banner .next{
    right: 2%;
    z-index: 4;
}

.banner .prev{
    left: 2%;
    z-index: 5;
}

.orange{        
    font-size: 20px;
    font-weight: 800;
    padding: 0px 0px 0px 0px;
}

.principal{       
    text-align: center; 
    font-size: 40px;
    font-weight: bold;
    color: #444854;
    padding-bottom: 10px;
    border-bottom: 2px solid #444854;
}


.abajo{    
    font-weight: 300;
    font-size: 26px;
    padding: 10px 0px;
}

.button-middle{
    color: white;    
    cursor: pointer;
    font-weight: bold;
    padding: 1rem 3rem;
    border-radius: 50px;
}

@media(max-width:2000px){
    .banner-menu .content{
        justify-content:center;
    }
    .banner{
        min-width:636px;
        max-width:760px;
        margin-left:70px;
    }
    .menu-lateral{
        max-width:350px
    }
}

@media(max-width:1300px){
    .banner-menu .content{
        justify-content:space-between;
    }
    
    .banner{
        margin-left:0px;
    }
}

@media(max-width:1250px){
    .menu-lateral{
        width: 30%;
    }
    
    .banner{
        width: 66%;
    }
}

@media(max-width:980px){
    .menu-lateral{
        display: none;
    }
    
    .banner{
        width: 100%;
        max-width:780px;
    }
    
    .banner-item{
        width: 100%;
        background-size: cover;
    }
    
    .banner-menu .content{
        justify-content:center;
    }
}

@media(max-width:700px){
    
    .banner{
        width: 100%;
        height: 100%;
        min-width: 250px;
        max-width: 450px;
    }

    .desktop-banner{
        display: none;
    }
    .mobile-banner{
        display: unset;
    }
    
    .banner-menu .content{
        justify-content: center;
        height: 500px;
    }
    
    .banner-content{
        justify-content: flex-start;
        align-items: center;
    }
    
    .banner-content .orange{
        margin-top: 40px;
    }
    
    .banner-content .button-middle{
        width: 150px;
        text-align: center;
        padding: 10px 0;
        font-size: 10px;
    }
}

@media(max-width:500px){
    .banner-menu .content{
        margin: 0;
    }
}


/*aplicacion de carrousel*/
.banner{
    display: flex;
    overflow: hidden;
}

.banner-item{
    position: absolute;
    -webkit-transition: all 1s ease;    
}

.none{
    display: none;
}