.Back_text_holder {
  margin-bottom: 5%;
}

.Back_text_holder h6 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #087852;
  opacity: 1;
  width: fit-content;
  margin: 0px auto;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
}

.Back_text_holder h6::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #6ea841;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}

.Back_text_holder h6:hover {
  font-weight: 700;
  color: #6ea841 !important;
}

.Back_text_holder h6:hover::after {
  width: 100%;
}

@media (min-width: 0px) and (max-width: 991px) {
  .Back_text_holder h6 {
    font-size: 14px;
  }
}
