/* VARIÁVEIS */
@import url("https://fonts.googleapis.com/css?family=Cairo&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap");

:root {
  --main-primary-color: rgb(255, 255, 255);
  --main-secondary-color: #047bc1;
  --main-ternary-color: rgb(0, 36, 56);
  --main-padding: 15px;
}

::-webkit-scrollbar {
  background-color: rgba(0, 0, 0, 0.158);
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #919191;
  border-radius: 16px;
}

/* HELPERS */
/* Espaçamento */
.espaco10 {
  clear: both;
  height: 10px;
}

.espaco15 {
  clear: both;
  height: 15px;
}

.espaco20 {
  clear: both;
  height: 20px;
}

.espaco30 {
  clear: both;
  height: 30px;
}

.espaco40 {
  clear: both;
  height: 40px;
}

.espaco50 {
  clear: both;
  height: 50px;
}

.espaco60 {
  clear: both;
  height: 60px;
}

.espaco70 {
  clear: both;
  height: 70px;
}

.espaco80 {
  clear: both;
  height: 80px;
}

/* Ícones */
.mdil {
  padding: 0px;
}

.mdil-60px::before {
  font-size: 58px;
}

.mdil-75px::before {
  font-size: 73px;
}

.mdil-80px::before {
  margin-left: 2px;
  line-height: 80px;
  font-size: 60px;
}

.btn-primary {
  background-color: #e50e16;
  border-color: transparent;
}

.btn-primary:hover {
  background-color: #e50e16;
  filter: brightness(1.1);
}

.btn-primary:active {
  background-color: #e50e16;
  filter: brightness(1.1);
}


/* CONTEÚDO */
/* Body */
body {
  font-family: "Cairo", sans-serif;
  color: var(--main-ternary-color);
  min-height: 100vh;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-family: "Cairo", sans-serif;
}

/* Navbar */
nav {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  transition: 0.5s;
  -webkit-box-shadow: 0px 0px 24px -6px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 24px -6px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 24px -6px rgba(0,0,0,0.75);
}

nav .navbar-transparent {
  color: white;
}

nav .navbar-info {
  padding-top: 9px;
  padding-bottom: 9px;
  color: white;
}

nav .navbar-info .row {
  width: 100%;
}

nav .navbar-info .navbar-info-content {
  margin-top: auto;
  margin-bottom: auto;
}

nav .navbar-info p {
  margin-bottom: 0px;
  font-size: 14px !important;
  font-weight: lighter;
}

nav .navbar-info a {
  text-decoration: none;
  transition: 0.15s;
}

nav .navbar-info a:hover {
  cursor: pointer;
  color: rgb(202, 230, 255);
}

nav .navbar-info .float-right {
  margin: 0px;
  padding: 0px;
}

nav .navbar-info .float-right .row {
  margin: 0px;
  padding: 0px;
}

nav .navbar-info .float-right .col-4 {
  padding: 0px;
}

nav .navbar-info .float-right .col-8 {
  padding: 0px;
}

nav .navbar-info .float-right .col-md-6 {
  padding: 0px;
}

nav .navbar-content {
  border-top: 1px solid rgba(255, 23, 23);
}

nav .navbar-content .nav-icons {
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
}

nav .navbar-content .nav-icons img {
  margin-left: 10px;
}

nav .navbar-content ul {
  padding: 0px;
  height: 100%;
  margin: 0px;
  list-style: none;
  display: flex;
}

nav .navbar-content ul li {
  margin-right: 20px;
}

nav .navbar-content ul li a {
  text-decoration: none;
  color: #5f5f5f;
  transition: all 0.25s ease-out;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid transparent;
}

nav .navbar-info,
nav p,
nav span,
nav a,
nav ul,
nav li {
  color: #0087aa;
}

.home nav .navbar-info,
.home nav p,
.home nav .navbar-content ul li a,
.home nav a,
.home nav ul,
.home nav li,
.home .mdil {
  color: #5f5f5f;
}

nav a:hover {
  color: rgb(255, 23, 23) !important;
}

nav .navbar-content ul li a:hover {
  color: rgb(255, 23, 23) !important;
}

nav .navbar-content ul a.active {
  border-bottom: 2px solid rgb(255, 23, 23);
}

.nav-link {
  display: block;
  padding: 0px 0px;
}

#mobile-button {
  border-bottom: 2px solid rgba(255, 23, 23);
  color: rgb(255, 23, 23);
}

#mobile-button a {
  margin-left: auto;
  margin-right: auto;
  color: rgb(255, 23, 23);
}

#mobile-menu {
  position: fixed;
  top: 190px;
  background-image: linear-gradient(to right, white, white, white, transparent);
  width: 100vw;
  padding: 15px;
}

#mobile-menu ul {
  list-style-type: none;
  text-align: left;
  color: #0087aa !important;
  transition: 0.5s;
}

#mobile-menu ul li {
  margin-top: 15px;
}

#mobile-menu a {
  color: #0087aa !important;
}

nav.js-is-sticky {
  background-color: rgb(255, 255, 255) !important;
}

nav.js-is-sticky .navbar-info,
nav.js-is-sticky p,
nav.js-is-sticky span,
nav.js-is-sticky a,
nav.js-is-sticky ul,
nav.js-is-sticky li {
  color: #5f5f5f !important;
}

nav.js-is-sticky #mobile-button span {
  color: rgb(255, 23, 23) !important;
}

nav.js-is-sticky #mobile-button {
  color: rgb(255, 23, 23) !important;
}

nav.js-is-sticky #mobile-menu {
  color: rgb(255, 23, 23) !important;
}

nav.js-is-sticky a:hover {
  color: rgb(255, 23, 23) !important;
}

nav.js-is-stuck {
  background-color: transparent !important;
}

nav .mdil-menu {
  color: rgb(255, 23, 23) !important;
}

/* Home */
#home .container-fluid {
  top: 0;
  width: 100%;
  margin-top: -170px;
  height: 100vh;
  padding: 0px !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#home.smaller .container-fluid {
  top: 0;
  width: 100%;
  height: 450px;
  padding: 0px !important;
  background-position: 0 -300px;
  background-repeat: no-repeat;
  background-size: cover;
}

#home #lightSlider3 {
  top: 0px;
  height: 100vh;
} 

#home #lightSlider3 .sItem {
  height: 100vh;
  background-position: center;
  background-size: cover;
}

#home .cover {
  position: absolute;
  margin-top: 0px;
  background-position: top;
  background-position: center -100px;
}

#home.smaller .cover {
  height: 180px;
}

@media (max-width: 1100px) {
  #home.smaller {
    top: -200px !important;
    position: relative;
  }

  #home.smaller .container-fluid {
    background-position: 0 -250px;
  }
}

@media (max-width: 994px) {
  #home {
    position: relative;
  }

  #home .container-fluid {
    margin-top: 0px;
  }

  nav.navbar {
    padding: 0px !important;
  }

  #home.smaller .container-fluid {
    background-position: 0 -150px;
  }
}

@media (max-width: 690px) {
  #home.smaller {
    top: -200px !important;
    position: relative;
  }
  #home.smaller .container-fluid {
    background-position: 0 -50px;
  }
}

@media (min-width: 1400px) {
  #home.smaller .container-fluid {
    background-position: 0 -400px;
  }
}

@media (min-width: 1800px) {
  #home.smaller .container-fluid {
    background-position: 0 -550px;
  }
}

@media (min-width: 2000px) {
  #home.smaller .container-fluid {
    background-position: 0 -750px;
  }
}

/* Acesso/Serviços */
/* .acesso {
  color: var(--main-ternary-color);
  background-image: none;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  position: absolute;
  top: 22.2%;
  left: 19%;
} */

.acesso {
  /* color: var(--main-ternary-color);
  background-image: url("../../resources/img/bg.jpg");
  background-size: cover;
  background-position: top;
  background-attachment: fixed; */
  position: relative;
  /* bottom: 97px; */
  top: 46px;
}



.acesso .sobre-texto {
  padding: 0px;
}

.acesso h4 {
  color: rgb(255, 255, 255);
  background-color: rgba(0, 50, 124, 0.5);
}

.acesso .acesso-info a {
  text-decoration: none;
  transition: all 0.2s;
}

.acesso .acesso-info p {
  font-weight: lighter;
}

.acesso .acesso-info {
  z-index: 100;
  background-color: #ededed;
  padding-top: 25px;
  padding-bottom: 17px;
  padding-left: 25px;
  padding-right: 25px;
  border-top: 8px solid #00a1be;
  transition: all 0.1s ease-out;
  margin-bottom: 45px;
}

.acesso .acesso-info.green {
  background-color: #e6e6e6;
}

.acesso .acesso-info.yellow {
  background-color: #dfdfdf;
}

.acesso .acesso-info.orange {
  background-color: #d6d6d6;
}

.acesso .acesso-info .info-icon {
  margin-left: 15px;
  border-radius: 200px;
  width: 80px;
  margin-bottom: 20px;
  margin-top: -70px;
  background-size: 0% 0%;
  background-position: center;
  background-image: url("../../resources/img/circle.png");
  background-repeat: no-repeat;
  transition: background-size 0.4s, color 0.5s;
}

.acesso .acesso-info:hover .info-icon {
  background-size: 102% 102%;
  border: 2px solid #e50e16;
  height: 80px;
  background-image: url("../../resources/img/circle-white.png");
}

.acesso .acesso-info:hover .info-icon span::before {
  margin-top: -2px;
}

.acesso .acesso-info span {
  color: white;
  transition: color 0.5s;
}

.acesso .acesso-info h6 {
  color: #e50e16;
  transition: all 0.1s ease-out;
}

/* .acesso .acesso-info:hover{
    background-color: #047BC1;
    color: white !important;
}
*/

.acesso .acesso-info.blue {
  border-top: 8px solid #e50e16;
}

.acesso .acesso-info.blue .info-icon {
  background-color: #e50e16;
}

.acesso .acesso-info.blue h6 {
  color: #e50e16;
}

.acesso .acesso-info.blue h5 {
  color: #e50e16;
}

.acesso .acesso-info:hover.blue span {
  color: #e50e16;
}

.acesso .acesso-info.green {
  border-top: 8px solid #e50e16;
}

.acesso .acesso-info.green .info-icon {
  background-color: #e50e16;
}

.acesso .acesso-info.green h6 {
  color: #e50e16;
}

.acesso .acesso-info.green h5 {
  color: #e50e16;
}

.acesso .acesso-info:hover.green span {
  color: #e50e16;
}

/* .acesso .acesso-info.green:hover{
    background-color: rgb(4, 193, 76);
    color: white !important;
}

*/

.acesso .acesso-info.yellow {
  border-top: 8px solid #e50e16;
}

.acesso .acesso-info.yellow .info-icon {
  background-color: #e50e16;
}

.acesso .acesso-info.yellow h6 {
  color: #e50e16;
}

.acesso .acesso-info.yellow h5 {
  color: #e50e16;
}

.acesso .acesso-info:hover.yellow span {
  color: #e50e16;
}

/* .acesso .acesso-info.yellow:hover{
    background-color: rgb(212, 216, 3);
    color: white !important;
}
*/

.acesso .acesso-info.orange {
  border-top: 8px solid #004365;
}

.acesso .acesso-info.orange .info-icon {
  background-color: #004365;
}

.acesso .acesso-info.orange h6 {
  color: #004365;
}

.acesso .acesso-info:hover.orange span {
  color: #004365;
}

.acesso .acesso-info:hover h5 {
  color: #e50e16;
}

.acesso .acesso-info:hover h6 {
  color: #e50e16;
}

.resultados .acesso-info {
  display: grid;
}

/* Whatsapp Float */
.whatsapp-float {
  position: fixed;
  bottom: 15px;
  right: 50px;
  width: 200px;
  height: 75px;
  overflow: hidden;
  z-index: 1000;
}

.whatsapp-float img {
  position: absolute;
  z-index: 1;
  right: 0;
}

.whatsapp-float p {
  color: #fff;
  opacity: 1;
  width: 150px;
  padding: 7px 0 5px 17px;
  background: #00ce53;
  position: absolute;
  z-index: 0;
  bottom: 22px;
  margin: 0;
  right: 0;
  border-radius: 25px 0 0 25px;
  transform: translateX(-50px);
  transition: all 300ms ease-out;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
}

.whatsapp-float:hover p {
  opacity: 1;
  transform: translateX(-50px);
  transition: all 300ms ease-out;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
}

/* Sobre */
#sobre {
  color: var(--main-ternary-color);
}

#sobre h3 {
  color: #006d95;
}

#sobre {
  color: var(--main-ternary-color);
}

#sobre h3 {
  color: #006d95;
}

#sobre h3 small {
  color: var(--main-ternary-color);
  font-weight: lighter;
  font-size: 60%;
}

#sobre .sobre-info {
  border-top: 2px solid #006d95;
  padding: 20px;
}

#sobre .sobre-body p {
  margin-top: 30px;
}

#sobre .sobre-body h4 {
  color: #006d95;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 30px;
}

#sobre .sobre-body .sobre-info {
  padding: 0px;
}

/* Convênios */
#convenios {
  color: var(--main-ternary-color);
  min-height: 38vh;
}

#convenios h3 {
  color: #e50e16;
}

#convenios h3 small {
  color: var(--main-ternary-color);
  font-weight: lighter;
  font-size: 60%;
}

#convenios .convenio-info {
  border-top: 2px solid #e50e16;
  padding: 20px;
}

#convenios .lSAction > a {
  border-radius: 99px;
  background-color: #00237570;
}

#convenios .lSSlideOuter .lSPager.lSpg > li a {
  background-color: #22222238;
}

#convenios .lSSlideOuter .lSPager.lSpg > li:hover a,
#convenios .lSSlideOuter .lSPager.lSpg > li.active a {
  background-color: #428bca;
}

/* Convenios */

#convenios .convenios-info {
  border-top: 2px solid #006d95;
  padding: 20px;
}

#convenios .input-group-append > button {
  border-radius: 0 5px 5px 0;
}

#convenios .card-img-top {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 130px;
}

/* Unidade */
#unidade {
  color: var(--main-ternary-color);
}

#unidade h3 {
  color: #006d95;
}

#unidade h3 small {
  color: var(--main-ternary-color);
  font-weight: lighter;
  font-size: 60%;
}

#unidade .convenio-info {
  border-top: 2px solid #006d95;
  padding: 20px;
}

#unidade .servico .icon {
  display: inline-block;
  background-color: #006d95;
  width: 86.4px;
  border-radius: 99px;
  margin-bottom: 15px;
}

#unidade .servico span {
  color: #ffffff;
}

#unidade .servico h6 {
  color: #006d95;
}

#unidade .servico ul {
  height: 300px;
  overflow: auto;
  text-align: left;
  list-style: none;
  padding: 15px;
  border-left: 2px solid #006d95;
  color: #006d95;
  background-color: #0088aa0e;
}

/* UNIDADE INFO */

#unidade.info .informacao {
  background-color: #ededed;
  border-left: 4px solid #006d95;
  padding: 15px;
}

#unidade.info .informacao.brighter {
  background-color: #ffffff;
  border-left: 4px solid #0087aa;
}

#unidade.info .informacao span {
  color: #0087aa;
}

#unidade.info .informacao h5 {
  color: #0087aa;
}

#unidade.info .informacao h6 {
  font-weight: lighter;
}

#unidade.info .informacao .exames {
  height: 360px;
  overflow-y: scroll;
}

/* Exames */
#exames {
  color: var(--main-ternary-color);
}

#exames .exames-info {
  border-top: 2px solid #006d95;
  padding: 20px;
}

#exames h3 {
  color: #006d95;
}

#exames h5 {
  color: #006d95;
}

#exames h3 small {
  color: var(--main-ternary-color);
  font-weight: lighter;
  font-size: 60%;
}

#exames .btn-link.focus,
#exames .btn-link:focus,
#exames .btn-link:hover {
  text-decoration: none !important;
  box-shadow: none;
}

#exames .button,
#exames a {
  text-decoration: none !important;
}

#exames .input-group-append > button {
  border-radius: 0 5px 5px 0;
}

.card-text {
  white-space: pre-wrap;
}

#exames .card {
  border: none;
}

#exames .card-header {
  border-bottom: 2px solid #006d95;
  background-color: white;
}

#exames .card-header .btn {
  display: inline-flex;
}

#exames .card-header .btn h5 {
  margin-top: auto;
  margin-bottom: auto !important;
  margin-left: 15px;
}

#exames .card-header .icon {
  min-width: 80px;
  min-height: 80px;
  border-radius: 99px;
  box-shadow: 0px 0px 4px #3636362f;
  background-size: contain;
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
}

#exames .card-body {
  background-color: rgb(247, 247, 247);
}

#exames #info .card-image {
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 350px;
}

/* Equipe */
#equipe {
  /* background: url("../../resources/img/bg-02.png") no-repeat; */
  background-color: #e0e0e0;
  background-position: center;
  background-size: cover;
  color: white;
}

#equipe a {
  color: white;
  text-decoration: none;
}

#equipe .equipe-row .equipe-member {
  margin-bottom: 20px;
}

#equipe .equipe-info {
  border-top: 2px solid rgb(229 14 22);
  padding: 20px;
}

#equipe .equipe-info h3 {
  color: rgb(229 14 22);
}

#equipe .equipe-info h3 small {
  color: rgb(68 68 68);
  font-weight: lighter;
  font-size: 70%;
}

#equipe .equipe-row .equipe-inner-top {
  height: 200px;
  background-position: top !important;
  background-size: cover !important;
}

#equipe .equipe-row .equipe-inner-body {
  height: 200px;
  background-color: #3e3e3e;
  padding: 15px;
}

#equipe .equipe-row .equipe-inner-body.full {
  height: 400px;
  display: flex;
  align-items: center;
}

#equipe .equipe-row .equipe-inner-body.b1 {
  height: 200px;
  background-color: #3e3e3e;
  padding: 15px;
}

#equipe .equipe-row .equipe-inner-body.b2 {
  height: 200px;
  background-color: #3e3e3e;
  padding: 15px;
}

#equipe .equipe-row .equipe-inner-body.b3 {
  height: 200px;
  background-color: #3e3e3e;
  padding: 15px;
}

#equipe .equipe-row .equipe-inner-body h6 {
  font-weight: lighter;
}

#equipe .equipe-row .equipe-inner-body h5,
#equipe .equipe-row .equipe-inner-body h6,
#equipe .equipe-row .equipe-inner-body h4 {
  margin-bottom: 16px;
}

#equipe .lSAction > a {
  border-radius: 99px;
  background-color: #00237570;
}

#equipe .lSSlideOuter .lSPager.lSpg > li a {
  background-color: #22222238;
}

#equipe .lSSlideOuter .lSPager.lSpg > li:hover a,
#equipe .lSSlideOuter .lSPager.lSpg > li.active a {
  background-color: #ffffff;
}

#equipe.info {
  background: #ffffff;
  color: #0087aa;
}

#equipe.info h3 {
  color: #006d95;
}

#equipe.info h3 small {
  color: var(--main-ternary-color);
  font-weight: lighter;
  font-size: 60%;
}

#equipe.info {
  background: #ffffff;
  color: #0087aa;
}

#equipe .equipe-row .equipe-member {
  transition: all 0.2s;
}

#equipe .equipe-row .equipe-member:hover {
  filter: brightness(1.05);
}

#equipe.info .equipe-row .equipe-inner-top {
  border-radius: 0px 15px 0px 0px;
}

#equipe.info .equipe-row .equipe-inner-body {
  display: grid;
  height: 200px;
  padding: 15px;
  border-radius: 0px 0px 0px 15px;
}

#equipe .equipe-row .equipe-member.count .equipe-inner-body {
  color: white;
  border-radius: 0px 10px 0px 10px;
}

#equipe .equipe-row .equipe-member .membro-formacao {
  margin-left: auto;
  margin-right: auto;
  border: 1.5px solid white;
  border-radius: 99px;
  padding: 12px;
  width: fit-content;
  font-weight: normal;
  font-size: 15px;
  transition: all 0.4s;
}

#equipe .equipe-row .equipe-member .membro-formacao:hover {
  background-color: white;
  color: #006d95;
}

/* Modal Equipe */
#modalEquipe .modal-content {
  background-color: #006d95;
  color: white;
}

#modalEquipe .modal-content .equipe-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 25px;
}

#modalEquipe .modal-content .modal-header {
  border: none;
  padding: 25px;
}

#modalEquipe .modal-content .modal-body {
  border: none;
  padding: 25px;
}

#modalEquipe .modal-content .modal-body p {
  white-space: pre-line;
}

#modalEquipe button.close {
  background-color: white;
  padding-bottom: 4px;
  padding-left: 6.5px;
  padding-right: 5px;
  border-radius: 99px;
  border: 2px solid black;
}

#modalEquipe .modal-content .modal-body ul {
  padding: 10px;
  padding-top: 0px;
}

#modalEquipe .modal-content .modal-footer {
  border: none;
  padding: 25px;
  justify-content: center;
}

@media (max-width: 991px) {
  #modalEquipe .modal-content .equipe-img {
    min-height: 450px;
    background-position: center top;
    border-radius: 25px;
    transform: scale(0.9);
  }
}

/* Notícias */
#noticias .noticias-info {
  padding: 20px;
  border-top: 2px solid #e50e16;
  color: #006d95;
}

#noticias #pagination .page-item .page-link:hover {
  color: #006d95 !important;
}

#noticias #pagination .page-item.active .page-link {
  background-color: #006d95;
  color: white !important;
}

#noticias .noticias-info h3 {
  color: #e50e16;
}

#noticias .noticias-info .row .text-left {
  width: 100%;
}

#noticias .noticias-info h3 small {
  font-weight: lighter;
  color: var(--main-ternary-color);
  font-size: 60%;
}

#noticias .noticias-info p {
  color: var(--main-ternary-color);
  white-space: pre-line;
}

#noticias .noticias-header {
  padding: 0px;
}

#noticias .noticias-header .noticia-header {
  height: 300px;
  transition: 0.4s;
}

#noticias .noticias-header a {
  text-decoration: none;
}

#noticias .noticias-header h4 {
  color: white;
  text-decoration: none;
  position: relative;
  z-index: 65;
  padding: 20px;
  background-color: #004365d3;
}

#noticias .noticias-header .noticia-header:hover {
  filter: brightness(0.8);
}

#noticias .noticias-row a {
  text-decoration: none;
}

#noticias .noticias-row a:hover h5 {
  color: #3e3e3e;
}

#noticias .noticia-header {
  height: 230px;
  background-position: center;
  background-size: cover;
}

#noticias .noticia-main .noticia-body {
  height: auto;
  padding: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #006d95;
  color: white;
  margin-bottom: 20px;
  transition: all 0.2s;
}

#noticias .small .noticia-header {
  height: 100px;
}

#noticias .small .noticia-body {
  height: auto;
}

#noticias .noticia-main .noticia-header {
  transition: all 0.2s;
  filter: brightness(1);
}

#noticias .noticia-main .noticia-header:hover {
  filter: brightness(0.8);
}

#noticias .noticia-main .noticia-body h6 {
  color: white;
}

#noticias .noticia-main .noticia-body h5 {
  color: white;
  margin: 0px;
  transition: 0.2;
}

#noticias .noticia-main .noticia-body a:hover h5 {
  color: #a1e6ff;
}

#noticias .noticia-body {
  height: 245px;
  padding: 15px;
  box-shadow: 1px 1px 10px #00000021;
}

#noticias .noticia-body h5 {
  color: #3e3e3e;
  transition: 0.5s;
}

#noticias .noticia-body h6 {
  color: rgb(126, 126, 126);
}

#noticias .noticia-full {
  height: 475px;
  color: rgb(255, 255, 255);
  background-color: #828282;
  display: flex;
  align-items: center;
  transition: 0.5s;
}

#noticias .noticia-full h3 {
  color: rgb(255, 255, 255);
  margin-top: auto;
  margin-bottom: auto;
}

#noticias .noticia-full:hover {
  background-color: #3e3e3e;
}

/* Contato */
#contato {
  color: var(--main-ternary-color);
}

#contato h3 {
  color: #006d95;
}

#contato h3 small {
  color: var(--main-ternary-color);
  font-weight: lighter;
  font-size: 60%;
}

#contato .contato-info {
  border-top: 2px solid #006d95;
  padding: 20px;
  padding-bottom: 0px;
}

#contato .detalhes {
  padding: 15px;
  color: white;
  background-color: #006d95;
}

#contato .detalhes small{
  font-size: 100% !;
}

#contato .required {
  color: crimson;
}

/* Mapa */
#mapa .detalhes {
  height: 430px;
  background-color: #3e3e3e;
  padding: 25px;
  color: white;
  position: absolute;
  z-index: 99;
}

#mapa .detalhes small{
  font-size: 100%;
}

@media (max-width: 992px) {
  #mapa {
    background-color: #004365;
  }

  #mapa .detalhes {
    height: auto;
    position: relative;
    margin-bottom: 60px;
    width: 100% !important;
  }
}

#mapa iframe {
  width: 100% !important;
}

.mapoverlay {
  background: transparent;
  position: relative;
  width: 100%;
  height: 430px;
  top: 430px;
  margin-top: -434px;
  z-index: 99;
}

/* Mapa */

footer {
  width: 100%;
  z-index: 99;
  margin-top: -10px;
  /* background-image: url(../../resources/img/shutterstock_272306351-dark.jpg); */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 40px;
  color: white;
  background-color: #828282;
}

footer .container {
  padding-bottom: 20px;
}

footer .container a {
  text-decoration: none;
  color: white;
  transition: 0.15s;
}

footer a:hover {
  color: #004365;
}

footer hr {
  border-color: white;
  color: white;
}

footer .container-fluid {
  color: white;
  padding: 15px;
  background-color: #3e3e3e;
}

footer .container-fluid h6 {
  display: inline;
}

footer .container-fluid h6 small {
  font-size: 0.7em;
}

footer .container-fluid .col-12 img {
  margin-bottom: 7.5px;
  margin-top: 7.5px;
}
