@import url(https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap);
.header {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  align-items: end;
  padding: 20px 0;
  gap: 50px;
}
.header__logo {
  max-width: 500px;
  height: -moz-fit-content;
  height: fit-content;
}
.header__logo img {
  width: 100%;
  height: 100%;
}
.header__title {
  font-size: 45px;
  color: #000000;
  margin-bottom: 35px;
}

.footer {
  background: #FCE1C3;
  color: black;
  padding-block: 100px;
}
@media screen and (max-width: 1000px) {
  .footer {
    padding-block: 50px;
  }
}
.footer-content {
  text-align: center;
  font-size: 50px;
}
.footer-content a {
  text-decoration: none;
  color: black;
}
@media screen and (max-width: 1000px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 35px;
  }
}
@media screen and (max-width: 600px) {
  .footer-content {
    font-size: 18px;
  }
}

.container {
  max-width: 1300px;
  padding-inline: 15px;
  margin-inline: auto;
}
@media screen and (max-width: 1000px) {
  .container {
    padding-inline: 30px;
  }
}

.bg-image-after {
  position: relative;
  z-index: 1;
}
.bg-image-after:before {
  content: "";
  background: #C45F5B;
  position: absolute;
  width: 100%;
  bottom: -30px;
  top: 30px;
  right: -30px;
  border-radius: 90px;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .bg-image-after:before {
    bottom: -10px;
    top: 10px;
    right: -10px;
  }
}
.bg-image-after:after {
  content: "";
  background: #FCE1C3;
  position: absolute;
  width: 100%;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  border-radius: 90px;
}

.section-hero {
  background: #C45F5B;
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .section-hero {
    padding-top: 20px;
  }
}
.section-hero > .container {
  position: relative;
}
.section-hero:after {
  content: "";
  background: #C45F5B;
  position: absolute;
  width: 100%;
  bottom: -150px;
  left: 0;
  right: 0;
  height: 150px;
  z-index: -1;
}
.section-hero > .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 1000px) {
  .section-hero > .container {
    display: flex;
    flex-direction: column;
  }
}
.section-hero__content {
  grid-column: 1/span 3;
  color: white;
  font-size: 90px;
  font-weight: 400;
  margin-top: 90px;
}
@media screen and (max-width: 1000px) {
  .section-hero__content {
    font-size: 70px;
  }
}
@media screen and (max-width: 600px) {
  .section-hero__content {
    font-size: 40px;
  }
}
.section-hero__block {
  grid-column: 4/span 2;
  background: #FCE1C3;
  height: 600px;
  width: 100%;
  border-radius: 90px;
}
@media screen and (max-width: 1000px) {
  .section-hero__block {
    height: 300px;
  }
}
.section-hero__image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.section-bande {
  background: white;
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
}
.section-bande.reverse .container {
  grid-gap: 120px;
}
.section-bande.reverse .section-bande-image {
  grid-column: 1/span 1;
  grid-row: 1/1;
}
.section-bande.reverse .section-bande__content {
  grid-column: 2/span 2;
  grid-row: 1/1;
}
.section-bande > .container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 64px;
  padding-top: 150px;
}
@media screen and (max-width: 1000px) {
  .section-bande > .container {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
  }
}
.section-bande__image {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 0;
  right: 0;
  top: -278px;
}
.section-bande-image {
  grid-column: 3/span 1;
  height: 450px;
  display: flex;
  align-items: end;
  justify-content: center;
  margin: auto;
  width: 100%;
}
.section-bande-image img {
  height: 350px;
}
.section-bande__content {
  margin: auto;
  grid-column: 1/span 2;
  text-align: justify;
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.7;
}
.section-bande__content span {
  color: #C45F5B;
  font-weight: bold;
  opacity: 1;
}

.section-title {
  padding-top: 70px;
}
.section-title > .container {
  text-align: center;
}
.section-title__title {
  font-size: 50px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .section-title__title {
    font-size: 35px;
  }
}
.section-title__subtitle {
  color: #C45F5B;
  opacity: 0.8;
  font-size: 50px;
  font-weight: lighter;
}
@media screen and (max-width: 1000px) {
  .section-title__subtitle {
    font-size: 35px;
  }
}

.section-bande2 {
  position: relative;
  margin-top: 150px;
  padding-top: 100px;
  background: #C45F5B;
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
  color: #FCE1C3;
}
.section-bande2-title {
  text-align: center;
}
.section-bande2-title__subtitle {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-bande2-title__title {
  font-size: 65px;
  font-weight: bold;
  margin-bottom: 50px;
}
.section-bande2-content .content {
  text-align: center;
  color: white;
  font-weight: lighter;
  font-size: 30px;
  line-height: 1.2;
}
.section-bande2-content .signature {
  margin-top: 35px;
  text-align: right;
  color: white;
  font-size: 30px;
}
.section-bande2-content .signature span {
  color: #FCE1C3;
}
.section-bande2__image {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  pointer-events: none;
  margin-top: 35px;
  transform: translateY(4px);
}

* {
  font-family: "Anonymous Pro", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
