@charset "UTF-8";
:root {
  --color-white: #ffffff;
  --color-light-green: #82c0c7;
  --color-light-grey: rgb(187, 187, 187);
  --color-shark: #1c1c1e;
  --color-grey: #666;
  --color-very-light-grey: #e8e8e8;
  --color-dark-grey: #333;
  --color-blue: #2ea3f2;
  --color-blue-2: #2e4de6;
  --color-sand: #fcfbf7;
  --color-li-entry: #6c7173;
  --space: 8px;
  --inter: "Inter", sans-serif;
  --inter-light: "Inter light", sans-serif;
  --inter-bold: "Inter-Bold", sans-serif;
  --poppins: "Poppins", sans-serif;
  --poppins-bold: "Poppins bold", sans-serif;
  --poppins-semi-bold: "Poppins semi bold", sans-serif;
  --lato: "Lato", sans-serif;
  --lato-bold: "Lato-Bold", sans-serif;
  --lato-black: "Lato-Black", sans-serif;
  --transition-duration: 0.1s;
  --transition-timing-function: linear;
}

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

button {
  color: inherit;
  padding: 0;
  border: none;
  cursor: pointer;
  background: transparent;
  font-size: inherit;
}

form {
  display: block;
}

select,
input {
  font-size: inherit;
  font-family: inherit;
}

pre {
  font-family: monospace;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

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

textarea {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  resize: none;
}

hr {
  height: 1px;
  background: var(--border);
  margin: 0;
  padding: 0;
  border: none;
}

*:focus:not(:focus-visible) {
  outline: none;
}

@font-face {
  font-family: "Lato";
  src: url("../assets/fonts/lato/Lato-Regular.ttf");
}
@font-face {
  font-family: "Lato-Bold";
  src: url("../assets/fonts/lato/Lato-Bold.ttf");
}
@font-face {
  font-family: "Lato-Black";
  src: url("../assets/fonts/lato/Lato-Black.ttf");
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/Inter-Regular.ttf");
}
@font-face {
  font-family: "Inter light";
  src: url("../assets/fonts/inter/Inter-Light.ttf");
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../assets/fonts/inter/Inter-Bold.ttf");
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: "Poppins bold";
  src: url("../assets/fonts/poppins/Poppins-Bold.ttf");
}
@font-face {
  font-family: "Poppins semi bold";
  src: url("../assets/fonts/poppins/Poppins-SemiBold.ttf");
}
footer {
  background-color: var(--color-shark);
}
footer .footer {
  max-width: 1460px;
  margin: auto;
}
footer .footer a {
  color: white;
}
footer .footer .footer_main {
  display: flex;
  gap: 67px;
  margin-bottom: 94px;
  padding: 0 30px;
}
@media (max-width: 980px) {
  footer .footer .footer_main {
    flex-direction: column;
    padding: 0;
    gap: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 980px) {
  footer .footer .footer_main {
    flex-direction: column;
    padding: 0;
    gap: 0;
    margin-bottom: 25px;
  }
}
footer .footer .footer_main > li > a {
  font-size: 17.3px;
  line-height: 24.3px;
  font-family: var(--inter-bold);
}
@media (max-width: 980px) {
  footer .footer .footer_main > li > a {
    font-family: var(--inter-bold);
    padding: 0 0 9px 16px;
  }
}
@media (max-width: 980px) {
  footer .footer .footer_main > li {
    border-bottom: solid 1px #8A8C8D;
    padding: 25px;
    position: relative;
  }
}
footer .footer .footer_main > li:last-child {
  border-bottom: unset;
}
footer .footer .footer_main .menu-item-has-children {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
footer .footer .footer_main .menu-item-has-children li a {
  font-size: 18px;
  line-height: 24.3px;
  font-family: var(--inter);
  transition: 0.5s;
}
footer .footer .footer_main .menu-item-has-children li a:hover {
  text-decoration: underline;
}
footer .footer .footer_main .sub-menu {
  display: flex;
  gap: 22px;
  flex-direction: column;
}
footer .footer .footer_main .sub-menu.open {
  display: block;
}
@media (max-width: 980px) {
  footer .footer .footer_main .sub-menu {
    display: none;
  }
}
@media (max-width: 980px) {
  footer .footer .footer_main .sub-menu li {
    padding: 0 0 9px 16px;
  }
}
footer .footer .sub-menu .sub-menu {
  display: none;
}
footer .footer .cta-newsletter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 100px;
  font-family: var(--lato-black);
  padding: 95px 30px 0 30px;
}
@media (max-width: 450px) {
  footer .footer .cta-newsletter {
    padding: 45px 10px 0;
    margin-bottom: 48px;
  }
}
@media (min-width: 451px) and (max-width: 980px) {
  footer .footer .cta-newsletter {
    padding: 70px 30px 0 30px;
    margin-bottom: 48px;
  }
}
footer .footer .cta-newsletter .title {
  color: white;
}
footer .footer .cta-newsletter .title h2 {
  margin-bottom: 25px;
  line-height: 27.6px;
  font-size: 43px;
}
@media (max-width: 450px) {
  footer .footer .cta-newsletter .title h2 {
    font-size: 23.5px;
    line-height: 30.5px;
    margin-bottom: 0;
  }
}
@media (min-width: 451px) and (max-width: 800px) {
  footer .footer .cta-newsletter .title h2 {
    font-size: 28px;
    line-height: 39.5px;
    margin-bottom: 2px;
  }
}
@media (min-width: 801px) and (max-width: 965px) {
  footer .footer .cta-newsletter .title h2 {
    font-size: 36px;
    line-height: 45.5px;
    margin-bottom: 5px;
  }
}
@media (min-width: 966px) and (max-width: 1135px) {
  footer .footer .cta-newsletter .title h2 {
    font-size: 36px;
  }
}
footer .footer .cta-newsletter .title h2:last-of-type {
  margin-bottom: 26px;
}
@media (max-width: 450px) {
  footer .footer .cta-newsletter .title h2:last-of-type {
    margin-bottom: 9px;
  }
}
@media (min-width: 451px) and (max-width: 800px) {
  footer .footer .cta-newsletter .title h2:last-of-type {
    margin-bottom: 15px;
  }
}
footer .footer .cta-newsletter .title p {
  font-size: 16.5px;
  line-height: 24.5px;
  margin-bottom: 23px;
}
@media (max-width: 450px) {
  footer .footer .cta-newsletter .title p {
    font-size: 16px;
    line-height: 21px;
  }
}
footer .footer .cta-newsletter .button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 525px;
  max-width: 100%;
}
@media (max-width: 650px) {
  footer .footer .cta-newsletter .button {
    flex-direction: column;
  }
}
footer .footer .cta-newsletter .button label {
  display: block;
  float: left;
  width: 200px;
  text-align: left;
  color: white;
  padding-left: 130px;
  margin-top: 1em;
}
footer .footer .cta-newsletter .button #sellsy-message {
  text-align: left;
}
footer .footer .cta-newsletter .button #sellsy-message li {
  list-style: circle;
}
footer .footer .cta-newsletter .button .sellsy-success-message {
  color: black;
  border: 1px solid white;
  background-color: white;
}
footer .footer .cta-newsletter .button #sellsy_btn_contact {
  margin-right: 50px !important;
  width: 270px !important;
  margin-left: 250px !important;
  margin-top: 80px !important;
}
footer .footer .cta-newsletter .button input {
  padding: 14px;
  border-radius: 8px;
  border: none;
  max-width: 270px;
  width: 100%;
  outline: none;
  display: inline !important;
  margin-bottom: 0.5em;
}
@media (max-width: 450px) {
  footer .footer .cta-newsletter .button input {
    max-width: 270px;
  }
}
footer .footer .cta-newsletter .button input::placeholder {
  font-size: 17.7px;
  line-height: 24px;
}
footer .footer .cta-newsletter .button .btn-container {
  width: 100%;
}
@media (max-width: 650px) {
  footer .footer .cta-newsletter .button .btn-container .blue-button {
    max-width: 270px;
  }
}
@media (max-width: 980px) {
  footer .footer .contact-social {
    display: flex;
    flex-direction: column-reverse;
  }
}
footer .footer .contact-social .contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: var(--inter);
  margin-bottom: 10.5px;
}
@media (max-width: 450px) {
  footer .footer .contact-social .contact {
    padding: 0 30px;
    margin-bottom: 34px;
    align-items: baseline;
  }
}
@media (min-width: 451px) and (max-width: 630px) {
  footer .footer .contact-social .contact {
    padding: 0 40px;
  }
}
footer .footer .contact-social .contact .adresse {
  margin-bottom: 7px;
  position: relative;
}
@media (max-width: 450px) {
  footer .footer .contact-social .contact .adresse {
    padding-left: 20px;
  }
}
@media (min-width: 451px) and (max-width: 630px) {
  footer .footer .contact-social .contact .adresse {
    text-align: center;
  }
}
footer .footer .contact-social .contact .adresse p {
  font-size: 16.5px;
  line-height: 26.5px;
}
@media (max-width: 360px) {
  footer .footer .contact-social .contact .adresse p {
    font-size: 14.5px;
  }
}
footer .footer .contact-social .contact .adresse p:before {
  content: "";
  background-image: url("../assets/position.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 28px;
  width: 23px;
  position: absolute;
  left: -32px;
  top: -6px;
}
@media (max-width: 450px) {
  footer .footer .contact-social .contact .adresse p:before {
    top: 0;
    left: -7px;
  }
}
@media (min-width: 451px) and (max-width: 501px) {
  footer .footer .contact-social .contact .adresse p:before {
    left: -7px;
  }
}
@media (min-width: 451px) and (max-width: 630px) {
  footer .footer .contact-social .contact .adresse p:before {
    top: -2px;
  }
}
footer .footer .contact-social .contact .tel .shape {
  background-color: grey;
  border-radius: 24px;
  height: 42px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 13px;
  position: relative;
  font-size: 16.5px;
  line-height: 18px;
}
@media (max-width: 360px) {
  footer .footer .contact-social .contact .tel .shape {
    font-size: 13.5px;
  }
}
footer .footer .contact-social .contact .tel .shape a {
  padding: 17px;
}
footer .footer .contact-social .contact .tel .shape a:before {
  content: "";
  background-image: url("../assets/tel.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 45px;
  width: 35px;
  position: absolute;
  left: -8px;
  top: 0;
}
footer .footer .contact-social .contact .time {
  position: relative;
}
@media (max-width: 450px) {
  footer .footer .contact-social .contact .time {
    padding-left: 20px;
  }
}
footer .footer .contact-social .contact .time p {
  font-size: 16.5px;
  line-height: 26.5px;
}
@media (max-width: 360px) {
  footer .footer .contact-social .contact .time p {
    font-size: 14.5px;
  }
}
footer .footer .contact-social .contact .time .clock::before {
  content: "";
  background-image: url("../assets/clock.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 24px;
  width: 24px;
  position: absolute;
  left: -35px;
  top: 1px;
}
@media (max-width: 450px) {
  footer .footer .contact-social .contact .time .clock::before {
    left: -8px;
    top: 0;
    width: 23px;
  }
}
footer .footer .contact-social .social {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 39px;
  padding: 0 30px;
}
@media (max-width: 980px) {
  footer .footer .contact-social .social {
    justify-content: space-around;
  }
}
footer .footer .contact-social .social .twitter {
  background-color: white;
  background-image: url("../assets/twitter.svg");
  border-radius: 4px;
  padding: 2px;
  height: 29px !important;
  width: 30px !important;
}
footer .footer .contact-social .social .twitter,
footer .footer .contact-social .social .linkedin,
footer .footer .contact-social .social .youtube {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 32px;
  width: 32px;
}
footer .footer .contact-social .social .linkedin {
  background-image: url("../assets/linkedin.svg");
}
footer .footer .contact-social .social .youtube {
  background-image: url("../assets/youtube.svg");
}
footer .footer .legal {
  display: flex;
  align-items: center;
  gap: 23px;
  color: white;
  padding: 0 30px 30px;
}
@media (max-width: 980px) {
  footer .footer .legal {
    flex-direction: column;
  }
}
footer .footer .legal .logo {
  background-image: url("../assets/light-logo2.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 32px;
  width: 72px;
}
footer .footer .legal .footer_links {
  font-family: var(--inter);
  font-size: 17.6px;
}
footer .footer .legal .footer_links a:hover {
  text-decoration: underline;
}
footer .footer .legal p {
  font-family: var(--inter);
}

@media (max-width: 980px) {
  .chevron-container {
    right: 33px;
    top: 16px;
    position: absolute;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
}

@media (max-width: 980px) {
  .chevron-icon {
    background-image: url(../assets/white-chevrons.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 13px;
    width: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
  }
}

header .container {
  height: 75px;
}
header .banner {
  height: 46px;
}
header .banner .container {
  background-color: var(--color-blue-2);
  position: fixed;
  display: flex;
  height: 46px;
  align-items: center;
  padding: 0 14px;
  z-index: 1000;
  overflow: hidden;
  width: 100vw;
}
header .banner .container div {
  display: inline-block;
  animation: defilement-rtl 750s infinite linear;
  white-space: nowrap;
}
header .banner .container div p {
  font-size: 15.5px;
  font-family: var(--inter);
  color: white;
}
header .banner .container div p a {
  text-decoration: underline;
}
header .banner .container div p strong {
  font-weight: bold;
}
@keyframes defilement-rtl {
  0% {
    transform: translate3d(0, 0, 0);
    /* position initiale à droite */
  }
  100% {
    transform: translate3d(-100%, 0, 0);
    /* position finale à gauche */
  }
}
header .header-container {
  width: 100%;
  background-color: white;
  border-bottom: solid 1px #CACBCC;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 980px) {
  header .header-container {
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
}
@media (max-width: 1200px) {
  header .header-container {
    align-items: unset;
  }
}
header .header-container .header__overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-duration) var(--transition-timing-function);
}
header .header-container .header__overlay.open {
  display: block;
}
header .header-container .header-nav {
  max-width: 1376px;
  margin: 0 45px;
  width: 100%;
  display: grid;
}
@media (max-width: 980px) {
  header .header-container .header-nav {
    margin: 0 28px;
    height: 100%;
  }
}
@media (min-width: 981px) and (max-width: 1200px) {
  header .header-container .header-nav {
    margin: 0 75px;
  }
}
header .header-container .header-nav input {
  padding: 0.7em;
}
header .header-container .header-nav .searchbar-clicked {
  width: 100%;
  transition: opacity 0.6s, transform 0.6s;
  border: none;
}
header .header-container .header-nav .search-field {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 0;
  transform: translateY(0%) !important;
}
header .header-container .header-nav .searchbar-clicked:focus {
  background-color: white;
  outline: none !important;
}
@media (max-width: 980px) {
  header .header-container .header-nav .home {
    margin-left: 47px;
    width: 138px;
  }
}
header .header-container .header-nav .logo {
  background-image: url("../assets/logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 138px;
  height: 54px;
  margin-right: 52px;
}
@media (min-width: 1200px) and (max-width: 1285px) {
  header .header-container .header-nav .logo {
    margin-right: unset;
  }
}
@media (min-width: 1201px) {
  header .header-container .header-nav .burger {
    display: none;
    margin-right: 35px;
  }
}
@media (min-width: 981px) {
  header .header-container .header-nav .burger {
    left: 28px;
  }
}
header .header-container .header-nav .burger {
  height: 25px;
  width: 25px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 11;
  left: 0px;
  background-image: url("../assets/burger.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
header .header-container .header-nav .burger.open {
  height: 36px;
  margin-bottom: 5px;
}
header .header-container .header-nav div.language {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 12px;
}
header .header-container .header-nav div.language.en {
  background-image: url("../assets/lang-bg-en.svg");
}
header .header-container .header-nav div.language.fr {
  background-image: url("../assets/lang-bg-fr.svg");
}
header .header-container .header-nav nav {
  display: flex;
  align-items: center;
}
@media (max-width: 980px) {
  header .header-container .header-nav nav {
    position: relative;
  }
}
@media (max-width: 980px) {
  header .header-container .header-nav nav.open {
    height: 100vh;
  }
}
@media (min-width: 550px) and (max-width: 980px) {
  header .header-container .header-nav nav .formulaire {
    margin-left: 27px;
  }
}
@media (max-width: 549px) {
  header .header-container .header-nav nav .formulaire {
    margin-left: 17px;
  }
}
header .header-container .header-nav nav .formulaire label {
  position: relative;
  transition: opacity 0.5s, transform 0.5s;
}
header .header-container .header-nav nav .formulaire label.open {
  transform: translateY(-50%);
}
header .header-container .header-nav nav .formulaire .cross {
  background-image: url("../assets/close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 22px;
  width: 22px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(-150%);
}
header .header-container .header-nav nav .formulaire .cross.open {
  transform: translateY(-50%);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
header .header-container .header-nav nav form {
  font-family: var(--inter);
}
header .header-container .header-nav nav form :focus {
  border: none !important;
}
header .header-container .header-nav nav .search-submit {
  background-image: url("../assets/search.svg");
  height: 25px;
  width: 35px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: unset;
  border: none;
  cursor: pointer;
}
@media (max-width: 1200px) {
  header .header-container .header-nav nav .search-submit {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
}
@media (max-width: 980px) {
  header .header-container .header-nav nav .search-submit {
    height: 30px;
  }
}
header .header-container .header-nav nav .extranet-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
@media (max-width: 980px) {
  header .header-container .header-nav nav .extranet-container {
    position: absolute;
    bottom: 91px;
    z-index: 100;
    flex-direction: column;
    transform: translateX(-150%);
  }
  header .header-container .header-nav nav .extranet-container.open {
    transition: transform 0.2s var(--transition-timing-function);
    left: 40%;
    transform: translateX(-50%);
    margin-bottom: 80px;
  }
}
@media (min-width: 980px) and (max-width: 1230px) {
  header .header-container .header-nav nav .extranet-container {
    gap: 5px;
  }
}
@media (min-width: 980px) and (max-width: 1330px) {
  header .header-container .header-nav nav .extranet-container {
    margin-left: 15px;
  }
}
header .header-container .header-nav nav .extranet-container h3 {
  font-family: var(--inter);
  line-height: 24px;
  font-size: 17.6px;
  color: var(--color-shark);
  transition: 0.5s;
  padding: 5px;
  border-radius: 7px;
}
header .header-container .header-nav nav .extranet-container h3:hover {
  background-color: var(--color-very-light-grey);
  text-decoration: underline;
}
header .header-container .header-nav nav .extranet-container .white-button {
  border: solid 1px;
  color: var(--color-shark);
  border-radius: 8px;
  padding: 7px 17px;
  transition: 0.3s;
  max-width: 207px;
}
header .header-container .header-nav nav .extranet-container .white-button p {
  line-height: 25px;
  font-size: 17.6px;
  white-space: nowrap;
}
header .header-container .header-nav nav .extranet-container button:hover {
  background-color: var(--color-blue-2);
  color: white;
}
header .header-container .header-nav .menu {
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  header .header-container .header-nav .menu {
    padding-top: unset;
    width: 100%;
  }
}
@media (min-width: 981px) and (max-width: 1200px) {
  header .header-container .header-nav .menu {
    position: relative;
  }
}
header .header-container .header-nav .menu .header__main__menu > li::after {
  content: "";
  border: solid rgba(0, 0, 0, 0.6);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  vertical-align: 20%;
}
header .header-container .header-nav .menu .header__main__menu > li:nth-child(5)::after {
  content: none;
}
header .header-container .header-nav .menu ul.header__main__menu > li {
  white-space: nowrap;
  position: relative;
  z-index: 10;
}
header .header-container .header-nav .menu .header__main__menu {
  font-family: var(--Vaud-font-bold);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity 0.7s, transform 0.7s, height 0.7s, width 0.7s;
}
header .header-container .header-nav .menu .header__main__menu.open {
  transform: translateY(25%);
  transition: opacity 0.6s, transform 0.6s, height 0.7s, width 0.7s;
}
@media (min-width: 768px) and (max-width: 1200px) {
  header .header-container .header-nav .menu .header__main__menu.open {
    display: none;
    transition: opacity 1.5s ease, transform 1.5s ease;
  }
}
@media (max-width: 1200px) {
  header .header-container .header-nav .menu .header__main__menu {
    display: none;
  }
}
@media (max-width: 1312px) {
  header .header-container .header-nav .menu .header__main__menu {
    gap: 5px;
  }
}
header .header-container .header-nav .menu .header__main__menu li {
  padding: 5px 5px;
  border-radius: 7px;
}
header .header-container .header-nav .menu .header__main__menu > li:hover {
  background-color: #E8E8E8;
}
header .header-container .header-nav .menu .header__main__menu > li:hover > a {
  text-decoration: underline !important;
}
header .header-container .header-nav .menu .header__main__menu .mega-menu > ul {
  padding: 19px 0 0 32px;
}
header .header-container .header-nav .menu .header__main__menu .mega-menu > ul > li > a {
  font-size: 14px;
  color: #6C7173;
  width: 190px;
  font-family: var(--inter);
}
header .header-container .header-nav .menu .header__main__menu li a {
  padding: 2px 7px 40px;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--inter);
  color: var(--color-shark);
}
header .header-container .header-nav .menu .header__main__menu li a.hide {
  font-size: 0;
  padding: 0;
}
header .header-container .header-nav .menu .header__main__menu li.current-menu-item > a {
  color: var(--color-blue);
}
header .header-container .header-nav .menu .header__main__menu li:hover > ul {
  display: flex;
  gap: 12px;
  justify-content: center;
  top: 60px;
  left: -30px;
  background-color: white;
  position: absolute;
  z-index: 100;
  border-radius: 15px;
  box-shadow: 0px 0px 26px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1450px) {
  header .header-container .header-nav .menu .header__main__menu li:nth-child(2):hover > ul {
    left: -200px;
  }
}
@media (max-width: 1258px) {
  header .header-container .header-nav .menu .header__main__menu li:nth-child(1):hover > ul {
    left: -66px;
  }
}
header .header-container .header-nav .menu .header__main__menu > li:nth-child(3) > ul,
header .header-container .header-nav .menu .header__main__menu > li:nth-child(4) > ul {
  flex-direction: column;
  padding: 12px 12px 13px 12px;
}
header .header-container .header-nav .menu .header__main__menu > li:nth-child(4) > ul {
  justify-content: unset;
}
header .header-container .header-nav .menu .header__main__menu > li:nth-child(3) > ul li,
header .header-container .header-nav .menu .header__main__menu > li:nth-child(4) > ul li {
  width: 180px;
}
header .header-container .header-nav .menu .header__main__menu .menu-item:nth-child(3) li:hover,
header .header-container .header-nav .menu .header__main__menu .menu-item:nth-child(4) li:hover {
  background-color: #E8E8E8;
  text-decoration: underline !important;
}
header .header-container .header-nav .menu .header__main__menu li:hover > .sub-menu ul {
  display: flex;
  gap: 11px;
  width: 100%;
  top: 80px;
  left: 0;
  padding-bottom: 13px;
  height: unset;
  box-shadow: none;
}
header .header-container .header-nav .menu .header__main__menu > li > ul.sub-menu:hover > li > .sub-menu {
  position: static;
}
header .header-container .header-nav .menu .header__main__menu .sub-menu {
  display: none;
}
@media (max-width: 1200px) {
  header .header-container .header-nav .menu .header__main__menu .sub-menu ul.sub-menu {
    margin-top: 20px;
  }
}
header .header-container .header-nav .menu .header__main__menu .sub-menu li {
  position: relative;
  width: 100%;
  transition: 0.5s;
  padding: 0 13px 0 0;
  z-index: 100;
  white-space: normal;
  border-radius: 7px;
}
header .header-container .header-nav .menu .header__main__menu .sub-menu .sub-menu li:hover {
  background-color: #E8E8E8;
  text-decoration: underline !important;
}
header .header-container .header-nav .menu .header__main__menu .sub-menu li a {
  font-family: var(--inter);
  display: block;
  font-size: 16px;
  line-height: 24px;
  padding: 2px 7px 7px 6px;
}
header .header-container .header-nav .menu .header__main__menu .sub-menu li > ul {
  flex-direction: column;
  top: 61px !important;
  border-top: none !important;
  align-items: unset !important;
  max-width: 208px !important;
}
header .header-container .header-nav .header__sidebar {
  position: absolute;
  background-color: white;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  width: 81%;
  margin: 0 auto;
  height: 100vh;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s var(--transition-timing-function);
}
header .header-container .header-nav .header__sidebar li.current-menu-item a {
  background-color: #E8E8E8 !important;
  text-decoration: underline;
}
header .header-container .header-nav .header__sidebar li .current-menu-item {
  background-color: #E8E8E8 !important;
  border-radius: 8px;
}
header .header-container .header-nav .header__sidebar .extranet-container-mobile {
  font-family: var(--inter);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 50px;
  transform: translateX(-150%);
}
header .header-container .header-nav .header__sidebar .extranet-container-mobile .white-button {
  border: solid 1px;
  color: var(--color-shark);
  border-radius: 8px;
  padding: 7px 17px;
  transition: 0.3s;
  max-width: 207px;
}
header .header-container .header-nav .header__sidebar .extranet-container-mobile .white-button p {
  line-height: 25px;
  font-size: 17.6px;
  white-space: nowrap;
}
header .header-container .header-nav .header__sidebar .extranet-container-mobile.open {
  transition: transform 0.2s var(--transition-timing-function);
  left: 40%;
  transform: translateX(0);
  margin-bottom: 80px;
}
@media (min-width: 981px) {
  header .header-container .header-nav .header__sidebar .extranet-container-mobile {
    display: none;
  }
}
header .header-container .header-nav .header__sidebar .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border-bottom: solid 1px #CACBCC;
  height: 75px;
  padding: 0 35px 0 20px;
}
header .header-container .header-nav .header__sidebar .top h2 {
  font-family: var(--poppins-semi-bold);
  font-size: 18px;
  line-height: 29.5px;
}
header .header-container .header-nav .header__sidebar .top .cross {
  background-image: url("../assets/close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 22px;
  width: 22px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  header .header-container .header-nav .header__sidebar {
    display: none;
  }
}
header .header-container .header-nav .header__sidebar.with_alert {
  top: 66px;
}
header .header-container .header-nav .header__sidebar.open {
  transform: translateX(0);
  transition: transform 0.2s var(--transition-timing-function);
  background-color: white;
  overflow: auto;
}
header .header-container .header-nav .header__sidebar .header__sidebar__menu::before {
  content: "";
  border-bottom: solid 1px #CACBCC;
  position: absolute;
  width: 88%;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
}
header .header-container .header-nav .header__sidebar .header__sidebar__menu {
  display: block;
  background-color: white;
  padding-top: 13px;
  padding-bottom: 35px;
  position: relative;
}
header .header-container .header-nav .header__sidebar .header__sidebar__menu > li > a {
  font-weight: 700;
}
header .header-container .header-nav .header__sidebar .header__sidebar__menu li {
  position: relative;
  padding: 18px 20px;
}
header .header-container .header-nav .header__sidebar .header__sidebar__menu li a {
  font-family: var(--inter);
  font-size: 15.6px;
  color: var(--color-shark);
  display: block;
  line-height: 24px;
}
header .header-container .header-nav .header__sidebar .header__sidebar__menu li a.open {
  color: var(--color-li-entry);
  font-size: 14px;
  line-height: 23px;
}
header .header-container .header-nav .header__sidebar .header__sidebar__menu ul {
  display: block;
}
header .header-container .header-nav .header__sidebar .header__sidebar__menu .sub-menu {
  padding-left: 5%;
}
header .header-container .header-nav .header__sidebar .header__sidebar__menu .sub-menu li {
  padding: 9px 8px 12px 3px;
}
header .header-container .header-nav .header__sidebar .header__sidebar__menu .sub-menu li a {
  padding: 7px 5%;
}
header .header-container .header-nav .header__sidebar .header__sidebar__menu .sub-menu.open {
  display: block;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .chevron-container-header {
    right: 33px;
    top: 5px;
    position: absolute;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
}

@media (max-width: 1200px) {
  .chevron-icon-black {
    background-image: url(../assets/chevrons.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 15px;
    width: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
  }
}

.display {
  display: none;
}

.page #primary,
.single-post #primary {
  width: 100%;
  margin: auto;
  max-width: 1165px;
}
.page #primary .heading h1,
.single-post #primary .heading h1 {
  margin-top: 82px;
  margin-bottom: 30px;
  font-family: var(--lato-bold);
  font-size: 30px;
  padding: 0 25px;
  line-height: 39px;
}
@media (max-width: 980px) {
  .page #primary .heading h1,
  .single-post #primary .heading h1 {
    margin-top: 45px;
    text-align: center;
    line-height: 38px;
  }
}
@media (max-width: 980px) {
  .page #primary .content,
  .single-post #primary .content {
    width: 100%;
    padding: 0 5px 30px;
  }
}
.page #primary .content p,
.single-post #primary .content p {
  margin-bottom: 15px;
  font-size: 16px;
  font-family: var(--inter);
}
.page #primary .content p:last-of-type,
.single-post #primary .content p:last-of-type {
  margin-bottom: 25px;
}
.page #primary .content h2,
.single-post #primary .content h2 {
  font-family: var(--inter);
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 12px;
  margin-top: 25px;
}
.page #primary .content div,
.single-post #primary .content div {
  width: 100% !important;
  margin: auto;
}
.page #primary .content img,
.single-post #primary .content img {
  margin: 15px 0;
}
.page #primary .content .body > p:last-of-type,
.single-post #primary .content .body > p:last-of-type {
  margin-bottom: 55px;
}
.page #primary #main::after,
.single-post #primary #main::after {
  content: "";
  display: block;
  clear: both;
  font-size: 0;
  visibility: hidden;
  height: 0;
}
.page .body,
.single-post .body {
  line-height: 20px;
  width: 67%;
  float: left;
  padding: 0 7.5% 30px 25px;
  font-family: var(--inter);
  line-height: 24px;
}
@media (max-width: 980px) {
  .page .body,
  .single-post .body {
    float: none;
    width: 100%;
    padding: unset;
  }
}

.cta_group {
  display: flex;
  text-align: center;
  flex-direction: column;
  background: linear-gradient(to right, #6f2da3, #230202);
  border-radius: 7px;
  color: white;
  padding: 3px 3px;
  width: 100%;
  max-width: 577px !important;
}
@media (max-width: 980px) {
  .cta_group {
    max-width: 650px !important;
  }
}
.cta_group p {
  margin-bottom: 6px !important;
  text-align: unset;
}
@media (max-width: 980px) {
  .cta_group p {
    font-size: 14px !important;
  }
}
.cta_group .cta_link a {
  padding: 4px 10px;
  border-radius: 8px;
  background-color: var(--color-blue-2);
  max-width: 185px;
  width: 100%;
  font-size: 16px;
}
@media (max-width: 980px) {
  .cta_group .cta_link a {
    font-size: 14px !important;
  }
}

#sidebar {
  font-family: var(--lato);
  width: 33%;
  float: right;
  line-height: 22px;
  padding: 20px 25px;
  font-size: 14px;
}
@media (max-width: 980px) {
  #sidebar {
    float: none;
    width: 100%;
  }
}
#sidebar h2 {
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 10px;
  color: var(--color-dark-grey);
  line-height: 1.5em;
}
#sidebar > ul > li {
  padding-bottom: 25px;
}
#sidebar li {
  padding-bottom: 7px;
}
#sidebar li a {
  color: var(--color-grey);
  line-height: 1.7em;
}
#sidebar li a:hover {
  color: var(--color-light-green);
}
#sidebar input {
  padding: 0.7em;
  border: 1px solid #ddd;
}
#sidebar .search-submit:hover {
  cursor: pointer;
}
#sidebar .search-submit {
  color: var(--color-grey);
}
@media (max-width: 385px) {
  #sidebar .search-field {
    width: 67%;
  }
}
@media (min-width: 386px) and (max-width: 723px) {
  #sidebar .search-field {
    width: 72%;
  }
}
@media (min-width: 724px) and (max-width: 980px) {
  #sidebar .search-field {
    width: 82%;
  }
}
#sidebar form {
  white-space: nowrap;
}

#form_contact textarea,
#form_ticket_support textarea {
  width: 100%;
}
#form_contact #sellsy_btn_contact,
#form_contact #sellsy_btn_ticket_support,
#form_ticket_support #sellsy_btn_contact,
#form_ticket_support #sellsy_btn_ticket_support {
  width: 200px;
  padding: 8px 39.5px;
  text-align: center;
  margin-top: 1em;
}

div.content section.body h1.wp-block-heading {
  margin-top: 82px;
  margin-bottom: 30px;
  font-family: var(--lato-bold);
  font-size: 32px;
  padding: 0;
  line-height: 39px;
}
div.content section.body p strong {
  font-weight: bold;
}
div.content section.body em {
  font-style: italic;
  color: #888;
}
div.content section.body a {
  color: var(--color-blue-2);
  text-decoration: none;
  font-weight: bold;
}
div.content section.body a:hover {
  color: var(--color-blue-1);
}
div.content section.body ul li {
  list-style-type: disc;
  margin-left: 10px;
  color: #6f2da3;
}

.search,
.archive {
  /* Styles pour le conteneur de recherche */
}
.search .pagination,
.archive .pagination {
  /* Styles pour les liens de pagination */
}
.search .pagination a,
.archive .pagination a {
  /* Styles pour chaque lien de pagination */
  color: var(--color-blue);
  /* Couleur du lien */
}
.search .pagination .nav-links,
.archive .pagination .nav-links {
  /* Styles pour le conteneur des liens de pagination */
  display: flex;
  /* Utiliser flexbox pour aligner les éléments en ligne */
  gap: 20px;
  /* Espacement entre les liens  */
}
.search #primary,
.archive #primary {
  /* Styles pour la zone de contenu principale */
  width: 80%;
  /* Largeur du contenu principal */
  margin: auto;
  /* Centre le contenu horizontalement */
  max-width: 1080px;
  /* Largeur maximale du contenu */
  position: relative;
  /* Position relative pour le positionnement absolu */
  padding-top: 35px;
  /* Marge intérieure en haut */
}
.search #primary #main::after,
.archive #primary #main::after {
  /* Pseudo-élément pour nettoyer les flottants */
  content: "";
  /* Requis pour les pseudo-éléments */
  display: block;
  /* Transforme l'élément en bloc */
  clear: both;
  /* Nettoie les flottants */
  font-size: 0;
  /* Cache le contenu */
  visibility: hidden;
  /* Cache le contenu */
  height: 0;
  /* Hauteur nulle */
}
.search #primary,
.archive #primary {
  /* Style pour chaque article de recherche */
}
.search #primary .article,
.archive #primary .article {
  /* Styles pour chaque article de recherche */
  display: flex;
  /* Utiliser flexbox pour aligner l'image et le texte côte à côte */
  background-color: var(--color-white);
  /* Fond blanc */
  border: 1px solid var(--color-blue-2);
  /* Bordure gris clair */
  border-radius: 10px;
  /* Coins arrondis */
  padding: 15px;
  /* Marge intérieure dans l'article */
  margin-bottom: 20px;
  /* Marge en dessous de chaque article */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  /* Ombre subtile */
  /* Conteneur pour l'image */
}
.search #primary .article .image-container,
.archive #primary .article .image-container {
  /* Styles pour le conteneur de l'image */
  width: 40%;
  /* L'image prend 40% de la largeur de l'article */
  margin-right: 15px;
  /* Marge à droite de l'image */
  display: flex;
  /* Utiliser flexbox pour l'alignement */
  align-items: start;
  /* Aligner l'image en haut */
}
.search #primary .article .image-container .wrapper,
.archive #primary .article .image-container .wrapper {
  /* Styles pour l'enveloppe de l'image */
  width: 100%;
  /* Pleine largeur */
  height: auto;
  /* Ajuster la hauteur automatiquement */
}
.search #primary .article .image-container .wrapper img,
.archive #primary .article .image-container .wrapper img {
  /* Styles pour l'image */
  width: 100%;
  /* L'image prend toute la largeur du conteneur */
  display: block;
  /* Transforme l'image en bloc */
  border-radius: 8px;
  /* Coins arrondis */
  object-fit: cover;
  /* Couvrir la zone, rogner si nécessaire */
  margin-top: 15px;
  /* Marge supérieure pour aligner avec le texte */
}
.search #primary .article,
.archive #primary .article {
  /* Conteneur pour le texte (titre et paragraphe) */
}
.search #primary .article .text-content,
.archive #primary .article .text-content {
  /* Styles pour le conteneur du texte */
  width: 55%;
  /* Le texte prend 55% de la largeur de l'article */
  box-sizing: border-box; /* Important pour inclure le padding dans la largeur */
  /* Style pour le titre */
}
.search #primary .article .text-content .title,
.archive #primary .article .text-content .title {
  /* Styles pour le titre */
  font-size: 1.2em;
  /* Taille de police légèrement plus grande */
  color: var(--color-blue-2);
  margin-bottom: 5px;
  /* Espace en dessous du titre */
}
.search #primary .article .text-content .title a,
.archive #primary .article .text-content .title a {
  /* Styles pour le lien dans le titre */
  text-decoration: none;
  /* Supprimer le soulignement */
}
.search #primary .article .text-content .title a:hover,
.archive #primary .article .text-content .title a:hover {
  /* Effet au survol */
  text-decoration: underline;
  /* Ajouter un soulignement au survol */
}
.search #primary .article .text-content .title a,
.archive #primary .article .text-content .title a {
  display: block; /* Ajout pour que le lien prenne toute la largeur */
}
.search #primary .article .text-content,
.archive #primary .article .text-content {
  /* Style pour le paragraphe */
}
.search #primary .article .text-content .paragraph,
.archive #primary .article .text-content .paragraph {
  /* Styles pour le paragraphe */
  font-size: 1em;
  /* Taille de police standard */
  line-height: 1.4;
  /* Hauteur de ligne pour la lisibilité */
}
.search #primary .article .text-content .paragraph p,
.archive #primary .article .text-content .paragraph p {
  /* Styles pour le texte du paragraphe */
  margin-bottom: 10px;
  /* Espace en dessous du paragraphe */
}
.search #primary .article .text-content .paragraph a,
.archive #primary .article .text-content .paragraph a {
  /* Styles pour les liens dans le paragraphe */
  color: var(--color-blue-2);
  /* Couleur bleue */
  text-decoration: none;
  /* Supprimer le soulignement */
}
.search #primary .article .text-content .paragraph a:hover,
.archive #primary .article .text-content .paragraph a:hover {
  /* Effet au survol */
  text-decoration: underline;
  /* Ajouter un soulignement au survol */
}
.search #primary .article .text-content .paragraph a,
.archive #primary .article .text-content .paragraph a {
  display: block; /* Ajout pour que le lien prenne toute la largeur */
}
.search #primary .article,
.archive #primary .article {
  /* Styles pour les écrans de petite taille (responsive) */
}
@media (max-width: 750px) {
  .search #primary .article,
  .archive #primary .article {
    /* Media query pour les petits écrans */
    flex-direction: column;
    /* Empiler l'image et le texte verticalement */
  }
  .search #primary .article .image-container,
  .archive #primary .article .image-container {
    /* Styles du conteneur d'image pour les petits écrans */
    width: 100%;
    /* L'image prend toute la largeur */
    margin-right: 0;
    /* Supprimer la marge de droite */
  }
  .search #primary .article .text-content,
  .archive #primary .article .text-content {
    /* Styles du conteneur de texte pour les petits écrans */
    width: 100%;
    /* Le texte prend toute la largeur */
  }
}
.search #primary .content,
.archive #primary .content {
  /* Styles pour le contenu principal */
  font-family: var(--lato);
  /* Utiliser la police Lato */
  line-height: 20px;
  /* Hauteur de ligne */
  width: 67%;
  /* Largeur du contenu */
  float: left;
  /* Flotter à gauche */
  padding-right: 5.5%;
  /* Marge intérieure à droite */
  padding-bottom: 30px;
  /* Marge intérieure en bas */
}
@media (max-width: 980px) {
  .search #primary .content,
  .archive #primary .content {
    /* Media query pour les écrans jusqu'à 980px */
    float: none;
    /* Ne pas flotter */
    width: 100%;
    /* Prendre toute la largeur */
  }
}
.search #primary .content .title,
.archive #primary .content .title {
  /* Styles pour le titre */
  font-size: 27px;
  /* Taille de police */
  padding: 20px 0;
  /* Marge intérieure en haut et en bas */
  font-weight: 600;
  /* Police en gras */
  line-height: 1.1em;
  /* Hauteur de ligne */
}
.search #primary .content .paragraph,
.archive #primary .content .paragraph {
  /* Styles pour le paragraphe */
  margin-bottom: 35px;
  /* Marge en bas */
  line-height: 1.5em;
  /* Hauteur de ligne */
  font-size: 14px;
  /* Taille de police */
}
.search #primary .content .image-container,
.archive #primary .content .image-container {
  /* Styles pour le conteneur de l'image */
}
.search #primary .content .image-container .wrapper,
.archive #primary .content .image-container .wrapper {
  /* Styles pour l'enveloppe de l'image */
  display: flex;
  /* Utiliser flexbox */
  width: 100%;
  /* Pleine largeur */
  height: auto;
  /* Ajuster la hauteur automatiquement */
}
.search #primary .content .image-container img,
.archive #primary .content .image-container img {
  /* Styles pour l'image */
  object-fit: contain;
  /* Contenir l'image */
  width: 100%;
  /* Pleine largeur */
}

/* Styles pour le titre de la page de recherche */
.search .entry-header .entry-title,
.archive .entry-header .entry-title {
  font-size: 1.5em;
  color: var(--color-shark);
  margin: 15px;
  font-weight: 600;
  font-family: var(--lato);
  line-height: 1.1em;
  /* Style pour le terme de recherche en vert */
}
.search .entry-header .entry-title span,
.archive .entry-header .entry-title span {
  color: green; /* Couleur verte */
}

/* Si il n'y a pas d'image */
/* Style pour le conteneur de texte quand il n'y a pas d'image */
.search #primary .article.no-image .text-content,
.archive #primary .article.no-image .text-content {
  width: 100%;
}

.search .article.no-image,
.archive .article.no-image {
  /* pour s'assurer que le contenu texte prend toute la largeur */
  flex-direction: column;
  /* pour s'assurer que le contenu texte prend toute la largeur */
}
.search .article.no-image .image-container,
.archive .article.no-image .image-container {
  display: none;
}

body {
  margin: 0;
}

.main-content {
  font-family: var(--lato); /* Utiliser la police Lato */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
}

.error-page {
  position: relative;
  width: 100%;
  background: url(../assets/fond.svg) no-repeat center center;
  background-size: cover;
}
.error-page .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
}
.error-page .error-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120%;
  width: 100%;
}
.error-page .error-container .ellipse-image {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%; /* L'image prend toute la largeur du conteneur */
  height: 100%; /* L'image prend toute la hauteur du conteneur */
  object-fit: contain; /* L'image s'adapte à son conteneur sans être coupée ni déformée */
}
.error-page .error-container .error-code {
  margin-top: 310px;
  font-size: 150px;
  font-weight: bold;
  color: var(--color-blue-2);
  position: relative;
  z-index: 2;
  margin-bottom: 190px;
}
.error-page .error-container .error-message {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  color: var(--color-blue-2);
  position: relative;
  z-index: 2;
}
.error-page .error-container .error-suggestion {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.error-page .error-container .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  gap: 25px;
}
.error-page .error-container .button {
  background-color: white;
  color: var(--color-blue-2);
  border: 1px solid var(--color-blue-2);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin: 5px;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}
.error-page .error-container .button:hover {
  background-color: var(--color-blue-2);
  color: white;
}

/* Media Query pour les écrans de 850px et moins */
@media (max-width: 850px) {
  .error-page .error-container {
    margin-top: 80px;
  }
  .error-page .error-container .ellipse-image {
    top: 40%;
    left: 55%;
  }
  .error-page .error-container .error-code {
    font-size: 100px;
    color: var(--color-blue-2);
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .error-page .error-container .error-message {
    font-size: 25px;
  }
}
/* Media Query pour les écrans de 768px et moins */
@media (max-width: 768px) {
  .error-page .error-container .ellipse-image {
    width: 90%; /* Augmente encore plus la taille de l'image */
  }
}
/* Media Query pour les écrans de 480px et moins */
@media (max-width: 480px) {
  .error-page .error-container .ellipse-image {
    width: 100%; /* L'image prend toute la largeur sur les très petits écrans */
  }
  .error-page .error-container .error-code {
    font-size: 65px;
    margin-top: 150px;
    margin-bottom: 90px;
    color: var(--color-blue-2);
  }
}
.cta-brandalert {
  box-sizing: border-box; /* Inclut padding et border dans la largeur et la hauteur */
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background-color: color-mix(in srgb, var(--color-blue-2) 4%, transparent);
  border-radius: 10px;
  margin-bottom: 30px;
  font-family: var(--lato);
  line-height: 20px;
  border: 1px solid var(--color-blue-2);
}
.cta-brandalert .wp-block-heading {
  font-family: var(--lato);
  line-height: 20px;
  font-weight: bold;
  font-size: 27px;
  color: var(--color-blue-2);
  margin-bottom: 20px;
  text-align: center;
  /* Styles pour les écrans plus petits */
}
@media (max-width: 768px) {
  .cta-brandalert .wp-block-heading {
    font-size: 20px; /* Réduit la taille de la police pour les écrans de 768px et moins */
    line-height: 1.2; /* Ajuste la hauteur de ligne pour une meilleure lisibilité */
    margin-bottom: 15px; /* Réduit la marge inférieure */
  }
}
@media (max-width: 576px) {
  .cta-brandalert .wp-block-heading {
    font-size: 18px; /* Réduit davantage la taille de la police pour les écrans de 576px et moins */
    line-height: 1.1; /* Ajuste encore plus la hauteur de ligne */
    margin-bottom: 10px; /* Réduit encore plus la marge inférieure */
  }
}
.cta-brandalert .form_contact_2 {
  font-family: var(--lato);
  line-height: 20px;
  width: 70%; /* Définir la largeur du formulaire à 70% */
  margin: 0 auto; /* Centrer le formulaire horizontalement */
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /*
      * Pour modifier la largeur du formulaire, changez la valeur de 'width'.
      * Pour modifier l'alignement du formulaire, jouez avec les
  propriétés 'margin'.
      * Pour modifier l'espacement entre les éléments, utilisez la
  propriété 'gap'.
      */
}
.cta-brandalert .form_contact_2 label {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  /*
      * Pour modifier le style du label, changez les propriétés
  'font-weight' et 'color'.
      */
}
.cta-brandalert .form_contact_2 input[type=text],
.cta-brandalert .form_contact_2 input[type=email],
.cta-brandalert .form_contact_2 textarea {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 10px;
  color: #666;
  /*
      * Pour modifier l'apparence des champs de formulaire, changez les
  propriétés 'padding', 'border', 'border-radius', 'font-size' et
  'color'.
      */
}
.cta-brandalert .form_contact_2 input[type=text]:focus,
.cta-brandalert .form_contact_2 input[type=email]:focus,
.cta-brandalert .form_contact_2 textarea:focus {
  border-color: #007bff; /* Couleur de bordure au focus */
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Ombre au focus */
}
.cta-brandalert .form_contact_2 textarea {
  resize: vertical; /* Permettre le redimensionnement vertical */
  min-height: 100px;
  /*
      * Pour modifier l'apparence de la zone de texte, changez la
  propriété 'min-height'.
      */
}
.cta-brandalert .form_contact_2 #sellsy_btn_contact.btn {
  background-color: #007bff; /* Couleur de fond du bouton */
  color: white;
  padding: 6px 20px; /* Réduit le padding vertical pour diminuer la hauteur */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  text-decoration: none; /* Enlever le soulignement par défaut des liens */
  display: block; /* Permet d'utiliser margin: auto pour centrer */
  margin: 0 auto 10px; /* Centre le bouton horizontalement et ajoute
une marge en dessous */
  text-align: center;
  /*
      * Pour modifier l'apparence du bouton, changez les propriétés
  'background-color', 'color', 'padding', 'border-radius' et
  'font-size'.
      * Pour modifier l'alignement du bouton, jouez avec les propriétés
  'display' et 'margin'.
      */
}
.cta-brandalert .form_contact_2 #sellsy_btn_contact.btn:hover {
  background-color: #0056b3; /* Couleur de fond au survol */
}

.cta-audit-marque {
  box-sizing: border-box; /* Inclut padding et border dans la largeur
et la hauteur */
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-color: var(--color-blue-2); /* Fond du CTA en bleu */
  font-family: var(--lato);
  padding: 10px 15px; /* Espacement intérieur */
  text-align: center; /* Centre le contenu horizontalement */
  display: inline-block; /* Permet de contrôler la largeur et la hauteur */
  margin: 15px; /* Marge autour du CTA */
  /* Style du titre h2 */
}
.cta-audit-marque .wp-block-heading {
  color: white;
  font-weight: bold;
  font-size: 24px !important;
  margin-bottom: 13px !important;
  margin: 5px;
  line-height: 1.4 !important;
  margin-top: 5px !important;
  /*
      Si une classe spécifique est utilisée pour le titre h2,
      vous pouvez ajouter les styles ici en utilisant cette classe.
      Par exemple:
      &.titre-special {
      font-size: 24px;
      text-transform: uppercase;
  /* Styles pour les écrans plus petits */
}
@media (max-width: 768px) {
  .cta-audit-marque .wp-block-heading {
    font-size: 20px; /* Réduit la taille de la police pour les écrans de 768px et moins */
    line-height: 1.2; /* Ajuste la hauteur de ligne pour une meilleure lisibilité */
    margin-bottom: 15px; /* Réduit la marge inférieure */
  }
}
@media (max-width: 576px) {
  .cta-audit-marque .wp-block-heading {
    font-size: 18px; /* Réduit davantage la taille de la police pour les écrans de 576px et moins */
    line-height: 1.1; /* Ajuste encore plus la hauteur de ligne */
    margin-bottom: 10px; /* Réduit encore plus la marge inférieure */
  }
}
.cta-audit-marque .wp-block-heading h2 {
  color: white;
}
.cta-audit-marque .btn-contact {
  background-color: white; /* Fond du bouton en blanc */
  color: var(--color-blue-2); /* Texte du bouton en bleu */
  border: none; /* Supprime la bordure */
  padding: 8px 40px; /* Espacement intérieur du bouton */
  border-radius: 5px; /* Coins arrondis du bouton */
  cursor: pointer; /* Change le curseur au survol */
  font-family: var(--lato); /* Police du bouton */
  font-size: 16px; /* Taille de la police du bouton */
  text-decoration: none; /* Supprime le soulignement par défaut des liens */
  display: inline-block; /* Permet de contrôler la largeur et la hauteur */
  transition: background-color 0.3s ease; /* Transition douce au survol */
}
.cta-audit-marque .btn-contact:hover {
  background-color: white; /* Éclaircit le fond au survol */
}

.cta-replay {
  box-sizing: border-box;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-color: var(--color-blue-2);
  font-family: var(--lato);
  color: white;
  padding: 5px;
  display: flex; /* Utilisation de flexbox */
  align-items: center; /* Centrage vertical */
  justify-content: space-between; /* Espacement entre les blocs */
  gap: 10px; /* Ajoute un espacement équitable entre les blocs */
  margin: 15px 0 !important;
}
.cta-replay .cta-content {
  display: flex; /* Utilisation de flexbox pour le contenu */
  align-items: center; /* Centrage vertical */
  justify-content: space-between; /* Espacement entre les blocs */
  gap: 10px; /* Ajoute un espacement équitable entre les blocs */
  margin: 0 0 !important;
}
.cta-replay {
  /* Bloc de gauche (texte et bouton) */
}
.cta-replay .text-content {
  display: flex; /* Active Flexbox */
  flex-direction: column; /* Aligne les éléments verticalement */
  align-items: center; /* Centre horizontalement */
  justify-content: center; /* Centre verticalement */
  padding: 5px;
  text-align: center;
  width: 60% !important;
}
.cta-replay .replay-h2 {
  width: 100% !important;
  margin: 5px !important;
  font-size: 24px !important;
  font-weight: bold;
  margin-bottom: 15px !important;
}
.cta-replay .btn-replay {
  width: 60% !important;
  color: var(--color-blue-2);
  border: none;
  padding: 6px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--lato);
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  background-color: white; /* Fond du bouton en blanc */
  transition: background-color 0.3s ease;
}
.cta-replay .btn-replay:hover {
  background-color: white;
  color: var(--color-shark) !important;
}
.cta-replay {
  /* Bloc de droite (image) */
}
.cta-replay .image-content {
  width: 50%;
  text-align: right;
}
.cta-replay .image-content .img-video {
  max-width: 100%;
  height: auto;
  border-radius: none !important;
}
.cta-replay {
  /* Media query pour la responsivité */
}
@media (max-width: 768px) {
  .cta-replay .cta-replay {
    flex-direction: column; /* Empile les blocs verticalement */
    align-items: center; /* Centre les blocs horizontalement */
  }
  .cta-replay .text-content {
    order: 1; /* Affiche le texte en premier */
    width: 100%; /* Prend toute la largeur */
    text-align: center; /* Centre le contenu */
    padding: 0;
    margin-bottom: 20px; /* Ajoute de l'espace en dessous du texte */
  }
  .cta-replay .image-content {
    order: 2; /* Affiche l'image après le texte */
    width: 100%; /* Prend toute la largeur */
    text-align: center; /* Centre le contenu */
    padding: 0;
    margin-bottom: 20px; /* Ajoute de l'espace en dessous de l'image */
  }
  .cta-replay .btn-replay {
    order: 3; /* Affiche le bouton en dernier */
    width: auto; /* Ajuste la largeur pour s'adapter */
    text-align: center;
    margin-bottom: 20px; /* Ajoute de l'espace en dessous du bouton */
  }
}

.page-template-realisation-web #primary .content div {
  margin: 0 auto !important; /* Réinitialise les marges automatiques */
  max-width: unset !important; /* Réinitialise la largeur maximale */
}

.realisation-web {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9; /* Couleur de fond plus claire pour le contraste */
}
.realisation-web__title {
  font-family: "Lato-Bold", Helvetica !important;
  font-size: 32px !important;
  color: #2e4de6 !important;
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}
.realisation-web__list {
  display: flex;
  flex-wrap: wrap; /* Permet aux cartes de passer à la ligne */
  gap: 20px; /* Espacement entre les cartes */
  justify-content: center; /* Centre les cartes horizontalement */
  width: 100%;
}

.organ {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: space-around;
  align-items: stretch;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #ddd; /* Bordure plus discrète */
  border-radius: 8px;
  box-sizing: border-box;
  text-align: center;
  width: calc(50% - 20px); /* Deux cartes par ligne avec un gap */
  margin-bottom: 20px; /* Ajoute de l'espace sous chaque carte */
}
.card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; /* Garde l'image centrée et recadrée */
  border-radius: 8px;
  margin-bottom: 12px;
}
.card h3 {
  font-family: "Lato-Bold", Helvetica;
  font-size: 20px;
  color: #2e4de6;
  margin-bottom: 8px;
}
.card p {
  text-align: left;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  margin-top: 8px;
}

@media (max-width: 750px) {
  .organ {
    flex-direction: column;
  }
  .card {
    width: 100%; /* Une seule carte par ligne */
  }
}
.realisation-web__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; /* Assure que l'item prend toute la largeur de la carte */
  margin-top: 20px;
}

.realisation-web__item a {
  text-decoration: none;
  color: inherit;
  display: flex; /* Pour aligner l'image et le titre verticalement */
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.realisation-web__item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
  object-fit: cover;
}

.realisation-web__item h3 {
  font-family: "Lato-Bold", Helvetica;
  font-size: 25px; /* Taille de police plus adaptée */
  line-height: 1.2; /* Espacement entre les lignes */
  color: #2e4de6;
  text-align: center; /* Centre le titre */
  margin: 14px;
}

.realisation-web__item p {
  text-align: left;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  margin-top: 8px;
}

body {
  background-color: var(--color-sand);
}

.blue-button {
  color: white;
  border-radius: 8px;
  padding: 12px 39.5px;
  transition: 0.3s;
  max-width: 236px;
  width: 100%;
  background-color: var(--color-blue-2);
  white-space: nowrap;
}
@media (max-width: 384px) {
  .blue-button {
    max-width: 259px;
    padding: 12px 2px;
  }
}
@media (min-width: 385px) and (max-width: 450px) {
  .blue-button {
    max-width: 259px;
    padding: 12px 7px;
  }
}
.blue-button p {
  font-size: 17.8px;
  line-height: 24px;
}
@media (max-width: 384px) {
  .blue-button p {
    font-size: 16px;
    line-height: 21px;
  }
}

#sellsy_btn_contact,
#sellsy_btn_ticket_support {
  display: block;
  height: 40px;
  color: white;
  border-radius: 8px;
  padding: 12px 39.5px;
  transition: 0.3s;
  background-color: var(--color-blue-2);
  white-space: nowrap;
  box-shadow: 0px 7px 4px rgba(0, 0, 0, 0.39);
  border: 1px solid transparent;
}

#sellsy_btn_contact:hover,
#sellsy_btn_ticket_support:hover {
  border: solid 1px var(--color-shark);
  background-color: white;
  color: var(--color-shark);
}

.blue-button:hover {
  background-color: white;
  color: var(--color-shark);
}

.home .hero {
  padding-top: 95px;
  font-family: var(--lato-bold);
}
@media (max-width: 450px) {
  .home .hero {
    padding: 35px 15px 0;
  }
}
@media (min-width: 451px) and (max-width: 1250px) {
  .home .hero {
    padding: 50px 15px 0;
  }
}
.home .hero .title {
  margin-bottom: 35px;
}
@media (min-width: 451px) and (max-width: 1250px) {
  .home .hero .title {
    margin-bottom: 25px;
  }
}
.home .hero .title h1 {
  font-size: 55px;
  line-height: 64.5px;
  text-align: center;
}
@media (max-width: 450px) {
  .home .hero .title h1 {
    font-size: 32px;
    line-height: 38.5px;
  }
}
@media (min-width: 451px) and (max-width: 850px) {
  .home .hero .title h1 {
    font-size: 38px;
    line-height: 44px;
  }
}
@media (min-width: 851px) and (max-width: 1250px) {
  .home .hero .title h1 {
    font-size: 48px;
    line-height: 55px;
  }
}
.home .hero .description {
  text-align: center;
  font-size: 16.5px;
  line-height: 24.5px;
  margin-bottom: 71.5px;
}
.home .hero .description p {
  margin-bottom: 7px;
}
@media (max-width: 450px) {
  .home .hero .description {
    margin-bottom: 31px;
  }
}
@media (min-width: 451px) and (max-width: 1250px) {
  .home .hero .description {
    margin-bottom: 40px;
  }
}
.home .hero .button {
  text-align: center;
  margin-bottom: 69px;
}
@media (max-width: 650px) {
  .home .hero .button {
    margin-bottom: 50px;
  }
}
.home .hero .button .blue-button {
  min-width: 435px;
  box-shadow: 0px 7px 4px rgba(0, 0, 0, 0.39);
  border: 1px solid transparent;
}
@media (max-width: 450px) {
  .home .hero .button .blue-button {
    max-width: 342px;
    width: 100%;
    min-width: unset;
  }
}
@media (min-width: 451px) and (max-width: 650px) {
  .home .hero .button .blue-button {
    min-width: 380px;
    padding: 12px 28px;
  }
}
.home .hero .button .blue-button:hover {
  border: solid 1px var(--color-shark);
}
.home .service-presentation {
  margin-bottom: 45px;
}
.home .service-presentation h1 {
  text-align: center;
  font-family: var(--poppins-semi-bold);
  font-size: 32px;
  line-height: 41.5px;
  margin-bottom: 39.5px;
}
.home .service-presentation .icons-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.home .service-presentation .icons-container .icons {
  display: flex;
  gap: 62px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 450px) {
  .home .service-presentation .icons-container .icons {
    gap: 25px;
  }
}
.home .service-presentation .icons-container .icons .single-icon {
  max-width: 130px;
  width: 10%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 450px) {
  .home .service-presentation .icons-container .icons .single-icon {
    max-width: 175px;
    align-items: center;
    width: 100%;
  }
}
@media (min-width: 451px) and (max-width: 650px) {
  .home .service-presentation .icons-container .icons .single-icon {
    width: 18%;
  }
}
@media (min-width: 651px) and (max-width: 860px) {
  .home .service-presentation .icons-container .icons .single-icon {
    width: 15%;
  }
}
.home .service-presentation .icons-container .icons .single-icon p {
  font-family: var(--poppins-semi-bold);
  font-size: 14px;
  line-height: 18.5px;
  text-align: center;
}
.home .service-presentation .icons-container .icons .single-icon .icon,
.home .service-presentation .icons-container .icons .single-icon .usurpation,
.home .service-presentation .icons-container .icons .single-icon .securite,
.home .service-presentation .icons-container .icons .single-icon .nom-de-domaine,
.home .service-presentation .icons-container .icons .single-icon .defense-web3,
.home .service-presentation .icons-container .icons .single-icon .seo {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 108px;
  width: 120px;
  border-radius: 12px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.home .vous-etes {
  background-image: url("../assets/fond.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  margin: auto;
}
.home .vous-etes .title {
  max-width: 1346px;
  width: 100%;
  margin: auto;
}
.home .vous-etes .title h1 {
  font-family: var(--poppins-semi-bold);
  font-size: 32px;
  line-height: 41.5px;
  margin: 0 0 45.5px 46px;
  padding-top: 55px;
}
@media (max-width: 450px) {
  .home .vous-etes .title h1 {
    font-size: 27px;
    text-align: center;
    margin: 0 0 35px 0;
  }
}
.home .vous-etes .flex-container {
  width: 100%;
  max-width: 1346px;
  margin: auto;
}
.home .vous-etes .flex-container .flex {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 0 15px 82px;
}
@media (max-width: 960px) {
  .home .vous-etes .flex-container .flex {
    flex-direction: column;
    padding: 0 28px 25px 28px;
    gap: 40px;
  }
}
.home .vous-etes .flex-container .flex .left {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
  max-width: 413px;
  width: 100%;
}
@media (max-width: 960px) {
  .home .vous-etes .flex-container .flex .left {
    max-width: unset;
  }
}
.home .vous-etes .flex-container .flex .left .description {
  max-width: 413px;
  width: 100%;
}
.home .vous-etes .flex-container .flex .left .description p {
  font-family: var(--inter);
  font-size: 18px;
  line-height: 24.5px;
}
.home .vous-etes .flex-container .flex .left .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 362px;
  width: 100%;
  height: 237px;
}
@media (max-width: 450px) {
  .home .vous-etes .flex-container .flex .left .img {
    display: none;
  }
}
.home .vous-etes .flex-container .flex .right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.home .vous-etes .flex-container .flex .right .section-retractable {
  background-color: white;
  width: 100%;
  max-width: 893px;
  border-radius: 12px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: grid;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.home .vous-etes .flex-container .flex .right .section-retractable .minus_icon::after {
  background-image: url("../assets/minus.svg");
  transition: 0.25s;
}
.home .vous-etes .flex-container .flex .right .section-retractable p {
  font-family: var(--inter-bold);
  font-size: 17px;
  line-height: 24.5px;
  padding: 1.5rem;
  position: relative;
  display: block;
  padding-right: 69px;
}
.home .vous-etes .flex-container .flex .right .section-retractable > p::after {
  content: "";
  background-image: url("../assets/plus.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  height: 14px;
  width: 14px;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.home .vous-etes .flex-container .flex .right .section-retractable .hidden-section {
  display: none;
  transition: height 0.4s ease-out;
  height: 0px;
}
@media (max-width: 450px) {
  .home .vous-etes .flex-container .flex .right .section-retractable .hidden-section {
    padding: 15px;
  }
}
.home .vous-etes .flex-container .flex .right .section-retractable .hidden-section button {
  margin: 10px 20px 20px;
  border: solid 1px;
  transition: 0.3s;
  border-radius: 7px;
}
.home .vous-etes .flex-container .flex .right .section-retractable .hidden-section button p {
  padding: 10px;
}
.home .vous-etes .flex-container .flex .right .section-retractable .hidden-section button:hover {
  background-color: var(--color-shark);
}
.home .vous-etes .flex-container .flex .right .section-retractable .hidden-section button:hover p {
  color: white !important;
}
.home .vous-etes .flex-container .flex .right .section-retractable .hidden-section p {
  color: var(--color-shark);
  font-size: 17.5px;
  line-height: 24.5px;
  font-family: var(--inter);
  overflow: hidden;
  margin: 0 auto;
}
.home .vous-etes .flex-container .flex .right .section-retractable .hidden-section .img {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 272px;
  width: 100%;
  margin-bottom: 29px;
}
.home .vous-etes .flex-container .flex .right .section-retractable .hidden-section.open {
  display: block;
  transition: height 0.4s ease-out;
}
.home .articles {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding-bottom: 10px;
}
.home .articles h1 {
  text-align: center;
  font-family: var(--lato-black);
  font-size: 55px;
  line-height: 64.5px;
  margin: 65px 0 47px 0;
}
@media (max-width: 450px) {
  .home .articles h1 {
    font-size: 32px;
    line-height: 38.5px;
    margin: 35px 0 20px 0;
  }
}
@media (min-width: 451px) and (max-width: 850px) {
  .home .articles h1 {
    font-size: 39px;
    margin: 45px 0 33px 0;
    line-height: 50.5px;
    padding: 0 12px;
  }
}
@media (min-width: 851px) and (max-width: 1145px) {
  .home .articles h1 {
    font-size: 44px;
  }
}
.home .articles .flex-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 14px;
}
.home .articles .flex-container .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 45px;
  justify-content: space-between;
}
@media (max-width: 1250px) {
  .home .articles .flex-container .flex {
    justify-content: center;
  }
}
.home .articles .flex-container .flex .card {
  width: 100%;
  max-width: 345px;
  font-family: var(--inter);
  background-color: white;
  border-radius: 15px;
  background-color: white;
  padding: 12px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 593px) {
  .home .articles .flex-container .flex .card {
    max-width: 330px;
  }
}
@media (min-width: 594px) and (max-width: 763px) {
  .home .articles .flex-container .flex .card {
    max-width: 260px;
  }
}
@media (min-width: 1130px) and (max-width: 1175px) {
  .home .articles .flex-container .flex .card {
    max-width: 330px;
  }
}
.home .articles .flex-container .flex .card .img {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 231px;
  aspect-ratio: 4/3;
  margin-bottom: 20px;
}
.home .articles .flex-container .flex .card .title {
  margin-bottom: 15px;
  font-size: 15.5px;
  color: black;
  line-height: 22.5px;
}
.home .articles .flex-container .flex .card .resume {
  font-size: 13.5px;
  line-height: 22.5px;
  color: var(--color-shark);
}
.home .section-slider {
  width: 100%;
  color: white;
  background-color: var(--color-shark);
  font-family: var(--inter);
  position: relative;
}
.home .section-slider .custom-shape-divider-top-1714478110 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.home .section-slider .custom-shape-divider-top-1714478110 .shape-fill {
  fill: var(--color-sand);
}
.home .section-slider .custom-shape-divider-bottom-1714477925 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: scaleX(-1) rotate(180deg);
}
.home .section-slider .custom-shape-divider-bottom-1714477925 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}
@media (max-width: 899px) {
  .home .section-slider .custom-shape-divider-bottom-1714477925 svg {
    width: calc(100% + 300px);
  }
}
.home .section-slider .custom-shape-divider-bottom-1714477925 .shape-fill {
  fill: var(--color-sand);
}
.home .section-slider .flex-container {
  width: 100%;
  max-width: 1360px;
  padding: 226px 20px;
  margin: auto;
}
@media (max-width: 720px) {
  .home .section-slider .flex-container {
    padding: 110px 20px 185px;
  }
}
@media (min-width: 721px) and (max-width: 899px) {
  .home .section-slider .flex-container {
    padding: 144px 20px 185px;
  }
}
@media (min-width: 900px) and (max-width: 1200px) {
  .home .section-slider .flex-container {
    padding: 180px 20px;
  }
}
.home .section-slider .flex-container .left {
  width: 100%;
  min-width: 497px;
}
@media (max-width: 450px) {
  .home .section-slider .flex-container .left {
    min-width: unset;
  }
}
@media (min-width: 451px) and (max-width: 1150px) {
  .home .section-slider .flex-container .left {
    min-width: 390px;
    padding: 0 15px;
  }
}
.home .section-slider .flex-container .left.open {
  display: block;
}
.home .section-slider .flex-container .left h2 {
  font-size: 43.5px;
  line-height: 50.5px;
  margin-bottom: 26px;
}
@media (max-width: 450px) {
  .home .section-slider .flex-container .left h2 {
    font-size: 23.5px;
    line-height: 30.5px;
    margin-bottom: 25px;
  }
}
@media (min-width: 451px) and (max-width: 1150px) {
  .home .section-slider .flex-container .left h2 {
    font-size: 32.5px;
    line-height: 42.5px;
  }
}
.home .section-slider .flex-container .left p {
  font-size: 16.5px;
  line-height: 24.5px;
  margin-bottom: 26px;
}
@media (max-width: 450px) {
  .home .section-slider .flex-container .left p {
    margin-bottom: 10px;
  }
}
.home .section-slider .flex-container .right {
  width: 100%;
}
.home .section-slider .flex-container .right .img {
  background-repeat: no-repeat;
  background-size: contain;
  height: 430px;
  width: 100%;
}
@media (max-width: 599px) {
  .home .section-slider .flex-container .right .img {
    background-position: center;
    height: 245px;
  }
}
@media (min-width: 600px) and (max-width: 965px) {
  .home .section-slider .flex-container .right .img {
    background-position: center;
    height: 330px;
  }
}
@media (min-width: 966px) and (max-width: 1125px) {
  .home .section-slider .flex-container .right .img {
    height: 300px;
  }
}
@media (min-width: 1126px) and (max-width: 1225px) {
  .home .section-slider .flex-container .right .img {
    height: 375px;
    background-position: center;
  }
}
.home .section-slider .flex-container .splide__slide {
  display: flex;
  gap: 45px;
  padding: 0 30px;
}
@media (max-width: 900px) {
  .home .section-slider .flex-container .splide__slide {
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 451px) and (max-width: 1150px) {
  .home .section-slider .flex-container .splide__slide {
    align-items: unset;
  }
}
.home .accreditations {
  font-family: var(--lato-black);
}
.home .accreditations h1 {
  font-size: 43.5px;
  line-height: 50.5px;
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 450px) {
  .home .accreditations h1 {
    font-size: 27px;
    text-align: center;
    line-height: 41.5px;
  }
}
.home .accreditations .card-container {
  max-width: 1107px;
  width: 100%;
  margin: auto;
  position: relative;
  height: 410px;
}
@media (max-width: 450px) {
  .home .accreditations .card-container {
    height: 1230px;
  }
}
@media (min-width: 451px) and (max-width: 700px) {
  .home .accreditations .card-container {
    height: 1380px;
  }
}
@media (min-width: 701px) and (max-width: 800px) {
  .home .accreditations .card-container {
    height: 320px;
  }
}
.home .accreditations .card-container .card-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  position: absolute;
  padding: 0 25px;
}
@media (max-width: 450px) {
  .home .accreditations .card-container .card-flex {
    flex-direction: column;
    position: static;
    padding: 0 15px;
  }
}
@media (min-width: 451px) and (max-width: 700px) {
  .home .accreditations .card-container .card-flex {
    flex-direction: column;
    position: static;
    padding: 0 15px;
  }
}
.home .accreditations .card-container .card-flex .card {
  border-radius: 12px;
  background-color: white;
  height: 455px;
  width: 100%;
  max-width: 342px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 35px;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.25);
}
@media (max-width: 450px) {
  .home .accreditations .card-container .card-flex .card {
    height: 400px;
  }
}
@media (min-width: 701px) and (max-width: 800px) {
  .home .accreditations .card-container .card-flex .card {
    height: 360px;
  }
}
.home .accreditations .card-container .card-flex .card .bottom {
  text-align: center;
}
.home .accreditations .card-container .card-flex .card .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 186px;
  width: 100%;
  max-width: 255px;
}
.home .accreditations .card-container .card-flex .card h3 {
  font-family: var(--inter-light);
  font-size: 43.5px;
  line-height: 53px;
  padding-bottom: 9px;
}
.home .accreditations .card-container .card-flex .card p {
  font-family: var(--inter);
  font-size: 13.5px;
  line-height: 22.3px;
}

@media (max-width: 800px) {
  .splide__pagination {
    bottom: -1.5em !important;
  }
}

.splide__pagination__page {
  opacity: 1 !important;
}
.splide__pagination__page .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
  padding: unset;
}

ul.splide__pagination {
  bottom: -1.5em;
}
ul.splide__pagination li {
  margin-right: 2px !important;
}

@media (max-width: 600px) {
  .splide__pagination__page {
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

.splide__slide {
  display: flex;
  gap: 45px;
}
@media (max-width: 800px) {
  .splide__slide {
    flex-direction: column;
  }
}
@media (min-width: 451px) and (max-width: 1150px) {
  .splide__slide {
    align-items: center;
  }
}

@media (min-width: 451px) and (max-width: 1150px) {
  .splide__arrow {
    align-items: unset;
  }
}
@media (max-width: 900px) {
  .splide__arrow {
    top: 70% !important;
  }
}

@media (max-width: 900px) {
  .splide__arrow--prev {
    left: 1em !important;
  }
}
@media (min-width: 901px) and (max-width: 1385px) {
  .splide__arrow--prev {
    left: -0.5em !important;
  }
}
@media (min-width: 1386px) {
  .splide__arrow--prev {
    left: -1.5em !important;
  }
}

@media (max-width: 900px) {
  .splide__arrow--next {
    right: 1em !important;
  }
}
@media (min-width: 901px) and (max-width: 1385px) {
  .splide__arrow--next {
    right: -0.5em !important;
  }
}
@media (min-width: 1386px) {
  .splide__arrow--next {
    right: -1.5em !important;
  }
}

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