/* Text Feature One Component Styles */

.text-feature-one .line-wrapper {
  border-top: 1px dashed #d7d7d7;
  border-bottom: 1px dashed #d7d7d7;
}

.text-feature-one .line-wrapper .shape_01 {
  width: 48px;
  bottom: 12%;
  left: 32%;
  animation: rotated 48s infinite linear;
}

.text-feature-one .card-style-three {
  border-left: 1px dashed #d7d7d7;
  border-bottom: 1px dashed #d7d7d7;
  padding-left: 100px;
}

.text-feature-one .card-style-three:last-child {
  border-bottom: none;
}

.text-feature-one .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../../images/send-dm/send-dm-picture.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.text-feature-one .media-list-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 3.1%, #000000 100%);
  mix-blend-mode: overlay;
}

.text-feature-one .media-list-item 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-one .media-list-item 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-one .media-list-item 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-one .media-list-item li:hover:before {
  background: #29594B;
}

.text-feature-one .media-list-item li:hover:after {
  color: #fff;
}

/* Responsive Styles */

/* Large screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .text-feature-one .media-list-item {
    width: 550px; 
    height: 520px;
  }
}

/* Medium screens (max-width: 1199px) */
@media (max-width: 1199px) {
  .text-feature-one .media-list-item {
    width: 100%; 
    height: 400px;
  }
  
  .text-feature-one .media-list-item li {
    font-size: 18px; 
    padding-right: 15px; 
    border-radius: 15px;
  }
}

/* Large tablet screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .text-feature-one .card-style-three {
    padding-left: 50px;
  }
}

/* Mobile screens (max-width: 991px) */
@media (max-width: 991px) {
  .text-feature-one .line-wrapper .shape_01 {
    display: none !important;
  }
  
  .text-feature-one .line-wrapper {
    border-top: none;
  }
  
  .text-feature-one .card-style-three {
    padding-left: 0; 
    border-left: none;
  }
}
