/* 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; }
    }
*/
.inner-banner {
  position: relative;
  overflow: hidden;
  padding: 200px 0 140px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .inner-banner {
    padding: 13.333vw 0 9.333vw;
    border-bottom-left-radius: 6.667vw;
    border-bottom-right-radius: 6.667vw;
  }
}
@media only screen and (max-width: 767px) {
  .inner-banner {
    padding: 160px 0 60px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
}
.inner-banner .ln-container {
  position: relative;
  z-index: 3;
}
.inner-banner__bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.inner-banner__bg img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.inner-banner__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(40, 40, 43, 0.7);
}
.inner-banner .ln-title {
  text-align: center;
}
.inner-banner .blog-tag {
  text-align: center;
  margin-top: 40px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .inner-banner .blog-tag {
    margin-top: 2.667vw;
  }
}
.inner-banner .blog-tag.upper-block {
  margin-top: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .inner-banner .blog-tag.upper-block {
    margin-top: 0;
    margin-bottom: 1.33vw;
  }
}
.inner-banner .blog-title {
  text-transform: unset;
}
.inner-banner .blog-author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-top: 40px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .inner-banner .blog-author {
    margin-top: 2.667vw;
  }
}
.inner-banner .blog-author .author-media {
  border-radius: 100%;
  overflow: hidden;
  outline: 1px solid #888888;
  outline-offset: 5px;
  width: 70px;
  min-width: 70px;
  height: 70px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .inner-banner .blog-author .author-media {
    outline-offset: 0.333vw;
    width: 4.667vw;
    min-width: 4.667vw;
    height: 4.667vw;
  }
}
@media only screen and (max-width: 767px) {
  .inner-banner .blog-author .author-media {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }
}
.inner-banner .blog-author .author-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.inner-banner .blog-author .author-detail {
  padding-left: 15px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .inner-banner .blog-author .author-detail {
    padding-left: 1vw;
  }
}
.inner-banner .blog-author .author-detail .author-name {
  line-height: 1.5;
  font-size: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .inner-banner .blog-author .author-detail .author-name {
    font-size: 1.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .inner-banner .blog-author .author-detail .author-name {
    font-size: 18px;
  }
}
.inner-banner .blog-author .author-detail .post-date {
  display: inline-block;
  line-height: 1.5;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .inner-banner .blog-author .author-detail .post-date {
    font-size: 1.067vw;
    margin-top: 0.667vw;
  }
}
@media only screen and (max-width: 767px) {
  .inner-banner .blog-author .author-detail .post-date {
    font-size: 14px;
  }
}

.blog-tag-select {
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.blog-tag-select select {
  display: none;
}
.blog-tag-select .dropdown-display {
  padding: 10px 20px;
  border: 1px solid #28282B;
  border-radius: 100px;
  cursor: pointer;
  line-height: 1.2;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.5;
  font-family: "Figtree", sans-serif;
}
.blog-tag-select .dropdown-display::after {
  content: "";
  transition: transform 0.2s ease;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='20' height='20' x='0' y='0' viewBox='0 0 24 24' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%23c0d72f' fill-rule='evenodd' d='M5.293 8.293a1 1 0 0 0 0 1.414l6 6a1 1 0 0 0 1.414 0l6-6a1 1 0 0 0-1.414-1.414L12 13.586 6.707 8.293a1 1 0 0 0-1.414 0z' clip-rule='evenodd' opacity='1' data-original='%23000000'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.blog-tag-select .dropdown-display.open::after {
  transform: rotate(-180deg);
}
.blog-tag-select .dropdown-options {
  display: none;
  position: relative;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid #28282B;
  border-radius: 12px;
  background: #fff;
  max-height: 260px;
  overflow-y: auto;
  z-index: 1000;
}
.blog-tag-select .dropdown-options li {
  padding: 10px 12px;
  cursor: pointer;
  font-family: "Figtree", sans-serif;
  line-height: 1.5;
  text-transform: uppercase;
  font-size: 14px;
}
.blog-tag-select .dropdown-options li.active {
  background: #c0d72f;
  color: #fff;
  font-weight: 600;
}
.blog-tag-select .dropdown-options li:hover {
  background: rgba(185, 213, 54, 0.1294117647);
}