/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

body {
  font-family: 'Roboto Condensed';
}
html {
  scroll-behavior: smooth;
}
button:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
}

button#btn-back-to-top {
  position: fixed;
  bottom: 48px;
  right: 20px;
  display: none;
  z-index: 100000;
  border-radius: 50%;
  background-color: #27ae60;
  color: #fff;
  border: none;
}
button#btn-back-to-top i.fas {
  line-height: unset;
}
button#btn-back-to-top:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 250ms ease-out;
  -o-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}

#contentRich #imageRich{
  margin-top: 10px;
  width: 580px;
  border-radius:15px;
  -webkit-border-radius: 15px!important;
  -moz-border-radius: 15px!important;
  -khtml-border-radius: 15px!important;
}

.form-control {
  background: #ffffff;
  min-height: 62px;
  padding: 1.375rem 2rem;
  border: 1px solid #e0e0e0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  color: #e0e0e0;
}

.form-control::-webkit-input-placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #e0e0e0;
}

.form-control::-moz-placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #e0e0e0;
}

.form-control:-ms-input-placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #e0e0e0;
}

.form-control::-ms-input-placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #e0e0e0;
}

.form-control::placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #e0e0e0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #e0e0e0;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem #c5c5c545;
  box-shadow: 0 0 0 0.2rem #c5c5c545;
}

.pulse:hover {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* ini: Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 1999;
}

#preloader .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.pulsex {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.pulseIcon:hover {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* end: Preloader */

/* Geral */

h1.title {
  color: #2f80ed;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

h1.title.white {
  color: white !important;
}

h1.title strong {
  font-weight: bold;
}

h1.title::after {
  opacity: 1;
  width: 100px;
  position: relative;
  top: 12px;
  margin: 0 auto;
  height: 3px !important;
  border-radius: 2px;
}

a.ver-mais-btn {
  background: #255aa0;
  text-align: center;
  width: 175px;
  font-size: 16px;
  font-weight: 300;
  padding: 12px 0;
  color: white;
  border-radius: 5px;
  border: 2px solid #255aa0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-top: 2.5rem;
  font-weight: 500;
}

a.ver-mais-btn:hover {
  background: transparent;
  color: #255aa0;
}

a.ver-mais-btn.white {
  background: white;
  color: #2f80ed;
  border: 2px solid white;
}

a.ver-mais-btn.white:hover {
  background: transparent;
  color: white;
}

.owl-theme .owl-dots .owl-dot span {
  background: white !important;
  width: 13px !important;
  height: 13px !important;
  margin: 1.5rem 3px 0 !important;
  -webkit-transition: 0.1s !important;
  -o-transition: 0.1s !important;
  transition: 0.1s !important;
  border: 1px solid #27ae60;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #27ae60 !important;
}

.owl-theme .owl-dots .owl-dot.active span {
  width: 21px !important;
}

.go-back-btn {
  color: #2f80ed;
  border: 1px solid #2f80ed;
  font-weight: 500;
  border-radius: 5px;
  height: 40px;
  width: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-top: 2rem;
}
.go-back-btn:hover {
  background: #2f80ed;
  color: white;
}

.pagination {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.pagination .page-item .page-link {
  border: none;
  border-radius: 3px;
  padding: 0.5rem 0.8rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin: 0 2px;
  color: #4f4f4f;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background: #27ae60;
  border-color: unset;
  color: white;
}

/* interna */

section.interna section.noticia_detail img.img-interna-new {
  max-width: 100%;
  display: block;
  margin: 0.5rem auto 2.5rem;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 20px;
}

section.interna section.noticia_detail .content h2 {
  font-size: 25px;
  font-weight: bold;
  margin: 0.5rem 0 1.5rem;
  color: #2f80ed;
}

section.interna section.noticia_detail .content p, .content li {
  color: #828282;
}

section.interna section.noticias_list .news-item img {
  width: 225px;
  height: 170px;
}

/* header */

header {
  background-color: #ffffff;
}

header .nav-link {
  display: block;
  padding: 0.2rem 0.5rem !important;
  color: #888888;
  text-transform: uppercase;
  font-size: 16px;
  /*  line-height: 16px;*/
}

header .navbar-nav .nav-item:hover {
  color: #2f80ed;
}

header .container-header {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

@media (min-width: 992px) {
  header .navbar-expand-lg .navbar-collapse {
    display: block !important;
  }
}

header .navbar-nav .nav-item.active .nav-link::after,
header .navbar-nav .nav-item:hover .nav-link::after,
h1.title::after,
.item p::before {
  content: '';
  display: block;
  height: 2px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-position: center;
  background: #27ae60;
  margin-top: 0rem;
  position: relative;
  right: 0;
  bottom: -2px;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

header .navbar-nav .nav-item .nav-link::after,
h1.title::after,
.item p::after {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.item p::before {
  width: 30px;
  height: 4px;
  position: relative;
  top: -8px;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.item:hover p::before {
  opacity: 1;
}

header nav.navigation-icons .item p {
  text-align: center;
  color: white;
  font-size: 0.8rem;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

header .header-navigation ul.network-list {
  margin-bottom: 2rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

header .header-navigation ul.network-list li {
  list-style: none;
  margin-left: 15px;
}

header .header-navigation ul.network-list svg.social-icons:hover path,
header .header-navigation ul.network-list li.search .input-group-text:hover {
  fill: #27ae60;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background: #27ae60;
  border: 1px solid #27ae60;
}

header .header-navigation ul.network-list li.search .input-group {
  position: relative;
}

header .header-navigation ul.network-list li.search .input-group-text {
  border: 1px solid #2f80ed;
  background: #2f80ed;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

header .header-navigation ul.network-list li.search input {
  min-height: 28px;
  height: 28px;
  padding: 0.3rem 0 0.3rem 0.8rem;
  font-weight: 300;
  border-radius: 5px 0 0 5px;
  font-size: 14px;
  color: #1f191a;
  z-index: 2;
  border: 1px solid #e0e0e0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

header
  .header-navigation
  ul.network-list
  li.search
  .form-control:focus
  ~ .covered {
  -webkit-box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

header .header-navigation ul.network-list li.search .covered {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px 0 0 5px;
  z-index: 1;
}

header
  .header-navigation
  ul.network-list
  li.search
  input::-webkit-input-placeholder {
  font-size: 14px;
  color: #bdbdbd;
}

header .header-navigation ul.network-list li.search input::-moz-placeholder {
  font-size: 14px;
  color: #bdbdbd;
}

header
  .header-navigation
  ul.network-list
  li.search
  input:-ms-input-placeholder {
  font-size: 14px;
  color: #bdbdbd;
}

header
  .header-navigation
  ul.network-list
  li.search
  input::-ms-input-placeholder {
  font-size: 14px;
  color: #bdbdbd;
}

header .header-navigation ul.network-list li.search input::placeholder {
  font-size: 14px;
  color: #bdbdbd;
}

header nav.navigation-icons {
  border-top: 3px solid #27ae60;
  -webkit-box-shadow: 0 -3px 0 #f2c94c;
  box-shadow: 0 -3px 0 #f2c94c;
  background: #2f80ed;
}

header nav.navigation-icons .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header nav.navigation-icons .item a {
  width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#215aa7),
    color-stop(50.52%, rgba(47, 128, 237, 0))
  );
  background: -o-linear-gradient(top, #215aa7 0%, rgba(47, 128, 237, 0) 50.52%);
  background: linear-gradient(180deg, #215aa7 0%, rgba(47, 128, 237, 0) 50.52%);
  /* height: 200px; */
  background-size: auto 200%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-position: 0 -129px;
}

header nav.navigation-icons .item a:hover {
  background-position: 0 0px;
}

header nav.navigation-icons .item img {
  display: block;
  height: 3em;
  margin: 1.5rem auto;
}
header nav.navigation-icons .item:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#215aa7),
    color-stop(50.52%, rgba(47, 128, 237, 0))
  );
  background: -o-linear-gradient(top, #215aa7 0%, rgba(47, 128, 237, 0) 50.52%);
  background: linear-gradient(180deg, #215aa7 0%, rgba(47, 128, 237, 0) 50.52%);
}
header .owl-carousel .owl-item img {
  width: auto;
}
header .owl-carousel .owl-prev,
header .owl-carousel .owl-next {
  position: absolute;
  top: 40%;
}
header .owl-carousel .owl-prev {
  left: -12px;
}
header .owl-carousel .owl-next {
  right: -12px;
}
header .owl-carousel .owl-prev i,
header .owl-carousel .owl-next i {
  font-size: 36px;
  color: #ffffff;
}
/* dropdown */

.custom-dropdown .btn:active,
.custom-dropdown .btn:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none;
}

.custom-dropdown .btn.btn-custom {
  border: 1px solid #efefef;
}

.custom-dropdown .dropdown-link {
  color: #888;
  display: inline-block;
  padding: 8px 15px;
  position: relative;
}
.custom-dropdown .dropdown-link:after {
  content: '';
}

.custom-dropdown .dropdown-item {
  font-size: 14px;
  color: #888;
  border-bottom: 1px solid #efefef;
  padding-top: 10px;
  padding-left: 15px;
  padding-bottom: 10px;
  position: relative;
}
.custom-dropdown .dropdown-item:before {
  content: '';
  position: absolute;
  width: 0px;
  height: 100%;
  left: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  background: #007bff;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.custom-dropdown .dropdown-item:last-child {
  border-bottom: none;
}
.custom-dropdown .dropdown-item:hover {
  color: #000;
  padding-left: 20px;
}
.custom-dropdown .dropdown-item:hover:before {
  opacity: 1;
  visibility: visible;
  width: 6px;
}

.custom-dropdown .dropdown-menu {
  border: 1px solid transparent;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  margin-top: 0px !important;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  left: 0 !important;
  -webkit-transition: 0.3s margin-top ease, 0.3s opacity ease,
    0.3s visibility ease;
  -o-transition: 0.3s margin-top ease, 0.3s opacity ease, 0.3s visibility ease;
  transition: 0.3s margin-top ease, 0.3s opacity ease, 0.3s visibility ease;
  visibility: hidden;
}
.custom-dropdown .dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  margin-top: 20px !important;
}

.custom-dropdown.show .dropdown-link {
  color: #fff;
  background: #007bff;
}

/*fim dropdown*/


#municipios .card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: #4f97f8 !important;
    color: white !important;
    font-weight: 100 !important;
}




/* gackground cinza */

section.gray-bg {
  background: url('../img/bg-noticias.png');
  background-size: cover;
  padding-bottom: 1rem;
}

/* Noticias em destaque */

section.destaque-news {
  padding: 3rem 0;
}

section.destaque-news .principal .news-item {
  overflow: hidden;
  border-radius: 0 15px 0 15px;
}

section.destaque-news .principal .news-item {
  position: relative;
}

section.destaque-news .principal .news-item p {
  color: white;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

section.destaque-news .principal .news-item img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 355px;
  width: 100%;
  border-radius: 0 15px 0 15px;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

section.destaque-news .principal .news-item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

section.destaque-news .principal .news-item .content {
  height: 100px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.5rem 2.5rem;
  background: rgba(47, 128, 237, 0.8);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

section.destaque-news .principal .news-item:hover .content {
  background: #80909575;
}

section.destaque-news .news-item .content p, .content li {
  font-size: 1.1rem;
  line-height: 20px;
  margin-top: 6px;
}

section.destaque-news .news-item .content small {
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  background: #27ae60;
  display: inline-block;
  line-height: 8px;
  border-radius: 0 5px 0 5px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

section.destaque-news .secundario .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.destaque-news .secundario .news-item .content {
  position: relative;
}

section.destaque-news .secundario .news-item .content a.see_more {
  position: absolute;
  bottom: 0;
  font-size: 14px;
  color: #255aa0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

section.destaque-news .secundario .news-item p {
  background: transparent !important;
  color: #4f4f4f;
  min-height: 80px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

section.destaque-news .secundario .news-item img {
  width: 175px;
  border-radius: 0 15px 0 15px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 166px;
  margin-right: 1.5rem;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  width: 15em;
}

section.destaque-news .secundario hr {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  border: 0;
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
}

section.destaque-news .secundario .news-item:hover small {
  background: #2f80ed;
}

section.destaque-news .secundario .news-item:hover a,
section.destaque-news .secundario .news-item:hover p {
  color: #2f80ed;
}

/* nav cards */

section.nav-cards {
  padding: 2rem 0 3rem;
}

section.nav-cards .item {
  background: #2f80ed;
  height: 255px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0 15px 0 15px;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

section.nav-cards .item:hover {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
  background: #255aa0;
}

section.nav-cards .item p {
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
}

section.nav-cards .item p span {
  font-weight: 300;
}

section.nav-cards .item img {
  margin: 0 auto 2rem;
  display: block;
}

/* TV Femurn */

section.tv-femurn {
  padding: 7rem 0;
  background: url('../img/bg-tv_femurn.png');
  background-size: 100% 100%;
  margin-top: -6rem;
}

section.tv-femurn .item iframe {
  max-width: 450px;
  margin: 0 auto;
  display: block;
}

/* Painel Municipal */
section.painel-municipal {
  padding: 3rem 0;
}

section.painel-municipal .row .card-news {
  padding: 20px 10px 10px;
  border-radius: 0 15px 0 15px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

section.painel-municipal .row .card-news:hover {
  background: #809095;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

section.painel-municipal .row .card-news:hover p,
section.painel-municipal .row .card-news:hover h2,
section.painel-municipal .row .card-news:hover a {
  color: white;
}

section.painel-municipal .row .card-news:not(:last-child) {
  border-right: 1px solid #f2f2f2;
}

section.painel-municipal .card-news img {
  border-radius: 0 15px 0 15px;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-box-shadow: 3px 3px 6px #00000030;
  box-shadow: 3px 3px 6px #00000030;
}

section.painel-municipal .card-news small {
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  background: #27ae60;
  display: inline-block;
  line-height: 10px;
  border-radius: 0 5px 0 5px;
  margin: 10px 0;
}

section.painel-municipal .card-news h2 {
  font-size: 15px;
  min-height: 54px;
  font-weight: bold;
  color: #2f80ed;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

section.painel-municipal .card-news p {
  color: #828282;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin-top: 15px;
  padding-top: 5px;
  min-height: 80px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

section.painel-municipal .card-news p::before {
  content: '';
  height: 2px;
  width: 21px;
  position: relative;
  top: -5px;
  background: #27ae60;
  border-radius: 25%;
  display: block;
}

section.painel-municipal .card-news .content a {
  display: table;
  margin-left: auto;
  color: #255aa0;
  font-size: 14px;
}

/* Galeria */

section.galery {
  padding: 3rem 0;
  /* background: url('../img/bg-galery.png'); */
  /* background-size: 100% 100%; */
  background-color: #f8fbff;
}

section.galery .item {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  height: 270px;
  border-radius: 0 15px 0 15px;
  overflow: hidden;
}

section.galery .item img {
  height: 270px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

section.galery .item:hover .content {
  opacity: 1;
}

section.galery .item:hover img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

section.galery .item .content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.6rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.galery .item .content h2 {
  color: white;
  font-size: 16px;
  line-height: 18.75px;
}

section.galery .item .content small {
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  background: #2f80ed;
  display: inline-block;
  line-height: 8px;
  border-radius: 0 5px 0 5px;
  margin-bottom: 8px;
  width: 58px;
  text-align: center;
}

section.galery .owl-carousel .owl-stage {
  margin: 7px;
}

div.regioesAcordeon, table.tabelaInterna{
  width: 500px;
  margin: 0 auto;
}




div.regioesAcordeon div.card-header h5{
    font-size: 18px;
    cursor: pointer;
    text-transform: uppercase;
    margin: 0;
}

div.regioesAcordeon span.float-right{
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
}

div.regioesAcordeon span.float-right i{
  margin-top: 2px;
}

/* Section Banner Anuncio */

section.banner {
  padding: 2rem 0 4rem;
}
.btn-fecha-banner {
  width: 40px;
  height: 40px;
  background: url('../img/icons/btn-close.png') no-repeat center;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 2;
}
/* Footer Footer */

section.footer {
  padding: 4% 2%;
}

footer {
  background: #2f80ed;
  width: 100%;
}

footer p.texto-footer {
  color: #fff !important;
  font-size: 14px;
  font-weight: 300;
  text-align: right;
  margin-bottom: 0;
  padding-left: 10px;
}

footer section.info .row {
  height: 92px;
}

footer section.info p svg {
  margin-right: 5px;
}

footer section.copyright {
  background: #255aa0;
  padding: 1rem;
}

footer .footer-logo {
  position: absolute;
  left: 0;
  top: -87px;
}
footer p.texto-footer span {
  font-size: 1.7rem;
  margin-right: 0.9rem;
}
@media (max-width: 1400px) {
  header .nav-link {
    font-size: 12px;
    line-height: 12px;
  }
}

@media (max-width: 990px) {
  header .container-header {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    height: 110px;
    padding-right: 66px !important;
  }
  header .container-header .navbar-brand img {
    width: 110px;
  }
  header .navbar-collapse {
    position: absolute;
    left: 0px;
    background: white;
    width: 100%;
    z-index: 10;
    top: 120px;
    -webkit-box-shadow: 0 10px 10px #00000040;
    box-shadow: 0 10px 10px #00000040;
  }
  header .header-navigation ul.network-list {
    margin-bottom: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 1rem;
    padding-left: 0;
  }
  .navbar-nav {
    margin-top: 2rem;
  }
  .navbar-nav li {
    padding-bottom: 1rem;
    text-align: center;
  }
  /*.navbar-nav li::after {
        content: '';
        display: block;
        height: .5px;
        align-items: center;
        justify-content: center;
        background-position: center;
        background: rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    } */
  header .navbar-nav .nav-item.active .nav-link::after,
  header .navbar-nav .nav-item:hover .nav-link::after {
    width: 30px;
    margin: 0 auto;
    bottom: -5px;
  }


  #contentRich #imageRich{
    width: 50% !important;
  }

}


@media (max-width: 767px) {
  section.destaque-news .principal .news-item .content {
    padding: 0.5rem 1.5rem;
    height: unset;
  }
  section.destaque-news .news-item .content p {
    margin-bottom: 0;
  }
  section.destaque-news .principal .news-item img {
    height: auto;
  }
  section.destaque-news .secundario .news-item img,
  section.interna section.noticias_list .news-item img {
    width: 120px;
    height: 90px;
    margin-right: 1rem;
  }
  section.destaque-news .secundario .news-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  section.destaque-news .secundario .news-item p {
    padding-top: 20px;
    position: relative;
    bottom: 15px;
  }
  header nav.navigation-icons .item {
    height: 150px;
  }
  header nav.navigation-icons .item img {
    /*margin: 2.5rem auto 1.5rem;*/
  }
  header nav.navigation-icons .item a {
    height: inherit;
    background-position: 0 -150px;
  }
  section.nav-cards .item {
    height: 180px;
  }
  section.nav-cards .row > div {
    padding: 0 8px;
  }
  section.nav-cards .item img {
    height: 60px;
    margin: 1rem auto;
  }
  section.nav-cards .item:hover {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    border-radius: 25px;
  }
  section.gray-bg {
    padding-bottom: 1rem;
  }
  
  #contentRich #imageRich{
    width: 90% !important;
  }

  img#imgBaixeApp {
      width: 100%;
  }
  div.regioesAcordeon, table.tabelaInterna {
    width: 100%;
  }
  
  div.regioesAcordeon table th{
    font-size: 14px;
  }
  div.regioesAcordeon div.card-header h5{
      font-size: 14px;
  }
  div.regioesAcordeon span.float-right {
      font-size: 13px;
      text-transform: uppercase;
  }
  section.tv-femurn,
  section.galery {
    background-size: cover;
    padding: 8rem 0 5rem;
  }
  section.painel-municipal .card-news img {
    height: 125px;
  }
  section.painel-municipal .card-news p::before {
    height: 3px;
    width: 15px;
  }
  section.painel-municipal .card-news .content a {
    margin-left: unset;
  }
  section.painel-municipal .row .card-news {
    padding: 20px 15px;
  }
  footer section.info .row {
    height: 180px;
  }
  footer .footer-logo {
    position: relative;
    height: 95px;
    top: -30px;
    /* left: 10px; */
  }
  footer .info-detail p {
    padding-bottom: 10px;
  }
  footer p {
    text-align: center;
    padding-left: 0;
  }
  footer .info-detail:not(:last-child) p {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(15, 80, 49, 0.28);
  }

  footer section.copyright p {
    text-align: center;
    width: 100%;
  }
  section.interna section.noticia_detail img.img-interna-new {
    height: 300px;
  }

  section.interna section.noticia_detail img.imgInterna {
    width: 600px;
  }
  footer p.texto-footer {
    /*    font-size: 0.8rem;*/
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 999px) {
  section.interna section.noticia_detail img.imgInterna {
    width: 100%;
  }

}

@media (max-width: 499px) {
  img.imgExpresidentes{
     width: 50%;
     margin-top: 18px;
  }

  section.interna section.noticia_detail img.imgInterna {
    width: 100%;
  }
  
}


.galeria-foto {
  height: 260px;
  -o-object-fit: cover;
  object-fit: cover;
}
