/*            */
/* HONORAIRES */
/*            */
.honoraires-container {
  margin: 4rem auto;
  margin-top: 6rem;
  padding: 4rem;
  width: 1000px;
  background: var(--bg-grey);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

@media screen and (max-width: 1000px) {
  .honoraires-container {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .honoraires-container {
    position: initial;
    padding: 2rem;
    margin: 2rem auto;
    margin-top: 0;
  }
}

.honoraires-container h1 {
  color: var(--text-grey);
  background: var(--bg-green);
  margin: 0 auto;
  padding: 1rem;
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(50%, -50%);
}

@media screen and (max-width: 800px) {
  .honoraires-container h1 {
    width: 60%;
    position: initial;
    top: initial;
    right: initial;
    transform: initial;
  }
}

@media screen and (max-width: 500px) {
  .honoraires-container h1 {
    width: 100%;
  }
}

.honoraires-container hr {
  border-top: .3rem solid var(--text-green);
  width: 80%;
  margin: 3rem auto;
  opacity: 1;
}

.honoraires-text {
  margin: 0 auto;
  margin-top: 2rem;
  padding: 2.5rem;
  position: relative;
}

@media screen and (max-width: 500px) {
  .honoraires-text {
    padding: 0;
  }
}

.honoraires-text::before, .honoraires-text::after {
  content: '';
  position: absolute;
  width: 5rem;
  height: 5rem;
  border-style: solid;
  border-color: var(--text-green);
}

@media screen and (max-width: 500px) {
  .honoraires-text::before, .honoraires-text::after {
    display: none;
  }
}

.honoraires-text::before {
  top: 0;
  left: 0;
  border-width: .2rem 0 0 .2rem;
}

.honoraires-text::after {
  bottom: 0;
  right: 0;
  border-width: 0 .2rem .2rem 0;
}

.honoraires-text p {
  margin-bottom: 1rem;
}

.honoraires-text p:last-child {
  margin-bottom: 0;
}