/* Mise en place Header*/
/* styles.css */
.custom-section-header {
  height: 330px;
  padding: 64px 24px;
  background-color: var(--green-color);
}

.custom-section-header .container-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.custom-section-header .title {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 200;
  color: white;
  margin: 0;
  text-align: center;
}

.custom-section-header .description {
  font-size: 1.2rem;
  color: white;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .custom-section-header {
    height: 40vw;
  }
}

@media screen and (max-width: 560px) {
  .custom-section-header .title {
    font-size: 2rem;
    text-align: center;
  }

  .custom-section-header.description {
    font-size: 1rem;
  }
  .custom-section-header {
    height: 30vw;
  }
}
