/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */

/* Check fonts.css file */

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Google Font */
  --lemon-sans-next: 'Lemon Sans Next', sans-serif;
  --final-six: 'FinalSix', sans-serif;
  --oscine: 'Oscine', sans-serif;

  /* Color Palette */
  --white: #fff;
  --light-white: #f9f9f7;
  --black: #000;
  --primary: #ff671f;
  --secondary: #6c1d45;
  --dark: #434343;
  --purple: #711784;
  --darkpurple: #671E75;
  --lightorange: #FF9E1B;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  color: var(--black);
  font-size: 16px;
  font-family: var(--lemon-sans-next);
  font-weight: 400;
  line-height: normal;
  background-color: var(--light-white);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
section,
.section {
  position: relative;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
a,
button {
  outline: none;
  box-shadow: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
button {
  padding: 0;
  border: none;
  background: unset;
}
ol,
ul {
  margin: 0;
  padding: 0;
}
ol li,
ul li {
  list-style: none;
}
img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
  outline: none;
  box-shadow: none;
}

*+address,
*+dl,
*+fieldset,
*+figure,
*+ol,
*+p,
*+pre,
*+ul {
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--white);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--white);
  font-size: 16px;
  opacity: 1;
}
/* Global Colors */
.color-primary {
  color: var(--primary);
}
.color-white {
  color: var(--white);
}
.color-dark {
  color: var(--dark);
}
.grecaptcha-badge { 
    visibility: hidden !important;
}
/* Button CSS Start */
.btn {
  color: var(--primary);
  font-family: var(--lemon-sans-next);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.btn--primary,
.btn--secondary {
  color: var(--white);
  padding: 18px 30px;
  border-radius: 200px;
}

.btn--primary {
  background-color: var(--primary);
}

.btn--secondary {
  background-color: var(--secondary);
}

.btn--light {
  color: #fff;
}

.btn:hover {
  color: var(--dark);
}

.btn--primary:hover {
  color: var(--white);
  background-color: var(--secondary);
}

.btn--secondary:hover {
  color: var(--white);
  background-color: var(--primary);
}
body:not(.home--page):not(.contact--page) .main__title {
  color:var(--darkpurple);
  text-shadow: none;
}
body.contact--page .main__title {
  color:var(--lightorange);
}
/* Button Animations */
.btn__icon {
  position: relative;
  width: 20px;
  height: 20px;
  overflow: hidden;
  flex: 0 0 auto;
}

.arrowAnimation .arrowAnimation__icon {
  max-width: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.btn:hover .arrowAnimation .arrowAnimation__icon {
  animation: arrowSlide 0.4s ease-in-out forwards;
}

@keyframes arrowSlide {
  0% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translateX(100%) translateY(-50%);
    opacity: 0;
  }

  51% {
    transform: translateX(-100%) translateY(-50%);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

/* Button CSS End */

/* Reusable CSS Start */
.negative20 { 
  margin-bottom: -20px;
}
.negative40 { 
  margin-bottom: -40px;
}
.negative60 { 
  margin-bottom: -60px;
}
.ff-lemon-sans-next {
  font-family: var(--lemon-sans-next);
}

.ff-final-six {
  font-family: var(--final-six);
}

.ff-oscine {
  font-family: var(--oscine);
}

.transition {
  transition: all 0.3s ease-in-out;
}

.transition-2 {
  transition: all 0.5s ease-in-out;
}

.content-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}

.common-text {
  color: var(--dark);
  line-height: 1.334;
}

/* Reusable CSS End */
.navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-toggle::after {
  display: none;
  content: none;
}
.header-overlay-area {
  position: relative;
  z-index: 10;
}

.dropdown-backdrop {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;   
  background: rgba(0,0,0,0.70); 
  z-index: 1040;
  display: none;
  transition: opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}
.dropdown-backdrop.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
/* Bootstrap Customized CSS Start */
.fs-1 {
  font-size: 28px !important;
  line-height: 1.23;
  letter-spacing: 7.28px;
}
.fs-2 {
  font-size: 24px !important;
  line-height: 1.25;
  letter-spacing: 0.5vw;
}
.fs-3 {
  font-size: 24px !important;
  line-height: 1.1;
  letter-spacing: 0.5625vw;
}
.fs-24 {
  font-size: 16px !important;
  line-height: 1.1;
  letter-spacing: 0;
}
.fs-27 {
  font-size: 18px !important;
  line-height: 1.1;
  letter-spacing: 0;
}
.fs-30 { 
  font-size: 19px !important;
  line-height: 1.1;
  letter-spacing: 0;
}
.fs-32 {
  font-size: 20px !important;
  line-height: 1.1;
  letter-spacing: 0;
}
.fs-36 {
  font-size: 36px !important;
  line-height: 1.1;
  letter-spacing: 0.28125vw;
}
.fs-36-2 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
}
.fs-43 {
  font-size: 24px !important;
  line-height: 1.35;
  letter-spacing: 0.625vw;
}
.ff-46  {
  font-size: 30px !important;
  line-height: 1.2;
  letter-spacing: 0;
}
.fs-70 {
  font-size: 70px !important;
  line-height: 1.22;
  letter-spacing: 1.0208vw;
}
.ls-0 {
  letter-spacing: 0;
}

.text-primary {
  color: var(--primary) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-yellow {
  color: #FF9E1B !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}
/* Bootstrap Customized CSS End */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header--area {
  padding: 10px 0;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.menu--mobile .offcanvas {
  width: 100%;
}
.menu-close-btn svg path {
  fill: var(--lightorange);
}
.nav:has(.nav__sub.is-active) > .nav__item:not(:has(.nav__sub.is-active)),
.nav:has(.nav__sub.is-active) > .nav__item:has(.nav__sub.is-active) .nav__link.has__sub {
  opacity: 0;
  pointer-events: none;
}
.nav__item {
  transition: all 0.5s ease-in-out;
}
.nav__item.is__sub {
    margin-bottom: 20px;
}
.nav:has(.nav__sub.is-active) .nav__link.sub__close {
  text-decoration: underline;
  text-decoration-thickness: 2px;     
  text-underline-offset: 0.35em;       
  text-decoration-color: var(--lightorange); 
}

#prev-icon { 
  fill: var(--white);
    width: clamp(16px, 1.15vw, 22px);
    height: clamp(16px, 1.92vw, 37px);
    margin-left: calc( clamp(-16px, -1.15vw, -22px) + -1.8vw);
    margin-right: 1.5vw;
  position: relative;
  display: flex;
}
.nav,
.nav__sub {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}

.nav {
  position: relative;
  width: 100%;
  overflow: hidden;
  display:block;
  min-height: 100%;
}
.offcanvas.show .dropdown__nav {
  margin-top: 6px;
  padding-top: 30px;
}
.nav__item {
  padding: calc(8px + 0.2vw);
}
.offcanvas-backdrop.show {
    opacity: 0.67;
}
.offcanvas-backdrop {
    background-color: #130910;
}
.nav__link {
font-size: clamp(1rem, 0.1051rem + 4.4743vw, 2.25rem);
  font-family: 'Lemon Sans Next';
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  outline: none;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.nav__sub {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}
.nav__sub.is-active {
  opacity: 1;
  visibility: visible;
    transition: all 0.5s ease-in-out;
    transition-delay: 0.3s;
}
.nav__link:hover {
color:var(--lightorange);
}

.nav__sub .nav__item:not(.is__sub) .nav__link {
  font-weight: 400;
}

.logo {
  max-width: 130px;
  z-index: 99;
}

.menu--mobile .content-bg {
  background-color: rgb(0 0 0 / 50%);
}
.menu--mobile .offcanvas-header {
  padding: 10px 0;
  margin: 0 30px;
}
.menu--mobile .offcanvas-footer {
  padding: 0 0 40px;
  margin: 0 16px;
}
.menu--mobile .menu__search__content {
  display: flex;
  justify-content: center;
}
.menu--mobile .offcanvas-body {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0;
  padding-bottom: 0;
}
.menu__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.menu__link {
  color: var(--white);
  padding: 14px 0;
}
.menu__item:hover .menu__link,
.menu__link[aria-expanded='true'] {
  color: var(--secondary);
}
.collapse__link {
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 0;
  margin: 0 12px;
}
.collapse__link:hover {
  color: var(--secondary);
}
.menu__link[aria-expanded='true'] .menu__link__icon {
  transform: rotate(-180deg);
}
.search-form {
  max-width: 216px;
}
.menu--mobile .search-form {
  max-width: 270px;
  width: 100%;
}
.search-input {
  height: 48px;
  color: var(--white);
  font-weight: 500;
  padding: 12px 28px;
  background-color: transparent;
  border: 1px solid var(--white);
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}
.search-input:focus,
.search-input:not(:placeholder-shown) {
  border-color: rgba(255, 255, 255, 0.7);
}
.search-input::placeholder {
  font-weight: 500;
}
.search-btn {
  max-width: 16px;
  margin-right: 28px;
  margin-top: -1px;
}
/* Header Navigation for Desktop Start */
.header__right,
.header__ul {
  gap: 24px;
}
.header__nav__link {
  color: var(--white);
}
.header__nav__link:hover,
.header__nav__item:hover .header__nav__link {
  color:var(--lightorange);
}
.header__nav__link::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #f5f5f5;
  transition: all 0.3s ease-in-out;
}
.header__nav__item:hover .header__nav__link::after,
.header__nav__item .header__nav__link.active::after {
  width: 100%;
  left: 0;
}

.header__nav__item:hover .header__nav__link::after {
  background-color:var(--lightorange);
}


/* Desktop Sticky Header */
.sticky-header--desktop {
  position: fixed;
  left: 0;
  top: -100%;
  width: 100%;
  z-index: 100;
  box-shadow: 0 3px 36px rgba(0, 0, 0, 0.16);
}
.sticky-header--desktop.active {
  top: 0;
}
.sticky-header__logo {
  max-width: 200px;
}
.sticky-header__right {
  gap: 24px;
}
.sticky-header__visit__btn {
  padding: 24px;
  color: var(--white);
  background-color: var(--secondary);
  font-size: 20px;
}
.sticky-header__visit__btn:hover {
  background-color: var(--primary);
}
.sticky-header__visit__btn span {
  font-weight: 800;
}

/* Desktop Menu */

.menu--desktop .offcanvas {
  transform: none !important;
  background: transparent;
}
.menu--desktop .offcanvas::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}
.menu--desktop .offcanvas-top {
  height: 100vh;
}
.menu-desktop__header {
  max-width: 1920px;
  width: 100%;
}
.menu-desktop-close {
  margin-top: 20px;
  margin-right: 20px;
}
.menu-desktop-close svg {
  max-width: 16px;
}
body.home--page .header__wrapper--desktop {
  padding: 20px 0;
}

body:not(.home--page) .header__wrapper--desktop {
  padding: 0;
}
.menu__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 50px;
  width: max-content;
  opacity: 0;
  visibility: hidden;
}
.header__nav__item:hover .menu__dropdown {
  opacity: 1;
  visibility: visible;
  margin:0;
}
.menu__dropdown::after {
  content: '';
  position: absolute;
  right: -22px;
  bottom: 0;
  width: 1px;
  height: 9999%;
  background-color: #f5f5f5;
}
.dropdown__item {
  padding: 14px 0;
  text-align: right;
}
.dropdown__link {
  position: relative;
  display: inline-block;
  font-weight: 400; 
  color: #fff;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1);
  padding-right: 0px; 
}

.dropdown__link__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(0%) translateX(0);
  opacity: 0;
  transition: opacity 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
  color: var(--lightorange); 
  width:50px;
}

.dropdown__link:hover,
.dropdown__link:focus {
  color: var(--lightorange); 
  transform: translateX(-35px);
  font-weight: 700;
}

.dropdown__link:hover .dropdown__link__arrow,
.dropdown__link:focus .dropdown__link__arrow {
  opacity: 1;
  transform: translateY(-56%) translateX(35px);
}
/* Header Navigation for Desktop End */

/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero--section {
  background-color: var(--secondary);
}
.hero--section::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 26%;
  background: linear-gradient(to top, #08080b 0%, #08080b00 100%);
  z-index: -1;
  pointer-events: none;
}
.hero--section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 26%;
  background: linear-gradient(180deg, rgba(103,30,117,0.6) 0%, rgba(0,0,0,0) 100%);
  mix-blend-mode: multiply;
  z-index: -1;
  pointer-events: none;
}
.hero__bg__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}

.hero__wrapper {
  padding: 24px 0 0;
}
.main__title {
  font-weight: 800;
}
.home--page .main__title {
  text-shadow: 0 3px 35px #000;
}
.hero__para {
  font-size: 18px;
}
.btn--heroTrans {
  color:var(--lightorange);
}
.btn--heroTrans:hover {
  color: var(--white);
}
.hero-contact-btn {
  min-width: 244px;
  aspect-ratio: 27 / 7;
}
.hero-contact-btn::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url('../imgs/icons-objs/contact-text-bg-obj.svg') no-repeat center;
  background-size: 100%;
}

.hero-get-started-btn {
    min-width: 452px;
    aspect-ratio: 452 / 98;
}
.hero-get-started-btn::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url('../imgs/icons-objs/learn-more.svg') no-repeat center;
  background-size: 100%;
}
.chat__box {
  position: fixed;
  bottom:44px;
  right:44px;
  z-index: 9999;
}
.chat__box.hidden {
  display: none;
}
.message-btn {
  width: 44px;
  height: 44px;
  color: var(--white);
  background-color: var(--primary);
  position: absolute;
  top: -40px;
  right: 0px;
  z-index: 1;
}
.message-btn svg {
  max-width: 16px;
}
.message-btn:hover {
  background-color: var(--secondary);
}

/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Explore Section CSS Start */
/* =============================== */
.explore--section {
  padding: 50px 0;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
}

.explore--section::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: url('../imgs/bg-thumbs/explore-bg.jpg');
  background-repeat: no-repeat;
  background-size: 1000px;
  background-position: bottom center;
  z-index: -1;
}

.explore--section.nobg:after {
  background-image: none;
}
.bg-object {
  position: relative;
}

.bg--object::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: url('../imgs/bg-thumbs/bg-results.webp');
  background-repeat: no-repeat;
  background-size: 1000px;
  background-position: bottom center;
  z-index: -1;
}

.section__title--explore {
  max-width: 736px;
}
.testimonial__head .btn {
  color: var(--purple);
}
.explore__slider {
  overflow: visible;
  margin-right: 0px;
}
.explore__thumb {
  padding: 16px;
  border-radius: 16px;
}
.explore__thumb__bg {
  background: url('../imgs/bg-thumbs/explore-thumbs/img-1.jpg') no-repeat top /
    cover;
}
.explore__item--one .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/explore-thumbs/img-1.jpg');
}
.explore__item--two .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/explore-thumbs/img-2.jpg');
}
.explore__item--three .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/explore-thumbs/img-3.jpg');
}
.explore__item--four .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/explore-thumbs/img-4.jpg');
}
.explore__item--five .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/explore-thumbs/img-5.jpg');
}

.whatsets__item--one .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/what-sets-thumbs/img-1.jpg');
}
.whatsets__item--two .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/what-sets-thumbs/img-2.jpg');
}
.whatsets__item--three .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/what-sets-thumbs/img-3.jpg');
}
.whatsets__item--four .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/what-sets-thumbs/img-4.jpg');
}
.whatsets__item--five .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/what-sets-thumbs/img-5.jpg');
}
.whatsets__item--six .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/what-sets-thumbs/img-6.jpg');
}



.wwww__item--one .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/who-we-work-with/img-1.jpg');
}
.wwww__item--two .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/who-we-work-with/img-2.jpg');
}
.wwww__item--three .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/who-we-work-with/img-3.jpg');
}
.wwww__item--four .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/who-we-work-with/img-4.jpg');
}
.wwww__item--five .explore__thumb__bg {
  background-image: url('../imgs/bg-thumbs/who-we-work-with/img-5.jpg');
}


.explore__item:hover .explore__thumb__bg {
  transform: scale(1.05);
}
.explore__thumb {
  height: 336px;
}
.explore__thumb__bg::before,
.explore__thumb__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52%;
  z-index: -1;
  background: linear-gradient(to top, #434343 0%, #43434300 100%);
  opacity: 0.85;
}
.explore__thumb__bg::after {
  height: 100%;
  background: url('../imgs/icons-objs/thumb-blend-obj.png') no-repeat center /
    cover;
  z-index: -2;
  mix-blend-mode: soft-light;
  opacity: 0.45;
}
.explore__content {
  padding: 16px 16px 0;
}
.explore__title {
  font-size: 24px;
}
.explore__text {
  max-width: 348px;
  min-height: 64px;
}
.explore__button .btn {
  letter-spacing: 2px;
  gap: 6px;
}
.explore__slider__buttons {
  gap: 12px;
  position: absolute;
  right: 50px;
}
.clients__slider__buttons {
  gap: 12px;
 }
.explore .swiper-button-next,
.explore .swiper-button-prev {
  position: static;
  width: auto;
  height: auto;
  margin-top: 0;
}
.explore .swiper-button-next::after,
.explore .swiper-button-prev::after {
  display: none;
}
.explore__slide__btn {
  opacity: 1;
  max-width: 24px;
}
.explore__slide__btn:hover {
  opacity: 1;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}
.explore .swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: auto;
  bottom: 0;
  height: 2px;
  border-radius: 10px;
  background-color: #707070;
}
.explore .swiper-pagination-progressbar-fill {
  background-color: var(--primary);
}
/* =============================== */
/* :: 6.0 Explore Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Solutions Section CSS Start */
/* =============================== */
.solutions__head__text {
  max-width: 1080px;
}
.solutions__wrapper__title {
  font-size: 40px;
  color: #b7b7b7;
  opacity: 0.65;
}
.solutions__items__row {
  gap: 16px;
}
.solutions__title {
  font-size: 24px;
}
.solutions__thumb {
  height: 244px;
  border-radius: 16px;
  box-shadow: 0 3px 36px rgba(0, 0, 0, 0.16);
}
.solutions__thumb::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url('../imgs/icons-objs/thumb-blend-obj.png') no-repeat center /
    cover;
  mix-blend-mode: soft-light;
  opacity: 0.45;
}
.solutions__item:hover .solutions__thumb img {
  transform: scale(1.05);
}
.solutions__para {
  max-width: 508px;
}
.aboutintro--section {
  padding-top: 55px;
  padding-bottom: 0px;
}
.aboutintro--section {
  position: relative;
  z-index: 1;
}
.solutions--section {
  padding-bottom: 40px;
}
.solutions--section {
  position: relative;
  z-index: 1;
}
.solutions--section::after {
  background-image: url('../imgs/bg-thumbs/solution-bg-1.jpg'),
    url('../imgs/bg-thumbs/solution-bg-2.webp');
  background-position: top center, bottom center;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  opacity: 0.72;
}

  .why--partner {
    padding:0 140px;
  }

/* =============================== */
/* :: 7.0 Solutions Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Testimonial CSS Start */
/* =============================== */
.testimonial__slide {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.testimonial--section {
  padding: 40px 0px 15vw;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.testimonial--section::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: url('../imgs/bg-thumbs/testimonial-bg.webp');
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.testimonial__head a.btn {
  padding: 0px;
  text-align: start;
  font-size: 18px;
}
.testimonial__head {
  flex-direction: column;
}
.testimonial__slide--bg1 {
  background-color: var(--lightorange);
}
.testimonial__slide--bg2 {
  background-color: #da1c5c;
}
.testimonial__slide--bg3 {
  background-color: #ff671f;
}
.testimonial__slide--bg4 {
  background-color: #671e75;
}

.testimonial__slide {
  padding: 22px 30px;
  border-radius: 20px;
  gap:20px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial__slide-desc p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
}

.testimonial__slide-meta {
  margin-top: 21px;
}

.testimonial__slide-meta h6 {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 4px;
}

.testimonial__slide-meta p {
  color: #fff;
  font-size: 16px;
  font-style: italic;
}
.testimonial__head .explore__slider__buttons {
  position: absolute;
  bottom: 14px;
  right: 0;
}
.testimonial__head .btn {
  font-size:18px;
}
.testimonial__head {
  position: relative;
}
/* =============================== */
/* :: 8.0 Testimonial CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Faq-Section CSS Start */
/* =============================== */

.faq--section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../imgs/bg-thumbs/accordion-bg.webp');
  padding: 40px 0px 20px;
}
.faq__title {
  margin-bottom: 27px;
}
.faq__title h2.section__title {
  color: #fff !important;
}

.customAccordion-item {
  margin-bottom: 20px;
  position: relative;
}

.customAccordion-button {
  width: 100%;
  padding: 13px 55px 13px 20px;
  background: #ffffff;
  border-radius: 44px;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  z-index: 2;
}

.customAccordion-button .title {
  font-family: 'oscine', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 17px;
  color: #ff671f;
  transition: opacity 0.3s ease;
  text-align: start;
}

.customAccordion-button.hide-title .title {
  opacity: 0;
}
.customAccordion-button:not(.active)::after {
  content: '';
  display: inline-block;
  width: 21.53px;
  height: 13.277px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="21.53" height="13.277" viewBox="0 0 21.53 13.277"><path d="M250.765-626.723,240-637.488,242.512-640l8.253,8.253L259.018-640l2.512,2.512Z" transform="translate(-240 640)" fill="%23848484"/></svg>') no-repeat center;
  background-size: contain;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.customAccordion-button .number {
  background: #f7500c;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-family: 'lemon-sans-next', sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.customAccordion-button.hide-title {
  display: none;
}

/* Active number style */
.customAccordion-button.active .number {
  background: #fff;
  color: #f7500c;
  border-color: #f7500c;
}


.customAccordion-panel {
  max-height: 0;
  overflow: hidden;
  color: #333;
  border-radius: 44px;
  background: white;
  transition: max-height 0.5s ease;
}

.customAccordion-panel.open {
  max-height: 500px;
  border-radius: 24px;
}

.customAccordion-content {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.customAccordion-image {
  width: 100%;
  position: relative;
}

.customAccordion-image .number {
  position: absolute;
  top: 13px;
  left: 16px;
  background: #fff;
  color: #f7500c;
  border-radius: 50%;
  font-size: 19px;
  font-family: 'lemon-sans-next', sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.customAccordion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 0px;
}

.customAccordion-text {
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.customAccordion-text h3 {
  color: #f7500c;
  font-family: 'oscine', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px;
  line-height: 1.3em;
}

.customAccordion-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.5em;
  margin: 0 0 10px;
}

.customAccordion-text a {
  color: #f7500c;
  font-weight: bold;
  text-decoration: none;
  font-family: 'oscine', sans-serif;
  font-size: 16px;
  text-align: start;
  padding: 0;
  width: auto;
  justify-content: flex-start;
}

/* =============================== */
/* :: 9.0 Faq-Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Partners CSS Start */
/* =============================== */

.partner--section {
  padding: 40px 0px;
  background-color: #fff;
}

.partner__head h2.section__title span:nth-child(1) {
  color: #ff671f;
}

.partner__head h2.section__title span:nth-child(2) {
  color: #ce0058;
}

.partner__head h2.section__title span:nth-child(3) {
  color: #671e75;
}

.section__head.partner__head h2 {
  margin-bottom: 6px;
}
.partner__head .work__together {
 font-size:24px;
} 

.partner__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 22px;
}

.partner__item {
  flex: 0 0 auto;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}

.partner__item img {
  max-width: 120px;
  filter: grayscale(1);
  transition: all 0.3s ease;
  max-height: 50px;
  opacity: 0.5;
}

.partner__item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.partner__box, .process__box { 
  padding: 20px 15px;
  border-radius: 20px;
  box-shadow: 0px 3px 46px #00000029;
  background-color: #fff;
}

.process__boxes {
  padding-top:40px;
}

.process__box:not(:last-child) {
  margin-bottom: 18px;
}

.process__box h3 {
  font-size:20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.wsua__img {
    margin-left: 0;
    margin-top: 20px;
    height: 100%;
    border-radius: 46px;
}

.icon-img {
  width: 58px;   
  height: 58px;
  object-fit: contain;
  display: block;
}

/* =============================== */
/* :: 10.0 Partners CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 Footer Section CSS Start */
/* =============================== */

.footer {
  background: linear-gradient(180deg, #ff672000 0%, #ff6720 100%),
    url('../imgs/bg-thumbs/footer-bg.webp') no-repeat;
  background-position: 0% 0%;
  background-size: cover; /* or contain, or a specific size */
}
.footer__top {
  padding: 106px 0px 20px;
}

.footer__widget {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}
.footer__widget__sitemap {
  margin-bottom: 28px;
}
.footer__widget__sitemap h6 {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-transform: uppercase;
  letter-spacing: 3.22px;
  margin-bottom: 8px;
}
.footer__widget h6 {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 27px;
  margin-bottom: 8px;
}

.footer__widget ul li a {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  display: block;
  padding: 3px 0px;
}

.footer__widget a {
  font-size: 16px;
  color: #fff;
}

.footer__widget a.link {
  text-decoration: underline;
  font-size: 16px;
  display: block;
  color: #fff;
}

.footer__bottom-menu ul li a {
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  padding: 4px 0px;
  display: block;
}

.footer__bottom-copy p {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 17px;
}

.footer__bottom {
  padding-bottom: 25px;
}
.footer__widget ul li:hover a {
  text-decoration: underline;
}
.footer__widget a:hover {
  text-decoration: underline;
}
.footer__bottom-menu ul li a:hover {
  text-decoration: underline;
}
/* =============================== */
/* :: 11.0 Footer Section CSS End */
/* =============================== */


/* =============================== */
/* :: 12.0 About Us page Started */
/* =============================== */

/* header-css */
.header.header--two {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 99;
  background: transparent;
}

.header.header--two::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to bottom, #671e75ad, transparent);
}

.header.header--two .logo {
  background-color: #fff;
  padding: 8px 8px;
  position: relative;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.header.header--two .logo::after {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 50px;
  content: "";
  background-color: #fff;
}


/* header-css--end */


/* page-hero */
.hero--page {
  aspect-ratio: initial !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 110px 0px 0px;
}

.hero--page::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 85%;
  height: 100%;
  content: "";
  background: linear-gradient(to right, #FF6720, transparent);
}

.hero__text .page__title {
  font-size: 18px;
  font-family: var(--oscine);
  color: #671E75;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  display: block;
}

.hero__text .page__subtitle {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--final-six);
  letter-spacing: 3.04px;
  color: #FFFFFF;
  text-transform: uppercase;
  display: block;
}


.hero--page-contact .hero__para {
  max-width: 620px;
}

/* page-hero--end */


/* trust-area */
.card--trust {
  border: none;
  background: #FFFFFF;
  box-shadow: 0px 3px 46px #00000029;
  border-radius: 20px;
  padding: 16px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: center;
  align-items: center;
  height: 100%;
}

.card--trust .card__icon span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent linear-gradient(62deg, #FF9E1B 0%, #FF6720 23%, #EB3300 48%, #CE0058 74%, #671E75 100%) 0% 0% no-repeat padding-box;
}

.card--trust .card__icon span img {
  max-width: 24px;
}

.card--trust .card__content h3 {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #FF6720;
}
.card--trust .card__content ul {
  padding:20px;
}
.card--trust .card__content li {
  
    list-style: disc;
    list-style-position: outside;
}
/* trust-area---end */

/* sets-area */
.sets--section {
  padding-bottom: 40px;
  mix-blend-mode: multiply;
}

.sets--section.bg--object::after {
  background-position: center 74%;
}

/* sets-area---end */


/* goal--area */
.goal--section {
  padding: 60px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.goal__content h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--final-six);
  font-weight: 800;
}

.invest__content h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--final-six);
  font-weight: 800;
}

.goal__content-text {
  margin-bottom: 12px;
}

.goal__content h5 {
  font-size: 18px;
  margin-bottom: 7px;
}

.invest__content-text p,
.goal__content-text p,
.goal__content-text ul {
  color: #fff;
}

.goal__content-text ul {
    padding: 0 0 0 20px;
    max-width: 400px;
}
.goal__content-text li {
    list-style: disc;
    list-style-position: outside;
    color: #fff;
}

.goal__content-btns {
  flex-wrap: wrap;
}

.goal__content-btns .btn {
  padding: 13px 20px;
  border-radius: 200px;
  font-size: 13px;
  letter-spacing: 2px;
}

/* goal--area--end */

/* dialog--section */
.dialog--section {
  padding: 40px 0px;
}

.dialog__thumb {
  margin-bottom: 20px;
}

.dialog__thumb img {
  max-width: 280px;
}


.dialog__content-text {
  margin-bottom: 10px;
}

.dialog__content-text p {
  font-family: var(--lemon-sans-next);
  font-style: italic;
  font-weight: 500;
  color: #434343;
  font-size: 18px;
  line-height: 26px;
}


.dialog__content-info h4 {
  color: var(--primary);
  font-family: var(--lemon-sans-next);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dialog__content-info p {
  font-size: 16px;
  color: #434343;
  font-family: var(--lemon-sans-next);
}

/* dialog--section --end */

/* Team Section css */

.team--section.bg--object::after {
  background-image: url('../imgs/bg-thumbs/team-bg.png');
}


.teamMember__thumb img {
  max-width: 100%;
  border-radius: 32px;
}

.teamMember__thumb {
  margin-bottom: 10px;
  border-radius: 32px;
  background-color: #fff;
}

.teamMember__content h5 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 3px;
}

.teamMember__content p {
  font-size: 14px;
  color: #434343;
}

.teamMember {
  margin-bottom: 24px;
}

/* Team Section css--end */


/* achievements--section */
.achievements--section {
  padding: 40px 0px 10px;
}

.achievementItem {
  text-align: center;
  margin-bottom: 30px;
}

.achievementItem__thumb {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.achievementItem__thumb img {
  max-width: 100%;
  max-height: 100%;
}


.achievementItem__info p {
  font-size: 13px;
  color: #434343;
}

/* achievements--section--end */





/* =============================== */
/* :: 12.0 About Us page End */
/* =============================== */

/* =============================== */
/* :: 13.0 Content Creation page Start */
/* =============================== */

/* page-hero */

.hero--contentCreation .hero__para {
  max-width: 500px;
}

/* page-hero--end */



/* apart-section */

.apart--section {
  padding: 40px 0px 40px;
}

.apart__header h2 {
  margin-bottom: 11px;
}

.apart__header p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 16px;
}

.apart__header {
  margin-bottom: 25px;
}


.apart__content {
  max-width: 400px;
}

.apart__content .card--trust {
  border-radius: 200px;
  flex-direction: row;
  gap: 10px;
  text-align: start;
  padding: 10px 13px;
  margin-bottom: 10px;
  height: auto;
}

/* apart-section--end */



/* =============================== */
/* :: 13.0 Content Creation page End */
/* =============================== */

/* =============================== */
/* :: 14.0 Solution And marketiong page Start */
/* =============================== */

/* hero-css */

.hero--solution {}


/* hero-css--end */
.section__head p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}

/* Result-section */
.result--section {
  padding: 40px 0px 40px;
}

.result__title {
  margin-bottom: 15px;
}

.result__box {
  border-radius: 12px;
  padding: 20px 20px;
  text-align: start;
  height: 100%;
}

.result__box-text {
  margin-bottom: 20px;
}

.result__box-text p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  font-family: var(--lemon-sans-next);
}

.result__box-bg1 {
  background-color: #FF9E1B;
}

.result__box-bg2 {
  background-color: #DA1C5C;
}

.result__box-info h4 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2px;
  font-family: var(--lemon-sans-next);
}

.result__box-info p {
  color: #fff;
  font-style: italic;
  font-family: var(--lemon-sans-next);
}

.result__bottom {}

.result__bottom h5 {
  color: #FF6720;
  font-weight: bold;
  font-family: var(--oscine);
  margin-bottom: 12px;
}

.result--section.bg--object::after {
  background-position: center center;
  background-size: 100%;
}

.result__wrapp {
  max-width: 1370px;
  margin: 0 auto;
  width: 100%;
}

.section__para {
  font-size: 16px;
  line-height: 22;
}

/* Result-section--end */

/* why-section */

.why--section {
  padding: 40px 0px 40px;
}

.why__accordion .accordion-item {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 46px #00000029;
  border-radius: 20px;
  margin-bottom: 16px;
}

.why__accordion .accordion-button {
  background-color: transparent !important;
  box-shadow: none;
  padding: 13px 18px;
  font-size: 18px;
  line-height: 24px;
  color: #FF671F;
  font-family: var(--oscine);
  font-weight: bold;
}

.why__thamb-img img {
  width: 100%;
  height: 340px;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
}

.why__thamb-img--topSpace {
  margin-top: 54px;
}

.why__accordion .accordion-button::after {
  background-image: url('../imgs/icons-objs/arrow-down.svg');
  background-position: center;
}

.why__accordion .accordion-body {
  padding: 0px 18px 20px;
}

.why__accordion .accordion-body p {
  font-size: 16px;
  line-height: 24px;
}


/* why-section--end */

/* text-Block */

.textBlk--section {
  padding: 40px 0px 40px;
}

.textBlk__content {
  text-align: center;
}

.textBlk__content h2 {
  margin-bottom: 12px;
  text-transform: uppercase;
}

.textBlk__content p {
  margin-bottom: 18px;
}



/* text-Block--end */


/* =============================== */
/* :: 14.0 Solution And marketiong page End */
/* =============================== */




/* ===================================== */
/* :: customers.html Page CSS Start */
/* ===================================== */
/* Custom CSS Start */
.common-border-radius {
  border-radius: 16px;
}

.common-shadow {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.16);
}

.gradient-overlay-bg {
  position: relative;
  z-index: 1;
}

.gradient-overlay-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../imgs/icons-objs/thumb-blend-obj.png') no-repeat center / cover;
  mix-blend-mode: soft-light;
  opacity: 0.85;
}

.gradient-bg-icon-wrap {
  width: 48px;
  height: 48px;
  position: relative;
}

.gbi-border {
  border: 2px solid var(--white);
}

.gradient-bg-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg,
      #ff9e1b 0%,
      #ff6720 25%,
      #eb3300 50%,
      #ce0058 75%,
      #671e75 100%);
  position: relative;
  z-index: 1;
}

.gradient-bg-icon img {
  max-width: 66%;
}

.gradient-bg-icon-border {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1px;
  width: 99999%;
  background-color: #eb3300;
  z-index: -1;
}

/* Custom CSS End */

/* Collaborators Section Start */
.collaborators--section {
  padding: 48px 0;
}

.collaborators__wrapper {
  gap: 18px;
}

.collaborators__item {
  max-width: 313px;
  width: 100%;
}

.collaborators__thumb {
  width: 100%;
  height: 320px;
  transition: all;
  margin-bottom: 8px;
}

.collaborators__thumb:hover .collaborators__thumb__image {
  transform: scale(1.05);
}

.collaborators__title,
.empower__item__title {
  font-size: 24px;
  font-family: var(--oscine);
}

/* Collaborators Section End */

/* Empower Section Start */
.empower--section {
  padding: 48px 0;
}

.empower--section .section__head {
  margin-bottom: 40px;
}

.empower__item__title {
  padding-top: 10px;
}

/* Empower Section End */

/* Choose Section Start */
.choose__wrapper {
  width: 100%;
  min-height: 256px;
  padding: 48px 0;
}

.choose__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 66%;
  height: 100%;
  background: linear-gradient(to left, #71178400 0%, #ff671f 100%);
  opacity: 0.5;
  z-index: -1;
}

.choose__cards__row.g-3 {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 32px;
}

.choose__cards {
  margin-top: -100px;
}

.choose__cards__item {
  height: 100%;
  background-color: var(--white);
  padding: 20px 20px 28px;
}

.choose__cards__title {
  font-size: 24px;
  padding: 16px 0 12px;
}

.choose__cards .gradient-bg-icon-wrap {
  margin-top: -40px;
}

/* Choose Section End */

/* Helping Section Start */
.helping--seciton {
  padding: 48px 0;
}

.helping--seciton .section__head {
  max-width: 1024px;
}

.helping__wrapper {
  padding: 24px 16px;
  background-color: #da1c5c;
}

.helping__content {
  max-width: 1016px;
}

.helping__para {
  font-size: 20px;
  line-height: 1.62;
}

.helping__client__title {
  font-size: 20px;
}

.helping__client__info .helping__client__company {
  font-size: 80%;
}

/* Helping Section End */

/* Join Section Start */
.join--section {
  padding-bottom: 48px;
}

/* Join Section End */
/* =================================== */
/* :: customers.html Page CSS End */
/* =================================== */

/* ======================================== */
/* :: capabilities.html Page CSS Start */
/* ======================================== */
/* Solution Section Start */
.solutions--two {
  padding: 48px 0;
}

.solutions--two::after {
  display: none;
}

.solutions--two .solutions__head__text {
  max-width: 864px;
}

/* Solution Section End */

/* Results Section Start */
.results--section {
  padding: 48px 0 56px;
}

.results--section .section__head {
  max-width: 1184px;
  margin-bottom: 32px;
}

.results__wrapper {
  gap: 32px;
}

.wcu__item {
  max-width: 400px;
}
.results__item {
  max-width: 376px;
}
.iq__item {
  max-width: 190px;
}
.fac_item {
  max-width: 16%;
}

.reuslts__icon {
  max-height: 40px;
}

.reuslts__icon img {
  max-height: inherit;
}

.results__title {
  font-size: 24px;
  padding: 12px 0;
}

/* Results Section End */

/* Showcase Section Start */

.showcase__wrapper {
  box-shadow: 0px 3px 40px #00000029;
}

.showcase__marquee {
  height: 600px;
  overflow: hidden;
  position: relative;
}

.showcase__marquee::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  content: "";
  background-image: linear-gradient(to top, #ffff, #ffffff00);
}

.showcase__inner {
  max-height: 600px;
}

.showcase__item {
  height: 300px;
  padding: 24px;
  margin-bottom: 24px;
}

.showcase__thumb {
  background: url('../imgs/capabilities-page/showcase-item-01.jpg') no-repeat center / cover;
}

.showcase__thumb--two {
  background-image: url(../imgs/capabilities-page/showcase-item-02.jpg);
}

.showcase__thumb--three {
  background-image: url(../imgs/capabilities-page/showcase-item-03.jpg);
}

.showcase__thumb--four {
  background-image: url(../imgs/capabilities-page/showcase-item-04.jpg);
}

.showcase__thumb--five {
  background-image: url(../imgs/capabilities-page/showcase-item-05.jpg);
}

.showcase__thumb--six {
  background-image: url(../imgs/capabilities-page/showcase-item-06.jpg);
}

.showcase__thumb--seven {
  background-image: url(../imgs/capabilities-page/showcase-item-07.jpg);
}

.showcase__thumb::before,
.showcase__thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: -1;
  background: linear-gradient(to top, #434343 0%, #43434300 100%);
  opacity: 0.85;
}

.showcase__thumb::after {
  height: 100%;
  background: url('../imgs/icons-objs/thumb-blend-obj.png') no-repeat center / cover;
  mix-blend-mode: soft-light;
  opacity: 0.6;
}

.showcase__item__title {
  font-size: 24px;
}

/* Showcase Section End */

/* client-love */
.feedback--section {
  padding: 0px 0px 20px;
}

.feedback__wrapper h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 14px;
}

.feeback__main {
  background: #CE0058;
  border-radius: 20px;
  padding: 20px 20px;
  text-align: center;
  color: #fff;
}

.feedback__main-text {
  margin-bottom: 16px;
}

.feedback__main-text p {
  font-weight: bold;
}

.feedback__main-meta h6 {
  font-weight: bold;
  font-size: 16px;
}

.feedback__main-meta h6 span {
  display: block;
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
}


/* client-love--end */



/* ====================================== */
/* :: capabilities.html Page CSS End */
/* ====================================== */

/* =============================== */
/* :: products.html Page CSS Start */
/* =============================== */
.course--seciton {
  padding: 55px 0;
}

.course__card {
  background: linear-gradient(45deg,
      #ff9e1b 0%,
      #ff6720 25%,
      #eb3300 50%,
      #ce0058 75%,
      #671e75 100%);
  margin-bottom: 16px;
}

.course__info {
  padding: 0 20px 16px;
  margin-top: -24px;
}

.course__card .gradient-bg-icon {
  background: var(--primary);
}

.course__title {
  font-size: 24px;
  margin: 16px 0 8px;
}

.course__subhead {
  font-size: 18px;
}

.course__btn {
  min-width: 244px;
  aspect-ratio: 1 / 0.193;
}

.course__btn::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: -1;
  background: url('../imgs/icons-objs/contact-bg-obj.svg') no-repeat center;
  background-size: 100%;
}

.course__featureItem {
  box-shadow: 0px 3px 46px #00000029;
  border-radius: 20px;
  padding: 20px 20px;
  background-color: #fff;
  height: 100%;
}

.course__featureItem h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.course__featureItem p {}

.course__features {
  padding: 40px 0px 0px;
}

.course--form.bg--object::after {
  background-image: url('../imgs/bg-thumbs/products-bg.webp');
}



/* ============================= */
/* :: products.html Page CSS End */
/* ============================= */


/* ============================= */
/* :: Contact Page CSS Start */
/* ============================= */

.contact--section {
  padding: 40px 0px 40px;
}

.contact__title p {
  max-width: 530px;
  font-size: 18px;
  line-height: 24px;
  color: #FF9E1B;
  font-family: var(--oscine);
  font-weight: bold;
}

.contact__map-locations {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}

.location__item {
  padding: 12px 0px;
  border-radius: 20px;
}

.location__item.active {
  padding: 12px 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 3px 45px #00000029;
}

.location__item h5 {
  font-size: 20px;
  color: #CE0058;
  font-weight: bold;
  font-family: var(--oscine);
  margin-bottom: 4px;
}

.location__item p {
  font-size: 16px;
  color: #434343;
  font-family: var(--lemon-sans-next);
}

.location__item a {
  text-decoration: underline;
  font-weight: 500;
  color: #434343;
  font-family: var(--lemon-sans-next);
}

.contact__map-main iframe {
  height: 400px;
}

.contact__form-title {
  background: linear-gradient(45deg, #ff9e1b 0%, #ff6720 25%, #eb3300 50%, #ce0058 75%, #671e75 100%);
  padding: 20px 20px;
}

.contact__form {
  box-shadow: 0px 3px 46px #00000029;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.contact__form-title h3 {
  color: #fff;
  font-size: 16px;
  font-family: var(--osian);
}

.contact__form-wrapper {
  padding: 20px 20px 33px;
  /* jrm */
    margin-bottom: 10em;
}

.contact__input input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #08080B;
  color: #08080B;
}

.contact__input {
  position: relative;
}

.contact__input input:focus~label,
.contact__input input:valid~label {
  top: -4px;
  font-size: 14px;
}

.contact__input label {
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 16px;
  transition: all .3s ease;
  font-family: var(--lemon-sans-next);
  /* new jrm 7/21/25 */
  padding-left: .5em;
}

.contact__input textarea {
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 16px;
  transition: all .3s ease;
  font-family: var(--lemon-sans-next);
  /* new jrm 7/21/25 */
  padding-left: .5em;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #080808;
}
/*animate label - jrm */
.contact__input textarea:focus~label,
.contact__input textarea:valid~label {
  top: -4px;
  font-size: 14px;
}

/* ACCOUNT FOR DARK MODE */

/* Dark mode override - jrm */
@media (prefers-color-scheme: dark) {
  .contact__input input {
    background-color: white !important;
    color: black !important;
    border: 1px solid #444; /* optional: better visibility in dark mode */
  }
  /* new text input area for form */
  .contact__input textarea {
    background-color: white !important;
    color: black !important;
    border: 1px solid #444; /* optional: better visibility in dark mode */
  }

  .contact__input label {
    color: black !important;
    padding-left: .5em;
  }
}

/* END -0- ACCOUNT FOR DARK MODE */

/* ============================= */
/* :: Contact Page CSS End */
/* ============================= */



.achievements_item {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 20px;
}
.achievements_item img {
  margin-bottom: 18px;
}
.achievements_wrapper p {
  font-size:18px;
  text-align:center;
}
.leadership--section {
  padding: 40px 0px 40px;
}
.goals--section, .goal--section, .invest--section {
  padding: 0 0px 20px;
  aspect-ratio: 16 / 9;
  background-color: var(--primary);
  margin-top:40px;
}

  .goals--section .btn.btn--secondary:hover {
    background-color: var(--darkpurple);
  }
.wsua--section {
  padding: 40px 0;
}

.call-to-action--section {
    padding: 0 0 40px;
}
.whychooseus--section {
  padding: 0 0px 20px;
  aspect-ratio: 1920 / 676;
  background-color: transparent;
  margin-top:40px;
}
.singletestimonial--section {
  padding: 40px 0 40px;
}
.singletestimonial--section blockquote {
  padding: 0;
  padding-top:0;
}
.achievements--section{ 
  padding: 40px 0 40px;
}
.achievements_item.award10 img {
  max-width: 460px;
}
.achievements_item img {
  display: block;
  margin: 0 auto;
  width: auto;
  object-fit: contain;
}
.singletestimonial--section .container {
  padding:0;
}
body:not(.home--page) .logo img.home {
  display:none;
}
body.home--page .logo img.interior {
  display:none;
}
.leadership--section::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: url('../imgs/bg-thumbs/leadership-bg.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
.wwww__img h3 {
    font-size: clamp(1.25rem, 1.1125rem + 0.6875vw, 1.9375rem);
    line-height: 1.1;
    margin-top: 20px;
}
.teams--section {
  padding: 40vw 0px 40px;
  margin-top:20px;
}
.teams--section::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: url('../imgs/bg-thumbs/teams-bg.webp');
  background-repeat: no-repeat;
  background-position: 26% 0;
  background-size: 200% auto;
  z-index: -1;
}
.quote--section {
  padding: 40px 0px 40px;
}

.menu-item {
  min-width: 120px;
}


.teams-icons--section h3 {
  line-height: 1.1;
}

.horizontal-line-100vw {
  position: absolute;
  top: 26px; 
  left: 50%;
  width: 100vw;
  height: 3px;
  background: #ff6500;
  transform: translateX(-50%);
  z-index: 0;
}


.menu-item {
  position: relative;
  z-index: 1;
}

.feature-card {
  padding-top: 40px;
  background: #fff;
  box-shadow: 0px 3px 46px #00000029;
  border-radius: 46px;
  border: 2px solid #fff;
  position: relative;
  height:100%;
}
.feature-icon {
    z-index: 3;
    transform: translate(-50%, -50%);
    top: 0;
    position: absolute;
    display: flex;
    left: 50%;
}

.card-body {
    padding: 15px 20px 30px;
}

.card-body p {
    color: #434343;
    font-size: 16px;
    line-height: 20px;
}
.case-studies--section {
  padding: 30px 0;
}
.case-study-card {
  background: transparent linear-gradient(217deg, #671E75 0%, #CE0058 29%, #EB3300 54%, #FF6720 80%, #FF9E1B 100%) 0% 0% no-repeat padding-box;
  border-radius: 46px;
  overflow: hidden !important;
  color: white;
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.case-study-card .card-content {
  padding: 65px;
  width: 42%;
}
.case-study-card .card-content p {
  font-size:24px;
  margin-bottom: 24px;
}

.case-study-card .card-image {
  background-size: cover;
  background-position: center;
  min-height: 220px;
  width: 58%;
}
.why__para {
    font-size: 16px;
}
  
.quote--section blockquote {
  background-color: #DA1C5C;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
}

.quote--section blockquote p {
    margin: 0 auto;
    max-width: 1050px;
    line-height: 1.6;
  }
.call-to-action--section .cta__img {
  padding-right:40px;
}

.contact--box {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 46px #00000029;
  border-radius: 46px;
  opacity: 1;
}
.contact--box-top {
  background: linear-gradient(263deg, #671E75 0%, #CE0058 26%, #EB3300 51%, #FF6720 80%, #FF9E1B 100%);
  padding:20px 30px;
  border-radius: 20px 20px 0 0;
}

.contact--box-bottom {
  padding:30px 30px;
}
.maptabs--section {
  padding: 40px 0;
}
.nav-pills .nav-link {
  padding:24px 0;
}
.nav-pills .nav-link.active {
box-shadow: 0px 3px 46px #00000029;
border-radius: 46px;
  background:#FFF;
  color:unset;
  padding:18px 38px;
}
.address a {
  color:#434343;
  text-decoration: underline;
  font-weight: 500;
}
.nav-pills h4 { 
  color:#CE0058;
}
.nav-pills .address {
  font-size:14px;
}
.nav-link, .nav-link:hover {
  color:#434343;
}
.contact--para {
color:#FF9E1B;
}

.google-maps {
position: relative;
padding-bottom: 70%; 
height: 0;
overflow: hidden;
}

.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}

.btn.load-more { display: none; }