*{
    margin:0;
    padding: 0;    
}
#c-slider{
    width: 100%;
    position: relative;
    overflow: hidden;
    /*background: linear-gradient(to bottom, #1a5ca8, #081b4e);*/
}
#c-slider img{
    width: inherit;
    height: inherit;
    border: inherit;
    border-radius: inherit;
    margin: 0;
}
/*#sliderLogo img{
    position: absolute;
    border: block;
    left: 38%;
    height: 100%;
    opacity: 0.2;
    padding: 5%;
}*/
#slider{
    display: flex;
    width: 400%;
}
#contenedorslider{
    position: relative;
    width: 100%;
    height: 100%;
    min-height: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
#centrado{
    margin: 0 auto;
    max-width: 1000px;
}
#slider img{
    display: absolute;
    display: block;
    margin-top: 0px;
    width: 100%;
    height: auto;
}
#btn-prev, #btn-next{
    /*width: 50px;
    height: 50px;
    background: rgba(254,254,254,0.1);
    border-radius:50%;*/
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 40px;
    font-size: 75px;
    text-align: center;
    cursor: pointer;
    color: #000;
}
/*#btn-prev:hover, #btn-next:hover{
    background: rgba(0,0,0,.2);
}*/
#btn-prev{
    left: 0px;
}
#btn-next{
    right: 0px;
}
/****************GENERALES**********************/
#contenedorslider a{
    width: 120px;
    color: black;
    text-decoration: none;
}
#contenedorslider a:hover{
    background: none;
    color: gray;
}
#contenedorslider h2{
    position: absolute;
    color: #FFF;
    margin-top: 10%;
    font-size: 35px;
    width: 50%;
    animation-name: anima-title;
    animation-duration: 5s;
    animation-iteration-count: 1;
    text-shadow: 1px 1px #000;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 1px;
    padding: 10px;
}

#contenedorslider p{
    position: relative;
    font-size: 25px;
    padding: 10px;
    width: 100%;
    max-width: 500px;
    animation-name: anima-p;
    animation-duration: 5s;
    animation-iteration-count: 1;
    margin-bottom:20px;
}
/************ANIMACIONES****************************/
@keyframes aparecer{
    50%{opacity:1.0;}
    100%{opacity:1.0;}
}
@keyframes anima-title{
    0%{transform: translateX(100px); opacity: 0;}
    40%{transform: translateX(0); opacity: 1;}
    100%{transform: translateX(0); opacity: 1;}
}
@keyframes anima-p{
    0%{transform: translateY(100px); opacity: 0;}
    40%{transform: translateY(0); opacity: 1;}
    100%{transform: translateY(0); opacity: 1;}
}
/***************MEDIA**********************************/
@media (min-width:500px){
    /*#c-slider{max-height: 500px}*/
    #contenedorslider h2{ font-size:30px; }
}
@media (min-width:800px){
    
}
@media (min-width:1024px){
    #c-slider{max-height: 600px}
    #contenedorslider h2{font-size:40px;}
    /*#contenedorslider img{margin-top:0;}*/
}
@media (min-width:1600px){
    #c-slider{max-height: 700px}
    /*#contenedorslider img{margin-top:0px;}*/
    #contenedorslider h2{font-size:50px;}

}