/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}

a{
  color: #007bff;
}

a:hover, a:active, a:focus {
  color: #2dca98;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 15px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0 0 10px 0;
  padding: 0;
  font-weight: bold;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 30px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #2dc997;
  color: #fff;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header 
{
  padding: 30px 0;
  height: 83px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  /* background: rgba(34,45,79, 0.9); */
}

#header #logo {
  float: left;
  margin-left: -14%;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin-top: -26px;
}

@media (max-width: 768px) 

{
 
    #header {
    padding: 30px 0;
    height: 70px;
    }
    #header #logo h1 {
      font-size: 26px;
    }
    #header #logo img {
      max-height: 53px;
      margin: -32px 0 0 46px;
    }
    #header #h2{
      overflow: hidden;
    }
    .feature{
      margin-bottom: 30px;
    }


}


#cab_hospital2 {
  width: 70px;
  height: 60px;
  padding: 1px;
  margin-top: -12px;
}


#cab_logotipo {
  width: 150px;
  height: 50px;
  padding: 1px;
  margin: -12px 0 0 20px;
}

#cab_logotipo2 {
  width: 300px;
  height: 93px;
  padding: 1px;
  margin-top: -23px;
}

#logo_contato{

  padding-top: 50px;
}

.img_logos {
  width: 150px;
  height: 50px;
  padding: 1px;
  margin: -12px 0 0 20px;
}


@media (max-width: 768px)
{
  #cab_logotipo 
  {
      width: 100px;
      height: 35px;
      padding: 1px;
      margin: -28px 0 0 10px;
  }

}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
 /* height: 400px; */
  height: 50vh; 
  background: url(../img/instituicao5.jpg) top center;
 /* background-size: cover; */
  position: relative;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  /* text-transform: uppercase; */
  font-size: 13px;
  outline: none;
  line-height: 0.8;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #4F94CD;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}


/* cor do fundo do menu de opcao transparente*/
.nav-menu ul li {
  background: rgba(34,45,79, 0.9); 
  /* background: rgba(52, 59, 64, 0.9);  */
  
}

/* define a cor de fundo da barra de menu principal */
#header.header-fixed {
  /* background: rgba(34,45,79, 0.9); */
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}

/*
/* cor do fundo do menu de opcao transparente
.nav-menu ul li {
  background: rgba(52, 59, 64, 0.9); 
}
*/

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: #fff; /* cor da fonte do menu de opçoes */
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: #4F94CD;
  /* background: #2dc997; */
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #2dc997;
}

#mobile-nav ul .menu-item-active {
  color: #2dc997;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

 



/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #999;
}


#logo_texto {
  color: #1874CD;
  font-size: 30px;
  /* padding: 0 0 0 20px; */
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* background: #343b40; */
  background: #CDAA7D;
  /* background: linear-gradient(90deg, rgba(0, 131, 158, 0.7) 0%, rgba(0, 39, 131, 0.9) 127%, rgba(20, 32, 107, 1) 156%); */
  padding: 20px 0 5px 0;
  color: #fff;
  font-size: 14px;
}


#cab_instituto {
  width: 162px;
  height: 40px;
  padding: 1px;
  margin-top: -12px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/* Inicio - Rodape - Footer*/
.footer-icons ul li {
  display: inline-block;
}

.footer-icons ul li a {
  border: 1px solid #3EC1D5;
  color: #3EC1D5;
  display: block;
  font-size: 16px;
  height: 40px;
  line-height: 38px;
  margin-right: 5px;
  text-align: center;
  width: 40px;
  border-radius: 50%;
}

.footer-icons {
  margin-top: 30px;
}

.popular-tag ul li a:hover, .footer-icons ul li a:hover {
  background: #3EC1D5;
  border: 1px solid #3EC1D5;
  color: #fff;
}
/* Fim - Rodape - Footer */


/*
/*--------------------------------------------------------------
# newsletter
--------------------------------------------------------------*/
#newsletter {
  background-size: cover;
 
  background: linear-gradient(90deg,  rgba(0, 131, 158, 0.9) 0%, 
  rgba(0, 39, 131, 0.9) 127%, 
  rgba(20, 32, 107, 1) 156%);

  /* background: #104E8B; */
  /* background: url(../img/depoimento.jpg) top center;  */
  /* background: rgba(248, 248, 248, 0.8) url("../img/depoimento.jpg") no-repeat fixed center top / cover; */

  color: #fff;
 
}



/* Meu CSS _ Inicio =========================================================== */


.title2
{
  margin-top: 50px;
  font-size: 46px;
}


@media (max-width: 1920px) and (min-width: 768px){
.slider-content 
  {
    padding: 150px 0;
  }
}

@media (max-width: 991px) and (min-width: 768px)
{
  .layer-1-2 h1 {
    font-size: 22px;
    line-height: 24px;
  }
}

@media (max-width: 768px) 
{
 
  .title2{
    margin-top: 10px;
    font-size:22px;
  }

  .layer-1-1 h2 {
    font-size: 18px;
    line-height: 20px;
    overflow: hidden;
  }

}


.text-info {
  color: #CDAA7D !important;
  font-size: 20px;
  font-weight: bold;
}

#home3{
  padding-bottom: 10px;
}



.nivoslider3 {
  position: relative;
  width: 315px; 
  height: auto;
  overflow: hidden;
}

.nivo-caption::after {
  background: #444 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.2;
  position: absolute;
  top: 0;
  width: 0%;
  z-index: -1;
}




.botao_compartilha{
  text-align: center;
  padding: 10px 10px 1px 10px;;
  /* background: #104E8B; */
  background: linear-gradient(90deg,  rgba(0, 131, 158, 0.9) 0%, 
                                      rgba(0, 39, 131, 0.9) 127%, 
                                      rgba(20, 32, 107, 1) 156%);
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}


/* Inicio - botao compartilhamento redes sociais */
.botao-icons ul li {
  display: inline-block;
}


.botao-icons ul li a {
  border: 1px solid #3EC1D5;
  color: #3EC1D5;
  display: block;
  font-size: 28px;
  height: 40px;
  line-height: 38px;
  margin-right: 5px;
  text-align: center;
  width: 44px;
  /* border-radius: 50%; */
}


.botao-icons {
  margin-top: 15px;
}

.popular-tag ul li a:hover, .botao-icons ul li a:hover {
  background: #3EC1D5;
  border: 1px solid #3EC1D5;
  color: #fff;
}

.botao-icons ul {
  padding: 0px;
}
/* Fim - botao compartilhamento redes sociais */


#titulo_sala {
  text-align: center;
  padding: 10px;
  background: #CDB38B;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  /* background: url(../img/estatistica2.jpg) center top no-repeat; */
  background-size: cover; 
  margin-top: 25px;
}


/* Inicio - Carrosel da Gestao */
.preview-2 .nivo-directionNav a.nivo-prevNav::before 
{
  content: none;
}

.preview-2 .nivo-directionNav a.nivo-nextNav::before 
{
  content: none;
}

.nivo-controlNav {
  bottom: -35px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 8;
}

.nivo-controlNav a.active 
{
  background: #fff none repeat scroll 0 0;
  border-color: antiquewhite;
}  
/* Fim - Carrosel da Gestao */



/* Inicio - Modulos internos -------------------- */
#titulo_gestao 
{
  text-align: center;
  padding-top: 30px;
  color: #CDAA7D;
  font-size: 34px;
  font-weight: 800;
}

#titulo_area_reservada
{
  font-size: 20px;
  color: #104E8B;
  text-align: left;
}

#titulo_sistemas
{
  font-size: 26px;
  color: #CDAA7D;
  text-align: left;
}

.titulo_modulo 
{
  text-align: center;
  padding-top: 8px;
}

a.titulo_modulo2 
{
  font-size: 16px;
  color: #104e8b;
  padding-top: 10px;
  font-family: 'Oswald', sans-serif;
}

.container 
{
  max-width: 1140px;
  text-align: center;
}

.img_servico
{
  border-radius: 6px;
  overflow: hidden;
  height: 120px; 
  width: 104%;
}

.img_servico:hover
{
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
   
}


.img_servico2
{
  border-radius: 6px;
  overflow: hidden;
  height: auto; 
  width: 104%;
}

.img_servico2:hover
{
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
   
}

.img_servico3
{
  border-radius: 6px;
  overflow: hidden;
  height: auto;
  width: 84%;
  margin-top: 31px;
  padding-bottom: 20px;
}

.img_servico3:hover
{
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
   
}


@media (max-width: 768px) 
{

  .back-to-top {
    bottom: 15px;
  }

  .img_servico {
    border-radius: 6px;
    overflow: hidden;
    height: 215px;
    width: 100%;
  }

  .img_servico2 {
    border-radius: 6px;
    overflow: hidden;
    height: auto;
    width: 90%;
  }
  
  .img_servico3 {
    border-radius: 6px;
    overflow: hidden;
    height: auto;
    width: 70%;
  }
  
  #titulo_gestao {
    padding-top: 15px;
  }

  a.titulo_modulo2 {
    font-size: 26px;
    color: #104e8b;
    padding-top: 10px;
    font-family: 'Oswald', sans-serif;
  }


}
/* Fim - Modulos internos ----------------------- */



/* Meu CSS _ Fim ============================================================== */
  
  