/* slider */
@-webkit-keyframes fading { 
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes fading { 
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
.botao a{ width: 100px; padding: 10px; font-size:19px; color: #FFF; background: #006DD9; border-radius: 19px; border: 2px solid #fff; }
.botao a:hover{ width: 100px; padding: 10px; font-size:19px; color: #006DD9; background: #FFF; }

.container_slider { position: relative; width: 100%; margin: 0px 0px auto; z-index: 0; background: #fff; }

.container_slider:hover .prev, .container_slider:hover .next { opacity: 1; }

.container_slider ul { list-style: none; }

.container_slider .slider { width: 100%; -webkit-animation: fading 20s infinite; animation: fading 20s infinite; }
.container_slider .slider img { width: 100%; }

.container_slider .slider .destaque { margin:auto; position: absolute; left: 50%; transform: translate(-50%,-200%); }
.container_slider .slider .destaque h1 { margin:auto; width:900px; color: #006DD9; background: rgba(0, 0, 0, .3); display: table; padding: 5px; font-size: 53px; text-align: center; border-radius:6px; text-shadow: 1px 1px 2px #000; }
.container_slider .slider .destaque p  { width:900px; color: #fff; background: rgba(0, 0, 0, .3); display: table; padding: 5px; font-size: 29px; text-align: center; border-radius:6px; text-shadow: 1px 1px 2px #000; }

.container_slider .container_bullets { position: absolute; left: 50%; transform: translate(-50%,-200%); }

.caption { position: absolute; left: 30%; top: 40%; transform: translate(-20%, -20%); text-align: center; }
.caption h2 { font-size: 39px; font-family: Eras; text-align: center; color: #FFFFFF; font-weight: 600; text-shadow: 1px 1px 3px #222; }


.container_slider .bullets { background: #D6D6D6; border: 2px solid #D6D6D6; display: inline-block; padding: 9px; text-align: center; border-radius: 50%; }
.container_slider .bullets:hover { background: #006DD9; cursor: pointer; }

.container_slider .bullet_activated { background: #006DD9; }

.container_slider .prev { position: absolute; top: 55%; left: 0%; transform: translate(25%,-150%); opacity: 0; border-radius: 50%; }
.container_slider .next { position: absolute; top: 55%; right: 0%; transform: translate(-25%,-150%); opacity: 0; border-radius: 50% }

.container_slider .button_floating { 
    font-size: 29px; 
    width: 40px; height: 40px; 
    line-height: 40px;
    
    color: #006DD9; background: ; 
    border: solid 2px #006DD9;
    
    display: inline-block; 
    text-align: center; 
    overflow: hidden;
    cursor: pointer;
}

.container_slider .button_floating:hover { color: #006DD9; background: #006DD9; }
/* slider */

@media only screen and (max-width: 640px){
    /*** slider ***/
	p { text-align: left; padding: 10px; }
	.container_slider { top: 145px; width: 100%; }
    .container_slider .prev, .container_slider .next { display: none; }
	.container_slider .slider img { width: 100%; height: 300px; }
	
	.container_slider .slider .destaque { transform: translate(-50%,-150%); display: none; }
	.container_slider .slider .destaque h1 { margin:auto; width: 100%; font-size: 19px; display: none;  }
	.container_slider .slider .destaque p  { width:100%; font-size: 19px; display: none;  }
	
	.caption h2 { font-size: 31px; color: #FFFFFF; }
    /*** slider ***/
}