@charset "utf-8";
/* CSS Document */


.why-us-wcu {
  padding: 80px 0;
}

.container-wcu {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

/* LEFT */
.features-wcu {
  width: 50%;
}

.feature-card-wcu {
  position: relative;
  background: #ffffff;
  border-radius: 50px 50px 50px 0px;
  padding-top: 7px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 7px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.8s ease;
}

.feature-card-wcu:hover {
  transform: translateY(7px);
}

.feature-card-wcu.active-wcu h3 {
  background: #1e1e1e;
  color: #fff;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 6px;
}

.number-wcu {
  position: absolute;
  top: -10px;
  left: 30px;
  background: #ff5a5f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 15px;
}

.icon-wcu {
  width: 55px;
  height: 55px;
  background: #00c2c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.content-wcu h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #111;
}

.content-wcu p {
  font-size: 14px;
  line-height: 1.6;
  color: #777;
}

/* RIGHT */
.images-wcu {
  width: 45%;
  position: relative;
  height: 420px;
}

.img-wcu {
  position: absolute;
  overflow: hidden;
}

.img-wcu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-1-wcu {
  height: 390px;
  left: 50px;
  bottom: 5px;
  width: 50%;
  border-radius: 200px;
  border: 10px solid var(--white);
  z-index: 1
}

.img-2-wcu {
  width: 60%;
  height: 440px;
  bottom: 0;
  right: 0;
  border-radius: 200px;

}

.images-wcu .shape {
  position: absolute;
  top: -15px;
  left: 70px;
  width: 222px;
  height: 102px
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets */
@media (max-width: 1024px) {

  .container-wcu {
    flex-direction: column;
    gap: 40px;
    direction: rtl;
  }

  .features-wcu,
  .images-wcu {
    width: 100%;
  }

  .images-wcu {
    height: 380px;
  }

  .img-1-wcu {
    width: 55%;
    height: 340px;
    left: 0;
  }

  .img-2-wcu {
    width: 60%;
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .why-us-wcu {
    padding: 50px 0;
  }

  .feature-card-wcu {
    flex-direction: column;
    text-align: center;
    border-radius: 30px;
    padding: 25px;
  }

  .icon-wcu {
    margin-bottom: 10px;
  }

  .number-wcu {
    left: 50%;
    transform: translateX(-50%);
  }

  .images-wcu {
    height: 320px;
  }

  .img-1-wcu {
    width: 65%;
    height: 360px;
    left: 0;
  }

  .img-2-wcu {
    width: 70%;
    height: 300px;
  }

  .images-wcu .shape {
    display: none;
  }
}