@font-face {
  font-family: "Source Sans 3";
  src: url(../fonts/SourceSans3-VariableFont_wght.ttf);
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: #FFFFFF;
  color: #333333;
  line-height: 1.6;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: #167ac6;
}

a:hover {
  color: #0b4593;
}

h2,
h3,
h4 {
  font-weight: 700;
  color: #333333;
}

/* BANDEAU PUBLIREPORTAGE */
.publireportage {
  background-color: #000000;
  border-bottom: 1px solid #EAEAEA;
  text-align: center;
  padding: 5px 0;
}

.publireportage span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #B1B1B1;
}

/* HEADER LOGO */
.logo-header {
  border-bottom: 1px solid #F1F1F1;
  padding: 10px 0;
}

.logo-header img {
  width: 300px;
  margin: 10px 0;
}

/* CONTENU PRINCIPAL */
.main-content {
  padding: 0 0 50px 0;
}

.main-content h1 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
  color: #333333;
  margin: 10px 0 20px 0;
}

@media (max-width: 767px) {
  .main-content h1 {
    font-size: 30px;
    line-height: 36px;
  }
}

/* SHARE BUTTONS */
.share-buttons {
  margin: 0 0 20px 0;
}

.share-buttons .elementor-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3em;
  background-color: #3b5998;
  border-radius: 0;
  margin-right: 10px;
  color: white;
  font-size: 12px;
  transition: 0.2s;
}

.share-buttons .elementor-share-btn.whatsapp {
  background-color: #25d366;
}

.share-buttons .elementor-share-btn.pinterest {
  background-color: #bd081c;
}

.share-buttons .elementor-share-btn i {
  font-size: 1.7em;
}

/* IMAGES */
.full-width-img {
  width: 100%;
  margin: 20px 0;
}

/* BOX JAUNE (citation) */
.yellow-box {
  background-color: #FEF5C4;
  border: 1px solid #FADF98;
  box-shadow: 0px 0px 10px 0px #FADF98;
  padding: 8px;
  margin: 0 0 20px 0;
}

.yellow-box p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #333333;
  padding: 0;
}

@media (max-width: 767px) {
  .yellow-box p {
    font-size: 20px;
    line-height: 26px;
    margin: 0;
  }
}

/* TEXTES STANDARDS */
.text-standard {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 26px;
  color: #333333;
  margin-bottom: 20px;
}

/* TITRES SECTIONS */
.section-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 43px;
  color: #333333;
  margin: 30px 0 15px 0;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
    line-height: 36px;
  }
}

/* BOUTONS VERTS */
.btn-green {
  display: block;
  width: 100%;
  background-color: #1FBA34;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  text-align: center;
  color: white;
  padding: 15px;
  border-radius: 7px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.35);
  margin: 30px 0 40px 0;
  transition: 0.2s;
}

.btn-green:hover {
  background-color: #07893A;
  color: white;
}

@media (max-width: 767px) {
  .btn-green {
    font-size: 23px;
    line-height: 26px;
  }
}

/* BOX ROUGE */
.red-box {
  background-color: #FDBDBD;
  border: 1px solid #FE7D7F;
  box-shadow: 0px 0px 10px 0px #FADF98;
  padding: 8px 14px;
  margin: 0 0 20px 0;
}

.red-box p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #333333;
}

@media (max-width: 767px) {
  .red-box p {
    font-size: 20px;
    line-height: 26px;
  }
}

/* BOX BORDURE DASHED */
.dashed-box {
  background-color: #FEF5C4;
  border: 3px dashed #FE7D7F;
  box-shadow: 0px 0px 10px 0px #FADF98;
  padding: 8px 14px;
  margin: 40px 0 20px 0;
  text-align: center;
}

.dashed-box p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #333333;
}

/* FOOTER */
.footer {
  background-color: #000000;
  padding: 20px 0 10px 0;
  margin-top: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 19px;
  margin-bottom: 30px;
}

.footer-links a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #7B7B7B;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #54595F;
}

.footer-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #7B7B7B;
  text-align: center;
  margin: 20px 0;
}

@media (max-width: 767px) {
  .footer-links a {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-text {
    font-size: 16px;
    line-height: 26px;
  }
}

/* LISTE ORDONNEE STYLE */
.custom-list {
  list-style: none;
  padding-left: 20px;
}

.custom-list li {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 10px;
}

/* VIDEO CONTAINER */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  margin: 20px 0;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }

  .text-standard {
    font-size: 19px;
    line-height: 26px;
  }
}
.share-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.logo-header a {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  padding: 0px 16px;
  border: 2px solid #bd081c;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.logo-header a span {
  color: #bd081c;
}
.wrapper {
  padding-top: 50px;
  word-break: break-word;
}
.wrapper a {
  color: #000000;
}