/**************************************************************************************
*********************************** BANNER CSS ***********************************
***************************************************************************************/
.hero-sec {
  padding: 267px 0 230px;
}

.hero-sec-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.hero-sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(
    275.51deg,
    rgba(0, 0, 0, 0) 4.34%,
    rgba(0, 0, 0, 0.78) 46.12%
  );
  width: 100%;
  height: 100%;
}

.hero-banner-wrapper {
  position: relative;
  z-index: 9;
}

.hero-banner-wrapper .banner-content-wrapper {
  max-width: 700px;
}

.hero-banner-wrapper .banner-title {
  background: linear-gradient(
    40deg,
    var(--main-blue) -6%,
    var(--main-blue) 46%,
    var(--main-yellow) 70%
  );
  background-size: 200% auto;
  background-position: left center;
  -webkit-background-clip: text;
  /* filter: brightness(1); */
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  animation: animateGradient 0.8s ease-in-out infinite alternate;
}

@keyframes animateGradient {
  0% {
    /* background-position: 50% -49%; */
    background-position: 50% -22%;
  }

  100% {
    /* background-position: 72% -40%; */
    background-position: 96% -50%;
  }
}

.hero-banner-wrapper .ai-star-wrapper {
  position: absolute;
  bottom: 36px;
  right: -30px;
  animation: aiStarPulse 1.8s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(255, 165, 0, 1));
}

@keyframes aiStarPulse {
  0% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 7px rgba(255, 165, 0, 1));
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
    filter: drop-shadow(0 0 7px rgba(255, 165, 0, 0.3));
  }

  100% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 7px rgba(255, 165, 0, 1));
  }
}

/**************************************************************************************
*********************************** HEADLINE SECTION CSS ******************************
***************************************************************************************/

.headline-sec {
  background-color: var(--primary-color);
  overflow: hidden;
  white-space: nowrap;
  padding: 24px 40px;
}

/* .headline-sec .headline-list-wrapper {
  gap: 44px;
  overflow: auto;
  padding: 24px 40px;
  position: relative;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  transition: all 0.2s;
  will-change: transform;
  user-select: none;
  cursor: pointer;
} */

.headline-sec .headline-list-wrapper {
  animation: scroll 40s linear infinite;
  animation-play-state: running;
}

@media (hover: hover) {
  .headline-sec:hover .headline-list-wrapper {
    animation-play-state: paused !important;
  }
}

.headline-list-wrapper,
.headline-list {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
}

.headline-list {
  flex: 0 0 auto;
}

.headline-list-wrapper .headline-list a span {
  transition: all 0.4s ease-in-out;
}

.headline-list a:hover span {
  color: var(--main-yellow);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/**************************************************************************************
************************************ ABOUT SECTION CSS ********************************
***************************************************************************************/
.about-sec {
  padding-top: 90px;
}

.about-wrapper {
  gap: 50px;
}

.about-wrapper .about-left {
  width: calc((100% - 751px) - 50px);
}

.about-wrapper .about-right {
  width: 751px;
}

.about-desc {
  padding-top: 20px;
  gap: 20px;
}

.growth-countdown-wrapper {
  background-color: var(--third-color);
  padding: 50px;
}

.growth-countdown-wrapper .countdown-card-col .countdow-card {
  padding-bottom: 34px;
}

.growth-countdown-wrapper
  .countdown-card-col:nth-last-child(-n + 2)
  .countdow-card {
  padding-top: 34px;
  padding-bottom: 0px;
  border-top: 1px solid var(--main-text-shade8);
}

.growth-countdown-wrapper .countdown-card-col:nth-child(odd) .countdow-card {
  border-right: 1px solid var(--main-text-shade8);
}

.countdow-card .countdown-text {
  font-size: 70px;
  line-height: 80px;
}

.countdow-card .countdown-title {
  font-size: 24px;
}

.review-main .review-title {
  font-size: 20px;
  line-height: 30px;
}

.review-wrapper {
  gap: 20px;
}

.review-card .review-text {
  font-size: 18px;
  line-height: 24px;
}

.review-card .review-img {
  background-image: url("/wp-content/themes/wedowebapps/assets/images/new-homepage/review-img-new.webp");
  background-position: 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 108px;
  height: 58px;
}

.review-card .review-img.clutch {
  background-position: 0%;
}

.review-card .review-img.google {
  background-position: 33.45%;
}

.review-card .review-img.upwork {
  background-position: 66%;
}

.review-card .review-img.tnc {
  background-position: 100%;
}

/**************************************************************************************
******************************* NEXT-GEN SERVICE SECTION CSS **************************
***************************************************************************************/

.service-sec {
  background-color: #272727cc;
}

.service-wrapper .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.service-card {
  background-color: var(--secondary-color);
  padding: 20px;
  border: 1px solid var(--main-text-shade8);
  transition: all 0.4s ease-in-out;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 0px 8px 2px var(--main-text-shade8);
}

.service-card .service-title {
  gap: 16px;
}

.service-card .service-title img {
  max-width: 60px;
}

.service-card .service-title h3 {
  font-size: 24px;
  line-height: 30px;
}

.service-card .service-desc {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -1.2px;
}

/**************************************************************************************
****************************** MODERN AI SOLUTION SECTION CSS *************************
***************************************************************************************/

.ai-solution-sec {
  /* background-image: url("../../../images/new-homepage/ai-solution-bg.png"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.ai-solution-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.ai-solution-wrapper {
  display: flex;
  gap: 54px;
}

.ai-solution-left {
  width: calc((100% - 564px) - 54px);
}

.ai-solution-right {
  width: 564px;
}

.ai-solution-navslider .slick-list {
  margin-right: -13px;
}

.ai-solution-navslider .slick-track {
  display: flex;
  flex-direction: column;
  width: 100% !important;
}

.ai-solution-navslider .slick-slide {
  width: 100% !important;
}

.ai-solution-navslider .ai-solution-item {
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100% !important;
  margin-bottom: 20px;
  position: relative;
  padding-left: 50px;
}

.ai-solution-navslider .slick-slide:nth-last-child(1) .ai-solution-item {
  margin-bottom: 0;
}

.ai-solution-navslider .ai-solution-item .ai-solution-title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -35px;
  width: 16px;
  height: 16px;
  background-color: #d9d9d9;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
}

.ai-solution-navslider .ai-solution-item::after {
  content: "";
  position: absolute;
  border-left: 1px dashed var(--main-text-shade6);
  width: 1px;
  height: calc(100% + 24px);
  top: 50%;
  left: 24px;
  z-index: -1;
}

.ai-solution-navslider .slick-slide:nth-last-child(1) .ai-solution-item::after {
  display: none;
}

.ai-solution-navslider .ai-solution-item .ai-solution-title::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #828282;
  border-radius: 100%;
  left: -31px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.ai-solution-navslider
  .slick-slide.slick-active.slick-current
  .ai-solution-item
  .ai-solution-title::after {
  transform: scale(1.5);
  border-color: var(--main-blue);
  box-shadow: 0px 0px 11.3px 0px #48baffbd;
}

.ai-solution-navslider
  .slick-slide.slick-active.slick-current
  .ai-solution-title::before {
  transform: scale(1.5);
  background-color: #ffa502;
}

.ai-solution-navslider .ai-solution-title {
  background-color: transparent;
  border: 2px solid var(--main-text-shade6);
  border-radius: 20px;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.ai-solution-navslider .ai-solution-title h3 {
  padding: 20px 26px;
}

.ai-solution-navslider
  .slick-slide.slick-active.slick-current
  .ai-solution-item
  .ai-solution-title {
  background-color: #8eb5cc63;
  border-color: var(--main-blue);
}

/* RIGHT SIDE AI-SOLUTION SLIDER */

.ai-solution-slider,
.ai-solution-slider .slick-list,
.ai-solution-slider .slick-list .slick-track {
  height: 100% !important;
}

.ai-solution-card {
  padding: 20px 30px;
  background: linear-gradient(179.37deg, #063957 -160.8%, #171717 152.38%);
  border: 1px solid var(--main-white);
  gap: 20px;
  height: 100%;
}

.ai-solution-list-wrapper {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin: 0;
}

.ai-solution-list-wrapper li {
  counter-increment: item;
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 24px;
  color: var(--main-text-shade3);
  position: relative;
  padding-left: 30px;
}

.ai-solution-list-wrapper li:nth-last-child(1) {
  padding-bottom: 0;
}

.ai-solution-list-wrapper li::before {
  position: absolute;
  left: 0;
  width: 30px;
  content: counter(item, decimal-leading-zero) ".";
  font-weight: 700;
  color: var(--main-yellow);
  padding-right: 10px;
  font-size: 18px;
  line-height: 24px;
}

/**************************************************************************************
********************************** COMMITMENT SECTION CSS *****************************
***************************************************************************************/
.commitment-wrapper > .commitment-col {
  position: relative;
}

.commitment-wrapper > .commitment-col::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  width: 100%;
  border-bottom: 1px solid transparent;
  background:
    linear-gradient(var(--main-black), var(--main-black)) padding-box,
    linear-gradient(
        90deg,
        rgba(106, 106, 106, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 48.5%,
        rgba(106, 106, 106, 0.2) 100%
      )
      border-box;
}

.commitment-wrapper > .commitment-col:nth-child(2n + 1)::after {
  width: 200%;
}

.commitment-wrapper > .commitment-col:nth-last-child(-n + 2)::after {
  display: none;
}

.commitment-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  width: 1px;
  border-right: 1px solid transparent;
  background:
    linear-gradient(var(--main-black), var(--main-black)) padding-box,
    linear-gradient(
        to bottom,
        rgba(106, 106, 106, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 48.5%,
        rgba(106, 106, 106, 0.2) 100%
      )
      border-box;
}

.commitment-wrapper .commitment-card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 30px 60px 30px;
}

.commitment-wrapper > div:nth-child(2n + 1) .commitment-card {
  padding-left: 0;
}

.commitment-wrapper > div:nth-child(2n + 2) .commitment-card {
  padding-right: 0;
}

.commitment-card .commitment-content {
  gap: 12px;
}

.commitment-card .commitment-img {
  max-width: 68px;
}

/* NUMBER TEXT CSS FOR SOLUTION PAGE */

.commitment-wrapper .commitment-col .commitment-card .commitment-number {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  display: inline-block;
}

.commitment-wrapper
  .commitment-col:nth-child(6n + 1)
  .commitment-card
  .commitment-number {
  color: #b7ea59;
}

.commitment-wrapper
  .commitment-col:nth-child(6n + 2)
  .commitment-card
  .commitment-number {
  color: #be6cff;
}

.commitment-wrapper
  .commitment-col:nth-child(6n + 3)
  .commitment-card
  .commitment-number {
  color: #ff4444;
}

.commitment-wrapper
  .commitment-col:nth-child(6n + 4)
  .commitment-card
  .commitment-number {
  color: #4feaff;
}

.commitment-wrapper
  .commitment-col:nth-child(6n + 5)
  .commitment-card
  .commitment-number {
  color: #edc73f;
}

.commitment-wrapper
  .commitment-col:nth-child(6n + 6)
  .commitment-card
  .commitment-number {
  color: #f76f35;
}

/**************************************************************************************
*********************************** PORTFOLIO SECTION CSS *****************************
***************************************************************************************/
.portfolio-sec {
  background-color: #1e1e1e;
}

.portfolio-slider button.slick-arrow {
  bottom: calc(100% - 350px);
}

.portfolio-slider .slick-track {
  display: flex;
}

.portfolio-slider .slick-slide {
  height: auto;
  margin: 0 10px;
}

.portfolio-card .portfolio-img {
  max-height: 350px;
  object-fit: cover;
  overflow: hidden;
}

.portfolio-card .portfolio-img-wrapper {
  overflow: hidden;
}

.portfolio-card .portfolio-desc-wrapper {
  position: absolute;
  bottom: -100%;
  background: linear-gradient(
    181.87deg,
    rgba(93, 93, 93, 0.4) -27.8%,
    #000000 67.71%
  );
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.6s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-radius: 10px;
}

.portfolio-img-wrapper:hover .portfolio-desc-wrapper {
  bottom: 0;
}

.portfolio-card .portfolio-desc-wrapper .portfolio-desc {
  font-size: 16px;
  line-height: 20px;
}

.portfolio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card .portfolio-content .title {
  font-size: 20px;
  line-height: 30px;
}

.portfolio-card .portfolio-content .portfolio-lang-wrapper {
  gap: 20px;
  margin-top: auto;
}

/**************************************************************************************
****************************** CLIENT TESTIMONIAL SECTION CSS *************************
***************************************************************************************/

.client-testimonial-slider .slick-track {
  display: flex;
}

.client-testimonial-slider .slick-slide {
  height: auto;
  margin: 0 10px;
}

.client-card .client-img-wrapper {
  max-height: 306px;
  min-height: 306px;
  overflow: hidden;
  height: 100%;
}

.client-card .client-img-wrapper .client-img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.client-img-wrapper .play-btn-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-img-wrapper .play-btn-link .play-btn {
  width: 65px;
  height: 65px;
  background-color: var(--main-yellow);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.client-card .client-card-body {
  padding: 30px 30px 44px;
  background-color: var(--secondary-color);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.cliet-info-wrapper {
  padding-top: 50px;
}

.cliet-info-wrapper .text-size {
  font-size: 20px;
}

/**************************************************************************************
******************************* INDUSTRY WE SERVE SECTION CSS *************************
***************************************************************************************/

.industry-sec {
  /* background-image: url("../../../images/New-Home-Page/industry-serve-bg.png"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/*.industry-sec .industry-slider-wrapper {
  padding-left: 30px;
}*/

.industry-sec .industry-slider-wrapper .draggable {
  padding: 0 30px;
}

.indstry-slider .slick-track {
  display: flex;
}
/* The parent container */
.industry-sec .slick-list {
  margin: 0 -15px; /* Negative margin to offset the margin of the first/last slide */
}

.indstry-slider .slick-slide {
  height: auto;
  /*margin-right: 30px;*/
  margin: 0 15px;
}

.industry-card {
  border-radius: 30px;
  overflow: hidden;
}

.industry-card .indstry-hover-img {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.industry-card .indstry-hover-img .industry-img {
  border-radius: 30px;
}

.industry-card .indstry-hover-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(
    156.29deg,
    #48baff -48.21%,
    #23648c 7.22%,
    #abc4d3 53.48%,
    #48baff 123.79%
  );
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.industry-card:hover .indstry-hover-img {
  opacity: 1;
  visibility: visible;
}

.industry-card .indstry-front-detail {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  background-color: #645e5e38;
  backdrop-filter: blur(18px);
  padding: 30px;
  border-radius: 30px;
}

.industry-card .indstry-front-detail .industry-img {
  max-width: 84px;
  max-height: 84px;
}

.industry-card:hover .indstry-front-detail {
  opacity: 0;
  visibility: hidden;
}

.industry-card-body .industry-title {
  font-size: 30px;
  line-height: 40px;
}

/**************************************************************************************
******************************** DEDICATED TEAM SECTION CSS ***************************
***************************************************************************************/
.dedicated-slider .slick-track {
  display: flex;
}

.dedicated-slider .slick-slide {
  height: auto;
}

.team-text-18 {
  font-size: 18px;
  line-height: 34px;
}

.resources-box {
  background-color: var(--secondary-color);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.resource-box-img img:not(:first-child) {
  margin-left: -25px;
}

/**************************************************************************************
********************************* OUR PROCESS SECTION CSS *****************************
***************************************************************************************/

.our-process-sec {
  /* background-image: url("../../../images/New-Home-Page/process-follow-bg.png"); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

.our-process-sec::before {
  content: "";
  position: absolute;
  background-color: #2525254d;
  inset: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  z-index: -1;
}

.our-process-sec .our-process-wrapper {
  column-gap: 102px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 130px;
}

.our-process-sec .our-process-wrapper .our-process-box {
  gap: 12px;
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 30px 20px 20px;
  border: 1px solid var(--main-text-shade6);
  width: calc((100% / 3) - 102px);
  position: relative;
}

.our-process-sec .our-process-wrapper .our-process-box:nth-child(4) {
  order: 6;
}

.our-process-sec .our-process-wrapper .our-process-box:nth-child(5) {
  order: 5;
}

.our-process-sec .our-process-wrapper .our-process-box:nth-child(6) {
  order: 4;
}

.our-process-sec .our-process-wrapper .our-process-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: calc(100% + 2px);
  background-image: url('data:image/svg+xml,<svg width="450" height="1" viewBox="0 0 450 1" fill="none" xmlns="http://www.w3.org/2000/svg"><mask id="path-1-inside-1_221_551" fill="white"><path d="M0 0H450V1H0V0Z"/></mask><path d="M450 0V-0.5H442.5V0V0.5H450V0ZM427.5 0V-0.5H412.5V0V0.5H427.5V0ZM397.5 0V-0.5H382.5V0V0.5H397.5V0ZM367.5 0V-0.5H352.5V0V0.5H367.5V0ZM337.5 0V-0.5H322.5V0V0.5H337.5V0ZM307.5 0V-0.5H292.5V0V0.5H307.5V0ZM277.5 0V-0.5H262.5V0V0.5H277.5V0ZM247.5 0V-0.5H232.5V0V0.5H247.5V0ZM217.5 0V-0.5H202.5V0V0.5H217.5V0ZM187.5 0V-0.5H172.5V0V0.5H187.5V0ZM157.5 0V-0.5H142.5V0V0.5H157.5V0ZM127.5 0V-0.5H112.5V0V0.5H127.5V0ZM97.5 0V-0.5H82.5V0V0.5H97.5V0ZM67.5 0V-0.5H52.5V0V0.5H67.5V0ZM37.5 0V-0.5H22.5V0V0.5H37.5V0ZM7.49999 0V-0.5H0V0V0.5H7.49999V0ZM450 0V-1H442.5V0V1H450V0ZM427.5 0V-1H412.5V0V1H427.5V0ZM397.5 0V-1H382.5V0V1H397.5V0ZM367.5 0V-1H352.5V0V1H367.5V0ZM337.5 0V-1H322.5V0V1H337.5V0ZM307.5 0V-1H292.5V0V1H307.5V0ZM277.5 0V-1H262.5V0V1H277.5V0ZM247.5 0V-1H232.5V0V1H247.5V0ZM217.5 0V-1H202.5V0V1H217.5V0ZM187.5 0V-1H172.5V0V1H187.5V0ZM157.5 0V-1H142.5V0V1H157.5V0ZM127.5 0V-1H112.5V0V1H127.5V0ZM97.5 0V-1H82.5V0V1H97.5V0ZM67.5 0V-1H52.5V0V1H67.5V0ZM37.5 0V-1H22.5V0V1H37.5V0ZM7.49999 0V-1H0V0V1H7.49999V0Z" fill="white" mask="url(%23path-1-inside-1_221_551)"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  margin: auto;
  height: 1px;
  z-index: -1;
}

.our-process-sec .our-process-wrapper .our-process-box:nth-child(3):after {
  top: 100%;
  left: -1px;
  transform: rotate(90deg);
  right: 0;
  bottom: unset;
  height: 1px;
  z-index: -1;
}

.our-process-sec .our-process-wrapper .our-process-box:nth-child(6):after {
  left: -1px;
  transform: rotate(90deg);
  right: 0;
  bottom: 100%;
  height: 1px;
  z-index: -1;
}

.our-process-sec .our-process-wrapper .our-process-box:nth-child(4):after,
.our-process-sec .our-process-wrapper .our-process-box:nth-last-child(2):after {
  content: "";
  position: absolute;
  top: 0;
  right: 98%;
  left: unset;
  width: calc(100% + 2px);
  bottom: 0;
  margin: auto;
  height: 1px;
  z-index: -1;
}

.our-process-sec .our-process-wrapper .our-process-box::before {
  content: "";
  position: absolute;
  background-image: url('data:image/svg+xml,<svg width="30" height="28" viewBox="0 0 30 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M30 13.8858C30.0002 14.2518 29.7871 14.5843 29.4546 14.7373L1.32998 27.6854C0.859653 27.9019 0.302903 27.696 0.0864605 27.2257C-0.0314871 26.9694 -0.0277371 26.6736 0.0966557 26.4204L6.25858 13.8858L0.0963627 1.35113C-0.132033 0.886484 0.0594492 0.324636 0.524091 0.0961823C0.777447 -0.0283864 1.0734 -0.0321364 1.3298 0.085987L29.4544 13.0342C29.787 13.1871 30.0001 13.5197 30 13.8858Z" fill="%23FFA502"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: calc(100% + 60px);
  width: 30px;
  height: 30px;
}

.our-process-sec .our-process-wrapper .our-process-box:nth-child(3)::before {
  left: 0;
  right: 0;
  transform: rotate(90deg);
  top: calc(100% + 51px);
  bottom: unset;
}

.our-process-sec .our-process-wrapper .our-process-box:nth-child(6)::before {
  left: 0;
  right: 0;
  transform: rotate(-90deg);
  bottom: calc(100% + 51px);
  top: unset;
}

.our-process-sec .our-process-wrapper .our-process-box:nth-child(4)::before,
.our-process-sec
  .our-process-wrapper
  .our-process-box:nth-last-child(2)::before {
  left: unset;
  right: calc(100% + 60px);
  transform: rotate(-180deg);
}

/**************************************************************************************
******************************* TECHNOLOGY WE USE SECTION CSS *************************
***************************************************************************************/
.technology-use-sec {
  position: relative;
}

.technology-use-sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  height: 1px;
  width: 100%;
  border-bottom: 1px solid transparent;
  background:
    linear-gradient(var(--main-black), var(--main-black)) padding-box,
    linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 4.69%,
        #ffa502 51.02%,
        rgba(153, 153, 153, 0) 100%
      )
      border-box;
}

.technology-card {
  padding-bottom: 24px;
}

.technology-card:nth-last-of-type(1) {
  padding-bottom: 0;
}

.technology-card .technology-title {
  width: 332px;
  background: linear-gradient(96.73deg, #1a1a1a -1.68%, #201c13 98.6%);
  padding: 25px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: relative;
  z-index: 0;
}

.technology-card .technology-title::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  padding: 1px;
  background: linear-gradient(95.21deg, #1a1a1a 4.98%, #4d4942 92.81%);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  z-index: -1;
}

.technology-card .technology-list-wrapper {
  background-color: var(--secondary-color);
  padding: 22px 24px;
  width: calc((100% - 332px) - 24px);
  border-radius: 5px;
  border-left: 3px solid var(--main-yellow);
}

.technology-list-wrapper .technology-list {
  gap: 24px;
}

.technology-list-wrapper .technology-list .list-text {
  border-right: 1px solid var(--main-text-shade6);
  line-height: 33px;
  padding-right: 24px;
}

.technology-list-wrapper .technology-list .list-text:nth-last-child(1) {
  border-right: 0;
}

/**************************************************************************************
******************************** LATEST NEWS SECTION CSS ******************************
***************************************************************************************/
.latest-news-sec {
  background-color: #272727b2;
}

.latest-news-slider .slick-track {
  display: flex;
}

.latest-news-slider .slick-slide {
  height: auto;
  margin: 0 10px;
}

.news-card {
  background-color: var(--secondary-color);
}

.news-card .news-img {
  max-height: 275px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.news-card .news-card-body {
  padding: 20px 30px 40px;
}

.news-card .news-card-body .date-text {
  font-size: 20px;
}

/**************************************************************************************
*********************************** FAQS SECTION CSS **********************************
***************************************************************************************/
.faq-main {
  gap: 30px;
}

.faq-options-wrapper {
  width: 257px;
  background: linear-gradient(96.73deg, #1a1a1a -1.68%, #201c13 98.6%);
  position: relative;
  padding: 30px 33px;
  z-index: 0;
  gap: 33px;
  position: sticky;
  top: 115px;
}

.faq-options-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(95.21deg, #1a1a1a 4.98%, #4d4942 92.81%);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  z-index: -1;
}

.faq-options-wrapper .nav-link {
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--main-white);
  padding: 16px;
  border-radius: 42px;
  background-color: transparent;
  transition: all 0.4s ease-in-out;
}

.faq-options-wrapper .nav-link.active,
.faq-options-wrapper .nav-link:hover {
  background-color: var(--main-yellow);
  color: var(--main-black);
}

/* FAQ ACCORDION CSS */

.faq-list-wrapper {
  width: calc((100% - 257px) - 30px);
}

.faq-list-wrapper .accordion .accordion-item {
  background-color: var(--secondary-color);
  margin-bottom: 30px;
  padding: 34px;
  border-radius: 10px;
}

.faq-list-wrapper .accordion .accordion-item:nth-last-child(1) {
  margin-bottom: 0;
}

.faq-list-wrapper .accordion .accordion-item .accordion-button {
  background-color: transparent;
  padding: 0;
  font-size: 24px;
  line-height: 30px;
  color: var(--main-white);
  font-weight: 500;
  gap: 15px;
}

.faq-list-wrapper .accordion .accordion-item .accordion-button::after {
  background-image: url("https://www.wedowebapps.com/wp-content/themes/wedowebapps/assets/images/new-homepage/accordion-chevron.png");
  width: 24px;
  height: 24px;
  background-size: 24px;
  transition: all 0.4s ease-in-out;
}

.faq-list-wrapper .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}

.faq-list-wrapper .accordion .accordion-body {
  padding: 25px 34px 0 0;
}

/**************************************************************************************
******************************* GET IN TOUCH SECTION CSS ******************************
***************************************************************************************/
.get-in-touch-sec {
  background-image: url("https://www.wedowebapps.com/wp-content/themes/wedowebapps/assets/images/new-homepage/get-in-touch-bg.webp");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  position: relative;
  z-index: -1;
}
.get-in-touch-sec::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    288.88deg,
    rgba(0, 0, 0, 0) -6.26%,
    #1d1d1d 53.96%
  );
  z-index: -1;
}

.contact-wrapper .contact-icon {
  background-color: var(--main-text-shade8);
  padding: 10px;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-in-touch-form-wrapper {
  padding-top: 42px;
}
