/* Google fonts */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  list-style: none;
  font-family: "Sora", sans-serif;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --offwhite: #f0edea;
  --black: #000000;
  --offblack: #222222;
  --yellow: #eef278;
  --blue: #2d92ff;
  --gray: #b5aa9f;
  --midgray: #a2a2a2;
  --gray20: rgb(181 170 159 / 20%);
}
html {
  width: 100%;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  width: 100%;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}

/* Background Classes */
.bg-white {
  background-color: var(--white);
}
.bg-offwhite {
  background-color: var(--offwhite);
}
.bg-black {
  background-color: var(--black);
}
.bg-yellow {
  background-color: var(--yellow);
}
.bg-black {
  background-color: var(--black);
}
.bg-offblack {
  background-color: var(--offblack);
}

/* headings */
h1 {
  font-size: 52px;
}
h2 {
  font-size: 52px;
}
h3 {
  font-size: 26px;
}
h4 {
  font-size: 24px;
}

p {
  font-size: 18px;
}

/* header */
#header {
  padding: 24px 0 14px;
  background-color: var(--white);
  -webkit-transition: ease-in-out 0.75s;
  -moz-transition: ease-in-out 0.75s;
  -ms-transition: ease-in-out 0.75s;
  -o-transition: ease-in-out 0.75s;
  transition: ease-in-out 0.75s;
  position: relative;
  z-index: 1;
}
.header-navbar ul {
  padding-left: 0;
}
.navbar-nav {
  align-items: center;
  > li {
    padding: 0px 4px;
    position: relative;
    & > a {
      padding: 5px 15px !important;
      border-radius: 25px;
      &:hover {
        background-color: var(--black);
        color: var(--white);
      }
    }
    & a {
      font-size: 15px;
      font-weight: 400;
      color: var(--black);
      line-height: 1.5;
      position: relative;
    }
    &.menu-btn a {
      padding: 5px 15px !important;
      border: 2px solid var(--black);
      border-radius: 25px;
    }
  }
}
.navbar-nav li ul.sub-menu {
  background-color: var(--offwhite);
  border-radius: 0 0 20px 20px;
  position: absolute;
  min-width: 200px;
  top: 100%;
  margin-top: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease-in-out 700ms;
  -moz-transition: all ease-in-out 700ms;
  -ms-transition: all ease-in-out 700ms;
  -o-transition: all ease-in-out 700ms;
  transition: all ease-in-out 700ms;
  z-index: 9;
  & li {
    padding: 5px 0px;
    &:first-child {
      margin-top: 15px;
    }
    &:last-child {
      margin-bottom: 15px;
    }
    & a {
      padding: 5px 15px !important;
      position: relative;
    }
  }
  &:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 100%;
    top: -20px;
    left: 0;
    background: transparent;
  }
}
#header .navbar-nav > li.menu-item-has-children > a {
  padding-right: 25px !important;
  &:after {
    content: "";
    width: 6px;
    height: 6px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: var(--black);
    display: inline-block;
    transform: rotate(135deg);
    position: absolute;
    right: 14px;
    top: 12px;
  }
}
#header:has(.navbar-nav li.menu-item-has-children a:hover) {
  box-shadow: 0px 10px 30px -4px var(--offwhite);
}
#header .navbar-nav > li.menu-item-has-children:hover,
#header .navbar-nav > li.current-menu-item {
  & > a {
    background-color: var(--black);
    color: var(--white);
    /* padding-right: 20px !important; */
    &:after {
      border-color: var(--white);
    }
  }
  & ul.sub-menu {
    opacity: 1;
    visibility: visible;
  }
}
#header .navbar-nav li ul.sub-menu li a:hover {
  background-color: var(--yellow);
  color: var(--black);
}

/* Home Page Banner */
.home-hero-banner {
  padding: 85px 0px 85px;
}
.hero-banner-content {
  position: relative;
  left: -100px;
  opacity: 0;
  transition: opacity, left, 1.5s;
}
.hero-banner-content:is(.active) {
  left: 0;
  opacity: 1;
}
.hero-banner-content h1 {
  font-size: clamp(2.25rem, 1.6679rem + 1.2142vw, 3.125rem);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-banner-content p {
  /* font-size: 24px; */
  font-size: clamp(1rem, 0.6674rem + 0.6938vw, 1.5rem);
  font-weight: normal;
  line-height: 1.5;
}
.animated-logo-part {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 90%;
  height: 90%;
  z-index: -1;
  transition: all ease-in-out 1.5s;
}
.hm-hero-banner-img-wrap {
  position: relative;
  display: inline-block;
  max-width: 295px;
  width: 100%;
}
.hm-hero-banner-img-wrap img {
  transition: all ease-in-out 1.5s;
}
.animated-logo-part svg {
  width: 100%;
  height: auto;
  transition: all ease-in-out 1.5s;
}
.hm-hero-banner-img-wrap.active img {
  transform: translate(-20px, 50px);
  border-radius: 45px;
}
.hm-hero-banner-img-wrap.active .animated-logo-part {
  transform: translate(0px, -50px) translate(25%, 18%) scale(1.5);
}
.animated-logo-part svg path.dot {
  transform: scale(0.5) translate(-35px, -35px);
  -webkit-transition: all ease-in-out 2s;
  -moz-transition: all ease-in-out 2s;
  -ms-transition: all ease-in-out 2s;
  -o-transition: all ease-in-out 2s;
  transition: all ease-in-out 2s;
  opacity: 0;
}
.hm-hero-banner-img-wrap.active .animated-logo-part svg path.dot {
  -webkit-transform: scale(1) translate(0, 0);
  -moz-transform: scale(1) translate(0, 0);
  -ms-transform: scale(1) translate(0, 0);
  -o-transform: scale(1) translate(0, 0);
  transform: scale(1) translate(0, 0);
  opacity: 1;
}
.btn-outline-style {
  border: 2px solid var(--black);
  border-radius: 25px;
  padding: 6px 24px;
  text-decoration: none;
  font-size: 15px;
  color: var(--black);
  line-height: 1.4;
  background: transparent;
  transition: all ease-in-out 0.15s;
  display: inline-block;
  &:hover {
    background: var(--black);
    color: var(--white);
  }
  &.white {
    border-color: var(--white);
    color: var(--white);
    &:hover {
      background: var(--white);
      color: var(--black);
    }
  }
  &.yellow {
    border-color: var(--yellow);
    color: var(--white);
    &:hover {
      background: var(--yellow);
      color: var(--black);
    }
  }
  &.btn-fill {
    background: var(--black);
    color: var(--white);
  }
}
.text-link {
  color: var(--blue);
  font-size: 15px;
  line-height: 1.5;
}

.two-column-black-content {
  padding: 85px 0;
}
.video-module {
  padding: 85px 0 50px;
}
.title-left h2 {
  font-size: 60px;
  margin-bottom: 25px;
}
.title-left img {
  width: 60px;
}
.video-container-box {
  max-height: 400px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 6px 20px -5px rgba(0, 0, 0, 0.35);
  display: flex;
  & a {
    width: 100%;
    display: block;
    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

.play-icon {
  width: 128px;
  height: 128px;
  background: url("../images/play-btn.png") no-repeat center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.client-seciton {
  padding: 35px 0;
}
.client-logo-inner-wrap {
  display: flex;
  flex-wrap: wrap;
}
.client-logo-box {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
}
.client-logo-box-in {
  width: 200px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.client-logo-box-in img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto;
}
.logo-carousel button.owl-next,
.logo-carousel button.owl-prev {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto !important;
  font-size: 25px !important;
  line-height: 25px !important;
}
.logo-carousel button.owl-next {
  right: 0;
}
.logo-carousel button.owl-prev {
  left: 0;
}
.logo-carousel .owl-nav {
  margin-top: 0px;
}
.logo-carousel button.owl-next:hover,
.logo-carousel button.owl-prev:hover {
  background: var(--yellow) !important;
}
.client-title,
.dot-heading {
  padding: 12px 0px 12px 27px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
.client-title:before,
.dot-heading:before {
  content: "";
  position: absolute;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: var(--yellow);
  left: 0;
  top: 0;
  z-index: 0;
}
.dot-heading.black {
  color: var(--white);
}
.dot-heading.black:before {
  background-color: var(--offblack);
}
.client-title > *,
.dot-heading > * {
  position: relative;
  z-index: 1;
}
.client-heading,
.client-logo-wrap {
  padding-top: 15px;
  padding-bottom: 15px;
}
.client-heading {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  position: relative;
  padding-right: 25px;
  & p,
  & h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
  }
  &:after {
    content: "";
    position: absolute;
    right: 10px;
    height: 60px;
    top: 0px;
    bottom: 0;
    margin: auto;
    background: var(--black);
    width: 1px;
  }
}
.hover-tilt-img-blurb {
  position: relative;
  padding: 50px 0;
}

.tilt-img-group-on-hover {
  position: relative;
  z-index: 2;
  -webkit-transition: all ease-in-out 350ms;
  -moz-transition: all ease-in-out 350ms;
  -ms-transition: all ease-in-out 350ms;
  -o-transition: all ease-in-out 350ms;
  transition: all ease-in-out 350ms;
  & .tilt-img-group-on-hover-in {
    position: relative;
    -webkit-transition: all ease-in-out 350ms;
    -moz-transition: all ease-in-out 350ms;
    -ms-transition: all ease-in-out 350ms;
    -o-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
    & img {
      position: relative;
      -webkit-transition: all ease-in-out 350ms;
      -moz-transition: all ease-in-out 350ms;
      -ms-transition: all ease-in-out 350ms;
      -o-transition: all ease-in-out 350ms;
      transition: all ease-in-out 350ms;
      & ~ img {
        position: absolute;
        top: 0;
        left: 0;
      }
    }
  }
}

.img-index-1 {
  z-index: 3;
}
.img-index-2 {
  z-index: 2;
}
.img-index-3 {
  z-index: 1;
}
.tilt-img-group-on-hover-in:hover {
  transform: scale(0.9);
}
.tilt-img-group-on-hover-in:hover .img-index-1 {
  transform: rotate(-3deg) translate(-25%, 0px);
}
.tilt-img-group-on-hover-in:hover .img-index-3 {
  transform: rotate(3deg) translate(25%, 0px);
}
.tilt-img-group-on-hover-outer {
  padding: 25px 60px 90px 25px;
  position: relative;
  z-index: 2;
}
.tilt-img-group-on-hover .background-icon {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 1;
}

.img-blurb {
  padding: 20px 0;
}
.img-block {
  width: 65px;
  flex-shrink: 0;
  padding: 5px 0;
}
.img-blurb {
  display: flex;
  align-items: center;
}
.blurb-content-block {
  padding: 5px 15px 5px 36px;
  width: 100%;
}
.blurb-content-block .blurb-content p:last-child {
  margin-bottom: 0;
}

.stats-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 2rem;
  background: var(--yellow) url("../images/yellow-glaphy-bg.png") no-repeat
    center;
  background-size: cover;
  transition: transform 0.3s ease;
}

.stats-box {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  padding: 50px 45px 80px;
}
.stats-box > * {
  position: relative;
  z-index: 1;
}
.stats-highlight-section {
  padding: 120px 0;
  background-image: url("../images/svg/outlineQ.svg");
  background-position: top left 15%;
  background-repeat: no-repeat;
  background-size: 175px auto;
}
.stat-item {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 22px 0;
}
.number {
  & p {
    line-height: 0.9;
    font-size: 80px;
    margin-bottom: 0;
  }
}
.stat-item small {
  color: var(--black);
  font-size: 18px;
}
.black-card {
  padding: 40px;
  background: var(--black);
  border-radius: 20px;
  color: var(--white);
  font-size: 18px;
}
.stats-highlight-section .content-text h2,
.left-label-heading > * {
  font-size: 60px;
}
.stats-highlight-section .content-text p {
  font-size: 24px;
  line-height: 1.3;
}
.two-column-conent-sec {
  padding: 110px 0;
}
.two-column-right-area {
  max-width: 380px;
  margin: auto;
}
.content-para p {
  font-size: 18px;
}
.footer-top-sec {
  background-color: var(--yellow);
  padding: 40px 0;
}

/* Footer */
#site-footer {
  background-color: var(--black);
  background-image: url(../images/svg/half-Q-reverse.svg);
  background-position: bottom right;
  background-size: 200px;
  background-repeat: no-repeat;
  padding: 35px 0;
}
.footer-logo img {
  max-width: 290px;
  width: 100%;
}
.footer-content p {
  color: var(--gray);
  font-size: 11px;
  font-weight: normal;
  line-height: 1.35;
  & a {
    color: var(--gray);
    text-decoration: none;
  }
}
.footer-content-wrap {
  max-width: 290px;
  width: 100%;
}
.yellow-btn-style {
  border: 2px solid var(--yellow);
  border-radius: 25px;
  padding: 6px 24px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
  background: var(--yellow);
  transition: all ease-in-out 0.5s;
  display: inline-block;
  &:hover {
    background: var(--yellow);
    color: var(--black);
  }
  .icon img {
    width: 10px;
    margin-left: 10px;
  }
}
.footer-menu-column h4 {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 6px;
}
.footer-menu-column ul {
  padding-left: 0;
  margin-bottom: 30px;
}
.footer-menu-column ul a {
  padding: 4px 0;
  font-size: 12px;
  color: var(--white);
  line-height: 1;
  text-decoration: none;
  &:hover {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: var(--gray);
  }
}

.footer-social ul {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-menu-bottom ul {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-social ul li {
  display: inline-block !important;
  width: auto;
}
.footer-menu-bottom ul li a {
  font-size: 12px;
  line-height: 1;
  color: var(--white);
  padding: 2px 0px;
  &:hover {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: var(--gray);
  }
}
.copyright {
  border-top: 1px solid #b5aa9f;
  padding-top: 10px;
  margin-top: 15px;
  font-size: 11px;
  font-weight: normal;
  color: var(--gray);
}
.footer-menu-bottom {
  margin-bottom: 10px;
}
.footer-social {
  margin-top: 60px;
}
.news-insights-section {
  padding: 100px 0;
}

/*  */
.blog-featured-card-in {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray);
  background-color: var(--white);
}
.blog-featured-card-in a {
  display: inline-block;
  width: 100%;
}
.blog-featured-card-in img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-meta-cat ul {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 0;
}
.post-meta-cat ul li a,
.read-time {
  background: var(--gray20);
  font-size: 10px;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  padding: 5px 8px;
  border-radius: 50px;
  line-height: 1.2;
}
.read-time {
  padding-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.post-meta-cat {
  padding: 12px 0;
}
.blog-card-title h3 a {
  color: var(--black);
  text-decoration: none;
}
.blog-card-title h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}
.read-post {
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: normal;
  position: relative;
  & span {
    position: absolute;
    top: 1px;
    left: 100%;
    margin-left: 4px;
  }
  &:hover {
    color: var(--blue);
  }
}
.insights-group-row .row {
  margin-left: -8px;
  margin-right: -8px;
}
.insight-card {
  padding: 16px 8px;
}
.post-meta-cat ul li a:hover {
  text-decoration: underline;
}
.insight-card-in .blog-featured-card-in {
  position: relative;
  &:after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999 !important;
    display: block;
    opacity: 0;
    transition: opacity, 0.75s;
  }
}
.insight-card-in:hover {
  & .blog-featured-card-in:after {
    opacity: 0.5;
  }
  & .blog-card-title a {
    text-decoration: underline;
  }
}

.toggle-bar {
  width: 34px;
  height: 2px;
  background: var(--black);
  display: block;
  position: relative;
}

.toggle-bar:before,
.toggle-bar:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 2px;
  background: var(--black);
  display: block;
}
.toggle-bar:before {
  top: -8px;
}
.toggle-bar:after {
  bottom: -8px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.about-hero-banner {
  padding: 50px 0;
}
.about-hero-banner-content {
  background: url("../images/green-black-mosic-bg.png") no-repeat center;
  background-size: cover;
  padding: 110px 80px;
  border-radius: 20px;
  & h1 {
    color: var(--white);
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  & p {
    color: var(--white);
    font-size: 18px;
  }
}

.title-content-section {
  padding: 50px 0;
}
.image-content-section {
  padding: 80px 0;
}
.lt-content-rgt-blurb-section {
  padding: 80px 0;
}

.title-col {
  position: relative;
  padding: 80px 50px 50px;
  min-height: 300px;
}
.title-col img {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 60%;
}
.blurb-title {
  font-size: 20px;
  font-weight: 600;
}
.blurb-content p {
  font-size: 15px;
}
.image-content-section .img-col img {
  border-radius: 20px;
  width: 100%;
}
.image-content-section .content-col {
  padding-left: 30px;
}
.image-content-section .content-col h2 {
  max-width: 420px;
}
.left-label-heading h2 {
  font-size: 40px;
}
.hero-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 500px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-corner-shape-cut {
  width: 100px;
  height: 100px;
  background: #fff;
  display: block;
  position: absolute;
  bottom: 0;
}
.hero-corner-shape-cut.right {
  border-radius: 20px 0 0 0;
  right: 0;
}
.hero-corner-shape-cut.left {
  border-radius: 0 20px 0 0;
  left: 0;
}
.hero-corner-shape-cut:before,
.hero-corner-shape-cut:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 40px;
  background: transparent;
  box-shadow: 0px 20px 0 0 #fff;
}
.hero-corner-shape-cut.right:before,
.hero-corner-shape-cut.right:after {
  border-radius: 0 0 20px 0;
}
.hero-corner-shape-cut.left:before,
.hero-corner-shape-cut.left:after {
  border-radius: 0 0 0 20px;
}
.hero-corner-shape-cut.right:before {
  bottom: 100%;
  right: 0;
}
.hero-corner-shape-cut.right:after {
  bottom: 0px;
  right: 100%;
}
.hero-corner-shape-cut.left:before {
  bottom: 100%;
  left: 0;
}
.hero-corner-shape-cut.left:after {
  bottom: 0px;
  left: 100%;
}
.hero-banner-content-data {
  max-width: 580px;
  margin: auto;
  color: #fff;
  & h1 {
    font-weight: normal;
    & strong {
      font-weight: 900;
    }
  }
}
.top-hicm-section {
  padding: 80px 0;
  background-color: var(--white);
  background-image: url(../images/svg/Q-half-right-top.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 200px;
}
.top-hicm-inner .content-col {
  padding-left: 30px;
}
.top-hicm-inner {
  margin-top: 30px;
}
.top-hicm-inner .img-col img {
  border-radius: 20px;
}
.top-hicm-heding-block h2 {
  font-size: 40px;
}
.qv-tabs-section {
  padding: 75px 0 50px;
  &:is(.tab-light) {
    background-color: var(--offwhite);
    background-image: url("../images/svg/QV-logo-icon-gray-img.svg");
    background-position: top -135px left;
    background-size: 260px;
    background-repeat: no-repeat;
    & .tab-main-heading {
      color: var(--black);
    }
  }
  &:is(.tab-dark) {
    background-color: var(--black);
    background-image: url(../images/dark-black-yellow-bg.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    & .tab-main-heading {
      color: var(--white);
    }
  }
  &.vector-center {
    background-position: top -115px left 59%;
  }
}
.qvs-tab-wrap li.nav-item button {
  font-size: 18px;
  color: var(--gray);
  font-weight: normal;
  margin: 0 !important;
  border: none;
  padding: 6px 8px;
  line-height: 1.45;
}
.qvs-tab-wrap * {
  transition: all ease-in-out 250ms;
}
.qvs-tab-wrap .nav-tabs {
  justify-content: center;
  gap: 5px 15px;
  border: none;
  margin-bottom: 35px;
}
.qvs-tab-wrap .nav-tabs .nav-link.active,
.qvs-tab-wrap .nav-tabs .nav-link:hover {
  background: var(--white);
  border: none;
  border-radius: 8px;
  margin: 0 !important;
  color: var(--black);
  padding-right: 23px;
}
.qvs-tab-wrap .tab-pane {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
}
.qvs-tab-left-col-in {
  padding-left: 25px;
}
.qvs-tab-left-col p {
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
}
.qvs-tab-left-col img {
  border-radius: 30px;
}
.qvs-tab-wrap .nav-tabs .nav-link {
  position: relative;
}
.qvs-tab-wrap .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
  top: 16px;
  background: var(--black);
  border-radius: 10px;
  display: inline-block;
  margin-left: 0px;
  right: 10px;
  transition: all ease-in-out 250ms;
}
.qvs-tab-wrap .nav-tabs .nav-link.active:after,
.qvs-tab-wrap .nav-tabs .nav-link:hover:after {
  opacity: 1;
}
.qvs-tab-left-col h3 {
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

/*  */
.slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 40px 20px 80px;
}

/* Progress Bar */
.progress-wrap {
  width: 100%;
  position: relative;
  height: 14px;
  margin-bottom: -15px;
  pointer-events: none;
}
.progress-line-bg {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  width: 100%;
  background: #eee;
  transform: translateY(-50%);
  border-radius: 3px;
}
.progress-fixed {
  position: absolute;
  top: 50%;
  left: 48px;
  z-index: 3;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 26px;
  height: 26px;
  background: var(--yellow);
  border-radius: 8px;
  will-change: transform;
  border: 9px solid var(--black);
}

@keyframes spinInfinite {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.rotating {
  animation: spinInfinite 0.7s linear infinite;
}

.progress-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  transition: transform 100ms linear;
}

/* Slider Styles */
.slider {
  display: flex;
  gap: 3%;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 40px 12px 10px 12px;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;

  /* Scroll snap */
  scroll-snap-type: x mandatory;
}

.slider.dragging {
  cursor: grabbing;
}

.slider .card {
  flex: 0 0 47%;
  min-width: 360px;
  background: #f1efe9;
  border-radius: 18px;
  color: #111;
  transition: background-color 500ms ease, color 500ms ease,
    transform 400ms ease;

  /* Scroll snap alignment */
  scroll-snap-align: start;
}
.card-inner {
  padding: 35px 35px 35px 85px;
  & h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.1;
  }
  & ul,
  & ol {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.2;
    & li {
      padding: 2px 0;
    }
  }
}

.slider .card.active {
  background: #000;
  color: #fff;
}

.slider.card * {
  pointer-events: none;
}

@media (max-width: 900px) {
  .slider .card {
    flex: 0 0 80%;
    min-width: 60%;
    padding: 28px;
  }
}

.slider {
  counter-reset: myCounter;
  & .card-inner {
    counter-increment: myCounter;
    overflow: hidden;
    position: relative;
    &:after {
      content: counter(myCounter, decimal-leading-zero);
      position: absolute;
      top: 0;
      left: 0;
      font-size: 92px;
      font-weight: 300;
      color: var(--gray);
      left: -40px;
      opacity: 0.5;
      letter-spacing: -10px;
    }
  }
}

.slider .card.card-empty {
  opacity: 0;
}
.slider .card {
  position: relative;
}
.slider .card:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--offwhite);
  top: -40px;
  border-radius: 50px;
  left: 40px;
}

.blurb-card-section {
  padding: 80px 0;
}
.cta-card {
  padding: 15px 12px;
  display: flex;
}
.cta-card-body {
  background: var(--offwhite) url("../images/gradient-layout.jpg") no-repeat
    center;
  background-size: cover;
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  width: 100%;
  & h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  & p {
    font-size: 18px;
    letter-spacing: -1px;
    font-weight: 300;
    line-height: 1.25;
  }
}
.cta-card-section {
  padding: 50px 0;
}
.case-studies-section {
  padding: 60px 0;
}
.heading-md h2 {
  font-size: 38px;
}

.cta-section {
  background: var(--yellow);
  padding: 40px 0;
}
.testimonial-card-section {
  padding: 80px 0;
}
.testimonial-author-info {
  gap: 5px;
}
.testimonial-card {
  background: var(--black);
  border-radius: 20px;
  padding: 64px;
}
.testimonial-content {
  color: var(--yellow);
}
.testimonial-content h2,
.certficate-heading h2 {
  font-size: 38px;
  margin-bottom: 15px;
}
.testimonial-author-info {
  font-size: 18px;
  color: var(--yellow);
  font-weight: normal;
}
.qoute-icon {
  margin-bottom: 60px;
}
.certificate-logo-items {
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  padding: 8px;
}
.certificate-logo-items img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.certificate-section {
  padding: 50px 0;
}
.dual-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.team-hero {
  padding: 60px 0;
}
.team-banner-content {
  font-size: 18px;
  max-width: 460px;
}

.subscribe-section {
  display: inline-block;
  width: 100%;
  padding: 75px 0;
}
.subscribe-module {
  background: var(--black);
  border-radius: 20px;
  padding: 64px;
  max-width: 800px;
  width: 100%;
  margin: auto;
}
.gradient {
  background: linear-gradient(0deg, var(--offwhite) 50%, var(--white) 50%);
}
.subscribe-module img {
  width: 85px;
}
.subscribe-module h2 {
  font-size: 38px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 12px;
}
.subscribe-content {
  font-size: 18px;
  color: var(--yellow);
}
.teams {
  background: var(--black);
  position: relative;
}

.shape-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--white);
  bottom: 0;
  left: 0;
  border-top-right-radius: 30px;
}
.shape-corner:before,
.shape-corner:after {
  content: "";
  width: 30px;
  height: 60px;
  border-radius: 0px 0px 0px 30px;
  background: transparent;
  position: absolute;
  box-shadow: 0px 30px 0px 0 #fff;
}
.shape-corner:after {
  left: 100%;
  bottom: 0;
}
.shape-corner:before {
  bottom: 100%;
  left: 0;
}
.member-image {
  max-width: 240px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: -70px;
  margin-bottom: 16px;
}
.member-image img {
  height: 100%;
  object-fit: cover;
}
.member-card {
  padding-left: 50px;
  padding-right: 50px;
  margin-bottom: 130px;
}
.member-name {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 5px;
}
.member-info {
  font-size: 15px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.member-content {
  font-size: 18px;
  color: var(--white);
  display: inline-block;
  width: 100%;
}
.pi-hero {
  background-color: var(--white);
  background-image: url("../images/Q-top-left-part.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 50%;
  padding: 110px 0;
}
.pi-banner-content {
  max-width: 610px;
}
.pi-banner-content h1 {
  max-width: 450px;
  margin-bottom: 20px;
}

.partnership-navigation {
  background: var(--offwhite);
  padding: 13px;
  ul {
    gap: 8px 16px;
    & li a {
      color: var(--black);
      text-decoration: none;
      font-size: 15px;
      line-height: 1.4;
      border: 2px solid var(--black);
      border-radius: 30px;
      padding: 6px 25px;
      display: block;
      &:hover {
        background-color: var(--black);
        color: var(--white);
      }
    }
  }
}
.partner-nav-heading h2 {
  margin-bottom: 15px;
}
.partner-nav-item-wrap {
  padding: 40px 0;
}
.partner-featured-img img {
  width: 100%;
}
.text-btn {
  text-decoration: none;
  color: var(--blue);
  position: relative;
}
.text-btn span {
  border-bottom: 1px solid var(--blue);
  line-height: 1.2;
  display: inline-block;
}
.text-btn:after {
  content: ">";
}
.partner-name h4 {
  color: var(--black);
  text-decoration: none;
  font-size: 21px;
}
.partner-card > a {
  text-decoration: none;
}
.partner-card:hover {
  & .partner-featured-img {
    opacity: 0.5;
  }
  & .partner-name h4 {
    text-decoration: underline;
  }
}
.partner-featured-img img {
  border-radius: 12px;
}

.two-column-hero {
  padding: 110px 0;
  background-image: url("../images/Q-top-left-white-part.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 45%;
}
.banner-right-column img {
  max-width: 328px;
  border-radius: 50px;
  display: block;
  margin: auto;
}
.banner-left-content {
  max-width: 500px;
}
.banner-left-content p {
  font-size: 20px;
}
.dark-blurb-card-section {
  background: var(--black) url("../images/dark-black-yellow-bg.jpg") no-repeat
    bottom left;
  background-size: 100% auto;
  padding: 100px 0 65px;
  position: relative;
}
.corner-cut {
  width: 100px;
  height: 100px;
  border-bottom-left-radius: 35px;
  background: var(--white);
  position: absolute;
  top: 0;
  right: 0;
}
.corner-cut:before,
.corner-cut:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 70px;
  border-radius: 0 35px 0 0;
  background: transparent;
  box-shadow: 0 -35px 0 0 #ffffff;
}
.corner-cut:before {
  top: 0;
  right: 100%;
}
.corner-cut:after {
  top: 100%;
  right: 0;
}
.blurb-module {
  padding: 8px 0;
}
.blurb-module-body {
  background: var(--offblack);
  border-radius: 20px;
  padding: 40px 38px;
  display: flex;
  gap: 15px;
}
.blurb-number {
  color: var(--yellow);
  font-size: 68px;
  line-height: 58px;
  font-weight: 100;
  flex-shrink: 0;
  min-width: 50px;
  text-align: center;
}
.blurb-module-title {
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 10px;
}
.blurb-module-text * {
  font-size: 16px;
  color: var(--midgray);
  line-height: 1.25;
}
.blurb-module-text p:last-child {
  margin-bottom: 0;
}
.page-id-460 .testimonial-card-section {
  padding-top: 0;
}
.page-id-460 .testimonial-card-section .testimonial-card {
  margin-top: -95px;
  position: relative;
  z-index: 1;
}
.page-id-460 .case-studies-section {
  padding-bottom: 150px;
}
.heading-left-col {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.page-id-494 .testimonial-card-section {
  padding-bottom: 0;
}
.page-id-494 .testimonial-card-section .testimonial-card {
  margin-bottom: -95px;
  position: relative;
  z-index: 1;
}
.page-id-494 .case-studies-section {
  padding-top: 170px;
}
.section-badge {
  background: var(--yellow);
  display: inline-block;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 15px;
  line-height: 1.4;
  border: 8px solid var(--white);
  box-shadow: 0 5px 20px -2px rgba(0, 0, 0, 0.07);
  margin-bottom: 16px;
}
.contact-top-section {
  padding-top: 100px;
  background: var(--white) url("../images/Q-top-left-part.png") no-repeat right
    bottom;
  min-height: 350px;
}
.contact-email a,
.contact-phone a {
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
.contact-email a .icon,
.contact-phone a .icon {
  margin-left: 16px;
}
.site-form {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 48px;
  box-shadow: 0px 12px 25px -10px rgb(141 130 118 / 25%);
  min-height: 400px;
  margin-bottom: -60px;
}
.contact-second-section {
  padding: 60px 0 100px;
}
.contact-subscribe .subscribe-section {
  background: white;
  padding-top: 0;
}
.contact-subscribe .subscribe-section .subscribe-module {
  margin-top: -80px;
}
.site-form p {
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.5;
}
.black-content-module {
  padding: 100px 0 80px;
  background: var(--black) url("../images/top-blue-bg.png") no-repeat top center;
  text-align: center;
  color: var(--white);
  background-size: cover;
}
.black-content-heading {
  width: 100%;
  display: inline-block;
  & * {
    margin-bottom: 0;
  }
}
.black-content-btn {
  margin-top: 20px;
}
.black-module-content {
  margin-top: 70px;
}
.black-content-area {
  max-width: 800px;
  margin: auto;
}
.black-info-card-module {
  background: var(--black) url("../images/line-mask.png") no-repeat center left;
  padding: 40px 0;
}
.our-value-section {
  background: var(--black);
  padding: 40px 0;
}
.blurb-number img {
  max-width: 48px;
}
.black-info-card-module h2 {
  color: var(--yellow);
  margin-bottom: 16px;
}
.value-card-body {
  background: var(--black) url("../images/gradient-bg.jpg") no-repeat center;
  background-size: cover;
  border-radius: 20px;
  padding: 40px 30px;
  color: var(--white);
  height: 100%;
  & h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 16px;
  }
}
.value-content,
.value-content p {
  font-size: 21px;
  line-height: normal;
  color: var(--white);
}
.value-content p:last-child {
  margin-bottom: 0;
}
.value-cards-wrap .row {
  margin-left: -20px;
  margin-right: -20px;
  & > * {
    padding: 20px !important;
  }
}

.career-post-area {
  padding: 100px 0px 150px;
  color: var(--white);
}
.career-section-heading {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.career-section-heading h2 {
  font-size: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-job-found {
  margin-bottom: 20px;
  & p:last-child {
    margin-bottom: 0;
  }
}

.career-card {
  background: var(--offblack);
  border-radius: 20px;
  padding: 38px 38px;
  margin-bottom: 20px;
}
.careers-grid {
  max-width: 700px;
  margin: auto;
}
.career-body {
  gap: 20px;
}
.career-body-left {
  width: 100%;
}
.career-body-right {
  flex-shrink: 0;
}
.career-sub-heding {
  font-size: 16px;
  color: var(--midgray);
}
.career-body-left a {
  text-decoration: none;
}
.career-title {
  color: #fff;
  margin-bottom: 0;
  font-weight: 700;
}

/********************/
.blog-filter-wrap {
  padding: 16px;
  background: var(--black);
  border-radius: 50px;
}
.filter-btn {
  background: transparent;
  color: var(--gray);
  font-size: 15px;
  font-weight: 400;
  border: 1px solid var(--gray);
  border-radius: 30px;
  padding: 8px 13px;
  line-height: 1;
}
.filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  gap: 15px;
}
#clear-filters {
  color: var(--white);
  font-size: 15px;
  background: transparent;
  line-height: 1;
  padding: 8px 10px;
  margin-left: auto;
}
.filter-btn.active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.filter-btn:is(:not(.active)) .cross {
  display: none;
}
#blog-result-count {
  margin-top: 38px;
  font-size: 18px;
  font-weight: normal;
}
#blog-pagination > .page-numbers {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 75px;
  margin-bottom: 10px;
}
.page-numbers li {
  padding: 2px;
}
.page-numbers li .page-numbers {
  padding: 3px;
  color: var(--black);
  font-size: 15px;
  text-decoration: none;
  min-width: 20px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}
.page-numbers li .page-numbers.current {
  font-weight: 700;
}
.blog-filter-listing {
  margin-bottom: 50px;
}
.blog-hero {
  padding: 120px 0;
  background: var(--white) url("../images/logo-vector-top.png") no-repeat bottom
    right;
  background-size: 650px;
}
.blog-banner-content h1 {
  margin-bottom: 20px;
}
.blog-banner-content p {
  font-size: 24px;
  font-weight: normal;
  color: var(--black);
}

.blog-wrapper {
  max-width: 688px;
  margin: auto;
}
.blog-pg-header {
  padding: 40px 0 50px;
  border-bottom: 1px solid var(--offwhite);
  background: var(--white) url("../images/gray-pattern-vector.png") no-repeat
    bottom right;
}
.blog-pg-main {
  padding: 50px 0;
}
.post-author-date {
  gap: 10px 26px;
}
.post-author {
  font-size: 13px;
  color: var(--black);
}
.post-author a.post-author-link {
  color: var(--blue);
  text-decoration: underline;
}
.post-author {
  font-size: 13px;
  color: var(--black);
}
.post-author a.post-author-link {
  color: var(--blue);
  text-decoration: underline;
}
.post-date {
  color: var(--gray);
  font-size: 13px;
  font-weight: normal;
}

.blog-content-area .container > .row > .col-12.col-lg-11 {
  width: 100%;
}
.blog-content-area .container {
  padding: 0 !important;
}
.main-heading {
  max-width: 600px;
}
.lcrb-title {
  margin-top: 20px;
}
.lcrb-title h2 {
  font-size: 38px;
  margin-bottom: 15px;
}
.content-data-field h1 {
  font-size: 50px;
  font-weight: 700;
}
.content-data-field h2 {
  font-size: 38px;
  font-weight: 700;
}
.content-data-field h3 {
  font-size: 26px;
  font-weight: 700;
}
.content-data-field h4 {
  font-size: 24px;
  font-weight: 700;
}
.content-data-field h4 {
  font-size: 20px;
  font-weight: 700;
}
.content-data-field h6 {
  font-size: 18px;
  font-weight: 700;
}
.content-data-field p {
  font-size: 20px;
  line-height: 1.4;
}
.content-data-field p + h1,
.content-data-field p + h2,
.content-data-field p + h3,
.content-data-field p + h4 {
  margin-top: 20px;
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
}
.content-data-field p:has(img) {
  margin-bottom: 0;
}
.content-data-field img {
  max-width: 100%;
}
.content-data-field img {
  margin: 32px 0;
}
.content-field-section {
  padding: 20px 0;
}
.reference-card {
  background: var(--offwhite);
  border-radius: 20px;
  padding: 30px;
}
.reference-card {
  background: var(--offwhite);
  border-radius: 20px;
  padding: 30px;
}
.reference-title {
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 400;
  color: var(--black);
}
.reference-card-body * {
  font-size: 10px;
}
.reference-card-body ul,
.reference-card-body ol {
  padding-left: 0;
  margin-bottom: 0;
}
.content-data-field p a {
  color: var(--black);
  text-decoration: underline;
}
.back-to-page {
  margin-top: 32px;
}
.back-to-page .text-link {
  text-decoration: none;
}
.back-to-page .text-link span {
  border-bottom: 1px solid var(--blue);
}
.legal-pg-hero {
  background: var(--offwhite);
  padding: 80px 0 50px 0;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}
.shape-cut-banner {
  width: 80px;
  height: 80px;
  background: var(--white);
  bottom: 0;
  right: 0;
  position: absolute;
  border-top-left-radius: 30px;
}
.shape-cut-banner:before,
.shape-cut-banner:after {
  content: "";
  width: 30px;
  height: 60px;
  border-radius: 0px 0px 30px 0px;
  background: transparent;
  position: absolute;
  box-shadow: 0px 20px 0 0 #ffffff;
}
.shape-cut-banner:before {
  right: 0;
  bottom: 100%;
}
.shape-cut-banner:after {
  right: 100%;
  bottom: 0;
}
.legal-content-wrapper {
  max-width: 650px;
  margin: 40px auto 60px;
  border-top: 1px solid var(--offwhite);
  padding-top: 50px;
}
.legal-content-wrapper h2 {
  font-size: 38px;
}
.legal-content-wrapper p {
  font-size: 20px;
  margin-bottom: 30px;
}
.legal-content-wrapper h1,
.legal-content-wrapper h2,
.legal-content-wrapper h3,
.legal-content-wrapper h4 {
  font-weight: 700;
  margin-bottom: 20px;
}
.download-cta {
  background: var(--black) url("../images/svg/half-Q-reverse-yellow.svg")
    no-repeat bottom right;
  background-size: 120px;
  border-radius: 20px;
  padding: 80px 80px 60px;
  text-align: center;
}
.download-cta h3 {
  color: var(--yellow);
  font-weight: 400;
  margin-bottom: 24px;
}
.content-data-field p {
  font-size: 18px;
  line-height: 1.4;
}
.casestudy-pg-main {
  padding: 40px 0;
}

.casestudy-pg-left-col .container > .row > * {
  width: 100%;
}
.casestudy-pg-left-col .container {
  padding-left: 12px;
  padding-right: 12px;
}
.services-client-card-inner {
  background-color: var(--offwhite);
  border-radius: 20px;
  padding: 30px;
}
.client-logo {
  margin-bottom: 20px;
}
.client-logo img {
  border-radius: 10px;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.services-client-card {
  max-width: 260px;
  margin: 0 0 0 auto;
  position: sticky;
  top: 0;
}
.client-info {
  margin-bottom: 20px;
}
.client-info .label,
.service-heading {
  color: #858d44;
  font-size: 16px;
  line-height: normal;
}
.client-name {
  font-size: 18px;
  color: var(--black);
}
.service-list ul {
  margin-bottom: 15px;
}
.service-list li {
  padding: 3px 0;
  display: block;
}
.dark-fill-btn {
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  max-width: 300px;
  width: 100%;
  text-align: center;
  display: block;
  border-radius: 30px;
  font-size: 15px;
  line-height: 1.4;
  padding: 8px 20px;
  display: inline-block;
  &:hover {
    background-color: var(--white);
    color: var(--black);
  }
}
.qvs-tab-left-col-in * {
  font-size: 16px;
}
.qvs-tab-left-col-in ul,
.qvs-tab-left-col-in ol {
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  & li {
    padding: 2px 0 2px 15px;
    display: inline-block;
    width: 100%;
    position: relative;
    line-height: 1.1;
    &::before {
      content: "";
      width: 5px;
      height: 5px;
      background: var(--black);
      position: absolute;
      top: 7px;
      left: 0;
    }
  }
}
.page-id-31 .footer-top-sec,
.page-id-287 .footer-top-sec {
  display: none;
}
.card-carousel {
  position: relative;
  overflow: hidden;
}
.card-carousel .owl-carousel .owl-stage-outer {
  overflow: visible;
}
.card-carousel .owl-stage {
  padding: 40px 0px 10px 0px;
}
.card-carousel .card {
  background: #f1efe9;
  border-radius: 18px;
  color: #111;
  transition: background-color 500ms ease, color 500ms ease,
    transform 400ms ease;
  position: relative;
}
.card-carousel .card:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--offwhite);
  top: -40px;
  border-radius: 50px;
  left: 40px;
}
.card-carousel .owl-item {
  counter-increment: myCounter;
}
.card-carousel .card-inner {
  overflow: hidden;
  position: relative;
  padding: 35px 35px 35px 100px;
  & ul,
  & ol {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
    & li {
      padding: 2px 0 2px 15px;
      position: relative;
      &:before {
        content: "";
        width: 6px;
        height: 6px;
        background-color: var(--black);
        border-radius: 25px;
        position: absolute;
        top: 10px;
        left: 0;
      }
    }
  }
  &:after {
    content: counter(myCounter, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: 0;
    font-size: 92px;
    font-weight: 300;
    color: var(--gray);
    left: -40px;
    opacity: 0.5;
    letter-spacing: -10px;
  }
  & p {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
  }
}
.card-carousel .card-inner h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.1;
}
.card-carousel .card.is-first-active {
  background: #000;
  color: #fff;
  & .card-inner h2 {
    color: var(--yellow);
  }
  & .card-inner ul li:before,
  & .card-inner ol li:before {
    background-color: var(--white);
  }
}
.card-carousel .card:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--offwhite);
  top: -40px;
  border-radius: 50px;
  left: 40px;
}
.card-carousel .owl-nav button {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.card-carousel .owl-nav button span {
  width: 40px;
  height: 40px;
  margin: auto;
  background: url(../images/arrowButton.png) no-repeat center !important;
  background-size: contain !important;
  position: relative;
  z-index: 1;
}
.card-carousel .owl-nav {
  margin: 0;
}
.card-carousel .owl-nav button span {
  font-size: 0;
}
.card-carousel .owl-nav button.owl-prev {
  left: 0px;
  transform: rotate(180deg);
}
.card-carousel .owl-nav button.owl-next {
  right: -80px;
}
.card-carousel .owl-nav button.disabled {
  display: none;
}
.card-carousel {
  padding-right: 80px;
}
.card-carousel .owl-stage,
.card-carousel .owl-item {
  display: flex;
}
.card-carousel .owl-nav button.owl-prev:after {
  content: "";
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.5), transparent);
  left: -40px;
  display: none;
}
.card-carousel .owl-nav button.owl-next:after {
  content: "";
  width: 100px;
  height: 2500%;
  position: absolute;
  top: 0;
  background: linear-gradient(270deg, #fff, transparent);
  transform: translate(0px, -50%);
  right: 0;
}
.card-carousel .card.empty {
  opacity: 0;
}
.article-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 10px;
}
.taxonomy-banner {
  background: var(--offwhite);
  padding: 60px 0;
}

.guide-pg-main {
  padding: 30px 0 60px;
  background: url("../images/gray-pattern-vector.png") no-repeat bottom right;
  background-size: 300px auto;
}
.guide-title h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.35;
}
.guide-content {
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
}
.guide-content h6 {
  font-size: 18px;
  font-weight: 700;
}
.guide-content p {
  font-size: 18px;
  line-height: 1.25;
}
.guide-content ul,
.guide-content ol {
  padding: 0;
}
.guide-content ul li,
.guide-content ol li {
  display: inline-block;
  width: 100%;
  padding: 2px 0 3px 20px;
  line-height: normal;
  position: relative;
}
.guide-content ul li:before,
.guide-content ol li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--black);
  left: 8px;
  top: 10px;
}
.guide-featured-img img {
  width: 100%;
  height: auto;
}
.guide-right-col {
  padding-left: 30px !important;
}
.guide-right-col .site-form {
  margin-bottom: 0;
}
.hs-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 20px;
  overflow: hidden;
}
.video-pg-header .video-container-box,
.video-pg-header .hs-video-container {
  margin-bottom: -25%;
}
.video-heading {
  text-align: center;
  margin-bottom: 55px;
}
.video-heading h1 {
  font-size: 42px;
}
.video-pg-header {
  padding: 50px 0;
  background: var(--white) url("../images/logo-vector-top.png") no-repeat bottom
    right;
  background-size: 22% auto;
}
.video-main-body {
  background: var(--offwhite);
  padding-top: 210px;
  padding-bottom: 50px;
}
.video-img-col img {
  border-radius: 20px;
}
.video-content-col h2 {
  font-size: 38px;
  margin-bottom: 16px;
}
.video-content-col p {
  margin-bottom: 5px;
}
.video-content-col p {
  margin-bottom: 5px;
}
.video-content-col ul {
  padding-left: 0;
}
.video-content-col ul li {
  display: inline-block;
  width: 100%;
  padding: 2px 0px 2px 20px;
  line-height: normal;
  font-size: 18px;
  position: relative;
}
.video-content-col ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--black);
  display: block;
  position: absolute;
  left: 8px;
  top: 10px;
}
.related-insights {
  padding: 65px 0 100px;
}
.tab-pane {
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.tab-pane {
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.tab-pane {
  transition: none !important; /* important for clean animation */
}

/* Forward (next) */
.slide-in-right {
  animation: slideInRight 0.45s forwards;
}
.slide-out-left {
  animation: slideOutLeft 0.45s forwards;
}

/* Backward (previous) */
.slide-in-left {
  animation: slideInLeft 0.45s forwards;
}
.slide-out-right {
  animation: slideOutRight 0.45s forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.qvs-tab-wrap {
  overflow: hidden;
}
.guide-featured-img img {
  border-radius: 10px;
  border: 1px solid var(--gray);
}
.cards-main-heading h2 {
  margin: 25px 0 30px 0;
  display: inline-block;
  width: 100%;
}
.not-available-data {
  padding: 50px 0;
}

.client-logo-carousel .client-logo-box {
    width: 100%;
}