@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;
}

small {
  font-size: 0.875rem;
}

strong,
b {
  font-weight: 500;
}

h1,
.h1 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.15;
}

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--center {
  align-items: center;
  justify-content: center;
}

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

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

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

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

.flex-grid {
  display: flex;
  flex-wrap: wrap;
}
.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);
  }
}
.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%;
}

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

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

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

.flex-33 {
  flex: 0 0 33.333%;
}

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

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

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

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

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

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

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

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

.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-white {
  background-color: #F9FBFD;
  padding: 6px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #0D2D41;
  border: 1px solid rgba(35, 138, 203, 0.1);
}

.btn-dark {
  background-color: transparent;
  padding: 6px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #F9FBFD;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-black {
  background-color: #042438;
  padding: 6px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #F9FBFD;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

img {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
  background: #F9FBFD;
  border-bottom: 1px solid #238ACB;
}
.site-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  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: 36px;
  width: auto;
  display: block;
}
.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: 4px;
}
.main-navigation #primary-menu > li {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}
.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: 64px;
  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: 64px;
  }
  .site-header__inner {
    padding: 0 20px;
  }
  .main-navigation {
    height: 64px;
  }
  .main-navigation .menu-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid #e5e5e5;
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    color: #1a1a1a;
  }
  .mobile-nav-drawer {
    position: fixed;
    top: 64px;
    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 {
    width: 50%;
    height: 100%;
    overflow-y: auto;
    flex-shrink: 0;
  }
  .mobile-nav-root {
    padding: 32px 0;
  }
  .mobile-nav-root li {
    list-style: none;
  }
  .mobile-nav-root .mobile-root-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #e5e5e5;
  }
  .mobile-nav-root .mobile-root-link.has-children {
    cursor: pointer;
  }
  .mobile-nav-root .mobile-root-link.has-children::after {
    content: "›";
    font-size: 1.2rem;
    color: #666;
    line-height: 1;
  }
  .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: #1a1a1a;
    background: none;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    text-align: left;
    cursor: pointer;
  }
  .mobile-nav-sub__back::before {
    content: "‹";
    font-size: 1.2rem;
    color: #666;
    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: #1a1a1a;
    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: #666;
    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: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
  }
  .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;
}

.title {
  color: #134D71;
  font-size: 28px;
  margin-top: 8px;
  font-weight: 400;
}
.title h2 {
  font-weight: 400;
}
.title strong {
  color: #238ACB;
  font-weight: 400;
}

.site-footer {
  background-color: #031A29;
  padding-bottom: 0;
}
.site-footer .flex-40 img {
  width: 120px;
}
.site-footer .flex-40 p {
  width: 320px;
  font-size: 12px;
  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: 14px;
  font-weight: 500;
}
.site-footer .flex-20 a {
  font-size: 12px;
  color: #F9FBFD;
  font-weight: 400;
  margin: 1em 0;
  display: block;
}
.site-footer .flex-20 p {
  font-size: 12px;
  color: #F9FBFD;
  font-weight: 400;
}

.site-info {
  padding-bottom: 0;
}
.site-info a {
  color: #F9FBFD;
}
.site-info p {
  color: #F9FBFD;
}
.site-info ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-home {
  background-color: #042438;
}
.hero-home .content h1 {
  color: #F9FBFD;
  font-weight: 300;
  width: 600px;
  font-size: 50px;
}
.hero-home .content > p {
  font-size: 18px;
  font-weight: 300;
  color: #F9FBFD;
  max-width: 560px;
}
.hero-home .content .btns {
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero-home .chiffres .chiffre h4 {
  font-family: "Inter", sans-serif;
  color: #F9FBFD;
  font-size: 55px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero-home .chiffres .chiffre:nth-child(2) span, .hero-home .chiffres .chiffre:nth-child(3) span {
  font-size: 40px;
  position: relative;
  top: 6Px;
}
.hero-home .chiffres .chiffre p {
  margin: 0;
  font-size: 14px;
  color: #F9FBFD;
  position: relative;
  top: -10px;
  font-weight: 400;
}
.hero-home .imgs {
  position: relative;
  min-height: 630px;
}
.hero-home .imgs .card:nth-child(1) {
  position: absolute;
  right: 0;
}
.hero-home .imgs .card:nth-child(2) {
  position: absolute;
  top: 180px;
  left: 50px;
  z-index: 2;
}
.hero-home .imgs .card:nth-child(3) {
  position: absolute;
  bottom: 20px;
  left: 220px;
}

.pfs .title {
  margin-bottom: 40px;
}
.pfs .points {
  overflow-x: scroll;
  gap: 25px;
}
.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;
}
.pfs .points .pf img {
  width: 30px;
}
.pfs .points .pf .content h4 {
  font-size: 20px;
  color: #134D71;
  font-weight: 400;
}
.pfs .points .pf .content p {
  margin: 0;
}
.pfs .points .pf:hover {
  transition: 0.3s;
  background-color: #042438;
}
.pfs .points .pf:hover h4 {
  color: #F9FBFD;
}
.pfs .points .pf:hover p {
  color: #F9FBFD;
}

.de {
  background-color: #042438;
}
.de .heading {
  margin-bottom: 12px;
}
.de .heading h2 {
  color: #F9FBFD;
  font-weight: 400;
}
.de .heading p {
  color: #F9FBFD;
  width: 450px;
  margin: 0;
}
.de .dispositifs {
  gap: 25px;
}
.de .dispositifs .dispositif {
  position: relative;
  max-height: 500px;
  flex: 3;
}
.de .dispositifs .dispositif img {
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
}
.de .dispositifs .dispositif p {
  position: absolute;
  bottom: 20px;
  color: #F9FBFD;
  font-weight: 400;
  font-size: 28px;
  left: 35px;
  margin: 0;
  line-height: 32px;
}
.de .dispositifs .autres {
  height: 500px;
  border-radius: 15px;
  background: linear-gradient(205deg, #082538, #0D2D41);
  padding: 45px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 35px;
  flex: 3;
}
.de .dispositifs .autres h4 {
  color: #F9FBFD;
  font-weight: 400;
  font-size: 28px;
  margin: 0;
  line-height: 32px;
}
.de .dispositifs .autres .list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.de .dispositifs .autres .list li {
  border-bottom: 1px solid #042438;
  padding: 6px 0;
}
.de .dispositifs .autres .list li a {
  color: #F9FBFD;
  font-weight: 400;
}

.solutions {
  background-color: #F4F8FC;
}
.solutions .heading {
  margin-bottom: 22px;
}
.solutions .types {
  gap: 30px;
}
.solutions .types > .content {
  flex: 6;
}
.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;
}
.solutions .types > .content:nth-child(1) .bottom-card {
  padding: 30px 24px;
  background-color: #F9FBFD;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.solutions .types > .content:nth-child(1) .bottom-card h4 {
  color: #134D71;
  font-size: 20px;
}
.solutions .types > .content:nth-child(1) .bottom-card p {
  color: #134D71;
  width: 390px;
  line-height: 20px;
  margin: 10px 0 20px;
}
.solutions .types > .content:nth-child(1) .bottom-card a {
  font-size: 14px;
  color: #238ACB;
}
.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;
}
.solutions .types > .content:nth-child(2) .bottom-card a {
  font-size: 14px;
  color: #238ACB;
}

.partenaires .list {
  display: flex;
  gap: 11px;
}
.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;
}

.etapes .flex {
  gap: 100px;
}
.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: 7;
}
.etapes .flex .content:nth-child(2) .text {
  width: 500px;
  color: #134D71;
  margin-bottom: 50px;
}
.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;
}
.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 .etape-inner {
  overflow: hidden;
}
.etapes .flex .content:nth-child(2) .list .etape.active .etape-content {
  grid-template-rows: 1fr;
}

.sim {
  background-color: #F9FBFD;
}

.faq p {
  color: #134D71;
  line-height: 20px;
}
.faq .questions .q {
  background-color: #F9FBFD;
  padding: 20px;
  border-radius: 10px;
}
.faq .questions .q h4 {
  color: #134D71;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s ease;
}
.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.active .q-content {
  grid-template-rows: 1fr;
}

.contact {
  height: 600px;
  background-size: 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.contact .subtitle {
  color: #F9FBFD;
  margin: 0;
}
.contact .title {
  color: #F9FBFD;
  text-align: center;
}
.contact .boutons {
  background-color: rgba(244, 248, 252, 0.6);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-projet {
  height: calc(100vh - 64px);
  padding: 0 0 0 5rem;
}
.hero-projet .flex {
  height: 100%;
}
.hero-projet .flex .content-30 {
  height: 100%;
  object-fit: cover;
}
.hero-projet .flex .section-content {
  align-self: center;
}
.hero-projet p {
  color: #134D71;
}
.hero-projet .btns {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 120px;
}

.orga {
  padding-top: 0;
}
.orga .text {
  color: #134D71;
  width: 54%;
}
.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;
}
.orga .title-points {
  max-width: 300px;
  line-height: 24px;
  font-weight: 500;
  color: #134D71;
}
.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;
}

.ministere .content-ministere {
  align-self: center;
  gap: 30px;
  display: flex;
  flex-direction: column;
}
.ministere .content-ministere .texte {
  color: #134D71;
}
.ministere .content-ministere .btns {
  display: flex;
  gap: 20px;
  align-items: center;
}

.avantages .title {
  margin-bottom: 40px;
}
.avantages .points {
  gap: 25px;
}
.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;
}
.avantages .points .pf img {
  width: 30px;
}
.avantages .points .pf .content h4 {
  font-size: 20px;
  color: #134D71;
  font-weight: 400;
}
.avantages .points .pf .content p {
  color: #134D71;
  margin: 0;
  font-size: 14Px;
}
.avantages .points .pf:hover {
  transition: 0.3s;
  background-color: #042438;
}
.avantages .points .pf:hover h4 {
  color: #F9FBFD;
}
.avantages .points .pf:hover p {
  color: #F9FBFD;
}

.hero-services h1 {
  font-size: 50px;
  margin-top: 40px;
}
.hero-services .texte {
  color: #134D71;
}
.hero-services .right-section {
  align-self: end;
}
.hero-services .right-section img {
  width: 70px;
}
.hero-services .right-section .texte-a {
  color: #7F9DB2;
}
.hero-services .right-section .texte-a strong {
  color: #134D71;
}
.hero-services .right-section a {
  color: #134D71;
}
.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;
}
.hero-services .images .flex-40 img {
  height: 380px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.page-template-tout-inclus .hero-services {
  background-color: #042438;
}
.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;
}

.expert .texte {
  color: #134D71;
}
.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;
}

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