/* variables for text */
/* Main Color Palet */
/*
Green Dark: #5bbd80, rgb(91 189 128)
Green light: #c0d72f, rgb(192 215 47)

*/
/* variables for bg */
/* variables for fonts */
/* ================================ Global Mixins =========================== */
/*
** Transition use **
    .foo {
        @include transition(all 0.35s ease-in-out);
    }
*/
/*
** Position use **
    .foo {
        @include position(both);
    }
*/
/*
**clearfix use **
    .foo {
        @include clearfix;
    }
*/
/*
** center-auto **
    .foo {
        @include center-auto;
    }
*/
/*
** placeholder use **
    input,
    textarea {
        @include input-placeholder {
            color: $grey;
        }
    }
*/
/*
** pseudo use **
    div::after {
        @include pseudo;
        top: -1rem; left: -1rem;
        width: 1rem; height: 1rem;
    }
*/
/*
** prefix use **
    div {
       @include css3-prefix(transform, scale3d(2.5, 2, 1.5));
    }
}*/
/* Animation use
**
    @include keyframes(fade-out) {
        0% { opacity: 1; }
        90% { opacity: 0; }
    }
*/
.ln-blog-post {
  padding: 80px 0;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-blog-post {
    padding: 5.333vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .ln-blog-post {
    padding: 40px 0;
  }
}
.ln-blog-post__header {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-blog-post__header {
    margin-bottom: 2.667vw;
  }
}

.blog-post .ln-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post .ln-row {
    margin: 0 -1vw;
  }
}
.blog-post__item {
  width: 33.3333%;
  padding: 0 15px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__item {
    padding: 0 1vw;
  }
}
.blog-post__item:nth-child(n+4) {
  margin-top: 30px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__item:nth-child(n+4) {
    margin-top: 2vw;
  }
}
@media only screen and (max-width: 991px) {
  .blog-post__item {
    width: 50%;
  }
  .blog-post__item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post__item {
    width: 100%;
  }
  .blog-post__item:nth-child(n+2) {
    margin-top: 30px;
  }
}
.blog-post__item .wrap {
  height: 100%;
  position: relative;
  padding: 24px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__item .wrap {
    padding: 1.6vw;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post__item .wrap {
    padding: 15px;
  }
}
.blog-post__item .wrap:before {
  content: "";
  position: absolute;
  border: 0.1px solid #888888;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 70%;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  border-radius: 24px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__item .wrap:before {
    border-radius: 1.6vw;
  }
}
@media only screen and (max-width: 991px) {
  .blog-post__item .wrap:before {
    height: calc(100% - 100px);
  }
}
@media only screen and (max-width: 767px) {
  .blog-post__item .wrap:before {
    border-radius: 12px;
  }
}
.blog-post__item .wrap .media {
  position: relative;
}
.blog-post__item .wrap .media a {
  border-radius: 12px;
  padding-bottom: 60%;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__item .wrap .media a {
    border-radius: 0.8vw;
  }
}
.blog-post__item .wrap .media a img {
  -webkit-transition: 0.8s all;
  -moz-transition: 0.8s all;
  -ms-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.blog-post__item .wrap .content {
  position: relative;
  margin-top: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__item .wrap .content {
    margin-top: 1.333vw;
  }
}
.blog-post__item .wrap .content .blog-tag {
  font-size: 18px;
  line-height: 1.5;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__item .wrap .content .blog-tag {
    font-size: 1.2vw;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post__item .wrap .content .blog-tag {
    font-size: 16px;
  }
}
.blog-post__item .wrap .content .blog-title {
  line-height: 1.2;
  font-size: 26px;
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__item .wrap .content .blog-title {
    font-size: 1.73vw;
    margin-top: 0.667vw;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post__item .wrap .content .blog-title {
    font-size: 24px;
  }
}
.blog-post__item .wrap .content .ln-dis {
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__item .wrap .content .ln-dis {
    margin-top: 0.667vw;
  }
}
.blog-post__item .wrap .content .blog-btn {
  margin-top: 30px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__item .wrap .content .blog-btn {
    margin-top: 2vw;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post__item .wrap .content .blog-btn {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post__item .wrap .content .blog-btn a {
    width: 100%;
    text-align: center;
  }
}
.blog-post__item .wrap:hover:before {
  height: 100%;
  border-color: #c0d72f;
  box-shadow: 0 0 24px rgba(192, 215, 47, 0.3);
}
.blog-post__item .wrap:hover .media img {
  transform: scale(1.2);
}
.blog-post__loder {
  width: 100%;
  margin-top: 60px;
  text-align: center;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__loder {
    margin-top: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post__loder {
    margin-top: 40px;
  }
}
.blog-post__loder .load-more-btn {
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  margin: auto;
  text-transform: uppercase;
  gap: 10px;
  padding: 15px 35px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__loder .load-more-btn {
    gap: 0.667vw;
    padding: 1vw 2.333vw;
  }
}
.blog-post__loder .load-more-btn:disabled {
  background: #aaa;
  cursor: not-allowed;
}
.blog-post__loder .load-more-btn .loader-icon {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .blog-post__loder .load-more-btn .loader-icon {
    width: 1.067vw;
    height: 1.067vw;
    border-width: 0.133vw;
  }
}
.blog-post__loder .load-more-btn.loading .loader-icon {
  display: block;
  opacity: 1; /* Show loader on click */
}
.blog-post__loder .load-more-btn.loading .arrow-track {
  display: none;
}
.blog-post__loder .load-more-btn.loading .btn-text {
  opacity: 0.5;
}
.blog-post__loder .load-more-btn.loading:disabled {
  background: #aaa;
  cursor: not-allowed;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}