/********************Header********************************/
header#Header {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 1;
}

/********************HeroBanner****************************/
section.HeroBanner {
  background-size: cover;
  background-position: center;
  min-height: 870px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ensures video does not overflow its container */
  position: relative;
}
section.HeroBanner video {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1; /* Ensures video is behind other content */
  width: 100%;
}
section.HeroBanner .bnr-caption {
  max-width: 50%;
}
@media only screen and (min-width: 1900px)  {
section.HeroBanner .bnr-caption {
    max-width: 42%;
}}
section.HeroBanner .bnr-caption h1 {
  background: linear-gradient(270deg, #3b8df7 0%, #3b8df7 59%, #00ff84 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.HeroBanner .bnr-caption h4 {
  font-family: var(--theme-body-font);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.688rem;
  color: var(--theme-color-light);
}

/********************Services*****************************/
section.Services {
  color: var(--theme-color-light);
}
section.Services.my-6 {
  margin-top: 6.875rem;
  margin-bottom: 9rem;
}
section.Services.my-6 h1 {
  background: linear-gradient(270deg, #3b8df7 0%, #3b8df7 59%, #00ff84 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.Services.my-6 h4.top-text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  color: var(--theme-color-light);
}
section.Services.my-6 .custom-card {
  border-radius: 40px;
  border: 1px solid var(--theme-color-light);
  padding: 30px;
}
section.Services.my-6 .custom-card h4 {
  font-weight: 500;
  line-height: 1.563rem;
}
section.Services.my-6 .custom-card p {
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.438rem;
}
section.Services.my-6 .custom-card .gradient_digit {
  background: linear-gradient(215.11deg, #00ff84 7.08%, #3b8df7 51.91%, #3b8df7 90.11%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: -27%;
}

/********************Customer Journeys*******************/
section.MarketingStrategy h1 {
  background: linear-gradient(270deg, #3b8df7 0%, #3b8df7 59%, #00ff84 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.MarketingStrategy h4.top-text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  color: var(--theme-color-light);
}
section.MarketingStrategy .strategies:nth-of-type(even) {
  margin-top: 5.188rem;
  margin-bottom: 5.188rem;
}
section.MarketingStrategy .strategies:nth-of-type(1) {
  padding-top: 5.188rem;
}
section.MarketingStrategy .strategies .sub-heading {
  font-weight: 700;
  line-height: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--theme-color-info);
}
section.MarketingStrategy .strategies h3 {
  font-weight: 500;
  line-height: 2.188rem;
  color: var(--theme-color-light);
}
section.MarketingStrategy .strategies ul li {
  display: flex;
  -moz-column-gap: 2.3rem;
       column-gap: 2.3rem;
}
section.MarketingStrategy .strategies ul li::before {
  content: "";
  content: "";
  background-image: url(../images/TickMark.svg);
  display: block;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  flex: none;
  margin-top: 0.2rem;
}
section.MarketingStrategy .strategies ul li:not(:last-child) {
  margin-bottom: 1.2rem;
}
section.MarketingStrategy .strategies .thumbnail {
  position: relative;
}
section.MarketingStrategy .strategies .thumbnail::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: 0;
  top: 50%;
  background: var(--theme-color-success);
  filter: blur(187px);
  z-index: -1;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/********************footer******************************/
footer#Footer h4 {
  background: linear-gradient(270deg, #3b8df7 52%, #00ff84 50%, #00ff84 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
footer#Footer .outer-flex {
  display: flex;
  justify-content: center;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
}
footer#Footer .outer-flex .inner-flex {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
footer#Footer .outer-flex .inner-flex span {
  font-weight: 700;
  color: var(--theme-color-light);
}
footer#Footer .outer-flex a {
  color: var(--theme-color-light);
}
footer#Footer .outer-flex a:hover {
  color: var(--theme-color-info);
}
footer#Footer .copyright {
  font-size: 0.938rem;
  line-height: 1rem;
  letter-spacing: 0.5px;
  border-top: 1px solid var(--theme-color-border);
  padding-top: 2rem;
}

/*******************contact*****************************/
section.contact {
  position: relative;
  overflow: hidden;
}
section.contact.py-6 {
  padding-top: 9.375rem;
  padding-bottom: 6.25rem;
}
section.contact.py-6 h1 {
  background: linear-gradient(270deg, #3b8df7 0%, #3b8df7 59%, #00ff84 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.contact.py-6 h4 {
  font-size: 1.188rem;
  font-weight: 400;
  line-height: 1.813rem;
}
section.contact.py-6 h4.px-6 {
  padding-left: 380px;
  padding-right: 380px;
}
section.contact.py-6 .top-imges-flex {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
section.contact.py-6 .bottom-imges-flex {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  justify-content: center;
}
section.contact::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 170px;
  bottom: 0;
  background: var(--theme-color-info);
  filter: blur(95px);
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
section.contact .contact-form-box {
  overflow: hidden;
  margin: 0 auto;
  width: 85%;
  background: #f9fafc;
  padding: 40px;
  border-radius: 8px;
}
section.contact .contact-form-box {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  background: transparent;
  padding: 40px;
  border-radius: 8px;
}
section.contact .contact-form-box .input-box input,
section.contact .input-box select {
  background: none;
  border: none;
  border-bottom: 1px solid var(--theme-color-light);
  border-radius: 0;
  margin-bottom: 38px;
  outline: none;
}
section.contact select {
  background: transparent;
}
section.contact .contact-form-box input#code {
  color: var(--theme-color-light);
}
section.contact option:not(:checked) {
  background-color: #fff;
  color: var(--theme-color-dark) !important;
}
section.contact .contact-form-box input[type=submit] {
  cursor: pointer;
  margin-top: 2rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
section.contact .contact-form-box input[type=text] {
  color: var(--theme-color-light);
  width: 100%;
  outline: none;
}
section.contact .contact-form-box input[type=number] {
  color: var(--theme-color-light);
  width: 100%;
  outline: none;
}
section.contact ::-moz-placeholder {
  color: var(--theme-color-light);
}
section.contact ::placeholder {
  color: var(--theme-color-light);
}

/*******************CustomerStories*********************/
section.CustomerStories {
  position: relative;
  background-color: var(--theme-color-light);
}
section.CustomerStories h2 {
  background: linear-gradient(270deg, #00ff84 0%, #3b8df7 70%, #3b8df7 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.CustomerStories .heading {
  font-size: 1.438rem;
  font-weight: 500;
  line-height: 2.5rem;
  color: var(--theme-color-dark);
}
section.CustomerStories p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.313rem;
  color: var(--theme-color-dark);
}
section.CustomerStories ul {
  padding: 0;
  margin: 0;
}
section.CustomerStories .carousel-indicators {
  margin-bottom: 3rem;
}
section.CustomerStories .custom-slide-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.CustomerStories .carousel-indicators.custom-image li {
  width: 100%;
  height: 100%;
  text-indent: 0;
  opacity: 1;
  margin: 0 5px;
}
section.CustomerStories .carousel-indicators.custom-image li span img {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
section.CustomerStories ol.carousel-indicators.custom-image li {
  display: inline-block;
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
}
section.CustomerStories ol.carousel-indicators.custom-image li.active::after {
  content: "" !important;
  position: absolute !important;
  height: 15px !important;
  width: 15px !important;
  border: 1px solid var(--theme-color-grey-x) !important;
  border-top: none !important;
  border-left: none !important;
  top: 119px !important;
  left: 50% !important;
  background-color: #fff;
  transform: rotate(45deg);
}
section.CustomerStories ol.carousel-indicators.custom-image {
  text-align: center;
  position: relative;
  margin-right: 0;
  margin-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  border-bottom: 1px solid var(--theme-color-grey-x);
}
section.CustomerStories .carousel-item .description h6 {
  font-size: 23px;
  font-weight: 500;
  line-height: 30px;
  color: var(--theme-color-dark);
}
section.CustomerStories .carousel-item .description p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.313rem;
}
section.CustomerStories .space-left {
  padding-left: 8rem;
}
section.CustomerStories .carousel-control-prev-icon {
  background-image: url(../images/left-arrow.svg);
  width: 1.4rem !important;
  height: 1.4rem !important;
}
section.CustomerStories .carousel-control-next-icon {
  background-image: url(../images/right-arrow.svg);
  width: 1.4rem !important;
  height: 1.4rem !important;
}
section.CustomerStories .carousel-control-next,
section.CustomerStories .carousel-control-prev {
  opacity: unset !important;
  cursor: pointer;
}
section.CustomerStories .carousel-control-prev {
  left: -100px;
  top: 50%;
}
section.CustomerStories .carousel-control-next {
  right: -100px;
  top: 50%;
}
section.CustomerStories .bottom-custom-img img {
  display: block;
  position: absolute;
  bottom: 0px;
}
section.CustomerStories .top-custom-img img {
  display: block;
  position: absolute;
  top: 0px;
}
section.CustomerStories .container {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
section.CustomerStories .outer-flex {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
section.CustomerStories .outer-flex .custom-circle-bg {
  width: 105px;
  height: 105px;
  display: block;
  background-color: var(--theme-color-info);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
section.CustomerStories .outer-flex .custom-circle-bg span {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.813rem;
  letter-spacing: 0em;
  color: var(--theme-color-light);
}
section.CustomerStories .outer-flex .text-custom {
  font-size: 1.188rem;
  font-weight: 700;
  line-height: 1.813rem;
  color: var(--theme-color-info);
}
section.CustomerStories .outer-flex .arrow-bg {
  width: 30px;
  height: 30px;
  background: var(--theme-color-light);
  display: block;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  position: absolute;
  top: 0;
  right: 0;
}

select {
  color: #fff;
}

option:not(first-child) {
  color: #000;
}

@media only screen and (min-width: 1300px) {
  section.HeroBanner {
    min-height: 750px !important;
  }
  section.HeroBanner .bnr-caption {
    position: absolute;
    top: 25%;
  }
  section.HeroBanner video {
    top: 55% !important;
  }
}/*# sourceMappingURL=style.css.map */