:root {
  --white: white;
  --black: black;
}

.hero_wrapper {
  width: 100%;
  background-image: url('../images/bg_top.png');
  background-position: 50% 100%;
  background-size: cover;
  border: 1px #000;
  border-top: 4px solid #a41832;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  padding: 40px;
  display: flex;
}

.headline_wrap {
  max-width: 1440px;
  margin: 200px auto;
}

.h1_hero {
  text-align: center;
  font-family: Libre Bodoni, sans-serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 80px;
}

.span_red {
  color: #a41832;
}

.hero_content_wrap {
  width: 100%;
  max-width: 1440px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  display: flex;
}

.hero_content_col-1 {
  width: 40%;
}

.bloc_red {
  background-color: #a41832;
  border: 1px solid #fff;
  margin-bottom: 0;
  padding: 20px 40px 40px;
  transition: all .2s;
  box-shadow: 0 2px 70px 6px rgba(0, 0, 0, .35);
}

.bloc_red:hover {
  transform: scale(1.04);
}

.h2_hero {
  color: #fff;
  font-family: Libre Bodoni, sans-serif;
  font-weight: 300;
}

.p_hero {
  color: #fff;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-weight: 300;
  line-height: 24px;
}

.hero_content_col-2 {
  width: 60%;
  justify-content: flex-end;
  display: flex;
}

.btn_white {
  color: #a41832;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 8px 15px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.btn_white:hover {
  color: #fff;
  background-color: #a41832;
}

.h4_hero {
  margin-top: 40px;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 300;
}

.outside_line {
  border: 1px solid #a41832;
  padding: 5px;
}

.container {
  max-width: 1440px;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  display: block;
}

.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.nav-menu {
  height: 110px;
  align-items: center;
  display: flex;
  position: relative;
}

.nav-link {
  font-family: Inter, sans-serif;
  font-size: 16px;
  transition: all .2s;
}

.nav-link:hover {
  color: #a41832;
}

.section_quote {
  padding-top: 100px;
  padding-bottom: 100px;
}

.wrap_quote {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.quote {
  max-width: 840px;
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Libre Bodoni, sans-serif;
  font-size: 26px;
  line-height: 43px;
}

.section_expertises {
  background-image: url('../images/bg_bottom.png');
  background-position: 50% 100%;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}

.wrap_expertise {
  max-width: 1440px;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.img_expertise {
  width: 100%;
}

.red_line {
  width: 50px;
  height: 2px;
  background-color: #a41832;
  margin-top: 20px;
  margin-bottom: 20px;
}

.expertise_title {
  font-family: Libre Bodoni, sans-serif;
  font-size: 26px;
  font-weight: 400;
}

.expertise_text {
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.expertise_tags {
  color: #a41832;
  font-family: Libre Bodoni, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.section_quote_red {
  background-color: #a41832;
  background-image: url('../images/rose_right.svg'), url('../images/rose_left.svg');
  background-position: 100%, 0%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.wrap_quote-red {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph {
  text-align: center;
}

.quote_part1 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-family: Libre Bodoni, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 38px;
}

.quote_part2 {
  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
}

.section_leadership {
  padding-top: 100px;
  padding-bottom: 100px;
}

.wrap_leadership {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.leadership_content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section_footer {
  background-color: #a41832;
  border-top: 1px solid #f0f1f4;
  padding-top: 50px;
  padding-bottom: 50px;
}

.wrap_footer {
  max-width: 1440px;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer_txt {
  color: #fff;
  flex: 1;
  font-family: Libre Bodoni, sans-serif;
  display: inline-block;
}

.image {
  margin-left: 10px;
}

.h2_content {
  text-align: center;
  margin-bottom: 100px;
  font-family: Libre Bodoni, sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .h1_hero {
    font-size: 40px;
    line-height: 60px;
  }

  .hero_content_wrap {
    flex-direction: column;
  }

  .hero_content_col-1 {
    width: 100%;
    margin-bottom: 50px;
  }

  .hero_content_col-2 {
    width: 100%;
  }

  .nav-menu {
    height: auto;
    display: block;
  }

  .section_quote, .section_expertises {
    padding-left: 40px;
    padding-right: 40px;
  }

  .wrap_expertise {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .section_quote_red, .section_leadership {
    padding-left: 40px;
    padding-right: 40px;
  }

  .menu-button {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .menu-button {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .hero_wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .headline_wrap {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .bloc_red {
    padding-left: 20px;
    padding-right: 20px;
  }

  .h2_hero {
    font-size: 20px;
    line-height: 26px;
  }

  .nav-menu {
    background-color: #fff;
  }

  .section_quote {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .quote {
    font-size: 20px;
    line-height: 32px;
  }

  .section_expertises {
    padding: 50px 20px;
  }

  .section_quote_red {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .section_leadership {
    padding-left: 20px;
    padding-right: 20px;
  }

  .leadership_content {
    grid-template-columns: 1fr;
  }

  .wrap_footer {
    flex-direction: column;
  }

  .footer_txt {
    margin-bottom: 20px;
  }

  .menu-button.w--open {
    background-color: rgba(255, 255, 255, 0);
  }
}

#w-node-da97dbee-36e3-986b-c1f7-e65da7c06464-c5b078c6, #w-node-_91f88a5d-02e4-8671-b766-bdd1e9ebcce8-c5b078c6, #w-node-_6b02bed5-0f07-9282-724a-2052daa64c78-c5b078c6, #w-node-_6b02bed5-0f07-9282-724a-2052daa64c7b-c5b078c6, #w-node-c1522c6c-e562-237c-8cf3-450674adebb0-c5b078c6, #w-node-c1522c6c-e562-237c-8cf3-450674adebb3-c5b078c6, #w-node-_43e64452-996f-f1a4-9ead-be16c2ffbb11-c5b078c6, #w-node-_43e64452-996f-f1a4-9ead-be16c2ffbb14-c5b078c6, #w-node-_436d6c68-021d-b7cf-5acc-7a820c90199f-c5b078c6, #w-node-_436d6c68-021d-b7cf-5acc-7a820c9019a2-c5b078c6, #w-node-_136d36ad-d2bd-bfa4-ba90-1bf57930cc8b-c5b078c6, #w-node-_136d36ad-d2bd-bfa4-ba90-1bf57930cc8e-c5b078c6, #w-node-_8657f2e7-435b-70b1-4f0a-bd21c29c80bc-c5b078c6, #w-node-_8657f2e7-435b-70b1-4f0a-bd21c29c80bf-c5b078c6, #w-node-_8ff69beb-d684-58b9-6ad8-23d5d0e46c57-c5b078c6, #w-node-_8ff69beb-d684-58b9-6ad8-23d5d0e46c5a-c5b078c6, #w-node-da97dbee-36e3-986b-c1f7-e65da7c06464-18fc5714, #w-node-_91f88a5d-02e4-8671-b766-bdd1e9ebcce8-18fc5714, #w-node-_6b02bed5-0f07-9282-724a-2052daa64c78-18fc5714, #w-node-_6b02bed5-0f07-9282-724a-2052daa64c7b-18fc5714, #w-node-c1522c6c-e562-237c-8cf3-450674adebb0-18fc5714, #w-node-c1522c6c-e562-237c-8cf3-450674adebb3-18fc5714, #w-node-_43e64452-996f-f1a4-9ead-be16c2ffbb11-18fc5714, #w-node-_43e64452-996f-f1a4-9ead-be16c2ffbb14-18fc5714, #w-node-_436d6c68-021d-b7cf-5acc-7a820c90199f-18fc5714, #w-node-_436d6c68-021d-b7cf-5acc-7a820c9019a2-18fc5714, #w-node-_136d36ad-d2bd-bfa4-ba90-1bf57930cc8b-18fc5714, #w-node-_136d36ad-d2bd-bfa4-ba90-1bf57930cc8e-18fc5714, #w-node-_8657f2e7-435b-70b1-4f0a-bd21c29c80bc-18fc5714, #w-node-_8657f2e7-435b-70b1-4f0a-bd21c29c80bf-18fc5714, #w-node-_8ff69beb-d684-58b9-6ad8-23d5d0e46c57-18fc5714, #w-node-_8ff69beb-d684-58b9-6ad8-23d5d0e46c5a-18fc5714 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


