/* ######################## VARIABLES ######################## */
/* ###################################################### */
/* ######################## BASE ######################## */
/* ###################################################### */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #323232;
  line-height: 1.5;
  background: white;
}

h1,
h2,
h3,
ul,
ol,
p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.3rem;
}

h2 {
  font-size: 2rem;
  color: #93c02a;
  padding: 0 0 0.25rem;
  margin: 0 0 2.5rem;
  position: relative;
}
h2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 6px;
  background: #93c02a;
}

h3 {
  font-size: 1.4rem;
  color: #00893d;
  margin: 0 0 1.5rem;
}

a {
  color: #00893d;
}
a.external {
  position: relative;
  color: #005854;
  transition: color 0.3s ease;
}
a.external:after {
  content: "";
  position: relative;
  display: inline-block;
  top: 2px;
  right: 0;
  width: 1rem;
  height: 1rem;
  background-color: #005854;
  mask: no-repeat center/12px 12px url(../images/lien.svg);
  -webkit-mask: no-repeat center/12px 12px url(../images/lien.svg);
  transition: background 0.3s ease;
}
a.external:hover {
  color: #00893d;
}
a.external:hover:after {
  background-color: #00893d;
}

mark {
  padding: 0 3px;
  background: rgba(0, 137, 61, 0.2);
}

strong {
  color: #039b45;
}

ul {
  margin: 0 10% 1.5rem;
}
ul li {
  position: relative;
  padding: 0 0 0 1rem;
  margin: 0 0 0.75rem;
  font-weight: 500;
  list-style: none;
}
ul li:last-child {
  margin: 0;
}
ul li:before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(to right, #93c02a, #00893d);
}

ol {
  counter-reset: liste;
  margin: 0 10% 1.5rem;
}
ol li {
  counter-increment: liste;
  position: relative;
  padding: 0 0 0 1rem;
  margin: 0 0 0.75rem;
  font-weight: 500;
  list-style: none;
}
ol li:last-child {
  margin: 0;
}
ol li:before {
  content: counter(liste) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #00893d;
  font-weight: bold;
}

img {
  display: block;
  max-width: 100%;
}

p {
  margin: 0 0 1.5rem;
}

figure {
  border-radius: 20px 0 0 0;
}
figure figcaption {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: white;
  background-color: #93c02a;
  border-radius: 0 0 20px 0;
  padding: 0.5rem 1.5rem;
  margin: 0 !important;
}

/* ########################################################### */
/* ######################## STRUCTURE ######################## */
/* ########################################################### */
/* ######################## HEADER ######################## */
header {
  margin-top: 1rem;
}
header .wrapper {
  position: relative;
}
header .wrapper nav {
  background: #005854;
  border-radius: 10px 0;
  height: 40px;
  position: relative;
}
header .wrapper nav > ul {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  margin: 0;
}
header .wrapper nav > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
}
header .wrapper nav > ul > li > a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  width: 100%;
  position: relative;
  transition: color 0.3s ease;
}
header .wrapper nav > ul > li > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  border-bottom: solid 2px #93c02a;
  opacity: 0;
  transition: opacity 0.3s ease;
}
header .wrapper nav > ul > li ul {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 0;
  width: 15rem;
  background: #e5eeed;
  border-radius: 0 0 10px 10px;
  margin: 0;
  overflow: hidden;
  display: none;
}
header .wrapper nav > ul > li ul li {
  display: block;
  padding: 0;
  margin: 0;
}
header .wrapper nav > ul > li ul li a {
  display: block;
  font-size: 0.9rem;
  color: #005854;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
}
header .wrapper nav > ul > li ul li a:hover {
  background: #93c02a;
  color: white;
}
header .wrapper nav > ul > li ul li.current-menu-item a {
  background: #93c02a;
  color: white;
}
header .wrapper nav > ul > li ul li:last-child {
  margin: 0;
}
header .wrapper nav > ul > li ul li:before {
  content: none;
}
header .wrapper nav > ul > li.current-menu-item > a, header .wrapper nav > ul > li.current-menu-parent > a {
  color: #93c02a;
}
header .wrapper nav > ul > li.current-menu-item > a:before, header .wrapper nav > ul > li.current-menu-parent > a:before {
  opacity: 1;
}
header .wrapper nav > ul > li:last-child ul {
  /*left: inherit;
  right: 0;*/
}
header .wrapper nav > ul > li:hover > a {
  color: #93c02a;
}
header .wrapper nav > ul > li:hover > a:before {
  opacity: 1;
}
header .wrapper nav > ul > li:hover ul {
  display: block;
}
header .wrapper nav > ul > li:before {
  content: none;
}
header .wrapper nav .burger {
  position: absolute;
  z-index: 2;
  top: 3px;
  right: 1rem;
  width: 32px;
  display: none;
}
header .wrapper nav .burger:before, header .wrapper nav .burger:after, header .wrapper nav .burger div {
  background: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 7px 0;
  transition: 0.5s;
}
header .wrapper nav .burger.active:before {
  transform: translateY(9px) rotate(135deg);
}
header .wrapper nav .burger.active:after {
  transform: translateY(-9px) rotate(-135deg);
}
header .wrapper nav .burger.active div {
  transform: scale(0);
}
header .wrapper .logo {
  margin: 0.5rem 0 1.5rem;
}
header .wrapper .logo img {
  margin: 0 auto;
}
header .wrapper .acces-compte {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 0;
}
header .wrapper .acces-compte span {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #005854;
  font-weight: 600;
  padding: 0 1rem 0 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
header .wrapper .acces-compte span:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  border: solid #005854;
  border-width: 0 1px 1px 0;
  padding: 3px;
  transform: rotate(45deg);
  pointer-events: none;
  transition: border-color 0.3s ease;
}
header .wrapper .acces-compte ul {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 0;
  width: 15rem;
  background: #e5eeed;
  border-radius: 0 0 10px 10px;
  margin: 0;
  overflow: hidden;
  display: none;
  top: 25px;
  left: inherit;
  right: 0;
}
header .wrapper .acces-compte ul li {
  display: block;
  padding: 0;
  margin: 0;
}
header .wrapper .acces-compte ul li a {
  display: block;
  font-size: 0.9rem;
  color: #005854;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
}
header .wrapper .acces-compte ul li a:hover {
  background: #93c02a;
  color: white;
}
header .wrapper .acces-compte ul li.current-menu-item a {
  background: #93c02a;
  color: white;
}
header .wrapper .acces-compte ul li:last-child {
  margin: 0;
}
header .wrapper .acces-compte ul li:before {
  content: none;
}
header .wrapper .acces-compte:hover {
  color: #93c02a;
}
header .wrapper .acces-compte:hover span {
  color: #93c02a;
}
header .wrapper .acces-compte:hover span:after {
  border-color: #93c02a;
}
header .wrapper .acces-compte:hover ul {
  display: block;
}

/* ######################## FOOTER ######################## */
footer:not(.footer-card) {
  background: #005854;
  color: white;
  margin: 6rem 0 0 0;
  padding: 2rem 0;
  font-size: 0.75rem;
  position: relative;
  background-image: url("../images/s_footer.svg");
  background-repeat: no-repeat;
  background-position: 0 -10%;
}
footer:not(.footer-card) ul {
  margin: 0 0 1.5rem;
}
footer:not(.footer-card) ul li {
  padding: 0 0 0 1rem;
  margin: 0 0 0.25rem;
}
footer:not(.footer-card) ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer:not(.footer-card) ul li a:hover {
  color: #93c02a;
}
footer:not(.footer-card) ul li:first-child {
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 1rem;
  position: relative;
}
footer:not(.footer-card) ul li:first-child:before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 5px;
  background: linear-gradient(to right, #93c02a, #00893d);
}
footer:not(.footer-card) ul li:before {
  content: none;
}
footer:not(.footer-card) p {
  text-align: center;
  font-size: 0.75rem;
  margin: 0;
}
footer:not(.footer-card) p a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer:not(.footer-card) p a:hover {
  color: #93c02a;
}
footer:not(.footer-card) img {
  filter: grayscale(5) brightness(5);
}
footer:not(.footer-card):before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, #93c02a, #00893d);
}

/* ######################## FORM ######################## */
form .form-group {
  position: relative;
  margin: 0 0 1.5rem;
}
form .form-group.has-switch {
  margin: 0 0 0.75rem;
}
form .form-group.has-switch:last-child {
  margin: 0 0 1.5rem;
}
form .form-group label {
  display: block;
  width: 100%;
  color: #005854;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
form .form-group input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
form .form-group input[type=checkbox] + label {
  position: relative;
  padding: 0 0 0 1.5rem;
  font-weight: inherit;
}
form .form-group input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: solid 1px #005854;
}
form .form-group input[type=checkbox].switch {
  display: none;
}
form .form-group input[type=checkbox].switch:checked + label:before {
  background: #93c02a;
  border-color: #93c02a;
}
form .form-group input[type=checkbox].switch:checked + label:after {
  background: white;
  right: 2px;
}
form .form-group input[type=checkbox].switch + label {
  position: relative;
  display: inline-block;
  font-weight: 500;
  padding: 0;
}
form .form-group input[type=checkbox].switch + label:before {
  content: "";
  position: absolute;
  top: 0;
  left: inherit;
  right: 0;
  width: 48px;
  height: 22px;
  border-radius: 24px;
  border: solid 1px #005854;
  transition: border 0.3s ease, background 0.3s ease;
}
form .form-group input[type=checkbox].switch + label:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 28px;
  width: 20px;
  height: 20px;
  border-radius: 24px;
  background: #005854;
  transition: right 0.3s ease, background 0.3s ease;
}
form .form-group .form-control {
  border-radius: 6px;
  border: solid 1px #005854;
  color: #323232;
  background: white;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  padding: 0 0.5rem;
  line-height: 38px;
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
form .form-group .form-control[readonly] {
  background: rgba(0, 88, 84, 0.08);
  color: #005854;
  pointer-events: none;
}
form .form-group .form-control:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #93c02a;
  border-color: #93c02a;
}
form .form-group .form-control::-moz-placeholder {
  color: #c4c2bf;
}
form .form-group .form-control:-ms-input-placeholder {
  color: #c4c2bf;
}
form .form-group .form-control::placeholder {
  color: #c4c2bf;
}
form .form-group .form-control + span {
  font-size: 0.8rem;
  color: #323232;
  line-height: 1.1;
  display: block;
  margin: 0.5rem 0 0 0;
}
form .form-group.inline {
  display: flex;
  justify-content: space-between;
}
form .form-group.select:before {
  content: "";
  position: absolute;
  top: 14px;
  right: 10px;
  border: solid #005854;
  border-width: 0 1px 1px 0;
  padding: 3px;
  transform: rotate(45deg);
  pointer-events: none;
}
form .form-group.error .form-control {
  border-color: #dc3545;
}
form .msg-error, form .msg-error-pwd {
  color: #dc3545;
  font-weight: 500;
  display: none;
}
form .msg-error.active, form .msg-error-pwd.active {
  display: block;
}

/* Message de confirmation */
.msg-conf {
  display: none;
}
.msg-conf.active {
  display: block;
}
.msg-conf p {
  margin: 0;
}

/* Documents fin de page */
.documents {
  width: 100%;
  border-bottom: solid 1px #b6b6b3;
  margin: 0 0 1.5rem;
}
.documents li {
  margin: 0;
  padding: 0;
  border-top: solid 1px #b6b6b3;
}
.documents li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.documents li a img {
  transition: filter 0.3s ease;
}
.documents li a .poids {
  color: #323232;
}
.documents li a .title {
  font-size: 1rem;
  color: #00893d;
  margin: 0;
}
.documents li a .caracteristiques {
  display: flex;
  align-items: center;
}
.documents li a .caracteristiques span,
.documents li a .caracteristiques a {
  margin: 0 0 0 1rem;
}
.documents li a:hover {
  background-color: rgba(0, 137, 61, 0.1) !important;
}
.documents li a:hover .telecharger {
  background-color: #00893d;
}
.documents li a:hover .telecharger:before {
  background-color: white;
}
.documents li:before {
  content: none;
}
.documents li:nth-child(even) a {
  background: rgba(0, 137, 61, 0.05);
}

/* ####################################################### */
/* ######################## CLASS ######################## */
/* ####################################################### */
/* TEXTE */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* TITRE */
.title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #005854;
  margin: 0 0 0.5rem;
}

/* BOUTON */
.btn {
  display: inline-block;
  text-decoration: none;
  background: #93c02a;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem !important;
  color: white;
  border-radius: 6px;
  border: solid 1px #93c02a;
  margin: 0;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.btn.small {
  padding: 0.25rem 1rem;
}
.btn:hover {
  background: white;
  color: #93c02a;
}

.btn-secondary {
  background: #005854;
  color: white;
  border-color: #005854;
}
.btn-secondary:hover {
  background: white;
  color: #005854;
}

.btn-tertiary {
  background: white;
  color: #005854;
  border-color: #005854;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}
.btn-tertiary:hover {
  background: #005854;
  color: white;
}

.btn-group {
  display: flex;
  justify-content: space-between;
}

/* IMAGES */
.image img {
  width: 100%;
  height: auto;
}
.image img.radius {
  border-radius: 20px 0;
}

/* DATE & POIDS */
.date,
.poids {
  font-size: 0.75rem;
  font-weight: 600;
}

/* CARD */
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fafaf7;
  margin: 0 0 2rem;
  box-shadow: 0 2px 6px rgba(0, 88, 84, 0.2);
  height: calc(100% - 2rem);
  position: relative;
}
.card article {
  padding: 1rem;
}
.card header {
  margin: 0;
}
.card header .image img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .title {
  font-size: 1.1rem;
  line-height: 1.3;
}
.card.border:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, #00893d, #93c02a);
}
.card.webinaire a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: #323232;
  text-decoration: none;
  transition: background 0.3s ease;
}
.card.webinaire a:hover {
  background-color: rgba(0, 137, 61, 0.1) !important;
}
.card.webinaire a:hover .image {
  position: relative;
}
.card.webinaire a .image {
  position: relative;
  /*&:before {
  	content: "";
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
  	width: 4rem;
  	height: 4rem;
  	background: white;
  	mask: no-repeat center / 4rem auto url(../images/play.svg);
  }*/
}

/* FOOTER CARD */
.footer-card {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: solid 1px #b6b6b3;
  padding: 0.5rem 0;
  margin: 0 1rem;
}
.footer-card .date {
  text-transform: uppercase;
  color: #005854;
}
.footer-card .caracteristiques {
  display: flex;
  align-items: center;
}
.footer-card .caracteristiques span,
.footer-card .caracteristiques a {
  margin: 0 0 0 1rem;
}
.footer-card .tag {
  margin: 0;
}

/* TAGS */
.tag {
  display: inline-block;
  background: #00893d;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  border-radius: 4px;
  margin: 0 0 1rem;
}
.tag.dark {
  background-color: #005854;
}

.tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tags .new {
  font-weight: 600;
  padding: 0.25rem 0.5rem 0.2rem;
  font-size: 0.6rem;
  border-radius: 20px;
  background: linear-gradient(to right, #00893d, #93c02a);
}

/* FEATURED */
.featured {
  margin: 0 0 3rem;
}
.featured.home .wrapper.large {
  background: #005854 no-repeat 95% -5%/50% url("../images/s_header.svg");
}
.featured img {
  width: 100%;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 20px;
}
.featured .wrapper {
  position: relative;
  left: -5rem;
  width: calc(100% - 5rem);
  padding: 1.5rem 0;
  background: #93c02a;
  border-radius: 0 20px 20px 0;
  color: white;
  text-align: center;
}
.featured .wrapper.large {
  left: 0;
  width: 100%;
  border-radius: 0 20px;
  margin: 1px 0 0 0;
  padding: 3rem 0;
  text-align: left;
  background: #005854;
}

/* ARIANE */
.ariane {
  font-size: 0.75rem;
  margin: 0 0 0.5rem;
  color: #005854;
}
.ariane a {
  color: #005854;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ariane a:hover {
  color: white;
}

/* A LA UNE */
.a-la-une {
  margin: 0 0 3rem;
}
.a-la-une img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ETUDES VIDEOS */
.etudes-videos {
  margin: 0 0 3rem;
}
.etudes-videos .wrapper {
  background: rgba(0, 88, 84, 0.08);
  border-radius: 20px 0;
  padding: 3rem 0;
}
.etudes-videos .wrapper h2 {
  text-align: center;
  color: #005854;
}
.etudes-videos .wrapper h2:before {
  left: 50%;
  transform: translateX(-50%);
}
.etudes-videos .wrapper .etudes {
  margin: 0 0 3rem;
}

/* GENERIQUE */
.introduction {
  font-size: 1.1rem;
  color: #005854;
  font-weight: 700;
}

.important {
  margin: 0 10% 1.5rem;
  background: rgba(0, 137, 61, 0.05);
  padding: 1rem;
  color: #039b45;
  font-weight: 700;
  position: relative;
}
.important p:last-child {
  margin: 0;
}
.important.wp-block {
  /* SPECIAL GUTENBERG */
  margin: 0 auto 1.5rem;
}
.important:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  background: linear-gradient(to right, #00893d, #93c02a);
}

/* FILTRES */
.filtres {
  margin: 0 0 1.5rem;
}
.filtres .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 88, 84, 0.08);
  border-radius: 10px;
  padding: 1rem;
  color: #005854;
  font-weight: 500;
}
.filtres .wrapper a {
  font-size: 0.75rem;
  color: #005854;
  text-decoration: none;
  transition: color 0.3s ease;
}
.filtres .wrapper a:hover {
  color: #93c02a;
}
.filtres .wrapper form {
  display: flex;
}
.filtres .wrapper form .form-group {
  margin: 0 0.5rem;
}
.filtres .wrapper form .form-group .form-control {
  width: 15rem;
}

/* PAGINATION */
.pagination {
  margin: 0 0 1.5rem;
}
.pagination ul {
  border-top: solid 1px #b6b6b3;
  display: flex;
  justify-content: center;
  margin: 0;
}
.pagination ul li {
  position: relative;
  margin: 0;
  padding: 0;
}
.pagination ul li.active:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  border-radius: 0;
  background: #00893d;
}
.pagination ul li.active a {
  color: #00893d;
}
.pagination ul li a {
  color: #b6b6b3;
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  padding: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.pagination ul li a:hover {
  color: #00893d;
}
.pagination ul li:before {
  content: none;
}

/* QUESTIONS */
.questions {
  margin: 0 0 3rem;
}
.questions .wrapper {
  background: rgba(0, 88, 84, 0.08);
  padding: 3rem 1rem;
  border-radius: 10px;
}
.questions .wrapper .question.active .title {
  background: #93c02a;
  color: white;
}
.questions .wrapper .question.active .title:after {
  border-color: white;
}
.questions .wrapper .question.active .reponse {
  display: block;
}
.questions .wrapper .question + h2 {
  margin-top: 3rem;
}
.questions .wrapper .question .title {
  font-size: 1rem;
  margin: 0;
  padding: 0.75rem 1rem;
  background: white;
  border: solid 1px #005854;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.questions .wrapper .question .title:after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 1rem;
  border: solid #005854;
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}
.questions .wrapper .question .reponse {
  display: none;
  box-shadow: 0 2px 6px rgba(0, 88, 84, 0.2);
  padding: 1rem;
  background: #fafaf7;
}
.questions .wrapper .question .reponse p:last-child {
  margin: 0;
}
.questions .wrapper .question:hover:not(.active) .title {
  background: #005854;
  color: white;
}
.questions .wrapper .question:hover:not(.active) .title:after {
  border-color: white;
}
.questions .wrapper .question:not(.active) + .question .title {
  border-top: 0;
}

/* MON COMPTE */
.mon-compte {
  margin: 0 0 3rem;
}
.mon-compte .bloc {
  background: rgba(0, 88, 84, 0.08);
  padding: 1rem;
  border-radius: 10px;
  margin: 0 0 1rem;
}
.mon-compte .bloc .title {
  margin: 0 0 1.5rem;
}
.mon-compte .bloc .bloc-sub:not(:last-child) {
  margin: 0 0 1.5rem;
}
.mon-compte .bloc .libelle {
  color: #005854;
  font-size: 500;
}
.mon-compte .bloc:last-child {
  margin: 0;
}

/* POPIN */
.popin-back {
  background: rgba(0, 38, 36, 0.8);
  position: fixed;
  z-index: 9;
  inset: 0;
  display: none;
}
.popin-back.active {
  display: block;
}

/* POPIN VIDEO */
.popin-video {
  position: fixed;
  z-index: 9;
  top: 50%;
  left: 50%;
  width: calc(100% - 2rem);
  max-width: 1200px;
  transform: translate(-50%, -50%);
  background: white;
  display: none;
}
.popin-video img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 0 0.5rem;
}
.popin-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.popin-video .title {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
.popin-video.active {
  display: block;
}
.popin-video:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, #93c02a, #00893d);
}

@media (max-width: 1399px) {
  .popin-video {
    max-width: 90%;
  }
}
/* POPIN MOT DE PASSE / POPIN NEWSLETER */
.popin-motdepasse, .popin-newsletter {
  position: fixed;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: calc(100% - 2rem);
  max-width: 800px;
  transform: translate(-50%, -50%);
  background: white;
  padding: 3rem 6rem;
  display: none;
}
.popin-motdepasse.active, .popin-newsletter.active {
  display: block;
}
.popin-motdepasse:before, .popin-newsletter:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, #00893d, #93c02a);
}
.popin-motdepasse .wrapper, .popin-newsletter .wrapper {
  background: rgba(0, 88, 84, 0.08);
  border-radius: 10px;
  padding: 1rem 4rem;
  position: relative;
}

/* POPIN RAPPEL */
.popin-rappel {
  position: fixed;
  z-index: 1;
  width: 45%;
  max-width: 600px;
  min-width: 350px;
  padding: 1rem;
  right: 40px;
  bottom: 40px;
  background-color: #005854;
  color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
.popin-rappel p {
  width: calc(100% - 2rem);
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.8rem;
  margin: 0;
}
.popin-rappel p b {
  font-weight: bold;
}
.popin-rappel .title {
  position: relative;
  font-weight: bold;
  font-size: 1rem;
  padding-top: 5px;
  padding-left: 42px;
  margin-bottom: 1rem;
  color: white;
}
.popin-rappel .title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-image: url("../images/rappel.svg");
  background-repeat: no-repeat;
}
.popin-rappel .close {
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 5px;
  background: 0 0;
  border-radius: 0;
  padding: 0;
}

/* CLOSE */
.close {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  top: -23px;
  right: -20px;
  font-size: 2.1rem;
  background: #005854;
  border-radius: 40px;
  color: white;
  line-height: 40px;
  border: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close:hover {
  color: #93c02a;
}

/* ICONES */
.telecharger {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: none;
  padding: 0;
  background: rgba(0, 137, 61, 0.1);
  position: relative;
  transition: background 0.3s ease;
}
.telecharger:hover {
  background: #00893d;
}
.telecharger:hover:before {
  background: white;
}
.telecharger:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 32px;
  height: 32px;
  background: #00893d;
  mask: no-repeat center/32px 32px url(../images/telecharger.svg);
  -webkit-mask: no-repeat center/32px 32px url(../images/telecharger.svg);
  transition: background 0.3s ease;
}

/* FORMULAIRE */
.formulaire {
  position: fixed;
  inset: 0;
  background: #005854 no-repeat center/auto 96% url(../images/s.svg);
}
.formulaire .wrapper {
  background: white;
  padding: 3rem 6rem;
  position: relative;
  top: 50vh;
  transform: translateY(-50%);
  border-radius: 20px 0;
}
.formulaire .wrapper img {
  margin: 0 auto 3rem;
}
.formulaire .wrapper a:not(.btn) {
  font-size: 0.75rem;
  text-decoration: none;
  color: #005854;
  transition: color 0.3s ease;
}
.formulaire .wrapper a:not(.btn):hover {
  color: #93c02a;
}
.formulaire .wrapper .title {
  font-size: 1rem;
  margin: 0 0 1.5rem;
  font-weight: 600;
}
.formulaire .wrapper .mot-de-passe {
  margin: 0;
}
.formulaire .wrapper .premiere-connexion {
  border: 0;
}
.formulaire .wrapper .premiere-connexion:hover {
  background: none;
  color: #93c02a;
}

/* LOADING */
.loading {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  margin: auto;
  top: 5px;
  left: 5px;
  opacity: 0;
  z-index: -1;
  position: relative;
  transition: opacity 0.3s ease;
}
.loading.active {
  opacity: 1;
  z-index: 1;
}

.loading:after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-color: #005854 transparent #005854 transparent;
  -webkit-animation: loading 1.2s linear infinite;
          animation: loading 1.2s linear infinite;
}

@-webkit-keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ############################################################# */
/* ######################## MOBILE ADAPT ####################### */
/* ############################################################# */
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  footer:not(.footer-card) img {
    margin: 0 0 1.5rem;
    width: 150px;
    height: auto;
  }
  .featured .wrapper.large h1 {
    font-size: 1.6rem;
  }
  .a-la-une .image {
    margin: 0 0 1rem;
  }
  .formulaire .wrapper {
    padding: 1.5rem 3rem;
  }
  .close {
    top: -54px;
    right: 0;
  }
  .filtres .wrapper {
    flex-direction: column;
  }
  .filtres .wrapper form {
    flex-direction: column;
    margin: 1rem 0;
  }
  .filtres .wrapper form .form-group {
    margin: 0 0 0.5rem;
  }
  .important {
    margin: 0 auto 1.5rem;
  }
  .etudes-videos .wrapper {
    padding: 3rem 1rem;
  }
}
@media (max-width: 991px) {
  header .wrapper nav > ul {
    display: none;
  }
  header .wrapper nav > ul.active {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #005854;
    border-radius: 10px 0 10px 0;
    padding: 0;
  }
  header .wrapper nav > ul.active > li {
    flex-direction: column;
  }
  header .wrapper nav > ul.active > li > a {
    padding: 0.68rem 1rem;
  }
  header .wrapper nav > ul.active > li > a:before {
    left: 1rem;
  }
  header .wrapper nav > ul.active > li ul {
    position: relative;
    top: 0;
    width: 100%;
    border-radius: 0;
    margin: 0 0 0;
  }
  header .wrapper nav .burger {
    display: block;
  }
  header .wrapper .logo img {
    margin: 0;
  }
  header .menu-item-has-children > a:after {
    content: "";
    position: absolute;
    top: 15px;
    border: solid white;
    border-width: 0 1px 1px 0;
    padding: 3px;
    transform: rotate(45deg);
    pointer-events: none;
    margin-left: 10px;
  }
  .featured img {
    height: 10rem;
  }
  .featured .wrapper {
    left: 1.5rem;
    width: calc(100% - 3rem);
    top: -1.5rem;
  }
  .featured .wrapper.large {
    left: 0;
    width: 100%;
    top: 0;
    padding: 1.5rem 3rem;
  }
}/*# sourceMappingURL=styles.css.map */