/*rodape*/
.rodape {
  /*background-color: #1f415f;*/
}

.rodape .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 90px 0;
}

.col--1{
  width: 33%;
}

.col--2 {
  width: 16%;
}

.rodape .middletitle {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
}

.rodape .middletitle:after {
  bottom: -10px;
}

.rodape p, .rodape address {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.rodape h4 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 28px;
}

.rodape i {
  /*color: #4ca5bb;*/
  margin-right: 5px;
}

.rodape__links {
  list-style-type: none;
  padding-left: 0px;
}

.rodape__links li{
  margin-bottom: 10px;
}

.rodape__links li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  position: relative;
  padding-left: 10px;
  transform: translateX(0px);
  text-decoration: none;
  transition: .2s;
}

.rodape__links li a:hover {
  transform: translateX(10px);
  /*color: #58bed3;*/
}

.rodape__footer .container{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.rodape__footer img {
  /* display: block; */
}

@media (max-width: 991px) {
  .rodape .container {
	flex-flow: column nowrap;
  }

  .col--1, .col--2 {
	width: 100%;
	margin-top: 20px;
	padding-left: 20px;
  }

  .rodape__footer img {
	margin-top: 10px;
  }
}

@media (max-width: 720px) {
	.rodape h4{margin-bottom: 8px;}
	.rodape .container {padding: 25px 0;}
}
/*end rodape*/