/** Start New What We Do Section CSS Property **/
.what_we_do_new {
  padding: var(--padding-tb-small) 0;
  background-image: var(--gradient-03);
}

.what_we_do_new:has(+ .is-colored) {
  padding-bottom: var(--padding-tb-medium);
}

.curve_shape {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  z-index: -1;
  background-image: var(--gradient-03);
  clip-path: ellipse(calc(100vh + 60%) 50% at 50% 50%);
}

.curve_border {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -115px;
  left: 0;
  z-index: -1;
  clip-path: ellipse(calc(100vh + 57%) 50% at 50% 50%);
  background: var(--gradient-02);
  animation: scroll-gradient 6s linear infinite;
  background-size: 200%;
}

.curve_shadow {
  position: absolute;
  top: -30px;
  left: 0;
  height: 300px;
  width: 100%;
  z-index: -1;
  background: var(--gradient-02);
  background-size: 100%;
  animation: scroll-gradient 6s linear infinite;
  filter: blur(106px);
}

.what_we_do_new p {
  color: var(--dark-color);
}

@media (min-width: 992px) {

  .what_we_do_new p {
    font-size: 17px;
  }
}

.what_we_do_new .services-wrapper {
  position: relative;
  background-color: var(--white-color);
  border-radius: 1.5rem;
  padding: clamp(1.875rem, 2.153vw + 0.542rem, 3.125rem);
  border: 1px solid transparent;
  background: var(--gradient-border);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.078);
  transition: var(--td-3s);
}

.what_we_do_new .services-wrapper:hover {
  background: var(--gradient-border-hover);
  box-shadow: var(--box-shadow-blue);
}

.what_we_do_new hr {
  background-color: var(--hot-pink-color);
  margin: clamp(1.875rem, 1.938vw + 0.675rem, 3rem) 0;
  opacity: 1;
}

.nh-service-list {
  position: relative;
  border: 1px solid var(--royal-blue-color);
  border-radius: 1rem;
  margin-top: 2rem !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-content: center;
}

.nh-service-list .item {
  position: relative;
  display: flex;
  padding: 1.5rem;
  padding-bottom: calc(1.5rem - 1rem);
  column-gap: 0.5rem;
  row-gap: 1rem;
}

.nh-service-list .item:not(:last-child) {
  border-bottom: 1px solid var(--royal-blue-color);
}

@media (min-width:767px) {
  .nh-service-list .item:not(:nth-child(even)):nth-last-child(2) {
    border-bottom: 0;
  }

  .nh-service-list .item:not(:nth-child(even)) {
    border-right: 1px solid var(--royal-blue-color);
  }

  .nh-service-list .item:last-child {
    border-right: 0;
  }

  /* .nh-service-list .item:not(:nth-child(even)):last-child {
    width: 100%;
    max-width: 100%;
  } */

}

.nh-service-list .icon {
  width: 33px;
}

.nh-service-list .icon img {
  max-width: 100%;
  transition: var(--td-3s);
}

.nh-service-list h5 {
  margin-bottom: 12px !important;
  transition: var(--td-3s);
}

.nh-service-list .item:hover h5 {
  color: var(--royal-blue-color);
}

.nh-service-list .item:hover .icon img {
  filter: invert(50%) sepia(1100%) saturate(1000%) hue-rotate(296deg);
}

/*===[RESPONSIVE]=============================================================*/
@media only screen and (max-width: 1023px) {
  .curve_shape {
    top: -30px;
  }

  .curve_border {
    top: -45px;
  }

  .curve_shadow {
    top: 0;
  }
}

@media (max-width:991px) {
  .what_we_do_new .top {
    text-align: center;
  }

  .what_we_do_new .top .text-center {
    display: none;
  }

}

/* End 991px */

@media (max-width:767px) {
  .nh-service-list .item {
    padding: 1rem;
    padding-bottom: 0;
  }

  .curve_shape,
  .curve_border {
    clip-path: ellipse(calc(100vh + 20%) 50% at 50% 50%);
  }
}

/* End 767px */