/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #AAA;
}

a {
  color: #AAA;
  text-decoration: none;
}

a:hover {
  color: #313131;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

h4 {
  color: #A7CA99;
}

i {
  color: #A7CA99;
}

i:hover {
  color: #56A248;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 4px solid #74B467;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  margin-top: 60px;
}

#footer p {
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	color: #BBB;
}

.copyright {
	color: #018426;
}

.line-top {
  margin-top:25px;
	border-top: 1px solid #CCC;
}

.line-top-2 {
  margin-bottom: 10px;
  border-top: 1px solid #DDD;
}
.credits {
   padding-top: 10px;
}


.right-icons ul li {
  display: inline-block;
  margin-left: 36px;
  font-size: 26px;
  color: #A7CA99;
}

.right-icons ul li:first-child {
  margin-left: 0;
}


.right-icons ul li a {
  transition: all .3s;
  color: #A7CA99;
}

.right-icons ul li a:hover {
  border-radius: 4px;
  color: #BBB !important;
}

@media screen and (max-width: 576px) {
  .right-icons ul li {
    margin-left: 14px; 
    font-size: 24px;
    text-align:center;
}

  .copyright {
  text-align: center;
  }
  .credits {
  text-align: center;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  z-index: 19999;
}

.logo {
   padding: 0;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
  padding: 30px 0 0 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar li i{
  font-size: 12px;
  margin-left: 6px;
}

.navbar a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #AAA;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a .green  {
  color: #A6CA99 !important;
  font-size: 18px;
  padding-right:12px !important;
}

.navbar a:hover, .navbar li:hover > a {
  align-items: center;
  border-radius: 4px;
  color: #A6CA99;
}

.navbar .active {
  border-radius: 4px;
  font-weight: 600;
  color: #8E3138;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 5px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border:1px solid #A7CA99;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  text-transform: none;
}

.navbar .dropdown ul a .green {
  color: #A7CA99 !important;
}
.svg-inline--fa {
  height: 0.9em !important;
  margin-left:4px;
}

.navbar .dropdown li a i {
  font-size: 10px;
  color: #A7CA99 !important;
  margin-left: 4px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color:#A6CA99;
  background: #f4f4f4;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar .dropdown > li{position:relative;}

.navbar .dropdown > li > i{position:absolute;left:0;top:3px;}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #A7CA99;
  font-size: 42px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  margin-right:10px !important;
}

.mobile-nav-toggle.bi-x {
  color: #000;
  z-index: 10000;
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .navbar {
  padding: 0;
  margin-left: 0px;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 10px;
  right: 0;
  left: 0;
  bottom: 150px;
  background: rgba(4, 12, 21, 0.7);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 25px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 16px; 
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  border:1px solid #A7CA99;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 16px;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/

.internas {
  margin: 20px 0 25px 0;
}

.home {
  margin-top:20px;
}

.breadcrumb li a{
  font-size: 11px;
  color: #777 !important;
}

.breadcrumb li a:hover{
  font-size: 11px;
  color: #268A1F !important;
}

.breadcrumb-item.active li {
  font-size: 11px;
  color: #CCC !important;
}

.menu-outros {
  padding-top:50px;
}


/*--------------------------------------------------------------
# Textos
--------------------------------------------------------------*/
p {
  text-align: justify
 } 
.ft-title {
  font-weight: 500;
  text-transform: uppercase;
  color: #A7CA99;
}
.ft {
  font-size: 14px;
}

.txt-principais {
  font-size: 18px;
  font-weight: 300;
}

.legenda {
  font-size: 13px;
  color:#999;
  text-align: center;
  text-transform: uppercase;
 
}

.legenda-2 {
  font-size: 15px;
  color:#268A1F;
  text-align: center;
  text-transform: uppercase;
}

.chamada-principais {
  padding: 16px 0;
}
.chamada-home{
  padding: 24px 0 0 0;
  font-size: 1.7rem;
  text-align: center;
  color: #A7CA99;
}

.chamada-home:hover {
  color:#bbb;
}

@media (max-width: 576px) {
  .chamada-home {
   font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Imagens
--------------------------------------------------------------*/
.hover1 figure {
  background: #A7CA99;
}
.hover1 figure img {
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.hover1 figure:hover img {
  opacity: .3;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.7); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  height: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  padding-top: 60px;
  vertical-align: bottom;
}
.img-home {
  position: relative;
  width: 100%;
  height: auto; 
}
.img-home:hover .overlay {
  opacity: 1;
}
/*--------------------------------------------------------------
# Icons-footer
--------------------------------------------------------------*/

*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* Minimal Horizontal  Navigation */
#MiniHorzNav li {
    display: inline-block;
    list-style: outside none none;
    margin: 2px 0;
    padding: 0;
    width: 48px;
}
#MiniHorzNav li a{
    display: block;
    padding: 7px;
    position: relative;
    font-size: 28px;
    color: #A7CA99;
}
#MiniHorzNav span {
    font-size:14px;
    font-weight: 400;
    color: #ddd;
    letter-spacing: 1px;
    bottom: 50px;
    left: -5px;
    line-height: 30px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    transition: all 0.50s ease 0s;
    white-space: nowrap;
    width: 0; 
    border-bottom: 1px solid #A7CA99; 
}

#MiniHorzNav a:hover span{ width:auto; padding:0 10px;overflow:visible;color:#bbb; }
#MiniHorzNav a:hover{text-decoration:none;}
#MiniHorzNav a span {
    background-color: #fff;
    color: #bbb;
    z-index: 999;
}

@media (max-width: 576px) {
  #MiniHorzNav li {
   width: 36px;
  }
}


.carousel.carousel-thumbs-top {
  padding-bottom: 10px;
}

.carousel.carousel-thumbs-top .carousel-indicators {
  bottom: 0;
  top: auto;
}

.carousel .carousel-indicators button {
  width: 100px !important;
}

