@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --padding-screen: 80px;
}

@media screen and (max-width: 1440px) {
  :root {
    --padding-screen: 64px;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --padding-screen: 48px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --padding-screen: 40px;
  }
}

@media screen and (max-width: 450px) {
  :root {
    --padding-screen: 32px;
  }
}

/* 
VARIABLES 
*/
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Archivo", sans-serif;
  color: #0a141f;
}

.loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0a141f;
  z-index: 9999;
  transition: all 1s ease;
}

.loading .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 4px solid #2a3b4c;
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s ease infinite;
}

.loading.loaded {
  transform: translateY(-100%);
  height: 200px;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.script {
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #175e82;
  margin-bottom: 16px;
  width: 100%;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  font-variation-settings: "wdth" 87.5;
}

.script::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(27, 110, 152,1)'%3E%3Cpath d='M13 10H20L11 23V14H4L13 1V10Z'%3E%3C/path%3E%3C/svg%3E");
  fill: #175e82;
  margin-right: 8px;
  border-right: 2px solid #175e82;
  padding-right: 8px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 450px) {
  .script {
    width: 100%;
  }
}

.btn-primary {
  font-size: 11px;
  line-height: 1;
  padding: 16px 24px;
  height: 48px;
  letter-spacing: 0.4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #175e82;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: scale(0.98);
  background-color: #ffffff;
  color: #0a141f;
}

.btn-primary:focus {
  transform: scale(0.98);
}

.btn-primary.black:hover {
  background-color: #0a141f;
  color: #ffffff;
}

.site-header {
  position: fixed;
  background-color: #ffffff;
  width: 100vw;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  border-bottom: 1px solid #c2ccd6;
}

.site-header > .left {
  padding: 0px var(--padding-screen);
}

.site-header > .left .logo {
  height: 40px;
}

.site-header .menu-laptop {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px var(--padding-screen);
}

.site-header .menu-laptop a {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 16px;
}

.site-header .menu-laptop a:hover {
  color: #175e82;
}

.site-header > .right {
  display: none;
}

.site-header > .right a.menu-icon {
  display: block;
  width: 80px;
  height: 80px;
  position: fixed;
  background: #0a141f;
  transition: all 0.3s ease;
  top: 0px;
  right: 0px;
  z-index: 999;
}

.site-header > .right a.menu-icon span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: all 0.3s ease;
}

.site-header > .right a.menu-icon span:first-child {
  top: calc(50% - 6px);
}

.site-header > .right a.menu-icon span:last-child {
  top: calc(50% + 6px);
}

.site-header > .right a.menu-icon:hover {
  background: #1c2936;
}

.site-header > .right a.menu-icon:hover span {
  width: 22px;
}

.site-header > .right a.menu-icon.open span {
  top: 50%;
}

.site-header > .right a.menu-icon.open span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header > .right a.menu-icon.open span:nth-child(2) {
  right: 0px;
  opacity: 0;
}

.site-header > .right a.menu-icon.open span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header-burger {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 990;
  background: #0a141f;
  transition: all 0.6s cubic-bezier(0.2, 0, 0.2, 1);
  transform: translateY(-100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.site-header-burger nav {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--padding-screen);
}

.site-header-burger nav a {
  color: #ffffff;
  opacity: 0.1;
  text-decoration: none;
  width: 100%;
  transition: all 0.3s ease;
  font-size: 96px;
  font-weight: 700;
  font-family: "Archivo", sans-serif;
  line-height: 0.9;
  letter-spacing: -1px;
  font-stretch: condensed;
}

@media screen and (max-width: 768px) {
  .site-header-burger nav a {
    font-size: 56px;
  }
}

.site-header-burger nav a:hover {
  opacity: 1;
}

@media screen and (max-width: 450px) {
  .site-header-burger nav {
    justify-content: flex-start;
    padding-top: calc($padding-screen + 80px);
    height: fit-content;
    padding-bottom: 0px;
    padding-top: 80px;
  }
  .site-header-burger nav a {
    opacity: 1;
    padding: 24px 0px;
    font-size: 24px;
    letter-spacing: 0.4px;
    width: 100%;
    border-bottom: 1px solid #2a3b4c;
    font-weight: 600;
  }
}

.site-header-burger .social {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
  padding: 24px var(--padding-screen);
  border-top: 1px solid #1c2936;
}

.site-header-burger .social a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  padding: 8px;
  padding-right: 16px;
  border-radius: 4px;
  margin-right: 24px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.site-header-burger .social a svg {
  fill: #ffffff;
  margin-right: 8px;
}

.site-header-burger .social a:hover {
  background: #1c2936;
}

.site-header-burger .social a:hover svg {
  fill: #175e82;
}

@media screen and (max-width: 450px) {
  .site-header-burger .social {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    border: none;
    padding-top: 0px;
  }
  .site-header-burger .social a {
    justify-content: flex-start;
    width: 100%;
    padding: 24px 0px;
    border-radius: 0px;
    background: transparent !important;
    border-bottom: 1px solid #2a3b4c;
  }
}

.site-header-burger.open {
  transform: translate(0%);
}

@media screen and (max-width: 450px) {
  .site-header-burger {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .site-header .menu-laptop {
    display: none;
  }
  .site-header .right {
    display: block;
  }
}

.main-footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  background-color: #0a141f;
}

.main-footer section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
}

.main-footer .footer-contact {
  padding: 80px var(--padding-screen) 0px;
  position: relative;
}

.main-footer .footer-contact .content {
  width: 100%;
  max-width: 1400px;
  background-color: #ffffff;
  padding: 40px;
  z-index: 1;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.main-footer .footer-contact .content h3 {
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-variation-settings: "wdth" 87.5;
  font-size: 24px !important;
  max-width: 400px;
  margin-bottom: 24px;
  z-index: 1;
  font-weight: 700;
}

.main-footer .footer-contact .content h3 strong {
  color: #175e82;
}

@media screen and (max-width: 768px) {
  .main-footer .footer-contact .content h3 {
    font-size: 40px;
  }
}

@media screen and (max-width: 450px) {
  .main-footer .footer-contact .content h3 {
    font-size: 28px;
    font-weight: 700;
  }
}

.main-footer .footer-contact .content a {
  font-size: 12px;
  line-height: 1;
  padding: 16px 24px;
  height: 48px;
  letter-spacing: 0.8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #175e82;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.4px;
  border-radius: 4px;
  transition: all 0.2s ease;
  width: fit-content;
  z-index: 1;
}

.main-footer .footer-contact .content a:hover {
  transform: scale(0.98);
  background-color: #0a141f;
}

.main-footer .footer-contact .content a:focus {
  transform: scale(0.92);
}

.main-footer .footer-contact .content::after {
  content: '';
  display: block;
  position: absolute;
  width: 50%;
  height: 650px;
  background-image: url(../images/img/slide-installation-solaire.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 80%;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .main-footer .footer-contact .content {
    padding-bottom: 300px;
  }
  .main-footer .footer-contact .content::after {
    background-size: cover;
    min-width: 600px;
    width: 100%;
    height: 250px;
    transform: translateX(-50%);
    top: auto;
    bottom: 0px;
    left: 50%;
    z-index: 0;
  }
}

.main-footer .footer-infos {
  padding: 0px var(--padding-screen);
}

.main-footer .footer-infos .content {
  width: 100%;
  max-width: 1400px;
  padding-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.main-footer .footer-infos .content .infos {
  width: 100%;
  padding: 40px;
  background: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
}

.main-footer .footer-infos .content .infos svg {
  fill: #175e82;
}

.main-footer .footer-infos .content .infos h4 {
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0a141f;
  margin-top: 16px;
  font-weight: 600;
}

@media screen and (max-width: 450px) {
  .main-footer .footer-infos .content .infos h4 {
    font-size: 16px;
    line-height: 1.2;
  }
}

.main-footer .footer-infos .content .infos p {
  color: #5a6e81;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 8px;
}

.main-footer .footer-infos .content .infos p strong {
  font-size: 14px;
  font-weight: 500;
  color: #0a141f;
}

.main-footer .footer-infos .content .infos:hover {
  transform: scale(0.98);
}

@media screen and (max-width: 1200px) {
  .main-footer .footer-infos .content {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
  }
}

.main-footer .footer-section {
  width: 100%;
  padding: 0px var(--padding-screen);
}

.main-footer .footer-section .content {
  width: 100%;
  max-width: 1400px;
  padding: 80px 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 80px;
}

.main-footer .footer-section .content .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.main-footer .footer-section .content .item h6 {
  font-size: 10px;
  letter-spacing: 0.8px;
  line-height: 1;
  color: #ffffff;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #5a6e81;
}

.main-footer .footer-section .content .item a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s ease;
  border-radius: 4px;
  padding: 8px;
  margin-left: -8px;
  margin-bottom: 4px;
  width: 100%;
}

.main-footer .footer-section .content .item a:hover {
  background-color: #1c2936;
}

@media screen and (max-width: 1200px) {
  .main-footer .footer-section .content {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
  }
  .main-footer .footer-section .content .item {
    align-items: center;
  }
  .main-footer .footer-section .content .item a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.main-footer .footer-legal {
  width: 100%;
  padding: 24px var(--padding-screen);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0d1a26;
}

.main-footer .footer-legal p {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.2;
  color: #5a6e81;
  text-transform: uppercase;
}

.main-footer .footer-legal div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-footer .footer-legal div a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.2;
  color: #5a6e81;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s ease;
  border-radius: 4px;
  padding: 8px 12px 8px 8px;
  margin-left: 8px;
}

.main-footer .footer-legal div a:hover {
  background-color: #1c2936;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .main-footer .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-footer .footer-legal div {
    margin-top: 16px;
  }
  .main-footer .footer-legal div a {
    margin-left: -8px;
  }
}

.home-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .home-main {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  margin-top: 80px;
  margin-bottom: 150px;
}

.home-page .home-main .content {
  width: 100vw;
  max-width: 1400px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.home-page .home-main .content h1 {
  font-family: "Archivo", sans-serif;
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
  font-variation-settings: "wdth" 87.5;
  color: white;
  margin-bottom: 16px;
  padding: 200px var(--padding-screen);
  padding-bottom: 0px;
}

@media screen and (max-width: 1200px) {
  .home-page .home-main .content h1 {
    font-size: 80px;
  }
}

@media screen and (max-width: 768px) {
  .home-page .home-main .content h1 {
    font-size: 64px;
  }
}

@media screen and (max-width: 450px) {
  .home-page .home-main .content h1 {
    font-size: 40px;
  }
}

.home-page .home-main .content::before {
  content: "";
  display: block;
  width: 100vw;
  position: absolute;
  transform: translateX(-50%);
  bottom: 0px;
  left: 50%;
  height: 100%;
  z-index: -1;
  background: #0a141f;
  background: linear-gradient(180deg, transparent 0%, #0a141f 80%, #0a141f 100%);
  opacity: 0.6;
}

.home-page .home-main .content .cta-section {
  padding: 40px;
  border-radius: 2px;
  background-color: white;
  width: 100%;
  margin-top: 40px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: -150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.home-page .home-main .content .cta-section h2, .home-page .home-main .main-footer .footer-contact .content .cta-section h3 strong, .main-footer .footer-contact .home-page .home-main .content .cta-section h3 strong, .home-page .home-main .main-footer .footer-contact .content h3 .cta-section strong, .main-footer .footer-contact .home-page .home-main .content h3 .cta-section strong, .home-page .home-main .content .cta-section .home-why .title h2 strong, .home-page .home-why .title h2 .home-main .content .cta-section strong, .home-page .home-main .chiffre .content .cta-section .items h3 strong, .home-page .chiffre .home-main .content .cta-section .items h3 strong, .home-page .home-main .chiffre .content .items h3 .cta-section strong, .home-page .chiffre .home-main .content .items h3 .cta-section strong, .home-page .home-main .content .cta-section .slider .title h2 strong, .home-page .slider .title h2 .home-main .content .cta-section strong, .home-page .home-main .content .cta-section .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .home-main .content .cta-section strong, .home-page .home-main .content .cta-section .page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content h2 .home-page .home-main .content .cta-section strong, .home-page .home-main .content .cta-section .page-single .content-product .title h2 strong, .page-single .content-product .title h2 .home-page .home-main .content .cta-section strong {
  grid-area: 1 / 1 / 2 / 5;
  margin-bottom: 24px;
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.home-page .home-main .content .cta-section h2 strong, .home-page .home-main .main-footer .footer-contact .content .cta-section h3 strong strong, .main-footer .footer-contact .home-page .home-main .content .cta-section h3 strong strong, .home-page .home-main .main-footer .footer-contact .content h3 .cta-section strong strong, .main-footer .footer-contact .home-page .home-main .content h3 .cta-section strong strong, .home-page .home-why .title h2 .home-main .content .cta-section strong strong, .home-page .home-main .chiffre .content .cta-section .items h3 strong strong, .home-page .chiffre .home-main .content .cta-section .items h3 strong strong, .home-page .home-main .chiffre .content .items h3 .cta-section strong strong, .home-page .chiffre .home-main .content .items h3 .cta-section strong strong, .home-page .slider .title h2 .home-main .content .cta-section strong strong, .home-page .home-main .content .cta-section .page-single .content-area .entry-content h1 strong strong, .page-single .content-area .entry-content h1 .home-page .home-main .content .cta-section strong strong, .page-single .content-area .entry-content h2 .home-page .home-main .content .cta-section strong strong, .page-single .content-product .title h2 .home-page .home-main .content .cta-section strong strong {
  color: #175e82;
}

.home-page .home-main .content .cta-section .cta {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.home-page .home-main .content .cta-section .cta .items {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #f2f5f7;
  text-decoration: none;
  transition: all .2s ease;
  min-height: 80px;
}

.home-page .home-main .content .cta-section .cta .items svg {
  width: 24px;
  height: 24px;
  fill: #175e82;
}

.home-page .home-main .content .cta-section .cta .items span {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.2px;
  width: 100%;
  margin-left: 16px;
}

.home-page .home-main .content .cta-section .cta .items:hover {
  transform: scale(0.98);
}

.home-page .home-main .content .cta-section .cta .items:focus {
  transform: scale(0.92);
}

@media screen and (max-width: 768px) {
  .home-page .home-main .content .cta-section .cta {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 450px) {
  .home-page .home-main .content .cta-section .cta {
    grid-template-columns: 1fr;
  }
}

.home-page .home-main .content .cta-section .btn-primary {
  width: fit-content;
  margin-top: 24px;
}

@media screen and (max-width: 450px) {
  .home-page .home-main .content .cta-section {
    padding: var(--padding-screen);
    justify-content: flex-start;
  }
  .home-page .home-main .content .cta-section h2, .home-page .home-main .main-footer .footer-contact .content .cta-section h3 strong, .main-footer .footer-contact .home-page .home-main .content .cta-section h3 strong, .home-page .home-main .main-footer .footer-contact .content h3 .cta-section strong, .main-footer .footer-contact .home-page .home-main .content h3 .cta-section strong, .home-page .home-main .content .cta-section .home-why .title h2 strong, .home-page .home-why .title h2 .home-main .content .cta-section strong, .home-page .home-main .chiffre .content .cta-section .items h3 strong, .home-page .chiffre .home-main .content .cta-section .items h3 strong, .home-page .home-main .chiffre .content .items h3 .cta-section strong, .home-page .chiffre .home-main .content .items h3 .cta-section strong, .home-page .home-main .content .cta-section .slider .title h2 strong, .home-page .slider .title h2 .home-main .content .cta-section strong, .home-page .home-main .content .cta-section .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .home-main .content .cta-section strong, .home-page .home-main .content .cta-section .page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content h2 .home-page .home-main .content .cta-section strong, .home-page .home-main .content .cta-section .page-single .content-product .title h2 strong, .page-single .content-product .title h2 .home-page .home-main .content .cta-section strong {
    max-width: 200px;
  }
}

@media screen and (max-width: 450px) {
  .home-page .home-main .content {
    padding-right: var(--padding-screen);
  }
}

.home-page .home-main img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
  object-fit: cover;
  object-position: center;
}

.home-page .home-why {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  padding: 144px 0px;
}

.home-page .home-why .title {
  width: 100vw;
  max-width: 1400px;
  padding: 0px var(--padding-screen);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 64px;
}

.home-page .home-why .title h2, .home-page .home-why .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .home-page .home-why .title strong, .home-page .home-why .title h2 strong, .home-page .home-why .title .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .home-why .title strong, .home-page .home-why .title .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .home-why .title strong, .page-single .content-area .entry-content h2 .home-page .home-why .title strong, .home-page .home-why .title .page-single .content-area .entry-content h2 strong strong, .home-page .home-why .title
.page-single .content-area .entry-content h2 b strong {
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-variation-settings: "wdth" 87.5;
  width: 100%;
  max-width: 1000px;
}

.home-page .home-why .title h2 strong, .home-page .home-why .title .main-footer .footer-contact .content h3 strong strong, .main-footer .footer-contact .content h3 .home-page .home-why .title strong strong, .home-page .home-why .title .chiffre .content .items h3 strong strong, .home-page .chiffre .content .items h3 .home-why .title strong strong, .home-page .home-why .title .page-single .content-area .entry-content h1 strong strong, .page-single .content-area .entry-content h1 .home-page .home-why .title strong strong, .page-single .content-area .entry-content h2 .home-page .home-why .title strong strong, .home-page .home-why .title .page-single .content-area .entry-content h2 strong strong strong, .home-page .home-why .title
.page-single .content-area .entry-content h2 b strong strong {
  color: #175e82;
}

@media screen and (max-width: 768px) {
  .home-page .home-why .title h2, .home-page .home-why .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .home-page .home-why .title strong, .home-page .home-why .title h2 strong, .home-page .home-why .title .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .home-why .title strong, .home-page .home-why .title .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .home-why .title strong, .page-single .content-area .entry-content h2 .home-page .home-why .title strong, .home-page .home-why .title .page-single .content-area .entry-content h2 strong strong, .home-page .home-why .title
  .page-single .content-area .entry-content h2 b strong {
    font-size: 40px;
  }
}

@media screen and (max-width: 450px) {
  .home-page .home-why .title h2, .home-page .home-why .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .home-page .home-why .title strong, .home-page .home-why .title h2 strong, .home-page .home-why .title .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .home-why .title strong, .home-page .home-why .title .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .home-why .title strong, .page-single .content-area .entry-content h2 .home-page .home-why .title strong, .home-page .home-why .title .page-single .content-area .entry-content h2 strong strong, .home-page .home-why .title
  .page-single .content-area .entry-content h2 b strong {
    font-size: 28px;
    font-weight: 700;
  }
}

.home-page .home-why .content {
  width: 100vw;
  max-width: 1400px;
  padding: 0px var(--padding-screen);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.home-page .home-why .content .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #f2f5f7;
  border-radius: 4px;
  padding: 40px;
  height: 100%;
}

.home-page .home-why .content .item .icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-page .home-why .content .item .icon svg {
  min-width: 32px;
  height: 32px;
  fill: #175e82;
}

.home-page .home-why .content .item h3 {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0a141f;
  margin-bottom: 8px;
}

.home-page .home-why .content .item p {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
  color: #5a6e81;
}

@media screen and (max-width: 768px) {
  .home-page .home-why .content {
    grid-template-columns: repeat(1, 1fr);
  }
}

.home-page .home-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: #0a141f;
}

.home-page .home-about .title {
  width: 100vw;
  max-width: 1400px;
  padding: 144px var(--padding-screen) 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .home-about .title .btn-primary {
  margin-top: 48px;
}

.home-page .home-about .title p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 100;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
}

.home-page .home-about .title p strong {
  color: #ffffff;
  font-weight: 400;
}

.home-page .home-about .images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  position: relative;
  z-index: 0;
  width: 100vw;
  max-width: 1400px;
  padding: 0px var(--padding-screen);
  overflow: hidden;
  max-width: 100vw;
}

.home-page .home-about .images img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.home-page .home-about .images::before {
  content: "";
  display: block;
  width: 100vw;
  position: absolute;
  transform: translateX(-50%);
  bottom: 0px;
  left: 50%;
  height: 50%;
  z-index: -1;
  background: #ffffff;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .home-page .home-about .title {
    align-items: flex-start;
  }
  .home-page .home-about .title p {
    text-align: left;
    font-size: 16px;
  }
  .home-page .home-about .images {
    padding: 0px;
    padding-right: var(--padding-screen);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .home-page .home-about .images img {
    height: 300px;
    border-radius: 0px 4px 4px 0px;
  }
  .home-page .home-about .images img:last-child {
    display: none;
  }
}

.home-page .chiffre {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #175e82;
  width: 100vw;
}

.home-page .chiffre .content {
  width: 100vw;
  max-width: 1400px;
  padding: 120px var(--padding-screen);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 120px;
}

.home-page .chiffre .content .items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-page .chiffre .content .items h3 {
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-variation-settings: "wdth" 87.5;
  color: #ffffff;
  margin-bottom: 8px;
}

.home-page .chiffre .content .items h3 strong {
  color: #175e82;
}

@media screen and (max-width: 768px) {
  .home-page .chiffre .content .items h3 {
    font-size: 40px;
  }
}

@media screen and (max-width: 450px) {
  .home-page .chiffre .content .items h3 {
    font-size: 28px;
    font-weight: 700;
  }
}

.home-page .chiffre .content .items h3 span {
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-variation-settings: "wdth" 87.5;
  color: #ffffff;
}

.home-page .chiffre .content .items h3 span strong {
  color: #175e82;
}

@media screen and (max-width: 768px) {
  .home-page .chiffre .content .items h3 span {
    font-size: 40px;
  }
}

@media screen and (max-width: 450px) {
  .home-page .chiffre .content .items h3 span {
    font-size: 28px;
    font-weight: 700;
  }
}

.home-page .chiffre .content .items h4 {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .home-page .chiffre .content {
    grid-template-columns: 1fr;
  }
  .home-page .chiffre .content h3 {
    font-size: 48px !important;
  }
  .home-page .chiffre .content h3 span {
    font-size: 48px !important;
  }
}

.home-page .slider .title {
  width: 100vw;
  max-width: 1400px;
  padding: 144px var(--padding-screen) 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .slider .title .script {
  text-align: center;
}

.home-page .slider .title h2, .home-page .slider .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .home-page .slider .title strong, .home-page .slider .title .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .slider .title strong, .home-page .slider .title h2 strong, .home-page .slider .title .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .slider .title strong, .page-single .content-area .entry-content h2 .home-page .slider .title strong, .home-page .slider .title .page-single .content-area .entry-content h2 strong strong, .home-page .slider .title
.page-single .content-area .entry-content h2 b strong {
  width: 100%;
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-variation-settings: "wdth" 87.5;
  text-align: center;
  max-width: 1100px;
}

.home-page .slider .title h2 strong, .home-page .slider .title .main-footer .footer-contact .content h3 strong strong, .main-footer .footer-contact .content h3 .home-page .slider .title strong strong, .home-page .slider .title .chiffre .content .items h3 strong strong, .home-page .chiffre .content .items h3 .slider .title strong strong, .home-page .slider .title .page-single .content-area .entry-content h1 strong strong, .page-single .content-area .entry-content h1 .home-page .slider .title strong strong, .page-single .content-area .entry-content h2 .home-page .slider .title strong strong, .home-page .slider .title .page-single .content-area .entry-content h2 strong strong strong, .home-page .slider .title
.page-single .content-area .entry-content h2 b strong strong {
  color: #175e82;
}

@media screen and (max-width: 768px) {
  .home-page .slider .title h2, .home-page .slider .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .home-page .slider .title strong, .home-page .slider .title .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .slider .title strong, .home-page .slider .title h2 strong, .home-page .slider .title .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .slider .title strong, .page-single .content-area .entry-content h2 .home-page .slider .title strong, .home-page .slider .title .page-single .content-area .entry-content h2 strong strong, .home-page .slider .title
  .page-single .content-area .entry-content h2 b strong {
    font-size: 40px;
  }
}

@media screen and (max-width: 450px) {
  .home-page .slider .title h2, .home-page .slider .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .home-page .slider .title strong, .home-page .slider .title .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .slider .title strong, .home-page .slider .title h2 strong, .home-page .slider .title .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .slider .title strong, .page-single .content-area .entry-content h2 .home-page .slider .title strong, .home-page .slider .title .page-single .content-area .entry-content h2 strong strong, .home-page .slider .title
  .page-single .content-area .entry-content h2 b strong {
    font-size: 28px;
    font-weight: 700;
  }
}

.home-page .slider .title p {
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  color: #5a6e81;
  margin-top: 16px;
  max-width: 500px;
}

@media screen and (max-width: 768px) {
  .home-page .slider .title {
    align-items: flex-start;
  }
  .home-page .slider .title h4,
  .home-page .slider .title h2,
  .home-page .slider .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3
  .home-page .slider .title strong, .home-page .slider .title .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .slider .title strong, .home-page .slider .title h2 strong,
  .home-page .slider .title .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1
  .home-page .slider .title strong, .page-single .content-area .entry-content h2
  .home-page .slider .title strong,
  .home-page .slider .title .page-single .content-area .entry-content h2 strong strong,
  .home-page .slider .title
  .page-single .content-area .entry-content h2 b strong,
  .home-page .slider .title p {
    text-align: left !important;
  }
}

.home-page .slider-solutions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  padding: 0px;
  overflow-x: hidden;
  padding-bottom: 120px;
}

.home-page .slider-solutions .title h2, .home-page .slider-solutions .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .home-page .slider-solutions .title strong, .home-page .slider-solutions .home-why .title h2 strong, .home-page .home-why .slider-solutions .title h2 strong, .home-page .slider-solutions .title .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .slider-solutions .title strong, .home-page .slider-solutions .slider .title h2 strong, .home-page .slider .slider-solutions .title h2 strong, .home-page .slider-solutions .title .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .slider-solutions .title strong, .home-page .slider-solutions .title .page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content h2 .home-page .slider-solutions .title strong, .home-page .slider-solutions .page-single .content-product .title h2 strong, .page-single .content-product .home-page .slider-solutions .title h2 strong {
  max-width: 1050px;
}

.home-page .slider-solutions .splide {
  width: 100vw;
}

.home-page .slider-solutions .splide .splide__track {
  position: relative;
  overflow: visible;
}

.home-page .slider-solutions .splide .splide__track .splide__list {
  overflow: visible;
}

.home-page .slider-solutions .splide .splide__track .splide__list .splide__slide {
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 40px;
  background-color: #f2f5f7;
  padding-bottom: 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.home-page .slider-solutions .splide .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.home-page .slider-solutions .splide .splide__track .splide__list .splide__slide h3 {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-weight: 700;
  padding: 0px 16px;
  margin-top: 24px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
}

.home-page .slider-solutions .splide .splide__track .splide__list .splide__slide span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  height: 32px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-weight: 600;
  border-radius: 4px;
  color: #0a141f;
  background-color: #ffffff;
  position: absolute;
  top: 0px;
  transform: translateY(-50%);
  background-color: #175e82;
  color: #ffffff;
}

.home-page .slider-solutions .splide .splide__arrows {
  margin-top: 24px;
}

.home-page .slider-process {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: #f2f5f7;
  padding-bottom: 120px;
}

.home-page .slider-process .title h2, .home-page .slider-process .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .home-page .slider-process .title strong, .home-page .slider-process .home-why .title h2 strong, .home-page .home-why .slider-process .title h2 strong, .home-page .slider-process .title .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .slider-process .title strong, .home-page .slider-process .slider .title h2 strong, .home-page .slider .slider-process .title h2 strong, .home-page .slider-process .title .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .slider-process .title strong, .home-page .slider-process .title .page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content h2 .home-page .slider-process .title strong, .home-page .slider-process .page-single .content-product .title h2 strong, .page-single .content-product .home-page .slider-process .title h2 strong {
  max-width: 800px;
}

.home-page .slider-process .splide {
  width: 100vw;
  z-index: 1;
}

.home-page .slider-process .splide .splide__track .splide__list .splide__slide {
  background-color: #dde3e9;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.home-page .slider-process .splide .splide__track .splide__list .splide__slide label {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #5a6e81;
  width: 100%;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-align: center;
}

.home-page .slider-process .splide .splide__track .splide__list .splide__slide h4 {
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0a141f;
  font-weight: 500;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 450px) {
  .home-page .slider-process .splide .splide__track .splide__list .splide__slide h4 {
    font-size: 16px;
    line-height: 1.2;
  }
}

.home-page .slider-process .splide .splide__track .splide__list .splide__slide.is-active {
  background-color: #0a141f;
}

.home-page .slider-process .splide .splide__track .splide__list .splide__slide.is-active label,
.home-page .slider-process .splide .splide__track .splide__list .splide__slide.is-active h4 {
  color: #ffffff;
}

.home-page .slider-process .splide .splide__arrows {
  margin-top: 64px;
}

.home-page .slider-process .process-items {
  width: 100%;
  max-width: 1400px;
  padding: 0px var(--padding-screen);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.home-page .slider-process .process-items .items {
  background-color: white;
  padding: 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.home-page .slider-process .process-items .items svg {
  margin-bottom: 16px;
}

.home-page .slider-process .process-items .items h3 {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.home-page .slider-process .process-items .items p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
  color: #5a6e81;
}

@media screen and (max-width: 768px) {
  .home-page .slider-process .process-items {
    grid-template-columns: 1fr;
  }
}

.home-page .slider-avis {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  padding: 0px;
  overflow-x: hidden;
  padding-bottom: 120px;
}

.home-page .slider-avis .title h2, .home-page .slider-avis .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .home-page .slider-avis .title strong, .home-page .slider-avis .home-why .title h2 strong, .home-page .home-why .slider-avis .title h2 strong, .home-page .slider-avis .title .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .slider-avis .title strong, .home-page .slider-avis .slider .title h2 strong, .home-page .slider .slider-avis .title h2 strong, .home-page .slider-avis .title .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .slider-avis .title strong, .home-page .slider-avis .title .page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content h2 .home-page .slider-avis .title strong, .home-page .slider-avis .page-single .content-product .title h2 strong, .page-single .content-product .home-page .slider-avis .title h2 strong {
  max-width: 600px;
}

.home-page .slider-avis .splide {
  width: 100vw;
}

.home-page .slider-avis .splide .splide__track .splide__list .splide__slide {
  background-color: #f2f5f7;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0.4;
  transition: all .3s ease;
  border-radius: 4px;
}

.home-page .slider-avis .splide .splide__track .splide__list .splide__slide > p {
  width: 100%;
  text-align: left;
  line-height: 1.4;
}

.home-page .slider-avis .splide .splide__track .splide__list .splide__slide .stars {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
}

.home-page .slider-avis .splide .splide__track .splide__list .splide__slide .stars svg path {
  fill: #b3914d;
}

.home-page .slider-avis .splide .splide__track .splide__list .splide__slide .profil {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 16px;
}

.home-page .slider-avis .splide .splide__track .splide__list .splide__slide .profil span {
  font-weight: 500;
  color: #5a6e81;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.home-page .slider-avis .splide .splide__track .splide__list .splide__slide .profil span.location {
  color: #0a141f;
  font-weight: 300;
  margin-left: 8px;
  display: none;
}

.home-page .slider-avis .splide .splide__track .splide__list .splide__slide.is-active {
  opacity: 1;
}

.home-page .slider-avis .splide .splide__arrows {
  margin-top: 64px;
}

.home-page .slider-qualif {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  padding: 0px;
  overflow-x: hidden;
  padding-bottom: 80px;
  background-color: #f2f5f7;
}

.home-page .slider-qualif .title {
  padding-bottom: 40px;
  padding-top: 80px;
}

.home-page .slider-qualif .title h2, .home-page .slider-qualif .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .home-page .slider-qualif .title strong, .home-page .slider-qualif .home-why .title h2 strong, .home-page .home-why .slider-qualif .title h2 strong, .home-page .slider-qualif .title .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .slider-qualif .title strong, .home-page .slider-qualif .slider .title h2 strong, .home-page .slider .slider-qualif .title h2 strong, .home-page .slider-qualif .title .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .home-page .slider-qualif .title strong, .home-page .slider-qualif .title .page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content h2 .home-page .slider-qualif .title strong, .home-page .slider-qualif .page-single .content-product .title h2 strong, .page-single .content-product .home-page .slider-qualif .title h2 strong {
  font-size: 28px !important;
  max-width: 900px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.home-page .slider-qualif .splide {
  width: 100vw;
}

.home-page .slider-qualif .splide .splide__track .splide__list .splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.home-page .slider-qualif .splide .splide__track .splide__list .splide__slide img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.home-page .slider-qualif .splide .splide__arrows {
  margin-top: 64px;
}

.home-page .slider .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
}

.home-page .slider .splide__arrows button {
  position: relative;
  transform: none;
  width: 48px;
  height: 48px;
  left: auto;
  right: auto;
  margin: 8px;
  opacity: 1;
  background: transparent;
  border: 1px solid #c2ccd6;
  transition: all 0.3s ease;
}

.home-page .slider .splide__arrows button svg {
  width: 24px;
  height: 24px;
}

.home-page .slider .splide__arrows button:hover {
  transform: scale(0.96);
  background-color: #0a141f;
}

.home-page .slider .splide__arrows button:hover svg path {
  fill: white;
}

.home-page .slider .splide__arrows button:active {
  transform: scale(0.9);
}

.page-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}

.page-services .hero {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0a141f;
  margin-bottom: -150px;
  position: relative;
}

.page-services .hero .content {
  width: 100vw;
  max-width: 1400px;
  padding: 100px var(--padding-screen);
  padding-bottom: 200px;
}

.page-services .hero .content h1 {
  font-family: "Archivo", sans-serif;
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
  font-variation-settings: "wdth" 87.5;
  color: #ffffff;
  margin-bottom: 16px;
}

@media screen and (max-width: 1200px) {
  .page-services .hero .content h1 {
    font-size: 80px;
  }
}

@media screen and (max-width: 768px) {
  .page-services .hero .content h1 {
    font-size: 64px;
  }
}

@media screen and (max-width: 450px) {
  .page-services .hero .content h1 {
    font-size: 40px;
  }
}

.page-services .hero .content p {
  color: #5a6e81;
  font-weight: 300;
  max-width: 520px;
}

.page-services .hero::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 200px;
  background-color: #0a141f;
  transform: translateY(-99%);
  top: 0px;
  left: 0px;
}

.page-services .content-area {
  width: 100vw;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  padding: 80px var(--padding-screen);
  padding-top: 0px;
}

.page-services .content-area .services-item {
  height: 300px;
  padding: 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  border-radius: 4px;
}

.page-services .content-area .services-item h2, .page-services .content-area .services-item .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .page-services .content-area .services-item strong, .page-services .content-area .services-item .home-page .home-why .title h2 strong, .home-page .home-why .title h2 .page-services .content-area .services-item strong, .page-services .content-area .services-item .home-page .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .page-services .content-area .services-item strong, .page-services .content-area .services-item .home-page .slider .title h2 strong, .home-page .slider .title h2 .page-services .content-area .services-item strong, .page-services .page-single .content-area .services-item .entry-content h1 strong, .page-single .page-services .content-area .services-item .entry-content h1 strong, .page-services .page-single .content-area .entry-content h1 .services-item strong, .page-single .page-services .content-area .entry-content h1 .services-item strong, .page-services .page-single .content-area .services-item .entry-content h2 strong, .page-single .page-services .content-area .services-item .entry-content h2 strong, .page-services .page-single .content-area .entry-content h2 .services-item strong, .page-single .page-services .content-area .entry-content h2 .services-item strong, .page-services .content-area .services-item .page-single .content-product .title h2 strong, .page-single .content-product .title h2 .page-services .content-area .services-item strong {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #ffffff;
  width: 100%;
  z-index: 2;
  line-height: 1.1;
}

.page-services .content-area .services-item p {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 16px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-services .content-area .services-item p svg {
  fill: #ffffff;
  height: 16px;
  width: 16px;
  margin-left: 4px;
}

.page-services .content-area .services-item img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  transition: all 0.3s ease;
}

.page-services .content-area .services-item:hover img {
  width: calc(100% + 24px);
  height: calc(100% + 24px);
}

.page-services .content-area .services-item::after {
  content: "";
  display: block;
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0px;
  bottom: 0px;
  z-index: 0;
  opacity: 0.5;
  background: linear-gradient(180deg, transparent 0%, #0d1a26 100%);
}

@media screen and (max-width: 768px) {
  .page-services .content-area {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page-single {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  background-color: #f2f5f7;
  padding-bottom: 80px;
}

.page-single .btn-primary {
  width: fit-content;
}

.page-single .entry-header {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0a141f;
  margin-bottom: -150px;
  position: relative;
  z-index: 0;
}

.page-single .entry-header img {
  position: relative;
  width: 100vw;
  height: 400px;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-single .entry-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0a141f;
  background: black;
  background: linear-gradient(180deg, transparent 0%, #0a141f 100%);
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 0.8;
}

.page-single .content-area {
  width: 100vw;
  max-width: 1400px;
  padding: var(--padding-screen);
  padding-top: 0px;
  z-index: 1;
  padding-bottom: 0px;
  display: flex;
}

.page-single .content-area .entry-content {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 64px var(--padding-screen);
  width: 100%;
  min-height: 400px;
}

.page-single .content-area .entry-content h1 {
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-variation-settings: "wdth" 87.5;
  z-index: 2;
  font-size: 64px;
  margin-bottom: 16px;
}

.page-single .content-area .entry-content h1 strong {
  color: #175e82;
}

@media screen and (max-width: 768px) {
  .page-single .content-area .entry-content h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 450px) {
  .page-single .content-area .entry-content h1 {
    font-size: 28px;
    font-weight: 700;
  }
}

.page-single .content-area .entry-content h2, .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .page-single .content-area .entry-content strong, .home-page .home-why .title h2 .page-single .content-area .entry-content strong, .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .page-single .content-area .entry-content strong, .home-page .slider .title h2 .page-single .content-area .entry-content strong, .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content h2 strong strong, .page-single .content-area .entry-content h2 b strong, .page-single .content-product .title h2 .content-area .entry-content strong {
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-variation-settings: "wdth" 87.5;
  font-size: 24px !important;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  margin-top: 48px;
}

.page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong strong, .main-footer .footer-contact .content h3 .page-single .content-area .entry-content strong strong, .home-page .home-why .title h2 .page-single .content-area .entry-content strong strong, .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong strong, .home-page .chiffre .content .items h3 .page-single .content-area .entry-content strong strong, .home-page .slider .title h2 .page-single .content-area .entry-content strong strong, .page-single .content-area .entry-content h1 strong strong, .page-single .content-area .entry-content h2 strong strong strong, .page-single .content-area .entry-content h2 b strong strong, .page-single .content-product .title h2 .content-area .entry-content strong strong {
  color: #175e82;
}

@media screen and (max-width: 768px) {
  .page-single .content-area .entry-content h2, .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .page-single .content-area .entry-content strong, .home-page .home-why .title h2 .page-single .content-area .entry-content strong, .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .page-single .content-area .entry-content strong, .home-page .slider .title h2 .page-single .content-area .entry-content strong, .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content h2 strong strong, .page-single .content-area .entry-content h2 b strong, .page-single .content-product .title h2 .content-area .entry-content strong {
    font-size: 40px;
  }
}

@media screen and (max-width: 450px) {
  .page-single .content-area .entry-content h2, .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .page-single .content-area .entry-content strong, .home-page .home-why .title h2 .page-single .content-area .entry-content strong, .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .page-single .content-area .entry-content strong, .home-page .slider .title h2 .page-single .content-area .entry-content strong, .page-single .content-area .entry-content h1 strong, .page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content h2 strong strong, .page-single .content-area .entry-content h2 b strong, .page-single .content-product .title h2 .content-area .entry-content strong {
    font-size: 28px;
    font-weight: 700;
  }
}

.page-single .content-area .entry-content h2:first-child, .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong:first-child, .main-footer .footer-contact .content h3 .page-single .content-area .entry-content strong:first-child, .home-page .home-why .title h2 .page-single .content-area .entry-content strong:first-child, .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong:first-child, .home-page .chiffre .content .items h3 .page-single .content-area .entry-content strong:first-child, .home-page .slider .title h2 .page-single .content-area .entry-content strong:first-child, .page-single .content-area .entry-content h1 strong:first-child, .page-single .content-area .entry-content h2 strong:first-child, .page-single .content-product .title h2 .content-area .entry-content strong:first-child {
  margin-top: 0px;
}

.page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong strong, .main-footer .footer-contact .content h3 .page-single .content-area .entry-content strong strong, .home-page .home-why .title h2 .page-single .content-area .entry-content strong strong, .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong strong, .home-page .chiffre .content .items h3 .page-single .content-area .entry-content strong strong, .home-page .slider .title h2 .page-single .content-area .entry-content strong strong, .page-single .content-area .entry-content h1 strong strong, .page-single .content-area .entry-content h2 strong strong strong, .page-single .content-area .entry-content h2 b strong strong, .page-single .content-product .title h2 .content-area .entry-content strong strong,
.page-single .content-area .entry-content h2 b,
.page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong b, .main-footer .footer-contact .content h3
.page-single .content-area .entry-content strong b, .home-page .home-why .title h2
.page-single .content-area .entry-content strong b,
.page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong b, .home-page .chiffre .content .items h3
.page-single .content-area .entry-content strong b, .home-page .slider .title h2
.page-single .content-area .entry-content strong b, .page-single .content-area .entry-content h1 strong b, .page-single .content-area .entry-content h2 strong strong b, .page-single .content-area .entry-content h2 b strong b, .page-single .content-product .title h2 .content-area .entry-content strong b {
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-variation-settings: "wdth" 87.5;
  font-size: 32px;
  font-weight: 600;
}

.page-single .content-area .entry-content h2 strong strong, .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong strong strong, .main-footer .footer-contact .content h3 .page-single .content-area .entry-content strong strong strong, .home-page .home-why .title h2 .page-single .content-area .entry-content strong strong strong, .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong strong strong, .home-page .chiffre .content .items h3 .page-single .content-area .entry-content strong strong strong, .home-page .slider .title h2 .page-single .content-area .entry-content strong strong strong, .page-single .content-area .entry-content h1 strong strong strong, .page-single .content-product .title h2 .content-area .entry-content strong strong strong,
.page-single .content-area .entry-content h2 b strong,
.page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong b strong, .main-footer .footer-contact .content h3
.page-single .content-area .entry-content strong b strong, .home-page .home-why .title h2
.page-single .content-area .entry-content strong b strong,
.page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong b strong, .home-page .chiffre .content .items h3
.page-single .content-area .entry-content strong b strong, .home-page .slider .title h2
.page-single .content-area .entry-content strong b strong, .page-single .content-area .entry-content h1 strong b strong, .page-single .content-product .title h2 .content-area .entry-content strong b strong {
  color: #175e82;
}

@media screen and (max-width: 768px) {
  .page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong strong, .main-footer .footer-contact .content h3 .page-single .content-area .entry-content strong strong, .home-page .home-why .title h2 .page-single .content-area .entry-content strong strong, .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong strong, .home-page .chiffre .content .items h3 .page-single .content-area .entry-content strong strong, .home-page .slider .title h2 .page-single .content-area .entry-content strong strong, .page-single .content-area .entry-content h1 strong strong, .page-single .content-area .entry-content h2 strong strong strong, .page-single .content-area .entry-content h2 b strong strong, .page-single .content-product .title h2 .content-area .entry-content strong strong,
  .page-single .content-area .entry-content h2 b,
  .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong b, .main-footer .footer-contact .content h3
  .page-single .content-area .entry-content strong b, .home-page .home-why .title h2
  .page-single .content-area .entry-content strong b,
  .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong b, .home-page .chiffre .content .items h3
  .page-single .content-area .entry-content strong b, .home-page .slider .title h2
  .page-single .content-area .entry-content strong b, .page-single .content-area .entry-content h1 strong b, .page-single .content-area .entry-content h2 strong strong b, .page-single .content-area .entry-content h2 b strong b, .page-single .content-product .title h2 .content-area .entry-content strong b {
    font-size: 40px;
  }
}

@media screen and (max-width: 450px) {
  .page-single .content-area .entry-content h2 strong, .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong strong, .main-footer .footer-contact .content h3 .page-single .content-area .entry-content strong strong, .home-page .home-why .title h2 .page-single .content-area .entry-content strong strong, .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong strong, .home-page .chiffre .content .items h3 .page-single .content-area .entry-content strong strong, .home-page .slider .title h2 .page-single .content-area .entry-content strong strong, .page-single .content-area .entry-content h1 strong strong, .page-single .content-area .entry-content h2 strong strong strong, .page-single .content-area .entry-content h2 b strong strong, .page-single .content-product .title h2 .content-area .entry-content strong strong,
  .page-single .content-area .entry-content h2 b,
  .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong b, .main-footer .footer-contact .content h3
  .page-single .content-area .entry-content strong b, .home-page .home-why .title h2
  .page-single .content-area .entry-content strong b,
  .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong b, .home-page .chiffre .content .items h3
  .page-single .content-area .entry-content strong b, .home-page .slider .title h2
  .page-single .content-area .entry-content strong b, .page-single .content-area .entry-content h1 strong b, .page-single .content-area .entry-content h2 strong strong b, .page-single .content-area .entry-content h2 b strong b, .page-single .content-product .title h2 .content-area .entry-content strong b {
    font-size: 28px;
    font-weight: 700;
  }
}

.page-single .content-area .entry-content h2::before, .page-single .content-area .entry-content .main-footer .footer-contact .content h3 strong::before, .main-footer .footer-contact .content h3 .page-single .content-area .entry-content strong::before, .home-page .home-why .title h2 .page-single .content-area .entry-content strong::before, .page-single .content-area .entry-content .home-page .chiffre .content .items h3 strong::before, .home-page .chiffre .content .items h3 .page-single .content-area .entry-content strong::before, .home-page .slider .title h2 .page-single .content-area .entry-content strong::before, .page-single .content-area .entry-content h1 strong::before, .page-single .content-area .entry-content h2 strong::before, .page-single .content-product .title h2 .content-area .entry-content strong::before {
  content: "";
  display: none;
  width: 40px;
  height: 4px;
  background: #175e82;
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc($padding-screen * -1);
  top: calc(50% + 2px);
  border-radius: 100px;
}

.page-single .content-area .entry-content h3 {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 16px !important;
  margin-bottom: 16px;
}

.page-single .content-area .entry-content p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  color: #5a6e81;
  margin-bottom: 32px;
}

.page-single .content-area .entry-content p strong {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #0a141f;
}

.page-single .content-area .entry-content ul {
  padding-left: 16px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.page-single .content-area .entry-content ul li {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  color: #5a6e81;
  margin-bottom: 16px;
}

.page-single .content-area .entry-content ul li strong {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #0a141f;
}

.page-single .content-area .entry-content ul li::marker {
  color: #0a141f;
}

.page-single .content-area .entry-content img {
  width: 100%;
  border-radius: 4px !important;
}

.page-single .content-area .entry-content blockquote {
  padding: 16px;
  border-left: 2px solid #175e82;
  background-color: #f2f5f7;
  margin-bottom: 40px;
}

.page-single .content-area .entry-content blockquote p {
  margin: 0px;
}

.page-single .content-area .entry-content > *:last-child {
  margin: 0px !important;
}

.page-single .content-area .sidebar {
  width: 100%;
  display: none;
}

.page-single .content-area .sidebar .contact {
  border-radius: 4px;
  padding: 40px;
  background: #175e82;
  width: 100%;
  margin-top: 16px;
  position: sticky;
  top: 96px;
}

.page-single .content-area .sidebar .wp-post-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

@media screen and (max-width: 1200px) {
  .page-single .content-area {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-start;
  }
  .page-single .content-area .contact {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .page-single .content-area {
    padding-left: 0px;
  }
  .page-single .content-area .entry-content,
  .page-single .content-area img {
    border-radius: 0px 4px 4px 0px !important;
  }
}

.page-single .content-product {
  width: 100vw;
  max-width: 1400px;
  padding: 80px var(--padding-screen);
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-single .content-product .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.page-single .content-product .title h2, .page-single .content-product .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .page-single .content-product .title strong, .page-single .content-product .title .home-page .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .page-single .content-product .title strong, .page-single .content-product .title .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .content-product .title strong, .page-single .content-area .entry-content h2 .content-product .title strong, .page-single .content-product .title .content-area .entry-content h2 strong strong, .page-single .content-product .title .content-area .entry-content h2 b strong, .page-single .content-product .title h2 strong {
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-variation-settings: "wdth" 87.5;
  font-size: 28px;
  letter-spacing: -0.4px;
}

.page-single .content-product .title h2 strong, .page-single .content-product .title .main-footer .footer-contact .content h3 strong strong, .main-footer .footer-contact .content h3 .page-single .content-product .title strong strong, .page-single .content-product .title .home-page .chiffre .content .items h3 strong strong, .home-page .chiffre .content .items h3 .page-single .content-product .title strong strong, .page-single .content-product .title .content-area .entry-content h1 strong strong, .page-single .content-area .entry-content h1 .content-product .title strong strong, .page-single .content-area .entry-content h2 .content-product .title strong strong {
  color: #175e82;
}

@media screen and (max-width: 768px) {
  .page-single .content-product .title h2, .page-single .content-product .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .page-single .content-product .title strong, .page-single .content-product .title .home-page .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .page-single .content-product .title strong, .page-single .content-product .title .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .content-product .title strong, .page-single .content-area .entry-content h2 .content-product .title strong, .page-single .content-product .title .content-area .entry-content h2 strong strong, .page-single .content-product .title .content-area .entry-content h2 b strong, .page-single .content-product .title h2 strong {
    font-size: 40px;
  }
}

@media screen and (max-width: 450px) {
  .page-single .content-product .title h2, .page-single .content-product .title .main-footer .footer-contact .content h3 strong, .main-footer .footer-contact .content h3 .page-single .content-product .title strong, .page-single .content-product .title .home-page .chiffre .content .items h3 strong, .home-page .chiffre .content .items h3 .page-single .content-product .title strong, .page-single .content-product .title .content-area .entry-content h1 strong, .page-single .content-area .entry-content h1 .content-product .title strong, .page-single .content-area .entry-content h2 .content-product .title strong, .page-single .content-product .title .content-area .entry-content h2 strong strong, .page-single .content-product .title .content-area .entry-content h2 b strong, .page-single .content-product .title h2 strong {
    font-size: 28px;
    font-weight: 700;
  }
}

.page-single .content-product .content {
  width: 100%;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.page-single .content-product .content .items {
  padding: 40px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.page-single .content-product .content .items svg {
  fill: #175e82;
}

.page-single .content-product .content .items h3 {
  width: 100%;
  text-align: center;
  margin-top: 16px;
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.2px;
}

@media screen and (max-width: 768px) {
  .page-single .content-product .content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 450px) {
  .page-single .content-product .content {
    grid-template-columns: 1fr;
  }
}

.page-single .content-product.cloud .content .items {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 400px;
  position: relative;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
  overflow: hidden;
}

.page-single .content-product.cloud .content .items svg {
  z-index: 1;
  fill: white;
}

.page-single .content-product.cloud .content .items h3 {
  margin-bottom: 8px;
  text-align: left;
  color: white;
  z-index: 1;
}

.page-single .content-product.cloud .content .items p {
  font-size: 14px;
  line-height: 1.4;
  color: white;
  z-index: 1;
  font-weight: 300;
  opacity: 0.8;
  display: none;
}

.page-single .content-product.cloud .content .items::before {
  content: '';
  display: block;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, #175e82 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
  opacity: 0.8;
  transition: all .2s ease;
}

.page-single .content-product.cloud .content .items:hover p {
  display: block;
}

.page-single .content-product.cloud .content .items:hover::before {
  opacity: 1;
  background-color: #175e82;
}

.page-single .content-product.cloud .content .items:nth-child(1) {
  background-image: url("../images/img/slide-installation-solaire.webp");
}

.page-single .content-product.cloud .content .items:nth-child(2) {
  background-image: url("../images/img/interior.jpg");
}

.page-single .content-product.cloud .content .items:nth-child(3) {
  background-image: url("../images/img/thermostat-mur.webp");
}

.page-single .content-product.cloud .content .items:nth-child(4) {
  background-image: url("../images/images/suivi.jpg");
}

.page-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f2f5f7;
}

.page-contact .hero {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  background-color: #0a141f;
  background-image: url("../images/images/panneau.jpg");
  background-position: center;
  background-size: cover;
  margin-bottom: -150px;
  position: relative;
}

.page-contact .hero .content {
  width: 100vw;
  max-width: 1400px;
  padding: 200px var(--padding-screen);
  padding-bottom: 200px;
  z-index: 1;
}

.page-contact .hero .content h1 {
  font-family: "Archivo", sans-serif;
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
  font-variation-settings: "wdth" 87.5;
  color: #ffffff;
  margin-bottom: 16px;
}

@media screen and (max-width: 1200px) {
  .page-contact .hero .content h1 {
    font-size: 80px;
  }
}

@media screen and (max-width: 768px) {
  .page-contact .hero .content h1 {
    font-size: 64px;
  }
}

@media screen and (max-width: 450px) {
  .page-contact .hero .content h1 {
    font-size: 40px;
  }
}

.page-contact .hero .content p {
  color: #5a6e81;
  font-weight: 300;
}

.page-contact .hero::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0a141f;
  background: black;
  background: linear-gradient(180deg, transparent 0%, #0a141f 100%);
  top: 0px;
  left: 0px;
  z-index: 0;
  opacity: 0.8;
}

@media screen and (max-width: 450px) {
  .page-contact .hero {
    margin-bottom: -100px;
  }
}

.page-contact .content-area {
  width: 100vw;
  max-width: 1400px;
  padding: var(--padding-screen);
  margin-top: -100px;
  z-index: 1;
}

.page-contact .content-area .form {
  padding: var(--padding-screen);
  background: #ffffff;
  border-radius: 4px;
}

.page-contact .content-area .form form {
  width: 100%;
}

.page-contact .content-area .form form p {
  width: 100%;
  margin-bottom: 16px;
}

.page-contact .content-area .form form p label {
  width: 100%;
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
}

.page-contact .content-area .form form p label input,
.page-contact .content-area .form form p label textarea {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: #f2f5f7;
  border: 1px solid #ffffff;
  outline: none;
  resize: vertical;
  max-height: 300px;
  border-radius: 4px;
}

.page-contact .content-area .form form p label input:focus,
.page-contact .content-area .form form p label textarea:focus {
  border: 1px solid #0a141f;
}

.page-contact .content-area .form form p label textarea {
  min-height: 100px;
}

.page-contact .content-area .form form p .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 4px;
}

.page-contact .content-area .form form p .wpcf7-submit {
  padding: 12px;
  width: 100%;
  border: 1px solid #0a141f;
  background: #0a141f;
  color: #ffffff;
  cursor: pointer;
  height: 48px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 4px;
}

.page-contact .content-area .form form p .wpcf7-submit:hover {
  background: #175e82;
  border-color: #175e82;
}

@media screen and (max-width: 450px) {
  .page-contact .content-area {
    padding-left: 0px;
  }
  .page-contact .content-area .form {
    border-radius: 0px 4px 4px 0px;
  }
}

.page-contact .informations {
  width: 100vw;
  max-width: 1400px;
  padding: calc(120px - $padding-screen) var(--padding-screen) 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
}

.page-contact .informations .content {
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 80px;
}

.page-contact .informations .content .contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.page-contact .informations .content .contact-item svg {
  fill: #175e82;
  margin-bottom: 16px;
}

.page-contact .informations .content .contact-item h3 {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.page-contact .informations .content .contact-item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #5a6e81;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .page-contact .informations .content {
    grid-template-columns: 1fr;
  }
}
