.blogs_wrapper {
  position: relative;
  padding-top: 50px;
  padding-bottom: 80px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .blogs_wrapper {
    padding-bottom: 24px;
  }
}
.blogs_wrapper .title-block-home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}
.blogs_wrapper .title-block-home .section-title h2 {
  font-size: 90px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .blogs_wrapper .title-block-home .section-title h2 {
    font-size: 40px;
  }
}
.blogs_wrapper .title-block-home .button_all a {
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blogs_wrapper .title-block-home .button_all a svg {
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .blogs_wrapper .title-block-home .button_all {
    display: none;
  }
}
.blogs_wrapper .archive_home {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.blogs_wrapper .archive_home .latest_posts-list {
  flex: 1 1 360px;
}
.blogs_wrapper .archive_home .latest_posts-list a {
  text-decoration: none;
}
.blogs_wrapper .archive_home .latest_posts-list .item_thumbnail {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  margin-bottom: 30px;
}
.blogs_wrapper .archive_home .latest_posts-list .item_thumbnail img {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.blogs_wrapper .archive_home .latest_posts-list .latest_posts-list-item {
  font-size: 22px;
  font-family: "NeueMachina";
  color: #1c1c1c;
  line-height: 1.2;
  margin-top: 15px;
}
.blogs_wrapper .archive_home .latest_posts-list .item_info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.blogs_wrapper .archive_home .latest_posts-list .item_info .category {
  background: #1c1c1c;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 15px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none !important;
}
.blogs_wrapper .archive_home .latest_posts-list .item_info .date {
  color: rgba(28, 28, 28, 0.5647058824);
  font-weight: 300;
  text-decoration: none !important;
  font-size: 14px;
}
.blogs_wrapper .archive_home .latest_posts-list:hover .item_thumbnail img {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
}
