@charset "UTF-8";
/*!
Theme Name: paragon
Theme URI: http://underscores.me/
Author: Agence Dewey
Author URI: https://agence-dewey.fr
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: paragon
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

paragon is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

# Generic
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

:root {
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-surface: #f8fafc;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: inherit;
  text-decoration: none;
}

html {
  font-size: 100%;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p,
li {
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  p,
  li {
    font-size: 14px;
  }
}

small {
  font-size: 0.875rem;
}

strong,
b {
  font-weight: 500;
}

h1,
.h1 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.15;
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 1.75rem;
  }
}

h2,
.h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
}

h3,
.h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 500;
  line-height: 1.5;
}

.text-light {
  font-weight: 300;
}

.text-regular {
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("./fonts/roboto-light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/roboto-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/roboto-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/roboto-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/roboto-black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/inter-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
.container {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .container {
    width: min(100% - 3rem, 75rem);
  }
}
@media (min-width: 64rem) {
  .container {
    width: min(100% - 4rem, 75rem);
  }
}
@media (min-width: 90rem) {
  .container {
    width: min(100% - 6rem, 75rem);
  }
}

.container--sm {
  width: min(100% - 2rem, 40rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .container--sm {
    width: min(100% - 3rem, 40rem);
  }
}
@media (min-width: 64rem) {
  .container--sm {
    width: min(100% - 4rem, 40rem);
  }
}
@media (min-width: 90rem) {
  .container--sm {
    width: min(100% - 6rem, 40rem);
  }
}

.container--md {
  width: min(100% - 2rem, 48rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .container--md {
    width: min(100% - 3rem, 48rem);
  }
}
@media (min-width: 64rem) {
  .container--md {
    width: min(100% - 4rem, 48rem);
  }
}
@media (min-width: 90rem) {
  .container--md {
    width: min(100% - 6rem, 48rem);
  }
}

.container--lg {
  width: min(100% - 2rem, 64rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .container--lg {
    width: min(100% - 3rem, 64rem);
  }
}
@media (min-width: 64rem) {
  .container--lg {
    width: min(100% - 4rem, 64rem);
  }
}
@media (min-width: 90rem) {
  .container--lg {
    width: min(100% - 6rem, 64rem);
  }
}

.container--wide {
  width: min(100% - 2rem, 90rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .container--wide {
    width: min(100% - 3rem, 90rem);
  }
}
@media (min-width: 64rem) {
  .container--wide {
    width: min(100% - 4rem, 90rem);
  }
}
@media (min-width: 90rem) {
  .container--wide {
    width: min(100% - 6rem, 90rem);
  }
}

.container--full {
  width: 100%;
  margin-inline: auto;
}

.section {
  padding-block: 3rem;
}
@media (min-width: 64rem) {
  .section {
    padding-block: 5rem;
  }
}
.section > .section__inner,
.section > .container {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .section > .section__inner,
  .section > .container {
    width: min(100% - 3rem, 75rem);
  }
}
@media (min-width: 64rem) {
  .section > .section__inner,
  .section > .container {
    width: min(100% - 4rem, 75rem);
  }
}
@media (min-width: 90rem) {
  .section > .section__inner,
  .section > .container {
    width: min(100% - 6rem, 75rem);
  }
}

.section--sm {
  padding-block: 3rem;
}
@media (min-width: 64rem) {
  .section--sm {
    padding-block: 5rem;
  }
}
.section--sm > .section__inner,
.section--sm > .container {
  width: min(100% - 2rem, 40rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .section--sm > .section__inner,
  .section--sm > .container {
    width: min(100% - 3rem, 40rem);
  }
}
@media (min-width: 64rem) {
  .section--sm > .section__inner,
  .section--sm > .container {
    width: min(100% - 4rem, 40rem);
  }
}
@media (min-width: 90rem) {
  .section--sm > .section__inner,
  .section--sm > .container {
    width: min(100% - 6rem, 40rem);
  }
}

.section--md {
  padding-block: 3rem;
}
@media (min-width: 64rem) {
  .section--md {
    padding-block: 5rem;
  }
}
.section--md > .section__inner,
.section--md > .container {
  width: min(100% - 2rem, 48rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .section--md > .section__inner,
  .section--md > .container {
    width: min(100% - 3rem, 48rem);
  }
}
@media (min-width: 64rem) {
  .section--md > .section__inner,
  .section--md > .container {
    width: min(100% - 4rem, 48rem);
  }
}
@media (min-width: 90rem) {
  .section--md > .section__inner,
  .section--md > .container {
    width: min(100% - 6rem, 48rem);
  }
}

.section--lg {
  padding-block: 3rem;
}
@media (min-width: 64rem) {
  .section--lg {
    padding-block: 5rem;
  }
}
.section--lg > .section__inner,
.section--lg > .container {
  width: min(100% - 2rem, 64rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .section--lg > .section__inner,
  .section--lg > .container {
    width: min(100% - 3rem, 64rem);
  }
}
@media (min-width: 64rem) {
  .section--lg > .section__inner,
  .section--lg > .container {
    width: min(100% - 4rem, 64rem);
  }
}
@media (min-width: 90rem) {
  .section--lg > .section__inner,
  .section--lg > .container {
    width: min(100% - 6rem, 64rem);
  }
}

.section--wide {
  padding-block: 3rem;
}
@media (min-width: 64rem) {
  .section--wide {
    padding-block: 5rem;
  }
}
.section--wide > .section__inner,
.section--wide > .container {
  width: min(100% - 2rem, 90rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .section--wide > .section__inner,
  .section--wide > .container {
    width: min(100% - 3rem, 90rem);
  }
}
@media (min-width: 64rem) {
  .section--wide > .section__inner,
  .section--wide > .container {
    width: min(100% - 4rem, 90rem);
  }
}
@media (min-width: 90rem) {
  .section--wide > .section__inner,
  .section--wide > .container {
    width: min(100% - 6rem, 90rem);
  }
}

.section--tight {
  padding-block: 3rem;
}
@media (min-width: 64rem) {
  .section--tight {
    padding-block: 3rem;
  }
}

.section--spacious {
  padding-block: 4rem;
}
@media (min-width: 64rem) {
  .section--spacious {
    padding-block: 7rem;
  }
}

.section__inner {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .section__inner {
    width: min(100% - 3rem, 75rem);
  }
}
@media (min-width: 64rem) {
  .section__inner {
    width: min(100% - 4rem, 75rem);
  }
}
@media (min-width: 90rem) {
  .section__inner {
    width: min(100% - 6rem, 75rem);
  }
}

.grid {
  --grid-gap: 1.5rem;
  display: grid;
  gap: var(--grid-gap);
}

.grid--sm {
  --grid-gap: 1rem;
}

.grid--lg {
  --grid-gap: 2rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 36rem) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 75rem) {
  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stack--sm {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stack--md {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stack--xl {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.flex {
  display: flex;
}

.flex--col {
  flex-direction: column;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex--align-end {
  align-items: flex-end;
}

.flex--wrap {
  flex-wrap: wrap;
}

.flex--between {
  justify-content: space-between;
}

.flex--align-center {
  align-items: center;
}

.flex-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.flex-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flex-grid {
  --grid-gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--grid-gap);
}
.flex-grid > * {
  min-width: 0;
}

.flex-grid--sm {
  --grid-gap: 1rem;
}

.flex-grid--lg {
  --grid-gap: 2rem;
}

.flex-grid--auto > * {
  flex: 1 1 18rem;
  min-width: min(100%, 18rem);
}

.flex-grid--2 > * {
  flex: 0 0 100%;
}

@media (min-width: 48rem) {
  .flex-grid--2 > * {
    flex: 0 0 calc((100% - var(--grid-gap)) / 2);
  }
}
.flex-grid--3 > * {
  flex: 0 0 100%;
}

@media (min-width: 48rem) {
  .flex-grid--3 > * {
    flex: 0 0 calc((100% - var(--grid-gap)) / 2);
  }
}
@media (min-width: 64rem) {
  .flex-grid--3 > * {
    flex: 0 0 calc((100% - var(--grid-gap) * 2) / 3);
  }
}
.flex-grid--4 > * {
  flex: 0 0 100%;
}

@media (min-width: 36rem) {
  .flex-grid--4 > * {
    flex: 0 0 calc((100% - var(--grid-gap)) / 2);
  }
}
@media (min-width: 75rem) {
  .flex-grid--4 > * {
    flex: 0 0 calc((100% - var(--grid-gap) * 3) / 4);
  }
}
.flex-grid--5 > * {
  flex: 0 0 100%;
}

@media (min-width: 48rem) {
  .flex-grid--5 > * {
    flex: 0 0 calc((100% - var(--grid-gap)) / 2);
  }
}
@media (min-width: 75rem) {
  .flex-grid--5 > * {
    flex: 0 0 calc((100% - var(--grid-gap) * 4) / 5);
  }
}
.mt-0 {
  margin-top: 0;
}

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

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.mt-xs {
  margin-top: 0.25rem;
}

.mb-xs {
  margin-bottom: 0.25rem;
}

.pt-xs {
  padding-top: 0.25rem;
}

.pb-xs {
  padding-bottom: 0.25rem;
}

.py-xs {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.pt-sm {
  padding-top: 0.5rem;
}

.pb-sm {
  padding-bottom: 0.5rem;
}

.py-sm {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.pt-md {
  padding-top: 1rem;
}

.pb-md {
  padding-bottom: 1rem;
}

.py-md {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.pt-lg {
  padding-top: 1.5rem;
}

.pb-lg {
  padding-bottom: 1.5rem;
}

.py-lg {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.pt-xl {
  padding-top: 2rem;
}

.pb-xl {
  padding-bottom: 2rem;
}

.py-xl {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mt-2xl {
  margin-top: 3rem;
}

.mb-2xl {
  margin-bottom: 3rem;
}

.pt-2xl {
  padding-top: 3rem;
}

.pb-2xl {
  padding-bottom: 3rem;
}

.py-2xl {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mt-3xl {
  margin-top: 4rem;
}

.mb-3xl {
  margin-bottom: 4rem;
}

.pt-3xl {
  padding-top: 4rem;
}

.pb-3xl {
  padding-bottom: 4rem;
}

.py-3xl {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.flex-10 {
  flex: 0 0 10%;
}
@media (max-width: 768px) {
  .flex-10 {
    flex: 0 0 100%;
  }
}

.flex-20 {
  flex: 0 0 20%;
}
@media (max-width: 768px) {
  .flex-20 {
    flex: 0 0 100%;
  }
}

.flex-25 {
  flex: 0 0 25%;
}
@media (max-width: 768px) {
  .flex-25 {
    flex: 0 0 100%;
  }
}

.flex-30 {
  flex: 0 0 30%;
}
@media (max-width: 768px) {
  .flex-30 {
    flex: 0 0 90%;
  }
}

.flex-33 {
  flex: 0 0 33.333%;
}
@media (max-width: 768px) {
  .flex-33 {
    flex: 0 0 100%;
  }
}

.flex-35 {
  flex: 0 0 35%;
}
@media (max-width: 768px) {
  .flex-35 {
    flex: 0 0 100%;
  }
}

.flex-40 {
  flex: 0 0 40%;
}
@media (max-width: 768px) {
  .flex-40 {
    flex: 0 0 100%;
  }
}

.flex-45 {
  flex: 0 0 45%;
}
@media (max-width: 768px) {
  .flex-45 {
    flex: 0 0 100%;
  }
}

.flex-50 {
  flex: 0 0 50%;
}
@media (max-width: 768px) {
  .flex-50 {
    flex: 0 0 100%;
  }
}

.flex-55 {
  flex: 0 0 55%;
}
@media (max-width: 768px) {
  .flex-55 {
    flex: 0 0 100%;
  }
}

.flex-60 {
  flex: 0 0 60%;
}
@media (max-width: 768px) {
  .flex-60 {
    flex: 0 0 100%;
  }
}

.flex-65 {
  flex: 0 0 65%;
}
@media (max-width: 768px) {
  .flex-65 {
    flex: 0 0 100%;
  }
}

.flex-70 {
  flex: 0 0 70%;
}
@media (max-width: 768px) {
  .flex-70 {
    flex: 0 0 100%;
  }
}

.flex-75 {
  flex: 0 0 75%;
}
@media (max-width: 768px) {
  .flex-75 {
    flex: 0 0 100%;
  }
}

.flex-80 {
  flex: 0 0 80%;
}
@media (max-width: 768px) {
  .flex-80 {
    flex: 0 0 100%;
  }
}

.flex-100 {
  flex: 0 0 100%;
}

.flex-grow {
  flex: 1 1 0;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: 0 0 auto;
}

.btn-blue {
  width: fit-content;
  display: flex;
  background-color: #134D71;
  padding: 8.5px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #F9FBFD !important;
  border: 1px solid #134D71;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn-blue {
    font-size: 11px;
    padding: 7.5px 22px;
  }
}
.btn-blue::after {
  content: "";
  height: 7.5px;
  width: 7.5px;
  border-right: solid 1.5px #F9FBFD !important;
  border-bottom: solid 1.5px #F9FBFD !important;
  rotate: -45deg;
  margin-left: 5px;
  position: relative;
  top: 7px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn-blue::after {
    height: 5.5px;
    width: 5.5px;
    margin-top: -2px;
  }
}
.btn-blue:hover {
  background-color: #F9FBFD;
  color: #134D71 !important;
  transition: 0.3s;
}
.btn-blue:hover::after {
  transition: 0.3s;
  border-right: solid 1.5px #134D71 !important;
  border-bottom: solid 1.5px #134D71 !important;
  margin-left: 12Px !important;
}

.btn-white {
  width: fit-content;
  display: flex;
  background-color: #F9FBFD;
  padding: 8.5px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #0D2D41;
  border: 1px solid rgba(35, 138, 203, 0.1);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn-white {
    font-size: 11px;
    padding: 7.5px 22px;
  }
}
.btn-white::after {
  content: "";
  height: 7.5px;
  width: 7.5px;
  border-right: solid 1.5px #0D2D41;
  border-bottom: solid 1.5px #0D2D41;
  rotate: -45deg;
  margin-left: 5px;
  position: relative;
  top: 7px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn-white::after {
    height: 5.5px;
    width: 5.5px;
    margin-top: -2px;
  }
}
.btn-white:hover {
  background-color: #0D2D41;
  color: #F9FBFD;
  transition: 0.3s;
}
.btn-white:hover::after {
  transition: 0.3s;
  border-right: solid 1.5px #F9FBFD;
  border-bottom: solid 1.5px #F9FBFD;
  margin-left: 12Px;
}

.btn-white-contact {
  width: fit-content;
  display: flex;
  background-color: #F9FBFD;
  padding: 8.5px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #0D2D41;
  border: 1px solid rgba(35, 138, 203, 0.1);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn-white-contact {
    font-size: 11px;
    padding: 7.5px 22px;
  }
}
.btn-white-contact:hover {
  transition: 0.3s;
  background-color: #0D2D41;
  color: #F9FBFD;
}

.btn-dark {
  width: fit-content;
  display: flex;
  background-color: transparent;
  padding: 8.5px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #F9FBFD;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn-dark {
    font-size: 11px;
    padding: 7.5px 22px;
  }
}
.btn-dark::after {
  content: "";
  height: 7.5px;
  width: 7.5px;
  border-right: solid 1.5px white;
  border-bottom: solid 1.5px white;
  rotate: -45deg;
  margin-left: 5px;
  position: relative;
  top: 7px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn-dark::after {
    height: 5.5px;
    width: 5.5px;
    margin-top: -2px;
  }
}
.btn-dark:hover {
  background-color: #F9FBFD;
  color: #134D71 !important;
  transition: 0.3s;
  border: 1px solid #F9FBFD;
}
.btn-dark:hover::after {
  transition: 0.3s;
  border-right: solid 1.5px #134D71 !important;
  border-bottom: solid 1.5px #134D71 !important;
  margin-left: 12Px !important;
}

.btn-black {
  width: fit-content;
  display: flex;
  background-color: #042438;
  padding: 8.5px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #F9FBFD;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn-black {
    font-size: 11px;
    padding: 7.5px 22px;
  }
}
.btn-black::after {
  content: "";
  height: 7.5px;
  width: 7.5px;
  border-right: solid 1.5px white;
  border-bottom: solid 1.5px white;
  rotate: -45deg;
  margin-left: 5px;
  position: relative;
  top: 7px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn-black::after {
    height: 5.5px;
    width: 5.5px;
    margin-top: -2px;
  }
}
.btn-black:hover {
  background-color: #F9FBFD;
  color: #042438 !important;
  transition: 0.3s;
  border: 1px solid #042438;
}
.btn-black:hover::after {
  transition: 0.3s;
  border-right: solid 1.5px #042438 !important;
  border-bottom: solid 1.5px #042438 !important;
  margin-left: 12Px !important;
}

img {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 90px;
  background: #F9FBFD;
  border-bottom: 1px solid #238ACB;
}
.site-header__inner {
  margin: 0 auto;
  height: 100%;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-branding .custom-logo-link img {
  height: 30px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .site-branding .custom-logo-link img {
    height: 20px;
  }
}
.site-branding .site-title {
  font-size: 1.2rem;
  font-weight: 700;
}
.site-branding .site-title a {
  color: #1a1a1a;
  text-decoration: none;
}
.site-branding .site-description {
  display: none;
}

.main-navigation {
  display: flex;
  align-items: center;
  height: 100%;
}
.main-navigation .menu-toggle {
  display: none;
}
.main-navigation #primary-menu {
  list-style: none;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 25px;
}
.main-navigation #primary-menu > li {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}
.main-navigation #primary-menu > li.menu-item-has-children > a::after {
  content: "";
  height: 7.5px;
  width: 7.5px;
  border-right: solid 1.5px #134D71;
  border-bottom: solid 1.5px #134D71;
  rotate: 45deg;
  margin-top: -5px;
  margin-left: 7.5px;
}
.main-navigation #primary-menu > li:last-child > a {
  height: fit-content;
  background-color: #042438;
  padding: 8.5px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #F9FBFD;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s;
}
.main-navigation #primary-menu > li:last-child > a:hover {
  transition: 0.3s;
  background-color: #F9FBFD;
  color: #042438;
  border: 1px solid #042438;
}
.main-navigation #primary-menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  color: #0D2D41;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
.main-navigation #primary-menu > li:hover > .sub-menu, .main-navigation #primary-menu > li:focus-within > .sub-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.main-navigation #primary-menu > li > .sub-menu {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #EFF4FA;
  justify-content: space-around;
  display: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  list-style: none;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 32px 40px;
}
.main-navigation #primary-menu > li > .sub-menu > li {
  flex: 1;
  min-width: 160px;
  max-width: 240px;
  padding-right: 24px;
}
.main-navigation #primary-menu > li > .sub-menu > li > a {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #134D71;
  text-decoration: none;
  padding-bottom: 8px;
  pointer-events: none;
  cursor: default;
}
.main-navigation #primary-menu > li > .sub-menu > li:not(.menu-item-has-children) > a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #134D71;
  pointer-events: auto;
  cursor: pointer;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.main-navigation #primary-menu > li > .sub-menu > li:not(.menu-item-has-children) > a:hover {
  text-decoration: underline;
}
.main-navigation #primary-menu > li > .sub-menu > li > .sub-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.main-navigation #primary-menu > li > .sub-menu > li > .sub-menu > li > a {
  display: block;
  font-size: 0.875rem;
  color: #134D71;
  text-decoration: none;
  padding: 5px 0;
}
.main-navigation #primary-menu > li > .sub-menu > li > .sub-menu > li > a:hover {
  text-decoration: underline;
}
.main-navigation #primary-menu > li > .sub-menu > li > .sub-menu > li.current-menu-item > a {
  font-weight: 600;
}

@media (min-width: 769px) {
  .mobile-nav-drawer {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .site-header {
    height: 90px;
  }
  .site-header__inner {
    padding: 0 20px;
  }
  .main-navigation {
    height: 90px;
  }
  .main-navigation .menu-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    color: #134D71;
    text-transform: uppercase;
    font-weight: bold;
  }
  .main-navigation .burger {
    width: 15px;
    height: 12px;
    position: relative;
  }
  .main-navigation .burger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #134D71;
    left: 0;
    transition: 0.3s ease;
  }
  .main-navigation .burger span:nth-child(1) {
    top: 0;
  }
  .main-navigation .burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .main-navigation .burger span:nth-child(3) {
    bottom: 0;
  }
  .main-navigation.toggled .burger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .main-navigation.toggled .burger span:nth-child(2) {
    opacity: 0;
  }
  .main-navigation.toggled .burger span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .mobile-nav-drawer {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: #fff;
    overflow: hidden;
    display: none;
  }
  .mobile-nav-drawer.is-open {
    display: block;
  }
  .mobile-nav-drawer__track {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-nav-drawer__track.show-sub {
    transform: translateX(-50%);
  }
  .mobile-nav-drawer__panel {
    position: relative;
    height: calc(100vh - 90px);
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #072334;
    overflow-y: auto;
    flex-shrink: 0;
  }
  .mobile-nav-drawer__panel#mobile-panel-sub {
    justify-content: left;
    align-items: start;
  }
  .mobile-nav-root {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  .mobile-nav-root li {
    list-style: none;
  }
  .mobile-nav-root li:last-child {
    position: absolute;
    bottom: 25px;
    width: 90%;
    display: flex;
    justify-content: center;
    background-color: #E48900;
    border-radius: 6px;
  }
  .mobile-nav-root li:last-child a {
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 10px 20px;
  }
  .mobile-nav-root .mobile-root-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
  }
  .mobile-nav-root .mobile-root-link.has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    gap: 12px;
    background: none;
    border: none;
  }
  .mobile-nav-root .mobile-root-link.has-children::after {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }
  .mobile-nav-sub {
    padding: 0;
  }
  .mobile-nav-sub__back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #E48900;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
  }
  .mobile-nav-sub__back::before {
    content: "‹";
    font-size: 1.2rem;
    color: #E48900;
    line-height: 1;
  }
  .mobile-nav-sub__content {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .mobile-nav-sub__group .mobile-nav-sub__standalone-link {
    display: block;
    padding: 7px 0;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
  }
  .mobile-nav-sub__group .mobile-nav-sub__standalone-link:hover {
    text-decoration: underline;
  }
  .mobile-nav-sub__group .mobile-nav-sub__standalone-link.current-menu-item {
    font-weight: 600;
  }
  .mobile-nav-sub__group-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e5e5e5;
  }
  .mobile-nav-sub__group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
  }
  .mobile-nav-sub__group ul li a {
    display: block;
    padding: 7px 0;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
  }
  .mobile-nav-sub__group ul li a:hover {
    text-decoration: underline;
  }
  .mobile-nav-sub__group ul li:last-child a {
    border-bottom: none;
  }
  .mobile-nav-sub__group ul li.current-menu-item a {
    font-weight: 600;
  }
  .main-navigation #primary-menu {
    display: none !important;
  }
  #primary-menu > li > .sub-menu {
    display: none !important;
  }
}
.subtitle {
  color: #238ACB;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .subtitle {
    font-size: 10px;
    margin-bottom: 2px;
  }
}

.title {
  color: #134D71;
  font-size: 28px;
  margin-top: 8px;
  font-weight: 400;
}
.title h2 {
  font-weight: 400;
}
@media (max-width: 768px) {
  .title h2 {
    font-size: 20px;
  }
}
.title strong {
  color: #238ACB;
  font-weight: 400;
}

.site-footer {
  background-color: #031A29;
  padding-bottom: 0;
}
.site-footer .widget {
  position: fixed;
  right: 25px;
  bottom: 25px;
  transform: translateY(0);
  width: 30%;
  background-color: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  opacity: 1;
  z-index: 2;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (max-width: 768px) {
  .site-footer .widget {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: fit-content;
    width: 75%;
    flex-direction: column;
  }
}
.site-footer .widget.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.site-footer .widget .cross {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.site-footer .widget .flex-35 {
  align-items: end;
}
.site-footer .widget .flex-35 img {
  border-bottom-left-radius: 10px;
  padding: 25px 25px 0 0;
}
.site-footer .widget .flex-65 {
  padding: 25px;
}
.site-footer .widget .flex-65 p, .site-footer .widget .flex-65 a {
  font-size: 15px;
}
.site-footer .widget .flex-65 .title {
  margin: 0;
  font-weight: bold;
}
.site-footer .widget .flex-65 .text {
  color: #134D71;
  font-weight: 500;
  margin: 10px 0;
}
.site-footer .widget .flex-65 a {
  gap: 10px;
  color: #E48900;
  font-weight: 500;
}
.site-footer .widget .flex-65 a::after {
  content: "";
  height: 10px;
  width: 10px;
  background-image: url(/wp-content/uploads/2026/04/go-orange.svg);
  background-size: contain;
}
@media (max-width: 768px) {
  .site-footer .section__inner.flex {
    flex-direction: column;
  }
}
.site-footer .flex-40 img {
  width: 120px;
}
.site-footer .flex-40 p {
  width: 320px;
  font-size: 14px;
  color: #F9FBFD;
  font-weight: 400;
}
.site-footer .flex-20 .simulateurs {
  gap: 5px;
  margin-bottom: 30px;
}
.site-footer .flex-20 .solutions-f {
  margin-bottom: 30px;
}
.site-footer .flex-20 .contact-f {
  gap: 5px;
}
.site-footer .flex-20 .contact-f a {
  margin: 1em 0;
  display: block;
}
.site-footer .flex-20 .infos ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.site-footer .flex-20 h4 {
  color: #E48900;
  font-size: 16px;
  font-weight: 500;
}
.site-footer .flex-20 a {
  font-size: 14px;
  color: #F9FBFD;
  font-weight: 400;
  margin: 1em 0;
  display: block;
}
.site-footer .flex-20 p {
  font-size: 14px;
  color: #F9FBFD;
  font-weight: 400;
}
.site-footer .cols-footer {
  gap: 12px;
}

.site-info {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  margin-top: 100px;
}
.site-info a {
  color: #F9FBFD;
  font-size: 14px;
}
.site-info p {
  color: #F9FBFD;
  font-size: 14px;
}
.site-info ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

.hero-home {
  background-image: url("/wp-content/themes/paragon/img/bg-header.png");
  background-position: -4px;
}
@media (max-width: 768px) {
  .hero-home {
    background-position: -4px -10px;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.hero-home .flex-grid {
  gap: 0;
}
@media (max-width: 768px) {
  .hero-home .flex-grid.flex-grid--2 {
    gap: 30px;
  }
}
.hero-home .flex-grid .content h1 {
  color: #F9FBFD;
  font-weight: 300;
  width: 600px;
  font-size: 50px;
}
@media (max-width: 768px) {
  .hero-home .flex-grid .content h1 {
    font-size: 24px;
    width: 90%;
  }
}
.hero-home .flex-grid .content > p {
  font-size: 18px;
  font-weight: 300;
  color: #F9FBFD;
  max-width: 560px;
}
@media (max-width: 768px) {
  .hero-home .flex-grid .content > p {
    font-size: 14px;
  }
}
.hero-home .flex-grid .content .btns {
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero-home .flex-grid .imgs {
  position: relative;
  min-height: 630px;
}
@media (max-width: 768px) {
  .hero-home .flex-grid .imgs {
    min-height: 350px;
  }
}
.hero-home .flex-grid .imgs .card:nth-child(1) {
  position: absolute;
  right: 0;
}
@media (max-width: 768px) {
  .hero-home .flex-grid .imgs .card:nth-child(1) {
    width: 50%;
    left: -1.2rem;
  }
}
.hero-home .flex-grid .imgs .card:nth-child(2) {
  position: absolute;
  top: 180px;
  left: 50px;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-home .flex-grid .imgs .card:nth-child(2) {
    width: 33%;
    right: -1.2rem;
    left: initial;
    top: 60px;
  }
}
.hero-home .flex-grid .imgs .card:nth-child(3) {
  position: absolute;
  bottom: 20px;
  left: 220px;
}
@media (max-width: 768px) {
  .hero-home .flex-grid .imgs .card:nth-child(3) {
    width: 40%;
    top: 150px;
    left: 150Px;
  }
}
@media (max-width: 768px) {
  .hero-home .flex-grid .chiffres {
    display: none;
  }
}
.hero-home .flex-grid .chiffres.mobile {
  display: none;
}
@media (max-width: 768px) {
  .hero-home .flex-grid .chiffres.mobile {
    display: flex;
    margin-top: -30px;
  }
}
.hero-home .flex-grid .chiffres .chiffre {
  padding: 0 0 0 30px;
  border-right: solid 1px rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .hero-home .flex-grid .chiffres .chiffre {
    flex: 0 0 33%;
    padding: 0 0 0 20px;
  }
}
.hero-home .flex-grid .chiffres .chiffre:last-child {
  border-right: none;
}
.hero-home .flex-grid .chiffres .chiffre h4 {
  font-family: "Inter", sans-serif;
  color: #F9FBFD;
  font-size: 55px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 768px) {
  .hero-home .flex-grid .chiffres .chiffre h4 {
    font-size: 40px;
  }
}
.hero-home .flex-grid .chiffres .chiffre:nth-child(2) span, .hero-home .flex-grid .chiffres .chiffre:nth-child(3) span {
  font-size: 40px;
  position: relative;
  top: 6Px;
}
@media (max-width: 768px) {
  .hero-home .flex-grid .chiffres .chiffre:nth-child(2) span, .hero-home .flex-grid .chiffres .chiffre:nth-child(3) span {
    font-size: 25px;
  }
}
.hero-home .flex-grid .chiffres .chiffre p {
  margin: 0;
  font-size: 14px;
  color: #F9FBFD;
  position: relative;
  top: -10px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero-home .flex-grid .chiffres .chiffre p {
    font-size: 9px;
  }
}

/*.title-row {
  @media (max-width: 768px) {
    width: 90%;
    flex-direction: column;
    align-items: end !important;
    margin: 0 auto 25px;
  }
}*/
@media (max-width: 768px) {
  .pfs {
    display: none;
  }
}
.pfs .section__inner {
  margin-right: 0;
}
@media (max-width: 768px) {
  .pfs .subtitle {
    margin-left: 1rem !important;
  }
}
@media (max-width: 768px) {
  .pfs .title-row {
    margin-left: 1rem !important;
    flex-direction: inherit !important;
    align-items: start;
    margin-bottom: 20px;
  }
}
.pfs .title-row .title {
  margin-bottom: 40px;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .pfs .title-row .title {
    margin-bottom: 0;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .pfs .title-row .splide__arrows {
    display: none;
  }
}
@media (max-width: 768px) {
  .pfs .splide__arrows {
    display: none !important;
  }
}
.pfs .points {
  gap: 25px;
}
@media (max-width: 768px) {
  .pfs .points {
    overflow-x: scroll;
  }
}
.pfs .points .pf {
  background-color: #F9FBFD;
  padding: 27px 32px;
  border-radius: 15px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .pfs .points .pf {
    flex: 0 0 75%;
  }
}
@media (max-width: 768px) {
  .pfs .points .pf:first-child {
    margin-left: 1rem;
  }
}
.pfs .points .pf img {
  width: 30px;
}
.pfs .points .pf .content h4 {
  font-size: 20px;
  color: #134D71;
  font-weight: 400;
}
@media (max-width: 768px) {
  .pfs .points .pf .content h4 {
    font-size: 15px;
  }
}
.pfs .points .pf .content p {
  margin: 0;
  color: #134D71;
}
@media (max-width: 768px) {
  .pfs .points .pf .content p {
    font-size: 13px;
    margin-top: 12px;
  }
}
.pfs .points .pf:hover {
  transition: 0.3s;
  background-color: #042438;
}
.pfs .points .pf:hover h4 {
  color: #F9FBFD;
}
.pfs .points .pf:hover p {
  color: #F9FBFD;
}
.pfs.mobile {
  display: none;
}
@media (max-width: 768px) {
  .pfs.mobile {
    display: block;
  }
}

.de {
  background-color: #042438;
}
.de .heading {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .de .heading {
    gap: 42px;
    padding-top: 1rem;
  }
}
@media (max-width: 768px) {
  .de .heading .content {
    order: 2;
  }
}
.de .heading .content h2 {
  color: #F9FBFD;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .de .heading .content h2 {
    font-size: 20px;
  }
}
.de .heading .content p {
  color: #F9FBFD;
  width: 90%;
  margin: 0;
}
@media (max-width: 768px) {
  .de .heading .content p {
    font-size: 14px;
    line-height: 18px;
    width: 75%;
  }
}
.de .heading .content.flex {
  justify-content: right;
}
@media (max-width: 768px) {
  .de .heading .content.flex {
    justify-content: flex-end;
    order: 1;
  }
}
.de .dispositifs {
  flex-direction: row-reverse;
  gap: 25px;
}
@media (max-width: 768px) {
  .de .dispositifs {
    flex-direction: column-reverse;
  }
}
.de .dispositifs .dispositif {
  position: relative;
  max-height: 500px;
  flex: 3;
}
@media (max-width: 768px) {
  .de .dispositifs .dispositif {
    max-height: 300px;
  }
}
.de .dispositifs .dispositif:nth-child(2) ul {
  flex-direction: column;
}
.de .dispositifs .dispositif::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
  border-radius: 15px;
}
.de .dispositifs .dispositif img {
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .de .dispositifs .dispositif img {
    height: 300px;
  }
}
.de .dispositifs .dispositif .title {
  position: absolute;
  bottom: 20px;
  color: #F9FBFD;
  font-weight: 400;
  font-size: 28px;
  left: 35px;
  margin: 0;
  line-height: 32px;
}
@media (max-width: 768px) {
  .de .dispositifs .dispositif .title {
    font-size: 18px;
    left: 20px;
    bottom: 10px;
  }
}
.de .dispositifs .dispositif .autres {
  position: absolute;
  top: -2px;
  height: 102%;
  width: 102%;
  border-radius: 15px;
  background: #021324;
  padding: 45px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 35px;
  flex: 3;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.de .dispositifs .dispositif .autres .content {
  position: relative;
  top: 0;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
.de .dispositifs .dispositif .autres h3 {
  color: #F9FBFD;
  font-weight: 400;
  font-size: 28px;
  margin: 0;
  line-height: 32px;
}
.de .dispositifs .dispositif .autres ul {
  display: flex;
  flex-direction: column-reverse;
  padding: 0;
  margin: 0;
  list-style: none;
}
.de .dispositifs .dispositif .autres ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7.5px 0;
}
.de .dispositifs .dispositif .autres ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F9FBFD;
  font-weight: 400;
}
.de .dispositifs .dispositif .autres ul li a::after {
  content: "";
  height: 7.5px;
  width: 7.5px;
  border-right: solid 1.5px white;
  border-bottom: solid 1.5px white;
  rotate: -45deg;
  margin-left: 10px;
}
.de .dispositifs .dispositif:hover .autres {
  opacity: 1;
  pointer-events: auto;
}
.de .dispositifs .dispositif:hover .autres .content {
  transform: translateY(0);
}

.solutions {
  background-color: #F4F8FC;
  border: solid 1px rgba(86, 190, 236, 0.1019607843);
}
.solutions .heading {
  margin-bottom: 22px;
}
.solutions .heading p {
  color: #134D71;
}
@media (max-width: 768px) {
  .solutions .heading h2 br {
    display: none;
  }
}
.solutions .types {
  gap: 30px;
}
@media (max-width: 768px) {
  .solutions .types {
    flex-direction: column;
  }
}
.solutions .types > .content {
  flex: 6;
  border: solid 1px rgba(35, 138, 203, 0.1019607843);
  border-radius: 15px;
}
.solutions .types > .content > .content img {
  min-height: 350px;
  max-height: 350px;
  height: 350px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media (max-width: 768px) {
  .solutions .types > .content > .content img {
    max-height: 185px;
    min-height: 185px;
  }
}
.solutions .types > .content > .content div {
  padding: 20px 0;
  border-top: 1px solid rgba(35, 138, 203, 0.1);
  min-height: 230px;
}
.solutions .types > .content > .content div ul {
  padding: 0;
  width: 76%;
}
@media (max-width: 768px) {
  .solutions .types > .content > .content div ul {
    width: 100%;
  }
}
.solutions .types > .content > .content div ul li {
  color: #134D71;
  padding: 0 0 10px 25px;
  list-style: none;
  background-image: url("/wp-content/themes/paragon/img/check-blue.png");
  background-repeat: no-repeat;
  background-position: left 7px;
  background-size: 15px 10px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .solutions .types > .content > .content div ul li {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .solutions .types > .content > .content a {
    font-size: 11px !important;
  }
}
.solutions .types > .content:nth-child(1) .bottom-card {
  padding: 30px 24px;
  background-color: #fff;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.solutions .types > .content:nth-child(1) .bottom-card h4 {
  color: #134D71;
  font-size: 20px;
}
@media (max-width: 768px) {
  .solutions .types > .content:nth-child(1) .bottom-card h4 {
    font-size: 17px;
  }
}
.solutions .types > .content:nth-child(1) .bottom-card p {
  color: #134D71;
  width: 390px;
  line-height: 20px;
  margin: 10px 0 20px;
}
@media (max-width: 768px) {
  .solutions .types > .content:nth-child(1) .bottom-card p {
    width: 100%;
    margin-bottom: 10px;
  }
}
.solutions .types > .content:nth-child(1) .bottom-card a {
  font-size: 14px;
  font-weight: 500;
  color: #238ACB;
}
.solutions .types > .content:nth-child(1) .bottom-card a::after {
  content: "";
  height: 7.5px;
  width: 7.5px;
  border-right: solid 1.5px #238ACB;
  border-bottom: solid 1.5px #238ACB;
  rotate: -45deg;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .solutions .types > .content:nth-child(1) .bottom-card a::after {
    width: 5.5px;
    height: 5.5px;
    margin-left: 6px;
    margin-top: -1px;
  }
}
.solutions .types > .content:nth-child(2) .bottom-card {
  padding: 30px 24px;
  background-color: #042438;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.solutions .types > .content:nth-child(2) .bottom-card h4 {
  color: #F9FBFD;
  font-size: 20px;
}
.solutions .types > .content:nth-child(2) .bottom-card p {
  color: #F9FBFD;
  width: 330px;
  line-height: 20px;
  margin: 10px 0 20px;
}
@media (max-width: 768px) {
  .solutions .types > .content:nth-child(2) .bottom-card p {
    width: 100%;
  }
}
.solutions .types > .content:nth-child(2) .bottom-card a {
  font-size: 14px;
  font-weight: 500;
  color: #238ACB;
}
.solutions .types > .content:nth-child(2) .bottom-card a::after {
  content: "";
  height: 7.5px;
  width: 7.5px;
  border-right: solid 1.5px #238ACB;
  border-bottom: solid 1.5px #238ACB;
  rotate: -45deg;
  margin-left: 10px;
}

.partenaires .subtitle {
  margin-bottom: 20px;
}
.partenaires .list img {
  width: 170px;
  border: 1px solid rgba(19, 77, 113, 0.15);
  border-radius: 8px;
  object-fit: contain;
  padding: 10px 20px;
  height: 60px;
}
.partenaires .reverse-partners-slider {
  margin-top: 10px;
}

.etapes .flex {
  gap: 100px;
}
@media (max-width: 768px) {
  .etapes .flex {
    flex-direction: column;
    gap: 30px;
  }
}
.etapes .flex .content:nth-child(1) {
  flex: 5;
}
.etapes .flex .content:nth-child(1) img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 15px;
}
.etapes .flex .content:nth-child(2) {
  flex: 6;
}
@media (max-width: 768px) {
  .etapes .flex .content:nth-child(2) {
    width: 100%;
  }
}
.etapes .flex .content:nth-child(2) .text {
  width: 500px;
  color: #134D71;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .etapes .flex .content:nth-child(2) .text {
    width: 100%;
    font-size: 13px;
    line-height: 17px;
    margin-bottom: 30px;
  }
}
.etapes .flex .content:nth-child(2) .list .etape h4 {
  font-weight: 700;
  color: rgba(19, 77, 113, 0.5);
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(19, 77, 113, 0.1);
  padding: 10px 0;
}
@media (max-width: 768px) {
  .etapes .flex .content:nth-child(2) .list .etape h4 {
    font-size: 10px;
  }
}
.etapes .flex .content:nth-child(2) .list .etape h4::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.etapes .flex .content:nth-child(2) .list .etape.active h4 {
  color: rgb(19, 77, 113);
}
.etapes .flex .content:nth-child(2) .list .etape.active h4::after {
  transform: rotate(45deg);
}
.etapes .flex .content:nth-child(2) .list .etape .etape-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.etapes .flex .content:nth-child(2) .list .etape .etape-content p, .etapes .flex .content:nth-child(2) .list .etape .etape-content li {
  color: #134D71;
}
@media (max-width: 768px) {
  .etapes .flex .content:nth-child(2) .list .etape .etape-content p, .etapes .flex .content:nth-child(2) .list .etape .etape-content li {
    font-size: 13px;
    line-height: 17px;
  }
}
.etapes .flex .content:nth-child(2) .list .etape .etape-content .etape-inner {
  overflow: hidden;
}
.etapes .flex .content:nth-child(2) .list .etape.active .etape-content {
  grid-template-rows: 1fr;
}

.sim {
  background-color: #F9FBFD;
}
.sim .subtitle {
  text-align: center;
  color: #238ACB !important;
}
.sim .title {
  width: 60%;
  text-align: center;
  margin: auto;
}
@media (max-width: 768px) {
  .sim .title {
    width: 85%;
    margin: 0 auto;
  }
}
.sim .titles {
  flex-direction: row-reverse;
  gap: 25px;
}
@media (max-width: 768px) {
  .sim .titles {
    overflow-x: scroll;
    scrollbar-width: none;
  }
}
.sim .titles p {
  color: grey;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 2.5px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .sim .titles p {
    font-size: 10px;
  }
}
.sim .titles p.active {
  color: #134D71;
  border-bottom: solid 1.5px #134D71;
}
.sim .content h3 {
  color: #134D71;
  font-weight: 400;
}
@media (max-width: 768px) {
  .sim .content h3 {
    font-size: 17px;
  }
}
.sim .content p {
  color: #134D71;
}
@media (max-width: 768px) {
  .sim .content p {
    flex-shrink: 0;
    font-size: 12px;
    line-height: 17px;
  }
}
.sim .simulator {
  width: 95%;
  background-color: white;
  border: solid 1px rgba(35, 138, 203, 0.1019607843);
  border-radius: 15px;
  padding-top: 50px;
  margin: 75px auto;
  max-width: 1300px;
}
@media (max-width: 768px) {
  .sim .simulator {
    margin: 25px auto;
  }
}
@media (max-width: 768px) {
  .sim .simulator .flex {
    flex-direction: column;
    gap: 30px;
  }
}
.sim .simulator .flex img {
  max-height: 500px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .sim .simulator .flex img {
    max-height: 250px;
  }
}
.sim .simulator .flex .content {
  padding: 0 7.5%;
}
.sim .simulator .flex .content a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #238ACB;
}
.sim .simulator .flex .content a::after {
  content: "";
  height: 10px;
  width: 10px;
  background-image: url("/wp-content/uploads/2026/04/icons8-exporter-64.png");
  background-size: contain;
}
.sim .simulator #content-simulator-122, .sim .simulator #content-simulator-123 {
  display: none;
}

.faq .text {
  color: #134D71;
  line-height: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .faq .text {
    font-size: 13px;
    line-height: 17px;
    margin: 15px 0 20px;
  }
}
@media (max-width: 768px) {
  .faq .questions {
    gap: 10px;
    margin-top: 30px;
  }
}
.faq .questions .q {
  background-color: #F9FBFD;
  padding: 20px;
  border: solid 1px rgba(35, 138, 203, 0.1019607843);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .faq .questions .q {
    padding: 15px;
  }
}
.faq .questions .q h4 {
  color: #134D71;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s ease;
  gap: 5px;
}
@media (max-width: 768px) {
  .faq .questions .q h4 {
    font-size: 14px;
  }
}
.faq .questions .q h4::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq .questions .q.active h4::after {
  transform: rotate(45deg);
}
.faq .questions .q .q-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq .questions .q .q-content .q-inner {
  overflow: hidden;
}
.faq .questions .q .q-content .q-inner p, .faq .questions .q .q-content .q-inner li {
  color: #134D71;
  line-height: 18px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .faq .questions .q .q-content .q-inner p, .faq .questions .q .q-content .q-inner li {
    font-size: 14px;
  }
}
.faq .questions .q.active .q-content {
  grid-template-rows: 1fr;
}

.contact {
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.contact::before {
  content: "";
  position: absolute;
  height: 600px;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .contact::before {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .contact {
    height: 450px;
    background-size: 275%;
    background-position: 67.5% top;
  }
}
.contact .stack {
  z-index: 0;
}
@media (max-width: 768px) {
  .contact .stack {
    width: 75%;
    margin: auto;
  }
}
.contact .stack .subtitle {
  color: #F9FBFD;
  margin: 0;
}
.contact .stack .title {
  color: #F9FBFD;
  text-align: center;
}
@media (max-width: 768px) {
  .contact .stack .title br {
    display: none;
  }
}
.contact .stack .boutons {
  background-color: rgba(244, 248, 252, 0.6);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .contact .stack .boutons {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .contact .stack .boutons a, .contact .stack .boutons button {
    width: 100%;
    justify-content: center;
  }
}

.home .solutions .types > .content:nth-child(2) .bottom-card li, .page-template-a-propos .solutions .types > .content:nth-child(2) .bottom-card li {
  filter: brightness(0) invert(1);
}

.hero-projet {
  height: calc(100vh - 90px);
  padding: 0 0 0 5rem;
  background-image: url("/wp-content/uploads/2026/04/LS-FOND-HERO.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero-projet {
    width: 100%;
    height: auto;
    padding: 0;
    margin: auto;
  }
}
.hero-projet .flex {
  height: 100%;
}
@media (max-width: 768px) {
  .hero-projet .flex {
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
    gap: 60px;
  }
}
.hero-projet .flex .content-30 {
  height: 100%;
  object-fit: cover;
}
.hero-projet .flex .section-content {
  align-self: center;
}
@media (max-width: 768px) {
  .hero-projet .flex .section-content {
    width: 90%;
    margin: 0 auto;
    flex: initial;
  }
}
@media (max-width: 768px) {
  .hero-projet .flex .section-content .title {
    font-size: 22px;
    margin-top: 20px;
    line-height: 28px;
  }
}
.hero-projet p {
  color: #134D71;
}
@media (max-width: 768px) {
  .hero-projet p {
    font-size: 13px;
  }
}
.hero-projet .btns {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .hero-projet .btns {
    margin-top: 25px;
  }
}
.hero-projet .hero-img {
  height: 100%;
  overflow: hidden;
}
.hero-projet .hero-img img {
  object-fit: cover;
  height: 106%;
  object-position: center;
}
@media (max-width: 768px) {
  .hero-projet .hero-img img {
    height: initial;
    aspect-ratio: 1/1;
  }
}

.single-projet .orga {
  padding-top: 0;
}

.orga h2 {
  color: #134D71;
  font-size: 28px;
  margin-top: 8px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .orga h2 {
    font-size: 20px;
  }
}
.orga h2 strong {
  color: #238ACB;
  font-weight: 400;
}
.orga p {
  color: #134D71;
  width: 54%;
}
@media (max-width: 768px) {
  .orga p {
    width: 100%;
    font-size: 13px;
  }
}
.orga ul {
  padding: 0;
}
.orga ul li {
  color: #134D71;
  padding: 0 0 25px 25px;
  list-style: none;
  background-image: url("/wp-content/themes/paragon/img/check-blue.png");
  background-repeat: no-repeat;
  background-position: left 7px;
  background-size: 15px 10px;
}
@media (max-width: 768px) {
  .orga ul li {
    font-size: 13px;
  }
}
.orga ul li li {
  background-image: none;
  list-style: disc;
  padding: 0;
  margin-left: 25px;
}
@media (max-width: 768px) {
  .orga ul li li {
    font-size: 13px;
  }
}
.orga .title-points {
  max-width: 300px;
  line-height: 24px;
  font-weight: 500;
  color: #134D71;
}
@media (max-width: 768px) {
  .orga .title-points {
    max-width: none;
    width: 100%;
    font-size: 15px;
    margin-top: 0;
  }
}
.orga .points p {
  color: #238ACB;
  margin: 7px 0;
  font-weight: 700;
  padding: 0 0 0 30px;
  background-image: url("/wp-content/themes/paragon/img/bigcheck.png");
  background-repeat: no-repeat;
  background-position: left 5px;
  background-size: 20px 20px;
  width: 80%;
}
@media (max-width: 768px) {
  .orga .points p {
    width: 100%;
    background-size: 15px 15px;
    background-position: left center;
  }
}

@media (max-width: 768px) {
  .ministere .section__inner {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .ministere .section__inner img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 6px;
  }
}
.ministere .section__inner .content-ministere {
  align-self: center;
  gap: 30px;
  display: flex;
  flex-direction: column;
}
.ministere .section__inner .content-ministere h2 {
  margin-top: 0;
}
@media (max-width: 768px) {
  .ministere .section__inner .content-ministere h2 {
    font-size: 20px;
  }
}
.ministere .section__inner .content-ministere h4 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 8px;
}
.ministere .section__inner .content-ministere .texte {
  color: #134D71;
}
@media (max-width: 768px) {
  .ministere .section__inner .content-ministere .texte {
    font-size: 13px;
  }
}
.ministere .section__inner .content-ministere .texte h3 {
  margin: 20px 0 5px;
}
.ministere .section__inner .content-ministere .texte h3:first-child {
  margin-top: 0;
}
.ministere .section__inner .content-ministere .texte p {
  margin: 0 0 12px 0;
}
@media (max-width: 768px) {
  .ministere .section__inner .content-ministere .texte p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .ministere .section__inner .content-ministere .texte li {
    font-size: 13px;
  }
}
.ministere .section__inner .content-ministere .btns {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 768px) {
  .avantages {
    display: none;
    border-top: 1px solid rgba(35, 138, 203, 0.1);
  }
}
@media (max-width: 768px) {
  .avantages .subtitle {
    margin-left: 1rem !important;
  }
}
@media (max-width: 768px) {
  .avantages .title-row {
    margin-left: 1rem !important;
    flex-direction: inherit !important;
    align-items: start;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .avantages .title-row .title {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .avantages .title-row .splide__arrows {
    display: none;
  }
}
.avantages .title {
  margin-bottom: 40px;
}
.avantages .points {
  gap: 25px;
}
@media (max-width: 768px) {
  .avantages .points {
    overflow-x: scroll;
  }
}
.avantages .points .pf {
  background-color: #F9FBFD;
  padding: 27px 32px;
  border-radius: 15px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .avantages .points .pf {
    flex: 0 0 75%;
  }
}
@media (max-width: 768px) {
  .avantages .points .pf:first-child {
    margin-left: 1rem;
  }
}
.avantages .points .pf img {
  width: 30px;
}
.avantages .points .pf .content h4 {
  font-size: 20px;
  color: #134D71;
  font-weight: 400;
}
@media (max-width: 768px) {
  .avantages .points .pf .content h4 {
    font-size: 16px;
  }
}
.avantages .points .pf .content p {
  color: #134D71;
  margin: 0;
  font-size: 14Px;
}
@media (max-width: 768px) {
  .avantages .points .pf .content p {
    font-size: 13px;
  }
}
.avantages .points .pf:hover {
  transition: 0.3s;
  background-color: #042438;
}
.avantages .points .pf:hover h4 {
  color: #F9FBFD;
}
.avantages .points .pf:hover p {
  color: #F9FBFD;
}
.avantages.mobile {
  display: none;
}
@media (max-width: 768px) {
  .avantages.mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .single-projet .single-s {
    flex-direction: column;
  }
}
.single-projet .solutions .types > .content:nth-child(1) ul li {
  color: #134D71;
}
.single-projet .solutions .types > .content:nth-child(2) .bottom-card {
  background-color: #fff !important;
}
.single-projet .solutions .types > .content:nth-child(2) .bottom-card h4, .single-projet .solutions .types > .content:nth-child(2) .bottom-card p, .single-projet .solutions .types > .content:nth-child(2) .bottom-card li {
  color: #134D71;
}
.single-projet .solutions .types .content {
  border: none !important;
}
.single-projet .solutions .types .content p {
  font-size: 14px;
}

.postid-406 .hero-projet .flex-40.section-content {
  flex: 0 0 50%;
}
@media (max-width: 1025px) {
  .postid-406 .hero-projet .flex-40.section-content .title {
    font-size: 24px;
  }
}

.hero-services {
  background-image: url("/wp-content/uploads/2026/04/LS-FOND-HERO.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-services h1 {
  font-size: 50px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .hero-services h1 {
    margin-top: 20px;
    font-size: 24px;
  }
}
.hero-services .texte {
  color: #134D71;
}
@media (max-width: 768px) {
  .hero-services .texte {
    font-size: 14px;
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  .hero-services .texte p {
    font-size: 14px;
  }
}
.hero-services .right-section {
  align-self: end;
}
@media (max-width: 768px) {
  .hero-services .right-section {
    display: none;
  }
}
.hero-services .right-section.mobile {
  display: none;
  width: 90%;
  margin: 50px auto 0;
}
@media (max-width: 768px) {
  .hero-services .right-section.mobile {
    display: block;
  }
}
.hero-services .right-section img {
  width: 70px;
}
.hero-services .right-section .texte-a {
  color: #7F9DB2;
}
@media (max-width: 768px) {
  .hero-services .right-section .texte-a p {
    font-size: 14px;
    line-height: 17px;
  }
}
.hero-services .right-section .texte-a strong {
  color: #134D71;
}
.hero-services .right-section a {
  color: #134D71;
}
@media (max-width: 768px) {
  .hero-services .right-section a {
    font-size: 11px;
  }
}
.hero-services .images {
  width: 100%;
  margin-top: 50px;
}
.hero-services .images .flex-55 img {
  height: 380px;
  object-fit: cover;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
@media (max-width: 768px) {
  .hero-services .images .flex-55 img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    object-position: center;
    height: 280px;
  }
}
@media (max-width: 768px) {
  .hero-services .images .flex-40 {
    display: none;
  }
}
.hero-services .images .flex-40 img {
  height: 380px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

@media (max-width: 768px) {
  .page-template-tout-inclus .hero-services {
    background-size: 100% 100% !important;
  }
}
.page-template-tout-inclus .hero-services .subtitle {
  color: #F9FBFD;
}
.page-template-tout-inclus .hero-services h1 {
  color: #F9FBFD;
}
.page-template-tout-inclus .hero-services .texte {
  color: #F9FBFD;
}
.page-template-tout-inclus .hero-services .right-section .texte-a {
  color: #B2C9D9;
}
.page-template-tout-inclus .hero-services .right-section .texte-a strong {
  color: #F9FBFD;
}
.page-template-tout-inclus .hero-services .right-section a {
  color: #F9FBFD;
}

@media (max-width: 768px) {
  .expert .flex {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .expert .liste .element {
    font-size: 14px;
  }
}
.expert .texte {
  color: #134D71;
}
@media (max-width: 768px) {
  .expert .texte p {
    font-size: 13px;
  }
}
.expert ul {
  padding: 0;
}
.expert ul li {
  color: #134D71;
  padding: 0 0 0px 25px;
  list-style: none;
  background-image: url("/wp-content/themes/paragon/img/check-blue.png");
  background-repeat: no-repeat;
  background-position: left 7px;
  background-size: 15px 10px;
}
@media (max-width: 768px) {
  .expert ul li {
    font-size: 13px;
  }
}

.page-template-tout-inclus .hero-services {
  background-image: url("/wp-content/themes/paragon/img/bg-header-services.png");
  background-repeat: no-repeat;
  background-size: 100% 550px;
}

.modalites .texte {
  width: 460px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .modalites .texte {
    width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .modalites .content-t {
    order: 2;
  }
}
.modalites .list {
  max-width: 600px;
}
.modalites .list .accordion__item {
  border-bottom: 1px solid rgba(19, 77, 113, 0.15);
  overflow: hidden;
}
.modalites .list .accordion__item .accordion__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  user-select: none;
}
.modalites .list .accordion__item .accordion__header img {
  width: 20px;
}
.modalites .list .accordion__item .accordion__header p {
  margin: 0;
  flex: 1;
  font-weight: 500;
  color: #134D71;
  text-transform: uppercase;
  font-size: 15px;
}
@media (max-width: 768px) {
  .modalites .list .accordion__item .accordion__header p {
    font-size: 12px;
  }
}
.modalites .list .accordion__item .accordion__header .accordion__icon {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: none;
  color: #134D71;
}
.modalites .list .accordion__item.active .accordion__icon {
  content: "-";
}
.modalites .list .accordion__item.active .accordion__body {
  max-height: 300px;
  padding: 0 0 16px 32px;
}
.modalites .list .accordion__item .accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 32px;
}
.modalites .list .accordion__item .accordion__body p {
  color: #134D71;
}
@media (max-width: 768px) {
  .modalites .list .accordion__item .accordion__body p {
    font-size: 13px;
  }
}

.aqui .section__inner {
  gap: 80px;
}
@media (max-width: 768px) {
  .aqui .section__inner {
    gap: 60px;
  }
}
.aqui .section__inner .texte {
  color: #134D71;
}
@media (max-width: 768px) {
  .aqui .section__inner .texte p {
    font-size: 13px;
  }
}
.aqui .section__inner .texte ul {
  padding: 0;
}
.aqui .section__inner .texte ul li {
  color: #134D71;
  padding: 0 0 8px 25px;
  list-style: none;
  background-image: url("/wp-content/themes/paragon/img/check-blue.png");
  background-repeat: no-repeat;
  background-position: left 7px;
  background-size: 15px 10px;
}
@media (max-width: 768px) {
  .aqui .section__inner .texte ul li {
    font-size: 13px;
  }
}

.fonctionnalites-ti .content-fonc {
  margin: 0px;
}
@media (max-width: 768px) {
  .fonctionnalites-ti .content-fonc {
    width: 90%;
    padding: 0 !important;
    margin: auto;
  }
}
.fonctionnalites-ti .content-fonc .liste-f .fonc {
  background-color: #F9FBFD;
  padding: 50px;
}
@media (max-width: 768px) {
  .fonctionnalites-ti .content-fonc .liste-f .fonc {
    height: fit-content;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }
}
.fonctionnalites-ti .content-fonc .liste-f .fonc .secg {
  display: flex;
  justify-content: center;
}
.fonctionnalites-ti .content-fonc .liste-f .fonc .secg img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .fonctionnalites-ti .content-fonc .liste-f .fonc .secg img {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .fonctionnalites-ti .content-fonc .liste-f .fonc .secd .texte p {
    font-size: 13px;
    line-height: 17px;
  }
}
@media (max-width: 768px) {
  .fonctionnalites-ti .content-fonc .liste-f .fonc .secd .element {
    font-size: 13px;
    background-size: 17px 17px;
  }
}

.pfs-services {
  background-color: #F9FBFD;
}
@media (max-width: 768px) {
  .pfs-services .title {
    margin-bottom: 20px;
    margin-left: 0;
  }
}
.pfs-services .pf {
  background-color: #EFF4FA !important;
}
.pfs-services .pf:hover {
  background-color: #072334 !important;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .fonc-ls {
    padding-top: 0;
  }
}
.fonc-ls .texte {
  color: #134D71;
  font-weight: 400;
}
.fonc-ls .texte h4 {
  font-size: 20px;
  color: #134D71;
  font-weight: 400;
}
.fonc-ls .texte h4 strong {
  font-size: 20px;
  color: #238ACB;
  font-weight: 400;
}
.fonc-ls .texte p {
  width: 75%;
}
@media (max-width: 768px) {
  .fonc-ls .texte p {
    font-size: 13px;
    width: 100%;
  }
}
.fonc-ls .texte strong {
  color: #134D71;
  font-weight: 500;
}
.fonc-ls .list-accordion {
  margin-top: 40px;
}
.fonc-ls .list-accordion .accordion .accordion__item {
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}
.fonc-ls .list-accordion .accordion .accordion__item.active p {
  color: #134D71;
}
.fonc-ls .list-accordion .accordion .accordion__item.active .accordion__icon {
  background-image: url("/wp-content/themes/paragon/img/arrow-right-blue.svg");
}
.fonc-ls .list-accordion .accordion .accordion__item p {
  color: #87A5B7;
  text-transform: uppercase;
  font-weight: 700 !important;
  font-size: 14px;
}
.fonc-ls .list-accordion .accordion .accordion__item .accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  cursor: pointer;
  user-select: none;
}
.fonc-ls .list-accordion .accordion .accordion__item .accordion__header p {
  margin: 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .fonc-ls .list-accordion .accordion .accordion__item .accordion__header p {
    font-size: 12px;
  }
}
.fonc-ls .list-accordion .accordion .accordion__item .accordion__header .accordion__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("/wp-content/themes/paragon/img/arrow-right-lightblue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}
.fonc-ls .points {
  padding: 0;
}
.fonc-ls .points .element {
  color: #238ACB;
  margin: 7px 0;
  font-weight: 700;
  padding: 0 0 0 30px;
  background-image: url("/wp-content/themes/paragon/img/bigcheck.png");
  background-repeat: no-repeat;
  background-position: left 5px;
  background-size: 20px 20px;
}
@media (max-width: 768px) {
  .fonc-ls .points .element {
    font-size: 13px;
    background-size: 15px 15px;
    background-position: left center;
  }
}
.fonc-ls .droite-content {
  display: none;
  opacity: 0;
  transform: translateY(12px);
}
@media (max-width: 768px) {
  .fonc-ls .droite-content p {
    font-size: 13px;
  }
}
.fonc-ls .droite-content.active {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeSlideIn 1s ease forwards;
}

.page-template-tout-inclus .hero-services .texte {
  margin-bottom: 24px;
}

.single-simulateur .sim .section__inner .simulator {
  padding: 50px;
}
.single-simulateur .gform-theme--framework .gf_progressbar .percentbar_blue {
  background-color: #134D71 !important;
}
.single-simulateur .gform_fields {
  row-gap: 25px !important;
}
.single-simulateur .gform_fields label {
  color: #134D71;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 400;
}
.single-simulateur .gform_fields .ginput_container_text input, .single-simulateur .gform_fields .name_first input, .single-simulateur .gform_fields .name_last input, .single-simulateur .gform_fields .ginput_container_email input, .single-simulateur .gform_fields select, .single-simulateur .gform_fields textarea, .single-simulateur .gform_fields .ginput_container input[type=number] {
  background-color: #F9FBFD !important;
  border: solid 1px rgba(19, 77, 113, 0.1019607843) !important;
  box-shadow: none !important;
}
.single-simulateur .gform-page-footer {
  margin: 30px 0 0 0 !important;
}
.single-simulateur .gform-page-footer .gform_button, .single-simulateur .gform-page-footer .gform_next_button, .single-simulateur .gform-page-footer .gform_previous_button {
  background-color: #042438 !important;
  padding: 8.5px 22px 8.5px 22px !important;
  color: #F9FBFD !important;
}
.single-simulateur .head-simulateurs {
  height: auto;
}
.single-simulateur .head-simulateurs .subtitle {
  margin-top: 0;
}
.single-simulateur .head-simulateurs .bottom-content {
  justify-content: flex-end;
}
.single-simulateur .contenu2 .section__inner {
  justify-content: center;
  gap: 80px;
}
@media (max-width: 768px) {
  .single-simulateur .contenu2 .section__inner {
    gap: 25px;
  }
}
.single-simulateur .contenu2 .section__inner p {
  color: #134D71;
  width: 100% !important;
}
.single-simulateur .contenu2 .section__inner h2 {
  color: #134D71;
  font-size: 28px;
  margin-top: 8px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .single-simulateur .contenu2 .section__inner h2 {
    font-size: 20px;
  }
}
.single-simulateur .contenu2 .section__inner h2 strong {
  color: #238ACB;
  font-weight: 400;
}
@media (max-width: 768px) {
  .single-simulateur .contenu2 .section__inner img {
    max-height: 300px;
    object-fit: cover;
  }
}
.single-simulateur .contenu2 .section__inner ul {
  padding: 0;
}
.single-simulateur .contenu2 .section__inner ul li {
  color: #134D71;
  padding: 0 0 25px 25px;
  list-style: none;
  background-image: url("/wp-content/themes/paragon/img/check-blue.png");
  background-repeat: no-repeat;
  background-position: left 7px;
  background-size: 15px 10px;
}
@media (max-width: 768px) {
  .single-simulateur .contenu2 .section__inner ul li {
    font-size: 13px;
  }
}
.single-simulateur .contenu2 .section__inner ul li li {
  background-image: none;
  list-style: disc;
  padding: 0;
  margin-left: 25px;
}
@media (max-width: 768px) {
  .single-simulateur .contenu2 .section__inner ul li li {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .single-simulateur .contenu2:nth-of-type(3) .section__inner {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .single-simulateur .contenu2:nth-of-type(3) .section__inner .content {
    width: 100%;
  }
}

.planning .subtitle {
  text-align: center;
}
.planning h1 {
  text-align: center;
}

.simulator {
  max-width: 900px;
  margin: 0 auto;
}
.simulator .gf_progressbar_percentage {
  background-color: #134D71 !important;
}
.simulator .gform_previous_button {
  border-radius: 8px !important;
}
.simulator .gform_next_button, .simulator #gform_submit_button_2 {
  width: fit-content;
  display: flex !important;
  background-color: #042438 !important;
  padding: 8.5px 22px;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #F9FBFD !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s !important;
}
.simulator #input_2_31 {
  justify-content: center;
  gap: 20px;
}

.page-template-generateur-de-planning .widget, .postid-121 .widget {
  display: none;
}

.gform_confirmation_message {
  text-align: center !important;
  margin-top: 24px !important;
  color: #134D71 !important;
}

.contact.before::before {
  content: "";
  position: absolute;
  height: 600px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .contact.before::before {
    height: 500px;
  }
}
.contact.before .section__inner {
  z-index: 1;
}

.etre-recontacte h1, .etre-recontacte h2, .etre-recontacte p, .prendre-rendez-vous h1, .prendre-rendez-vous h2, .prendre-rendez-vous p, .contacter-un-conseiller h1, .contacter-un-conseiller h2, .contacter-un-conseiller p {
  color: #134D71;
}
.etre-recontacte h2, .prendre-rendez-vous h2, .contacter-un-conseiller h2 {
  font-weight: 400;
}
@media (max-width: 768px) {
  .etre-recontacte h2, .prendre-rendez-vous h2, .contacter-un-conseiller h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .etre-recontacte p, .prendre-rendez-vous p, .contacter-un-conseiller p {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .etre-recontacte p br, .prendre-rendez-vous p br, .contacter-un-conseiller p br {
    display: none;
  }
}

.etre-recontacte h1, .prendre-rendez-vous h1 {
  font-size: 2rem;
  font-weight: normal;
}
.etre-recontacte p, .prendre-rendez-vous p {
  width: 85%;
}

@media (max-width: 768px) {
  .etre-recontacte .flex {
    flex-direction: column;
    gap: 30px;
  }
}
.etre-recontacte .flex h1 {
  color: #134D71;
  font-size: 32px;
  font-weight: 400;
}
.etre-recontacte .flex p {
  width: 70%;
}
@media (max-width: 768px) {
  .etre-recontacte .flex p {
    width: 100%;
  }
}
.etre-recontacte .flex .gform_fields {
  row-gap: 25px !important;
}
.etre-recontacte .flex .gform_fields label {
  color: #134D71;
  font-size: 16px;
  margin-bottom: 5px;
}
.etre-recontacte .flex .gform_fields .ginput_container_text input, .etre-recontacte .flex .gform_fields .ginput_container_email input, .etre-recontacte .flex .gform_fields select, .etre-recontacte .flex .gform_fields textarea {
  background-color: #F9FBFD !important;
  border: solid 1px rgba(19, 77, 113, 0.1019607843) !important;
  box-shadow: none !important;
}
.etre-recontacte .flex .gform-footer {
  width: fit-content;
  align-items: center;
  gap: 0 !important;
  background-color: #042438;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 22px;
  margin: 0 !important;
}
.etre-recontacte .flex .gform-footer::after {
  content: "";
  height: 7.5px;
  width: 7.5px;
  border-right: solid 1.5px white;
  border-bottom: solid 1.5px white;
  rotate: -45deg;
  margin-left: 15px;
}
.etre-recontacte .flex .gform-footer .gform_button {
  background-color: #042438 !important;
  padding: 8.5px 0 8.5px 22px !important;
}
.etre-recontacte .flex iframe {
  height: 750px;
  width: 100%;
  border: none;
}

.contacter-un-conseiller > div {
  width: 50%;
  gap: 10px;
}
@media (max-width: 768px) {
  .contacter-un-conseiller > div {
    width: 100%;
  }
}
.contacter-un-conseiller > div p {
  text-align: center;
}
.contacter-un-conseiller > div .tel, .contacter-un-conseiller > div .mail {
  color: #134D71;
  font-size: 40px;
}
@media (max-width: 768px) {
  .contacter-un-conseiller > div .tel, .contacter-un-conseiller > div .mail {
    font-size: 20px;
  }
}
.contacter-un-conseiller > div .tel {
  font-weight: 500;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.btn-white-contact {
  cursor: pointer;
}

.btn-white-contact.active {
  background-color: #0D2D41;
  color: #F9FBFD;
}

.hero-a-propos {
  height: calc(100vh - 90px);
  background-image: url("/wp-content/themes/paragon/img/bg-header-a-propos.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero-a-propos {
    height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1500px) {
  .hero-a-propos {
    height: calc(110vh - 90px);
  }
}
.hero-a-propos .section__inner {
  height: 100%;
}
.hero-a-propos .section__inner .subtitle {
  color: #F9FBFD;
}
.hero-a-propos .section__inner h1 {
  color: #F9FBFD;
  font-weight: 300;
  font-size: 50px;
}
@media (max-width: 768px) {
  .hero-a-propos .section__inner h1 {
    font-size: 1.75rem;
  }
}
.hero-a-propos .section__inner .btns {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero-a-propos .section__inner .bottom-content {
  flex: 1;
  align-items: flex-end;
}
.hero-a-propos .section__inner .bottom-content .avatars {
  gap: 20px;
}
.hero-a-propos .section__inner .bottom-content .avatars img {
  width: 70px;
  object-fit: contain;
}
.hero-a-propos .section__inner .bottom-content .avatars p {
  color: #F9FBFD;
}
.hero-a-propos .section__inner .bottom-content .avatars p strong {
  color: #B2C9D9;
}
.hero-a-propos .section__inner .bottom-content .logo img {
  width: 100px;
}
.hero-a-propos .section__inner .bottom-content .logo p {
  color: #F9FBFD;
}
.hero-a-propos .section__inner .bottom-content .logo a {
  color: #F9FBFD;
}
.hero-a-propos .section__inner .bottom-content .logo a:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("/wp-content/themes/paragon/img/cta-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 12px;
  vertical-align: middle;
}

.qsn .texte {
  color: #134D71;
}

.raison-detre {
  background-image: url("/wp-content/themes/paragon/img/bg-raison-detre.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.raison-detre .subtitle {
  color: #F9FBFD;
}
.raison-detre .citations {
  padding-bottom: 100px;
  border-bottom: 1px solid #F9FBFD;
}
.raison-detre .citations .citation h2 {
  position: relative;
  flex-direction: column;
  color: #F9FBFD;
  font-weight: 300;
}
@media (max-width: 768px) {
  .raison-detre .citations .citation h2 {
    margin-top: 50px;
  }
}
.raison-detre .citations .citation h2::before, .raison-detre .citations .citation h2::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 768px) {
  .raison-detre .citations .citation h2::before, .raison-detre .citations .citation h2::after {
    height: 15px;
    width: 15px;
  }
}
.raison-detre .citations .citation h2::before {
  left: -25px;
  background-image: url("/wp-content/uploads/2026/05/quote-1.svg");
}
@media (max-width: 768px) {
  .raison-detre .citations .citation h2::before {
    top: -25px;
    left: 0px;
  }
}
.raison-detre .citations .citation h2::after {
  bottom: 10px;
  transform: translateX(25px);
  background-image: url("/wp-content/uploads/2026/05/quote-2.svg");
}
@media (max-width: 768px) {
  .raison-detre .citations .citation h2::after {
    bottom: -5px;
  }
}
@media (max-width: 768px) {
  .raison-detre .citations .citation h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .raison-detre .citations .citation h2 br {
    display: none;
  }
}
.raison-detre .citations .citation strong {
  color: #B2C9D9;
  font-weight: 300;
}
.raison-detre .citations .citation .logo {
  max-width: 100px;
  margin: 50px 0 0 0;
}
.raison-detre .citations .citation .nom {
  font-size: 16px;
  font-weight: 500;
  color: #F9FBFD;
}
.raison-detre .citations .citation .poste {
  margin: 0;
  font-size: 18px;
  font-style: italic;
  color: #F9FBFD;
  font-weight: 300;
}
.raison-detre .raisons {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .raison-detre .raisons {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}
.raison-detre .raisons > *:not(:first-child) {
  border-left: 1px solid rgba(35, 138, 203, 0.35);
  padding-left: 30px;
}
@media (max-width: 768px) {
  .raison-detre .raisons .raison {
    flex: 0 0 66%;
  }
}
.raison-detre .raisons .raison img {
  width: 35px;
  margin-bottom: 30px;
}
.raison-detre .raisons .raison .title-raison {
  font-size: 15px;
  text-transform: uppercase;
  color: #B2C9D9;
  font-weight: 500;
  margin: 0;
}
.raison-detre .raisons .raison .texte-raison {
  color: #F9FBFD;
  font-size: 16px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .activite {
    overflow: hidden;
  }
}
.activite .texte {
  color: #134D71;
}
@media (max-width: 768px) {
  .activite .texte br {
    display: none;
  }
}
.activite .points p {
  color: #238ACB;
  margin: 7px 0;
  font-weight: 700;
  padding: 0 0 0 30px;
  background-image: url("/wp-content/themes/paragon/img/bigcheck.png");
  background-repeat: no-repeat;
  background-position: left 5px;
  background-size: 20px 20px;
  width: 80%;
}
@media (max-width: 768px) {
  .activite .points p {
    width: 100%;
    background-size: 15px 15px;
    background-position: left center;
  }
}
@media (max-width: 768px) {
  .activite h2 br {
    display: none;
  }
}
.activite .imgs {
  flex-wrap: nowrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .activite .imgs {
    margin: 25px 0;
  }
}

.actualites h1 {
  font-weight: 400;
  color: #134D71;
}
.actualites p {
  color: #134D71;
  margin-bottom: 30px;
  font-size: 14px;
}
.actualites img {
  max-height: 250px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .actualites img {
    max-height: 185px;
  }
}
.actualites h2 {
  font-weight: 400;
  color: #134D71;
  font-size: 18px;
}
@media (max-width: 768px) {
  .actualites h2 {
    font-size: 18px;
  }
}
.actualites h2 strong {
  font-weight: 400;
}
.actualites article a {
  height: 100%;
  display: block;
  background-color: #f4f8fc;
  border: solid 1px rgba(86, 190, 236, 0.1019607843);
  border-radius: 15px;
}
.actualites article a img {
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.actualites article a h3 {
  font-weight: 400;
  color: #134D71;
}
@media (max-width: 768px) {
  .actualites article a h3 {
    font-size: 17px;
  }
}
.actualites article a p {
  color: #134D71;
}
@media (max-width: 768px) {
  .actualites article a p {
    font-size: 13px;
  }
}
.actualites article a div {
  padding: 25px;
}
.actualites article a div .flex {
  color: #238ACB;
  margin: 0;
}
.actualites article a div .flex::after {
  content: "";
  height: 7.5px;
  width: 7.5px;
  border-right: solid 1.5px #238ACB;
  border-bottom: solid 1.5px #238ACB;
  rotate: -45deg;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .actualites article a div .flex::after {
    height: 5.5px;
    width: 5.5px;
    margin-top: -1px;
    margin-left: 8px;
  }
}
.actualites ul.page-numbers {
  display: flex;
  justify-content: center;
  gap: 25px;
  list-style: none;
}
.actualites ul.page-numbers a {
  color: #238ACB;
}
.actualites ul.page-numbers a:not(.prev):not(.next) {
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #238ACB;
  border-radius: 100%;
}

.single article h1 {
  font-size: 32px;
  text-align: center;
  color: #134D71;
  font-weight: 400;
}
.single article img {
  object-fit: cover;
  margin: 25px 0 50px;
  max-height: 550px;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .single article img {
    max-height: 400px;
  }
}
@media (max-width: 550px) {
  .single article img {
    max-height: 300px;
  }
}
.single article h2 {
  color: #134D71;
  font-size: 28px;
  font-weight: 400;
  margin: 25px 0 10px;
}
.single article h3 {
  color: #134D71;
  font-weight: 400;
}
.single article p, .single article li {
  color: #134D71;
  margin: 0;
}
.single article figcaption {
  color: #134D71;
}
.single article .wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
  width: auto;
}
.single article .wp-block-buttons > .wp-block-button.wp-block-button__width-25 a {
  width: fit-content;
  display: flex;
  background-color: #042438 !important;
  padding: 8.5px 22px;
  border-radius: 8px !important;
  font-size: 14px;
  font-weight: 500;
  color: #F9FBFD !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

section.blog.actualites img {
  max-height: 250px;
}

.page-template-faq h1 {
  font-weight: 400;
  color: #134D71;
}
.page-template-faq h1 strong {
  color: #238ACB;
  font-weight: 400;
}
.page-template-faq .text {
  width: 50%;
  margin: 25px 0;
}
@media (max-width: 768px) {
  .page-template-faq .text {
    width: 100%;
  }
}
.page-template-faq .taxonomies {
  gap: 25px;
}
@media (max-width: 768px) {
  .page-template-faq .taxonomies {
    gap: 10px;
    overflow-x: scroll;
  }
}
.page-template-faq .taxonomies .taxonomy {
  opacity: 0.5;
  padding: 2px 22px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .page-template-faq .taxonomies .taxonomy {
    flex-shrink: 0;
    margin: 0;
  }
}
.page-template-faq .taxonomies .taxonomy::after {
  content: none;
}
.page-template-faq .taxonomies .taxonomy.active {
  align-items: center;
  gap: 15px;
  color: white;
  background-color: #0D2D41;
  border: solid 1px rgba(35, 138, 203, 0.1490196078);
  opacity: 1;
  padding-right: 15px;
}
.page-template-faq .taxonomies .taxonomy.active::after {
  content: "×";
  font-size: 25px;
  font-weight: lighter;
  line-height: 0;
  border: none;
  rotate: none;
  margin-top: -7.5px;
}
.page-template-faq .taxonomies .taxonomy.active:hover::after {
  margin-left: 5px;
}
.page-template-faq h4::after {
  background-color: white;
  border: solid 1px rgba(35, 138, 203, 0.1019607843);
  border-radius: 10px;
  padding: 12.5px;
  line-height: 0.5;
}

.mentions h1 {
  color: #134D71;
  font-weight: 300;
  font-size: 50px;
}
.mentions p, .mentions li {
  font-size: 18px;
  font-weight: 300;
  color: #134D71;
}
.mentions h2 {
  color: #134D71;
  font-weight: 400;
  margin-bottom: 10px;
}

.testimonials {
  background-image: url("/wp-content/uploads/2026/04/LS-FOND-HERO.svg");
}
@media (max-width: 768px) {
  .testimonials .testimonials-header {
    height: 30px;
  }
}
.testimonials .testimonials-header .subtitle {
  color: #238ACB;
}
@media (max-width: 768px) {
  .testimonials .testimonials-header .subtitle {
    margin: 0;
  }
}
.testimonials .testimonials-header .splide__arrows {
  display: flex !important;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
  position: relative;
  top: 100px;
}
@media (max-width: 768px) {
  .testimonials .testimonials-header .splide__arrows {
    top: -40px;
  }
}
.testimonials .testimonials-header .splide__arrows .splide__arrow {
  position: static;
  transform: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(35, 138, 203, 0.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #0D2D41;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .testimonials .testimonials-header .splide__arrows .splide__arrow {
    width: 30px;
    height: 30px;
  }
}
.testimonials .testimonials-header .splide__arrows .splide__arrow svg {
  fill: none;
  stroke: #F9FBFD;
  stroke-width: 4px;
  width: 30px;
  height: 30px;
}
.testimonials .testimonials-header .splide__arrows .splide__arrow:hover {
  opacity: 1;
}
.testimonials .testimonials-header .splide__arrows .splide__arrow--prev {
  transform: rotate(180deg);
}
.testimonials .citations {
  border: 0;
  padding: 0;
}
.testimonials .citations .citation h3 {
  color: #134D71;
  font-weight: 300;
  width: 90%;
  line-height: 26px;
  font-size: 20px !important;
}
@media (max-width: 768px) {
  .testimonials .citations .citation h3 {
    font-size: 16px !important;
    line-height: 22px;
  }
}
.testimonials .citations .citation h2, .testimonials .citations .citation .nom, .testimonials .citations .citation .poste {
  color: #0D2D41;
}
@media (max-width: 768px) {
  .testimonials .citations .citation h2, .testimonials .citations .citation .nom, .testimonials .citations .citation .poste {
    font-size: 13px !important;
  }
}
@media (max-width: 768px) {
  .testimonials .citations .citation .nom {
    margin: 30px 0 0 0 !important;
    font-size: 13px !important;
  }
}
.testimonials .citations .citation .quote {
  color: #134D71;
}

.blog h2 strong {
  color: #238ACB;
}
.blog article img {
  margin: 0;
}
.blog article p {
  margin: 15px 0;
}

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