.bandeau {
    background-color: rgba(165, 195, 22, 0.4);;
    padding: 10px calc((100vw - 1110px)/2);
    width: 100%;
    display: flex;
    border-radius: 8px;
    justify-content: space-between;
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    width: auto;
    margin-top: 80px;
    margin-bottom: 80px;
}
.bandeau-img {
    display: flex;
    align-items: center;
}
.bandeau-img img {
  height: auto;
  max-height: 240px;
  width: auto;
}
.bandeau-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 75%;
}
.bandeau-txt p:first-child {
  margin-bottom: 0;
}
.bandeau-txt p {
    line-height: 1.3rem;
    font-size: 1.3rem;
    color: #292929;
}
.bandeau-txt a {
  max-width: fit-content;
}
.bandeau-txt .btn.bleu {
  font-size: 1.69rem;
}

@media screen and (max-width:768px) {
.bandeau {
    flex-direction: column;
    padding: 20px 5%;
    height: auto;
  }
  .bandeau-img {
    justify-content: center;
    margin-bottom: 20px;
  }
  .bandeau-img img {
    width: 168px;
  }
  .bandeau-txt {
    width: 100%;
  }
  .bandeau-txt .btn.bleu {
    font-size: 1rem;
  }
  .bandeau-txt * {
    margin-bottom: 20px;
  }
}
@media screen and (max-width:600px) {
  .bandeau {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .bandeau-img {
    display: none;
  }
  .bandeau-txt {
    display: flex;
    align-items: center !important;
  }
  .bandeau-txt p:first-child {
    margin-bottom: 10px;
  }
}