.section-blog {
  padding-top: 80px;
}

.section-blog-image {
    position: absolute;
    opacity: 0.15;
    z-index: 0;
    top: 0;
    right: -22%;
    margin-top: -80px;
}

.section-blog .section-blog-wrapper {
  display: flex;
  gap: 15px;
}

.post-content-single p{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-blog-all {
  background: #f0faff;
  padding: 50px 60px;
}

.section-blog-all-wrapper {
  z-index: 1;
  position: relative;
}

.section-blog-title {
  padding-bottom: 33px;
}

.section-blog .post-box {
  width: 50%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

.section-blog .post-box a h5{
  color: #000;
  transition: color .3s ease-in-out;
}

.section-blog .post-box a:hover h5{
  color:#28A2F0;
}

.post-thumbnail {
  background-position: center;
  max-height: 230px;
  height: 230px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin-bottom: 23px;
}

.post-box:first-child .post-thumbnail {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 0px;
}

.post-box:last-child .post-thumbnail {
  border-top-left-radius: 0px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 0px;
}

.section-blog-title-single {
  padding-bottom: 5px;
}

.section-blog-post-date-single {
  text-align: start;
  width: 100%;
  padding-bottom: 20px;
  font-size: 14px;
  color: #28a2f0;
  font-weight: 400;
  line-height: 21px;
}

.section-blog .post-content-single {
  padding-bottom: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.section-blog .button-link-single {
  padding-top: 0;
  text-align: end;
  width: 100%;
}

.section-blog .button-section-center {
  padding-top: 50px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .section-blog-all {
    padding: 25px 30px 25px 30px;
  }
}

@media screen and (max-width: 991px) {
  .section-blog .section-blog-wrapper {
    flex-direction: column;
  }

  .section-blog .post-box {
    width: 100%;
    padding-bottom: 30px;
  }

  .post-thumbnail {
    background-position: center;
    max-height: 330px;
    height: 330px;
  }
}

@media screen and (max-width: 768px) {
  .section-blog-all {
      padding: 25px 30px 25px 30px;
  }
}