.header-presentation-other {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  position: relative;
  background: linear-gradient(
      rgba(2, 92, 47, 0) 0%,
      rgba(213, 65, 45, 0) 50%,
      white 100%
    ),
    url("../media/background/Design\ sans\ titre\ \(6\).png") center/cover
      no-repeat;
  min-height: 260px;
  box-shadow: 0 30px 80px -10px white;
}
.header-presentation-other .text_header h1 {
  flex: 1;
  color: var(--green-dark);
  font-size: 1.7rem;
  text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.header-presentation-other .text_header h1 span {
  flex: 1;
  color: darkgreen;
}
.header-presentation-other .text_header p {
  flex: 1;
  color: var(--gray-dark);
  font-size: 1rem;
  font-weight: bold;
}
.nom_green {
  color: var(--green-dark);
  font-style: italic;
}
/* Tablettes et grands smartphones */
@media screen and (min-width:481px) and (max-width: 768px) {
  .header-presentation-other {
    padding: 26px 1rem;
    min-height: 260px !important;
    margin-top: 50px;
    align-items: center;
  }
  .header-presentation-other .text_header h1 {
    font-size: 1.46rem;
  }
  .header-presentation-other .text_header p {
    font-size: 0.9rem;
  }
}

/* Smartphones */
@media screen and (max-width: 480px) {
  .header-presentation-other {
    margin-top: 50px;
    padding: 62px 1rem;
    height: fit-content;
    min-height: fit-content !important;
  }
  .header-presentation-other .text_header h1 {
    font-size: 1.43rem;
  }
  .header-presentation-other .text_header p {
    font-size: 0.8rem;
  }
}