/*background*/
div#slideshow .background1 {
    background-image: url(../img/banners/banner-principal-rinaldo-moreira.png);
}

div#slideshow .background2 {
    background-image: url(../img/banners/bannerrinaldo2.png);
}

div#slideshow .background1,
.background2,
.background3 {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    position: relative;
    z-index: -2;
}

/*container*/
div.slideshow div.myslide {
    max-width: 100%;
    max-height: 100vh;
    position: relative;
    margin: auto;
}

/*hide image*/

div.slideshow div.myslide {
    display: none;
}

div.slideshow div.number {
    color: #f2f2f2;
    font-size: 12px;

    padding: 8px 12px;
    position: absolute;
    top: 0
}



/*dots*/
div#dots {
    text-align: center;
    margin:0;
    position: relative;
    bottom: 50px;
    z-index: 999;
}

span.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 10px 10px;
    background-color: #4E4E4E;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.8s ease;
}

span.dot.active,
span.dot:hover {
    background-color: #2AACFF;
}

/*buttons-slide*/

div#buttons-slide a.prev,
.next {
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/*buttons position*/
div#buttons-slide a.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* buttons-slide hover*/

div#buttons-slide .prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/*animation*/

div.slideshow div.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}


div h1.text-banner {
    color: #F0F0F0;
    font-weight: normal;

    position: absolute;
    top: 50%;
    left: 15%;
}

@keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

/*text banner*/

#slideshow div.text-banner {
    width: 500px;
    position: absolute;
    bottom: 200px;
    left: 360px;
}
#slideshow h1.text {
    color: #FAFAFA;
    font-size: 2em;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 0px 0px 6px #073A59;
}
#slideshow button.button-banner-principal {
    color: #FAFAFA;
    font-family: 'montserrat';
    font-size: 1em;
    font-weight: 500;
    background-color: #12A2FA;
    border: none;
    border-radius: 4px;
    padding: 15px;
    margin: 50px 0;
}

#slideshow button.button-banner-principal a:link,
.button-banner-principal a:visited {
    color: #FAFAFA;
}
#slideshow button.button-banner-principal a:hover {
    color: #073A59;
}

/*responsivo*/
@media only screen and (max-width: 1600px) {}

@media only screen and (max-width: 1400px) {}

@media only screen and (max-width: 1200px) {
    div#slideshow .text-banner {
        left: 195px;
        bottom: 110px;
    }
}

@media only screen and (max-width: 1000px) {
    div#slideshow .text-banner {
        width: 400px;
        height: 100px;
        left: 150px;
        bottom: 200px;
    }
    div#slideshow h1.text {
        font-size: 1.5em;
    } 
    
    /*dots*/
    div#dots {
        bottom: 50px;
    }
}

@media only screen and (max-width: 600px) {
    div#slideshow .background2 {
        background-image: url(../img/banners/banner-rinaldo2-600.png);
    }
    /*text banner*/
    div#slideshow .text-banner {
        width: 300px;
        height: 100px;
        left: 65px;
    }
    div#slideshow h1.text {
        font-size: 1em;
    }

    /*dots*/



}