@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,700');
html, body {
  height: 100%;
}
body {
  position: relative;
  margin: 0;
  min-height: 100%;
  font-family: 'Roboto', sans-serif;
}
header {
  height: 225px;
}
header.season-spring {
  background: url('../img/banner-spring.jpg') center center no-repeat;
  background-size: cover;
}
header.season-summer {
  background: url('../img/banner-summer.jpg') center center no-repeat;
  background-size: cover;
}
header.season-autumn {
  background: url('../img/banner-autumn.jpg') center center no-repeat;
  background-size: cover;
}
header.season-winter {
  background: url('../img/banner-winter.jpg') center center no-repeat;
  background-size: cover;
}
header .container {
  position: relative;
  padding-top: 70px;
}
header .container .header-menu {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
}
header .container .header-menu a {
  vertical-align: top;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: #0b703c;
  padding: 7px 17px;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  z-index: 1;
  opacity: 0.9;
  transition: opacity 0.2s;
}
header .container .header-menu a:hover {
  opacity: 1;
}
header .container .logo {
  width: 250px;
}
header .container .info {
  font-weight: 300;
  font-size: 30px;
  font-family: 'Lato', sans-serif;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
header.mini {
  height: 110px;
}
header.mini .container {
  padding-top: 25px;
}
header.mini .container .logo {
  width: 180px;
}
.menu {
  background: #6bbf4e;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.menu.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 49px;
}
.menu .navbar {
  padding: 0;
}
.menu .nav-link {
  padding: 15px 10px !important;
  display: inline-block;
  color: #fff;
  text-shadow: 0px 1px 1px rgba(40, 82, 56, 0.5);
  transition: color 0.3s;
}
.menu .nav-link:hover {
  text-decoration: none;
  color: #0b703c;
  text-shadow: none;
}
.menu .navbar-nav .active {
  position: relative;
}
.menu .navbar-nav .active .nav-link {
  text-shadow: none;
  color: #0b703c;
}
.menu .navbar-nav .active:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -3px;
  height: 3px;
  left: 0;
  right: 0;
  background: #0b703c;
}
.menu .dropdown-menu {
  background: #0b703c;
  border-radius: 0 0 2px 2px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: none;
  margin-top: 0;
  margin-left: -8px;
  position: relative;
}
.menu .dropdown-menu a {
  color: #fff;
}
.menu .dropdown-menu .dropdown-item {
  color: #fff;
  background: none;
  font-size: 12px;
  padding: 8px 60px 8px 15px;
  position: relative;
  transition: color 0.3s;
  text-shadow: 0px 1px 1px rgba(40, 82, 56, 0.5);
}
.menu .dropdown-menu .dropdown-item:hover {
  background: none;
  color: #6bbf4e;
}
.menu .dropdown-menu .dropdown-item span {
  font-size: 10px;
  position: absolute;
  padding: 11px 15px 0 0;
  right: 0;
}
.menu .dropdown-menu .dropdown-submenu:hover > .dropdown-item {
  color: #6bbf4e;
}
.menu .dropdown-menu .dropdown-menu {
  margin-left: 1px;
}
.menu .dropdown-menu.active > a, .menu .dropdown-menu .active > a {
  color: #6bbf4e;
}
.menu .navbar-nav li:hover > .nav-link {
  color: #0b703c;
  text-shadow: none;
}
.menu .dropdown-submenu {
  position: relative;
}
.menu .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
}
.menu .dropdown-toggle::after {
  display: none;
}
.menu .lang {
  list-style: none;
  padding: 0;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .3);
}
.menu .lang li {
  display: inline-block;
}
.menu .lang a {
  padding: 16px 5px !important;
  display: inline-block;
  font-weight: 400;
  font-size: 11px;
  color: #fff;
  text-shadow: 0px 1px 1px rgba(40, 82, 56, 0.5);
  transition: color 0.3s;
}
.menu .lang a:hover {
  text-decoration: none;
  color: #0b703c;
  text-shadow: none;
}
.menu .lang .active {
  position: relative;
}
.menu .lang .active a {
  font-weight: 700;
  text-shadow: none;
  color: #0b703c;
}
.menu .search input {
  font-family: 'Lato', sans-serif;
  margin-top: 10px;
  padding: 6px 10px;
  font-weight: 400;
  font-size: 11px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 2px;
  color: #fff;
  outline: none;
  width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 1s;
}
.menu .search input::placeholder {
  color: #fff;
}
.menu .search input:hover, .menu .search input:focus {
  border: 1px solid rgba(255, 255, 255, .3);
  width: 200px;
}
.menu .search button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.menu .search button:hover {
  color: #0b703c;
}
.menu .search:hover input {
  border: 1px solid rgba(255, 255, 255, .3);
  width: 200px;
}
.breadcumb {
  margin-bottom: 30px;
}
.breadcumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #0b703c;
  font-size: 11px;
  text-transform: uppercase;
}
.breadcumb ul li {
  display: inline-block;
}
.breadcumb ul li:not(:last-child):after {
  content: '/';
  padding: 0 10px;
}
.breadcumb ul a {
  text-decoration: none;
  color: #0b703c;
}
.breadcumb h1 {
  font-family: 'Lato', sans-serif;
  color: #0b703c;
  padding: 5px 0;
  margin: 0;
  font-size: 30px;
}
.jplist-pagination .jplist-hidden {
  display: block;
}
.jplist-pagination .jplist-pagesbox button, .jplist-pagination .jplist-pagingprev button, .jplist-pagination .jplist-pagingnext button {
  background: #0b703c;
  color: #fff;
  padding: 8px 15px;
  margin: 0;
  border: none;
  border-radius: 0;
  text-shadow: none;
  display: inline-block;
  box-shadow: none;
  line-height: 24px;
  font-size: 13px;
  height: auto;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
}
.jplist-pagination .jplist-pagesbox button.jplist-prev, .jplist-pagination .jplist-pagingprev button.jplist-prev, .jplist-pagination .jplist-pagingnext button.jplist-prev {
  border-radius: 3px 0 0 3px;
}
.jplist-pagination .jplist-pagesbox button.jplist-next, .jplist-pagination .jplist-pagingprev button.jplist-next, .jplist-pagination .jplist-pagingnext button.jplist-next {
  border-radius: 0 3px 3px 0;
}
.jplist-pagination .jplist-pagesbox button[data-active="true"], .jplist-pagination .jplist-pagingprev button[data-active="true"], .jplist-pagination .jplist-pagingnext button[data-active="true"], .jplist-pagination .jplist-pagesbox button.jplist-current, .jplist-pagination .jplist-pagingprev button.jplist-current, .jplist-pagination .jplist-pagingnext button.jplist-current {
  font-weight: 700;
  opacity: 0.7;
  cursor: default;
}
.jplist-pagination .jplist-pagesbox button.jplist-first, .jplist-pagination .jplist-pagingprev button.jplist-first, .jplist-pagination .jplist-pagingnext button.jplist-first, .jplist-pagination .jplist-pagesbox button.jplist-last, .jplist-pagination .jplist-pagingprev button.jplist-last, .jplist-pagination .jplist-pagingnext button.jplist-last {
  display: none;
}
.jplist-pagination .jplist-pagesbox button:hover, .jplist-pagination .jplist-pagingprev button:hover, .jplist-pagination .jplist-pagingnext button:hover {
  color: #fff;
  background: #6bbf4e;
}
.pagination li {
  background: #0b703c;
  display: inline-block;
}
.pagination li span, .pagination li a {
  display: block;
  padding: 8px 15px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.pagination li span:hover, .pagination li a:hover {
  background: #6bbf4e;
}
.pagination li.disabled {
  opacity: 0.7;
}
.pagination li.active {
  font-weight: 700;
  opacity: 0.7;
}
.pagination li:first-child {
  border-radius: 3px 0 0 3px;
}
.pagination li:last-child {
  border-radius: 0 3px 3px 0;
}
main {
  display: block;
  padding: 30px 0;
  font-size: 13px;
  color: #333;
  line-height: 24px;
}
main .box-cms {
  padding: 15px !important;
  margin: 5px !important;
  border: 1px solid #eee;
  background: none !important;
  border-radius: 3px;
  width: 48%;
  line-height: 18px;
  display: inline-block;
  vertical-align: top;
}
main .box-cms h3 {
  font-weight: bold;
  font-size: 14px !important;
  line-height: 15px;
}
main .box-cms p {
  margin: 0;
}
main .basic {
  padding-left: 5px;
}
main .basic h1 {
  font-size: 25px;
  color: #0b703c;
}
main .basic h2 {
  font-size: 19px;
  color: #0b703c;
}
main .basic h3 {
  font-size: 17px;
  color: #0b703c;
}
main .basic h4 {
  font-size: 14px;
  color: #0b703c;
}
main .basic a {
  color: #0b703c;
}
main .basic .date {
  color: #0b703c;
  margin-bottom: 4px;
}
main .basic .date .oi {
  font-size: 11px;
}
main .basic .downloads a {
  text-decoration: none;
  display: block;
  border: 1px solid #eee;
  border-left: 2px solid #0b703c;
  padding: 4px 4px 4px 8px;
  margin-bottom: 20px;
  border-radius: 3px;
  transition: all 0.3s;
}
main .basic .downloads a .oi {
  float: right;
  padding: 8px;
}
main .basic .downloads a:hover {
  background: #f4fdf1;
}
main .representacao .item {
  border-left: 3px solid #6bbf4e;
  padding-left: 15px;
  margin-bottom: 25px;
  display: block;
}
main .atividades .slideshow {
  position: relative;
  height: 360px;
}
main .atividades .slideshow > figure {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
main .associacoes {
  position: relative;
}
main .associacoes .mapa iframe {
  width: 100%;
}
main .associacoes .filters label {
  font-weight: 700;
  text-transform: uppercase;
  color: #0b703c;
}
main .associacoes .item {
  margin-bottom: 2%;
  margin-right: 2%;
  display: inline-block;
  position: relative;
  width: 48%;
}
main .associacoes .item:nth-of-type(2n+2) {
  margin-right: 0;
}
main .associacoes .item a {
  text-decoration: none;
  display: block;
  border: 1px solid #eee;
  border-left: 2px solid #0b703c;
  padding-left: 4px;
  border-radius: 3px;
  transition: all 0.3s;
}
main .associacoes .item a:hover {
  background: #f4fdf1;
}
main .associacoes .item a:hover figure {
  transform: scale(1.06);
  border: 1px solid #eee;
}
main .associacoes .item figure {
  display: inline-block;
  width: 17%;
  height: 45px;
  background: #fff;
  vertical-align: top;
  margin: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform 0.3s;
  border-radius: 3px;
  border: 1px solid transparent;
}
main .associacoes .item h2 {
  width: 82%;
  display: inline-block;
  vertical-align: middle;
  padding: 15px 10px;
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #0b703c;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
main .news .item-detail figure {
  display: inline-block;
  background-color: #f9f9f9;
  width: 100%;
  height: 360px;
  vertical-align: top;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
main .news .item {
  margin-bottom: 20px;
}
main .news .item > a {
  text-decoration: none;
  display: block;
  border: 1px solid #eee;
  border-radius: 3px;
  transition: all 0.5s;
}
main .news .item a:hover {
  transform: scale(1.02);
}
main .news .item figure {
  display: inline-block;
  background-color: #f9f9f9;
  width: 40%;
  height: 160px;
  vertical-align: top;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 3px 0 0 3px;
}
main .news .item article {
  display: inline-block;
  width: 59%;
  vertical-align: top;
  padding: 15px 20px 10px 20px;
}
main .news .item article h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  max-height: 50px;
  color: #0b703c;
}
main .news .item article span {
  font-size: 10px;
  margin-right: 4px;
}
main .news .item article p {
  font-size: 13px;
  color: #0b703c;
  margin: 2px 0 0 0;
  padding: 0;
}
main .news .item article > div {
  font-size: 13px;
  color: #333;
  margin: 2px 0 0 0;
  padding: 0;
}
main .news .item article > div p {
  font-size: 13px;
  color: #333;
  margin: 2px 0 0 0;
  padding: 0;
}
main .news .item article > div.text {
  max-height: 50px;
  margin-bottom: 5px;
  overflow: hidden;
}
main .events h4 {
  color: #0b703c;
  font-size: 15px;
  font-weight: 600;
  margin-left: 6px;
}
main .events h4 span {
  font-size: 12px;
}
main .events .item-detail figure {
  display: inline-block;
  background-color: #f9f9f9;
  width: 100%;
  height: 360px;
  vertical-align: top;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
main .events .item {
  margin-bottom: 20px;
  margin-right: 2%;
  display: inline-block;
  width: 48%;
}
main .events .item:nth-of-type(2n+2) {
  margin-right: 0;
}
main .events .item a {
  text-decoration: none;
  display: block;
  border: 1px solid #eee;
  border-radius: 3px;
  transition: all 0.5s;
}
main .events .item a:hover {
  transform: scale(1.02);
}
main .events .item a:hover figure div {
  opacity: 0;
}
main .events .item figure {
  display: inline-block;
  width: 39%;
  height: 105px;
  vertical-align: top;
  margin: 0;
  background-color: #f9f9f9;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 3px 0 0 3px;
  position: relative;
}
main .events .item figure div {
  border-radius: 3px 0 0 3px;
  background: linear-gradient(to bottom, rgba(11, 112, 60, 0.15) 0%, rgba(11, 112, 60, 0.15) 17%, rgba(11, 112, 60, 0.9) 95%, rgba(11, 112, 60, 0.9) 100%);
  position: absolute;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.9;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  padding-top: 63px;
  transition: all 0.5s;
}
main .events .item article {
  display: inline-block;
  width: 59%;
  vertical-align: top;
  padding: 15px 20px 10px 20px;
}
main .events .item article h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  max-height: 50px;
  overflow: hidden;
  color: #0b703c;
}
main .events .item article span {
  font-size: 10px;
  margin-right: 4px;
}
main .events .item article p {
  font-size: 13px;
  color: #0b703c;
  margin: 2px 0 0 0;
  max-height: 27px;
  padding: 0;
}
main .events .item article div {
  font-size: 13px;
  color: #333;
  margin: 2px 0 0 0;
  padding: 0;
}
main .events .item article div p {
  font-size: 13px;
  color: #333;
  margin: 2px 0 0 0;
  padding: 0;
}
main .events .item article div.text {
  max-height: 50px;
  margin-bottom: 5px;
  overflow: hidden;
}
main .evento-detail .date {
  font-size: 15px;
}
main .projects .item-detail figure, main .multimedia .item-detail figure, main .jobs .item-detail figure, main .services .item-detail figure {
  display: inline-block;
  background-color: #f9f9f9;
  width: 100%;
  height: 360px;
  vertical-align: top;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
main .projects .item, main .multimedia .item, main .jobs .item, main .services .item {
  margin-bottom: 20px;
  margin-right: 2%;
  display: inline-block;
  position: relative;
  width: 31%;
}
main .projects .item:nth-of-type(3n+3), main .multimedia .item:nth-of-type(3n+3), main .jobs .item:nth-of-type(3n+3), main .services .item:nth-of-type(3n+3) {
  margin-right: 0;
}
main .projects .item a, main .multimedia .item a, main .jobs .item a, main .services .item a {
  text-decoration: none;
  display: block;
  border: 1px solid #eee;
  border-radius: 3px;
  transition: all 0.5s;
  height: 265px;
}
main .projects .item a:hover, main .multimedia .item a:hover, main .jobs .item a:hover, main .services .item a:hover {
  transform: scale(1.02);
}
main .projects .item figure, main .multimedia .item figure, main .jobs .item figure, main .services .item figure {
  display: inline-block;
  width: 100%;
  height: 130px;
  vertical-align: top;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 3px;
}
main .projects .item div, main .multimedia .item div, main .jobs .item div, main .services .item div {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 15px 20px 10px 20px;
}
main .projects .item div h2, main .multimedia .item div h2, main .jobs .item div h2, main .services .item div h2 {
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  max-height: 50px;
  color: #0b703c;
}
main .projects .item div p, main .multimedia .item div p, main .jobs .item div p, main .services .item div p {
  font-size: 13px;
  color: #0b703c;
  margin: 0;
  padding: 0;
}
main .projects .item div p span, main .multimedia .item div p span, main .jobs .item div p span, main .services .item div p span {
  font-size: 10px;
  margin-right: 4px;
}
main .projects .item div p.text, main .multimedia .item div p.text, main .jobs .item div p.text, main .services .item div p.text {
  color: #333;
  max-height: 50px;
  margin-bottom: 5px;
}
main .projects .item-compact, main .multimedia .item-compact, main .jobs .item-compact, main .services .item-compact {
  margin-bottom: 20px;
  margin-right: 2%;
  display: inline-block;
  position: relative;
  width: 48%;
}
main .projects .item-compact:nth-of-type(2n+2), main .multimedia .item-compact:nth-of-type(2n+2), main .jobs .item-compact:nth-of-type(2n+2), main .services .item-compact:nth-of-type(2n+2) {
  margin-right: 0;
}
main .projects .item-compact a, main .multimedia .item-compact a, main .jobs .item-compact a, main .services .item-compact a {
  text-decoration: none;
  display: block;
  border: 1px solid #eee;
  border-radius: 3px;
  transition: all 0.5s;
  height: 135px;
}
main .projects .item-compact a:hover, main .multimedia .item-compact a:hover, main .jobs .item-compact a:hover, main .services .item-compact a:hover {
  transform: scale(1.02);
}
main .projects .item-compact div, main .multimedia .item-compact div, main .jobs .item-compact div, main .services .item-compact div {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 15px 20px 10px 20px;
}
main .projects .item-compact div h2, main .multimedia .item-compact div h2, main .jobs .item-compact div h2, main .services .item-compact div h2 {
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  max-height: 50px;
  color: #0b703c;
}
main .projects .item-compact div p, main .multimedia .item-compact div p, main .jobs .item-compact div p, main .services .item-compact div p {
  font-size: 13px;
  color: #0b703c;
  margin: 0;
  padding: 0;
}
main .projects .item-compact div p span, main .multimedia .item-compact div p span, main .jobs .item-compact div p span, main .services .item-compact div p span {
  font-size: 10px;
  margin-right: 4px;
}
main .projects .item-compact div p.text, main .multimedia .item-compact div p.text, main .jobs .item-compact div p.text, main .services .item-compact div p.text {
  color: #333;
  max-height: 50px;
  margin-bottom: 5px;
}
main .projects .item div h2, main .projects .item-compact div h2 {
  max-height: 30px;
}
main .sobreforestis .timeline-vertical h1 {
  font-size: 200%;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}
main .sobreforestis .timeline-vertical h2 {
  color: #0b703c;
  font-size: 18px;
  text-transform: uppercase;
  padding-top: 10px;
}
main .sobreforestis .timeline-vertical p {
  font-size: 13px;
}
main .sobreforestis .timeline-vertical.timeline-vertical {
  position: relative;
}
main .sobreforestis .timeline-vertical.timeline-vertical::before {
  content: '';
  background: #6bbf4e;
  width: 3px;
  height: 95%;
  position: absolute;
  left: 50%;
  border-radius: 3px;
  transform: translateX(-50%);
}
main .sobreforestis .timeline-vertical .timeline-item {
  width: 100%;
  margin-bottom: 0px;
}
main .sobreforestis .timeline-vertical .timeline-item:nth-child(even) .timeline-content {
  float: right;
  padding: 40px 30px 10px 30px;
}
main .sobreforestis .timeline-vertical .timeline-item:nth-child(even) .timeline-content .date {
  right: auto;
  left: 0;
}
main .sobreforestis .timeline-vertical .timeline-item::after {
  content: '';
  display: block;
  clear: both;
}
main .sobreforestis .timeline-vertical .timeline-content {
  position: relative;
  width: 45%;
  padding: 40px 30px 10px 30px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #ccc;
}
main .sobreforestis .timeline-vertical .timeline-img {
  width: 14px;
  height: 14px;
  background: #6bbf4e;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-top: 15px;
  margin-left: -7px;
}
main .sobreforestis .timeline-vertical .timeline-card {
  padding: 0 !important;
}
main .sobreforestis .timeline-vertical .timeline-card p {
  padding: 0 20px;
}
main .sobreforestis .timeline-vertical .timeline-card a {
  margin-left: 20px;
}
main .sobreforestis .timeline-vertical .timeline-img-header {
  height: 200px;
  position: relative;
  margin-bottom: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
main .sobreforestis .timeline-vertical .timeline-img-header h2 {
  color: #fff;
  position: absolute;
  bottom: 5px;
  left: 20px;
}
main .sobreforestis .timeline-vertical blockquote {
  margin-top: 30px;
  border-left-color: #6bbf4e;
  padding: 0 20px;
}
main .sobreforestis .timeline-vertical .date {
  background: #6bbf4e;
  display: inline-block;
  color: #fff;
  padding: 3px 12px;
  margin: 8px;
  font-size: 15px;
  position: absolute;
  font-weight: bold;
  top: 0;
  border-radius: 3px;
  right: 0;
}
@media screen and (max-width: 768px) {
  main .sobreforestis .timeline-vertical .timeline::before {
    left: 50px;
  }
  main .sobreforestis .timeline-vertical .timeline .timeline-img {
    left: 50px;
  }
  main .sobreforestis .timeline-vertical .timeline .timeline-content {
    max-width: 100%;
    width: auto;
    margin-left: 70px;
  }
  main .sobreforestis .timeline-vertical .timeline .timeline-item:nth-child(even) .timeline-content {
    float: none;
  }
  main .sobreforestis .timeline-vertical .timeline .timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 30px;
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #f5f5f5 transparent transparent;
  }
}
main .multimedia .item {
  margin-right: 0;
  width: 100%;
}
main .multimedia .item a {
  height: 232px;
  margin-bottom: 25px;
}
main .multimedia .item .type {
  position: absolute;
  background: #0b703c;
  color: #fff;
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 11px;
  line-height: 12px;
}
main .publicacoes h4 {
  color: #0b703c;
  font-size: 15px;
  font-weight: 600;
  margin-left: 6px;
}
main .publicacoes h4 span {
  font-size: 12px;
}
main .publicacoes .item-detail figure {
  display: inline-block;
  background-color: #f9f9f9;
  width: 100%;
  height: 360px;
  vertical-align: top;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
main .publicacoes .item {
  display: inline-block;
  width: 50%;
}
main .publicacoes .item a {
  text-decoration: none;
  display: block;
  border: 1px solid #eee;
  border-radius: 3px;
  margin-bottom: 20px;
  transition: all 0.5s;
}
main .publicacoes .item a:hover {
  transform: scale(1.02);
}
main .publicacoes .item a:hover figure div {
  opacity: 0;
}
main .publicacoes .item figure {
  display: inline-block;
  width: 39%;
  height: 105px;
  vertical-align: top;
  margin: 0;
  background-color: #f9f9f9;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 3px 0 0 3px;
  position: relative;
}
main .publicacoes .item figure div {
  border-radius: 3px 0 0 3px;
  background: linear-gradient(to bottom, rgba(11, 112, 60, 0.15) 0%, rgba(11, 112, 60, 0.15) 17%, rgba(11, 112, 60, 0.9) 95%, rgba(11, 112, 60, 0.9) 100%);
  position: absolute;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.9;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  padding-top: 63px;
  transition: all 0.5s;
}
main .publicacoes .item article {
  display: inline-block;
  width: 59%;
  vertical-align: top;
  padding: 15px 20px 10px 20px;
}
main .publicacoes .item article h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  max-height: 50px;
  overflow: hidden;
  color: #0b703c;
}
main .publicacoes .item article span {
  font-size: 10px;
  margin-right: 4px;
}
main .publicacoes .item article p {
  font-size: 13px;
  color: #0b703c;
  margin: 2px 0 0 0;
  max-height: 27px;
  padding: 0;
}
main .publicacoes .item article div {
  font-size: 13px;
  color: #333;
  margin: 2px 0 0 0;
  padding: 0;
}
main .publicacoes .item article div p {
  font-size: 13px;
  color: #333;
  margin: 2px 0 0 0;
  padding: 0;
}
main .publicacoes .item article div.text {
  max-height: 50px;
  margin-bottom: 5px;
  overflow: hidden;
}
main .publicacoes .item .type {
  position: absolute;
  background: #0b703c;
  color: #fff;
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 11px;
  line-height: 12px;
}
main .jobs .item a {
  height: 150px;
}
main .oferta-formativa .filters {
  padding: 0px 15px;
  margin-bottom: 10px;
}
main .oferta-formativa #datatable-formacao-financiada_filter, main .oferta-formativa #datatable-formacao-nao-financiada_filter {
  display: none;
}
main .oferta-formativa .dataTables_paginate .pagination {
  justify-content: flex-end;
}
main .oferta-formativa .dataTables_paginate a {
  background: none !important;
  color: #fff !important;
  text-decoration: none;
  outline: none !important;
  border: none;
}
main .oferta-formativa .dataTables_paginate li:first-child {
  border-right: 1px solid #fff;
}
main .oferta-formativa .dataTables_paginate li:last-child {
  border-left: 1px solid #fff;
}
main .oferta-formativa .table {
  border-bottom: 1px solid #0b703c;
}
main .oferta-formativa .table .basic-button {
  font-size: 10px;
  padding: 0 5px;
}
main .formacao .slick-prev {
  left: 0px;
}
main .formacao .slick-next {
  right: 0;
}
main .formacao .slick-arrow {
  margin-top: 194px;
  position: absolute;
  display: inline-block;
  text-align: center;
  line-height: 28px;
  color: #6bbf4e;
  background: #fff;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s;
}
main .formacao .timeline-carousel {
  padding: 0 0 90px 0;
  position: relative;
  overflow: hidden;
}
main .formacao .timeline-carousel .slick-list {
  overflow: visible;
  margin-left: 30px;
}
main .formacao .timeline-carousel .slick-dots {
  bottom: -73px;
}
main .formacao .timeline-carousel h1 {
  color: #000;
  font-size: 46px;
  line-height: 50pd;
  margin-bottom: 40px;
  font-weight: 900;
}
main .formacao .timeline-carousel__image {
  padding-right: 30px;
}
main .formacao .timeline-carousel__item {
  cursor: pointer;
}
main .formacao .timeline-carousel__item .media-wrapper {
  opacity: 0.4;
  padding-bottom: 71.4%;
  -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
main .formacao .timeline-carousel__item:last-child .timeline-carousel__item-inner:after {
  width: calc(100% - 30px);
}
main .formacao .timeline-carousel__item-inner {
  position: relative;
  padding-top: 45px;
  padding-right: 25px;
}
main .formacao .timeline-carousel__item-inner:after {
  position: absolute;
  width: 100%;
  top: 45px;
  left: 0;
  content: "";
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
main .formacao .timeline-carousel__item-inner .year {
  font-size: 25px;
  line-height: 36px;
  color: #0b703c;
  display: table;
  letter-spacing: -1px;
  padding-right: 10px;
  background-color: #fff;
  z-index: 1;
  position: relative;
  margin: -15px 0 20px;
  font-weight: 900;
}
main .formacao .timeline-carousel__item-inner .year:after {
  content: "";
  position: absolute;
  display: block;
  left: -10px;
  top: 0;
  height: 100%;
  width: 10px;
  background-color: #fff;
  z-index: 3;
}
main .formacao .timeline-carousel__item-inner .month {
  font-size: 12px;
  text-transform: uppercase;
  color: #444;
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
  line-height: 16px;
}
main .formacao .timeline-carousel__item-inner p {
  font-size: 12px;
  line-height: 18px;
  color: #000;
  width: 100%;
  font-weight: 400;
  margin-bottom: 15px;
}
main .formacao .timeline-carousel__item-inner .read-more {
  font-size: 12px;
  color: #146f3e;
  display: table;
  margin-bottom: 10px;
  font-weight: 900;
  text-decoration: none;
  position: relative;
}
main .formacao .timeline-carousel__item-inner .read-more:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  border-bottom: 2px solid #146f3e;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
main .formacao .timeline-carousel__item-inner .read-more:hover:after {
  width: 100%;
}
main .formacao .timeline-carousel__item-inner .pointer {
  height: 29px;
  position: relative;
  z-index: 1;
  margin: -4px 0 16px;
}
main .formacao .timeline-carousel__item-inner .pointer:after, main .formacao .timeline-carousel__item-inner .pointer:before {
  position: absolute;
  content: "";
}
main .formacao .timeline-carousel__item-inner .pointer:after {
  width: 9px;
  height: 9px;
  border-radius: 100%;
  top: 0;
  left: 0;
  background-color: #146f3e;
}
main .formacao .timeline-carousel__item-inner .pointer:before {
  width: 1px;
  height: 100%;
  top: 0;
  left: 4px;
  background-color: #146f3e;
}
main .formacao .timeline-carousel .slick-active .media-wrapper {
  opacity: 1 !important;
}
main .formacao .slick-dots {
  bottom: 60px;
  list-style: none;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  z-index: 2;
}
main .formacao .slick-dots li {
  cursor: pointer;
  display: inline-block;
  margin: 0 6px;
  position: relative;
  width: 10px;
  height: 10px;
}
main .formacao .slick-dots li:last-child {
  margin-right: 0;
}
main .formacao .slick-dots li.slick-active button {
  background: #146f3e;
  border-color: #146f3e;
}
main .formacao .slick-dots li button {
  display: block;
  font-size: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
main .formacao .slick-dots li button:hover {
  background: #146f3e;
  border-color: #146f3e;
}
main .formacao .link {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  z-index: 9999;
}
main .formacao .link a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
main .formacao .link .fa {
  font-size: 28px;
  margin-right: 8px;
  color: #fff;
}
main section h1 {
  font-family: 'Lato', sans-serif;
  color: #0b703c;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 5px;
}
main section h1 a {
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  color: #0b703c;
}
main section h1 a:hover {
  text-decoration: none;
  color: #6bbf4e;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
main section h1:before {
  content: "";
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  vertical-align: middle;
  height: 4px;
  background: #6bbf4e;
  display: inline-block;
  width: 13px;
  margin-right: 10px;
}
main section h3 {
  font-size: 17px;
  color: #0b703c;
}
main section a {
  color: #0b703c;
}
.widget {
  margin-bottom: 40px;
}
.widget .carousel-control-prev {
  margin-left: -15px;
}
.widget .carousel-control-next {
  margin-right: -15px;
}
.widget .carousel-control-prev, .widget .carousel-control-next {
  color: #6bbf4e;
  background: #fff;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
}
.widget.news .carousel, .widget.news .first {
  transition: all 0.5s;
}
.widget.news .carousel:hover, .widget.news .first:hover {
  transform: scale(1.02);
}
.widget.news .item > a {
  text-decoration: none;
  display: block;
  border: 1px solid #eee;
  border-radius: 3px;
}
.widget.news .item a:hover {
  transform: none;
}
.widget.news .item figure {
  display: inline-block;
  width: 40%;
  height: 200px;
  background: #eee;
  vertical-align: top;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform 0.3s;
}
.widget.news .item article {
  display: inline-block;
  width: 59%;
  vertical-align: top;
  padding: 25px 20px 20px 20px;
}
.widget.news .item article h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  max-height: 50px;
  color: #0b703c;
}
.widget.news .item article span {
  font-size: 10px;
  margin-right: 4px;
}
.widget.news .item article p {
  font-size: 13px;
  color: #0b703c;
  margin: 2px 0 0 0;
  padding: 0;
}
.widget.news .item article > div {
  font-size: 13px;
  color: #333;
  margin: 2px 0 0 0;
  padding: 0;
}
.widget.news .item article > div p {
  font-size: 13px;
  color: #333;
  margin: 2px 0 0 0;
  padding: 0;
}
.widget.news .item article > div.text {
  color: #333;
  max-height: 80px;
  margin-bottom: 5px;
}
.widget.news .carousel-control-prev, .widget.news .carousel-control-next {
  margin-top: 50px;
}
.widget.news .carousel-item figure {
  width: 25%;
  height: 130px;
}
.widget.news .carousel-item article {
  width: 74%;
  padding: 13px 15px 10px 15px;
}
.widget.news .carousel-item article h2 {
  max-height: 22px;
  line-height: 20px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widget.news .carousel-item article span {
  font-size: 10px;
  margin-right: 4px;
}
.widget.news .carousel-item article div {
  font-size: 13px;
}
.widget.news .carousel-item article div.text {
  max-height: 50px;
}
.widget.quicklinks .item {
  margin-bottom: 20px;
  margin-right: 2%;
  display: inline-block;
  position: relative;
  width: 48%;
  border-radius: 3px;
  transition: border 0.3s;
  border-left: 3px solid #0b703c;
}
.widget.quicklinks .item:hover {
  border-left: 6px solid #0b703c;
}
.widget.quicklinks .item:nth-of-type(2n+2) {
  margin-right: 0;
}
.widget.quicklinks .item a {
  text-decoration: none;
  display: block;
  border: 1px solid #eee;
  border-left: none;
  border-radius: 0 3px 3px 0;
  transition: all 0.5s;
  height: 90px;
}
.widget.quicklinks .item div {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 15px 20px 10px 20px;
}
.widget.quicklinks .item div h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  max-height: 50px;
  color: #0b703c;
}
.widget.quicklinks .item div p {
  font-size: 13px;
  color: #0b703c;
  margin: 2px 0 0 0;
  padding: 0;
}
.widget.quicklinks .item div p.text {
  color: #333;
  max-height: 50px;
  margin-bottom: 5px;
  line-height: 18px;
}
.widget.widget-events .carousel-control-prev, .widget.widget-events .carousel-control-next {
  margin-top: 35px;
}
.widget.widget-events .carousel {
  transition: all 0.5s;
}
.widget.widget-events .carousel:hover {
  transform: scale(1.02);
}
.widget.widget-events .carousel-item a {
  text-decoration: none;
  display: block;
  border: 1px solid #eee;
  border-radius: 3px;
}
.widget.widget-events .carousel-item a:hover {
  transform: none;
}
.widget.widget-events .carousel-item a:hover figure div {
  opacity: 0;
}
.widget.widget-events .carousel-item figure {
  display: inline-block;
  width: 30%;
  height: 90px;
  background: #eee;
  vertical-align: top;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.widget.widget-events .carousel-item figure div {
  border-radius: 3px 0 0 3px;
  background: linear-gradient(to bottom, rgba(11, 112, 60, 0.15) 0%, rgba(11, 112, 60, 0.15) 17%, rgba(11, 112, 60, 0.9) 95%, rgba(11, 112, 60, 0.9) 100%);
  position: absolute;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  opacity: 0.9;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  padding-top: 54px;
  transition: all 0.5s;
  transition: all 0.5s;
  display: block;
  width: 100%;
}
.widget.widget-events .carousel-item div {
  display: inline-block;
  width: 69%;
  vertical-align: top;
  padding: 15px 10px 10px 10px;
}
.widget.widget-events .carousel-item div h2 {
  font-size: 13px;
  font-weight: 700;
  color: #0b703c;
  max-height: 30px;
  line-height: 17px;
}
.widget.widget-events .carousel-item div p {
  font-size: 13px;
  color: #333;
  margin: 2px 0 0 0;
  padding: 0;
  max-height: 30px;
  line-height: 18px;
}
.widget.widget-events .carousel-item div p span {
  font-size: 10px;
  margin-right: 4px;
}
.widget.highlights .carousel-control-prev, .widget.highlights .carousel-control-next {
  margin-top: 89px;
}
.widget.highlights .carousel-item img {
  border-radius: 4px;
  display: block;
  width: 100%;
  background: #eee;
  margin: 0;
}
.widget.highlights .carousel-item div {
  position: absolute;
  bottom: 10px;
  padding: 10px;
}
.widget.highlights .carousel-item div h2 {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  color: #fff;
  background: #6bbf4e;
  text-transform: uppercase;
  padding: 8px 10px;
  display: inline-block;
  border-radius: 3px;
  margin: 0 0 5px 0;
}
.widget.highlights .carousel-item div p {
  line-height: 13px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: #fff;
  background: #6bbf4e;
  padding: 8px 10px;
  display: inline-block;
  border-radius: 3px;
  margin: 0;
}
.widget.menus {
  margin-top: 20px;
}
.widget.menus h1 {
  margin-top: 50px;
}
.widget.menus .light {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: -20px;
}
.widget.menus .light li {
  display: block;
  border-bottom: 1px solid rgba(40, 82, 56, 0.05);
}
.widget.menus .light li:last-child {
  border: none;
}
.widget.menus .light li a, .widget.menus .light li label {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  display: block;
  padding: 18px 10px 18px 35px;
  color: #6bbf4e;
  text-decoration: none;
  transition: all 0.5s;
  border-left: 1px solid transparent;
}
.widget.menus .light li a:hover, .widget.menus .light li label:hover {
  color: #0b703c;
  border-left: 4px solid #f4fdf1;
}
.widget.menus .light li.active a {
  color: #0b703c;
  border-left: 3px solid #0b703c;
}
.widget.menus .light li.parent {
  margin-bottom: 2px;
}
.widget.menus .light li.parent a, .widget.menus .light li.parent label {
  color: #0b703c;
  padding: 8px 10px 10px 10px;
}
.widget.menus .light li.parent a .oi, .widget.menus .light li.parent label .oi {
  font-size: 10px;
  margin-right: 10px;
  transition: all 0.5s;
  height: 6px;
  display: inline-block;
}
.widget.menus .light li.parent.active a {
  color: #0b703c;
  border: none;
}
.widget.menus .light li.parent.active .oi {
  transform: rotate(-90deg);
}
.widget.menus .dark {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #0b703c;
  border-radius: 3px;
  margin-top: 18px;
}
.widget.menus .dark li {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.widget.menus .dark li:last-child {
  border: none;
}
.widget.menus .dark li a {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  padding: 15px 10px 15px 20px;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s;
}
.widget.menus .dark li a:hover {
  color: #6bbf4e;
  padding-left: 25px;
}
.maincontent {
  z-index: 1;
}
.sidebar {
  padding-left: 40px !important;
  z-index: 0;
}
.sidebar .sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
}
.sidebar .info h1 {
  color: #0b703c;
  font-size: 16px;
  font-weight: 700;
}
.sidebar .multimedia-filters h1 {
  color: #0b703c;
  font-size: 16px;
  font-weight: 700;
}
.sidebar .multimedia-filters ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.sidebar .multimedia-filters ul li, .sidebar .multimedia-filters ul a {
  margin-left: 20px;
  padding: 2px 2px 2px 5px;
  cursor: pointer;
  font-size: 14px;
  color: #6bbf4e;
  user-select: none;
  list-style-type: circle;
  transition: color 0.3s;
}
.sidebar .multimedia-filters ul li label, .sidebar .multimedia-filters ul a label {
  color: #6bbf4e;
  margin: 0;
  padding: 0;
  float: none;
}
.sidebar .multimedia-filters ul li input[type="radio"], .sidebar .multimedia-filters ul a input[type="radio"] {
  display: none;
}
.sidebar .multimedia-filters ul li.active, .sidebar .multimedia-filters ul a.active, .sidebar .multimedia-filters ul li.jplist-selected, .sidebar .multimedia-filters ul a.jplist-selected {
  list-style-type: disc;
  color: #0b703c;
}
.sidebar .multimedia-filters ul li.active label, .sidebar .multimedia-filters ul a.active label, .sidebar .multimedia-filters ul li.jplist-selected label, .sidebar .multimedia-filters ul a.jplist-selected label {
  color: #0b703c;
}
.sidebar .multimedia-filters ul li:hover, .sidebar .multimedia-filters ul a:hover {
  color: #0b703c;
}
.sidebar .anchor-nav h1 {
  color: #0b703c;
  font-size: 16px;
  font-weight: 700;
}
.sidebar .anchor-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.sidebar .anchor-nav ul a {
  margin-left: 5px;
  padding: 2px 2px 2px 5px;
  cursor: pointer;
  display: block;
  font-size: 14px;
  color: #6bbf4e;
  transition: color 0.3s;
  text-decoration: none;
}
.sidebar .anchor-nav ul a:hover {
  color: #0b703c;
}
.sidebar .anchor-nav ul a .oi {
  font-size: 11px;
  padding-right: 10px;
}
.sidebar-sep {
  padding-right: 40px !important;
  border-right: 1px solid rgba(40, 82, 56, 0.05);
}
@media screen and (max-width: 991px) {
  .sidebar-sep {
    padding-right: 0 !important;
    border-right: none;
  }
}
.page-wrap {
  min-height: 100%;
  margin-bottom: -290px;
}
.page-wrap.fixed {
  margin-top: 48px;
}
.page-wrap:after {
  content: "";
  display: block;
}
.infographics {
  background: #6bbf4e;
  padding: 80px 0;
}
.infographics .item {
  text-align: center;
}
.infographics .item img {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px;
  max-height: 40px;
}
.infographics .item h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
  vertical-align: bottom;
  padding: 0;
  line-height: 30px;
  margin: 0;
}
.infographics .item p {
  margin-top: 5px;
  display: block;
  color: #0b703c;
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  font-weight: 400;
}
footer, .page-wrap:after {
  min-height: 290px;
}
footer {
  position: relative;
  background: #0b703c;
  padding: 40px 0;
  color: #fff;
}
footer a {
  color: #ccc;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
  text-decoration: none;
}
footer .logo {
  width: 150px;
  margin-bottom: 10px;
}
footer .content {
  font-size: 12px;
  padding-right: 15px;
  color: #cee2d8;
}
footer .content a {
  color: #cee2d8;
}
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  margin-top: 13px;
  font-family: 'Lato', sans-serif;
  color: #fff;
  font-weight: 700;
}
footer h1 {
  font-size: 16px;
}
footer h2 {
  font-size: 14px;
}
footer h3 {
  font-size: 13px;
}
footer h4, footer h5, footer h6 {
  font-size: 10px;
}
footer .copy {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 10px 0;
  color: #999;
  font-size: 11px;
  background: #141414;
}
.formulario label {
  color: #0b703c;
}
.formulario input, .formulario textarea, .formulario select {
  font-size: 13px;
}
.formulario a {
  text-decoration: none;
}
.formulario a h1 {
  transition: color 0.5s;
  display: block;
}
.formulario a h1:before {
  all: unset;
}
.formulario a .btn-icon {
  transition: color 0.5s;
  font-size: 14px;
  margin-right: 20px;
}
.formulario a:hover h1, .formulario a:hover .btn-icon {
  color: #6bbf4e;
}
.formulario .error {
  border-color: red;
}
.formulario label.error {
  color: red;
}
.formulario label.error a {
  color: red;
}
.formulario .formGroup {
  padding: 0 15px;
  margin: 0 0;
  border: 1px solid transparent;
  border-radius: 3px;
  background-color: #fff;
  transition: border 0.7s, background-color 0.7s, padding 0.25s, margin 0.25s;
}
.formulario .formGroup.selected {
  padding: 5px 15px;
  margin: 10px 0;
  border: 1px solid #eee;
  background-color: #f9f9f9;
}
.formulario #formulario-result div {
  font-size: 12px;
  opacity: 0.8;
}
.select2-results {
  font-size: 13px;
  max-height: 160px;
  overflow: auto;
}
.select2-container--bootstrap4 .select2-selection--multiple {
  height: auto !important;
}
.select2-results__option--highlighted {
  background-color: #6bbf4e !important;
}
.select2-selection__rendered {
  background-color: #fff;
}
span.select2.select2-container.select2-container--bootstrap4 {
  width: 100% !important;
}
#scrollTop {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #0b703c;
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #fff;
  cursor: pointer;
}
input[type='button'] {
  display: inline-block;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  outline: none;
  padding: 5px 20px;
  color: #fff;
  background: #6bbf4e;
  font-weight: 700;
  transition: all 0.3s;
}
input[type='button']:hover {
  background: #fff;
  color: #6bbf4e;
  border-color: #6bbf4e;
}
.basic-button {
  display: inline-block;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  outline: none;
  transition: all 0.3s;
}
.basic-button.fill-button {
  padding: 6px 12px;
  color: #fff;
  background: #0b703c;
  border: none;
}
.basic-button.fill-soft-button {
  padding: 6px 12px;
  color: #fff;
  background: #6bbf4e;
  border: 1px solid transparent;
}
.basic-button.fill-soft-button:hover {
  background: #fff;
  color: #6bbf4e;
  border-color: #6bbf4e;
}
.basic-button.line-button {
  padding: 4px 10px;
  color: #0b703c;
  border: 2px solid #0b703c;
  background: #fff;
}
.basic-button.line-button:hover {
  border-color: transparent;
}
.basic-button.small-button {
  padding: 4px 8px;
  color: #fff;
  background: #0b703c;
  border: none;
}
.basic-button:hover {
  text-decoration: none;
  color: #fff;
  background: #6bbf4e;
}
.basic-button span {
  font-size: 10px;
}
.accordion .card-header {
  padding: 5px;
}
.accordion .btn-link {
  color: #0b703c;
  text-decoration: none;
}
.accordion .btn-link span {
  font-size: 10px;
  padding: 3px 5px;
}
.table th {
  background: #6bbf4e;
  color: #fff;
  text-transform: uppercase;
}
