/* Section */
.cp-section {
  background-color: #f5f7fa;
}

/* Card */
.cp-card-out {
  position: relative;
  background: #ffffff;
  padding: 40px 40px 40px 110px;
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  overflow: visible;
  height: 230px;
  margin-bottom: 30px;
  /* IMPORTANT */
}

/* Quote */
.cp-quote {
  position: absolute;
  top: 28px;
  right: 25px;
  font-size: 156px;
  font-weight: 700;
  color: rgb(128 64 59);
  z-index: 1;
}

/* Image Outside */
.cp-img-out {
  position: absolute;
  left: -90px;

  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  padding: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.cp-img-out img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Content */
.cp-content {
  position: relative;
  z-index: 2;
}

.cp-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--aswwf-base);
}

.cp-designation {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 12px;
}

/* .cp-text {
font-size: 15px;
line-height: 1.7;
color: #444;
} */

/* Mobile */
@media (max-width: 767px) {
  .cp-card-out {
    padding: 100px 25px 30px;
    text-align: center;
  }

  .cp-img-out {
    left: 50%;
    top: -60px;
    transform: translateX(-50%);
  }

  .cp-quote {
    top: 15px;
    right: 15px;
    font-size: 60px;
  }
}
