/* Blog Navigation */

.blog-navigation {
  background-color: #fff;
  box-shadow: -12px 12px 22px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .blog-navigation {
    display: block;
    padding: 0;
    text-align: center;
  }
}

.blog-navigation__tag-filter form {
  background-color: #f2f4f6;
  border: none;
  color: #051f46;
  padding: 30px;
}

#blog-filter__category {
  background-color: #f2f4f6;
  border: none;
  color: #051f46;
  width: auto;
}

@media (max-width: 767px) {
  .blog-filter-tags {
    text-align: center;
  }
}

.blog-navigation__search .hs-search-field,
.blog-navigation__search .hs-search-field__bar {
  height: 100%;
}

.blog-navigation__search form {
  align-items: center;
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: row;
  height: 100%;
  margin-left: auto;
  max-width: 100%;
  padding: 0;
  position: relative;
}

@media (max-width: 767px) {
  .blog-navigation__search form {
    margin: 0 auto;
    padding: 0;
  }
}

.blog-navigation__search--no-label form:before {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='25px' height='22px' viewBox='0 0 25 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Blog' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Construction---Blog---2-col' transform='translate(-1085.000000, -388.000000)'%3E%3Cg id='hero' transform='translate(0.000000, 105.000000)'%3E%3Cg id='Group-5' transform='translate(1086.000000, 284.000000)'%3E%3Ccircle id='Oval' stroke='%231F2E43' cx='5.33333333' cy='5.33333333' r='5.33333333'%3E%3C/circle%3E%3Cline x1='9.47691329' y1='8.66666667' x2='16' y2='13.2736132' id='Path-3' stroke='%23051F46'%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
  height: 25px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 25px;
}

@media (max-width: 767px) {
  .blog-navigation__search--no-label form:before {
    left: 10px;
  }
}

.blog-navigation__search form label {
  display: block;
  flex-shrink: 0;
}

.blog-navigation__search form input.hs-search-field__input {
  border: none;
  color: #051f46;
  padding: 0.75rem 2.25rem;
}

.blog-navigation__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #fff;
  border-color: #d0d0d0;
  padding: 10px;
  position: absolute;
  width: 100%;
  z-index: 1;
}

/* prettier-ignore */
.blog-navigation__search .hs-search-field--open .hs-search-field__suggestions li {
  padding: 5px 0;
}

.blog-navigation__search form button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  height: 100%;
}

/* Blog Post Header */

.blog-header {
  background-color: #f2f4f6;
  margin-bottom: 10px;
  padding: 10px 0;
}

/* Blog Post Listing */

.blog-index__post {
  border-bottom: 4px solid #ff5e14;
  box-shadow: -12px 12px 22px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  margin: 75px 0;
}

.blog-index__post-image-wrapper {
  flex-shrink: 0;
  position: relative;
  width: 50%;
}

.blog-index__post-image {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
  position: absolute;
  width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .blog-index__post-image-wrapper,
  .blog-index__post-image {
    display: block;
    height: auto;
    position: static;
  }
}

@media screen and (max-width: 1000px) {
  .blog-index__post {
    flex-direction: column;
    height: 100%;
  }

  .blog-index__post-image-wrapper {
    border-radius: 0;
    display: block;
    height: 175px;
    width: 100%;
  }
}

.blog-index__post-content {
  padding: 30px 50px;
}

h3.blog-index__post-content__title {
  margin: 0;
}

.blog-index__post-content__title a {
  color: inherit;
  text-decoration: none;
}

.blog-author {
  align-items: center;
  display: flex;
}

.blog-author__image {
  height: 60px;
  margin-right: 20px;
  overflow: hidden;
  width: 60px;
}

.blog-author__image img {
  height: 100%;
  width: auto;
}

.blog-author__name h5 {
  margin: 10px 0;
}

.blog-index__tag-header {
  margin-top: 80px;
}

.blog-tags,
.blog-author,
.blog-index__post__date {
  margin-bottom: 20px;
}

.blog-tag:after {
  content: ',';
}

.blog-tag:last-child:after {
  content: '';
}

.blog-summary {
  border-top: 2px solid #e7ebef;
  flex-grow: 1;
  margin: 20px 0;
  padding-top: 20px;
}

.blog-summary h1,
.blog-summary h2,
.blog-summary h3,
.blog-summary h4,
.blog-summary h5,
.blog-summary h6,
.blog-summary p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* Blog Pagination */

.blog-pagination {
  margin: 25px 0 50px;
  text-align: center;
}

.blog-pagination__link {
  letter-spacing: 1.6px;
  margin: 0 3px;
  padding: 10px;
}

a.blog-pagination__link--active {
  background-color: #051f46;
  color: #fff;
}

.blog-pagination .blog-pagination__prev-link--disabled,
.blog-pagination .blog-pagination__next-link--disabled {
  color: #d0d0d0;
  cursor: default;
  pointer-events: none;
}

/* Two Column Blog Styles  */

.blog-index--2-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 80px;
}

.blog-index--2-col__post {
  box-shadow: -12px 12px 22px -1px rgba(0, 0, 0, 0.1);
  margin-top: 80px;
  width: calc(50% - 50px);
}

@media screen and (max-width: 1000px) {
  .blog-index--2-col {
    flex-direction: column;
  }

  .blog-index--2-col__post {
    width: 100%;
  }
}

.blog-index--2-col__post-image-wrapper {
  border-bottom: 4px solid #ff5e14;
  display: block;
  height: 230px;
  margin-bottom: 20px;
  width: 100%;
}

.blog-index--2-col__post-image {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
  width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .blog-index--2-col__post-image-wrapper,
  .blog-index--2-col__post-image {
    display: block;
    height: auto;
  }
}

.blog-index--2-col__post-content {
  display: flex;
  flex-direction: column;
  padding: 10px 40px 50px;
}

.blog-post__tags {
  padding: 20px 0;
}

.blog-index--2-col__post-content__title {
  margin: 20px 0 0;
}

.blog-index--2-col__post-content__title a {
  color: inherit;
  text-decoration: none;
}

/* Blog Post Styles  */

.blog-post {
  padding: 0 100px;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .blog-post {
    padding: 0 20px;
  }
}

a.back-to-blog {
  font-weight: 700;
  text-decoration: none;
}

a.back-to-blog:hover {
  font-weight: 700;
}

.back-to-blog div {
  display: inline;
}

.blog-post__tag {
  font-weight: 300;
  text-decoration: none;
}

/*
  .blog-post__tag:after {
  content: ',';
} */

.blog-post__tag:last-child:after {
  content: '';
}

.blog-post__title {
  margin: 10px 0;
}

.blog-author__name {
  color: inherit;
  text-decoration: none;
}

.blog-post__image-wrapper {
  height: 420px;
  margin: 35px 0;
  position: relative;
  width: 100%;
}

.blog-post__image {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .blog-post__image-wrapper,
  .blog-post__image {
    display: block;
    height: auto;
  }
}

.blog-post__social-sharing .share-title {
  display: none;
}

.blog-post__social-sharing .social-links {
  align-items: center;
  color: #19cca3;
  display: flex;
  flex-direction: row;
}

.blog-post__social-sharing .social-links__icon span {
  align-items: center;
  display: flex;
  justify-content: center;
}

.blog-post__social-sharing .social-links__icon {
  align-items: center;
  background-color: #f2f4f6;
  display: flex;
  height: 30px;
  justify-content: center;
  margin: 20px 10px 10px 0;
  width: 30px;
}

.blog-post__social-sharing .social-links__icon svg {
  fill: #ff5e14;
  height: 15px;
}

@media screen and (min-width: 1300px) {
  .blog-post__social-sharing .social-links {
    display: inline-flex;
    flex-direction: column;
  }

  .blog-post__social-sharing {
    left: -2rem;
    margin-bottom: 0;
    position: absolute;
    text-align: left;
    top: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .blog-post__social-sharing {
    left: 0;
    margin-bottom: 0;
    position: absolute;
    text-align: left;
    top: 2rem;
  }

  .blog-post__social-sharing .share-title {
    display: block;
  }

  .blog-post__social-sharing .social-links {
    display: inline-flex;
    flex-direction: column;
  }

  .blog-post__social-sharing .social-links__icon {
    margin: 10px 0;
  }
}

.sample-icon {
  background-color: #19cca3;
  border-radius: 50%;
  height: 30px;
  margin: 5px;
  width: 30px;
}

.blog-post__body {
  line-height: 24px;
}

.blog-post__comments-listing {
  margin: 3rem 0;
}

.blog-post__author {
  background-color: #f2f4f6;
  padding: 20px 0;
}

.blog-post__author .container {
  padding: 0 100px;
}

.blog-post__author .buffer {
  background-color: #fff;
  display: flex;
  padding: 20px 100px;
}

.blog-post__author__image {
  height: 150px;
  width: 150px;
}

.blog-post__author__image img {
  height: 100%;
  width: auto;
}

.blog-post__author__text {
  margin-left: 35px;
}

.blog-post__author__text h6 {
  margin: 10px 0;
}

.blog-post__author__sharing {
  display: flex;
}

.sample-icon.small {
  height: 15px;
  width: 15px;
}

/* Related Posts */

.blog-recent-posts {
  padding-bottom: 100px;
}

.blog-recent-posts__title {
  margin: 0 0 50px;
}

.blog-recent-posts__list {
  display: flex;
  justify-content: flex-start;
}

@media screen and (max-width: 1000px) {
  .blog-recent-posts__list {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .blog-post__author .buffer {
    display: block;
    padding: 20px;
  }

  .blog-post__author__text {
    margin-left: 0;
  }
}

/*blog css */
section.blog-sec {
	padding: 40px 30px;
	background-color: #EFEFEF;
  margin-bottom: 40px;
}
.blog-sec .blog-recent-posts__title h2 {
	font-family: "Outfit", sans-serif;
	font-weight: 600;
	color: #000;
	font-size: 50px;
	line-height: normal;
	text-align: center
}
.blog-sec .blog-recent-posts {
	max-width: 1170px;
	margin: 0 auto;
  padding-bottom:0;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post {
	background-color: #fff;
	box-shadow: 0 0 40px #00000010;
	padding: 20px;
	border-radius: 10px;
  width: 100%;
  margin-top: 0;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-image {
	width: 100%;
	height: 210px;
	object-fit: cover;
	border-radius: 10px;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content {
	padding: 0px;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content .blog-post__tags {
	margin-bottom: 0px;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content .blog-post__tag {
	background-color: #000000;
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	color: #fff;
	font-size: 13px;
	line-height: 16px;
	padding: 12px 10px;
	border-radius: 6px;
	text-decoration: none;
  margin-bottom: 5px;
  display: inline-block;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content .blog-index--2-col__post-content__title {
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	color: #121212;
	font-size: 20px;
	line-height: 35px;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
  margin-top:0px;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content a:hover,
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content a:focus,
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content a:active{ 
text-decoration: none !important;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content .blog-summary p {
	font-family: "Outfit", sans-serif;
	font-weight: normal;
	color: #646464;
	font-size: 18px;
	line-height: 30px;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content .button.button--simple {
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	color: #000;
	font-size: 14px;
	line-height: 20px;
	text-decoration: none;
	text-transform: uppercase;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post .blog-index--2-col__post-image-wrapper { border-bottom:0px; height: unset;
  display: unset; }

.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content .blog-summary {
	border-top: 0px;
	flex-grow: unset;
	margin: 10px 0 20px;
	padding-top: 0;
}

.blog-sec.white-bg { background-color:#fff }
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/10.0.0/swiper-bundle.min.css" />

/*Blog details css*/
.blog-post-content {
	max-width: 1200px;
	margin: 0 auto;
  padding: 5% 10%!important;
	color: #646464;
	font-family: Outfit, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}
.blog-post-content * {
	font-family: Outfit, sans-serif !important;
}
.blog-post-content a {
	color: #000;
	text-decoration: none;
	font-weight: inherit;
}
.blog-post-content .blog-post-banner .post-banner-content h2 {
	color: #000;
	font-family: Outfit, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: normal;
	text-align: left;
}
.blog-post-content .blog-post-section .social-share-section {
	margin-top: 20px;
}
.blog-post-banner .post-image {
	height: auto;
	padding: 220px 0;
	border-radius: 20px;
	background-position: center;
	background-size: cover;
  background-repeat: no-repeat;
}
.blog-post-content .blog-post-section {
	position: relative
}
.blog-post-content .blog-post-section > .blog-post-content {
	padding: 0
}
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text hr {
	margin-bottom: 30px;
	margin-top: 30px;
}
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h1,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h2,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h3,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h4,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h5,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h6 {
	margin-bottom: 20px;
	margin-top: 20px;
}
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h1 a span,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h2 a span,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h3 a span,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h4 a span,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h5 a span,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h6 a span {
	color: #011971 !important;
}
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h3,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h4 {
	color: #011971;
}
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text ol,
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text ul {
	padding-left: 5px;
}
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text img{
	width: 100% !important;
	height: auto !important;
	object-fit: cover
}
#hs_cos_wrapper_related_posts {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 30px;
	color: #646464;
	font-family: Outfit, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}
#hs_cos_wrapper_related_posts .header-content { margin-bottom:20px; }
#hs_cos_wrapper_related_posts .header-content h2 {
	color: #000;
	font-family: Outfit, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: normal;
	text-align: left;
}
#hs_cos_wrapper_related_posts .hs_cos_wrapper_type_related_blog_posts {
	display: grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
#hs_cos_wrapper_related_posts .hs_cos_wrapper_type_related_blog_posts .section-grey {
	background-color: #e9eeff90;
	border: 2px solid #fff;
	border-radius: 30px;
	box-shadow: 30px 30px 70px #00000000;
	height: auto;
	padding: 30px;
	transition: all .5s ease;
	width: 100%;
	margin: 0
}
#hs_cos_wrapper_related_posts .hs_cos_wrapper_type_related_blog_posts .section-grey .featured-resource-item {
	color: #646464;
	font-family: Outfit, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	text-decoration: none !important
}
#hs_cos_wrapper_related_posts .hs_cos_wrapper_type_related_blog_posts .section-grey .featured-resource-top h4 {
	color: #011971;
	font-family: Outfit, sans-serif;
	font-size: 22px;
	line-height: normal;
	text-align: left;
}
#hs_cos_wrapper_related_posts .hs_cos_wrapper_type_related_blog_posts .section-grey .featured-resource-bottom {
}
#hs_cos_wrapper_related_posts .hs_cos_wrapper_type_related_blog_posts .section-grey .featured-resource-bottom .featured-resource-bottom-cta {
	margin-top: 20px;
}
#hs_cos_wrapper_related_posts .hs_cos_wrapper_type_related_blog_posts .section-grey .featured-resource-bottom .featured-resource-bottom-cta .button {
	background-color: #011971;
	border-color: #011971;
	border-radius: 50rem;
	color: #fff;
	font-family: Outfit, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1px;
	margin-top: 40px;
	padding: 28px 30px;
	text-transform: uppercase;
	transition: all .5s ease;
}
#hs_cos_wrapper_related_posts .hs_cos_wrapper_type_related_blog_posts .section-grey .featured-resource-image-wrapper {
	margin-left: -30px;
	margin-right: -30px;
	margin-top: -30px;
	margin-bottom: 30px;
}
#hs_cos_wrapper_related_posts .hs_cos_wrapper_type_related_blog_posts .section-grey .featured-resource-image {
	height: auto;
	padding: 120px 0;
	border-radius: 20px 20px 0 0;
	background-position: center;
	background-size: cover;
  background-repeat: no-repeat;
}

/*Blog listing css start*/
/*29-11-2024 css start*/
.hs-blog-listing .widget-type-blog_content {
	color: #646464;
	font-family: Outfit, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	margin: 0 auto !important;
	max-width: 1200px;
	float: none !important;
}
.hs-blog-listing .widget-type-blog_content .resource-navigation {
	background-color: #01197140;
	width: 100vw;
	max-width: unset !important;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	padding: 30px;
}
.hs-blog-listing .widget-type-blog_content .resource-navigation #resourceTopics {
	max-width: max-content;
	margin: 0 auto;
}
.hs-blog-listing .widget-type-blog_content .section {
	padding: 100px 30px;
}
.hs-blog-listing .widget-type-blog_content ul#blogs {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.hs-blog-listing .widget-type-blog_content ul#blogs li {
	list-style-type: none;
	background-color: #e9eeff90;
	border-radius: 30px;
	box-shadow: 30px 30px 70px #00000000;
	height: auto;
	margin: 0;
	padding: 30px;
	transition: all .5s ease;
	width: 100%;
	position: relative;
	box-shadow: 30px 0px 30px #00000007;
	transition: all ease 0.5s;
}
.hs-blog-listing .widget-type-blog_content ul#blogs li:hover {
	background-color: #e9eeff;
	border-radius: 20px;
	box-shadow: 30px 30px 70px #00000000;
}
.hs-blog-listing .widget-type-blog_content ul#blogs li .featured-resource-item {
	text-decoration: none !important
}
.hs-blog-listing .widget-type-blog_content ul#blogs li .featured-resource-item .featured-resource-image-wrapper {
	margin-left: -30px;
	margin-right: -30px;
	margin-top: -30px;
}
.hs-blog-listing .widget-type-blog_content ul#blogs li .featured-resource-item .featured-resource-image-wrapper .featured-resource-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover !important;
	border-radius: 20px 20px 0 0;
	height: auto;
	padding: 120px 0;
	margin-bottom: 20px;
}
.hs-blog-listing .widget-type-blog_content ul#blogs li .featured-resource-item .featured-resource-bottom-excerpt {
	color: #646464;
	font-family: Outfit, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.hs-blog-listing .widget-type-blog_content ul#blogs li .featured-resource-item .featured-resource-bottom-excerpt svg {
	position: absolute;
	left: 30px;
	bottom: 20px;
}
.hs-blog-listing .widget-type-blog_content ul#blogs li .featured-resource-item .featured-resource-top h5 {
	color: #011971;
	font-family: Outfit, sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: none;
}
.hs-blog-listing .widget-type-blog_content ul#blogs li .featured-resource-item .featured-resource-bottom h3 {
	color: #011971;
	font-family: Outfit, sans-serif;
	font-size: 22px;
	line-height: normal;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 52px;
}
.hs-blog-listing .widget-type-blog_content .blog-pagination {
	padding-bottom: 100px;
}
.hs-blog-listing .widget-type-blog_content .blog-pagination .pagination {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 0 30px;
	text-align: center;
	width: 100%;
	gap: 10px;
}
.hs-blog-listing .widget-type-blog_content .blog-pagination .pagination li {
	margin: 0px;
	list-style-type: none;
}
.hs-blog-listing .widget-type-blog_content .blog-pagination .pagination li a {
	margin: 0px;
	background-color: #e9eeff90;
	border: 1px solid #01197120;
	border-radius: 7px;
	width: 40px;
	height: 40px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #011971;
	font-family: Outfit, sans-serif;
	font-size: 18px;
	font-weight: normal;
	text-decoration: none;
	transition: all ease 0.5s;
}
.hs-blog-listing .widget-type-blog_content .blog-pagination .pagination li a:hover,
.hs-blog-listing .widget-type-blog_content .blog-pagination .pagination li a:focus,
.hs-blog-listing .widget-type-blog_content .blog-pagination .pagination li a:active {
	background-color: #011971;
	border-color: #011971;
	color: #fff;
}
.hs-blog-listing .widget-type-blog_content .blog-pagination .pagination li.next-posts-link a,
.hs-blog-listing .widget-type-blog_content .blog-pagination .pagination li.previous-posts-link a{
	background-color: transparent;
	border-color: transparent
}
.hs-blog-listing .widget-type-blog_content .blog-pagination .pagination li.next-posts-link a img,
.hs-blog-listing .widget-type-blog_content .blog-pagination .pagination li.previous-posts-link a img{
	object-fit: contain;
	width: 14px !important;
	height: auto !important;
}

.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h1 {
	font-size: 2.25rem !important;
}
.blog-post-content .blog-post-section > .blog-post-content .hs_cos_wrapper_type_rich_text h2 {
	font-size: 2rem !important;
}
.cta_button {
  background-color: #011971 !important;
	border-color: #011971 !important;
	border-radius: 50rem !important;
	color: #fff !important;
	font-family: Outfit, sans-serif !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	line-height: 1px !important;
	padding: 28px 30px !important;
	transition: all .5s ease !important;
}
.cta_button:hover {
    background-color: #fff !important;
	border-color: #011971 !important;
  	color: #011971 !important;
}
/*Blog listing css end*/

@media screen and (max-width:1024px) {
.blog-post-content {
	padding-top: 60px;
	padding-bottom: 60px;
}
.blog-post-content .blog-post-banner .post-banner-content h2,
#hs_cos_wrapper_related_posts .header-content h2 {
	font-size: 30px;
}
#hs_cos_wrapper_related_posts {
	padding-top: 0px;
	padding-bottom: 60px;
}
.hs-blog-listing .widget-type-blog_content ul#blogs li .featured-resource-item .featured-resource-bottom h3 {
	font-size: 20px;
	min-height: 45px;
}  
.hs-blog-listing .widget-type-blog_content .section {
	padding-top: 60px;
	padding-bottom: 60px;
}  
.hs-blog-listing .widget-type-blog_content .blog-pagination {
	padding-bottom: 60px;
}  
}
@media screen and (max-width:991px) {
.blog-post-content .blog-post-banner .post-banner-content.span5 {
	width: 100%;
	float: none;
}
.blog-post-content .blog-post-banner .post-image.span7 {
	width: 100%;
	float: none;
	margin: 30px 0 0;
}
#hs_cos_wrapper_related_posts .hs_cos_wrapper_type_related_blog_posts {
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}
.hs-blog-listing .widget-type-blog_content ul#blogs {
	grid-template-columns: repeat(2,1fr);
}  
}
 @media screen and (max-width:767px) {
.blog-post-content {
	padding-top: 40px;
	padding-bottom: 0px;
}
.blog-post-content .blog-post-banner .post-banner-content h2,
#hs_cos_wrapper_related_posts .header-content h2 {
	font-size: 24px;
}
#hs_cos_wrapper_related_posts {
	padding-bottom: 40px;
}
#hs_cos_wrapper_related_posts .hs_cos_wrapper_type_related_blog_posts {
	grid-template-columns: 100%;
}
.hs-blog-listing .widget-type-blog_content ul#blogs {
	grid-template-columns: 100%;
}    
.hs-blog-listing .widget-type-blog_content .section {
	padding-top: 40px;
	padding-bottom: 40px;
}  
.hs-blog-listing .widget-type-blog_content .blog-pagination {
	padding-bottom: 40px;
	margin-bottom: 0;
	margin-top: 0;
}   
}


@media screen and (max-width:1024px) {
section.blog-sec {
	padding-top: 60px;
	padding-bottom: 60px;
}  
.blog-sec .blog-recent-posts .blog-recent-posts__list {
	gap: 20px;
}  
.blog-recent-posts__title {
	margin: 0 0 30px;
}  
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content .blog-post__tag {
	font-size: 11px;
	line-height: 14px;
	padding: 8px;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post-content .blog-post__tags {
	margin-bottom: 0;
}  
.blog-sec .blog-recent-posts__title h2 {
	font-size: 38px;
}  
}
 @media screen and (max-width:991px) {

.blog-sec .blog-recent-posts .blog-recent-posts__list {
	grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width:767px) {
section.blog-sec {
	padding-top: 40px;
	padding-bottom: 40px;
} 
.blog-sec .blog-recent-posts__title h2 {
	font-size: 28px;
}    
.blog-sec .blog-recent-posts .blog-recent-posts__list {
	gap: 20px;
	grid-template-columns: 100%;
}
}


/* 29-01-2025 css start */
/* .blog-sec .blog-recent-posts{
overflow:hidden;
} */
.blog-sec .blog-recent-posts .blog-recent-posts__list {
    display: flex !important;
    gap: 30px;
    flex-wrap: wrap;
    width:100%;
    position:relative;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post {
    width: calc(33.33% - 20px);
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .slick-list.draggable {
    width: 100%;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .slick-track {
    display: flex;
    flex-wrap:wrap;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .slick-track .slick-slide {
    opacity: 0;
    visibility:hidden;
    margin: 0px 15px;
  height:auto;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .slick-track .slick-slide.slick-active {
    opacity: 1;
    visibility:visible;
}
.blog-recent-posts__list .slick-arrow::before{
display:none;
}
.blog-recent-posts__list .slick-arrow {
    top: 50%;
    transform: translateY(-50%);
    background: url("https://5122053.fs1.hubspotusercontent-na1.net/hubfs/5122053/left-arrow-backup-2-svgrepo-com.svg")no-repeat center;
    width: 40px;
    height: 40px;
    background-size: contain;
    z-index: 1;
    border: none;
}
button.slick-next.slick-arrow {
    background: url("https://5122053.fs1.hubspotusercontent-na1.net/hubfs/5122053/right-arrow-backup-2-svgrepo-com.svg")no-repeat center;
    background-size: contain;
}
.blog-sec .blog-recent-posts .blog-recent-posts__list .slick-track .slick-slide > div {
    height: 100%;
}

.blog-sec .blog-recent-posts .blog-recent-posts__list .slick-track .slick-slide > div .blog-index--2-col__post {
    height: 100%;
}

@media only screen and (max-width:1024px) {
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post {
    width: calc(50% - 20px);
}
}


@media only screen and (max-width:767px) {
.blog-sec .blog-recent-posts .blog-recent-posts__list .blog-index--2-col__post {
    width: 100%;
}
}