.fa-solid,.fa-regular,.fa,.fa-brands{display:inline-flex;vertical-align:middle}.fa-solid::before,.fa-regular::before,.fa::before,.fa-brands::before{content:'';display:inline-block;width:1em;height:1em;background:currentColor;vertical-align:-0.125em;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.fa-magnifying-glass::before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20512%20512%27%3E%3Cpath%20d%3D%27M416%20208c0%2045.9-14.9%2088.3-40%20122.7L502.6%20457.4c12.5%2012.5%2012.5%2032.8%200%2045.3s-32.8%2012.5-45.3%200L330.7%20376c-34.4%2025.2-76.8%2040-122.7%2040C93.1%20416%200%20322.9%200%20208S93.1%200%20208%200S416%2093.1%20416%20208zM208%20352a144%20144%200%201%200%200-288%20144%20144%200%201%200%200%20288z%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20512%20512%27%3E%3Cpath%20d%3D%27M416%20208c0%2045.9-14.9%2088.3-40%20122.7L502.6%20457.4c12.5%2012.5%2012.5%2032.8%200%2045.3s-32.8%2012.5-45.3%200L330.7%20376c-34.4%2025.2-76.8%2040-122.7%2040C93.1%20416%200%20322.9%200%20208S93.1%200%20208%200S416%2093.1%20416%20208zM208%20352a144%20144%200%201%200%200-288%20144%20144%200%201%200%200%20288z%27%2F%3E%3C%2Fsvg%3E")}.fa-xmark::before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20384%20512%27%3E%3Cpath%20d%3D%27M342.6%20150.6c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200L192%20210.7%2086.6%20105.4c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3L146.7%20256%2041.4%20361.4c-12.5%2012.5-12.5%2032.8%200%2045.3s32.8%2012.5%2045.3%200L192%20301.3%20297.4%20406.6c12.5%2012.5%2032.8%2012.5%2045.3%200s12.5-32.8%200-45.3L237.3%20256%20342.6%20150.6z%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20384%20512%27%3E%3Cpath%20d%3D%27M342.6%20150.6c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200L192%20210.7%2086.6%20105.4c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3L146.7%20256%2041.4%20361.4c-12.5%2012.5-12.5%2032.8%200%2045.3s32.8%2012.5%2045.3%200L192%20301.3%20297.4%20406.6c12.5%2012.5%2032.8%2012.5%2045.3%200s12.5-32.8%200-45.3L237.3%20256%20342.6%20150.6z%27%2F%3E%3C%2Fsvg%3E")}



.faq_3 * {
  font-family: Nunito, sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* --- Conteneurs --- */
.faq_3 .container-block {
  min-height: 75px;
  width: 100%;
  padding: 10px 60px;
}

.faq_3 .responsive-container-block {
  min-height: 75px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: flex-start;
}

/* --- FAQ --- */
.faq_3 .faq {
  display: block;
  flex-direction: column;
  border-bottom: 1px solid #aaa;
  margin-bottom: 25px;
}

.faq_3 .faq-question-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  cursor: pointer;
}

.faq_3 .answer-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq_3 .faq.active .answer-box {
  max-height: 550px;
}

.faq_3 .openimg {
  transition: transform 0.3s ease-in;
}

.faq_3 .faq.active .openimg {
  transform: rotate(180deg);
}

/* --- Textes --- */
.faq_3 .text-blk {
  margin: 0;
  line-height: 25px;
}

.faq_3 .text-blk.faq-heading {
  font-size: 48px;
  line-height: 50px;
  font-weight: 800;
  margin-bottom: 28px;
}

.faq_3 .text-blk.faq-subhead {
  max-width: 650px;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 28px;
}

.faq_3 .text-blk.faq-head2 {
  text-align: center;
  font-size: 42px;
  line-height: 60px;
  font-weight: 900;
  margin: 60px 0 50px;
  padding: 0 20px;
}

.faq_3 .text-blk.faq-questions {
  color: #525252;
  font-size: 22px;
}

.faq_3 .text-blk.faq-answer {
  padding-left: 20px;
  color: #9c9c9c;
  font-size: 19px;
  line-height: 28px;
  margin-bottom: 20px;
}

/* --- Header --- */
.faq_3 .responsive-container-block.faqheading-bg {
  background-color: #03a9f4;
  height: 500px;
  flex-direction: column;
  text-align: center;
  color: white;
  align-items: center;
}

.faq_3 .heading-content {
  margin-top: 100px;
}

/* --- Input --- */
.faq_3 .input-box {
  background: #fff;
  max-width: 550px;
  width: 100%;
  height: 45px;
  display: flex;
  border-radius: 4px;
}

.faq_3 .input {
  border: none;
  height: 45px;
  width: 100%;
  font-size: 15px;
  padding: 0 24px;
}

.faq_3 .search-btn {
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
}

.faq_3 .search-svg {
  width: 20px;
  height: 20px;
}

/* --- Dropdown --- */
.faq_3 .responsive-container-block.dropdown-container {
  background: #fff;
  max-width: 850px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  flex-direction: column;
  margin: -120px auto 100px;
}

.faq_3 .responsive-container-block.dropdown-container-wrapper {
  padding: 0 30px;
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
  .faq_3 .text-blk.faq-answer { font-size: 18px; }
}

@media (max-width: 768px) {
  .faq_3 .responsive-container-block.faqheading-bg { padding: 0 30px; }
  .faq_3 .text-blk.faq-heading { font-size: 40px; line-height: 42px; margin-bottom: 24px; }
  .faq_3 .text-blk.faq-subhead { margin-bottom: 24px; }
  .faq_3 .text-blk.faq-head2 { font-size: 38px; }
  .faq_3 .text-blk.faq-questions { font-size: 20px; }
  .faq_3 .text-blk.faq-answer { font-size: 16px; line-height: 23px; }
}

@media (max-width: 500px) {
  .faq_3 .responsive-container-block.dropdown-container-wrapper { padding: 0 20px; }
  .faq_3 .text-blk.faq-heading { font-size: 38px; }
  .faq_3 .heading-content { margin-top: 60px; }
  .faq_3 .text-blk.faq-subhead { font-size: 18px; }
  .faq_3 .text-blk.faq-head2 { font-size: 30px; line-height: 46px; margin: 30px 0 40px; }
  .faq_3 .container-block { padding: 10px 15px; }
  .faq_3 .faq-question-container { margin-bottom: 15px; }
  .faq_3 .text-blk.faq-questions { font-size: 19px; }
  .faq_3 .text-blk.faq-answer { font-size: 16px; line-height: 22px; padding-left: 0; }
  .faq_3 .responsive-container-block.dropdown-container { margin-top: -100px; }
}

/* --- Grilles responsives --- */
.wk-desk-1 { width: 8.3333%; }
.wk-desk-2 { width: 16.6667%; }
.wk-desk-3 { width: 25%; }
.wk-desk-4 { width: 33.3333%; }
.wk-desk-5 { width: 41.6667%; }
.wk-desk-6 { width: 50%; }
.wk-desk-7 { width: 58.3333%; }
.wk-desk-8 { width: 66.6667%; }
.wk-desk-9 { width: 75%; }
.wk-desk-10 { width: 83.3333%; }
.wk-desk-11 { width: 91.6667%; }
.wk-desk-12 { width: 100%; }

@media (max-width: 1024px) {
  [class*="wk-ipadp-"] { width: auto; }
}
@media (max-width: 768px) {
  [class*="wk-tab-"] { width: auto; }
}
@media (max-width: 500px) {
  [class*="wk-mobile-"] { width: auto; }
}

.comp_0{flex-direction:column;padding-left:0px;padding-right:0px;}.comp_0 > .innerBox{display:inherit;flex-direction:inherit;}.comp_1{--bs-gutter-x:0px;flex-direction:row;}.comp_2{flex-direction:column;}.comp_2 > .wa_inner_col{display:flex;flex-direction:inherit;height:100%;}.comp_2 > .wa_inner_col > .wa_inner_col2{display:inherit;flex-direction:inherit;height:100%;justify-content:flex-start;}.comp_3{width:100%;}body{background-color:rgba(255,255,255,1);}.comp_0{border:none;border-radius:0px;display:flex;min-height:0px;}.comp_0 > .innerBox{margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;}.comp_1{display:flex;margin-bottom:0px !important;margin-top:0px !important;}.comp_2{min-height:0px;padding-left:0rem;padding-right:0rem;}.comp_2 > .wa_inner_col{border:none;border-radius:0px;}.comp_2 > .wa_inner_col > .wa_inner_col2{gap:0px;margin-bottom:0rem;margin-left:0rem;margin-right:0rem;margin-top:0rem;}.comp_3{margin-bottom:0px;margin-top:0px;min-height:100px;}body{background-image:url('');}@media (min-width:576px){.comp_0{border:none;border-radius:0px;display:flex;min-height:0px;}.comp_0 > .innerBox{margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;}.comp_1{display:flex;margin-bottom:0px !important;margin-top:0px !important;}.comp_2{min-height:0px;padding-left:0rem;padding-right:0rem;}.comp_2 > .wa_inner_col{border:none;border-radius:0px;}.comp_2 > .wa_inner_col > .wa_inner_col2{gap:0px;margin-bottom:0rem;margin-left:0rem;margin-right:0rem;margin-top:0rem;}.comp_3{margin-bottom:0px;margin-top:0px;min-height:100px;}body{background-image:url('');}}@media (min-width:992px){.comp_0{border:none;border-radius:0px;display:flex;min-height:0px;}.comp_0 > .innerBox{margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;}.comp_1{display:flex;margin-bottom:0px !important;margin-top:0px !important;}.comp_2{min-height:0px;padding-left:0rem;padding-right:0rem;}.comp_2 > .wa_inner_col{border:none;border-radius:0px;}.comp_2 > .wa_inner_col > .wa_inner_col2{gap:0px;margin-bottom:0rem;margin-left:0rem;margin-right:0rem;margin-top:0rem;}.comp_3{margin-bottom:0px;margin-top:0px;min-height:100px;}body{background-image:url('');}}