@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
.banner__article,
.advantages__div,
.functioning__article {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 600ms linear;
}
.banner__article--active,
.advantages__div--active,
.functioning__article--active {
  opacity: 1;
  transform: translateX(0);
}

.banner__img-container,
.advantages__article,
.case__article {
  opacity: 0;
  transform: translateX(100%);
  transition: all 600ms linear;
}
.banner__img-container--active,
.advantages__article--active,
.case__article--active {
  opacity: 1;
  transform: translateX(0);
}

.functioning__img-container, .case__div, .swiper {
  opacity: 0;
  transform: scale(0.6);
}
.functioning__img-container--bounce, .case__div--bounce, .swiper--bounce {
  animation: bounce 900ms cubic-bezier(0.63, 0.54, 0.32, 1.03) forwards;
}

@keyframes bounce {
  80% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.advantages__summary-bloc,
.banner-footer__container {
  opacity: 0;
  transform: translateY(100%);
  transition: all 600ms linear;
}
.advantages__summary-bloc--active,
.banner-footer__container--active {
  opacity: 1;
  transform: translateY(0);
}

.last__card, .form__container {
  opacity: 0;
  transition: all 1000ms linear;
}
.last__card--appear, .form__container--appear {
  opacity: 1;
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 2.6rem;
}
@media all and (min-width: 1600px) {
  h1 {
    font-size: 3rem;
  }
}
@media all and (max-width: 690px) {
  h1 {
    font-size: 1.7rem;
  }
}

h2 {
  font-size: 2rem;
}
@media all and (min-width: 1600px) {
  h2 {
    font-size: 2.4rem;
  }
}
@media all and (max-width: 690px) {
  h2 {
    font-size: 1.2rem;
  }
}

@media all and (min-width: 1921px) {
  p, li {
    font-size: 1.3rem;
  }
}

ul {
  list-style-type: none;
}

a {
  display: inline-block;
  text-decoration: none;
}

i {
  margin-right: 0.5rem;
}

.header,
.main-container {
  position: relative;
  max-width: 1921px;
  margin: auto;
}

@media all and (min-width: 1921px) {
  .banner,
.advantages,
.functioning,
.steps,
.myForm {
    border-radius: 1rem;
  }
}

.primary-color {
  color: #008037;
}

.secondary-color {
  color: #7ED957;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media all and (max-width: 992px) {
  .form-under1000 {
    padding: 6rem 0 2rem;
  }
}

.form,
.modal-form {
  position: relative;
  display: none;
  transition: all 1s linear;
}
.form.onThisOne,
.modal-form.onThisOne {
  display: block;
  animation: fade 1s both;
}
.form__container,
.modal-form__container {
  position: relative;
  margin: 6rem auto 3rem;
  width: 60%;
  text-align: center;
  border-radius: 0.6rem;
  padding: 2.5rem 1rem;
  background-color: #7ED957;
  background: linear-gradient(to right bottom, #2d4c8c, #3ecce5);
  box-shadow: rgba(17, 17, 26, 0.15) 0px 4px 16px, rgba(17, 17, 26, 0.15) 0px 8px 32px;
}
@media all and (max-width: 690px) {
  .form__container,
.modal-form__container {
    width: 85%;
    margin: 0 auto;
    padding: 1rem 1.5rem;
  }
}
.form__paragraph,
.modal-form__paragraph {
  font-size: inherit;
  color: white;
  margin-bottom: 0.7rem;
}
.form__paragraph .red,
.modal-form__paragraph .red {
  display: inline-block;
  color: red;
  background-color: white;
  padding: 0.4rem 0.6rem;
  border-radius: 0.6rem;
}
.form__title,
.modal-form__title {
  margin-bottom: 0.75rem;
  font-weight: bold;
}
.form__choices,
.modal-form__choices {
  text-align: center;
  margin-bottom: 1rem;
}
.form__choices i,
.modal-form__choices i {
  display: inline-block;
  margin-bottom: 1rem;
}
.form__choices-flex-container,
.modal-form__choices-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.form__choices-flex-container > div,
.modal-form__choices-flex-container > div {
  width: 50%;
}
.form__choices-flex-container button,
.modal-form__choices-flex-container button {
  width: 90%;
  padding: 0.5rem 1rem;
}
.form__btn,
.modal-form__btn {
  padding: 12px 0 12px;
  margin-bottom: 1.3rem;
  width: 30%;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 200ms ease-out;
  border: none;
  font-weight: bold;
  background-color: white;
  color: #454E7C;
  border: 3px solid #454E7C;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: all 300ms linear;
}
@media all and (max-width: 690px) {
  .form__btn,
.modal-form__btn {
    margin-bottom: 0.5rem;
    width: 49%;
  }
}
.form__btn img,
.modal-form__btn img {
  height: 5rem;
}
.form__btn span,
.modal-form__btn span {
  color: #376671;
  font-weight: bold;
}
.form__step-three img,
.modal-form__step-three img {
  height: 2rem;
  margin-bottom: 0;
}
.form__step-five .form__choices,
.form__step-five .modal-form__choices,
.modal-form__step-five .form__choices,
.modal-form__step-five .modal-form__choices {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.form__step-five .form__choices > div,
.form__step-five .modal-form__choices > div,
.modal-form__step-five .form__choices > div,
.modal-form__step-five .modal-form__choices > div {
  width: 45%;
  margin-top: 1rem;
}
@media all and (max-width: 992px) {
  .form__step-five .form__choices > div,
.form__step-five .modal-form__choices > div,
.modal-form__step-five .form__choices > div,
.modal-form__step-five .modal-form__choices > div {
    width: 100%;
  }
  .form__step-five .form__choices > div.name,
.form__step-five .modal-form__choices > div.name,
.modal-form__step-five .form__choices > div.name,
.modal-form__step-five .modal-form__choices > div.name {
    width: 45%;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }
}
@media all and (max-width: 690px) {
  .form__step-five .form__choices > div,
.form__step-five .modal-form__choices > div,
.modal-form__step-five .form__choices > div,
.modal-form__step-five .modal-form__choices > div {
    margin-top: 0.5rem;
  }
}
.form__step-five .form__choices > div input,
.form__step-five .modal-form__choices > div input,
.modal-form__step-five .form__choices > div input,
.modal-form__step-five .modal-form__choices > div input {
  padding: 0.7rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  border: none;
  width: 85%;
  margin-bottom: 0.4rem;
}
@media all and (max-width: 690px) {
  .form__step-five .form__choices > div input,
.form__step-five .modal-form__choices > div input,
.modal-form__step-five .form__choices > div input,
.modal-form__step-five .modal-form__choices > div input {
    margin-bottom: 0.2rem;
  }
}
.form__step-five .form__choices > div input.input-valide,
.form__step-five .modal-form__choices > div input.input-valide,
.modal-form__step-five .form__choices > div input.input-valide,
.modal-form__step-five .modal-form__choices > div input.input-valide {
  border: 2px solid greenyellow;
}
.form__step-five .form__choices > div input.input-invalide,
.form__step-five .modal-form__choices > div input.input-invalide,
.modal-form__step-five .form__choices > div input.input-invalide,
.modal-form__step-five .modal-form__choices > div input.input-invalide {
  border: 2px solid red;
}
.form__step-five .validation,
.modal-form__step-five .validation {
  text-align: center;
}
.form__progress-bar-container,
.modal-form__progress-bar-container {
  width: 90%;
  overflow: hidden;
  text-align: left;
  border-radius: 0.4rem;
  background-color: white;
  margin: auto;
}
.form__progress-bar,
.modal-form__progress-bar {
  width: 20%;
  display: inline-block;
  transition: width 0.3s;
  background-color: #48517e;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  padding: 8px 0;
}
.form__tooltip,
.modal-form__tooltip {
  display: none;
  color: red;
  text-align: left;
  padding-left: 0.6rem;
  font-size: 0.6rem;
}
.form__sent-confirm,
.modal-form__sent-confirm {
  display: none;
  text-align: center;
  color: greenyellow;
  margin-bottom: 1.5rem;
}

.modal-form__container {
  padding-top: 4rem;
  width: 50%;
}
@media all and (min-width: 1921px) {
  .modal-form__container {
    width: 40%;
  }
}
@media all and (max-width: 992px) {
  .modal-form__container {
    width: 85%;
  }
}
@media all and (max-width: 330px) {
  .modal-form__container {
    padding-top: 0;
  }
}

.btn {
  padding: 1rem 1.8rem;
  border-radius: 1rem;
  color: #fff;
  font-weight: bold;
  box-shadow: 1px 1px 3px rgba(177, 176, 176, 0.7);
  cursor: pointer;
}
.btn:hover {
  animation: 3s linear infinite both btnBounce;
}
.btn:active {
  box-shadow: 3px 3px 0 #454E7C inset;
}
@media all and (max-width: 330px) {
  .btn {
    padding: 0.8rem 1.1rem;
  }
}
.btn--green {
  background: linear-gradient(to right, #82c371, #83c2a6);
}
.btn--fixe {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  padding: 0.8rem 1.3rem;
  font-size: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: all 200ms linear;
}
@media all and (max-width: 690px) {
  .btn--fixe {
    font-size: 1rem;
    padding: 0.7rem 0;
    bottom: 0.5rem;
    text-align: center;
    right: 50%;
    transform: translateX(50%);
    width: 70%;
  }
}
.btn--fixe:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

@keyframes btnBounce {
  10%, 90% {
    transform: scale(1.03);
  }
  20%, 80% {
    transform: scale(0.98);
  }
  30%, 50%, 70% {
    transform: scale(1.03);
  }
  40%, 60% {
    transform: scale(0.98);
  }
}
.modal {
  position: fixed;
  inset: 0 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(241, 241, 241, 0.7);
  z-index: 5;
  transform: translateX(100%);
  transition: all 0.35s ease-in;
}
.modal-entrance {
  transform: translateX(0);
}
.modal-close {
  position: absolute;
  cursor: pointer;
  transform: scale(2);
  transition: all 250ms linear;
  color: white;
  top: 1.5rem;
}
@media all and (max-width: 330px) {
  .modal-close {
    transform: scale(1);
  }
}
.modal-close:hover {
  color: red;
}
.modal-close.fa-times {
  right: 2rem;
}
.modal-close.fa-arrow-left {
  display: none;
  left: 2rem;
}
.modal-close.fa-arrow-left.block {
  display: block;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.swiper-slide, .slide-container {
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
}
@media all and (max-width: 690px) {
  .swiper-slide, .slide-container {
    flex-direction: column;
  }
}

.slide-container {
  width: 65%;
  background-color: white;
  padding: 2rem;
}
@media all and (max-width: 690px) {
  .slide-container {
    flex-direction: column;
    margin: 2rem;
  }
}

.swiper-button {
  color: white !important;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media all and (max-width: 690px) {
  .swiper-button {
    color: #007aff !important;
  }
}

.main-container {
  position: relative;
}
.main-container .cookieConsent {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 3rem;
  z-index: 50;
  width: 30%;
  padding: 1rem 2rem;
  border-radius: 0.7rem;
  box-shadow: 3px 3px 5px gray;
  background: linear-gradient(to right bottom, #2d4c8c, #3ecce5);
  color: white;
  font-size: 0.9rem;
}
@media all and (min-width: 1921px) {
  .main-container .cookieConsent {
    width: 30%;
  }
}
@media all and (max-width: 1220px) {
  .main-container .cookieConsent {
    width: 45%;
  }
}
@media all and (max-width: 690px) {
  .main-container .cookieConsent {
    width: 85%;
    border-radius: 0.3rem;
    left: 0;
    bottom: 0;
  }
}
.main-container .cookieConsent h3 {
  margin-bottom: 1rem;
}
.main-container .cookieConsent .div-reponse {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
@media all and (max-width: 690px) {
  .main-container .cookieConsent .div-reponse {
    margin-top: 1rem;
    flex-wrap: wrap;
  }
}
.main-container .cookieConsent .div-reponse .reponse {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  margin-left: 0.7rem;
  border: 1px solid white;
  cursor: pointer;
  transition: all 200ms linear;
}
@media all and (max-width: 690px) {
  .main-container .cookieConsent .div-reponse .reponse {
    margin-bottom: 0.5rem;
  }
}
.main-container .cookieConsent .div-reponse .reponse:hover {
  transform: scale(1.02);
}
.main-container .cookieConsent .div-reponse .reponse.yes {
  background-color: white;
  color: #2d4c8c;
  font-weight: bold;
}
.main-container .cookieConsent .div-reponse a#plus {
  display: inline-block;
  margin-top: 0.5rem;
  color: white;
}

.header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: white;
  height: 6rem;
}
@media all and (max-width: 690px) {
  .header {
    height: 5rem;
  }
}
.header__div {
  width: 20%;
}
@media all and (max-width: 1220px) {
  .header__div {
    width: auto;
  }
}
@media all and (max-width: 992px) {
  .header__div {
    width: 40%;
  }
}
.header__div--img {
  padding-left: 2rem;
}
@media all and (max-width: 690px) {
  .header__div--img {
    padding-left: 1rem;
  }
}
.header__div--img img {
  width: 5rem;
}
@media all and (max-width: 690px) {
  .header__div--img img {
    width: 4rem;
  }
}
.header__div--title {
  width: 60%;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
}
@media all and (max-width: 992px) {
  .header__div--title {
    display: none;
    width: auto;
  }
}
.header__div--btn {
  text-align: right;
  padding-right: 2rem;
}
@media all and (max-width: 1220px) {
  .header__div--btn {
    padding-right: 0;
  }
}
@media all and (max-width: 690px) {
  .header__div--btn {
    width: 85%;
    margin-right: 1rem;
  }
}

footer {
  display: flex;
  justify-content: center;
  min-height: 96px;
  padding: 1rem;
}
@media all and (max-width: 690px) {
  footer {
    padding-top: 0;
  }
}
@media all and (max-width: 690px) {
  footer .footer-container {
    flex-direction: column;
  }
}
@media all and (max-width: 992px) {
  footer .footer-container {
    width: 95%;
    margin: auto;
  }
}
footer > div > div:nth-child(1) {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
@media all and (max-width: 992px) {
  footer > div > div:nth-child(1) {
    transform: scale(0.8);
    justify-content: center;
  }
}
@media all and (max-width: 690px) {
  footer > div > div:nth-child(1) {
    align-items: center;
    margin-top: 0;
  }
}
footer > div > div:nth-child(1) img {
  height: 5rem;
  margin: 0 2rem;
}
footer > div > div:nth-child(1) img.bg-white {
  border-radius: 0.5rem;
}
@media all and (max-width: 690px) {
  footer > div > div:nth-child(1) img.bg-white1 {
    padding: 0.4rem 1.3rem;
  }
}
@media all and (max-width: 992px) {
  footer > div > div:nth-child(1) img {
    margin: 0 1rem;
  }
}
@media all and (max-width: 690px) {
  footer > div > div:nth-child(1) img {
    height: 3rem;
    margin-top: 1rem;
  }
}
@media all and (max-width: 690px) {
  footer > div > div:nth-child(1) img:nth-child(2) {
    height: 3.8rem;
    width: 3.8rem;
  }
}
footer > div > div:nth-child(2) {
  display: flex;
}
@media all and (max-width: 992px) {
  footer > div > div:nth-child(2) {
    flex-direction: column;
    align-items: center;
    width: 70%;
    margin: auto;
  }
}
@media all and (max-width: 690px) {
  footer > div > div:nth-child(2) {
    width: 100%;
  }
}
footer > div > div:nth-child(2) p {
  margin: 1rem 1rem 0;
  font-size: 1rem;
  color: #abafaf;
}
@media all and (max-width: 690px) {
  footer > div > div:nth-child(2) p {
    font-size: 0.6rem;
  }
}
footer > div > div:nth-child(2) p a {
  color: #abafaf;
}

.banner {
  background: url("../img/1.png") center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 2rem 0;
  color: #fff;
}
@media all and (max-width: 1220px) {
  .banner {
    background-position: inherit;
    padding: 4rem 0;
  }
}
@media all and (max-width: 992px) {
  .banner {
    background: linear-gradient(to right bottom, #2d4c8c, #3ecce5);
  }
}
@media all and (max-width: 690px) {
  .banner {
    padding: 2rem 0;
  }
}
.banner__container {
  height: 564px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media all and (max-width: 992px) {
  .banner__container {
    flex-direction: column;
    height: auto;
  }
}
.banner__sub-container {
  display: flex;
  justify-content: center;
  width: 50%;
  padding: 0 2rem;
}
@media all and (max-width: 1220px) {
  .banner__sub-container {
    padding: 0;
  }
}
@media all and (max-width: 992px) {
  .banner__sub-container {
    width: 100%;
  }
}
.banner__article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  margin-right: 5rem;
}
@media all and (max-width: 992px) {
  .banner__article {
    text-align: center;
    margin-bottom: 3rem;
    margin-right: 0;
  }
}
@media all and (max-width: 690px) {
  .banner__article {
    width: 85%;
  }
}
.banner__article p {
  margin: 0.5rem auto;
  text-align: justify;
  width: 90%;
}
@media all and (max-width: 690px) {
  .banner__article p {
    width: 100%;
  }
}
.banner__article p.un-euro {
  color: red;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
@media all and (max-width: 690px) {
  .banner__article p.un-euro {
    width: 90%;
  }
}
.banner__heading {
  text-align: center;
  margin-bottom: 2rem;
}
.banner__flag-container {
  text-align: center;
  margin-bottom: 1rem;
  display: none;
}
@media all and (max-width: 992px) {
  .banner__flag-container {
    display: block;
  }
}
.banner__flag-container-desktop {
  width: 50%;
  margin: auto;
  text-align: center;
  margin-bottom: 0;
}
@media all and (max-width: 992px) {
  .banner__flag-container-desktop {
    display: none;
  }
}
.banner__flag {
  display: none;
  width: 100px;
  background-color: white;
}
.banner__flag-desktop {
  display: none;
  width: 200px;
  background-color: white;
}
.banner__button-container {
  margin-top: 1rem;
  text-align: center;
}
.banner__img-container img {
  position: relative;
  top: 2rem;
  width: 40rem;
  border: 1rem solid white;
  border-radius: 50%
}
@media all and (min-width: 1600px) {
  .banner__img-container img {
    left: 1.5rem;
    width: 50rem;
    background-color: white;
    border: 1rem solid white;
    border-radius: 50%;
  }
}
@media all and (max-width: 1220px) {
  .banner__img-container img {
    left: 1.5rem;
    width: 35rem;
    background-color: white;
    border: 1rem solid white;
    border-radius: 50%;
  }
}
@media all and (max-width: 992px) {
  .banner__img-container img {
    position: inherit;
  }
}
@media all and (max-width: 690px) {
  .banner__img-container img {
    width: 19rem;
  }
}
@media all and (max-width: 330px) {
  .banner__img-container img {
    width: 16rem;
  }
}

.banner-footer__container {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 0;
}
@media all and (max-width: 1220px) {
  .banner-footer__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 1rem;
  }
}
@media all and (max-width: 690px) {
  .banner-footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 330px) {
  .banner-footer__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.banner-footer__sub-container {
  text-align: center;
  width: 16, 66%;
}
@media all and (max-width: 1220px) {
  .banner-footer__sub-container {
    margin: 0.6rem;
  }
}
.banner-footer__img {
  width: 5rem;
  margin-bottom: 0.5rem;
}

.advantages {
  background: url("../img/2.png") center no-repeat;
  background-size: cover;
  overflow: hidden;
  margin-top: 1rem;
  padding: 2rem 0;
  color: black;
}
@media all and (min-width: 1600px) {
  .advantages {
    padding: 6rem 0;
  }
}
@media all and (max-width: 1220px) {
  .advantages {
    padding: 1rem 0;
    background-position: inherit;
  }
}
@media all and (max-width: 992px) {
  .advantages {
    background: linear-gradient(to right top, #2d4c8c, #3ecce5);
  }
}
.advantages__container {
  display: flex;
  height: 700px;
}
@media all and (max-width: 992px) {
  .advantages__container {
    flex-direction: column-reverse;
    justify-content: center;
    height: auto;
  }
}
.advantages__div {
  width: 50%;
}
@media all and (max-width: 992px) {
  .advantages__div {
    width: 100%;
    text-align: center;
  }
}
.advantages__img {
  border-radius: 50%;
  position: relative;
  background-color: white;
  border: 1rem solid white;
  top: 12rem;
  left: -3rem;
  transform: scale(0.8);
}
@media all and (min-width: 1600px) {
  .advantages__img {
    left: 3rem;
  }
}
@media all and (max-width: 1220px) {
  .advantages__img {
    width: 30rem;
    top: 16rem;
    left: 2rem;
  }
}
@media all and (max-width: 992px) {
  .advantages__img {
    position: inherit;
  }
}
@media all and (max-width: 690px) {
  .advantages__img {
    width: 20rem;
  }
}
@media all and (max-width: 330px) {
  .advantages__img {
    width: 16rem;
  }
}
.advantages__article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  top: 4rem;
  width: 75%;
  margin: auto;
}
@media all and (min-width: 1600px) {
  .advantages__article {
    width: 70%;
  }
}
@media all and (max-width: 992px) {
  .advantages__article {
    background-color: white;
    width: 80%;
    text-align: center;
    margin: 2rem auto;
    position: inherit;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px 0px;
  }
}
@media all and (max-width: 690px) {
  .advantages__article {
    padding: 1rem;
  }
}
.advantages__article > div {
  display: flex;
  align-items: center;
}
@media all and (min-width: 1600px) {
  .advantages__article > div {
    width: 80%;
    margin: auto;
  }
}
.advantages__article > div.ou {
  width: 10%;
  margin: auto;
}
@media all and (max-width: 690px) {
  .advantages__article > div.ou {
    margin-top: 1rem;
  }
}
@media all and (max-width: 690px) {
  .advantages__article > div {
    display: block;
  }
}
.advantages__heading {
  color: black;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media all and (max-width: 690px) {
  .advantages__heading {
    margin-top: 0;
  }
}
.advantages__icon {
  width: 6rem;
}

.advantages__summary {
  display: flex;
  justify-content: center;
  padding: 2rem;
}
@media all and (max-width: 1220px) {
  .advantages__summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 690px) {
  .advantages__summary {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media all and (max-width: 330px) {
  .advantages__summary {
    padding: 2rem 0.5rem;
  }
}
.advantages__summary-bloc {
  width: 25%;
  display: flex;
  align-items: center;
}
@media all and (max-width: 1220px) {
  .advantages__summary-bloc {
    width: 100%;
  }
}
@media all and (max-width: 330px) {
  .advantages__summary-bloc {
    flex-direction: column;
    text-align: center;
  }
}
.advantages__summary-bloc-one {
  margin-left: -2rem;
}
@media all and (max-width: 992px) {
  .advantages__summary-bloc-one {
    margin-left: 0;
  }
}
.advantages__summary-bloc img {
  height: 10rem;
}
@media all and (max-width: 992px) {
  .advantages__summary-bloc img {
    height: 6rem;
  }
}
.advantages__summary-bloc h3 {
  margin-left: 1rem;
  font-weight: normal;
}

.functioning {
  background: linear-gradient(to right bottom, #2d4c8c, #3ecce5);
  overflow: hidden;
  font-weight: 700;
  padding: 2rem 4rem;
}
@media all and (max-width: 690px) {
  .functioning {
    padding: 2rem;
  }
}
.functioning__container {
  display: flex;
  justify-content: center;
}
@media all and (min-width: 1600px) {
  .functioning__container {
    width: 80%;
    margin: auto;
  }
}
@media all and (max-width: 992px) {
  .functioning__container {
    flex-direction: column;
  }
}
.functioning__heading {
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
  margin-right: 7rem;
  margin-left: 7rem;
  margin-top: 2rem;
  color: white;
}
@media all and (max-width: 690px) {
  .functioning__heading {
    margin: 2rem 0;
  }
}
.functioning__article {
  display: flex;
  align-items: center;
}
@media all and (max-width: 992px) {
  .functioning__article {
    justify-content: center;
  }
}
.functioning__paragraphs p {
  width: 80%;
  color: white;
  text-align: justify;
  margin: 1rem 2rem;
  font-weight: 500;
}
@media all and (max-width: 992px) {
  .functioning__paragraphs p {
    width: auto;
  }
}
@media all and (max-width: 690px) {
  .functioning__paragraphs p {
    margin: 1rem 0;
  }
}
@media all and (max-width: 992px) {
  .functioning__img-container {
    text-align: center;
  }
}
.functioning__img {
  height: 25rem;
  padding: 3rem;
  margin: 2rem;
  background-color: whitesmoke;
  border-radius: 30% 70% 36% 64%/30% 37% 63% 70%;
}
@media all and (max-width: 1220px) {
  .functioning__img {
    height: 15rem;
  }
}
@media all and (max-width: 992px) {
  .functioning__img {
    height: 9rem;
  }
}

.case {
  overflow: hidden;
  font-weight: 700;
  padding: 4rem 4rem 0;
}
@media all and (max-width: 690px) {
  .case {
    padding: 4rem 2rem 0;
  }
}
.case__heading {
  text-align: center;
}
.case__container {
  margin: 5rem 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
@media all and (min-width: 1600px) {
  .case__container {
    width: 80%;
    margin: 5rem auto;
  }
}
@media all and (max-width: 992px) {
  .case__container {
    flex-direction: column;
    margin-top: 2rem;
  }
}
.case__sub-container {
  width: 50%;
}
@media all and (max-width: 992px) {
  .case__sub-container {
    width: 100%;
    text-align: center;
  }
}
@media all and (min-width: 1921px) {
  .case__sub-container-right {
    width: 60%;
    margin: auto;
  }
}
@media all and (min-width: 1921px) {
  .case__sub-container-left {
    width: 40%;
    margin: auto;
  }
}
.case__article {
  display: flex;
  justify-content: center;
  margin-right: 3rem;
}
@media all and (max-width: 992px) {
  .case__article {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.case__list li {
  display: flex;
  margin-top: 0.8rem;
  text-align: left;
}
.case__list img {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
}
.case__paragraphs p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.case__div {
  display: flex;
  justify-content: center;
}
.case__img {
  width: 21rem;
  padding: 3rem;
  background: linear-gradient(to right bottom, #2d4c8c, #3ecce5);
  border-radius: 30% 70% 36% 64%/30% 37% 63% 70%;
}
@media all and (max-width: 1220px) {
  .case__img {
    width: 16rem;
  }
}
@media all and (max-width: 992px) {
  .case__img {
    padding: 1rem;
  }
}

.steps {
  background: linear-gradient(to right bottom, #2d4c8c, #3ecce5);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}
.steps__heading {
  margin: 2rem auto;
  text-align: center;
  color: white;
}
@media all and (max-width: 690px) {
  .steps__heading {
    font-size: 1.5em;
    width: 80%;
  }
}
.steps__text {
  width: 50%;
  border-left: 3px solid black;
  margin-left: 2rem;
  padding-left: 3rem;
}
@media all and (max-width: 690px) {
  .steps__text {
    text-align: center;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    width: 100%;
  }
}
.steps__text h3 {
  margin-bottom: 2rem;
}
.steps__text p {
  margin-bottom: 1rem;
}
.steps__img img {
  width: 20rem;
}
@media all and (max-width: 992px) {
  .steps__img img {
    width: 12rem;
  }
}

.last {
  background: linear-gradient(to right top, #2d4c8c, #3ecce5);
  padding: 4rem 0;
}
@media all and (min-width: 1921px) {
  .last {
    border-radius: 1rem;
    margin-top: 2rem;
    padding: 4rem 1rem;
  }
}
@media all and (max-width: 992px) {
  .last {
    padding-top: 0;
  }
}
.last__card {
  width: 70%;
  margin: auto;
}
@media all and (max-width: 1220px) {
  .last__card {
    width: 80%;
  }
}
.last__card--container {
  text-align: center;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px 0px;
  background-color: white;
  padding: 3rem 1rem;
  margin: auto;
}
@media all and (min-width: 1600px) {
  .last__card--container {
    width: 70%;
  }
}
@media all and (max-width: 690px) {
  .last__card--container {
    padding: 3rem;
    font-size: 0.8rem;
  }
}
@media all and (max-width: 330px) {
  .last__card--container {
    padding: 2rem 1rem;
  }
}
.last__card--container > div {
  margin-top: 1.4rem;
}
@media all and (min-width: 1600px) {
  .last__heading {
    padding: 0 1rem;
  }
}
@media all and (max-width: 690px) {
  .last__heading {
    font-size: 1.5em;
  }
}
.last__img {
  width: 20rem;
}
@media all and (max-width: 992px) {
  .last__img {
    width: 14rem;
  }
}
@media all and (max-width: 690px) {
  .last__img {
    width: 10rem;
  }
}

.main-container-policy-thanks {
  background: linear-gradient(to right bottom, #2d4c8c, #3ecce5);
}

.header-policy-thanks {
  background-color: white;
}
.header-policy-thanks div {
  width: 10%;
}

.footer__policy-thanks {
  background-color: white;
}

.main__policy-thanks {
  max-width: 60%;
  margin: 4rem auto;
  padding: 2rem;
  line-height: 1.6rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(197, 190, 190, 0.5);
}
@media all and (max-width: 992px) {
  .main__policy-thanks {
    max-width: 75%;
  }
}
.main__policy-thanks h1 {
  font-size: 2.3rem;
  padding: 3rem 0 2rem;
  line-height: 2.2rem;
  color: black;
}
.main__policy-thanks h2 {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}
.main__policy-thanks p {
  font-size: 1rem;
  margin: 0.5rem 0 1rem;
}
.main__policy-thanks p#cookie {
  text-decoration: underline;
  cursor: pointer;
}
.main__policy-thanks ul {
  font-size: 1rem;
  margin-left: 2rem;
  list-style-type: disc;
}
.main__policy-thanks ul ul {
  margin-left: 2.5rem;
  list-style-type: circle;
}
.main__policy-thanks hr {
  margin-top: 2.5rem;
}

.main__thanks {
  margin: 12rem auto;
}
@media all and (max-width: 1220px) {
  .main__thanks {
    margin: 13rem auto;
  }
}
@media all and (max-width: 992px) {
  .main__thanks {
    margin: 2rem auto;
  }
}
@media all and (max-width: 690px) {
  .main__thanks {
    margin: 10rem auto;
  }
}

.section__thanks {
  text-align: center;
}
.section__thanks h1 {
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
