@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
  height: auto !important;
}

body {
  font-family: "Open Sans";
  font-size: 1rem;
}

.kl-bg-primary {
  background-color: #004F88;
}

@media (max-width: 992px) {
  .flex-mobile {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 992px) {
  .mb-1-mobile {
    margin-bottom: 1rem;
  }
}

@media (max-width: 992px) {
  .mb-2-mobile {
    margin-bottom: 2rem;
  }
}

@media (max-width: 992px) {
  .my-1-mobile {
    margin: 1rem;
  }
}

@media (max-width: 768px) {
  .mt-6-mobile {
    margin-top: 6rem;
  }
}

.mx--3 {
  margin: 0 -3rem;
}

.btn-gradient {
  position: relative;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  color: #004F88;
  box-sizing: border-box;
  background-clip: padding-box;
  border: solid 5px transparent;
  border-radius: 1em;
  border-radius: 50px;
  padding: 1.1rem 1.5rem;
}
.btn-gradient:hover span {
  color: #fff !important;
}
.btn-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -5px;
  border-radius: inherit;
  background: linear-gradient(90deg, #004F88 0%, #70C0E4 80.29%);
}
@media (max-width: 768px) {
  .btn-gradient {
    padding: 0.8rem 1.2rem;
    border: 2px solid #004F88;
  }
}
.btn-gradient span {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #004F88;
}
@media (max-width: 768px) {
  .btn-gradient span {
    font-size: 14px;
  }
}
.btn-gradient span:hover {
  color: #fff !important;
}

.btn-transparent-blue {
  position: relative;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  border: 3px solid #004F88;
  border-radius: 50px;
  padding: 1.1rem 1.5rem;
}
@media (max-width: 768px) {
  .btn-transparent-blue {
    padding: 0.8rem 1.2rem;
    border: 2px solid #004F88;
  }
}
.btn-transparent-blue span {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #004F88;
}
@media (max-width: 768px) {
  .btn-transparent-blue span {
    font-size: 14px;
  }
}

.btn-transparent-blue-light {
  position: relative;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  border: 3px solid #70C0E4;
  border-radius: 50px;
  padding: 1.1rem 1.5rem;
}
@media (max-width: 768px) {
  .btn-transparent-blue-light {
    padding: 0.8rem 1.2rem;
    border: 2px solid #70C0E4;
  }
}
.btn-transparent-blue-light span {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #70C0E4;
}
@media (max-width: 768px) {
  .btn-transparent-blue-light span {
    font-size: 14px;
  }
}

.card-img-2 {
  background: url(../img/card-img-2.svg) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  margin-bottom: 3rem;
}

.card-img-3 {
  background: url(../img/card-img-3.svg) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  margin-bottom: 3rem;
}

.btn-hover:hover {
  animation: rotate 0.7s ease-in-out both;
}
.btn-hover:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}

.kl-header {
  z-index: 9999;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
}
.kl-header .kl-navbar {
  padding: 1.7rem 1rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .kl-header .kl-navbar {
    text-align: right;
  }
}
.kl-header .kl-navbar .kl-logo {
  max-width: 150px;
  position: absolute;
  left: 0;
  top: 3px;
  padding: 0;
}
@media (max-width: 500px) {
  .kl-header .kl-navbar .kl-logo {
    max-width: 115px;
  }
}
.kl-header .kl-navbar .kl-logo img {
  background: #004F88;
  border-radius: 50%;
  border: 5px solid #004F88;
}
@media (max-width: 992px) {
  .kl-header .kl-navbar .navbar-toggler {
    margin-left: 92%;
  }
}
.kl-header .kl-navbar .navbar-toggler .kl-menu-burger {
  display: inline-block;
  width: 30px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.kl-header .kl-navbar .navbar-toggler .kl-menu-burger .kl-menu-burger-line {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.kl-header .kl-navbar .navbar-toggler .kl-menu-burger .kl-menu-burger-line:nth-child(1) {
  top: 0;
}
.kl-header .kl-navbar .navbar-toggler .kl-menu-burger .kl-menu-burger-line:nth-child(2) {
  top: 8px;
}
.kl-header .kl-navbar .navbar-toggler .kl-menu-burger .kl-menu-burger-line:nth-child(3) {
  top: 16px;
}
@media (max-width: 992px) {
  .kl-header .kl-navbar .kl-navbar-collapse {
    padding-top: 20px;
  }
}
.kl-header .kl-navbar .kl-navbar-collapse .kl-navbar-nav .nav-item .nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: #70C0E4;
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .kl-header .kl-navbar .kl-navbar-collapse .kl-navbar-nav .nav-item .nav-link {
    padding: 10px 0;
  }
}
.kl-header .kl-navbar .kl-navbar-collapse .kl-navbar-nav .nav-item .nav-link:hover {
  color: #fff;
}
@media (min-width: 992px) {
  .kl-header .kl-navbar .navbar-collapse {
    justify-content: flex-end;
  }
}

.kl-hero {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
@media (max-width: 500px) {
  .kl-hero {
    margin-bottom: 3rem;
  }
}
.kl-hero .text-content h1 {
  font-weight: 800;
  font-size: 115px;
  line-height: 175px;
  background: linear-gradient(90deg, #004F88 0%, #70C0E4 80.29%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .kl-hero .text-content h1 {
    font-size: 60px;
    line-height: 90px;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .kl-hero .text-content h1 {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 3rem;
  }
}
.kl-hero .text-content h1 span {
  font-size: 250px;
  background: linear-gradient(90deg, #004F88 3.06%, #70C0E4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 992px) {
  .kl-hero .text-content h1 span {
    font-size: 125px;
  }
}
@media (max-width: 500px) {
  .kl-hero .text-content h1 span {
    font-size: 80px;
  }
}
.kl-hero .text-content h2 {
  font-weight: 600;
  font-size: 64px;
  line-height: 64px;
  text-transform: uppercase;
  color: #004F88;
}
@media (max-width: 992px) {
  .kl-hero .text-content h2 {
    font-size: 32px;
    line-height: 35px;
    text-align: center;
  }
}
.kl-hero .text-content p {
  font-weight: 600;
  font-size: 45px;
  line-height: 45px;
  text-transform: uppercase;
  color: #004F88;
}
@media (max-width: 992px) {
  .kl-hero .text-content p {
    font-size: 22px;
    line-height: 25px;
    text-align: center;
  }
}
.kl-hero .text-content p span {
  font-weight: 800;
}

.prevention .title-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.prevention .title-content::after {
  content: "";
  background: url(../img/arrow-down.svg);
  width: 10%;
  height: 66%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  right: 0px;
  bottom: -120px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .prevention .title-content::after {
    height: 40%;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .prevention .title-content::after {
    bottom: -70px;
    right: 20px;
    height: 40%;
  }
}
@media (max-width: 500px) {
  .prevention .title-content::after {
    display: none;
  }
}
.prevention .title-content h1 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  color: #46C6E6;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .prevention .title-content h1 {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .prevention .title-content h1 {
    line-height: 35px;
  }
}
.prevention .title-content h1::before {
  content: "";
  background: url(../img/arrow-right.svg);
  width: 20%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: -170px;
  top: -80px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .prevention .title-content h1::before {
    left: -70px;
    top: -80px;
    height: 50%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .prevention .title-content h1::before {
    left: -70px;
    top: -80px;
    height: 100%;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .prevention .title-content h1::before {
    left: -20px;
    top: -40px;
    height: 50%;
  }
}
@media (max-width: 500px) {
  .prevention .title-content h1::before {
    display: none;
  }
}
.prevention .title-content p {
  font-weight: 400;
  font-size: 25px;
  line-height: 60%;
  text-align: center;
  color: #004F88;
  margin: 10px 0 10px;
}
@media (max-width: 992px) {
  .prevention .title-content p {
    font-size: 18px;
  }
}
.prevention .title-content h2 {
  font-weight: 700;
  font-size: 25px;
  line-height: 40px;
  text-align: center;
  color: #004F88;
}
@media (max-width: 992px) {
  .prevention .title-content h2 {
    font-size: 20px;
    line-height: 20px;
  }
}
.prevention .title-content hr {
  height: 10px;
  width: 30%;
  border-radius: 10px;
  background: linear-gradient(90deg, #70C0E4 23.85%, #004F88 105.38%);
  opacity: 1 !important;
  margin-top: 1.5rem;
}
.prevention .card-image {
  background-image: url(../img/bulle+femme.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: 10rem;
  max-width: 75%;
}
@media (max-width: 768px) {
  .prevention .card-image {
    margin-top: 5rem;
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .prevention .card-image {
    background-image: url(../img/bulle-femme.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-top: 5rem;
    max-width: 100%;
  }
}
.prevention .card-image .card-content {
  padding: 25rem 12rem 13rem 12rem;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .prevention .card-image .card-content {
    padding: 30rem 8rem 10rem 8rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .prevention .card-image .card-content {
    padding: 26rem 8rem 10rem 8rem;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .prevention .card-image .card-content {
    padding: 20rem 4rem 8rem 4rem;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .prevention .card-image .card-content {
    padding: 13rem 4rem 4rem 2rem;
  }
}
@media (min-width: 351px) and (max-width: 420px) {
  .prevention .card-image .card-content {
    padding: 14rem 2rem 2rem 0rem;
  }
}
@media (min-width: 350px) and (max-width: 500px) {
  .prevention .card-image .card-content {
    padding: 11rem 5rem 3rem 2rem;
  }
}
@media (max-width: 350px) {
  .prevention .card-image .card-content {
    padding: 13rem 3rem 4rem 1rem;
  }
}
.prevention .card-image .card-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  position: relative;
  margin-bottom: 3rem;
}
@media (min-width: 768px) and (max-width: 992px) {
  .prevention .card-image .card-content p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 1rem;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .prevention .card-image .card-content p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 1rem;
  }
}
@media (min-width: 350px) and (max-width: 500px) {
  .prevention .card-image .card-content p {
    font-size: 17px;
    line-height: 18px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 350px) {
  .prevention .card-image .card-content p {
    font-size: 16px;
    line-height: 15px;
    margin-bottom: 0.5rem;
  }
}
.prevention .card-image .card-content p::before {
  content: "";
  background: url(../img/warning.svg);
  width: 120%;
  height: 80%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: -20px;
  top: -120px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .prevention .card-image .card-content p::before {
    top: -80px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .prevention .card-image .card-content p::before {
    left: 0px;
    top: -70px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .prevention .card-image .card-content p::before {
    left: 10px;
    top: -60px;
    height: 30%;
  }
}
@media (max-width: 500px) {
  .prevention .card-image .card-content p::before {
    left: 0px;
    top: -50px;
    display: none;
  }
}
.prevention .card-image .card-content p span {
  font-weight: 800;
}
.prevention .card-image .card-content h5 {
  color: #fff;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .prevention .card-image .card-content h5 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .prevention .card-image .card-content h5 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .prevention .card-image .card-content h5 {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 350px) and (max-width: 500px) {
  .prevention .card-image .card-content h5 {
    font-size: 10px;
    line-height: 12px;
  }
}
@media (max-width: 350px) {
  .prevention .card-image .card-content h5 {
    font-size: 10px;
    line-height: 10px;
  }
}
.prevention .btn-content {
  display: flex;
  justify-content: center;
  margin-top: -60px;
}
@media (max-width: 550px) {
  .prevention .btn-content {
    margin-top: 0;
  }
}

.influenceurs {
  position: relative;
}
.influenceurs .illu-influenceur {
  position: absolute;
  right: 0;
  bottom: 420px;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1000px) {
  .influenceurs .illu-influenceur {
    bottom: 300px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .influenceurs .illu-influenceur {
    bottom: 250px;
  }
}
@media (min-width: 350px) and (max-width: 500px) {
  .influenceurs .illu-influenceur {
    width: 35%;
    bottom: 235px;
  }
}
@media (min-width: 315px) and (max-width: 350px) {
  .influenceurs .illu-influenceur {
    width: 35%;
    bottom: 235px;
  }
}
@media (max-width: 315px) {
  .influenceurs .illu-influenceur {
    bottom: 260px;
  }
}
.influenceurs .title-content {
  padding: 20rem 0 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (max-width: 992px) {
  .influenceurs .title-content {
    padding: 10rem 0 5rem;
  }
}
@media (max-width: 500px) {
  .influenceurs .title-content {
    padding: 10rem 0 3rem;
  }
}
.influenceurs .title-content::before {
  content: "";
  background: url(../img/warning+arrow.svg);
  width: 20%;
  height: 25%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: -80px;
  top: -80px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .influenceurs .title-content::before {
    top: -10px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .influenceurs .title-content::before {
    left: -40px;
    top: 0;
    height: 15%;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .influenceurs .title-content::before {
    left: -30px;
    top: -40px;
    height: 15%;
  }
}
@media (max-width: 500px) {
  .influenceurs .title-content::before {
    left: 20px;
    top: 10px;
    height: 15%;
  }
}
.influenceurs .title-content h1 {
  font-weight: 800;
  font-size: 60px;
  text-align: center;
  color: #004F88;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  margin-bottom: 8rem;
}
@media (min-width: 500px) and (max-width: 992px) {
  .influenceurs .title-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 500px) {
  .influenceurs .title-content h1 {
    font-size: 30px;
    margin-bottom: 3rem;
  }
}
.influenceurs .title-content h1:after {
  content: "";
  background: url(../img/bg-title.svg);
  background-size: 100% 100%;
  position: absolute;
  width: 115%;
  height: 100%;
  padding: 8rem;
  z-index: -1;
}
.influenceurs .title-content p {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #004F88;
  padding: 0 14rem;
}
@media (min-width: 500px) and (max-width: 992px) {
  .influenceurs .title-content p {
    padding: 0 1rem;
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 500px) {
  .influenceurs .title-content p {
    font-size: 13px;
    line-height: 20px;
    padding: 0 1rem;
  }
}
.influenceurs .title-content p b {
  font-weight: 700;
}
.influenceurs .title-content p span {
  font-family: "Gochi Hand", cursive;
  color: #70C0E4;
}
.influenceurs .title-content .images-content {
  display: flex;
  margin: 4rem 0 3rem;
}
@media (max-width: 500px) {
  .influenceurs .title-content .images-content {
    margin: 1rem 0 0rem;
  }
}
@media (max-width: 500px) {
  .influenceurs .title-content .images-content img {
    height: 70%;
    margin: 1rem 0 0rem;
  }
}
.influenceurs .infos-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.influenceurs .infos-content p {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: #004F88;
  padding: 4rem 18rem;
  margin: 0;
}
@media (max-width: 1200px) {
  .influenceurs .infos-content p {
    padding: 2rem 1rem;
  }
}
@media (max-width: 768px) {
  .influenceurs .infos-content p {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 500px) {
  .influenceurs .infos-content p {
    font-size: 21px;
    line-height: 30px;
  }
}
.influenceurs .infos-content p span {
  font-family: "Gochi Hand", cursive;
  color: #70C0E4;
}

:root {
  --main-size: .7;
  --speed-line-with: 150px;
}

.image-content-right {
  text-align: end;
  margin: 5rem 0;
}
.image-content-right .woman-run {
  list-style: none;
  animation: fix 0.5s ease-in-out alternate infinite;
}
.image-content-right .woman-run line {
  width: var(--speed-line-with);
  height: 10px;
  margin: 30px 0;
  animation: speed 1s ease-out infinite;
  transform-origin: 100%;
}
.image-content-right .woman-run line:nth-child(2) {
  animation-delay: 0.6s;
  width: calc(var(--speed-line-with) - 40px);
}
.image-content-right .woman-run line:nth-child(3) {
  animation-delay: 0.3s;
  width: calc(var(--speed-line-with) - 80px);
}
.image-content-right .woman-run line:nth-child(4) {
  animation-delay: 0.9s;
  width: var(--speed-line-with);
}
.image-content-right .woman-run line:nth-child(5) {
  animation-delay: 0.6s;
  width: calc(var(--speed-line-with) - 40px);
}
.image-content-right .woman-run line:nth-child(6) {
  animation-delay: 0.3s;
  width: calc(var(--speed-line-with) - 80px);
}
@keyframes fix {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0) scale(var(--main-size));
  }
  100% {
    transform: translateY(5px) scale(var(--main-size));
  }
}
@keyframes humea {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-130px) translateX(-30px);
    opacity: 0;
  }
}
@keyframes speed {
  0% {
    transform: translateX(0) scaleX(0);
    opacity: 0;
  }
  100% {
    transform: translateX(-100px) scaleX(1);
    opacity: 0.9;
  }
}

.course {
  padding: 40rem 0 31rem;
  position: relative;
  margin-top: -20rem;
}
@media (min-width: 500px) and (max-width: 768px) {
  .course {
    padding: 30rem 0 30rem;
    margin-top: -15rem;
  }
}
@media (max-width: 500px) {
  .course {
    padding: 13rem 0 25rem;
    margin-top: -15rem;
  }
}
.course .img-bg {
  background: url(../img/index-fond2.svg) center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 118%;
  position: absolute;
  margin-top: -18rem;
  z-index: -1;
}
@media (max-width: 768px) {
  .course .img-bg {
    margin-top: -13rem;
  }
}
.course .logo-psppsv {
  position: absolute;
  right: 100px;
  width: 20%;
  bottom: 175px;
}
@media (max-width: 500px) {
  .course .logo-psppsv {
    bottom: 150px;
    width: 50%;
  }
}

.fonds {
  padding: 0 0 10rem;
}

.course h1,
.fonds h1 {
  font-weight: 700;
  font-size: 42px;
  line-height: 80%;
  text-align: center;
  text-transform: uppercase;
  color: rgba(0, 79, 136, 0.74);
  margin: 0;
  position: relative;
}
@media (min-width: 500px) and (max-width: 992px) {
  .course h1,
  .fonds h1 {
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  .course h1,
  .fonds h1 {
    font-size: 28px;
  }
}
.course h1::before,
.fonds h1::before {
  content: "";
  background: url(../img/arrow-down2.svg);
  width: 20%;
  height: 300%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: -70px;
  top: -50px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .course h1::before,
  .fonds h1::before {
    left: -70px;
    top: -80px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .course h1::before,
  .fonds h1::before {
    left: 30px;
    top: -40px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .course h1::before,
  .fonds h1::before {
    left: -50px;
    top: -40px;
  }
}
@media (max-width: 500px) {
  .course h1::before,
  .fonds h1::before {
    display: none;
  }
}
.course h2,
.fonds h2 {
  font-weight: 700;
  font-size: 45px;
  text-align: center;
  text-transform: uppercase;
  color: #005188;
}
@media (min-width: 500px) and (max-width: 992px) {
  .course h2,
  .fonds h2 {
    font-size: 36px;
  }
}
@media (max-width: 500px) {
  .course h2,
  .fonds h2 {
    font-size: 26px;
  }
}
.course p,
.fonds p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  text-align: center;
  color: #004F88;
  margin-top: 4rem;
  padding: 0 1rem;
}
@media (min-width: 500px) and (max-width: 992px) {
  .course p,
  .fonds p {
    font-size: 22px;
    line-height: 30px;
    margin-top: 3rem;
  }
}
@media (max-width: 500px) {
  .course p,
  .fonds p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 2rem;
  }
}
.course p span,
.fonds p span {
  font-weight: 700;
}

.tache-bleu-1 {
  width: 100%;
  position: absolute;
  top: 50px;
  z-index: -1;
}

.tache-bleu-2 {
  width: 100%;
  position: absolute;
  top: 50px;
  z-index: -1;
}

.tache-bleu-3 {
  width: 100%;
  position: absolute;
  top: 50px;
  z-index: -1;
}

.others-informations {
  padding: 30rem 0 5rem;
  position: relative;
}
@media (max-width: 500px) {
  .others-informations {
    margin-top: -190px;
  }
}
.others-informations:before {
  content: "";
  background: url(../img/blue-points-2.svg);
  background-repeat: no-repeat;
  width: 20%;
  height: 20%;
  position: absolute;
  left: 0;
  top: 400px;
}
@media (max-width: 500px) {
  .others-informations:before {
    display: none;
  }
}
.others-informations .img-bg {
  background: url(../img/tache-bleu-4.svg) center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.others-informations .container {
  margin-top: -170px;
}
.others-informations .illu-man-laptop {
  width: 30%;
  height: 25%;
  position: absolute;
  top: -85px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .others-informations .illu-man-laptop {
    top: -70px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .others-informations .illu-man-laptop {
    top: -50px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .others-informations .illu-man-laptop {
    top: -25px;
  }
}
@media (max-width: 500px) {
  .others-informations .illu-man-laptop {
    width: 40%;
    top: -22px;
  }
}
.others-informations .intro {
  margin-bottom: 12rem;
  max-width: 90%;
  text-align: center;
}
@media (max-width: 500px) {
  .others-informations .intro {
    margin-bottom: 2rem;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .others-informations .intro img {
    width: 40%;
  }
}
.others-informations .intro svg {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  transform: rotate(30deg);
}
@media (max-width: 500px) {
  .others-informations .intro svg {
    display: none;
  }
}
.others-informations .intro svg .draw-arrow {
  stroke-width: 5;
  stroke: #70C0E4;
  fill: none;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-name: draw;
}
.others-informations .intro svg .draw-arrow.tail-1 {
  animation-delay: 0.5s;
}
.others-informations .intro svg .draw-arrow.tail-2 {
  animation-delay: 0.7s;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.others-informations .intro p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 36px;
  color: #FFFFFF;
  background-image: url(../img/bubble-with-outline.svg);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 11rem 9rem 8rem 5rem;
  position: relative;
}
.others-informations .intro p:before {
  content: "";
  position: absolute;
  background: url(../img/blue-points.svg);
  background-repeat: no-repeat;
  left: -130px;
  bottom: -130px;
  width: 50%;
  height: 60%;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 992px) {
  .others-informations .intro p:before {
    left: -90px;
    bottom: -50px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .others-informations .intro p:before {
    left: 0px;
    bottom: -50px;
  }
}
@media (max-width: 500px) {
  .others-informations .intro p:before {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .others-informations .intro p {
    padding: 7rem 6rem 8rem 7rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .others-informations .intro p {
    padding: 8rem 4rem 7rem 5rem;
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .others-informations .intro p {
    padding: 6rem 2rem 5rem 3rem;
    font-size: 22px;
    line-height: 24px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .others-informations .intro p {
    padding: 6rem 5rem 4rem 3rem;
    font-size: 20px;
    line-height: 26px;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .others-informations .intro p {
    padding: 7rem 2rem 5rem 3rem;
    background-position: center;
    font-size: 15px;
    line-height: 16px;
  }
}
.others-informations .card-article {
  background: url(../img/article-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  margin-bottom: 3rem;
}
.others-informations .card-article:hover .mask {
  opacity: 0;
}
.others-informations .card-article:hover .card-text {
  color: #004F88;
}
.others-informations .card-article:hover .card-text h4 {
  background-image: url(../img/outline-btn-blue.svg);
}
.others-informations .card-article .mask {
  opacity: 1;
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 79, 136, 0) 17.1%, rgba(0, 79, 136, 0.74) 100%);
}
.others-informations .card-article .card-text {
  position: absolute;
  bottom: 0;
  padding: 1.5rem 2.8rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .others-informations .card-article .card-text {
    padding: 1.5rem 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .others-informations .card-article .card-text {
    padding: 1rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .others-informations .card-article .card-text {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 500px) {
  .others-informations .card-article .card-text {
    padding: 1rem 1.5rem;
  }
}
.others-informations .card-article .card-text h4 {
  font-family: "Gochi Hand", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 26px;
  background-image: url(../img/outline-btn.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 48%;
  transform: matrix(0.97, -0.23, 0.23, 0.97, 0, 0) translateY(-50%);
  position: absolute;
  padding: 2.2rem;
  margin-left: -1rem;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .others-informations .card-article .card-text h4 {
    top: 40%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .others-informations .card-article .card-text h4 {
    top: 25%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .others-informations .card-article .card-text h4 {
    padding: 1rem;
    top: 40%;
    font-size: 20px;
    line-height: 26px;
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .others-informations .card-article .card-text h4 {
    padding: 1.7rem;
    font-size: 30px;
    line-height: 26px;
    margin-left: -0.5rem;
    top: 42%;
  }
}
.others-informations .card-article .card-text h3 {
  font-family: "Gochi Hand", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 26px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 992px) {
  .others-informations .card-article .card-text h3 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 500px) {
  .others-informations .card-article .card-text h3 {
    font-size: 30px;
    line-height: 20px;
    margin-bottom: 0.5rem;
  }
}
.others-informations .card-article .card-text p {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 768px) and (max-width: 992px) {
  .others-informations .card-article .card-text p {
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 500px) {
  .others-informations .card-article .card-text p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0.5rem;
  }
}
.others-informations .end-content {
  text-align: center;
  margin-top: 17rem;
  position: relative;
}
@media (max-width: 992px) {
  .others-informations .end-content {
    margin-top: 25rem;
  }
}
@media (max-width: 500px) {
  .others-informations .end-content {
    margin-top: 14rem;
  }
}
.others-informations .end-content img {
  position: absolute;
  left: 0;
  top: -200px;
}
@media (max-width: 992px) {
  .others-informations .end-content img {
    top: -370px;
  }
}
@media (max-width: 500px) {
  .others-informations .end-content img {
    width: 55%;
    top: -240px;
  }
}
@media (max-width: 380px) {
  .others-informations .end-content img {
    top: -190px;
  }
}
.others-informations .end-content p {
  font-weight: 700;
  font-size: 25px;
  line-height: 47px;
  text-align: center;
  color: #004F88;
  margin-bottom: 2rem;
}
.others-informations .end-content a {
  font-weight: 700;
  font-size: 25px;
  line-height: 47px;
  text-align: center;
  color: #FFFFFF;
  background: #004F88;
  border-radius: 50px;
  padding: 1.5rem 3.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(89.36deg, #004F88 100%, #70C0E4 0%);
}
.others-informations .end-content a:hover {
  background: linear-gradient(89.36deg, #70C0E4 0.55%, #004F88 99.45%);
}

.partenaires {
  position: relative;
  padding: 20rem 0 15rem;
}
@media (max-width: 500px) {
  .partenaires {
    padding: 7rem 0 0;
  }
}
.partenaires .img-bg {
  background: url(../img/bg-end-section.svg) center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.partenaires .illu-man {
  width: 35%;
  height: 50%;
  position: absolute;
  top: -420px;
  right: 0;
}
@media (min-width: 768px) and (max-width: 992px) {
  .partenaires .illu-man {
    width: 25%;
    height: 40%;
    top: -330px;
  }
}
@media (max-width: 768px) {
  .partenaires .illu-man {
    width: 25%;
    height: 15%;
    top: 30px;
  }
}
@media (max-width: 500px) {
  .partenaires .illu-man {
    width: 40%;
    height: 30%;
    top: 0px;
  }
}
.partenaires p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  color: #FFFFFF;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .partenaires p {
    font-size: 22px;
    line-height: 30px;
    padding: 0 1rem;
  }
}
@media (max-width: 500px) {
  .partenaires p {
    margin-bottom: 2rem;
    font-size: 19px;
  }
}
.partenaires p span {
  font-weight: 700;
}

.z99 {
  position: relative;
  z-index: 8;
}

.pt-footer {
  padding-top: 120px;
}
@media (max-width: 500px) {
  .pt-footer {
    padding-top: 30px;
  }
}

footer {
  background: #004F88;
  position: relative;
}
@media (max-width: 500px) {
  footer img {
    display: none;
  }
}
footer:before {
  position: absolute;
  height: 70px;
  background: #70c0e4;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  display: block;
  z-index: 1;
}
footer .logo {
  max-width: 100%;
  height: auto;
}
footer .main {
  max-width: 100%;
  height: auto;
}
footer .menu {
  padding-bottom: 6rem;
}
@media (max-width: 500px) {
  footer .menu {
    padding-bottom: 2rem;
  }
}
footer .menu a {
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  footer .menu a {
    font-size: 18px;
    line-height: 22px;
  }
}
footer .menu a:hover {
  color: #70C0E4;
}
footer .social-media p {
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #70C0E4;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  footer .social-media p {
    font-size: 22px;
    line-height: 24px;
  }
}
footer .social-media .logos-content {
  position: relative;
  justify-content: space-evenly;
}
footer .social-media .logos-content li {
  display: inline-block;
}
footer .social-media .logos-content:before {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -30px;
  background: url(../img/arrow-blue-light.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20%;
  height: 100%;
}
@media (max-width: 768px) {
  footer .social-media .logos-content:before {
    display: none;
  }
}
footer .social-media .logos-content .mx--3 {
  margin: 0 -2rem;
}
@media (max-width: 1200px) {
  footer .social-media .logos-content .mx--3 {
    margin: 0 -1rem;
  }
}
footer .social-media .logos-content a {
  display: block;
  z-index: 10;
  transition: all 0.4s ease;
  background: #70c0e4;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  padding: 10px;
}
footer .social-media .logos-content a:hover {
  transform: scale(1.1);
}
@media (max-width: 500px) {
  footer .social-media .logos-content a img {
    width: 80%;
  }
}
footer .mentions {
  margin-top: 4rem;
}
footer .mentions a {
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  footer .mentions a {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 500px) {
  footer .mentions a {
    font-size: 10px;
    line-height: 5px;
  }
}
footer .mentions a:hover {
  color: #70C0E4;
}

.navbar-dark .navbar-toggler {
  border-color: transparent !important;
}

@media (max-width: 500px) {
  .insta-btn p {
    font-size: 18px !important;
    margin-bottom: 0 !important;
  }
  .insta-btn a {
    font-size: 17px !important;
    padding: 0.5rem 2.5rem !important;
  }
}

@media (max-width: 500px) {
  .social-media img {
    display: block;
  }
}
.modal {
  z-index: 99999;
}

.modal {
  display: none;
}

.modal-dialog {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  max-width: none;
}

.modal-content {
  height: auto;
  height: 100vh;
  border-radius: 0;
  border: none;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #fff;
  pointer-events: auto;
  background: linear-gradient(90deg, #004F88 0%, #70C0E4 80.29%);
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.close-modal-presse {
  cursor: pointer;
  position: absolute;
  top: 100px;
  right: 55px;
  width: 42px;
  height: 42px;
  z-index: 3;
}
@media (max-width: 500px) {
  .close-modal-presse {
    height: 20px;
    width: 20px;
  }
}

.modal-body {
  overflow-y: hidden;
  padding-top: 10%;
}
@media (max-width: 992px) {
  .modal-body {
    padding-top: 13%;
  }
}
@media (max-width: 700px) {
  .modal-body {
    padding-top: 18%;
  }
}
@media (max-width: 500px) {
  .modal-body {
    padding-top: 35%;
  }
}
.modal-body h2 {
  margin-bottom: 0;
  padding-bottom: 50px;
  font-size: 60px;
  line-height: 60px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .modal-body h2 {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  .modal-body h2 {
    padding-bottom: 15px;
  }
}
.modal-body .link-pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-body .link-pdf a {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 40px;
  border-radius: 10px;
  border: 1px solid #FFF8EE;
  width: 30%;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 700;
  transition: all 0.3s;
  background: #70C0E4;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
.modal-body .link-pdf a:hover {
  transition: 0.5s ease-in-out;
  background: #fff;
  color: #70C0E4;
}
@media (max-width: 992px) {
  .modal-body .link-pdf a {
    width: 80%;
  }
}
@media (max-width: 420px) {
  .modal-body .link-pdf a {
    font-size: 15PX;
  }
}
.modal-body .link-contact a {
  display: block;
  margin: auto;
  color: #fff;
}

.close {
  display: none;
}

/* si tu veux un ptit efet tu peut très bien faire un truc du genre, mais je ne suis pas sur que le code en l'état marche */
.close {
  transition: all 0.5s;
  opacity: 0;
}

.show {
  transition: all 0.5s;
  display: block;
}

.auto-examen .kl-hero h1 {
  text-transform: uppercase;
  font-size: 80px;
  background-color: linear-gradient(#004F88, #70C0E4);
  background-clip: text;
  text-align: center;
  font-weight: 800;
  background-color: #f3ec78;
  background-image: linear-gradient(90deg, #004F88 40%, #70C0E4);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
@media (max-width: 500px) {
  .auto-examen .kl-hero h1 {
    font-size: 40px;
  }
}
.auto-examen .kl-hero p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  text-align: center;
  color: #004F88;
  margin-top: 4rem;
  padding: 0 1rem;
}
@media (min-width: 500px) and (max-width: 992px) {
  .auto-examen .kl-hero p {
    font-size: 22px;
    line-height: 30px;
    margin-top: 3rem;
  }
}
@media (max-width: 500px) {
  .auto-examen .kl-hero p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 2rem;
  }
}
.auto-examen .kl-hero span {
  font-weight: 700;
}
.auto-examen .others-informations {
  padding: 8rem 0 11rem;
  position: relative;
}
@media (max-width: 700px) {
  .auto-examen .others-informations {
    margin-top: 0;
    padding: 8rem 0 7rem;
  }
}
.auto-examen .others-informations:before {
  content: "";
  background: url(../img/blue-points-2.svg);
  background-repeat: no-repeat;
  width: 20%;
  height: 20%;
  position: absolute;
  left: 0;
  top: 400px;
}
@media (max-width: 700px) {
  .auto-examen .others-informations:before {
    display: none;
  }
}
.auto-examen .others-informations .img-bg {
  background: url(../img/tache-bleu-4.svg) center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.auto-examen .others-informations .container {
  margin-top: -170px;
}
.auto-examen .others-informations .illu-man-laptop {
  width: 30%;
  height: 25%;
  position: absolute;
  top: -85px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .auto-examen .others-informations .illu-man-laptop {
    top: -70px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .auto-examen .others-informations .illu-man-laptop {
    top: -50px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .auto-examen .others-informations .illu-man-laptop {
    top: -25px;
  }
}
@media (max-width: 500px) {
  .auto-examen .others-informations .illu-man-laptop {
    width: 40%;
    top: -22px;
  }
}
.auto-examen .others-informations .intro {
  margin-bottom: 12rem;
  max-width: 90%;
  text-align: center;
}
@media (max-width: 700px) {
  .auto-examen .others-informations .intro {
    margin-bottom: 2rem;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .auto-examen .others-informations .intro img {
    width: 40%;
  }
}
.auto-examen .others-informations .intro svg {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  transform: rotate(30deg);
}
.auto-examen .others-informations .intro svg .draw-arrow {
  stroke: #70C0E4 !important;
}
@media (max-width: 1300px) {
  .auto-examen .others-informations .intro svg {
    display: none;
  }
}
.auto-examen .others-informations .intro svg .draw-arrow {
  stroke-width: 5;
  stroke: dodgerblue;
  fill: none;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-name: draw;
}
.auto-examen .others-informations .intro svg .draw-arrow.tail-1 {
  animation-delay: 0.5s;
}
.auto-examen .others-informations .intro svg .draw-arrow.tail-2 {
  animation-delay: 0.7s;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (min-width: 900px) and (max-width: 1300px) {
  .auto-examen .others-informations .intro .text-content {
    width: 100%;
  }
}
.auto-examen .others-informations .intro p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 36px;
  color: #FFFFFF;
  background-image: url(../img/bubble-with-outline.svg);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 11rem 9rem 8rem 5rem;
  position: relative;
}
.auto-examen .others-informations .intro p:before {
  content: "";
  position: absolute;
  background: url(../img/blue-points.svg);
  background-repeat: no-repeat;
  left: -130px;
  bottom: -130px;
  width: 50%;
  height: 60%;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 992px) {
  .auto-examen .others-informations .intro p:before {
    left: -90px;
    bottom: -50px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .auto-examen .others-informations .intro p:before {
    left: 0px;
    bottom: -50px;
  }
}
@media (max-width: 700px) {
  .auto-examen .others-informations .intro p:before {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .auto-examen .others-informations .intro p {
    padding: 5rem 6rem 8rem 7rem;
  }
}
@media (min-width: 900px) and (max-width: 1300px) {
  .auto-examen .others-informations .intro p {
    padding: 8rem 3rem 5rem 3rem;
    font-size: 23px;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .auto-examen .others-informations .intro p {
    padding: 6rem 2rem 5rem 3rem;
    font-size: 22px;
    line-height: 24px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .auto-examen .others-informations .intro p {
    padding: 6rem 5rem 4rem 3rem;
    font-size: 20px;
    line-height: 26px;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .auto-examen .others-informations .intro p {
    padding: 7rem 2rem 5rem 3rem;
    background-position: center;
    font-size: 15px;
    line-height: 16px;
  }
}
.auto-examen .heros h1 {
  font-weight: 700;
  font-size: 42px;
  line-height: 80%;
  text-align: center;
  text-transform: uppercase;
  color: rgba(0, 79, 136, 0.74);
  margin: 0;
  position: relative;
}
@media (min-width: 1300px) and (max-width: 1700px) {
  .auto-examen .heros h1 {
    line-height: 110%;
  }
}
@media (min-width: 900px) and (max-width: 1300px) {
  .auto-examen .heros h1 {
    line-height: 110%;
  }
}
@media (max-width: 700px) {
  .auto-examen .heros h1 {
    font-size: 21px;
  }
}
.auto-examen .heros h2 {
  font-weight: 700;
  font-size: 45px;
  text-align: center;
  text-transform: uppercase;
  color: #005188;
}
@media (max-width: 700px) {
  .auto-examen .heros h2 {
    font-size: 25px;
  }
}
.auto-examen .heros .img-bg {
  background: url(../img/tache-bleu-5.svg) center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 85rem;
  z-index: -1;
}
@media (min-width: 900px) and (max-width: 1300px) {
  .auto-examen .heros .img-bg {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .auto-examen .heros .img-bg {
    top: 80rem;
    height: 50%;
  }
}
@media (max-width: 500px) {
  .auto-examen .heros .img-bg {
    top: 55rem;
  }
}
@media (max-width: 380px) {
  .auto-examen .heros .img-bg {
    top: 50rem;
  }
}
.auto-examen .heros .superman {
  position: absolute;
  right: 0;
  height: 60%;
  margin-top: -20%;
  animation: levitation 3s ease-in-out infinite;
}
@media (min-width: 700px) and (max-width: 1300px) {
  .auto-examen .heros .superman {
    height: 30%;
  }
}
@media (max-width: 700px) {
  .auto-examen .heros .superman {
    height: 20%;
    margin-top: -44%;
  }
}
.auto-examen .heros .superwoman {
  position: absolute;
  left: 0;
  height: 60%;
  right: 0;
  margin-top: 15%;
  animation: levitation 2s ease-in-out infinite;
}
@media (min-width: 700px) and (max-width: 1300px) {
  .auto-examen .heros .superwoman {
    height: 30%;
  }
}
@media (max-width: 700px) {
  .auto-examen .heros .superwoman {
    height: 20%;
    margin-top: 50%;
  }
}
@media (max-width: 700px) {
  .auto-examen .prevention {
    margin-top: 30%;
  }
}
.auto-examen .card {
  background-image: url(../img/bulle-femme-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  max-width: 75%;
}
@media (max-width: 768px) {
  .auto-examen .card {
    margin-top: 5rem;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .auto-examen .card {
    background-image: url(../img/bulle-femme.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-top: 5rem;
    max-width: 100%;
  }
}
.auto-examen .miroir {
  margin-top: 10%;
}
@media (max-width: 700px) {
  .auto-examen .miroir {
    margin-top: 25%;
  }
}
.auto-examen .miroir .bg {
  padding-top: 28%;
}
@media (max-width: 1300px) {
  .auto-examen .miroir .bg {
    padding-top: 40%;
  }
}
@media (max-width: 998px) {
  .auto-examen .miroir .bg {
    padding-top: 55%;
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  .auto-examen .miroir .bg {
    padding-top: 67%;
  }
}
.auto-examen .miroir:before {
  content: "";
  background: url(../img/miroir.svg) center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 40%;
  position: absolute;
}
@media (max-width: 700px) {
  .auto-examen .miroir:before {
    height: 22%;
  }
}
.auto-examen .miroir img {
  width: 3.5%;
}
.auto-examen .miroir .img-bg {
  background: url(../img/tache-bleu-6.svg) center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  margin-top: 10%;
}
@media (min-width: 1300px) and (max-width: 1800px) {
  .auto-examen .miroir .img-bg {
    height: 70%;
  }
}
@media (max-width: 700px) {
  .auto-examen .miroir .img-bg {
    height: 30%;
    margin-top: 34%;
  }
}
.auto-examen .miroir h1 {
  font-size: 38px;
  font-weight: 400;
  color: #004F88;
  width: 60%;
}
@media (max-width: 700px) {
  .auto-examen .miroir h1 {
    font-size: 15px;
  }
}
.auto-examen .ABCDE {
  margin-top: 23%;
  color: #004F88;
}
.auto-examen .ABCDE h1 {
  font-size: 48px;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .auto-examen .ABCDE h1 {
    font-size: 28px;
  }
}
.auto-examen .ABCDE img {
  max-width: 50%;
  margin: auto;
}
.auto-examen .ABCDE h6 {
  font-size: 19px;
  display: block;
  margin: auto;
  text-align: center;
  width: 80%;
  padding-top: 10%;
}
.auto-examen .ABCDE h6 span {
  font-weight: 700;
}
.auto-examen .ABCDE .gdb-list {
  margin-top: 10%;
}
@media (max-width: 700px) {
  .auto-examen .ABCDE .gdb-list div {
    margin-bottom: 20%;
  }
}
.auto-examen .partenaires {
  margin-top: 10%;
}
@media (max-width: 700px) {
  .auto-examen .partenaires .container {
    margin-top: 70%;
  }
}
.auto-examen .auto-examen-cards .img-bg {
  background: url(../img/bg-end-section.svg) center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.auto-examen .auto-examen-cards .img-bg:before {
  content: "";
  background: url(../img/laptot-savoir-plus.svg) top left;
  background-repeat: no-repeat;
  width: 100%;
  height: 40%;
  background-size: contain;
  position: absolute;
  top: -205px;
  z-index: -1;
}
@media (max-width: 700px) {
  .auto-examen .auto-examen-cards .img-bg:before {
    top: -35px;
  }
}
.auto-examen .auto-examen-cards .card-article {
  background: url(../img/article-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  margin-bottom: 3rem;
}
.auto-examen .auto-examen-cards .card-article:hover .mask {
  opacity: 0;
}
.auto-examen .auto-examen-cards .card-article:hover .card-text {
  color: #004F88;
}
.auto-examen .auto-examen-cards .card-article:hover .card-text h4 {
  background-image: url(../img/outline-btn-blue.svg);
}
.auto-examen .auto-examen-cards .card-article .mask {
  opacity: 1;
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 79, 136, 0) 17.1%, rgba(0, 79, 136, 0.74) 100%);
}
.auto-examen .auto-examen-cards .card-article .card-text {
  position: absolute;
  bottom: 0;
  padding: 1.5rem 2.8rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .auto-examen .auto-examen-cards .card-article .card-text {
    padding: 1.5rem 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .auto-examen .auto-examen-cards .card-article .card-text {
    padding: 1rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .auto-examen .auto-examen-cards .card-article .card-text {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 500px) {
  .auto-examen .auto-examen-cards .card-article .card-text {
    padding: 1rem 1.5rem;
  }
}
.auto-examen .auto-examen-cards .card-article .card-text h4 {
  font-family: "Gochi Hand", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 26px;
  background-image: url(../img/outline-btn.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 48%;
  transform: matrix(0.97, -0.23, 0.23, 0.97, 0, 0) translateY(-50%);
  position: absolute;
  padding: 2.2rem;
  margin-left: -1rem;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .auto-examen .auto-examen-cards .card-article .card-text h4 {
    top: 40%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .auto-examen .auto-examen-cards .card-article .card-text h4 {
    top: 25%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .auto-examen .auto-examen-cards .card-article .card-text h4 {
    padding: 1rem;
    top: 40%;
    font-size: 20px;
    line-height: 26px;
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .auto-examen .auto-examen-cards .card-article .card-text h4 {
    padding: 1.7rem;
    font-size: 30px;
    line-height: 26px;
    margin-left: -0.5rem;
    top: 42%;
  }
}
.auto-examen .auto-examen-cards .card-article .card-text h3 {
  font-family: "Gochi Hand", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 26px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 992px) {
  .auto-examen .auto-examen-cards .card-article .card-text h3 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 500px) {
  .auto-examen .auto-examen-cards .card-article .card-text h3 {
    font-size: 30px;
    line-height: 20px;
    margin-bottom: 0.5rem;
  }
}
.auto-examen .auto-examen-cards .card-article .card-text p {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 768px) and (max-width: 992px) {
  .auto-examen .auto-examen-cards .card-article .card-text p {
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 500px) {
  .auto-examen .auto-examen-cards .card-article .card-text p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0.5rem;
  }
}

@keyframes levitation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}
.preventions {
  overflow-y: hidden;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .preventions .kl-hero h1 {
    font-size: 60px;
  }
}
@media (min-width: 900px) and (max-width: 1300px) {
  .preventions .kl-hero h1 {
    font-size: 50px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .preventions .kl-hero h1 {
    font-size: 40px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .preventions .kl-hero h1 {
    font-size: 40px;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .kl-hero h1 {
    font-size: 40px;
  }
}
.preventions .kl-hero p {
  font-size: 35px;
  line-height: 50px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .preventions .kl-hero p {
    font-size: 22px;
  }
}
@media (min-width: 900px) and (max-width: 1300px) {
  .preventions .kl-hero p {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .preventions .kl-hero p {
    font-size: 30px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .preventions .kl-hero p {
    margin-top: 5%;
    font-size: 24px;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .kl-hero p {
    font-size: 20px;
  }
}
.preventions .heros:before {
  content: "";
  background: url(../img/et-surtout.svg) top left;
  background-repeat: no-repeat;
  width: 100%;
  height: 70%;
  background-size: contain;
  position: absolute;
  margin-top: -200PX;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .preventions .heros:before {
    margin-top: -330px;
  }
}
@media (min-width: 900px) and (max-width: 1300px) {
  .preventions .heros:before {
    margin-top: -330px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .preventions .heros:before {
    margin-top: -330px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .preventions .heros:before {
    margin-top: -200px;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .heros:before {
    width: 40%;
    margin-top: -100px;
  }
}
.preventions .heros .img-bg {
  background: url(../img/tache-bleu-7.svg) center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 200%;
  position: absolute;
  z-index: -1;
  top: 9rem;
  margin-top: 10%;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .preventions .heros .img-bg {
    top: -16rem;
  }
}
@media (min-width: 900px) and (max-width: 1300px) {
  .preventions .heros .img-bg {
    top: -9rem;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .preventions .heros .img-bg {
    top: -2rem;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .preventions .heros .img-bg {
    top: -4rem;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .heros .img-bg {
    top: -16rem;
    height: 211%;
  }
}
.preventions .heros .img-bg::before {
  content: "";
  background: url(../img/clock.svg);
  width: 19%;
  height: 9%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  right: 27%;
  margin-top: 32%;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .preventions .heros .img-bg::before {
    top: 36rem;
  }
}
@media (min-width: 900px) and (max-width: 1300px) {
  .preventions .heros .img-bg::before {
    top: 17rem;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .preventions .heros .img-bg::before {
    margin-top: 78%;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .preventions .heros .img-bg::before {
    margin-top: 95%;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .heros .img-bg::before {
    top: -16rem;
    height: 211%;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .heros .img-bg::before {
    width: 9%;
    right: 29%;
  }
}
.preventions .heros p {
  text-align: left;
  font-size: 24px;
  color: #004F88;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .preventions .heros p {
    font-size: 22px;
  }
}
@media (min-width: 900px) and (max-width: 1300px) {
  .preventions .heros p {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .preventions .heros p {
    font-size: 20px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .preventions .heros p {
    font-size: 18px;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .heros p {
    font-size: 15px;
    margin-bottom: 1rem !important;
  }
}
.preventions .heros .description {
  margin-top: 25%;
  font-weight: bold;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .preventions .heros .description {
    margin-top: 10%;
    font-size: 22px;
  }
}
@media (min-width: 900px) and (max-width: 1300px) {
  .preventions .heros .description {
    margin-top: 10%;
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .preventions .heros .description {
    margin-top: 10%;
    font-size: 20px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .preventions .heros .description {
    margin-top: 37%;
    font-size: 18px;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .heros .description {
    margin-top: 15%;
    font-size: 18px;
  }
}
.preventions .heros .description p {
  margin-bottom: 3rem;
}
.preventions .heros .clothes {
  height: 80%;
  margin-top: -50%;
}
@media (min-width: 500px) and (max-width: 768px) {
  .preventions .heros .clothes {
    margin-top: 0;
    width: 40%;
    height: 71%;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .heros .clothes {
    margin-top: 0;
    width: 40%;
    height: 71%;
  }
}
.preventions .prevention2 {
  margin-top: 10%;
}
.preventions .prevention2 img {
  display: block;
  margin: auto;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .prevention2 img {
    max-width: 60%;
  }
}
.preventions .prevention2 .tete-card-mobile .card-background .card-overlay {
  width: 258px !important;
  display: block;
  margin: auto;
}
.preventions .prevention2 .card-background {
  height: 270px;
}
.preventions .prevention2 .card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(#E2F2FA, #105B90);
  opacity: 0.3;
  padding: 35px;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 0;
  height: 100%;
  border-radius: 15px;
  width: 93%;
}
.preventions .prevention2 .card-background:hover .card-overlay {
  opacity: 0.7;
  z-index: 0;
  width: 93%;
}
.preventions .prevention2 .card-background:hover p, .preventions .prevention2 .card-background:hover h3 {
  opacity: 1;
  position: relative;
  margin: 0;
}
.preventions .prevention2 .card-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.preventions .prevention2 .card-text h3 {
  font-family: "Gochi Hand", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}
.preventions .prevention2 .card-text p {
  font-size: 12px;
}
.preventions .prevention2 .tete-card-mobile .card-background:hover h3, .preventions .prevention2 .tete-card-mobile .card-background:hover p {
  width: 35%;
}
.preventions .prevention2 .tete-card-mobile {
  display: none;
}
@media (max-width: 1400px) {
  .preventions .prevention2 .tete-card-mobile {
    display: block;
  }
  .preventions .prevention2 .tete-card {
    display: none;
  }
}
.preventions .prevention2 .tete-card-mobile .galerie-background {
  margin-bottom: 5%;
}
.preventions .prevention2 .card-background .card-text p {
  font-size: 18px;
  text-align: left;
  color: #FFF;
  width: 75%;
  display: block;
  opacity: 0;
  margin: auto;
}
.preventions .prevention2 .card-background .card-text h3 {
  font-size: 18px;
  text-align: left;
  color: #FFF;
  width: 90%;
  display: block;
  opacity: 0;
  margin: auto;
}
@media (min-width: 400px) and (max-width: 765px) {
  .preventions .prevention2 .card-background .card-text h3 {
    width: 32%;
  }
}
.preventions .prevention2 .card-background:hover p, .preventions .prevention2 .card-background:hover h3 {
  opacity: 1;
  transition: 0.25s;
  font-size: 18px;
  text-align: left;
  color: #FFF;
  width: 80%;
  display: block;
}
@media (min-width: 400px) and (max-width: 700px) {
  .preventions .prevention2 .card-background:hover p, .preventions .prevention2 .card-background:hover h3 {
    width: 32%;
  }
}
.preventions .prevention2 p {
  margin-top: 10% !important;
  font-size: 20px;
  text-align: center;
  color: #004F88;
  width: 60%;
  display: block;
  margin: auto;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .prevention2 p {
    font-size: 16px;
    width: 85%;
  }
}
.preventions .prevention2 p span {
  font-weight: 600;
}
.preventions .tete-card {
  width: 65%;
  margin-top: 10%;
}
.preventions .produits {
  margin-bottom: 30rem;
  margin-top: 23%;
  color: #004F88;
}
@media (min-width: 500px) and (max-width: 800px) {
  .preventions .produits {
    margin-bottom: 10rem;
  }
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .produits {
    margin-bottom: 8rem;
  }
}
.preventions .produits h1 {
  font-size: 34px;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .produits h1 {
    font-size: 24px;
  }
}
.preventions .produits h1 span {
  font-weight: 700;
}
.preventions .produits img {
  max-width: 50%;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .produits img {
    max-width: 30%;
    margin-top: 20%;
  }
}
.preventions .produits h6 {
  text-align: center;
  padding-top: 10%;
}
.preventions .produits .liste-produits {
  margin-top: 10%;
  align-items: end;
}
.preventions .produits .bg {
  margin-top: 45%;
}
.preventions .produits .img-bg {
  background: url(../img/tache-bleu-8.svg) center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 260%;
  position: absolute;
  z-index: -1;
  margin-top: -42%;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .produits .img-bg {
    display: none;
  }
}
.preventions .map .btn-content {
  display: flex;
  justify-content: center;
}
.preventions .map .tel-map {
  display: block;
  margin: auto;
  margin-top: 10%;
  max-width: 70%;
}
.preventions .map p {
  text-align: center;
  font-size: 32px;
  color: #004F88;
  font-weight: 700;
}
.preventions .map p span {
  font-family: "Gochi Hand", sans-serif;
  color: #70C0E4;
}
.preventions .indices {
  margin-top: 15%;
}
.preventions .indices .img-bg {
  background: url(../img/tache-bleu-9.svg) center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 260%;
  position: absolute;
  z-index: -1;
  margin-top: -45%;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .indices .img-bg {
    display: none;
  }
}
.preventions .indices .bg {
  margin-top: 15%;
}
.preventions .indices .first {
  margin-top: 15%;
}
.preventions .indices p {
  margin-top: 25%;
  font-size: 20px;
  text-align: center;
  color: #004F88;
  width: 60%;
  display: block;
  margin: auto;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .indices p {
    font-size: 18px;
    width: 85%;
  }
}
.preventions .indices p span {
  font-weight: 600;
}
.preventions .indices::before {
  content: "";
  background: url(../img/warning+arrow2.svg);
  width: 20%;
  height: 25%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  margin-top: -3%;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .indices::before {
    margin-top: -12%;
  }
}
.preventions .indices::after {
  content: "";
  background: url(../img/2-course.svg);
  width: 65%;
  height: 65%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -5%;
}
.preventions .prevention {
  margin-top: 25%;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .prevention {
    margin-top: 50%;
  }
}
.preventions .prevention .card-image .card-content {
  padding: 25rem 8rem 13rem 6rem;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .prevention .card-image .card-content {
    padding: 25rem 3rem 16rem 0rem;
  }
}
.preventions .prevention .card-image .card-content p::before {
  top: -175px;
  left: 15px;
}
.preventions .last-content {
  margin-top: 15%;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .last-content {
    margin-top: -85px;
  }
}
.preventions .last-content::before {
  content: "";
  background: url(../img/sparkles.svg);
  width: 9%;
  height: 35%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  right: 0px;
  margin-top: -8%;
  overflow-y: hidden;
}
.preventions .last-content p {
  text-align: center;
  font-size: 24px;
  color: #004F88;
}
@media (min-width: 200px) and (max-width: 500px) {
  .preventions .last-content p {
    font-size: 16px;
  }
}
.preventions .last-content p span {
  font-weight: 700;
}

@media (max-width: 992px) {
  .cancer .prevention .card-image .card-content p::before {
    display: none;
  }
}
.cancer .others-informations {
  padding-bottom: 0;
}
.cancer .others-informations:before {
  display: none;
}
.cancer .others-informations .intro p {
  padding: 8rem 3rem 0rem 3rem;
  width: 115%;
  height: 123%;
  font-size: 23px;
}
@media (min-width: 1300px) and (max-width: 1399px) {
  .cancer .others-informations .intro p {
    font-size: 19px !important;
    line-height: 30px !important;
  }
}
@media (min-width: 700px) and (max-width: 899px) {
  .cancer .others-informations .intro p {
    padding: 4rem 3rem 0rem 3rem;
    font-size: 10px;
  }
}
@media (max-width: 700Px) {
  .cancer .others-informations .intro p {
    margin-bottom: 70px;
    font-size: 10px;
    padding: -1rem 3rem 0px 3rem;
  }
}
@media (min-width: 1300px) and (max-width: 1399px) {
  .cancer .others-informations .intro p {
    font-size: 19px !important;
    line-height: 30px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .cancer .others-informations .intro p {
    font-size: 17px !important;
    line-height: 30px !important;
    width: 77%;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  .cancer .others-informations .intro p {
    font-size: 15px !important;
    line-height: 30px !important;
    width: 84%;
  }
}
@media (min-width: 900px) and (max-width: 991px) {
  .cancer .others-informations .intro p {
    font-size: 15px !important;
    line-height: 28px !important;
  }
}
@media (max-width: 500px) {
  .cancer .others-informations .intro p {
    padding: 12rem 3rem 0px 3rem;
  }
}
.cancer .others-informations .intro svg {
  color: #005188;
}
.cancer .others-informations .intro img {
  width: 100%;
  margin-top: 90%;
}
@media (max-width: 700px) {
  .cancer .others-informations .intro img {
    display: none;
  }
}
.cancer .heros .img-bg {
  background-image: url(../img/tache-bleu-10.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 300%;
  position: absolute;
  top: 73rem;
  z-index: -1;
}
@media (max-width: 700px) {
  .cancer .heros .img-bg {
    height: 88%;
  }
}
.cancer .heros p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  text-align: center;
  color: #004F88;
  margin-bottom: 10%;
}
@media (max-width: 700px) {
  .cancer .heros p {
    font-size: 15Px;
  }
}
.cancer .heros p span {
  font-weight: 700;
}
.cancer .heros img {
  width: 40%;
}
.cancer .desc {
  margin-top: 18%;
}
.cancer .desc h6 {
  font-weight: 700;
  font-size: 26px;
  color: #004F88;
  margin-bottom: 10%;
}
@media (max-width: 700px) {
  .cancer .desc h6 {
    font-size: 17PX;
  }
}
@media (max-width: 700px) {
  .cancer .prevention {
    margin-top: 0;
  }
}
.cancer .prevention .card-image .card-content p::before {
  top: -190px;
}
.cancer .prevention .card-image .card-content p:before {
  top: -190px;
}

.slick-next::before {
  background: url(../img/triangle-right.svg);
  background-size: contain;
  content: "";
  /* height: 90px; */
  height: 150%;
  left: 79.3Px;
  position: absolute;
  width: 145%;
  background-repeat: no-repeat;
}

.slick-prev::before {
  background: url(../img/triangle-left.svg);
  background-size: contain;
  content: "";
  /* height: 90px; */
  height: 150%;
  right: 79.3Px;
  position: absolute;
  width: 145%;
  background-repeat: no-repeat;
}

.logo-partenaire {
  max-width: 300px;
}

.logo-partenaire-header {
  max-width: 100px;
}

.images-content img {
  border-radius: 10px;
  display: inline-block;
  margin-left: 0 !important;
  margin-bottom: 7% !important;
}
.images-content a {
  text-decoration: none;
  color: #004F88;
}
@media (max-width: 600px) {
  .images-content a {
    font-size: 11px;
  }
}
.images-content img {
  transition: transform 0.3s ease-out;
  transition: opacity 0.5;
  display: inline-block;
}
.images-content img:hover {
  transform: translate(0, -10px);
}

.slider-title {
  text-align: center;
  margin-top: -10%;
  color: #004F88;
  margin-bottom: 10%;
  font-size: 24px;
}
.slider-title:before {
  content: "";
  background: url(../img/arrow-down2.svg);
  width: 20%;
  height: 37%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: 32rem;
  margin-top: -9%;
}
@media (max-width: 1730px) {
  .slider-title:before {
    left: 17rem;
  }
}
@media (max-width: 1230px) {
  .slider-title:before {
    left: 8rem;
    margin-top: -15%;
  }
}
@media (max-width: 955px) {
  .slider-title:before {
    left: 0rem;
    margin-top: -19%;
  }
}
@media (max-width: 620px) {
  .slider-title:before {
    display: none;
  }
}

.partenaires .text-center img {
  width: 100%;
}

.slick-dotted.slick-slider {
  margin-bottom: 100px;
}

.slick-dots {
  position: absolute;
  bottom: -35px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 15px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: #005188;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #005188;
}/*# sourceMappingURL=style.css.map */