@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.blog-section {
  padding: clamp(130px, 16vw, 170px) 0 60px;
}
@media screen and (max-width: 991px) {
  .blog-section {
    padding: clamp(120px, 18vw, 140px) 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .blog-section {
    padding: clamp(110px, 18vw, 120px) 0 20px;
  }
}
.blog-section__posts {
  margin-top: 60px;
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .blog-section__posts {
    margin-top: 30px;
  }
}
.blog-section__posts .post-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-section__posts .post-item__image img {
  border-radius: 16px;
  height: 240px;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .blog-section__posts .post-item__image img {
    height: 180px;
  }
}
.blog-section__posts .post-item__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 0;
}
.blog-section__posts .post-item__content h2 {
  color: #2F2F2F;
  font: normal 20px "LatoBold", -apple-system, BlinkMacSystemFont, sans-serif;
  margin-bottom: 5px;
}
@media screen and (min-width: 991px) {
  .blog-section__posts .post-item__content h2 {
    min-height: 52px;
  }
}
@media screen and (max-width: 768px) {
  .blog-section__posts .post-item__content h2 {
    font-size: 18px;
  }
}
.blog-section__posts .post-item__sub-content {
  display: flex;
  gap: 20px;
  padding-bottom: 15px;
}
.blog-section__posts .post-item__sub-content .author,
.blog-section__posts .post-item__sub-content .date {
  color: #595959;
  font: normal 14px "LatoMedium", -apple-system, BlinkMacSystemFont, sans-serif;
}
@media screen and (max-width: 768px) {
  .blog-section__posts .post-item__sub-content .author,
  .blog-section__posts .post-item__sub-content .date {
    font-size: 12px;
  }
}
.blog-section__posts .post-item__excerpt {
  color: #595959;
  font: normal 16px "LatoMedium", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 22px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .blog-section__posts .post-item__excerpt {
    font-size: 14px;
  }
}
.blog-section__posts .post-item__button {
  margin-top: 20px;
}
.blog-section__posts .post-item__button a {
  background: #fff;
  border: 1px solid #F16122;
  border-radius: 8px;
  color: #F16122;
  display: block;
  font: normal 14px "OpenSansBold", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 18px;
  padding: 3px 0 7px;
  text-align: center;
}
.blog-section__posts .blog-preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  width: 100%;
}
.blog-section__posts .blog-preloader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(241, 97, 34, 0.2);
  border-top-color: #F16122;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.blog-section__posts .pagination-click {
  margin-top: 30px;
}
.blog-section__posts .pagination-click .btn {
  background: #F16122;
  border-radius: 10px;
  color: #fff;
  display: block;
  font: normal 18px "OpenSansBold", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 24px;
  margin-right: 20px;
  padding: 10px 25px;
  transition: opacity 0.3s ease;
}

.bottom-content-image {
  padding: 40px 0;
}

.bottom-content .content-details__wrap-button a {
  background: #F16122;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font: normal 18px "OpenSansBold", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 24px;
  padding: 10px 35px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .bottom-content .content-details__wrap-button a {
    display: block;
  }
}
.bottom-content .content-details__wrap.image-wrap img {
  height: 284px;
  object-fit: contain;
  width: 415px;
}
@media screen and (max-width: 768px) {
  .bottom-content .content-details__wrap.image-wrap img {
    height: 118px;
    width: 322px;
  }
}
.bottom-content .content-details__wrap-description {
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .bottom-content .content-details__wrap-description {
    text-align: center;
  }
}

/*# sourceMappingURL=blog.css.map */
