.moverScroll{
    animation: moverDSiguiente 0.7s ease-in-out;
    animation-fill-mode: forwards; 
}
@keyframes moverScroll{
    from{scrollTo(0,0);} to { scrollTo(0,300); }
}
#banner{
    width: 100%;
    height: 600px;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    background-position: 20px 0;
    left: 0px;
}
#banner::before{
    width: 300px;
    content: " ";
    background-image: url(../assets/curva-banner.png);
    position: absolute;
    right: 0px;
    /* top: -50px; */
    bottom: 0;
    height: 300px;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 250px auto;
    -webkit-background-size: 190px auto;
    -moz-background-size: 250px auto;
    -o-background-size: 250px auto;
    z-index: 3;
}
#banner-capa{
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    background-color: rgba(0,0,0,.4);
    z-index: 1;
}
/*estilos nicolas*/
.contenedorBanner{
    width: 100%;
    height: 600px;
    position: relative;    
    display: inline-flex;
    overflow: hidden;
    z-index: 2;
    /*border-bottom-right-radius: 230px;*/
}
.slideBanner{
    width: 100%;
    height: 600px;
    position: absolute;
    opacity: 0;  
    left: -100%;
    z-index: 2;
    overflow: hidden;
}
.botonBannerEnlase{
    color:rgba(255,255,255,1);
    background-color: rgba(0,0,0,.4);
    box-sizing: border-box;    
    font-family: 'Titulo',helvetica,verdana,sans-serif;
    font-size: 17px;
    border-left: 3px solid rgba(255,255,255,1);
    border-bottom: 3px solid rgba(255,255,255,1);
    cursor: pointer;
    z-index: 5;     
    width: 140px;
    text-align: center;
    padding: 10px;
    display: block;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.botonBannerEnlase:hover{            
    background:rgba(255,255,255,1);
    color: rgba(47,101,53,1);
}
.anteriorBanner, .siguienteBanner {    
    cursor: pointer;
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 0px;
    text-align: center;
    line-height: 40px;
    box-sizing: border-box;
    color: rgba(47,101,53,1);
    font-weight: bold;
    font-size: 15px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    z-index: 6;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.anteriorBanner{
    right: 55px;
}
.imgBanner{
    
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;



    width:100%; 
    height: 600px;  
    z-index: 4;
    position: absolute;
}
.siguienteBanner {
    right: 10px;
}
.anteriorBanner:hover, .siguienteBanner:hover {
    background-color:rgba(47,101,53,.8);
    color: rgba(255,255,255,1);
}
.informacionBanner {
    position: relative;
    width: 45%;
    margin-top: 8%;
    height: auto;
    z-index: 5;         
    padding: 20px;
    box-sizing: border-box;
    left:-200%;
    color: rgba(255,255,255,1);
    -webkit-border-radius: 15px 0px;
    -moz-border-radius: 15px 0px;
    border-radius: 15px 0px;
}
.textoBanner {     
    position: relative;
    width: 100%;   
    font-family: 'Principal',helvetica,verdana,sans-serif;
    z-index: 5;
    font-size: 17px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000000;
}
.tituloBanner {
    width: 100%;    
    font-size: 50px; 
    position: relative;
    font-family: 'Titulo',helvetica,verdana,sans-serif;
    z-index: 5;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #000000;
}
.botonesBanner{
    width: 100%;
    padding:0px 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    bottom: 45px;
    z-index: 5;
}
.bullet{
    cursor: pointer;
    height: 17px;
    width: 17px;
    margin: 0 5px;
    background-color:rgba(255,255,255,.4);
    border-radius: 50%;   
    transition: background-color 0.6s ease;
    border:2px solid rgba(255,255,255,1);
}
.botonactivoBanner, .botonBanner:hover {
    background-color:rgba(245,0,0,1);
}
.moverIActualBanner{
    animation: moverIActual 0.7s ease-in-out;
    animation-fill-mode: forwards;
}
.moverISiguienteBanner{
    animation: moverISiguiente 0.7s ease-in-out;
    animation-fill-mode: forwards; 
}
@keyframes moverIActual{
    from{left:0; opacity:1;} to { left:-100%; opacity:1;}
}
@keyframes moverISiguiente{
    from{ left:100%; opacity:1;} to {left:0%; opacity:1;}
}
.moverDActualBanner{
    animation: moverDActual 0.7s ease-in-out;
    animation-fill-mode: forwards;
}
.moverDSiguienteBanner{
    animation: moverDSiguiente 0.7s ease-in-out;
    animation-fill-mode: forwards; 
}
@keyframes moverDActual{
    from{ left:0; opacity:1;} to { left:100%; opacity:1; }
}
@keyframes moverDSiguiente{
    from{left:-100%; opacity:1;} to { left:0%; opacity:1;}
}
/*Textos*/
.moverDTexto{
    animation: moverDTexto 1.5s ease-out;
    animation-fill-mode: forwards;
    text-align: center;    
}
@keyframes moverDTexto{
    from{ top:200%; left:45%; transform: translate(15%, 0%); -webkit-transform: translate(15%, 0%);color:rgba(255,255,255,0.1);}
    to{ top:10%; left:45%; transform: translate(15%, 0%); -webkit-transform: translate(15%, 0%);color:rgba(255,255,255,1)}
}
.moverITexto{
    animation: moverITexto 1.2s ease-out;
    animation-fill-mode: forwards;
    text-align: center;
}
.moverITexto .botonBannerEnlase, .moverDTexto .botonBannerEnlase ,.moverCTexto .botonBannerEnlase {
    margin: 0 auto;
} 

/*@keyframes moverITexto{
    from{left:7%; top:-200%; color:rgba(255,255,255,0.1);} to {left:7%; top:25%; color:rgba(255,255,255,1); }
}*/
@keyframes moverITexto{
    from{ top:200%; left:0%; transform: translate(15%, 0%); -webkit-transform: translate(15%, 0%);color:rgba(255,255,255,0.1);}
    to{ top:5%; left:0%; transform: translate(15%, 0%); -webkit-transform: translate(15%, 0%);color:rgba(255,255,255,1)}
}
.moverCTexto{
    animation: moverCTexto 1.5s ease-out;
    animation-fill-mode: forwards;
    text-align: center;
}
@keyframes moverCTexto{
    from{ left:50%; top:200%; transform: translate(-50%, 0%); -webkit-transform: translate(-50%, 0%); color:rgba(255,255,255,1);}
    to{ left:50%; top:5%; transform: translate(-50%, 0%); -webkit-transform: translate(-50%, 0%); color:rgba(255,255,255,1) }
}
#contenedorBusquedaUbicacion , #contenedorBusquedaRazon, #contenedorBusquedaUbicacionH , #contenedorBusquedaRazonH 
, #contenedorBusquedaUbicacionM , #contenedorBusquedaRazonM{   
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute;
    padding: 10px;
    box-sizing: border-box;
    width: 300px;
    height: auto;
    border-radius: 5px; 
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.3);    
    background: rgba(255,255,255,1);
    z-index: 80;
}
#contenedorBusquedaUbicacionM , #contenedorBusquedaRazonM{  
    width: 280px;
}
#contenedorItemBI{
    width: 35%;
    margin-right: 20px;
    top: 0px;
} #contenedorItemBD{        
    width: 55%;       
}
#itemBusqueda{
    text-align: left;
    width: 100%;
    font-family: 'Principal',helvetica,verdana,sans-serif;
    font-size: 12px;    
    color: rgba(97,97,97,1);
    border-bottom: 1px solid rgba(97,97,97,0.5);
    cursor:pointer;
    font-family: arial,helvetica,verdana,sans-serif; 
    padding: 2px;
    box-sizing: border-box;
}
#itemBusqueda:hover {
    background: rgba(81,110,174,0.1)
}
@media (max-width: 1000px){
    #banner-buscador{
        display: none;
    }
}
@media (max-width: 900px){
    .informacionBanner,
    .tituloBanner,
    .textoBanner,
    .botonBannerEnlase
    {
        transform: skew(0deg);
        -webkit-transform: skew(0deg);
        -moz-transform: skew(0deg);
        -o-transform: skew(0deg);
    }
}
@media (max-width: 700px){
    .botonBannerEnlase{
        font-size: 15px;  
        padding: 5px ;
        margin-left: 0;  
    }
    .informacionBanner {    
        width: 100%;
        padding:30px 5%;
        left:0;
    }
    .textoBanner {     
        font-size: 20px;
        margin: 5px 5px 20px 5px;
    }
    .tituloBanner {     
        font-size: 30px;
        margin:0;
    }
    .anteriorBanner, .siguienteBanner {
        font-size: 15px;
        padding: 0px 8px;
    }
}
@media (max-width: 450px){
     .anteriorBanner, .siguienteBanner {
        font-size: 15px;
        padding: 0px;
    }
}