/* Case Study grid shortcode */
.case-study-grid {
  position: relative;
}

.case-study-grid__sentinel {
  width: 100%;
  height: 1px;
  pointer-events: none;
}

.case-study-grid__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 8px;
}

.case-study-grid__loader[hidden] {
  display: none !important;
}

.case-study-grid__spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(97, 185, 132, 0.25);
  border-top-color: #61b984;
  border-radius: 50%;
  animation: qfm-case-study-spin 0.7s linear infinite;
}

@keyframes qfm-case-study-spin {
  to {
    transform: rotate(360deg);
  }
}

.case-study-grid .grid {
  gap: 3.125vw;
  display: flex;
  flex-wrap: wrap;
}

.case-study-grid .card {
  border-radius: 8px;
  background: #fff;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.1);
  width: calc(33.3% - 2.083vw);
}

.case-study-grid .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.case-study-grid .description .card-link:hover {
  color: #61b984;
}

.case-study-grid .card .card-image img {
  aspect-ratio: 1/0.645;
  object-fit: cover;
  margin: 0;
  display: block;
  width: 100%;
}

.case-study-grid .card-content {
  padding: 1.563vw;
}

.case-study-grid .card .brand-logo {
  padding-bottom: 0.833vw;
}

.case-study-grid .card .brand-logo img {
  margin: 0;
  height: 3.093vw;
  max-width: 8.316vw;
  object-fit: contain;
  display: block;
}

.case-study-grid .card .description {
  border-bottom: 1px solid rgba(59, 48, 45, 0.2);
  padding-bottom: 0.833vw;
  margin-bottom: 0.833vw;
  color: #3b302d;
  font-size: 1.042vw !important;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.24px;
}

.case-study-grid .card .stats {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}

.case-study-grid .card .stats > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.case-study-grid .stat-number {
  font-size: 1.146vw;
  line-height: 1.3;
}

.case-study-grid .stat-label {
  font-size: 0.938vw;
  line-height: 1.3;
  text-align: right;
}

/* Case Study single */
.cs-detail {
  --cs-accent: #61b984;
  --cs-accent-dark: #308563;
  --cs-text: #3b302d;
  --cs-muted: rgba(59, 48, 45, 0.7);
  --cs-border: rgba(59, 48, 45, 0.12);
  color: var(--cs-text);
  font-family: Averta, "Averta Std", sans-serif;
}

.cs-detail__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cs-detail__accent {
  color: var(--cs-accent);
}

.cs-detail__section-title {
  margin: 0 0 32px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cs-text);
}

.cs-detail__section-title--accent {
  color: var(--cs-accent);
}

.cs-detail__hero {
  padding: 48px 24px 0;
  text-align: center;
}

.cs-detail__logo img {
  max-height: clamp(48px, 5.20833333vw, 100px);
  width: auto;
  margin: 0 auto 24px;
  display: block;
  object-fit: contain;
}

.cs-detail__headline {
  margin: 0 auto 32px;
  max-width: 900px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
}

.cs-detail__hero-image {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}

.cs-detail__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cs-detail__about {
  padding: 64px 0;
}

.cs-detail__about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.cs-detail__tag {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--cs-border);
  font-size: 14px;
  font-weight: 600;
}

.cs-detail__about-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cs-muted);
  margin-bottom: 28px;
}

.cs-detail__about-text p:last-child {
  margin-bottom: 0;
}

.cs-detail__subsection-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--cs-text, #3b302d);
}

.cs-detail__meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  margin: 0 0 32px;
}

.cs-detail__meta-item dt {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cs-muted);
}

.cs-detail__meta-item dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.cs-detail__scope,
.cs-detail__services,
.cs-detail__cards-section,
.cs-detail__testimonial {
  padding: 56px 0;
}

.cs-detail__scope-text {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cs-muted);
}

.cs-detail__services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--cs-border);
  border-radius: 8px;
  overflow: hidden;
}

.cs-detail__service-item {
  padding: 32px;
  border-right: 1px solid var(--cs-border);
  border-bottom: 1px solid var(--cs-border);
}

.cs-detail__service-item:nth-child(2n) {
  border-right: 0;
}

.cs-detail__service-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.cs-detail__service-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.cs-detail__service-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cs-muted);
}

.cs-detail__cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cs-detail__card {
  padding: 20px 24px;
  background: #f7f7f7;
  border-radius: 8px;
  border-left: 4px solid var(--cs-accent);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.cs-detail__testimonial-card {
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(59, 48, 45, 0.08);
}

.cs-detail__testimonial-logo img {
  max-height: 40px;
  width: auto;
  margin-bottom: 24px;
  display: block;
  object-fit: contain;
}

.cs-detail__testimonial-quote {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cs-muted);
  font-style: normal;
}

.cs-detail__testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cs-detail__testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.cs-detail__testimonial-author strong {
  display: block;
  font-size: 15px;
}

.cs-detail__testimonial-author span {
  display: block;
  font-size: 14px;
  color: var(--cs-muted);
}

body.single-case_study .container-wrap {
  padding-top: 0;
}

body.single-case_study #page-header-bg,
body.single-case_study .nectar-page-header {
  display: none;
}

.problems-wrapper .re-problems {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 2.5vw, 48px);
}

.problems-wrapper .re-problem-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  scroll-margin-top: 120px;
}

.problems-wrapper .re-problem-group__title {
  font-size: clamp(26px, 1.66666667vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  color: #61b984;
  margin: 0;
}

.problems-wrapper .re-problem-group__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problems-wrapper .re-problem-item {
  padding: clamp(20px, 1.25vw, 24px);
  border: 1px solid rgba(97, 185, 132, 0.35);
  border-radius: 8px;
  background: #f8faf9;
  scroll-margin-top: 120px;
}

.problems-wrapper .re-problem-item__title {
  font-size: clamp(22px, 1.25vw, 24px) !important;
  color: #3b302d;
  margin: 0 0 8px;
}

.problems-wrapper .re-problem-item__tags {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #61b984;
  margin: 0 0 12px;
  padding: 4px 12px;
  display: inline-block;
  background: #61b9842e;
}

.problems-wrapper .re-problem-item__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #3b302d;
  margin: 0;
}

.problems-wrapper .re-problems-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}

.problems-wrapper .page-numbers {
  padding: 6px 12px !important;
  font-size: 15px !important;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  text-transform: capitalize;
  transition: all ease 0.3s;
  margin: 0;
}

.problems-wrapper .page-numbers:hover {
  color: #61b984;
}

.problems-wrapper .re-problems-pagination__current {
  background-color: #61b984;
  color: #fff !important;
}

.problems-wrapper ul.page-numbers li {
  display: inline-block;
}

/* Issue slider shortcode - starts */
.issue-slider.swiper {
  position: relative;
  padding: 8px 0 70px;
  overflow: hidden;
}

.issue-slider .swiper-slide {
  height: auto;
}

.issue-slider__card {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(59, 48, 45, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.issue-slider__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(59, 48, 45, 0.2);
}

.issue-slider__media {
  position: relative;
  min-height: 380px;
  background-color: #2f2a28;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.issue-slider__media--fallback {
  background-image: linear-gradient(160deg, #3b302d 0%, #61b984 100%);
}

.issue-slider__logo {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 40px;
  height: 40px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.issue-slider__overlay {
  position: relative;
  z-index: 1;
  padding: 72px 20px 22px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 18%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.issue-slider__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.issue-slider__excerpt {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.issue-slider__pagination.swiper-pagination {
  bottom: 16px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.issue-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  opacity: 1;
  background: rgba(59, 48, 45, 0.28);
  border-radius: 50%;
  transition:
    width 0.25s ease,
    border-radius 0.25s ease,
    background 0.25s ease;
}

.issue-slider__pagination .swiper-pagination-bullet-active {
  width: 16px;
  border-radius: 6px;
  background: #61b984;
}

/* case study detail page */
.cs-detail__about .cs-detail__cta {
  border: 4px solid #61b984;
  color: #61b984;
  font-size: 1.25vw;
  line-height: 1.5;
  transition: all 0.3s ease;
  text-transform: capitalize;
  padding-top: 1.146vw;
  padding-right: 1.719vw;
  padding-bottom: 1.146vw;
  padding-left: 1.719vw;
  font-weight: 700;
  display: inline-block;
}

.cs-detail__about .cs-detail__cta:hover {
  background: #61b984;
  color: #fff;
}

.cs-detail__hero .cs-detail__logo img {
  margin: 0 auto clamp(16px, 1.25vw, 24px);
}

.cs-detail__hero {
  padding: 20px 0 0;
}
.cs-detail__hero .cs-detail__headline {
  max-width: 100%;
  margin: 0 auto clamp(24px, 1.66666667vw, 32px);
  font-size: clamp(24px, 2.1875vw, 42px);
  max-width: 1200px;
}

.cs-detail__hero .cs-detail__hero-image img {
  aspect-ratio: 1 / 0.3;
}

.cs-detail__about .cs-detail__meta-item dd {
  padding: 0;
}

.cs-detail__services,
.cs-detail__cards-section,
.cs-detail__testimonial {
  padding: 60px 0 0;
}

.cs-detail__scope {
  padding: 0;
}

.cs-detail__testimonial,
.cs-detail.case_study section:last-child {
  padding-bottom: 60px;
}

.cs-detail__tag {
  border: 1px solid #d4eadd;
  background: linear-gradient(
    135deg,
    rgba(221, 237, 228, 1) 0%,
    rgba(250, 250, 250, 1) 50%,
    rgba(212, 234, 221, 1) 100%
  );
  text-transform: uppercase;
}

.cs-detail__scope-text {
  max-width: 100%;
}

.cs-detail__services .cs-detail__service-item p:last-child {
  padding-bottom: 0;
}

.cs-detail__services .cs-detail__service-item {
  padding: clamp(20px, 1.66666667vw, 32px);
}

.cs-detail__section-title {
  margin: 0 0 clamp(22px, 1.66666667vw, 32px);
  font-size: clamp(24px, 3vw, 40px);
}

.cs-detail__about .cs-detail__about-grid {
  gap: clamp(28px, 2.5vw, 48px);
}

.cs-detail__about-text p:last-child,
.cs-detail__scope-text p:last-child {
  padding: 0;
}

.issue-card .wpb_wrapper {
  flex-direction: column;
}
.issue-card .issues-count {
  margin-bottom: 1.25vw !important;
  font-size: clamp(26px, 2.08333333vw, 40px);
  line-height: 1.125;
  color: #61b984;
  font-family: Averta Std;
  font-weight: 700;
  display: block;
  width: 100%;
}
.issue-card .detail {
  text-align: left;
  width: 100%;
  font-size: 1.25vw !important;
}
.issue-card .nectar-milestone h2 {
  margin: 0;
}

.issue-card .nectar-milestone {
  margin-bottom: 1.25vw !important;
}

.issue-card .number.accent-color {
  margin: 0;
  line-height: 1 !important;
  font-size: clamp(26px, 2.08333333vw, 40px) !important;
}

.issue-card .nectar-milestone .number .symbol-wrap {
  line-height: 1 !important;
  font-size: clamp(20px, 1.5625vw, 30px) !important;
}

.woocomerce-banner .main-image {
  max-width: 796px;
  aspect-ratio: 796/686;
  width: 100%;
  object-fit: cover;
}

.certificates-block-warper {
  margin: 0 auto;
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #f5f5f5 0%, #cbcbcb 45.36%, #f5f5f5 100%);
  z-index: 2;
}

.certificates-block-warper .certificate-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.certificates-block-warper > .row_col_wrap_12_inner {
  justify-content: center;
}

.certificates-block-warper > .row_col_wrap_12_inner {
  justify-content: center;
  gap: 0 clamp(30px, 3.125vw, 60px);
}

.certificates-block-warper .certificate-img {
  width: calc(16.6666667% - clamp(25px, 2.60416667vw, 50px));
  margin: 0 !important;
}

/* Case study work slider - starts */
.work--swiper {
  max-width: 100%;
}

.work--card {
  position: relative;
}

.work--card .card--inner {
  position: relative;
}

.work--card .card--logo {
  margin-bottom: 24px;
  height: 90px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-left: 40px;
}

.work--card .card--logo > img {
  width: 100% !important;
  height: auto;
  object-fit: contain;
  object-position: left center;
  margin: 0;
  aspect-ratio: 254/80;
  max-width: 254px;
}

.work--card .card--details {
  padding: 40px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: rgb(76 171 114 / 10%);
  border-radius: 12px;
  gap: 50px;
}

.work--card .card--details .details--group {
  width: 55%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work--card .card--details .details--group .title {
  text-align: left;
}

.work--card .card--details .details--group .title > span {
  text-transform: none;
}

.work--card .card--details .details--group .results {
  margin: 0;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  align-items: flex-start;
}

.work--card .card--details .details--group .results > li {
  padding: 16px 0;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.work--card .card--details .details--group .results > li:not(:last-child) {
  border-bottom: 1px solid #d2d2d2;
}

.work--card .card--details .details--group .results > li .h4,
.work--card .card--details .details--group .results > li h4 {
  color: #3b302d;
  margin-bottom: 8px;
}

.work--card .card--details .details--group .results > li p {
  color: #3b302d;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 1.3;
}

.work--card .card--details .details--group .ed--btn {
  border: 4px solid #61b984;
  color: #61b984;
  font-size: 1.25vw;
  line-height: 1.5;
  transition: all 0.3s ease;
  text-transform: capitalize;
  padding-top: 1.146vw;
  padding-right: 1.719vw;
  padding-bottom: 1.146vw;
  padding-left: 1.719vw;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  max-width: max-content;
  text-align: center;
}

.work--card .card--details .details--group .ed--btn:hover {
  background: #61b984;
  color: #fff;
}

.work--card .card--details .card--placeholder {
  position: relative;
  margin-top: -120px;
  width: 45%;
  border-radius: 12px;
  overflow: hidden;
}

.work--card .card--details .card--placeholder > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.7;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}

.work--swiper .swiper-button-next:after,
.work--swiper .swiper-button-prev:after {
  display: none;
}

.work--swiper .swiper-actions {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 9;
  height: 48px;
  width: 140px;
}

.work--swiper .swiper-button-next,
.work--swiper .swiper-button-prev {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 14px;
  margin: 0;
  top: initial;
  color: #3b302d;
}

.work--swiper .swiper-button-prev {
  right: 68px;
  left: initial;
}

.work--swiper .swiper-button-next {
  right: 0;
}

.work--swiper .swiper-button-next:hover,
.work--swiper .swiper-button-prev:hover {
  background: #61b984;
  color: #fff;
}

.work--swiper .swiper-pagination {
  display: none;
}

.work--swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #d2d2d2;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 8px !important;
}

.work--swiper .swiper-pagination-bullet-active {
  background: #4cab72;
}

.why-choose-section .nectar-icon-list-item .content,
.capability-section .nectar-icon-list-item .content {
  font-size: 18px;
}

.why-choose-section .main-image-block .img-with-aniamtion-wrap,
.why-choose-section .main-image-block .main-image,
.capability-section .main-image-block .img-with-aniamtion-wrap,
.capability-section .main-image-block .main-image {
  width: 100%;
}

.capability-section .nectar-icon-list-item .list-icon-holder,
.why-choose-section .nectar-icon-list-item .list-icon-holder {
  display: none;
}

.capability-section .nectar-icon-list-item,
.why-choose-section .nectar-icon-list-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 0;
}

.capability-section .nectar-icon-list-item:last-child,
.why-choose-section .nectar-icon-list-item:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.capability-section .nectar-icon-list-item::before,
.why-choose-section .nectar-icon-list-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #cbcbcb 0%, #f5f5f5 100%);
}

.capability-section .nectar-icon-list-item:last-child::before,
.why-choose-section .nectar-icon-list-item:last-child::before {
  content: none;
  display: none;
}

.expertise-card {
  position: relative;
}

.expertise-card ul {
  margin-bottom: 0;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 22px);
  background: linear-gradient(0deg, #f5f5f5 0%, #cbcbcb 45.36%, #f5f5f5 100%);
}

.expertise-card:last-child::before {
  display: none;
}

.expertise-card ul,
.expertise-card li {
  list-style: disc !important;
}

.testimonial-slider {
  overflow: hidden;
}

.support--main-wrapper .cell .nectar-fancy-box {
  height: 100%;
}

.support--main-wrapper .testimonial-slider {
  overflow: hidden;
}

.client-say-carousel-wrap {
  position: relative;
}

.client-say-carousel.swiper {
  overflow: visible;
  padding: 8px 4px 24px;
}

.client-say-carousel .swiper-wrapper.p--96 {
  padding: 0;
}

.client-say-carousel .swiper-slide {
  height: auto;
}

.client-say-carousel .clients--panel {
  height: auto;
  background: #fff;
  border-radius: 4px;
  box-shadow:
    0 4px 24px rgba(59, 48, 45, 0.08),
    0 1px 3px rgba(59, 48, 45, 0.06);
}

.client-say-carousel .clients--text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2vw, 28px);
  min-height: clamp(280px, 24vw, 340px);
  padding: clamp(32px, 4vw, 56px);
}

.client-say-carousel .client--logo img {
  display: block;
  max-width: min(208px, 55vw);
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-say-carousel .text--lg {
  margin: 0;
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.65;
}

.client-say-carousel .c--details {
  width: 100%;
  margin-top: auto;
}

.client-say-carousel .flex {
  display: flex;
  gap: 10px;
}

.client-say-carousel .align-items-center {
  align-items: center;
}

.client-say-carousel .align-items-stretch {
  align-items: stretch;
}

.client-say-carousel .justify-content-between {
  justify-content: space-between;
}

.client-say-carousel .flex-column {
  flex-direction: column;
}

.client-say-carousel .h-100 {
  height: 100%;
}

.client-say-carousel .gap--16 {
  gap: 16px;
}

.client-say-carousel .c--image img {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.client-say-carousel .text--md {
  display: block;
  margin: 0 0 4px;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 600;
  line-height: 1.3;
}

.client-say-carousel .text--xs {
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

.client-say-carousel .c--text {
  min-width: 0;
}

.client-say-carousel__actions {
  position: static;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  margin-top: 8px;
  padding-bottom: 8px;
}

.client-say-carousel__actions .swiper-button-prev,
.client-say-carousel__actions .swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
  color: #3b302d;
}

.client-say-carousel__actions .swiper-button-prev::after,
.client-say-carousel__actions .swiper-button-next::after {
  display: none;
}

.client-say-carousel__actions .swiper-button-next svg,
.client-say-carousel__actions .swiper-button-prev svg {
  display: block;
  width: 18px;
  height: auto;
  object-fit: contain;
  transform-origin: center;
}

.client-say-carousel__actions .swiper-button-prev:hover,
.client-say-carousel__actions .swiper-button-next:hover {
  background: #61b984;
  color: #fff;
}

.client-say-carousel__actions .swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

@media (max-width: 1440px) {
  .case-study-grid .grid {
    gap: 35px;
  }

  .case-study-grid .card {
    width: calc(33.3% - 23.3333333px);
  }

  .case-study-grid .card-content {
    padding: 22px;
  }

  .case-study-grid .card .brand-logo {
    padding-bottom: 16px;
  }

  .case-study-grid .card .description {
    padding-bottom: 16px;
    margin-bottom: 16px;
    font-size: 18px !important;
  }

  .case-study-grid .stat-number {
    font-size: 18px;
  }

  .case-study-grid .card .brand-logo img {
    height: 50px;
  }

  .case-study-grid .stat-label {
    font-size: 16px;
  }

  .case-study-grid .card .stats {
    gap: 10px;
  }
}

@media (max-width: 999px) {
  .case-study-grid .card {
    width: calc(50% - 15px);
  }

  .case-study-grid .grid {
    gap: 30px;
  }

  .cs-detail__about-grid,
  .cs-detail__services-grid,
  .cs-detail__cards-grid {
    grid-template-columns: 1fr;
  }

  .cs-detail__service-item {
    border-right: 0;
  }

  .cs-detail__service-item:last-child {
    border-bottom: 0;
  }

  .cs-detail__meta-grid {
    grid-template-columns: 1fr;
  }
  .issue-slider__media {
    min-height: 340px;
  }

  .cs-detail__tag {
    margin: 0;
  }

  .cs-detail__about .cs-detail__cta {
    font-size: 2.5vw;
    padding-top: 2.781vw !important;
    padding-right: 3.302vw !important;
    padding-bottom: 2.781vw !important;
    padding-left: 3.302vw !important;
    line-height: 1.25;
  }

  .issues-cards > .row_col_wrap_12_inner {
    flex-direction: row !important;
  }

  .issues-cards .issue-card {
    width: 33.3% !important;
  }

  .issue-card .issues-count {
    margin-bottom: 16px !important;
    font-size: 24px;
  }
  .issue-card .number.accent-color {
    font-size: 24px !important;
  }
  .issue-card .nectar-milestone {
    margin-bottom: 16px !important;
  }
  .issue-card .detail {
    font-size: 18px !important;
  }

  .problems-wrapper .re-problem-group__title {
    font-size: 24px;
  }
  .problems-wrapper .re-problem-item__title {
    font-size: 20px !important;
  }
  .problems-wrapper .re-problem-item {
    padding: 16px;
  }
  .problems-wrapper .re-problem-group__list {
    gap: 16px;
  }
  .work--card .card--details .card--placeholder {
    position: absolute;
    margin-top: 0;
    right: 0;
    top: 0;
    width: 40%;
  }

  .work--card .card--details {
    padding: 32px;
  }

  .work--swiper {
    padding-bottom: 24px;
  }

  .work--swiper .swiper-pagination {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    width: auto;
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
  }

  .work--swiper .swiper-button-next,
  .work--swiper .swiper-button-prev {
    display: none;
  }

  .work--swiper .swiper-actions {
    width: initial;
    height: initial;
    position: absolute;
    bottom: 8px;
    right: 50%;
    transform: translate(50%, 0);
  }

  .work--card .card--logo {
    max-width: calc(100% - 260px);
    padding-left: 40px;
  }

  .expertise-card {
    margin-bottom: 30px !important;
  }

  .expertise-card:last-child {
    margin-bottom: 0px !important;
  }
}

@media (max-width: 690px) {
  .case-study-grid .card {
    width: 100%;
  }

  .case-study-grid .card .stats > div {
    flex-wrap: wrap;
  }
  .case-study-grid .card .stats > div {
    gap: 10px;
    flex-wrap: nowrap !important;
    align-items: flex-start;
  }

  .cs-detail__hero {
    padding-top: 32px;
  }

  .cs-detail__about,
  .cs-detail__scope,
  .cs-detail__services,
  .cs-detail__cards-section,
  .cs-detail__testimonial {
    padding: 40px 0;
  }

  .cs-detail__testimonial-card {
    padding: 24px;
  }
  .problems-wrapper .re-problem-group__title {
    font-size: 22px;
  }
  .problems-wrapper .re-problem-group {
    gap: 20px;
  }

  .problems-wrapper .re-problem-item__title {
    font-size: 18px !important;
  }

  .problems-wrapper .re-problem-item__desc {
    font-size: 14px;
  }
  .problems-wrapper .re-problems {
    gap: 24px;
  }
  .issue-slider__media {
    min-height: 320px;
  }

  .issue-slider__title {
    font-size: 16px;
  }

  .issue-slider__excerpt {
    font-size: 13px;
  }

  .cs-detail__about .cs-detail__cta {
    font-size: clamp(17px, 0.04vw, 27.6px);
    padding-top: 3.781vw !important;
    padding-right: 4.302vw !important;
    padding-bottom: 3.781vw !important;
    padding-left: 4.302vw !important;
    line-height: 1.1;
  }

  .cs-detail__services,
  .cs-detail__cards-section,
  .cs-detail__testimonial {
    padding: 40px 0 0;
  }

  .cs-detail__about {
    padding: 40px 0;
  }

  .cs-detail__testimonial,
  .cs-detail.case_study section:last-child {
    padding-bottom: 40px;
  }

  .cs-detail__container {
    padding: 0;
  }

  .issues-cards > .row_col_wrap_12_inner {
    flex-direction: column;
  }

  .issues-cards .issue-card {
    width: 100% !important;
  }

  .problems-wrapper .page-numbers {
    padding: 4px 8px !important;
    font-size: 12px !important;
  }

  .certificates-block-warper > .row_col_wrap_12_inner {
    gap: 24px;
    flex-wrap: wrap;
  }
  .certificates-block-warper .certificate-img {
    width: auto !important;
  }

  .certificates-block-warper .certificate-img img {
    max-width: 80px;
    margin: 0 auto;
  }

  .work--card .card--details .card--placeholder {
    display: none;
  }

  .work--card .card--details .details--group {
    width: 100%;
    padding-right: 0;
    gap: 0;
  }

  .work--card .card--details .details--group .title {
    padding-right: 0;
    font-size: 20px;
  }

  .work--card .card--details {
    padding: 24px;
  }

  .work--card .card--details .details--group .results > li .h5,
  .work--card .card--details .details--group .results > li h5 {
    margin-bottom: 4px;
    font-size: 20px;
  }

  .work--card .card--logo {
    justify-content: center;
    padding-left: 0;
    max-width: 100%;
  }

  .work--card .card--details .details--group .ed--btn {
    margin-top: 12px;
    font-size: 15px;
    padding: 12px 12px;
    width: 100%;
    text-align: center;
  }

  .client-say-carousel.swiper {
    overflow: hidden;
    padding-right: 0;
  }
  .expertise-card h5 {
    font-size: 18px !important;
  }
  .testimonial-slider {
    overflow: initial;
  }
}

@media (min-width: 1921px) {
  .problems-wrapper .re-problems {
    gap: 2.5vw;
  }
  .problems-wrapper .re-problem-item {
    border-radius: 0.417vw;
    padding: 1.25vw;
  }

  .problems-wrapper .page-numbers {
    padding: 0.365vw 0.729vw !important;
    font-size: 0.833vw !important;
  }

  .problems-wrapper .re-problem-group__title {
    font-size: 1.667vw;
  }

  .problems-wrapper .re-problem-item__title {
    font-size: 1.25vw !important;
    margin: 0 0 0.417vw;
  }
  .problems-wrapper .re-problem-group__list {
    gap: 1.042vw;
  }
  .problems-wrapper .re-problem-group {
    gap: 1.25vw;
  }

  .problems-wrapper .re-problem-item__tags {
    font-size: 0.729vw;
    padding: 0.208vw 0.625vw;
    margin: 0 0 0.625vw;
  }

  .case-study-grid .card .stats > div {
    gap: 1.042vw;
  }
  .problems-wrapper .re-problem-item__desc {
    font-size: 0.833vw;
  }

  /* case study detail page */
  .cs-detail__hero .cs-detail__headline {
    max-width: 62.5vw;
  }
  .cs-detail__hero .cs-detail__logo img {
    max-height: 5.208vw;
    margin: 0 auto 1vw;
    width: 100%;
  }

  .cs-detail__hero .cs-detail__headline {
    margin: 0 auto 1.667vw;
    font-size: 2.917vw;
  }
  .cs-detail__hero {
    padding: 1.042vw 0 0;
  }
  .cs-detail__about {
    padding: 3.333vw 0;
  }
  .cs-detail__about-grid {
    gap: 2.5vw;
  }
  .cs-detail__section-title {
    margin: 0 0 1.667vw;
    font-size: 2.083vw;
  }
  .cs-detail__tag {
    padding: 0.417vw 0.938vw;
    font-size: 0.729vw;
  }
  .cs-detail__about-text {
    font-size: 0.833vw;
    margin-bottom: 1.458vw;
  }
  .cs-detail__subsection-title {
    margin: 0 0 0.833vw;
    font-size: 0.938vw;
  }
  .cs-detail__meta-grid {
    gap: 1.25vw;
    margin: 0 0 1.667vw;
  }
  .cs-detail__meta-item dt {
    margin: 0 0 0.313vw;
    font-size: 0.677vw;
  }
  .cs-detail__meta-item dd {
    font-size: 0.781vw;
  }
  .cs-detail__services,
  .cs-detail__cards-section,
  .cs-detail__testimonial {
    padding: 3.125vw 0 0;
  }
  .cs-detail__testimonial,
  .cs-detail.case_study section:last-child {
    padding-bottom: 3.125vw;
  }
  .cs-detail__container {
    max-width: 62.5vw;
    padding: 0 1.25vw;
  }
  .cs-detail__about .cs-detail__cta {
    font-size: 0.938vw;
    padding: 0.729vw 1.458vw;
  }
  .cs-detail__scope-text {
    font-size: 0.833vw;
  }
  .cs-detail__service-item {
    padding: 1.667vw;
  }
  .cs-detail__service-title {
    margin: 0 0 0.521vw;
    font-size: 0.938vw;
  }
  .cs-detail__service-desc {
    font-size: 0.781vw;
  }
  .cs-detail__cards-grid {
    gap: 1.042vw;
  }
  .cs-detail__card {
    padding: 1.042vw 1.25vw;
    border-left: 0.208vw solid var(--cs-accent);
    font-size: 0.781vw;
  }
  .cs-detail__testimonial-card {
    padding: 2.083vw;
  }
  .cs-detail__testimonial-logo img {
    max-height: 2.083vw;
    width: 8.646vw;
    margin-bottom: 1.25vw;
  }
  .cs-detail__testimonial-quote {
    margin: 0 0 1.458vw;
    font-size: 0.885vw;
  }
  .cs-detail__testimonial-author {
    gap: 0.729vw;
  }
  .cs-detail__testimonial-avatar {
    width: 2.5vw;
    height: 2.5vw;
  }
  .cs-detail__testimonial-author strong {
    font-size: 0.781vw;
  }
  .cs-detail__testimonial-author span {
    font-size: 0.729vw;
  }

  .issue-card .issues-count {
    font-size: 2.083vw;
  }

  .issue-card .number.accent-color {
    font-size: 2.083vw !important;
  }

  .issue-card .nectar-milestone .number .symbol-wrap {
    font-size: 1.563vw !important;
  }

  .section-divider::before {
    height: 0.052vw;
  }
  .certificates-block-warper > .row_col_wrap_12_inner {
    gap: 0 3.125vw;
  }
  .certificates-block-warper .certificate-img {
    width: calc(16.6666667% - 2.604vw);
  }

  .work--card .card--details {
    padding: 2.083vw;
    border-radius: 0.625vw;
    gap: 2.604vw;
  }
  .work--card .card--logo {
    margin-bottom: 1.25vw;
    height: 4.688vw;
    padding-left: 2.083vw;
  }
  .work--card .card--logo > img {
    max-width: 13.229vw;
  }
  .work--card .card--details {
    padding: 2.083vw;
    border-radius: 0.625vw;
    gap: 2.604vw;
  }
  .work--card .card--details .details--group {
    gap: 1.042vw;
  }
  .work--card .card--details .details--group .title {
    font-size: 1.719vw;
  }
  .work--card .card--details .details--group .results > li {
    padding: 0.833vw 0;
  }
  .work--card .card--details .details--group .results > li p {
    font-size: 1.042vw;
  }
  .work--card .card--details .card--placeholder > img {
    border-radius: 0.625vw;
  }
  .work--card .card--details .card--placeholder {
    margin-top: -6.25vw;
    border-radius: 0.625vw;
  }
  .work--swiper .swiper-actions {
    bottom: 2.083vw;
    right: 2.083vw;
    height: 2.5vw;
    width: 7.292vw;
  }
  .work--swiper .swiper-button-prev {
    right: 3.542vw;
  }
  .work--card .card--details .details--group .results > li .h5,
  .work--card .card--details .details--group .results > li h5 {
    font-size: 1.198vw;
  }
  .work--swiper .swiper-button-next,
  .work--swiper .swiper-button-prev {
    width: 2.5vw;
    height: 2.5vw;
    padding: 0.729vw;
  }
  .why-choose-section .nectar-icon-list-item .content,
  .capability-section .nectar-icon-list-item .content {
    font-size: 0.938vw;
  }
  .why-choose-section .nectar-icon-list-item,
  .capability-section .nectar-icon-list-item {
    margin-bottom: 1.042vw;
    padding-bottom: 1.042vw;
  }
  .why-choose-section .nectar-icon-list-item .list-icon-holder {
    width: 1.563vw !important;
    height: 1.563vw !important;
  }

  .expertise-card {
    padding: 0 1.302vw !important;
  }
  .expertise-card h5 {
    font-size: 1.406vw !important;
  }

  .expertise-card li {
    font-size: 0.833vw;
  }
  .expertise-card ul {
    margin: 0 0 1.563vw 1.563vw;
  }
  .expertise-card::before {
    width: 0.052vw;
    height: calc(100% - 1.146vw);
  }
  .capability-section .nectar-icon-list-item::before,
  .why-choose-section .nectar-icon-list-item::before {
    height: 0.052vw;
  }

  .client-say-carousel .clients--text {
    min-height: 17.708vw;
    padding: 2.917vw;
  }
  .client-say-carousel .gap--16 {
    gap: 0.833vw;
  }
  .client-say-carousel .client--logo img {
    max-width: 10.833vw;
    max-height: 2.083vw;
  }
  .client-say-carousel .text--lg {
    font-size: 0.938vw;
  }
  .client-say-carousel .flex {
    gap: 0.521vw;
  }
  .client-say-carousel .c--image img {
    width: 2.917vw;
    height: 2.917vw;
  }
  .client-say-carousel .text--md {
    margin: 0 0 0.208vw;
    font-size: 0.938vw;
  }
  .client-say-carousel .text--xs {
    font-size: 0.833vw;
  }
  .client-say-carousel__actions {
    gap: 0.625vw;
    margin-top: 0.417vw;
    padding-bottom: 0.417vw;
  }
  .client-say-carousel__actions .swiper-button-prev,
  .client-say-carousel__actions .swiper-button-next {
    width: 2.5vw;
    height: 2.5vw;
    border: 0.052vw solid #d2d2d2;
  }
  .client-say-carousel__actions .swiper-button-next svg,
  .client-say-carousel__actions .swiper-button-prev svg {
    width: 0.938vw;
  }
  .client-say-carousel.swiper {
    padding: 0.417vw 0.208vw 1.25vw;
  }
}
