/* RODAPE */
.rodape {
    padding-top: 120px;
    padding-bottom: 60px;
    background-image: url(../imagens/rodape_bg.jpg);
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    color: hsla(0,0%,100%,.7);
}

.rodape .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.rodape__col {
    width: 25%;
    padding-right: 15px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.rodape__col:last-child {
    padding-right: 0;
}

.rodape__col__logo {
    width: 100%;
    margin-bottom: 20px !important;
}

.rodape__col__logo img {
    max-width: 100%;
    max-height: 200px;
    display: block;
}

.rodape__col h5 {
    color: #fff;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.rodape__col h5:before {
    position: absolute;
    left: 0;
    content: "";
    bottom: 0;
    width: 50%;
    height: 1px;
    background: #e8e8f0;
}

.rodape__col a {
    margin-bottom: 9px;
    font-weight: 400;
	transition: all .2s ease;	
}

.rodape__col a:hover{
    color: #FFF;
	transition: all .2s ease;	
	padding-left:5px;
}

.rodape__assinatura {
    width: 100%;
    background-color: #0d1e30;
    padding: 10px 0;
    color: #7d7d84;
	border-top: 1px solid #17283a;
}

.rodape__assinatura .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

/* .rodape__assinatura a:hover {
    color: #3195ff;
} */

.rodape__assinatura__imob img {
    display: block;
}

@media (max-width: 768px) {
    .rodape__col {
        width: 100%;
        margin-bottom: 40px;
    }

    .rodape__assinatura .container {
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
    }

    .rodape__assinatura__imob img {
        margin-top: 10px;
    }
}
/* END RODAPE */

.backtop {
    width: 48px;
    height: 48px;
    text-align: center;
    position: fixed;
    bottom: 70px;
    padding: 0;
    line-height: 48px;
    right: 30px;
    z-index: 99999999;
    color: #fff;
/*     background: #3195ff;
    border: 1px solid #3195ff ; */
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateY(20px);
    transition: all .3s ease;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);
}

.backtop:hover {
    cursor: pointer;
/*     background: #3195ff;
    border-color: #3195ff; */
    bottom: 80px;
}

.show {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

/*scrollbar*/
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #3195ff;
    border-radius: 30px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
/*end scrollbar*/


.social{padding: 20px 0;}