h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}

body {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #3f4442;
  line-height: 1.5;
}

a {
  color: #f52d2d;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: #cc4b37;
}

.font-heading {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}

.font-body {
  font-family: "Lato", Helvetica, Arial, sans-serif;
}

.h5-style, .h4-style, .h3-style, .h2-style {
  display: block;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.h2-style {
  font-size: 1.5rem;
}
@media screen and (min-width: 64em) {
  .h2-style {
    font-size: 1.875rem;
  }
}

.h3-style {
  font-size: 1.25rem;
}
@media screen and (min-width: 64em) {
  .h3-style {
    font-size: 1.5rem;
  }
}

.h4-style {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ff615e;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (min-width: 64em) {
  .h4-style {
    font-size: 30px;
  }
}

.h5-style {
  font-size: 1.5rem;
  color: #3f4442;
  line-height: 1;
  margin-bottom: 22px;
}
.h5-style::first-letter {
  text-transform: capitalize;
}

.header-color .header-content h2.header-subtitle {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ff615e;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (min-width: 64em) {
  .header-color .header-content h2.header-subtitle {
    font-size: 30px;
  }
}
.page-template-page-reference .header-color .header-content h2.header-subtitle {
  margin-bottom: 0;
}

.info-section .cols-section-title {
  display: block;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #3f4442;
  margin-bottom: 24px;
}

.more-articles-section h2.sidebar-section-title,
.image-sidebar-section h2.sidebar-section-title,
.tags-section h2.sidebar-section-title {
  font-size: 1.5rem;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  color: #3f4442;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
}
.more-articles-section h2.sidebar-section-title::first-letter,
.image-sidebar-section h2.sidebar-section-title::first-letter,
.tags-section h2.sidebar-section-title::first-letter {
  text-transform: capitalize;
}

.visually-hidden,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container-custom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.text-primary {
  color: #f52d2d;
}

.text-dark {
  color: #3f4442;
}

.text-white {
  color: #fefefe;
}

.text-gray {
  color: #7f8985;
}

.bg-primary {
  background-color: #f52d2d;
}

.bg-dark {
  background-color: #3f4442;
}

.bg-gray {
  background-color: #f4f5f9;
}

.bg-white {
  background-color: #fefefe;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-lg {
  margin-top: 24px;
}

.mb-lg {
  margin-bottom: 24px;
}

.mt-xl {
  margin-top: 32px;
}

.mb-xl {
  margin-bottom: 32px;
}

@media screen and (max-width: 39.9375em) {
  .hide-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 64em) {
  .hide-desktop {
    display: none !important;
  }
}

.show-mobile {
  display: none;
}
@media screen and (max-width: 39.9375em) {
  .show-mobile {
    display: block;
  }
}

@media screen and (min-width: 64em) {
  .nav-wrapper .header-menu-top {
    display: none !important;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn--primary {
  background-color: #f52d2d;
  border-color: #f52d2d;
  color: #fefefe;
}
.btn--primary:hover, .btn--primary:focus {
  background-color: #cc4b37;
  border-color: #cc4b37;
  color: #fefefe;
}
.btn--outline {
  background-color: transparent;
  border-color: #f52d2d;
  color: #f52d2d;
}
.btn--outline:hover, .btn--outline:focus {
  background-color: #f52d2d;
  color: #fefefe;
}
.btn--dark {
  background-color: #3f4442;
  border-color: #3f4442;
  color: #fefefe;
}
.btn--dark:hover, .btn--dark:focus {
  background-color: #363a38;
  border-color: #363a38;
}
.btn--sm {
  padding: 4px 24px;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 16px 48px;
  font-size: 1.125rem;
}

.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=url],
.wpcf7-form textarea,
.wpcf7-form select,
.gform_wrapper input[type=text],
.gform_wrapper input[type=email],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=url],
.gform_wrapper textarea,
.gform_wrapper select {
  width: 100%;
  padding: 8px 16px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #3f4442;
  border: 1px solid #cacaca;
  background-color: #fefefe;
  transition: border-color 0.3s ease;
}
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form input[type=url]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus,
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=email]:focus,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=url]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  border-color: #f52d2d;
  outline: none;
}
.wpcf7-form input[type=text]::placeholder,
.wpcf7-form input[type=email]::placeholder,
.wpcf7-form input[type=tel]::placeholder,
.wpcf7-form input[type=url]::placeholder,
.wpcf7-form textarea::placeholder,
.wpcf7-form select::placeholder,
.gform_wrapper input[type=text]::placeholder,
.gform_wrapper input[type=email]::placeholder,
.gform_wrapper input[type=tel]::placeholder,
.gform_wrapper input[type=url]::placeholder,
.gform_wrapper textarea::placeholder,
.gform_wrapper select::placeholder {
  color: #7f8985;
}
.wpcf7-form textarea,
.gform_wrapper textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7-not-valid-tip {
  color: #cc4b37;
  font-size: 0.875rem;
  margin-top: 4px;
}

.wpcf7 .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 8px 16px;
  border-radius: 2px;
}
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors, .wpcf7 .wpcf7-response-output.wpcf7-acceptance-missing {
  border-color: #cc4b37;
  color: #cc4b37;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #3adb76;
  color: #3adb76;
}

.gform_validation_container,
.gfield--type-honeypot {
  display: none !important;
  visibility: hidden !important;
  left: -9000px !important;
  position: absolute !important;
}

.card {
  background-color: #fefefe;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(63, 68, 66, 0.12);
}
.card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.card__image img, .card__image video, .card__image iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__body {
  padding: 24px;
}
.card__title {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #3f4442;
}
.card__excerpt {
  color: #7f8985;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__link {
  display: inline-block;
  margin-top: 16px;
  color: #f52d2d;
  font-weight: 600;
  transition: color 0.3s ease;
}
.card__link:hover {
  color: #cc4b37;
}

.faq-section {
  padding: 64px 0;
}
@media screen and (min-width: 64em) {
  .faq-section {
    padding: 96px 0;
  }
}

.faq-section__titre {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #3f4442;
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (min-width: 64em) {
  .faq-section__titre {
    font-size: 1.875rem;
  }
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-accordion__item {
  border: 1px solid rgb(209.6, 209.6, 209.6);
  border-radius: 4px;
  overflow: hidden;
  background-color: #fefefe;
}

.faq-accordion__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  cursor: pointer;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #3f4442;
  line-height: 1.4;
  user-select: none;
  background-color: #fefefe;
  margin-bottom: 0;
  transition: background-color color 0.3s ease;
}
@media screen and (min-width: 64em) {
  .faq-accordion__question {
    font-size: 1.125rem;
  }
}
.faq-accordion__question:hover, .faq-accordion__question:focus {
  background-color: rgb(254.7363636364, 249.4636363636, 249.4636363636);
  outline: none;
}
.faq-accordion__question .faq-accordion__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f52d2d;
  position: relative;
  transition: background-color transform 0.3s ease;
}
.faq-accordion__question .faq-accordion__icon::before, .faq-accordion__question .faq-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fefefe;
  border-radius: 2px;
}
.faq-accordion__question .faq-accordion__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-accordion__question .faq-accordion__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform opacity 0.3s ease;
}
.faq-accordion__question[aria-expanded=true] {
  background-color: #f52d2d;
  color: #fefefe;
  margin-bottom: 0;
}
.faq-accordion__question[aria-expanded=true] .faq-accordion__icon {
  background-color: #fefefe;
}
.faq-accordion__question[aria-expanded=true] .faq-accordion__icon::before {
  background-color: #f52d2d;
}
.faq-accordion__question[aria-expanded=true] .faq-accordion__icon::after {
  background-color: #f52d2d;
  opacity: 0;
}
.faq-accordion__question[aria-expanded=true]:hover, .faq-accordion__question[aria-expanded=true]:focus {
  background-color: rgb(243.6090909091, 15.7909090909, 15.7909090909);
}

.faq-accordion__reponse {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-accordion__reponse:not([hidden]) {
  max-height: 2000px;
}
.faq-accordion__reponse[hidden] {
  display: block !important;
  max-height: 0;
  visibility: hidden;
}

.faq-accordion__reponse-inner {
  padding: 24px 32px 32px;
  color: #3f4442;
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px solid rgb(209.6, 209.6, 209.6);
}
.faq-accordion__reponse-inner p {
  margin-bottom: 8px;
}
.faq-accordion__reponse-inner p:last-child {
  margin-bottom: 0;
  font-size: 16px;
}
.faq-accordion__reponse-inner a {
  color: #f52d2d;
  font-weight: 600;
}

.section-video-background {
  position: relative;
  background-color: #3f4442;
  min-height: 300px;
}
@media screen and (min-width: 40em) {
  .section-video-background {
    min-height: 420px;
  }
}
@media screen and (min-width: 64em) {
  .section-video-background {
    aspect-ratio: 16/6;
    min-height: 480px;
  }
}
.section-video-background [data-fade-in], .section-video-background[data-fade-in] {
  opacity: 1 !important;
  transition: none !important;
}
.section-video-background .iframe-container {
  background-color: #3f4442;
}
.section-video-background .banner-img-section {
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.hero-lcp-img {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-color {
  min-height: 120px;
}
@media screen and (min-width: 64em) {
  .header-color {
    min-height: 180px;
  }
}

.citation-section .citation-content h4 {
  color: #3f4442;
}

.section-citations-clients {
  padding: 64px 0;
  background-color: #f8f8f8;
  position: relative;
}
@media screen and (min-width: 64em) {
  .section-citations-clients {
    padding: 96px 0;
  }
}
.section-citations-clients .section-title {
  color: #3f4442;
  text-align: center;
  margin-bottom: 48px;
}

.citations-slider-wrapper {
  position: relative;
  width: 100%;
}
.citations-slider-wrapper .section-title {
  padding-left: 130px;
}
@media screen and (max-width: 63.9375em) {
  .citations-slider-wrapper .section-title {
    padding-left: 60px;
  }
}

.slider-citations:not(.slick-initialized) {
  overflow: hidden;
}
.slider-citations .slick-list {
  padding: 0 130px;
}
@media screen and (max-width: 63.9375em) {
  .slider-citations .slick-list {
    padding: 0 60px;
  }
}
.slider-citations .slick-slide {
  padding: 0 8px;
}
.slider-citations .slick-slide > div {
  height: 100%;
}

.citations-slider-wrapper .slick-prev,
.citations-slider-wrapper .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 50px;
  cursor: pointer;
  background: #3f4442;
  z-index: 10;
  color: transparent;
  border: none;
}
.citations-slider-wrapper .slick-prev:before, .citations-slider-wrapper .slick-prev:after,
.citations-slider-wrapper .slick-next:before,
.citations-slider-wrapper .slick-next:after {
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.citations-slider-wrapper .slick-prev:before,
.citations-slider-wrapper .slick-next:before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
}
.citations-slider-wrapper .slick-prev:after,
.citations-slider-wrapper .slick-next:after {
  left: 11px;
  right: 11px;
  height: 1px;
  background: #fefefe;
}
.citations-slider-wrapper .slick-prev:hover:after,
.citations-slider-wrapper .slick-next:hover:after {
  background: #f52d2d;
}
.citations-slider-wrapper .slick-prev {
  left: 0;
}
.citations-slider-wrapper .slick-prev::before {
  border-left: solid 1px #fefefe;
  border-bottom: solid 1px #fefefe;
  left: 12px;
  transform: rotate(45deg);
}
.citations-slider-wrapper .slick-prev:hover::before {
  border-color: #f52d2d;
}
.citations-slider-wrapper .slick-next {
  right: 0;
}
.citations-slider-wrapper .slick-next::before {
  border-right: solid 1px #fefefe;
  border-top: solid 1px #fefefe;
  right: 10px;
  transform: rotate(45deg);
}
.citations-slider-wrapper .slick-next:hover::before {
  border-color: #f52d2d;
}

.citation-card {
  background-color: #fefefe;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.citation-card__logo {
  min-height: 50px;
  display: flex;
  align-items: center;
}
.citation-card__logo img {
  max-height: 50px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

.citation-card__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #3f4442;
  font-style: italic;
  margin: 0;
  flex: 1;
  padding: 15px 0;
}

.citation-card__footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 2px solid #f52d2d;
  padding-top: 8px;
  margin-top: auto;
}

.citation-card__author {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3f4442;
}

.citation-card__role {
  font-size: 0.75rem;
  color: rgb(124.4503816794, 134.0496183206, 130.2099236641);
  line-height: 1.4;
}

.entry p, .entry .entry-content p {
  font-size: 1.25rem;
  line-height: 1.6;
}
.entry ul li, .entry ol li {
  font-size: 1.25rem;
  line-height: 1.7;
}
.entry h2 {
  font-size: 2rem;
}
.entry h3 {
  font-size: 1.875rem;
}
.entry h4 {
  font-size: 1.75rem;
}
.entry h5 {
  font-size: 1.5rem;
}
.entry h6 {
  font-size: 1.375rem;
}
@media screen and (min-width: 64em) {
  .entry h2 {
    font-size: 2.25rem;
  }
}

.section-cta-carriers {
  padding: 64px 0;
}
@media screen and (min-width: 64em) {
  .section-cta-carriers {
    padding: 96px 0;
  }
}

.cta-carriers__row {
  display: flex;
  flex-wrap: wrap;
}

.cta-carriers__col {
  display: flex;
}

.cta-carriers__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #e6e6e6;
  border-top: 4px solid #f52d2d;
  overflow: hidden;
}
.cta-carriers__card--bg {
  background-size: cover;
  background-position: center;
}

.cta-carriers__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(63, 68, 66, 0.72);
  z-index: 1;
}

.cta-carriers__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 48px 32px;
}

.cta-carriers__title {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3f4442;
  margin-bottom: 16px;
  line-height: 1.3;
}
.cta-carriers__card--bg .cta-carriers__title {
  color: #fefefe;
}

.cta-carriers__text {
  font-size: 1rem;
  color: #3f4442;
  line-height: 1.65;
  margin-bottom: 32px;
  flex: 1;
}
.cta-carriers__card--bg .cta-carriers__text {
  color: rgba(254, 254, 254, 0.9);
}

.cta-carriers__note {
  font-size: 0.875rem;
  color: #7f8985;
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 0;
  font-style: italic;
}
.cta-carriers__card--bg .cta-carriers__note {
  color: rgba(254, 254, 254, 0.65);
}

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