.hs-blog-listing .dnd-section .dnd-column {
  padding: 0;
}

/* Blog header */

.blog-header {
  background-color: #f8fafc;
  text-align: center;
}

.blog-header__inner {
  margin: 0 auto;
  max-width: 600px;
}

/* Blog header - author listing */

.blog-header__author-avatar {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  display: block;
  height: auto;
  margin: 0 auto 1.4rem;
  width: 200px;
}

.blog-header__author-social-links a {
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  margin: 0 5px;
  position: relative;
  width: 40px;
}

.blog-header__author-social-links a:hover,
.blog-header__author-social-links a:focus {
  background-color: #494a52;
}

.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
}

/* Blog header - tag listing */

.blog-index__tag-header {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  padding: 1rem;
}

.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}

.blog-index__tag-heading {
  border-bottom: 3px solid #d1d6dc;
  padding-bottom: 1rem;
}

/* Blog listing */

.blog-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-index::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.blog-index__post {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 2);
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 1000px) {
  .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 3);
    flex: 0 0 calc(100% / 3);
  }
}

@media screen and (min-width: 768px) {
  .blog-index__post--large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    justify-items: space-between;
  }
}

.blog-index__post.blog-index__post--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-index__post-inner-card {
  background: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  width: 100%;
}

.blog-index__post-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px 5px 0 0;
  display: block;
  padding-bottom: 63%;
  border-radius: 5px;
  overflow: hidden;
}

@media (min-width: 1000px) {
  .full-width .blog-index__post-image {
    min-height: 300px;
    padding-bottom: unset;
  }
}

.blog-index__post-inner-card .blog-index__post-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 24px 30px 30px 30px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');
.blog-post__tag-link,
.blog-post__tags {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01rem;
  text-transform: uppercase;
  padding-bottom: 10px;
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.blog-post__tag-link:hover {
  text-decoration: none;

}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');
.blog-index__post-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin: 0.5rem 0;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');
.blog-index__post-content--small h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');
.blog-index__post-content--small h2 a:hover {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.blog-post__meta-section {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 30px;
}
.blog-post__meta-section.no-min {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-post__read-more a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  padding-left: 10px;
  position: relative;
  top: 3px;
}

.blog-post__read-more svg {
  height: auto;
  width: 15px;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

/* Blog listing - sidebar */

@media screen and (min-width: 1000px) {
  .sidebar.full-width .blog-index .blog-index__post,
  .sidebar .full-width .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .sidebar.two-col .blog-index .blog-index__post,
  .sidebar .two-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 2);
    flex: 0 0 calc(100% / 2);
  }
  .sidebar.three-col .blog-index .blog-index__post,
  .sidebar .three-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 3);
    flex: 0 0 calc(100% / 3);
  }
  .sidebar.four-col .blog-index .blog-index__post,
  .sidebar .four-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 4);
    flex: 0 0 calc(100% / 4);
  }
}

@media screen and (max-width: 999px) {
  .sidebar.two-col .blog-index .blog-index__post,
  .sidebar .two-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 767px) {
  .sidebar .blog-index {
    padding: 1rem 0 3.3rem;
  }
}

@media screen and (max-width: 767px) {
  .blog-sidebar {
    padding: 2rem 1rem 0;
  }
}

.blog-sidebar h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
  margin-bottom: 20px;
  margin-top: 8px;
}

.blog-sidebar ul {
  background: #fff;
  border-radius: 5px;
  list-style: none;
  padding: 30px;
}

.blog-sidebar ul li {
  border-top: 1px solid #dfddd9;
  font-weight: 600;
  padding: 10px 0;
}

.blog-sidebar ul li:first-child {
  border-top-color: transparent;
  padding-top: 0;
}

.blog-sidebar ul li:last-child {
  padding-bottom: 0;
}

.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar a:hover {
  text-decoration: none;
}

.blog-sidebar .filter-link-count {
  display: none;
}

.blog-sidebar .filter-expand-link {
  position: relative;
  top: -15px;
  display: block;
  margin-bottom: 25px;
  text-transform: capitalize;
  text-align: center;
}

.blog-sidebar-post-listing ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-increment: list-number;
}

.blog-sidebar-post-listing li:before {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  content: counter(list-number);
  font-size: 36px;
  font-weight: 600;
  padding-right: 22px;
}

.blog-sidebar-post-listing li a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Blog mobile sidebar */

@media (max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .hs-blog-listing .span9 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter ul,
  .blog-sidebar.mobile .blog-sidebar-post-listing ul {
    display: none;
    opacity: 0;
    -webkit-transition: all 5s;
    -o-transition: all 5s;
    transition: all 5s;
    visibility: hidden;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter h3,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3 {
    cursor: pointer;
  }
  .blog-sidebar.mobile .blog-sidebar-topic-filter h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3:after {
    content: "+";
    padding-left: 6px;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter.clicked h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing.clicked h3:after {
    content: "-";
    padding-left: 7px;
  }

  .blog-sidebar.mobile .clicked ul {
    display: block;
    opacity: 1;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    visibility: visible;
  }
}

/* Blog pagination */

.blog-pagination__link--active {
  border: 2px solid #b0c1d4;
}


/* Blog post */

.post-featured-image {
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  margin-bottom: -110px;
  margin-top: 40px;
  min-height: 300px;
}

.blog-post {
  background: #fff;
  border-radius: 5px;
  margin: 0 auto;
  max-width: 960px;
  padding: 84px 100px 80px 100px;
  position: relative;
  width: 90%;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.blog-post__meta {
  margin: 1rem 0;
}

.blog-post__meta a {
  text-decoration: none;
}

.blog-post__timestamp {
  display: inline-block;
}

.blog-post__tags svg {
  height: auto;
  margin-right: 10px;
  width: 15px;
}

.blog-post__links-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 26px 0;
}

@media (max-width: 767px) {
  .blog-post__links-container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hs-blog-social-share {
    height: 0 !important;
  }
  .hs-blog-social-share-list {
    padding-top: 20px;
  }
}

.hs-blog-social-share .hs-blog-social-share-item-linkedin {
  margin-top: -7px;
}

.blog-post__back-to-blog,
.blog-post__back-to-blog:hover {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  margin-right: 10px;
  position: relative;
  top: 6px;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  width: 20px;
}

@media (max-width: 767px) {
  .blog-post img {
    float: none !important;
    width: 100% !important;
  }

  .blog-post {
    width: 90%;
    padding: 30px;
  }

  .blog-post h1 {
    font-size: 1.6rem;
  }
}

/* Blog related posts */

.blog-related-posts {
  margin-top: 3rem;
  padding: 2rem 0;
}

.blog-related-posts h2 {
  text-align: center;
}

.blog-related-posts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-related-posts .blog-index__post-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-align: left;
}

.blog-related-posts .blog-post__meta-section {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-related-posts__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  max-width: 100%;
  padding-bottom: 63%;
}

.blog-related-posts__title {
  margin: 1rem 0 0.5rem;
}

.blog-related-posts__title a {
  color: #494a52;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 100%;
}

.blog-comments form {
  max-width: 100%;
  padding-top: 2em;
}

.blog-comments .hs-submit {
  text-align: center;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}

/* Subscription section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
}

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
}

.subscription-form label {
  text-align: center;
}










/* Blog listing style */
.hs_listings_wrap {
  position: relative;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-bottom: 45px;
  padding: 0px 0px 0px 0px;
}

.hs_listings_container {
  width: 100%;
  padding: 10px;
  position: relative;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: flex;
}

.blog_header_wrap {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #f8fafc;
  width: 100%;
  margin-top: 0;
}

.hs-blog-listing .row-fluid [class*="span"] {
  float: none;
}

.hs-blog-listing .dnd-section {
  padding: 0!important;
}

.hs-blog-listing .dnd-section>.row-fluid {
  max-width: none !important;
  padding: 0!important;
}

.hs-blog-listing .dnd_area_header-module-1-flexbox-positioning {
  display: block !important;
}

.blog_header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 1250px;
}

.blog_header_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 10px;
}

.blog_header_cntnt_wrap {
  position: relative;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: flex;
}

.blog-header__title {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  text-align: left;
  color: #000000;
  font-family: "Montserrat", Sans-serif;
  font-size: 71px;
  font-weight: bold;
  line-height: 1.1em;
}

.blog-header__subtitle {
  margin: 0;
  width: 100%;
  color: #000000;
  font-family: "Muli", Sans-serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-top: 5px;
}


.main_content_wrapper {
  position: relative;
  width: 100%;
  padding: 40px 0px 100px 0px;
}

.main_content_conatiner {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 1250px;
}

.cntnt_row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog_sidebar {
  min-height: 1px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24.64%;
}

.sidebar_posts_wrap {
  min-height: 1px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 75.36%;
}

.blog_sidebar_col_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flow;
  width: 100%;
  padding-right: 25px;
}

.blog_sidebar_widget_wrap {
  position: relative;
  background-color: #fff;
  border: 0px solid #ccc; /* Solid gray border */
  border-radius: 5px;      /* Rounded corners */
  box-shadow: none;        /* Remove existing shadow */
  transition: none;        /* Remove animation */
  width: 100%;
  margin-top: 10px;
  margin-bottom: 60px;
  padding-top: 10px;
}

.sidebar_heading p {
  margin-bottom: 1rem;
  text-align: left;
  color: #495057;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.sidebar_heading {
  margin-top: 26px;
}

.sidebar_category h3 {
  margin-bottom: 1rem;
  text-align: left;
  color: #495057;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin-top: 0px;
}

.sidebar_category .widget-module {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.sidebar_category .widget-module >ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar_category .widget-module >ul>li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  font-weight: 700;
}

.sidebar_category .widget-module >ul>li >a {
  color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  line-height: 1.8;
}

.sidebar_category .widget-module>ul>li>i {
  font-family: 'pixicon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  color: #1274e7;
  width: 1.25em;
}

.pixicon-check-square-1:before {
  content: "\f152";
}
.blog_sidebar_widget_wrap:hover {
  box-shadow: none;        /* Disable hover shadow */
  transform: none;         /* Remove lift on hover */
}


.title_divider {
  --divider-border-style: solid;
  --divider-color: #CBCBCB;
  --divider-border-width: 1px;
  width: 100%;
  margin-bottom: 20px;
}

.divider {
  display: flex;
  margin: 0;
  direction: ltr;
  border-top: var(--divider-border-width) var(--divider-border-style) var(--divider-color);
  width: 100%;
}

.title_divider_inner {
  display: flex;
  padding-top: 2px;
  padding-bottom: 2px;
  margin-top: -13px;
}
.sidebar_posts_col_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 18px 0px 0px 15px;
  padding: 0px 0px 0px 25px;
  --grid-column-gap: 30px;
  --grid-row-gap: 35px;
}

.sidebar_posts {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.pagination_blog .blog_pagination {
  text-align: center;
  font-family: "Muli", Sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 5.7em;
  letter-spacing: 0px;
  margin-top: 53px;
}
.sidebar_posts_widget_wrap {
  transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
  display: block;
  width: 100%;
}

.pagination_blog .dnd_area_pagination-column-1-vertical-alignment {
  display: block !important;
}


.blog_pagination a.blog-pagination__next-link {
  box-shadow: none;
  margin-left: calc( 19px/2 );
  text-decoration: none;
}
.blog_pagination a.blog-pagination__prev-link {
  margin-right: calc( 19px/2 );
  color: #adb5bd;
}


.blog_pagination a.blog-pagination__link--active {
  color: #1274e7;
}

.blog_pagination a.blog-pagination__link--active:hover {
  color: #0c50a0;
}

.sidebar_posts .blog_index {
  display: grid;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-template-columns: repeat(2,1fr);
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-column-gap: 30px;
  grid-row-gap: 35px;
}

.blog_index_post {
  transition-property: background,border,box-shadow,-webkit-box-shadow;
  -webkit-transition-duration: .25s;
  -o-transition-duration: .25s;
  transition-duration: .25s;
  display: block;
}

.blog_index_post .blog_index_post_image_link {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 25px;
}


.blog_index_post_image img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
}
}

.blog_index_post_content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}

.blog_index_post_content h3 {
  line-height: 1.28;
  font-size: 20px;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0;
}

.blog_index_post_content h3 >a {
  color: #000000;
  font-family: "Muli", Sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.blog_post_meta_wrap {
  color: #e2000a;
  font-family: "Muli", Sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6em;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
  padding-top: 10px;
}


/* post page style */
.post_page_container_wrapper {
  position: relative;
  padding-top: 55px;
  padding-bottom: 45px;
}

.post_page_container {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 1140px;
}

.post_page_row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post_page_row .blog_sidebar {
  width: 24.123%;
}

.post_sidebar_cntnt {
  min-height: 1px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 75.877%;
}

.post_sidebar_cntnt_col_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 15px 0px 0px 25px;
  padding: 0px 0px 0px 25px;
}

.post_sidebar_cntnt_widget_wrap {
  position: relative;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  display: flex;
  align-content: flex-start;
}

.blog_post_body p {
  margin-bottom: 1rem;
  font-family: "Roboto", Sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.post_page_row .blog_sidebar .sidebar_heading {
  margin-top: 20px;
}

.post_page_row .blog_sidebar .blog_sidebar_widget_wrap {
  height: min-content;
}
.blog_comments {
  margin-bottom: 20px;
  width: 100%;
}

.latest_title {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.latest_title >h3 {
  color: #000000;
  font-family: "Muli", Sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  padding: 15px 0;
}
.latest_posts {
  width: 100%;
  position: relative;
}

.latest_posts .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
  width: 100%;
  position: relative;
  padding-top: 30px;
  bottom: 0;
}

.latest_posts .slick-dots>li {
  display: inline-block;
  margin: 0 8px;
  cursor: pointer;
  padding-top: 0;
  border-radius: 3.5px;
  height: 7px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .25;
  background: rgba(33, 37, 41, 0.4);
  width: 7px;
}

.latest_posts .slick-dots>li>button {
  display: none;
}

.latest_posts .slick-dots>li.slick-active {
  width: 20px;
  background: rgba(33, 37, 41, 0.6);
  opacity: 1;
}
.latest_posts .related-image {
  max-width: 100%;
  border: none;
  height: 200px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.carouselcell_inner {
  padding: 10px;
}

.related-meta {
  position: relative;
  padding: 20px;
}

.custom-all-topics {
  display: inline-block;
  margin: 0.25rem 0;
  font-size: 14px;
}

.meta_categories a .post_topic_text {
  color: #1274e7;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  background-color: rgba(107, 170, 244, 0.15);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 10px;
  line-height: 12px;
  margin-right: 3px;
}

.custom-all-topics a.latest_title {
  box-shadow: none;
  line-height: 1.28;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #212529;
  font-family: "Manrope", sans-serif !important;
  letter-spacing: -0.01em;
}

.latest_meta_title {
  font-size: 20px;
  line-height: 1.28;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #212529 !important;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  display: block;
}
.post_date_wrap {
  font-size: 14px;
  color: #adb5bd !important;
  display: inline-block;
  line-height: 1.8;
}

.post_date_wrap .clock {
  padding-right: 0.25rem;
  line-height: 1.8;
  font-size: 14px;
}

.post_date_wrap .clock svg,.post_date_wrap .clock svg path {
  fill: #adb5bd;
}

.post_date_wrap .post_date {
  font-size: 14px;
  top: -6px;
  position: relative;
}

.post_date_wrap:hover .clock svg, .post_date_wrap:hover .clock svg path {
  fill: #748290;
}

.latest_posts .slick-arrow {
  color: #333;
  position: absolute;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 24px;
  top: calc(50% - 24px );
  background: transparent;
  border: 2px solid rgba(33, 37, 41, 0.3);
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  padding: 0;
}

.latest_posts .previous {
  left: -100px;
}

.latest_posts .next {
  right: -100px;
}

.latest_posts .slick-arrow svg {
  overflow: hidden;
  vertical-align: middle;
  fill: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.latest_posts .slick-arrow svg path {
  fill: rgba(33, 37, 41, 0.3);
}

span.filter-link-count {
    display: none;
}
h1.top_title {
  color: #000000;
  line-height: 1.0;
  font-family: "Muli", Sans-serif;
  font-size: 42px;
  font-weight: 800;
  
}











/* media query */
@media screen and (max-width: 1750px) {
  .ft_wrap {
    margin: 0;
  }
}
@media screen and (max-width: 1450px) {
  .latest_posts .previous {
    left: -50px;
  }

  .latest_posts .next {
    right: -50px;
  }

  .latest_posts {
    padding: 0 40px;
  }

  .post_sidebar_cntnt_widget_wrap {
    padding-right: 10px;
  }
  .post_sidebar_cntnt_col_wrap {
    margin-left: 0;
  }
}
@media (max-width:767px){
  .blog_sidebar {
    width: 100%;
  }

  .sidebar_posts_wrap {
    width: 100%;
  }

  .cntnt_row {
    flex-wrap: wrap;
  }

  .blog-header__title {
    font-size: 32px;
    line-height: 1.1em;
  }

  .blog_header_inner {
    margin: 0;
    padding: 40px 15px 0px 15px;
  }

 .blog_header_wrap {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #f8fafc;
}

  .hs_listings_container {
    padding: 0;
  }

  .hs_listings_wrap {
    padding: 25px 0px 40px 0px;
  }

  .main_content_wrapper {
    padding: 5px 25px 35px;
  }

  .sidebar_posts_col_wrap {
    margin: 0;
    padding: 0;
  }

  .sidebar_posts .blog_index {
    grid-template-columns: repeat(1,1fr);
  }
  .post_page_row .blog_sidebar {
    display: none;
  }

  .post_page_row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .post_sidebar_cntnt {
    width: 100%;
  }

  .post_sidebar_cntnt_col_wrap {
    margin: 0;
    padding: 0 25px;
    padding-top: 15px;
  }
  
    .cntnt_row {
    display: flex;
    flex-direction: column;
  }

  .blog_sidebar {
    order: 2; /* show after posts */
    width: 100%; /* make it full-width below posts */
   margin-top: 40px; /* spacing from post grid */
  }

  .sidebar_posts_wrap {
    order: 1; /* show first */
    width: 100%;

  .blog_sidebar_col_wrap {
    padding: 0 0px;
  }
  .post_sidebar_cntnt_widget_wrap {
    padding-right: 0;
  }
  h1.top_title {
  color: #000000;
  line-height: 1.0;
  font-family: "Muli", Sans-serif;
  font-size: 30px;
  font-weight: 800;
  
}
}
@media(max-width: 479px){
  .related-meta {
    padding-left: 0;
    padding-right: 0;
  }
}

/*ajust side-bar content-height */
.blog_sidebar_widget_wrap{
    height: fit-content;
}
/*visually remove see all design display */
a.filter-expand-link {
display: none;
}

.blog_post_body {
    max-width: 100%;
}