@charset "utf-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
a {
  cursor: pointer
}

/* ___________________ Header Starts _______________________*/
.navbar-default {
  padding-block: clamp(18px, 1.875vw, 36px);
  margin: 0;
  background: none;
  border: none;
  display: block;
  background-color: var(--bc-dark-green);
  border-bottom: 1px solid #283B23;
}

.stellarnav {
  transition: all 0.3s ease-in-out;
}

.stellarnav.dark {
  background-color: transparent;
}

.stellarnav>ul>li>a {
  padding: 0 15px;
  color: var(--bc-light) !important;
}

.stellarnav>ul>li.active a {
  color: var(--bc-dark-orange) !important;
}

.stellarnav.mobile.dark ul {
	background-color: #FFFFFFF7;
	z-index: 9999;
	backdrop-filter: blur(10px);
}

.stellarnav.mobile.dark ul li a {
  color: var(--bc-dark-green) !important;
}

.stellarnav.mobile.dark ul li.active a {
  color: #fff !important;
  background: var(--bc-dark-orange);
  box-shadow: 0 0 3px 0 rgba(0,0,0,0.3) inset;
}

.stellarnav.dark a {
  color: var(--bc-dark-green);
}

.stellarnav.mobile li a {
  border-bottom: 1px solid #00000015;
}

/*-- Moblie Menu 1 --*/
.stellarnav .menu-toggle span.bars span {
  width: 35px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.stellarnav.active .bars span:nth-child(2) {
  opacity: 0;
}

.stellarnav.active .bars span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

.stellarnav.active .bars span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -o-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

.navbar-default .logo-block {
  width: 135px;
  transition: width 0.3s ease;
}

.navbar-default .logo-block img {
  width: 100%;
  height: auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 11111;
  transition: box-shadow 0.3s ease, transform 0.3s ease, padding 0.3s ease;
}

.navbar.is-sticky {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.is-sticky .logo-block {
  width: 100px;
}


/* ___________________ Header end_______________________*/


/* ___________________ home banner section start_______________________*/
.home-banner-section {
  background-color: var(--bc-dark-green);
  color: var(--bc-light);
  padding-block: clamp(41px, 4.688vw, 90px) clamp(54px, 6.250vw, 120px);
  overflow-x: hidden;
}

.home-banner-section .row {
  --bs-gutter-y: 30px
}

.home-banner-section .left-content-wrapper h1 {
  font-family: var(--bc-secondary-font);
  font-weight: 900;
  font-size: var(--bc-font-size-80);
  color: var(--bc-dark-orange);
  line-height: 1.0625;
  margin-bottom: clamp(20px, 2.083vw, 40px);
}

.home-banner-section .left-content-wrapper h1 span {
  background: #FFFFFF;
  background: linear-gradient(to top, #c8c8c8 0%, #ffffff 60%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.home-banner-section .left-content-wrapper p {
  margin-bottom: clamp(45px, 5.208vw, 100px);
  font-size: var(--bc-font-size-20);
  max-width: 440px;
}

.home-banner-section .right-content-wrapper {
  position: relative;
  z-index: 1;
}

.home-banner-section .right-content-wrapper .video-wrapper {
  height: 100%;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: inherit;
}

.home-banner-section .right-content-wrapper .video-wrapper::after {
  content: '';
  height: 100%;
  width: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 30%;
}

.home-banner-section .right-content-wrapper .video-wrapper i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(50px, 3.125vw, 60px);
  color: var(--bc-dark-orange);
  z-index: 999;
  transition: 0.3s ease-in-out;
}

.home-banner-section .right-content-wrapper .video-wrapper:hover i {
  color: var(--bc-light);
  transition: 0.3s ease-in-out;
  transform-origin: center;
}

.home-banner-section .right-content-wrapper [class^="design-element-"] {
  position: absolute;
  max-width: clamp(130px, 13.021vw, 250px);
  z-index: -1;
}

.home-banner-section .right-content-wrapper .design-element-1 {
  top: clamp(-15px, -1.563vw, -30px);
  left: clamp(-14px, -1.042vw, -20px);
}

.home-banner-section .right-content-wrapper .design-element-2 {
  bottom: clamp(-15px, -1.563vw, -30px);
  right: clamp(-14px, -1.042vw, -20px);
}

.home-banner-section .right-content-wrapper .video-wrapper img {
  transition: 0.3s ease-in-out;
}

.home-banner-section .right-content-wrapper .video-wrapper:hover img {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
}

/* ___________________ home banner section end_______________________*/

/* ___________________ floating-piller-bar -------------------------- */
.floating-piller-bar {
  background-color: var(--bc-dark-orange);
  color: var(--bc-dark-green);
}


/* ___________________ rusted by leading healthcare section start_______________________*/
.trusted-by-healthcare-section {
  background-color: var(--bc-light-orange);
  padding-block: clamp(38px, 3.906vw, 75px) clamp(38px, 6.510vw, 125px);
}

.trusted-by-healthcare-section .title-2 {
  color: var(--bc-dark-green-2);
  max-width: 825px;
  margin: 0 auto;
  margin-bottom: clamp(30px, 3.729vw, 110px);
}

.trusted-by-healthcare-section .box-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.trusted-by-healthcare-section .box-container .box {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7d3b0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ebbf95;
}

.trusted-by-healthcare-section.style-2 .title-2 {
  margin: initial;
  margin-bottom: clamp(30px, 3.125vw, 60px);
  color: var(--bc-dark-green);
}

/* ___________________ rusted by leading healthcare section end_______________________*/


.floating-piller-bar-mobile{
  display: none;
  background-color: var(--bc-light-orange);
}

.floating-piller-bar-mobile .floating-piller-bar-mobile--slider{
    background-color: var(--bc-dark-orange);
    border-radius: 8px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
    transform: translateY(-50%);
}

.floating-piller-bar-mobile .floating-piller-bar-mobile--slider p{
  text-align: center;
  padding: 15px 0;
  color: var(--bc-dark-green-2);
}


/* logo-slider-section-home */
.logo-slider-section-home{
  position: relative;
  background-color: var(--bc-light-orange);
  padding: 100px 0;
  margin: 0;
}

.logo-slider-section-home h3{
  color: var(--bc-dark-green-2);
  max-width: 825px;
  margin: 0 auto;
  margin-bottom: clamp(30px, 3.729vw, 110px);
}


/* Space between slides */
.logo-slider-section-home .logo-slider-section-slider--home .slick-slide {
  margin: 0 15px; /* 15px left + 15px right = 30px gap */
}

/* Fix overflow caused by margins */
.logo-slider-section-home .logo-slider-section-slider--home .slick-list {
  margin: 0 -15px;
}


.logo-slider-section-home .logo-slider-section-slider--home .logo-block {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
   background-color: #F7D3B0;
   border: 1px solid #EBBF95;
   border-radius: 10px;
   padding: 10px;
}

.logo-slider-section-home .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--bc-dark-orange);
    color: #fff;
    border-radius: 50%;
}

.logo-slider-section-home button.slider-prev-arr {
    left: -50px;
}

.logo-slider-section-home button.slider-next-arr {
    right: -50px;
}

.logo-slider-section-home .logo-slider-section-slider--home .slick-arrow{
	display: none !important;
}

/*======= Problem Statement Section =============*/
.problem-statement .main-block h3{
	position: relative;
	font-family: var(--bc-secondary-font);
    font-size: clamp(1rem, 0.9537rem + 0.2469vw, 1.25rem);
    text-align: center;
    padding: 30px 50px;
    max-width: 820px;
    margin-inline: auto;
    background: #fff;
    line-height: 1.5;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
    border-radius: 10px;
    font-style: italic;
	isolation: isolate;
}

.problem-statement .main-block h3 > .bi-quote{
    color: #0c0c0c0f;
    position: absolute;
    left: -28px;
    top: -28px;
    font-size: 150px;
    line-height: 0;
    z-index: -1;
}



/* ___________________got purpose secton start_______________________*/
.got-purpose-section {
  padding-block: 110px;
}

.got-purpose-section .left-content-wrapper .title-2 span {
  font-style: italic;
  color: var(--bc-dark-green-2);
}

.got-purpose-section .left-content-wrapper .title-2 {
  padding-bottom: 55px;
}

.got-purpose-section .left-content-wrapper p {
  font-size: var(--bc-font-size-20);
  line-height: 1.85;
  padding-bottom: 51px;
}

.got-purpose-section .left-content-wrapper .img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 0.571;
  position: relative;
}

.got-purpose-section .left-content-wrapper .img-wrapper img {
  border-radius: 10px;
}

.got-purpose-section .left-content-wrapper .img-wrapper::after {
  content: '';
  height: 100%;
  width: 100%;
  background-color: var(--bc-dark-orange);
  border-radius: 10px;
  position: absolute;
  bottom: -10px;
  left: -10px;
  z-index: -1;
}

.got-purpose-section .right-content-wrapper ul li h4 {
  font-size: var(--bc-font-size-26);
  line-height: 1.42;
  font-weight: 700;
  color: var(--bc-dark-green-3);
  padding-bottom: 30px;
}

.got-purpose-section .right-content-wrapper ul li p {
  padding-bottom: 50px;
  line-height: 1.89;
}

.got-purpose-section .right-content-wrapper ul li {
  padding-block: 40px;
  border-bottom: 1px solid #E1E1E1;
}

.got-purpose-section .right-content-wrapper ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.got-purpose-section .right-content-wrapper ul li:first-child {
  padding-top: 0;
}

.got-purpose-section .right-content-wrapper ul li .skeleton-btn {
  color: var(--bc-dark-orange);
}

/* ___________________got purpose secton end_______________________*/


/* ___________________why visual secton start_______________________*/
.why-visual-section .main-block {
  background-color: var(--bc-light-orange);
  padding-block: 105px 165px;
}

.why-visual-section .main-block .title-3 {
  text-align: center;
  padding-bottom: 62px;
}

.why-visual-section .main-block P {
  font-size: var(--bc-font-size-20);
  line-height: 1.65;
  text-align: center;
}

.why-visual-section .video-block .video-wrapper {
  position: relative;
  z-index: 99;
  top: -108px;
  border-radius: 10px;
  overflow: hidden;
}

.why-visual-section .video-block .video-wrapper a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: var(--bc-light);
}

/* ___________________why visual secton end_______________________*/


/* ___________________see the difference secton start_______________________*/
.see-the-difference-section {
  display: none;
  padding-bottom: 100px;
}

.see-the-difference-section .main-block .title-3 {
  text-align: center;
  padding-bottom: 130px;
}

.see-the-difference-section .main-block .odd-even-box+.odd-even-box {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #BBBBBB;
}

.see-the-difference-section .main-block .odd-even-box .odd .title-2 {
  color: var(--bc-dark-green-2);
  padding-bottom: 50px;
}

.see-the-difference-section .main-block .odd-even-box .odd p {
  padding-bottom: 50px;
  line-height: 1.67;
  max-width: 420px;
}

.see-the-difference-section .main-block .odd-even-box .odd .skeleton-btn {
  color: var(--bc-dark-orange);
  transition: 0.3s ease-in-out;
}

.see-the-difference-section .main-block .odd-even-box .odd .skeleton-btn:hover {
  color: var(--bc-dark-green);
  transition: 0.3s ease-in-out;
}

.see-the-difference-section .main-block .odd-even-box .even {
  position: relative;
  width: 100%;
  height: auto;
  background-color: transparent;
  border-radius: 10px;
}

.see-the-difference-section .main-block .odd-even-box .even video {
  box-shadow: 0px -1px 18px 0px rgba(17, 17, 17, 0.15);
  height: auto;
  width: 100%;
}

.see-the-difference-section .main-block .odd-even-box .even {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.see-the-difference-section .main-block .odd-even-box .even::after {
  content: '';
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 31%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease-in-out;
  border-radius: 6px;
}

.see-the-difference-section .main-block .odd-even-box .even::before {
  content: '\f144';
  font-family: "Font Awesome 6 Pro";
  color: var(--bc-light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  font-size: 50px;
  font-weight: 300;
}

.see-the-difference-section .main-block .odd-even-box .even:hover::after {
  opacity: 70%;
  transition: 0.3s ease-in-out;
}

/* ___________________see the difference secton end_______________________*/

/* See The Difference Section NEW Start */
.see-the-difference-section-new {
  line-height: 0;
  padding: 0;
  margin: 0;
}

.see-the-difference-section-new .see-difference-slider .video-block {
  position: relative;
  aspect-ratio: 16 / 9;
}

.see-the-difference-section-new .see-difference-slider .video-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.see-the-difference-section-new .see-difference-slider .video-block video::-webkit-media-controls {
  display: none !important;
}

.see-the-difference-section-new .see-difference-slider .video-block video::-moz-media-controls {
  display: none !important;
}

.see-the-difference-section-new .see-difference-slider .video-block video::-ms-media-controls {
  display: none !important;
}

.see-the-difference-section-new .see-difference-slider .video-block .text-block {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 30px;
  padding: 50px;
}

.see-the-difference-section-new .see-difference-slider .video-block .text-block .title-2 {
  max-width: 25ch;
  margin: 0;
}

.see-the-difference-section-new .see-difference-slider .video-block .text-block p {
  font-family: inherit;
  font-size: var(--bc-font-size-20);
  color: #fff;
  line-height: 1.85;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.see-the-difference-section-new .see-difference-slider .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
}

.see-the-difference-section-new .see-difference-slider .slick-dots li button {
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #8B8B8B;
  border: navy;
}

.see-the-difference-section-new .see-difference-slider .slick-dots li.slick-active button {
  background-color: var(--bc-dark-orange);
}

.see-the-difference-section-new .see-difference-slider .slick-arrow {
  background-color: var(--bc-dark-orange);
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  line-height: 1.5;
  aspect-ratio: 1;
  display: block;
  color: #fff;
}

.see-the-difference-section-new .see-difference-slider .slick-prev {
  left: 10px;
}

.see-the-difference-section-new .see-difference-slider .slick-next {
  right: 10px;
}



/* See The Difference Section NEW End */

/* ___________________left-content-right-list-widget start_______________________*/
.left-content-right-list-widget {
  background-color: var(--bc-light-orange);
  padding-block: clamp(52px, 6.771vw, 130px);
}

.left-content-right-list-widget .left-content-wrapper .content-wrapper .title-2 {
  color: var(--bc-dark-green-2);
  padding-bottom: 40px;
}

.left-content-right-list-widget .left-content-wrapper .content-wrapper>p {
  padding-bottom: 50px;
  font-size: var(--bc-font-size-20);
  line-height: 1.85;
}

.left-content-right-list-widget .left-content-wrapper .content-wrapper>p:last-child {
  padding-bottom: 40px;
}

.left-content-right-list-widget .left-content-wrapper .content-wrapper a {
  margin-bottom: 57px;
}

.left-content-right-list-widget .left-content-wrapper .img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 0.571;
}

.left-content-right-list-widget .left-content-wrapper .img-wrapper img {
  border-radius: 10px;
  box-shadow: 0px -1px 18px 0px rgba(17, 17, 17, 0.15)
}

.left-content-right-list-widget .right-content-wrapper ul {
  padding-right: 10px;
}

.left-content-right-list-widget .right-content-wrapper ul li h4 {
  font-size: var(--bc-font-size-26);
  line-height: 1.42;
  font-weight: 700;
  padding-bottom: 25px;
}

.left-content-right-list-widget .right-content-wrapper ul li p {
  line-height: 1.89;
  padding-bottom: 25px;
}

.left-content-right-list-widget .right-content-wrapper ul li p+p {
  margin-top: clamp(23px, 2.344vw, 45px);
}

.left-content-right-list-widget .right-content-wrapper ul li {
  padding-block: 37px;
  border-bottom: 1px dashed var(--bc-dark-orange);
}

.left-content-right-list-widget .right-content-wrapper ul li:first-child {
  padding-top: 0;
}

.left-content-right-list-widget .right-content-wrapper ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.left-content-right-list-widget .right-content-wrapper {
  height: 100%;
  overflow-y: scroll;
  max-height: clamp(700px, 52.083vw, 1000px);
}

.left-content-right-list-widget .right-content-wrapper {
  scrollbar-width: thin;
  scrollbar-color: var(--bc-dark-green-2) #F4CDA7;
  border-radius: 12px;
}

/* ___________________left-content-right-list-widget end_______________________*/


/* ___________________whats brands engage section start_______________________*/
.whats-brands-engage-section {
  display: none;
  padding-block: clamp(45px, 5.208vw, 100px);
}

.whats-brands-engage-section .title-2 {
  margin-bottom: clamp(34px, 3.906vw, 75px);
}

.whats-brands-engage-section .box h4 {
  font-size: var(--bc-font-size-24);
  font-weight: 700;
  margin-bottom: clamp(15px, 1.563vw, 30px);
}

.whats-brands-engage-section .box-item-wrapper {
  background-color: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: clamp(15px, 1.563vw, 30px) clamp(13px, 1.302vw, 25px);
}

.whats-brands-engage-section .box-item-wrapper .row {
  --bs-gutter-y: clamp(23px, 2.344vw, 45px);
}

.whats-brands-engage-section .box-item {
  display: flex;
  align-items: center;
  gap: clamp(11px, 0.781vw, 15px);
}

.whats-brands-engage-section .box-item .icon {
  max-width: 35px;
}

.whats-brands-engage-section .box-item h5 {
  font-size: var(--bc-font-size-18);
  font-weight: 400;
}

.whats-brands-engage-section .box-container>.row {
  --bs-gutter-y: clamp(23px, 2.344vw, 45px);
}

/* ___________________whats brands engage section end_______________________*/

/* What Brands Start */
.what-brands-section {
  padding-block: clamp(45px, 5.208vw, 100px);
}

.what-brands-section .text-block {
  background-color: var(--bc-light-orange);
  padding: 30px;
  border-radius: 12px;
}

.what-brands-section .text-block h3 {
  color: var(--bc-dark-green-2);
  padding-bottom: 20px;
}

.what-brands-section .text-block ul li {
  font-size: var(--bc-font-size-20);
  line-height: 1.85;
}

.what-brands-section .text-block ul li::before {
  content: '\f00c';
  font-family: "Font Awesome 6 Pro";
  display: inline-block;
  color: var(--bc-dark-orange);
  margin-right: 10px;
  font-weight: 900;
}


/* What Brands End */

/* ___________________Industries section start _______________________*/
.industries-section {
  padding-top: 125px;
}

.industries-section .top-block .left-content-wrapper .title-2 {
  color: var(--bc-dark-orange);
  padding-bottom: 44px;
}

.industries-section .top-block .left-content-wrapper p {
  padding-bottom: 48px;
  line-height: 1.67;
}

.industries-section .top-block .right-content-wrapper {
  position: relative;
  height: 380px;
}

.industries-section .top-block .right-content-wrapper::before {
  content: '';
  background-color: var(--bc-dark-orange);
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: -1;
  border-radius: 10px;
}

.industries-section .top-block .right-content-wrapper>img {
  border-radius: 10px;
  box-shadow: 0px -1px 18px 0px rgba(17, 17, 17, 0.15)
}

.industries-section .top-block .right-content-wrapper .brand-logo {
  background-color: #FFFFFF;
  padding: 7px 10px;
  position: absolute;
  bottom: 15px;
  left: 20px;
  background-image: -moz-linear-gradient(90deg, rgb(228, 228, 228) 0%, rgb(255, 255, 255) 79%, rgba(255, 255, 255, 0.99608) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(228, 228, 228) 0%, rgb(255, 255, 255) 79%, rgba(255, 255, 255, 0.99608) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(228, 228, 228) 0%, rgb(255, 255, 255) 79%, rgba(255, 255, 255, 0.99608) 100%);
  box-shadow: 0px 9px 18px 0px rgba(17, 17, 17, 0.17);
  border: 1px solid #D8D8D8;
  border-radius: 5px;
}

/* ___________________Industries section end _______________________*/


/* ___________________Industries section end _______________________*/
.support-brands-section {
  padding-block: 54px 120px;
}

.support-brands-section .title-3 {
  padding-bottom: 80px;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.support-brands-section #brand-slider .slick-arrow {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.support-brands-section #brand-slider .slick-arrow i {
  font-size: 40px;
  font-weight: 300;
}

.support-brands-section #brand-slider .slick-prev {
  left: -30px;
}

.support-brands-section #brand-slider .slick-next {
  right: -30px;
}

/* ___________________Industries section end _______________________*/


/* ___________________Your purpose section start _______________________*/
.left-content-right-list-widget.style-2 .left-content-wrapper .content-wrapper p {
  max-width: 500px;
  padding-bottom: clamp(33px, 3.802vw, 73px);
}

.left-content-right-list-widget.style-2 .left-content-wrapper .content-wrapper a {
  margin-bottom: 73px;
}

.left-content-right-list-widget.style-2 .right-content-wrapper ul li p {
  padding-bottom: 0;
}

.left-content-right-list-widget.style-2 .right-content-wrapper {
  height: auto;
  max-height: initial;
  overflow-y: initial;
}

/* ___________________Your purpose section end _______________________*/


/* ___________________Testimonials section start _______________________*/
.testimonials-section {
  padding-block: 100px 50px;
}

.testimonials-section .title-3 {
  text-align: center;
  padding-bottom: 80px;
}

.testimonials-section #testimonials-slider .single-slide {
  background-color: var(--bc-light-orange);
  padding: 27px 30px 20px;
  margin-inline: 15px;
}

.testimonials-section #testimonials-slider .single-slide p {
  padding-bottom: 30px;
  line-height: 1.67;
  min-height: 210px;
}

.testimonials-section #testimonials-slider .single-slide .bottom-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.testimonials-section #testimonials-slider .single-slide .bottom-content-wrapper .img-wrapper {
  max-width: 70px;
}

.testimonials-section #testimonials-slider .single-slide .bottom-content-wrapper h4 {
  font-size: var(--bc-font-size-18);
  font-weight: 700;
  padding-bottom: 10px;
}

.testimonials-section #testimonials-slider .single-slide .bottom-content-wrapper h5 {
  font-size: var(--bc-font-size-16);
  font-weight: 400;
}

.slick-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 37px;
}

.slick-dots li button {
  font-size: 0;
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #8B8B8B;
  border: navy;
}

.slick-dots li.slick-active button {
  background-color: var(--bc-black);
}

/* ___________________Testimonials section end _______________________*/


/* ___________________footer section start_______________________*/
footer {
  background-color: var(--bc-dark-green);
  padding-block: 110px 72px;
  color: var(--bc-light);
  font-size: var(--bc-font-size-26)
}

footer .title-2 {
  text-align: center;
  padding-bottom: 60px;
}

footer .title-2 span {
  color: var(--bc-dark-orange);
}

footer .footer-cta a>small {
  display: block;
  line-height: 1;
}


footer .box-container {
  display: flex;
  gap: 120px;
  justify-content: center;
  margin-bottom: 135px;
}

footer .box-container .box h4 {
  color: var(--bc-dark-orange);
  font-weight: 700;
  padding-bottom: 15px;
}

footer .box-container .box a {
  color: var(--bc-light);
  transition: 0.3s ease-in-out;
}

footer .box-container .box a:hover {
  transform: translateY(-3px);
  transition: 0.3s ease-in-out;
  color: var(--bc-dark-orange);
}

footer .box-container .box ul {
  display: flex;
}

footer .box-container .box ul li {
  position: relative;
  padding-right: 22px;
}

footer .box-container .box ul li+li {
  padding-left: 22px;
}

footer .box-container .box ul li::after {
  content: '|';
  position: absolute;
  right: 0;
}

footer .box-container .box ul li:last-child::after {
  display: none;
}

footer .copyright {
  text-align: center;
  font-size: var(--bc-font-size-18);
}

footer .copyright a {
  color: var(--bc-dark-orange);
  font-weight: 700;
  transition: 0.3s ease-in-out;
}

footer .copyright a:hover {
  transform: translateY(-3px);
  transition: 0.3s ease-in-out;
}

/* ___________________footer section end_______________________*/





/*____________________________________________
                inner page css start here
______________________________________________*/


/* ___________________inner banner start_______________________*/
.inner-banner {
  background-color: var(--bc-dark-green);
  padding-block: clamp(23px, 2.344vw, 45px) clamp(34px, 3.906vw, 75px);
  overflow-x: hidden;
}

.inner-banner .row {
  --bs-gutter-y: 30px
}

.inner-banner .left-wrapper .title-1 {
  color: var(--bc-light);
}

.inner-banner .left-wrapper .title-1 span {
  color: var(--bc-dark-orange);
}

.inner-banner .right-wrapper {
  position: relative;
  z-index: 999;
}

.inner-banner .right-wrapper .design-element {
  position: absolute;
  bottom: clamp(-13px, -1.302vw, -25px);
  left: clamp(-15px, -1.563vw, -30px);
  z-index: -1;
  max-width: clamp(140px, 12.812vw, 246px);
}

.inner-banner .right-wrapper .img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 0.985;
  border-radius: 10px;
  overflow: hidden;
}

.inner-banner-single {
  padding-block: clamp(38px, 4.427vw, 85px) clamp(29px, 3.385vw, 65px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.inner-banner-single::after {
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 60%;
  position: absolute;
  z-index: 2;
}

.inner-banner-single .main-block {
  max-width: 480px;
  color: var(--bc-light);
  position: relative;
  z-index: 999;
}

.inner-banner-single .main-block .title-1 {
  margin-bottom: clamp(20px, 2.083vw, 40px);
}

/* ___________________inner banner start_______________________*/


/* ___________________inner our journey page start_______________________*/
.mission-story-approach-section .box-container .box {
  padding-block: 100px;
}

.mission-story-approach-section .box-container .box .left-wrapper .title-2 {
  padding-bottom: 30px;
}

.mission-story-approach-section .box-container .box .left-wrapper .skeleton-btn {
  margin-top: 30px;
}

.mission-story-approach-section .box-container .box .left-wrapper p {
  line-height: 1.67;
}

.mission-story-approach-section .box-container .box .left-wrapper p+p {
  margin-top: 35px;
}

.mission-story-approach-section .box-container .box .left-wrapper ol li {
  font-size: var(--bc-font-size-20);
  line-height: 1.67;
  max-width: 450px;
}

.mission-story-approach-section .box-container .box .left-wrapper ol li+li {
  margin-top: 45px;
}

.mission-story-approach-section .box-container .box .left-wrapper ol li::marker {
  color: var(--bc-dark-green-2);
  font-size: var(--bc-font-size-20);
  font-weight: 700;
}

.mission-story-approach-section .box-container .box .left-wrapper ol li strong {
  display: block;
  padding-bottom: 25px;
}

.mission-story-approach-section .box-container .box .right-wrapper {
    width: 100%;
    aspect-ratio: 1 / 0.653;
    position: sticky;
    z-index: 99;
    top: 130px;
}

.mission-story-approach-section .box-container .box .right-wrapper::before {
  content: '';
  background-color: var(--bc-dark-orange);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: -10px;
  right: -10px;
  border-radius: 10px;
}

.mission-story-approach-section .box-container .box .right-wrapper img {
  border-radius: 10px;
}

.mission-story-approach-section .box-container .box:nth-child(even) .row {
  flex-direction: row-reverse;
}

.mission-story-approach-section .box-container .box:nth-child(even) {
  background-color: var(--bc-light-orange);
}

.mission-story-approach-section .box-container .box:nth-child(even) .right-wrapper::before {
  right: unset;
  left: -10px;
}

.support-brands-section.inner-our-journey {
  background-color: var(--bc-light-orange);
}

.support-brands-section.inner-our-journey .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.support-brands-section.inner-our-journey .single-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-brands-section.inner-our-journey .single-slide img {
  scale: 0.6;
}


.meet-behind-the-camera-section {
  padding-block: 100px;
}

.meet-behind-the-camera-section .title-2 {
  padding-bottom: 37px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.meet-behind-the-camera-section p {
  padding-bottom: 55px;
  max-width: 730px;
  text-align: center;
  margin: 0 auto;
}

.meet-behind-the-camera-section .box-container .box {
  padding: 15px;
  box-shadow: 0px 20px 43px 0px rgba(0, 0, 0, 0.06);
  border: 1px solid #EDEDED;
  border-radius: 20px;
}

.meet-behind-the-camera-section .box-container .box .img-wrapper{
  overflow: hidden;
  border-radius: 10px;
}

.meet-behind-the-camera-section .box-container .box .img-wrapper img {
  transition: 0.3s ease-in-out;
}

.meet-behind-the-camera-section .box-container .box .img-wrapper:hover img{
  transform: scale(1.05);
}

.meet-behind-the-camera-section .box-container .box .content-wrapper {
  padding-top: 15px;
  text-align: center;
}

.meet-behind-the-camera-section .box-container .box .content-wrapper h4 {
  font-size: var(--bc-font-size-22);
  font-weight: 700;
  padding-bottom: 10px;
}

.meet-behind-the-camera-section .box-container .box .content-wrapper h5 {
    font-size: 14px;
    font-weight: 400;
    color: #737373;
    text-transform: uppercase;
    font-family: inherit;
}

.meet-behind-the-camera-section .btn-block {
  display: flex;
  justify-content: center;
}

.meet-behind-the-camera-section .btn-block .primary-btn-2 {
  margin-top: 70px;
}

.cta-section-widget-style-1 {
  background-color: var(--bc-light-orange);
  padding-block: 50px;
}

.cta-section-widget-style-1 .left-wrapper .title-2 {
  padding-bottom: 30px;
  color: var(--bc-dark-green-2);
}

.cta-section-widget-style-1 .left-wrapper p {
  max-width: 420px;
  line-height: 1.67;
}

.cta-section-widget-style-1 .right-wrapper {
  display: flex;
  gap: 30px;
  justify-content: end;
}

.cta-section-widget-style-1 .right-wrapper a {
  flex: 1;
  text-align: center;
}

/* ___________________inner our journey page start_______________________*/


/* ___________________inner case study section start_______________________*/
.three-sequence-content-box-section {
  padding-block: 100px;
  background: url('../images/paper-bg.png') center no-repeat;
  background-size: cover;
}

.three-sequence-content-box-section .box-container {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #BBBBBB;
}

.three-sequence-content-box-section .box-container:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.three-sequence-content-box-section .box-container .box-1 h3 {
  font-size: var(--bc-font-size-36);
  font-weight: 700;
  font-family: var(--bc-secondary-font);
  line-height: 1.2;
  padding-bottom: 32px;
}

.three-sequence-content-box-section .box-container .box-1 p {
  font-size: var(--bc-font-size-20);
  line-height: 1.50;
}

.three-sequence-content-box-section .box-container .box-1 p:has(+ .skeleton-btn-2) {
  padding-bottom: clamp(23px, 2.344vw, 45px);
}

.three-sequence-content-box-section .box-container .box-3 {
  border-radius: 6px;
}

.three-sequence-content-box-section .box-container .box-3 img {
  border-radius: 6px;
}

.three-sequence-content-box-section .box-container .box-3 video {
  height: 100%;
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  object-view-box: 50% 50%;
}

.three-sequence-content-box-section .box-container .box-3 {
  position: relative;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.three-sequence-content-box-section .box-container .box-3::after {
  content: '';
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 31%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease-in-out;
  border-radius: 6px;
}

.three-sequence-content-box-section .box-container .box-3::before {
  content: '\f144';
  font-family: "Font Awesome 6 Pro";
  color: var(--bc-light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  font-size: 50px;
  font-weight: 300;
}

.three-sequence-content-box-section .box-container .box-3:hover::after {
  opacity: 70%;
  transition: 0.3s ease-in-out;
}

/* ___________________inner case study page end_______________________*/


/* ___________________testimonials page start_______________________*/
.working-with-bose-section {
  padding-block: 125px 100px;
}

.working-with-bose-section .main-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 30px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.working-with-bose-section .main-block::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 2;
  opacity: 60%;
}

.working-with-bose-section .main-block .title-5 {
  color: var(--bc-light);
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  z-index: 3;
  position: relative;
  max-width: 22ch;
  min-height: calc(1.3em * 3);
}

.working-with-bose-section .main-block .play-btn-1 {
  position: absolute;
  z-index: 99;
  bottom: 30px;
  left: 23;
}

.video-testimonials-section .primary-btn-2 {
  display: none;
  margin-top: clamp(20px, 1.563vw, 30px);
}

.video-testimonials-section {
  padding-bottom: 100px;
}

.video-testimonials-section .title-4 {
  padding-bottom: 70px;
  text-align: center;
}

.video-testimonials-section .box-container .row {
  --bs-gutter-y: 30px;
}

.video-testimonials-section .box-container .box {
  height: 374px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: inherit;
}

.video-testimonials-section .box-container .box .play-btn-1 {
  position: absolute;
  bottom: 18px;
  left: 24px;
  z-index: 999;
  transition: 0.3s ease-in-out;
  background-color: rgba(70, 70, 70, 0.2);
  padding: 5px 10px;
  backdrop-filter: blur(6px);
  border: 1px solid #626262;
  border-radius: 8px;
}

.video-testimonials-section .box-container .box .play-btn-1 i {
  color: #FF0000;
  font-size: var(--bc-font-size-26);
}

.video-testimonials-section .box-container [class^="col-"] .row .box {
  height: 172px !important;
}

/* .video-testimonials-section .box-container .box::after {
  content: '';
  width: 100%;
  height: 0;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 50%;
  transition: 0.3s ease-in-out;
}

.video-testimonials-section .box-container .box:hover::after {
  height: 100%;
  transition: 0.3s ease-in-out;
} */

.video-testimonials-section .box-container .box img {
  transition: 1s ease-in-out;
}

.video-testimonials-section .box-container .box:hover img {
  transform: scale(1.2);
}

.cta-section-widget-style-2 {
  background-color: var(--bc-light-orange);
  padding-block: 80px 90px;
}

.cta-section-widget-style-2 .title-2 {
  text-align: center;
  padding-bottom: 32px;
}

.cta-section-widget-style-2 p {
  padding-bottom: 35px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.cta-section-widget-style-2 .btn-block {
  display: flex;
  justify-content: center;
}

/* ___________________testimonials page end_______________________*/


/* ___________________contacts page start_______________________*/
.quick-contact-details-section {
  padding-block: 100px;
}

.quick-contact-details-section .title-4 {
  color: var(--bc-dark-green-2);
  padding-bottom: 65px;
  max-width: 330px;
}

.quick-contact-details-section .box-container .row {
  --bs-gutter-y: 50px;
}

.quick-contact-details-section .box-container .box h4 {
  color: var(--bc-dark-orange);
  font-size: var(--bc-font-size-20);
  font-weight: 700;
}

.quick-contact-details-section .box-container .box a {
  color: var(--bc-black);
  font-size: var(--bc-font-size-20);
  font-weight: 700;
  transition: 0.3s ease-in-out;
}

.quick-contact-details-section .box-container .box a[href]:hover {
  color: var(--bc-dark-orange);
  transition: 0.3s ease-in-out;
}

.quick-contact-details-section .map iframe {
  height: 100% !important;
  width: 100% !important;
  border-radius: 10px;
}

.quick-contact-details-section .map {
  height: 100%;
  position: relative;
  z-index: 99;
}

.quick-contact-details-section .map::after {
  content: '';
  height: 100%;
  width: 100%;
  background-color: var(--bc-dark-orange);
  position: absolute;
  bottom: -10px;
  right: -15px;
  border-radius: 10px;
  z-index: -1;
}

.tell-us-project-section {
  padding-block: clamp(45px, 5.208vw, 100px);
  background-color: var(--bc-light-orange);
}

.tell-us-project-section .left-wrapper .title-2 {
  color: var(--bc-dark-green-2);
  padding-bottom: clamp(25px, 2.604vw, 50px);
}

.tell-us-project-section .left-wrapper .img-wrapper {
  position: relative;
  z-index: 99;
}

.tell-us-project-section .left-wrapper .img-wrapper::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: -14px;
  left: -14px;
  background-color: var(--bc-dark-orange);
  border-radius: 10px;
  z-index: -1;
}

.tell-us-project-section .left-wrapper .img-wrapper img {
  border-radius: 10px;
}

.tell-us-project-section .form-wrapper .row {
  --bs-gutter-y: 25px;
}

.tell-us-project-section .form-wrapper label {
  color: var(--bc-dark-green-2);
  font-size: 17px;
  margin-bottom: 15px;
}

.tell-us-project-section .form-wrapper .form-control {
  padding: 20px;
  background-color: transparent;
  border: 1px solid var(--bc-dark-green-2);
}

.tell-us-project-section .form-wrapper .form-control::placeholder {
  color: var(--bc-dark-green-2);
  opacity: 50%;
}

.tell-us-project-section .form-wrapper .form-control:focus {
  box-shadow: none;
}

.tell-us-project-section .form-wrapper .primary-btn-2 {
  border: none;
  margin-bottom: 22px;
}

.tell-us-project-section .form-wrapper [class^="col-"]:has(.primary-btn-2) {
  display: flex;
  justify-content: end;
}

.tell-us-project-section .form-wrapper p:not(:has(label)) {
  text-align: center;
  font-size: var(--bc-font-size-15);
  font-style: italic;
}

.tell-us-project-section .form-wrapper textarea {
  max-height: 120px;
}

.cta-section-widget-style-3 {
  padding-block: 70px;
}

.cta-section-widget-style-3 .main-block .title-2 {
  color: var(--bc-dark-green-2);
  padding-bottom: 0;
}

.cta-section-widget-style-3 .main-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-section-widget-style-3 .main-block ul {
  display: flex;
  gap: 26px;
}

.cta-section-widget-style-3 .main-block ul li a {
  background-color: var(--bc-dark-orange);
  width: 66px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}

.cta-section-widget-style-3 .main-block ul li a:hover {
  transform: translateY(-3px);
  background-color: var(--bc-dark-green);
  color: var(--bc-dark-orange);
  transition: 0.3s ease-in-out;
}

.cta-section-widget-style-3 .main-block ul li a:hover i {
  color: var(--bc-light);
  transition: 0.3s ease-in-out;
}

.cta-section-widget-style-3 .main-block ul li a i {
  color: var(--bc-dark-green-2);
  font-size: 25px;
}

/* ___________________contacts page end_______________________*/


/* ___________________blogs page start_______________________*/
.multi-blogs-section {
  padding-block: clamp(50px, 5.208vw, 100px);
}

.multi-blogs-section .main-block .title-2 {
  padding-bottom: 75px;
}

.multi-blogs-section .main-block .box-container .row {
  --bs-gutter-y: 30px;
}

.multi-blogs-section .main-block .box-container .box {
  border-radius: 8px;
  border: 1px solid #E7E7E7;
  overflow: hidden;
}

.multi-blogs-section .main-block .box-container .box .img-wrapper {
  height: 300px;
}

.multi-blogs-section .main-block .box-container .box .content-wrapper {
  padding: 30px 20px 20px;
  background-color: var(--bc-light);
}

.multi-blogs-section .main-block .box-container .box .content-wrapper h4 {
  font-size: var(--bc-font-size-22);
  padding-bottom: 15px;
  font-family: var(--bc-secondary-font);
  color: var(--bc-dark-green);
  font-weight: 700;
  line-height: 1.45;
}

.multi-blogs-section .main-block .box-container .box .content-wrapper h5 {
  font-size: var(--bc-font-size-14);
  padding-bottom: 30px;
  color: var(--bc-dark-green);
  line-height: 1.2;
}

.multi-blogs-section .main-block .box-container .box .content-wrapper p {
  font-size: var(--bc-font-size-16);
  padding-bottom: 30px;
  color: var(--bc-dark-green);
  line-height: 1.63;
}

.multi-blogs-section .main-block .box-container .box .content-wrapper a {
  background-color: var(--bc-dark-green);
}

.multi-blogs-section .main-block .pagination {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 100px;
}

.multi-blogs-section .main-block .pagination button {
  width: 40px;
  aspect-ratio: 1/1;
  border: 1px solid #CDCDCD;
  border-radius: 2px;
  background-color: var(--bc-light);
}

.multi-blogs-section .main-block .pagination button.active {
  background-color: var(--bc-dark-green);
  color: var(--bc-light);
}

/* ___________________blogs page end_______________________*/


/* ___________________single blog page start_______________________*/
.single-blogs-section {
  padding-block: 130px 100px;
  background: url('../images/paper-bg.png') no-repeat center;
  background-size: cover;
  background-position: center;
}

.single-blogs-section .blogs-content-wrapper {
  font-size: var(--bc-font-size-18);
  line-height: 1.42;
}

.single-blogs-section .blogs-content-wrapper ul li+li {
  padding-top: 20px;
}

.single-blogs-section .blogs-content-wrapper h3 {
  padding-bottom: 30px;
}

.single-blogs-section .blogs-content-wrapper ul,
.single-blogs-section .blogs-content-wrapper p {
  padding-bottom: 40px;
  margin: 0;
}

.single-blogs-section .blogs-content-wrapper h3 {
  font-weight: 700;
}

.single-blogs-section .blogs-content-wrapper ul {
  padding-bottom: 50px;
}

.single-blogs-section .blogs-content-wrapper i {
  font-weight: 500;
}

.single-blogs-section .blogs-content-wrapper ul li::before {
  content: '—';
  margin-right: 10px;
}

.single-blogs-section .side-bar {
  position: sticky;
  top: 0;
}

.single-blogs-section .side-bar .search {
  padding-bottom: 35px;
}

.single-blogs-section .side-bar .title-6 {
  padding-bottom: 26px;
  border-bottom: 1px solid #E7E7E7;
}

.single-blogs-section .side-bar ul li h4 {
  font-size: var(--bc-font-size-24);
  font-family: var(--bc-secondary-font);
  line-height: 1.25;
  font-weight: 700;
  padding-bottom: 30px;
}

.single-blogs-section .side-bar ul li {
  padding-block: 30px;
  border-bottom: 1px solid #E7E7E7;
}

.single-blogs-section .side-bar ul li p {
  font-size: var(--bc-font-size-16);
  line-height: 1.63;
  padding-bottom: 30px;
}

.single-blogs-section .side-bar ul li .skeleton-btn {
  font-weight: 700;
}

.cta-section-widget-style-4 {
  padding-block: 80px;
  background-color: var(--bc-light-orange);
  text-align: center;
}

.cta-section-widget-style-4 .title-4 {
  color: var(--bc-dark-green-2);
  padding-bottom: 30px;
}

.cta-section-widget-style-4 p {
  padding-bottom: 45px;
}

.cta-section-widget-style-4 .btn-block {
  display: flex;
  gap: clamp(15px, 1.563vw, 30px);
  max-width: 580px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.cta-section-widget-style-4 .btn-block a {
  flex: 1;
}

/* ___________________single blog page end_______________________*/


/* ___________________faq-page-main-section start_______________________*/
.faq-page-main-section {
  padding-block: clamp(45px, 5.208vw, 100px);
}

.faq-page-main-section .accordion,
.accordion-item,
.accordion-body {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding-inline: 0;
}

.faq-page-main-section .accordion-button {
  padding-inline: 0;
  background-color: transparent !important;
  border: none !important;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125) !important;
  font-size: var(--bc-font-size-30);
  font-weight: 700;
}

.faq-page-main-section .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: inherit !important;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125) !important;
}

.faq-page-main-section .accordion-button:focus,
.accordion-button:active,
.accordion-button:focus-visible {
  outline: none !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125) !important;
}

.faq-page-main-section .accordion-button::after {
  background-image: var(--bs-accordion-btn-icon) !important;
  background-repeat: no-repeat;
  background-size: 1rem;
  transform: none;
}

.faq-page-main-section .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon) !important;
  transform: rotate(-180deg);
}

.faq-page-main-section .accordion-body {
  font-size: var(--bc-font-size-24);
  line-height: 1.4583;
}

.faq-page-main-section .accordion-item+.accordion-item {
  margin-top: clamp(0px, 3.646vw, 70px);
}

/* ___________________faq-page-main-section end_______________________*/


/* ___________________your-industry-focus-section start_______________________*/
.your-industry-focus-section {
  padding-block: clamp(45px, 5.208vw, 100px);
}

.your-industry-focus-section .row {
  --bs-gutter-y: clamp(20px, 1.563vw, 30px)
}

.your-industry-focus-section .title-3 {
  margin-bottom: clamp(29px, 3.385vw, 65px);
  color: var(--bc-dark-green);
}

.your-industry-focus-section .box {
  height: 100%;
  background-color: var(--bc-light-orange);
  position: relative;
  padding: clamp(20px, 2.083vw, 40px) clamp(18px, 1.823vw, 35px);
  box-shadow: -6.364px 6.364px 0px 0px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

.your-industry-focus-section .box h4 {
  font-size: var(--bc-font-size-32);
  font-weight: 700;
  font-family: var(--bc-secondary-font);
  margin-bottom: clamp(15px, 1.563vw, 30px);
  color: var(--bc-dark-green);
}

.your-industry-focus-section .box p {
  font-size: var(--bc-font-size-24);
  line-height: 1.6667;
}

.your-industry-focus-section .box .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 69.93%;
  opacity: 3%;
}

.your-industry-focus-section .box .icon img {
  width: auto;
  height: 100%;
}

/* ___________________your-industry-focus-section end_______________________*/


/* ___________________why-choose-a-specialist-section start_______________________*/
.why-choose-a-specialist-section {
  padding-bottom: clamp(45px, 5.208vw, 100px);
}

.why-choose-a-specialist-section .row {
  --bs-gutter-y: clamp(20px, 1.563vw, 30px)
}

.why-choose-a-specialist-section .title-4 {
  margin-bottom: clamp(23px, 2.344vw, 45px);
}

.why-choose-a-specialist-section .left-block {
  border-radius: 7px;
  overflow: hidden;
  height: 100%;
}

.why-choose-a-specialist-section .right-block ul li+li {
  margin-top: clamp(15px, 3.125vw, 60px);
}

.why-choose-a-specialist-section .right-block ul li {
  font-size: var(--bc-font-size-24);
  line-height: 1.6667;
  padding-left: 47px;
  position: relative;
}

.why-choose-a-specialist-section .right-block ul li::before {
  content: '\f058';
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  left: 0;
  top: clamp(0, 0.104vw, 2px);
  font-size: 26px;
  color: #008A4F;
}

/* ___________________why-choose-a-specialist-section end_______________________*/


/* three-steps-plan-section */

.three-steps-plan-section {
  padding-block: clamp(45px, 5.208vw, 100px);
}

.three-steps-plan-section .row {
  --bs-gutter-y: clamp(20px, 1.563vw, 30px)
}

.three-steps-plan-section .title-5 {
  margin-bottom: clamp(29px, 3.385vw, 65px);
  color: var(--bc-dark-green);
}

.three-steps-plan-section .block {
  position: relative;
  background-color: var(--bc-light-orange);
  padding: clamp(20px, 2.083vw, 40px);
  border-radius: 6px;
  box-shadow: -6.364px 6.364px 0px 0px rgba(0, 0, 0, 0.08);
  height: 253px;
}

.three-steps-plan-section .block::after {
  content: attr(data-number);
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 10%;
  font-family: "Poppins", sans-serif;
  font-size: clamp(80px, 10.417vw, 200px);
  line-height: 0.7;
  font-weight: 800;
}

.three-steps-plan-section .block h3 {
  font-size: var(--bc-font-size-32);
  font-weight: 700;
  font-family: var(--bc-secondary-font);
  margin-bottom: clamp(15px, 1.563vw, 30px);
  color: var(--bc-dark-green);
}

.three-steps-plan-section .block p {
  font-size: var(--bc-font-size-20);
  line-height: 1.6667;
}

/* ___________________widgets overwrites here_______________________*/
.video-testimonials-section.home {
  padding-block: clamp(45px, 5.208vw, 100px);
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.tell-us-project-section.style-2 {
  background-color: initial;
}

.tell-us-project-section.style-2 .left-wrapper .img-wrapper::after {
  display: none;
}

.tell-us-project-section.style-2 .left-wrapper .img-wrapper {
  box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.18);
}

.tell-us-project-section.style-2 .form-wrapper .form-control {
  background-color: var(--bc-light);
}


.inner-banner.search-page .title-1 {
  padding-bottom: clamp(15px, 1.563vw, 30px);
}

.wpcf7-submit.primary-btn-2 {
  padding: clamp(15px, 1.146vw, 22px) clamp(21px, 1.563vw, 30px) !important;
}

.wpcf7-spinner {
  position: absolute;
}

/* changes-11-06-2025 */
.whats-brands-engage-section .box-item {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;
  padding: clamp(14px, 0.781vw, 15px);
  border-radius: 5px;
}

/* changes-11-11-2025 */
.left-content-right-list-widget .right-content-wrapper ul li p,
.got-purpose-section .right-content-wrapper ul li p {
  padding-bottom: 0 !important;
}




#rjKHuUAk5nSsFWN3A0Xz_1762830792972 {
  height: 765px;
}