@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..700;1,100..700&family=Source+Sans+3:ital,wght@0,200..700;1,200..700&display=swap');

.inter-tight-medium {
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.source-sans-3-medium{
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}


@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(144, 202, 249, 0.7); }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); } }
html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
  font-family: "Source Sans 3", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
}

/* HERO TITLE */
h1.bannerTitle {
  text-align: left;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 55px;
  margin: 0;
  text-transform: capitalize;
}

/* HERO PARAGRAPH */
p.bannerDesc {
  text-align: left;
  line-height: 160%;
  max-width: 85%;
  font-size: 16px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  margin: 15px 0 0 0;
}

/* CTA BANNER WRAP */
.ctaBannerWrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* CTA BANNER HEADING */
.ctaBannerTitle {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 45px;
  max-width: 60%;
  text-align: left;
  color: #fff;
  text-transform: capitalize;
}
.ctaBannerTitle span {
  color: #90caf9;
}

/* BUTTON → UI LABEL → Source Sans 3 (500) */
.ctaBtn {
  color: #fff;
  padding: 12px 25px;
  border-radius: 3px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
  display: block;
  width: fit-content;
  margin-top: 20px;
  text-decoration: none;
  transition: all 0.4s linear;
  position: relative;
  overflow: hidden;
  background-color: #90caf9;
  background: linear-gradient(43deg, #90caf9 0%, #007bff 46%, #00428a 100%);
  background-size: 201% 100%;
  background-position: right bottom;
  text-transform: capitalize;
  text-align: center;
}

.ctaBtn:hover {
  text-decoration: none;
  background-position: left bottom;
  color: #fff;
}

.ctaBtn:hover svg {
  margin-left: 20px;
}

.ctaBtn svg {
  margin-left: 15px;
  vertical-align: middle;
  transition: all 0.3s ease;
  font-size: 16px;
}

/* SECTION WRAPPER */
.sectionWrap {
  padding: 25px 0;
  position: relative;
}

/* MAIN SECTION HEADINGS */
.sectionHeading {
  color: #3B4047;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  text-transform: capitalize;
  position: relative;
  width: fit-content;
  margin: 0 auto 50px;
  transition: all 500ms ease;
}

.sectionHeading span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
}

/* SUBHEADING → Inter Tight 500–600 */
.subHeading {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  position: relative;
}
.subHeading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 25%;
  height: 1px;
  background-color: #fff;
}

/* BODY TEXT */
.contentCopy {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #3B4047;
  line-height: 24px;
  margin: 0;
  padding: 0;
}

/* 404 */
.portfolio_404 .notFound {
  text-align: center;
  padding: 30px 0;
}
.portfolio_404 .notFound svg {
  max-width: 500px;
  width: 100%;
}

.portfolio_404 .notFoundNav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* LOADER */
.bt-loader_v1 {
  display: none;
  width: 100%;
  height: 100%;
  border: 0 solid #000;
  position: fixed;
  top: 0;
  left: 0;
  padding: 2px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.bt-loader_v1 .bt_loading {
  height: 0;
  width: 0;
  padding: 15px;
  border: 5px solid #fff;
  border-right-color: #00428a;
  border-radius: 22px;
  animation: rotate 1s infinite linear;
  position: absolute;
  left: 50%;
  top: 50%;
}

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

/* THANK YOU PAGE HEADING */
.thankYou_sec {
  padding: 100px 0 45px;
}

.thankYou_sec .thankYou_wrap i {
  color: #00428a;
  font-size: 50px;
}

.thankYou_sec .thankYou_wrap h1 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  color: #00428a;
}





@media screen and (max-width: 767px) {
  .sectionHeading {
    font-size: 32px;
    line-height: 34px;
    margin: 0 auto 30px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
  }

  h1.bannerTitle {
    font-size: 32px;
    line-height: 34px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
  }

  p.bannerDesc {
    max-width: 100%;
    font-size: 14px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    margin: 15px 0 0 0;
  }

  .ctaBtn {
    padding: 10px 20px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 500; /* UI label / button */
  }

  .ctaBannerTitle {
    font-size: 32px;
    max-width: 100%;
    line-height: 34px;
    margin-bottom: 30px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
  }
}

.single-post {
  background-color: #f5f5f5;
}

.blog-content--form-wrap {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 30px 30px 0;
  border-radius: 10px;
  margin: 25px 0;
  gap: 45px;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.12);
}

.blog-content--form-wrap h5 {
  font-size: 40px;
  width: 45%;
  font-weight: 700; /* heading → Inter Tight */
  margin: 0;
  height: fit-content;
  padding-top: 25px;
  color: #00428a;
  font-family: "Inter Tight", sans-serif;
}

.blog-content--form-wrap h5 + div {
  width: 50%;
}

.single-page .singlePgWrap .blogBannerWrap {
  position: relative;
  width: 100%;
}

.single-page .singlePgWrap .blogBannerWrap img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
}

.single-page .singlePgWrap .blog-grid--wrap {
  max-width: 1366px;
  margin: auto;
}

.single-page .singlePgWrap .blog-grid--wrap aside.socialSec {
  position: sticky;
  top: 200px;
  height: fit-content;
}

.single-page .singlePgWrap .blog-grid--wrap aside.socialSec .singleSocial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: -44px;
  left: -102px;
  background-color: #007bff;
  padding: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  border-radius: 5px 0 0 5px;
}

.single-page .singlePgWrap .blog-grid--wrap aside.socialSec .singleSocial a {
  font-size: 26px;
  display: flex;
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500; /* UI/Icon labels */
}

.single-page .singlePgWrap .blog-grid--wrap aside.socialSec .singleSocial a svg {
  width: 22px;
  height: 22px;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid {
  display: grid;
  grid-template-areas: 'main' 'main' 'aside';
  gap: 50px;
  padding: 70px 0;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain {
  grid-area: main;
  position: relative;
  padding: 40px 50px;
  background-color: #fff;
  border-top: 4px solid #007bff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  min-width: 0;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain iframe {
  margin-top: 15px;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .singleContHead {
  gap: 10px;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .singleContHead h1.singleTitle,
.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .singleContHead h2.singleTitle {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700; /* headings */
  font-size: 35px;
  text-align: left;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .blogDetailWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #000;
  opacity: 0.8;
  text-transform: capitalize;
  gap: 30px;
}






.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .blogDetailWrap span {
  position: relative;
  line-height: 13px;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .blogDetailWrap span::before {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  background-color: #00428a;
  border-radius: 50%;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .blogDetailWrap span:last-child::before {
  content: unset;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .blogDetailWrap span b {
  font-size: 14px;
  font-family: "Source Sans 3", sans-serif; /* body bold */
  font-weight: 600;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .blogDetailWrap .rt-reading-time *::before {
  content: unset;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .tags-list {
  gap: 10px;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .tags-list .tags-list--item {
  list-style: none;
  background-color: rgba(144, 202, 249, 0.3);
  padding: 3px 8px;
  border-radius: 25px;
  font-size: 12px;
  font-family: "Source Sans 3", sans-serif; /* UI label */
  font-weight: 500;
  color: #00428a;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap main.mainSec {
  padding-top: 25px;
  width: 100%;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap main.mainSec .rt-reading-time {
  display: none !important;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap main.mainSec img {
  max-width: 100%;
  object-fit: contain;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap main.mainSec p.contentCopy {
  text-align: left;
  font-family: "Source Sans 3", sans-serif; /* body text */
  font-weight: 400;
}





.single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar {
  gap: 40px;
  max-width: 470px;
  grid-area: aside;
  min-width: 0;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box {
  border-top: 4px solid #007bff;
  background-color: #fff;
  padding: 40px 25px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-sidebar--title {
  color: #00428a;
  font-family: "Inter Tight", sans-serif; /* heading */
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 25px;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-recent-posts {
  gap: 30px;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-recent-posts .blog-recent--card {
  gap: 10px;
  text-decoration: none;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-recent-posts .blog-recent--card:hover .blog-recent--card-detail-col .blog-recent--card-title {
  color: #007bff;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-recent-posts .blog-recent--card .blog-recent--card-img {
  object-fit: cover;
  height: 80px;
  max-height: 80px;
  max-width: 90px;
  border-radius: 3px;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-recent-posts .blog-recent--card .blog-recent--card-detail-col .blog-recent--card-title {
  font-size: 16px;
  font-family: "Inter Tight", sans-serif; /* subheading */
  font-weight: 600;
  color: #3B4047;
  margin-bottom: 0;
  line-height: 22px;
  transition: color 0.3s ease;
}

.single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--sticky {
  top: 50px;
}

/* COMMENTS SECTION */

.commentSec {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #90caf9;
}

.commentSec .commentsTitle {
  font-family: "Inter Tight", sans-serif; /* heading */
  font-weight: 700;
  font-size: 24px;
  color: #00428a;
  margin: 0;
}

.commentSec .comments-area {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.commentSec .comments-area h2.comments-title {
  grid-column: span 3;
  font-family: "Source Sans 3", sans-serif; /* body small */
  font-weight: 400;
  font-size: 13px;
  color: #bdbdbd;
  margin: 0;
}

.commentSec .comments-area ol.comment-list {
  grid-column: span 2;
}

.commentSec .comments-area ol.comment-list li {
  list-style: none;
}

.commentSec .comments-area ol.comment-list li.comment {
  padding-bottom: 30px;
  padding-left: 60px;
  position: relative;
}

.commentSec .comments-area ol.comment-list li.comment:last-child {
  padding-bottom: 0;
}

.commentSec .comments-area ol.comment-list li.comment.parent {
  position: relative;
}

.commentSec .comments-area ol.comment-list li.comment.parent::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 23px;
  width: 1px;
  height: 100%;
  border-left: 1px dashed #90caf9;
}

.commentSec .comments-area ol.comment-list .comment-body {
  border-radius: 5px;
  border: 1px solid #00428a;
}

.commentSec .comments-area ol.comment-list .comment-body .avatar {
  position: absolute;
  left: -60px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  border: 1px solid #00428a;
}

.commentSec .comments-area ol.comment-list .comment-body .comment-meta {
  background-color: #00428a;
  position: relative;
  padding: 5px 15px;
  border-radius: 5px 5px 0 0;
}

.commentSec .comments-area ol.comment-list .comment-body .comment-meta::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #00428a;
  position: absolute;
  left: -10px;
  top: 15px;
}

.commentSec .comments-area ol.comment-list .comment-body .comment-meta .comment-author {
  font-size: 14px;
  font-family: "Source Sans 3", sans-serif; /* body */
  font-weight: 500;
  color: #fff;
}

.commentSec .comments-area ol.comment-list .comment-body .comment-meta .comment-author b a {
  color: #fff;
  text-transform: capitalize;
}

.commentSec .comments-area ol.comment-list .comment-body .comment-meta .comment-metadata a {
  font-size: 12px;
  font-family: "Source Sans 3", sans-serif; /* body small */
  font-weight: 400;
  color: #f5f5f5;
}

.commentSec .comments-area ol.comment-list .comment-body .comment-meta .comment-awaiting-moderation {
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
}

.commentSec .comments-area ol.comment-list .comment-body .comment-content {
  padding: 5px 15px;
  font-size: 14px;
  font-family: "Source Sans 3", sans-serif; /* body text */
  font-weight: 400;
}

.commentSec .comments-area ol.comment-list .comment-body .reply {
  padding: 5px 15px 15px;
}

.commentSec .comments-area ol.comment-list .comment-body .reply .comment-reply-link {
  background-color: #00428a;
  border: 1px solid #00428a;
  color: #fff;
  padding: 5px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 28px;
  font-size: 14px;
  font-family: "Source Sans 3", sans-serif; /* UI label */
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease color 0.3s ease;
}












.commentSec .comments-area ol.comment-list .comment-body .reply .comment-reply-link:hover {
  color: #00428a;
  background-color: transparent;
}

.commentSec .comments-area ol.comment-list ol.children {
  margin-top: 25px;
}

.commentSec .comments-area ol.comment-list ol.children li.comment {
  position: relative;
}

.commentSec .comments-area ol.comment-list ol.children li.comment .comment-body {
  border-radius: 5px;
  box-shadow: none;
}

.commentSec .comments-area ol.comment-list li.comment .comment-respond {
  margin-top: 50px;
}

.commentSec .comments-area ol.comment-list li.comment .comment-respond .comment-reply-title small a {
  font-size: 12px;
  color: #bdbdbd;
  text-decoration: underline;
  opacity: 0.7;
  margin-left: 15px;
}

/* TITLE → Inter Tight (600–700) */
.commentSec .comments-area .comment-reply-title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #00428a;
  margin-bottom: 25px;
}

.commentSec .comments-area form.comment-form {
  display: flex;
  flex-direction: column;
}

.commentSec .comments-area form.comment-form input {
  height: 36px;
  padding: 0 15px;
  border: 1px solid #90caf9;
  border-radius: 4px;
}

.commentSec .comments-area form.comment-form textarea {
  padding: 15px;
  border: 1px solid #90caf9;
  border-radius: 4px;
}

/* LABELS → Source Sans 3 (500) */
.commentSec .comments-area form.comment-form label {
  font-size: 14px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
}

.commentSec .comments-area form.comment-form label .required {
  color: #EF7066;
}

/* ERROR MESSAGES → Body style (Source Sans 3, 400 or 500 based on design) */
.commentSec .comments-area form.comment-form .comment-form-author .error_message,
.commentSec .comments-area form.comment-form .comment-form-email .error_message,
.commentSec .comments-area form.comment-form .comment-form-comment .error_message,
.form-submit .error_message {
  position: absolute;
  left: 0;
  bottom: -15px;
  font-size: 10px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
  color: #EF7066;
}

.commentSec .comments-area form.comment-form .comment-form-email {
  order: 2;
  display: flex;
  flex-direction: column;
  position: relative;
}

.commentSec .comments-area form.comment-form .comment-form-url {
  order: 3;
  display: flex;
  flex-direction: column;
}

.commentSec .comments-area form.comment-form .comment-form-comment {
  order: 4;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* BODY TEXT → Source Sans 3 (400) */
.commentSec .comments-area form.comment-form .comment-notes {
  order: 5;
  font-size: 10px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
}

.commentSec .comments-area form.comment-form .comment-form-cookies-consent {
  order: 6;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
}

.commentSec .comments-area form.comment-form .comment-form-cookies-consent input {
  padding: 0;
  height: auto;
}

.commentSec .comments-area form.comment-form .comment-form-cookies-consent label {
  font-size: 13px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
  margin: 0;
}

/* BUTTONS → Source Sans 3 (500) */
.commentSec .comments-area form.comment-form .form-submit {
  order: 7;
}

.commentSec .comments-area form.comment-form .form-submit input {
  border: none;
  color: #fff;
  padding: 0 25px;
  border-radius: 3px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
  font-size: 13px;
  display: block;
  width: fit-content;
  margin-top: 20px;
  text-decoration: none;
  transition: all 0.4s linear;
  position: relative;
  overflow: hidden;
  background-color: #90caf9;
  background: linear-gradient(43deg, #90caf9 0%, #007bff 46%, #00428a 100%);
  background-size: 201% 100%;
  background-position: right bottom;
  text-transform: capitalize;
  text-align: center;
}

.commentSec .comments-area form.comment-form .form-submit input:hover {
  text-decoration: none;
  background-position: left bottom;
  color: #fff;
  cursor: pointer;
}













/* BODY TEXT → Source Sans 3 (400) */
.contentWrap main.mainSec {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
}

/* HEADINGS / TITLES → Inter Tight (600–700) */
.contentWrap main.mainSec :is(h1, h2, h3, h4, h5, h6) {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  margin: 0 0 1.1rem 0;
}

.contentWrap main.mainSec h1 {
  font-size: 32px;
  line-height: 34px;
}

.contentWrap main.mainSec h2 {
  font-size: 28px;
 	line-height: 31px;
}

.contentWrap main.mainSec h3 {
  font-size: 24px;
  line-height: 28px;
}

.contentWrap main.mainSec h4 {
  font-size: 21px;
  line-height: 24px;
}

.contentWrap main.mainSec h5 {
  font-size: 18px;
  line-height: 21px;
}

.contentWrap main.mainSec h6 {
  font-size: 16px;
  line-height: 18px;
}

/* LIST ITEMS → Body text (Source Sans 3, 400) */
.contentWrap main.mainSec ul,
.contentWrap main.mainSec ul li,
.contentWrap main.mainSec ol,
.contentWrap main.mainSec ol li {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
}

.contentWrap main.mainSec ul {
  display: block;
  list-style-type: disc;
  padding-inline-start: 40px;
  margin: 0.2rem 0 1rem;
}

.contentWrap main.mainSec ul li {
  margin-bottom: 0.75em;
}

.contentWrap main.mainSec ul li ul {
  font-family: "Source Sans 3", sans-serif;
}

.contentWrap main.mainSec ul li ul li {
  margin-bottom: 0.2em;
}

.contentWrap main.mainSec ol {
  padding-inline-start: 40px;
  margin: 0.2rem 0 1rem;
}

.contentWrap main.mainSec ol li ul li {
  margin-bottom: 0.2rem;
}

/* BODY TEXT */
.contentWrap main.mainSec iframe {
  font-family: "Source Sans 3", sans-serif !important;
}

.contentWrap main.mainSec img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ============================ */
/* TABLE OF CONTENT SECTION     */
/* ============================ */

/* BODY TEXT → Source Sans 3 (400) */
.table_content {
  background: #f5f5f5;
  color: #3B4047;
  padding: 2rem 1.8rem;
  border-radius: 5px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  margin: 0.5rem 0 1.5rem 0;
}

/* TITLE → Inter Tight (600) */
.table_content .bt_table_content {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 24px;
}

/* LIST ITEMS → Source Sans 3 (400) */
.table_content .blog_content_list {
  padding-inline-start: 40px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  counter-reset: item;
}

.table_content .blog_content_list .blog_heading_list {
  margin-bottom: 0.75rem;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  list-style: none;
}

/* LINKS → Body text */
.table_content .blog_content_list .blog_heading_list a {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  display: flex;
  font-size: 15px;
  line-height: 21px;
  color: #3B4047;
  text-decoration: none;
}

.table_content .blog_content_list .blog_heading_list a::before {
  content: counters(item, ".", decimal) ". ";
  display: inline-block;
  counter-increment: item;
  margin-right: 0.4em;
}

.table_content .blog_content_list .blog_heading_list a:hover {
  text-decoration: underline;
}

.table_content .blog_content_list .blog_heading_list .list_sub_v1 {
  padding-inline-start: 40px;
  margin-bottom: 1rem;
  list-style: none;
  counter-reset: item;
}






        .table_content .blog_content_list .blog_heading_list .list_sub_v1 .list_sub_list {
          font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  display: flex;
  font-size: 14px;
  margin-bottom: 0.2rem; }
          .table_content .blog_content_list .blog_heading_list .list_sub_v1 .list_sub_list::before {
            content: counters(item, ".", decimal) ". ";
            display: inline-block;
            counter-increment: item;
            margin-right: 0.4em; }
      .table_content .blog_content_list .blog_heading_list:last-child {
        margin-bottom: 0; }

@media screen and (min-width: 992px) {
  .single-page .singlePgWrap .blog-grid--wrap .blog-grid {
    grid-template-areas: 'main aside'; } }

@media screen and (min-width: 1366px) {
  .single-page .singlePgWrap .blog-grid--wrap .blog-grid {
    grid-template-areas: 'main main aside'; } }

@media screen and (max-width: 1500px) {
  .single-page .singlePgWrap .blog-grid--wrap {
    padding: 0 15px; }
    .single-page .singlePgWrap .blog-grid--wrap aside.socialSec .singleSocial {
      left: -50px;
      border-radius: unset;
      padding: 10px 7px; } }

@media screen and (max-width: 1440px) {
  .blog-content--form-wrap {
    padding: 15px 15px 0; }
    .blog-content--form-wrap h5 {
      font-size: 30px;
      padding-top: 55px; }
  .single-page .singlePgWrap .blog-grid--wrap .blog-grid {
    gap: 20px; } }

@media screen and (max-width: 1366px) {
  .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-recent-posts .blog-recent--card .blog-recent--card-detail-col .blog-recent--card-title {
    font-size: 14px;
    line-height: 20px; } }

@media screen and (max-width: 1140px) {
  .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-recent-posts .blog-recent--card .blog-recent--card-img {
    max-width: 75px; } }

@media screen and (max-width: 991px) {
  .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar {
    max-width: 100%; }
    .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-recent-posts {
      flex-direction: row !important;
      flex-wrap: wrap; }
      .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-recent-posts .blog-recent--card {
        max-width: 40%; }
    .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--sticky {
      display: flex;
      gap: 50px;
      justify-content: center; }
      .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--sticky .blog-sidebar--title {
        margin-bottom: 0;
        font-size: 35px;
        width: 40%;
        padding-top: 55px; }
  .commentSec .comments-area {
    display: flex;
    flex-direction: column; }
    .commentSec .comments-area ol.comment-list li.comment {
      padding-left: 0; }
      .commentSec .comments-area ol.comment-list li.comment .comment-body .avatar {
        position: initial;
        width: 30px;
        height: 30px; }
      .commentSec .comments-area ol.comment-list li.comment .comment-body .comment-meta::before {
        content: unset; }
    .commentSec .comments-area ol.comment-list li.comment.parent {
      border-left: 1px dashed #90caf9; }
      .commentSec .comments-area ol.comment-list li.comment.parent::before {
        content: unset; }
    .commentSec .comments-area ol.comment-list ol.children {
      padding-left: 20px; } }

@media screen and (max-width: 767px) {
  .blog-content--form-wrap {
    flex-direction: column;
    gap: 0px; }
    .blog-content--form-wrap h5 {
      width: 100%;
      font-size: 21px;
      padding-top: 0; }
    .blog-content--form-wrap h5 + div {
      width: 100%; }
  .single-page .singlePgWrap .blogBannerWrap {
    display: none; }
  .single-page .singlePgWrap .blog-grid--wrap .blog-grid {
    padding: 30px 0; }
    .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain {
      padding: 40px 15px 40px 45px; }
      .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .singleContHead {
        flex-direction: column;
        align-items: flex-start; }
        .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .singleContHead h1.singleTitle,
        .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .singleContHead h2.singleTitle {
          font-size: 22px; }
        .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .singleContHead .blogDetailWrap {
          justify-content: flex-start;
          flex-direction: column;
          align-items: baseline;
          gap: 8px;
          width: 100%;
          font-size: 12px; }
          .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .singleContHead .blogDetailWrap span::before {
            content: unset; }
      .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap {
        flex-direction: column; }
        .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap main.mainSec {
          padding-top: 5px;
          font-size: 14px; }
        .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap aside.socialSec {
          flex-direction: row;
          max-width: 100%; }
          .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap aside.socialSec .singleSocial {
            flex-direction: row;
            margin-left: 20px; }
            .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap aside.socialSec .singleSocial a {
              margin-right: 15px; }
        .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap main.mainSec {
          max-width: 100%; }
    .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--sticky {
      gap: 30px; }
      .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--sticky .blog-sidebar--title {
        padding-top: 0;
        font-size: 24px; }
  .single-page .singlePgWrap .blog-grid--wrap .blog-grid .singleMain .contentWrap main.mainSec img {
    object-fit: unset;
    height: auto; }
  .single-page .singlePgWrap .blog-grid--wrap aside.socialSec .singleSocial {
    left: -45px; }
  .contentWrap main.mainSec :is(h1, h2, h3, h4, h5, h6) {
     font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    margin: 0 0 1.1rem 0; }
  .contentWrap main.mainSec h1 {
    font-size: 28px;
    line-height: 31px; }
  .contentWrap main.mainSec h2 {
    font-size: 24px;
    line-height: 27px; }
  .contentWrap main.mainSec h3 {
    font-size: 21px;
    line-height: 24px; }
  .contentWrap main.mainSec h4 {
    font-size: 18px;
    line-height: 21px; }
  .contentWrap main.mainSec h5 {
    font-size: 16px;
    line-height: 19px; }
  .contentWrap main.mainSec h6 {
    font-size: 14px;
    line-height: 17px; }
  .contentWrap main.mainSec ul,
  .contentWrap main.mainSec ol {
    padding-inline-start: 15px; }
  .table_content {
    padding: 1.1rem 0;
    margin-bottom: 1rem; }
    .table_content .bt_table_content {
      padding-left: 15px; }
    .table_content .blog_content_list {
      padding-inline-start: 15px; }
      .table_content .blog_content_list .blog_heading_list a {
        font-size: 15px;
        line-height: 18px; }
      .table_content .blog_content_list .blog_heading_list .list_sub_v1 {
        margin-bottom: 0;
        padding-inline-start: 15px; }
        .table_content .blog_content_list .blog_heading_list .list_sub_v1 .list_sub_list {
          font-size: 14px; } }

@media screen and (max-width: 600px) {
  .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-recent-posts {
    flex-direction: column !important; }
    .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--box .blog-recent-posts .blog-recent--card {
      max-width: 100%; }
  .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--sticky {
    display: flex;
    gap: 50px;
    flex-direction: column;
    justify-content: center; }
    .single-page .singlePgWrap .blog-grid--wrap .blog-grid .blog-grid--sidebar .blog-sidebar--sticky .blog-sidebar--title {
      width: auto; } }
