/* Cards Missão/Visão/Valores */

.cards {
  margin-top: 6rem;
  justify-content: space-around;
}
.card {
  max-width: 350px;
  background-color: #126c35;
  color: #fff;
  position: relative;
  margin-top: 115px;
  margin-bottom: 30px;
}

.card::after { 
  content: "";
  position: absolute;
  bottom: -0.9rem;
  left: 0rem;
  display: block;
  height: 7px;
  width: 100%;
  background: #FECA18;
}

.card a {
  color: inherit;
  text-decoration: none;
}

.card-thumb {
  width: 100%;
  text-align: left;
}
/* Bee Anime */
.card-thumb img {
  position: absolute;
  left: -20px;
  transition: transform 1s;
}
.card:hover img {
  transform: translateX(140%);
}

.card-thumb img {
  width: 150px;
  margin-top: -8rem;
}

.card-title {
  margin: 5px 0;
  font-size: 1.8rem;
  text-align: center;
  color: #FECA18;
}
.card-excerpt {
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 1399px) {
  .card{
    min-width: 350px;
    width: auto;
  }
}
.card-content ul {
  list-style: none;
  text-align: center;
  margin-left:-20px;
}

html .bg-service {
	background: #116230;
    height: 100%;
}

html .bg-service h5 {
	color: #FFFFFF !important;
    font-weight: 600 !important;
}

html .bg-service h3 {
	color: #FECA18;
}

html .bg-service p {
	color: #FFFFFF;
	font-weight: 600;
}

html .bg-service a {
	color: #FFFFFF;
}

html .service-title {
	margin-bottom: 10px !important;
}

html .service-item {
	padding-bottom: 7px;
    border-width: 8px !important;
    border-radius: 0 !important;
    height: 100%;
    transition: transform .3s;
}

html .service-item:hover {
    box-shadow: 0px 0px 20px -5px rgba(119, 121, 1, 0.959);
    transform: translateY(-10px);
  }

html .bg-service:hover{
    background: #0c5729;
}

/* Cards serviços */

.service-item div {
  z-index: 1;
}

.service-item div::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 2px 2px 0 0;
  transition: .5s;
  z-index: -1;
}

.service-item * {
  transition: .5s;
}

/* Posts blog */

html .blog-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

html .blog-items .blog-item {
  position: relative;
}

html .blog-items .blog-item img {
  width: 100%;
}

html .blog-items .blog-item .content-blog-item {
  position: absolute;
  bottom: 70px;
  left: 0px;
  z-index: 11;
  width: 100%;
  padding: 20px;
}

html .blog-items .blog-item .content-blog-item h2,
html .blog-items .blog-item .content-blog-item p {
  color: #FFFFFF;
  padding: 0;
  margin: 0;
}

html .blog-items .blog-item .content-blog-item h2 {
  font-size: 2.5rem;
  width: 100%;
  line-height: 2.5rem;
  padding-bottom: 15px;
  text-align: center;
}


.blog-items .blog-item .img-blog-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 135, 84, 0.8);
  z-index: 10;
}

.blog-item{
  max-height: 300px;
}

.blog-item img{
  max-width: 100%;
  height: 300px;
}

.blog-item a{
  color:#fff;
}

.blog-item a:hover{
  color:var(--secondary);
}

html .blog-title p {
  color: #000000;
  font-size: 1.125rem;
  font-weight: 500;
}

@media (max-width:992px) {
  html .blog-items {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

html .blog-items .blog-item .content-blog-item h2 {
    font-size: 1.75rem;
}
}