.blog-posts-wrapper {
  position: relative;
  opacity: 0;
  transform: translateY(-50px);
  margin-top: 70px;
  position: relative;
}

.blog-posts-wrapper.loaded {
  opacity: 1;
  transform: none;
  transition: all 1s ease;
}

.blog-posts-wrapper .home-content-header {
  color: #262626;
  font-family: 'Playfair Display';
  font-size: 29px;
  line-height: 32px;
}

.blog-posts-wrapper .yellow-line {
  background-color: #DDC514;
  display: inline-block;
  height: 2px;
  margin: 17px 0;
  width: 83px;
  margin-bottom: 15px;
}

.blog-posts-wrapper .blog-posts {
  margin-top: 10px;
}

.blog-posts-wrapper .post-item {
  float: left;
  width: 32%;
}

.blog-posts-wrapper .post-item:nth-of-type(3n+1) {
  clear: left;
  margin-right: 1%;
}

.blog-posts-wrapper .post-item:nth-of-type(3n+2) {
  margin-left: 1%;
  margin-right: 1%;
}

.blog-posts-wrapper .post-item:nth-of-type(3n+3) {
  margin-left: 1%;
}

.blog-posts-wrapper .post-item .blog-img {
  border-radius: 23px;
  margin-bottom: 17px;
}

.blog-posts-wrapper .post-item .blog-img:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgb(135 135 135);
  -moz-box-shadow: 0px 0px 20px 0px rgba(135,135,135,1);
  box-shadow: 0px 0px 20px 0px rgb(135 135 135);
  transition: ease-in-out 0.25s;
}

.blog-posts-wrapper .post-item .blog-img img {
  border-radius: 23px;
  display: block;
  max-width: 100%;
}

.blog-posts-wrapper .post-item .blog-title {
  font-family: 'Playfair Display';
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 15px;
  color: #262626;
}

.blog-posts-wrapper .post-item .blog-title:hover {
  color: #004415;
}

.blog-posts-wrapper .post-item .blog-relatedText {
  margin-bottom: 15px;
}

.blog-posts-wrapper .post-item .read-more {
  color: #004415;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-posts-wrapper .post-item .read-more img {
  display: inline-block;
  padding-left: 7px;
  height: 11px;
  width: 8px;
  box-sizing: content-box;
}

.blog-posts-wrapper .post-item .read-more:hover img {
  animation: bounce 2s;
}

.blog-posts-wrapper .more-blogs {
  display: block;
  margin-top: 25px;
  position: static;
}

.blog-posts-wrapper .more-blogs a {
  background-color: #004415;
  border-radius: 33px;
  color: #DDC514;
  display: inline-block;
  font-size: 16px;
  margin-top: 19px;
  letter-spacing: 0.12em;
  padding: 15px 40px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  line-height:24px;
}

.blog-posts-wrapper .more-blogs a:hover {
  background-color: #002a0d;
}

.blog-posts-wrapper .more-blogs a img {
  display: inline-block;
  padding-left: 15px;
  height: 11px;
  width: 8px;
  box-sizing: content-box;
}

.blog-posts-wrapper .more-blogs a:hover img {
  animation: bounce 2s;
}

@media (max-width:1100px) {
  .blog-posts-wrapper .post-item .blog-img {
    margin-bottom: 15px;
  }

  .blog-posts-wrapper .post-item .blog-title {
    font-size: 24px;
    line-height: 28px;
  }

}

@media (max-width:1000px) {
  .blog-posts-wrapper .yellow-line {
    margin-bottom: 9px;
  }

  .blog-posts-wrapper .post-item {
    width: 48%;
    margin-left: 2%;
    margin-right: 2%;
  }

  .blog-posts-wrapper .post-item:nth-of-type(3n+1) {
    margin-left: 0%;
  }

  .blog-posts-wrapper .post-item:nth-of-type(3n+2) {
    margin-right: 0%;
  }

  .blog-posts-wrapper .post-item .blog-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .blog-posts-wrapper .post-item:nth-of-type(3) {
    display:none;
  }

}

@media (max-width:900px) {
  .blog-posts-wrapper .post-item {
    float: left;
    width: 49%;
  }

  .blog-posts-wrapper .post-item:nth-of-type(3n+1) {
    clear: none;
  }

  .blog-posts-wrapper .post-item:nth-of-type(odd) {
    margin-right: 1%;
    margin-left: 0%;
    width: 49%;
  }

  .blog-posts-wrapper .post-item:nth-of-type(even) {
    margin-right: 0%;
    margin-left: 1%;
    width: 49%;
  }
}

@media (max-width:800px) {
  .blog-posts-wrapper .home-content-header {
    font-size: 24px;
    line-height: 22px;
  }

  .blog-posts-wrapper .yellow-line {
    display: block;
    margin-bottom: 15px;
    margin-top: 10px;
  }

  .blog-posts-wrapper .blog-posts {
    margin-top:25px;
  }

  .blog-posts-wrapper .post-item .blog-title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
  }

}

@media (max-width:600px) {
  .blog-posts-wrapper .post-item {
    margin-bottom: 40px;
  }

  .blog-posts-wrapper .post-item:nth-of-type(odd) {
    margin-right: 0%;
    margin-left: 0%;
    width: 100%;
  }

  .blog-posts-wrapper .post-item .blog-img {
    display: none;
    margin-bottom: 14px;
  }

  .blog-posts-wrapper .more-blogs {
    display: inline-block;
    margin-top: 0;
  }

  .blog-posts-wrapper .post-item:nth-of-type(even) {
    margin-right: 0%;
    margin-left: 0%;
    width: 100%;
  }

}

@media (max-width:500px) {
  .blog-posts-wrapper {
    margin-top:50px;
  }

  .blog-posts-wrapper .post-item .blog-img {
    display: block;
  }
}

@media (max-width:450px) {
  .blog-posts-wrapper .more-blogs,
  .blog-posts-wrapper .more-blogs a {
    width: 100%;
  }
}














