/** Start What We Do Section CSS Property **/
.what_we_do {
  padding: var(--padding-tb-small) 0;
}

.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 .large-text {
  margin-bottom: 120px;
}

.what_we_do .large-text h2 {
  margin-bottom: 15px;
}

.what_we_do .large-text p {
  margin-bottom: 50px;
}

.what_we_do .content-box {
  color: var(--grey-color);
}

.what_we_do .content-list h5 {
  margin: 0;
}

.what_we_do .content-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 10px;
  border-bottom: 1px solid var(--dark-color);
  position: relative;
}

.what_we_do .content-list a:after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  background: var(--lavender-blush-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: var(--td);
  z-index: -1;
}

.what_we_do .content-list a:hover:after {
  width: 100%;
}

@media only screen and (max-width: 1023px) {
  .curve_shape {
    top: -30px;
  }

  .curve_border {
    top: -45px;
  }

  .curve_shadow {
    top: 0;
  }

  .what_we_do .large-text p {
    margin-bottom: 30px;
  }

  .what_we_do .large-text {
    margin-bottom: 60px;
  }

  .what_we_do .content-list a {
    padding: 20px 10px;
  }
}

/** End What We Do Section CSS Property **/