.text-feature-five .bg-wrapper {
  background: #ccf080;
  border-radius: 20px;
}

.text-feature-five li {
  display: inline-block;
  font-weight: 500;
  color: #000;
  padding: 6px 50px 6px 50px;
  border-radius: 45px;
  background: #fff;
  margin: 7px 0;
  position: relative;
}

.text-feature-five li:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ccf080;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.text-feature-five li:after {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  color: #29594B;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.text-feature-five li:hover:before {
  background: #29594B;
}

.text-feature-five li:hover:after {
  color: #fff;
}

.text-feature-five .media-wrapper {
  background: url(../../images/deposit-money/deposit-protect-what-you-earn.jpg) no-repeat center;
  background-size: cover;
  z-index: 1;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;

  @media (min-width: 992px) {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
  }
}

.text-feature-five .media-wrapper .video-icon {
  width: 90px;
  height: 90px;
  background: #fff;
}

.text-feature-five .media-wrapper .video-icon:hover {
  background: #ccf080;
}

.text-feature-five .media-wrapper .screen_01 {
  left: -9%;
  bottom: -9%;
  width: 46.3%;
  animation: jumpThree 5s infinite linear;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.06);
}

/* Promo Box Styles */
.promo-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: -5%;
  left: -5%;
}

.promo-icon {
  width: 28px;
  height: 28px;
  background: #ccf080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-icon svg {
  color: #000000;
  width: 20px;
  height: 20px;
}

.promo-text {
  font-size: 16px;
  color: #000000;
  line-height: 1.2;
}

/* Responsive styles */
@media (max-width: 1199px) {
  .text-feature-five .media-wrapper .video-icon {
    width: 55px;
    height: 55px;
    padding: 18px;
  }
}

@media (max-width: 991px) {
  .text-feature-five .media-wrapper {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .text-feature-five li {
    font-size: 18px;
    padding-right: 15px;
    border-radius: 15px;
  }

  .promo-box {
    max-width: 280px;
    padding: 16px;
    gap: 12px;
  }

  .promo-icon {
    width: 36px;
    height: 36px;
  }

  .promo-icon svg {
    width: 18px;
    height: 18px;
  }

  .promo-text {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .text-feature-five .media-wrapper .screen_01 {
    left: 0;
    bottom: -5%;
  }
}