/*--------------------------------------------------------------
# Geral
--------------------------------------------------------------*/
@font-face {
  font-family: 'Roboto', sans-serif;
}

body {
  background: #fff;
  color: #D2D3D5;
  font-family: "Roboto";
}

a {
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: black;
  outline: none;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto";
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

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

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

.back-to-top:focus {
  background: #1F8563;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #1F8563;
  color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: white;
  padding: 0 0;
  font-size: 16px;
  color: #72F821;
}

#topbar .contact-info i {
  color: #72F821;
  padding: 6px;
  font-size: 19px;
}

#topbar .social-links{
  font-size: 14px;
}
#topbar .social-links span{
  font-size: 16px;
}

#topbar .social-links i {
  color: white;
  padding: 6px;
  font-size: 19px;
}

#topbar .social-links a {
  color: white;
  display: inline-block;
  line-height: 1px;
}
#topbar .social-links span b {
  font-weight: 900;
}
#topbar .social-links a:hover {
  color: #cccccc;
}

/*--GALERIA--*/
.btn:focus, .btn:active, button:focus, button:active {
  outline: none !important;
  box-shadow: none !important;
}
#image-gallery .modal-footer{
  display: block;
}
.thumb{
  margin-top: 15px;
  margin-bottom: 15px;
}
/*--END GALERIA--*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 23px 0;
  height: 120px;
  transition: all 0.5s;
  z-index: 997;
  background: url("../img/bg-menu.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Roboto";
  font-weight: 700;
}

#header #logo h1 a {
  color: #8A3D40;
  line-height: 1;
  display: inline-block;
}

#header #logo h1 a span {
  color: #858585;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header {
    padding: 20px 0;
    height: 74px;
  }
  #header #logo h1 {
    font-size: 34px;
  }
  #header #logo img {
    width: 100px;
  }
}

/*--------------------------------------------------------------
# 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: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  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-container{
  margin-top: 25px;
}
.nav-menu a {
  padding: 0px 8px;
  text-decoration: none;
  display: inline-block;
  color: white;
  font-family: "Roboto";
  font-weight: bold;
  font-size: 12px;
  outline: none;
  text-transform: uppercase;
}
.nav-menu li .fa-circle{
  color: #72F821;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
  color: black;
}

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

.nav-menu ul {
  margin: 20px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #858585;
}

.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:#72F821;
}

@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: #3B4685;
  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: #858585;
}

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

#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;
}

/* HOME NOTÍCIAS */
.home-noticias{
  background: url("../img/bg-home-noticias.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  padding: 3em 0;
  margin: 0px;
  height: 600px;
}
.home-noticias h1{
  color: #72F821;
  font-size: 22px;
  font-weight: bold;
}
.home-noticias .home-noticias-linha{
  background: url("../img/home-noticias-linha.png") no-repeat;
  background-position: left;
  margin-left: 1em;
  height: 30px;
}
/* END HOME NOTÍCIAS */

/* HOME */
/* CHAMADA HOME */
.chamada-home{
  background: url("../img/bg-home-chamada.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}
.chamada-home .container{
  padding: 2em 2em;
}
.chamada-home .container .texto-chamada-home{
  padding: 3em 2em;
}
.chamada-home .container a{
  font-weight: 900;
  color: #2D2C7E;
  font-size: 35px;
}
.chamada-home .container p{
  color: white;
  font-size: 20px;
}
/* END CHAMADA HOME */
/* REDES SOCIAIS HOME */
.home-redes-sociais{
  padding: 2em 0px;
}
/* END REDES SOCIAIS HOME */

/*-- CONTATO --*/
.top-pag-contato{
  background: url("../img/bg-cabecalho-paginas.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 134px;
}
.top-pag-contato h1{
  color: white;
  margin-top: 1.55em;
  font-size: 32px;
  font-weight: 900;
}
.contato .mapa{
  min-height: 450px;
}
.contato .formulario{
  padding: 3em;
}
.contato .formulario h2{
  color: #2D2C7E;
}
.contato .formulario p{
  color: #838383;
}
.contato .formulario address{
  color: black;
  margin-bottom: 10px;
}
.contato .formulario a{
  color: black;
  margin-bottom: 1em;
}
.contato .form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  margin: 5px;
  font-size: 1rem;
  line-height: 1.5;
  color: black;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999999;
  border-radius: 0;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.contato .form-control[type="textarea"]{
  height: 210px;
  margin-left: 0px;
}
.contato .pull-right{
  background: #2D2C7E;
  border: 0;
  border-radius: 0;
  padding: 10px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
  font-size: 13px;
}
.contato .pull-right:hover {
  background: #3e3db2;
}
/*-- END CONTATO --*/
/*-- END PROJETOS --*/
.projetos{
  padding: 2em;

}
.projetos .post{
  padding-bottom: 2em;
}
.projetos .post h1{
  font-size: 35px;
  font-weight: 900;
  color: #355EA6;
}
.projetos .post p{
  color: black;
}
/*-- PROJETOS --*/

/*-- MINHA HISTÓRIA --*/
.minha_historia{
  margin: 0px;
  padding: 1em 0 2em 0;
}
.minha_historia.cont1 h1{
  margin-top: 1em;
  color: #2D2C7E;
  font-size: 2rem;
  font-weight: bold;
}
.minha_historia.cont1 p{
  color: black;
  margin: 0px;
  font-size: 18px;
  text-align: justify;
}


/* TIMELINE */
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: '';
  background-color: #ced1d4;
}

.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}

.timeline > li:after, .timeline > li:before {
  display: table;
  content: ' ';
}

.timeline > li:after {
  clear: both;
}

.timeline > li .timeline-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}

.timeline > li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline > li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline > li .timeline-image {
  position: absolute;
  z-index: 0;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid #ced1d4;
  border-radius: 100%;
  background-color: #092543;
}

.timeline > li .timeline-image h4 {
  font-size: 11px;
  line-height: 10px;
  margin-top: 5px;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline > li:last-child {
  margin-bottom: 0;
}

.timeline .timeline-heading h4 {
  margin-top: 0;
  color: inherit;
  color: #092543;
}

.timeline .timeline-heading h4.subheading {
  text-transform: none;
}

.timeline .timeline-body > ul,
.timeline .timeline-body > p {
  margin-bottom: 0;
}
@media screen and (min-width: 768px){
  .sobre .modal-dialog {
    width:500px;
    padding-top: 90px;
  }
  /**/
  .timeline:before {
    left: 50%;
  }
  .timeline > li {
    min-height: 100px;
    margin-bottom: 100px;
  }
  .timeline > li .timeline-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  .timeline > li .timeline-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 12px;
    line-height: 13px;
    margin-top: 10px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .timeline > li {
    min-height: 150px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px;
  }
  .timeline > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 16px;
    line-height: 20px;
    margin-top: 15px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px;
  }
}
/* END TIMELINE */


/*-- END MINHA HISTÓRIA --*/

/*-- CAROUSEL (SLIDE) --*/
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity;
}

.carousel-fade  .carousel-item.active,
.carousel-fade  .carousel-item-next.carousel-item-left,
.carousel-fade  .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade  .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

.carousel .carousel-caption{

}

.carousel .carousel-caption h1{
  text-align: right;
}

.carousel .carousel-caption h1 span{
  padding: 0px 10px;
  background-color: #858585;
}
.carousel .carousel-caption h1 .span2{
  background-color: white;
  color: rgba(0, 0, 0, 0.53);
}
/* CAROUSEL NOTÍCIAS */
.carousel2 .carousel-indicators li{
  background-color: #354593;
  border: 1px solid white;
  border-radius: 100%;
  height: 10px;
  width: 10px;
}
.carousel2 .carousel-indicators .active{
  background-color: #72F821;
  border: 0px;
  border-radius: 100%;
  height: 10px;
  width: 10px;
}
.carousel2 h5{
  font-weight: 900;
  color: white;
  text-align: left;
  font-size: 35px;
  margin-top: -0%;
  width: 85%;
  background-color: #354593;
  padding: 5px;
  opacity: 0.8;
}
.carousel2 h5 a{
  color: white;
}
.carousel2 img{
  height: 450px;
}

@media (max-width: 767px){
  .home-noticias{
    height: 400px;
  }
  .carousel2 img{
    height: 200px;
  }
  .carousel2 h6{
    font-weight: 900;
    color: white;
    text-align: center;
    font-size: 16px;
    margin-top: 30px;
    position: static;
    color: white;
  }
  .carousel2 h6 a{
    color: white;
  }
  .carousel2 .carousel-indicators{
    margin-bottom: 90px;
    position: absolute;
  }
  .carousel2 h5{
    font-size: 17px;
    margin-top: 100%;
  }

  .carousel .carousel-caption{
    margin-bottom: 0px
  }
  .carousel .carousel-caption h1{
    font-size: 30px;
  }
}
@media (max-width: 500px){
  .carousel .carousel-caption{
    margin-bottom: -30px
  }
  .carousel .carousel-caption h1{
    font-size: 12px;
  }
}
/*-- END CAROUSEL (SLIDE) --*/

/*--------------------------------------------------------------
# Footer - Rodape
--------------------------------------------------------------*/
#footer {
  font-family: "Roboto";
  background: #3B4685;
  padding: 0 0 15px 0;
  font-size: 10px;
}
#footer .copyright {
  text-align: center;
  padding-top: 10px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: white;
}

#footer .credits a {
  color: white;
}
#footer .rodape{
  background: url("../img/bg-home-rodape.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 2em;
}
#footer .rodape img{
  margin: auto;
}
#footer .rodape i{
  color: #72F821;
  font-size: 25px;
  margin: 1em 0.2em;
}

.entry-title a {
  color: #355EA6;
  font-weight:900;
}