html body .navigation {
  padding: 16px 20px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
html body .navigation .nav {
  text-decoration: none;
}
html body .navigation .nav span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 27px;
  color: #095561;
  position: relative;
  padding-right: 36px;
  text-transform: uppercase;
}
html body .navigation .nav span::before {
  content: "";
  width: 26px;
  height: 20px;
  position: absolute;
  background-image: url(assets/img/blue_arrow.svg);
  background-repeat: no-repeat;
  top: 10px;
  bottom: 0;
  margin: auto;
  right: 0;
}
@media screen and (min-width: 980px) {
  html body .navigation .nav {
    position: relative;
    top: 0px;
    right: 0;
    background-color: #ffffff;
    padding: 12px 60px;
    border-radius: 2px;
  }
}
@media screen and (min-width: 980px) {
  html body .navigation {
    background-color: transparent;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
  }
}

html body footer .footerGroup {
  padding: 37px 5.55% 30px 5.55%;
  background-color: #F5F9FB;
}

@media screen and (min-width: 1024px) {
  html body footer .footerGroup {
    padding: 84px 25px 80px 25px;
  }
}
html body footer .footerGroup .containFooterGroup {
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1024px) {
  html body footer .footerGroup .containFooterGroup {
    display: flex;
  }
}
html body footer .footerGroup .containFooterGroup .left {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
  html body footer .footerGroup .containFooterGroup .left {
    width: calc((100% - 40px) / 2);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  html body footer .footerGroup .containFooterGroup .left {
    width: calc((100% - 80px) / 3);
    margin-bottom: 0;
  }
}
html body footer .footerGroup .containFooterGroup .left .title {
  color: #095561;
  text-align: center;
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 32px;
}

@media screen and (min-width: 1024px) {
  html body footer .footerGroup .containFooterGroup .left .title {
    font-size: 34px;
    line-height: 48px;
    margin-bottom: 32px;
  }
}
html body footer .footerGroup .containFooterGroup .left .reseaux {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  margin-bottom: 30px;
}

html body footer .footerGroup .containFooterGroup .left .reseaux a svg path {
  transition: 0.25s fill;
}

html body footer .footerGroup .containFooterGroup .left .reseaux a:hover svg path {
  fill: #095561;
}

html body footer .footerGroup .containFooterGroup .left .groupCTA {
  text-align: center;
  margin-bottom: 32px;
}

html body footer .footerGroup .containFooterGroup .left .groupCTA .subCta {
  background-color: #fff;
  display: inline-block;
  padding: 10px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: 0.25s background-color;
}

html body footer .footerGroup .containFooterGroup .left .groupCTA .subCta:hover {
  background-color: #fff;
}

html body footer .footerGroup .containFooterGroup .left .groupCTA .subCta a {
  display: inline-block;
  color: #095561;
  background-color: #fff;
  padding: 20px 70px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  border-radius: 2px;
  text-transform: uppercase;
}

html body footer .footerGroup .containFooterGroup .left .legalNews {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #393939;
}

html body footer .footerGroup .containFooterGroup .left .legalNews a {
  text-decoration: underline;
  color: #393939;
  transition: 0.2s color;
}

html body footer .footerGroup .containFooterGroup .left .legalNews a:hover {
  color: #87BD2B;
}

@media screen and (min-width: 1024px) {
  html body footer .footerGroup .containFooterGroup .right {
    width: calc((100% - 40px) / 2);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1280px) {
  html body footer .footerGroup .containFooterGroup .right {
    width: calc((100% - 80px) / 3 * 2 + 40px);
    margin-bottom: 0;
  }
}
html body footer .footerGroup .containFooterGroup .right ul {
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 768px) {
  html body footer .footerGroup .containFooterGroup .right ul {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  html body footer .footerGroup .containFooterGroup .right ul {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  html body footer .footerGroup .containFooterGroup .right ul {
    display: flex;
    flex-wrap: wrap;
  }
}
html body footer .footerGroup .containFooterGroup .right ul li {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  html body footer .footerGroup .containFooterGroup .right ul li {
    width: calc((100% - 40px) / 2);
  }
  html body footer .footerGroup .containFooterGroup .right ul li:nth-child(odd) {
    margin-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  html body footer .footerGroup .containFooterGroup .right ul li {
    display: block;
    width: 100%;
  }
  html body footer .footerGroup .containFooterGroup .right ul li:nth-child(odd) {
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) {
  html body footer .footerGroup .containFooterGroup .right ul li {
    width: calc((100% - 40px) / 2);
  }
  html body footer .footerGroup .containFooterGroup .right ul li:nth-child(odd) {
    margin-right: 40px;
  }
}
html body footer .footerGroup .containFooterGroup .right ul li a {
  color: #095561;
  font-size: 18px;
  line-height: 25px;
  transition: 0.2s color;
}

html body footer .footerGroup .containFooterGroup .right ul li a:hover {
  color: #87BD2B;
}

html body footer .legalFooter {
  padding: 58px 5.55% 40px 5.55%;
  border-top: 4px solid #F5F9FB;
  border-bottom: 4px solid #F5F9FB;
  margin-bottom: 76px;
}

@media screen and (min-width: 768px) {
  html body footer .legalFooter {
    padding: 25px;
  }
}
@media screen and (min-width: 768px) {
  html body footer .legalFooter ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }
}
html body footer .legalFooter ul li {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  html body footer .legalFooter ul li {
    margin-bottom: 0;
    padding-right: 13px;
    margin-right: 13px;
    border-right: 1px solid #062A42;
  }
}
html body footer .legalFooter ul li:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  html body footer .legalFooter ul li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
}
html body footer .legalFooter ul li a {
  font-size: 14px;
  line-height: 18px;
  color: #095561;
  display: block;
  text-align: center;
  transition: color 0.2s;
}

html body footer .legalFooter ul li a:hover {
  color: #87BD2B;
}

html body footer .logoFooter {
  padding: 0 5.55%;
  margin-bottom: 40px;
}

html body footer .logoFooter img {
  display: block;
  width: 190px;
  margin: 0 auto;
}

html body footer .copyFooter {
  padding: 0 5.55%;
  margin-bottom: 40px;
  color: #095561;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  text-align: center;
}

html body ul, html body li {
  list-style: none;
}

html body a {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */