/*!
Theme Name: STARTEO Starter Theme
Author: Starteo
Author URI: https://www.starteo.pro
Description: 
Version: 1.0
Requires at least: 5.0
Tested up to: 5.7
Requires PHP: 7.2
Text Domain: gbdi-starter
*/

/* Don't overwrite this file. Compile "/assets/main.(less|scss)" to "/assets/css/main.css" */

/* From http://codex.wordpress.org/CSS */

/* GENERAL */
/*
@font-face {
	font-family: "Ganton";
	src: url(assets/_fonts/Ganton.otf) format("opentype");
}
*/

@font-face {
  font-family: "Din";
  src:
    url(assets/_fonts/DINPro.ttf) format("truetype"),
    url(assets/_fonts/DINPro-Bold.woff2);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Din";
  src:
    url(assets/_fonts/DINPro-Bold.ttf) format("truetype"),
    url(assets/_fonts/DINPro-Bold.woff2);
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Din";
  src:
    url(assets/_fonts/DINPro-BoldItalic.ttf) format("truetype"),
    url(assets/_fonts/DINPro-BoldItalic.woff2);
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Din";
  src:
    url(assets/_fonts/DINPro-Italic.ttf) format("truetype"),
    url(assets/_fonts/DINPro-Italic.woff2);
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Din";
  src:
    url(assets/_fonts/DINPro-Medium.ttf) format("truetype"),
    url(assets/_fonts/DINPro-Medium.woff2);
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Big Noodle Titling";
  src:
    url(assets/_fonts/big_noodle_titling.ttf) format("truetype"),
    url(assets/_fonts/big_noodle_titling.woff2);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Authenia";
  src:
    url(assets/_fonts/Authenia.otf) format("opentype"),
    url(assets/_fonts/Authenia.woff2);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat Bold";
  src:
    url(assets/_fonts/Montserrat-Bold.otf) format("opentype"),
    url(assets/_fonts/Montserrat-Bold.woff2);
  font-weight: 700;
  font-style: normal;
}

html {
  font-size: 20px;
}

:root {
  --font-size-70: 3.5rem; /* 70px */
  --font-size-67: 3.35rem; /* 67px */
  --font-size-55: 2.75rem; /* 55px */
  --font-size-50: 2.5rem; /* 50px */
  --font-size-30: 1.5rem; /* 30px */
  --font-size-25: 1.25rem; /* 25px */
  --font-size-base: 1rem; /* 20px */
  --font-size-16: 0.8rem; /* 16px */

  --font-family-primary: "Din", sans-serif;
  --font-family-noodle: "Big Noodle Titling", sans-serif;
  --font-family-authenia: "Authenia", sans-serif;
  --font-family-montserrat: "Montserrat Bold", sans-serif;

  --weight-medium: 500;
  --weight-bold: 700;
  --weight-xtra-bold: 800;

  --style-italic: italic;

  --color-blue: #00b2e3;
  --color-navy: #202a44;
  --color-white: #ffffff;
}

@media (max-width: 768px) {
  html {
    font-size: 18px;
  }

  :root {
    --font-size-70: 2.777rem; /* ~50px */
    --font-size-67: 2.666rem; /* ~48px */
    --font-size-55: 1.8rem; /* ~40px */
    --font-size-50: 2rem; /* 36px */
    --font-size-30: 1.333rem; /* 24px */
    --font-size-25: 1.111rem; /* 20px */
    --font-size-base: 1rem; /* 18px */
    --font-size-16: 0.888rem; /* 16px */
  }
}

@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  :root {
    --font-size-70: 2.25rem; /* 36px */
    --font-size-67: 2rem; /* 32px */
    --font-size-50: 1.625rem; /* 26px */
    --font-size-30: 1.25rem; /* 20px */
    --font-size-25: 1.0625rem; /* 17px */
    --font-size-base: 1rem; /* 16px */
    --font-size-16: 0.875rem; /* 14px */
  }
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.4;
  color: var(--color-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.back-to-top {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 10px; /* Place the button at the bottom of the page */
  right: 10px; /* Place the button 30px from the right */
  z-index: 999; /* Make sure it does not overlap */
  outline: none; /* Remove outline */
  cursor: pointer; /* Add a mouse pointer on hover */
  font-size: 20px; /* Increase font size */
  color: var(--color-blue);
  background: var(--color-white);
  border: solid 2px var(--color-blue);
  border-radius: 50%;
  padding: 14px 16px;
  transition:
    background-color 0.3s,
    opacity 0.5s,
    visibility 0.5s;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.gp-blue {
  color: var(--color-blue);
}

.gp-navy {
  color: var(--color-navy);
}

.gp-white {
  color: var(--color-white);
}

.gp-bg-blue {
  background-color: var(--color-blue);
}

.gp-bg-navy {
  background-color: var(--color-navy);
}

.gp-title-67 {
  font-size: var(--font-size-67);
  font-weight: var(--weight-bold);
  line-height: 1.02;
}

.gp-title-30 {
  font-size: var(--font-size-30);
  font-weight: var(--weight-bold);
}

.gp-intro {
  font-size: var(--font-size-30);
  font-weight: var(--weight-bold);
  font-style: var(--style-italic);
  line-height: 1.13;
}

.gp-content strong {
  font-weight: var(--weight-bold);
}

.gp-bold {
  font-weight: var(--weight-bold);
}

.grecaptcha-badge {
  display: none;
}
/* GENERAL */

/* HEADER */
.gp-header {
  position: relative;
  height: 207px;
  align-items: center;
  background: var(--color-navy);
}

.gp-header {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home .gp-header,
.front-page .gp-header,
.page-id-30 .gp-header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.gp-header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.gp-header-home-link img {
  max-height: 60px;
  width: auto;
}

.gp-header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.gp-header-menu .navbar {
  height: 100%;
}

.gp-header-menu .navbar-nav {
  align-items: center;
  gap: 3.5rem;
}

.gp-header-menu .navbar-nav > li > a {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-16);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border: 1.5px solid transparent;
  border-radius: 37px;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.gp-header-menu .navbar-nav > li > a:hover {
  border-color: var(--color-blue);
  color: var(--color-white);
  background: rgba(32, 42, 68, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gp-header-menu .navbar-nav > li.dropdown > a {
  padding: 0.7rem 1rem;
}

.dropdown-toggle:after {
  display: none;
}

.gp-header-menu .dropdown-menu {
  background: rgba(32, 42, 68, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--color-blue);
  border-top: none;
  padding: 0rem 1.5rem 1rem 1.5rem;
  min-width: 100%;
  left: 0rem;
  transform: none;
}

.gp-header-menu .dropdown-menu .dropdown-item {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-16);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  text-transform: none;
  padding: 0.3rem 0;
  background: transparent;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gp-header-menu .dropdown-menu .dropdown-item:hover {
  color: var(--color-blue);
  background: transparent;
}

.gp-header-menu .navbar-nav > li.dropdown {
  position: relative;
}

.gp-header-menu .navbar-nav > li.dropdown:hover > a {
  border-color: var(--color-blue);
  background: rgba(32, 42, 68, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: none;
  border-radius: 37px 37px 0 0;
  padding-bottom: 0.75rem;
}

.gp-header-menu .navbar-nav > li.dropdown:hover .dropdown-menu {
  display: block;
  border-top: none;
  border-radius: 0 0 37px 37px;
  margin-top: -1px;
}

.gp-header-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.gp-header-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
}

.gp-header-socials img {
  width: 31px;
  height: 31px;
  fill: none;
}
/* HEADER */

/* FOOTER */
.gp-footer {
  font-size: var(--font-size-base);
  color: var(--color-white);
  font-weight: var(--weight-medium);
  padding: 66px 0 50px 0;
}

.gp-footer-logo {
  max-height: 50px;
}

.gp-footer-links {
  font-size: var(--font-size-16);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  opacity: 0.36;
}

.gp-footer-links a {
  color: var(--color-white);
}
/* FOOTER */

/* HOME */
.gp-home-banner-content {
  padding-top: 27vh;
}

.gp-home-banner-bg {
  background: url("assets/images/GP-Home-Banner.jpg") no-repeat center center;
  height: 103vh;
  background-size: cover;
}

.gp-home-banner-label {
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-16);
  font-weight: var(--weight-bold);
  padding: 0.4rem 0.75rem;
  border: 1.5px solid var(--color-blue);
  background: rgba(32, 42, 68, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 37px;
  display: inline-block;
}

.gp-home-banner-intro {
  font-size: var(--font-size-25);
  font-weight: var(--weight-medium);
}

.gp-home-presentation-deco {
  width: 51px;
  height: 51px;
  position: absolute;
  right: 3%;
  top: -3.5%;
}

.gp-home-presentation img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.gp-home-bg-blue-rounded {
  position: absolute;
  top: -1px;
  right: 0;
  width: 350px;
  height: auto;
}

.gp-home-services-separator {
  background: var(--color-blue);
  height: 2px;
  width: 100%;
}

.gp-home-services-separator-deco {
  width: 52px;
  height: 52px;
}

.gp-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 4.5rem;
}

.gp-service-card {
  position: relative;
  padding-bottom: 17px;
}

.gp-service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--color-blue);
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.gp-service-card-title {
  font-weight: var(--weight-bold);
  color: var(--color-white);
  background: var(--color-blue);
  display: inline;
  padding: 0.2rem 0.6rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: opacity 0.3s ease;
}

.gp-service-card-intro {
  font-style: var(--style-italic);
  transition: opacity 0.3s ease;
}

.gp-service-card-description {
  font-weight: var(--weight-bold);
  transition: opacity 0.3s ease;
}

.gp-service-card-description p {
  margin-bottom: 0;
}

.gp-service-card-link {
  font-weight: var(--weight-bold);
  color: var(--color-blue);
  text-decoration: none;
  text-align: right;
  display: block;
}

.gp-service-card:hover .gp-service-card-link {
  color: var(--color-navy);
}

.gp-service-card:hover .gp-service-card-title,
.gp-service-card:hover .gp-service-card-intro,
.gp-service-card:hover .gp-service-card-description {
  opacity: 0.4;
}

.gp-service-card:hover::after {
  width: 20%;
  background: var(--color-navy);
}

.gp-home-services-agencies span {
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  background: var(--color-navy);
  display: inline !important;
  padding: 0.2rem 0.6rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.gp-home-services-decos {
  position: absolute;
  bottom: 0;
  right: 0;
}

.gp-home-why-card {
  flex: 1;
  max-width: 20%;
  padding: 0 10px;
}

.gp-home-why-separator {
  background: var(--color-white);
  height: 2px;
  width: 100%;
}

.gp-home-why-separator-deco {
  width: 50px;
  height: auto;
}

.gp-home-why-card-picto {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-home-why-card-picto img {
  max-height: 80px;
  width: auto;
}

.gp-home-why-photo {
  width: 830px;
  height: auto;
  border-radius: 10px;
  border: 2px solid var(--color-blue);
  padding: 20px;
}

.gp-home-why-photo img {
  border-radius: 10px;
  mix-blend-mode: screen;
}

.gp-home-why-content-card:not(:last-child) {
  border-bottom: 4px dotted var(--color-blue);
  padding-bottom: 60px;
}

.gp-home-why-content-card {
  margin-bottom: 60px;
}

.gp-home-why-content-card-content strong {
  color: var(--color-blue);
  font-weight: var(--weight-bold);
}

.gp-home-why-content-card-content p {
  margin-bottom: 0;
}

.gp-franchised-container {
  background-image: url("assets/images/GP-Home-Franchised-BG.jpg");
  height: auto;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gp-franchised-title {
  font-family: var(--font-family-noodle);
  font-size: var(--font-size-70);
  line-height: 0.92;
  text-transform: uppercase;
}

.gp-franchised-intro {
  font-family: var(--font-family-authenia);
  font-size: var(--font-size-70);
  line-height: 0.71;
}

.gp-franchised-separator {
  background-color: var(--color-white);
  height: 2px;
  width: 100%;
}

.gp-franchised-button a {
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: 30px;
  color: var(--color-navy);
  font-weight: var(--weight-bold);
  padding: 13px 27px;
  transition: background-color ease-in-out 0.3s border-color ease-in-out 0.3s
    color ease-in-out 0.3s;
}

.gp-franchised-button a:hover {
  background-color: transparent;
  border-color: var(--color-blue);
  color: var(--color-white);
}

.gp-quote-white-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 128px;
  height: auto;
}
/* HOME */

/* BANDEAU DEVIS */
.gp-quote-container {
  padding-block: 110px;
}

.gp-quote-first-column {
  border-right: 4px dotted var(--color-navy);
}

.gp-quote-title {
  font-size: var(--font-size-50);
  line-height: 1;
  font-weight: var(--weight-bold);
}

.gp-quote-content {
  line-height: 1.13;
}

.gp-quote-separator {
  border-left: 4px dotted var(--color-navy);
  height: 100%;
  min-height: 195px;
  margin: 0 auto;
  width: 0;
}

.gp-quote-button a {
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: 30px;
  color: var(--color-navy);
  font-weight: var(--weight-bold);
  padding: 13px 27px;
  transition: background-color ease-in-out 0.3s border-color ease-in-out 0.3s
    color ease-in-out 0.3s;
}

.gp-quote-button a:hover {
  background-color: transparent;
  border-color: var(--color-navy);
  color: var(--color-white);
}

.gp-quote-button-white a {
  background-color: var(--color-white);
  border: 2px solid var(--color-blue);
  border-radius: 30px;
  color: var(--color-navy);
  font-weight: var(--weight-bold);
  padding: 13px 27px;
  transition: background-color ease-in-out 0.3s border-color ease-in-out 0.3s
    color ease-in-out 0.3s;
}

.gp-quote-button-white a:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}
/* BANDEAU DEVIS */

/* PAGES - TYPES NETTOYAGES */
.gp-cleaning-container {
  position: relative;
  height: 674px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.gp-cleaning-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  opacity: 1;
}

.gp-cleaning-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(32, 42, 68, 0.65);
  z-index: 1;
}

.gp-cleaning-container .row {
  position: relative;
  width: 100%;
  z-index: 2;
}

.gp-cleaning-banner-separator {
  background-color: var(--color-white);
  height: 2px;
  width: auto;
  object-fit: cover;
}

.gp-cleaning-navy-photo img {
  border-radius: 10px;
  height: 500px;
  width: 100%;
  mix-blend-mode: screen;
  object-fit: cover;
}

.gp-cleaning-services-title {
  border-bottom: 2px solid var(--color-blue);
  padding-bottom: 20px;
  line-height: 1.13;
}

.gp-cleaning-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 8.33%;
  align-items: stretch;
}

.gp-cleaning-services-col {
  padding: 0 3rem;
  position: relative;
}

.gp-cleaning-services-col:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-left: 4px dotted var(--color-navy);
}

.gp-cleaning-services-col:first-child {
  border-left: none;
}

.gp-cleaning-services-col:last-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.gp-cleaning-services-label {
  display: inline;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: var(--weight-bold);
  font-size: var(--font-size-30);
  padding: 0.2rem 0.6rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.gp-cleaning-services-label-content {
  font-size: var(--font-size-30);
  font-style: var(--style-italic);
  line-height: 1.13;
}

.gp-cleaning-industriel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 0 2rem 0;
  border-bottom: 4px dotted var(--color-navy);
  margin-bottom: 2rem;
}

.gp-cleaning-industriel-col {
  padding: 0 1.5rem;
  position: relative;
}

.gp-cleaning-industriel-col:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-left: 4px dotted var(--color-navy);
}

.gp-cleaning-industriel-col-titre {
  font-weight: var(--weight-bold);
  margin-bottom: 0.5rem;
}

.gp-cleaning-industriel-methodologie-contenu {
  font-size: var(--font-size-30);
  font-style: var(--style-italic);
  line-height: 1.13;
}

.gp-cleaning-industriel-methodologie {
  display: grid;
  grid-template-columns: 1fr 3fr;
}

.gp-cleaning-industriel-col-title {
  display: inline;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: var(--weight-bold);
  padding: 0.2rem 0.6rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.gp-cleaning-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 0 2rem 0;
  margin-bottom: 2rem;
}
/* PAGES - TYPES NETTOYAGES */

/* PAGE - AGENCE */
.gp-agency-banner-title {
  border-bottom: 2px solid var(--color-white);
}

.gp-agency-banner-photo img {
  width: 100%;
  height: 619px;
  border-radius: 10px;
  object-fit: cover;
  opacity: 0.5;
}

.gp-agency-separator img {
  height: 43px;
  width: 100%;
}

.gp-agency-separator {
  padding-top: 109px;
}

.gp-agency-services-title {
  font-size: var(--font-size-55);
  font-weight: var(--weight-bold);
  font-style: var(--style-italic);
  padding-bottom: 103px;
  line-height: 1;
}

.gp-agency-services-label {
  text-transform: uppercase;
  font-size: var(--font-size-16);
  font-weight: var(--weight-medium);
}

.gp-agency-quality-title {
  border-bottom: 2px solid var(--color-blue);
  padding-bottom: 0.75rem;
}

.gp-agency-team-image img {
  height: 522px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
/* PAGE - AGENCE */

/* PAGE - CONTACT */
.gp-contact-bg {
  background-image: url("assets/images/GP-BG-Contact.jpg");
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gp-contact-infos {
  font-weight: var(--weight-medium);
}

.gp-contact-separator {
  border-left: 4px dotted var(--color-white);
  height: 100%;
  width: 0;
  margin: 0 auto;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7-select,
.wpcf7 textarea {
  width: 100%;
}

::placeholder,
textarea,
label,
select,
input {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.4);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
  border: none;
  background-color: transparent;
  border-bottom: 2px solid var(--color-blue);
  padding-bottom: 15px;
  outline: none !important;
}

.qb-home-contact input[type="text"],
.qb-home-contact input[type="email"],
.qb-home-contact input[type="tel"],
.qb-home-contact textarea {
  color: rgba(255, 255, 255, 0.4) !important;
}

textarea {
  height: 130px;
}

.select.gp-contact-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.gp-contact-select option {
  background-color: var(--color-navy);
  font-family: var(--font-size-base);
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.4);
}

.gp-contact-select option:first-child {
  display: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300b2e3' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.wpcf7-form input.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 2px solid var(--color-blue);
  border-radius: 30px;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  padding: 12px 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-form input.wpcf7-submit:hover {
  background-color: var(--color-blue);
  color: var(--color-black);
}
/* PAGE - CONTACT */

/* BLOC - FAQ */
.gp-faq-title {
  border-bottom: 1.5px solid var(--color-white);
  padding-bottom: 1rem;
}

.gp-faq-list {
  padding-top: 60px;
}

.gp-faq-item {
  border-bottom: 1px solid var(--color-blue);
  padding: 2rem 0;
}

.gp-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: var(--weight-bold);
  font-size: var(--font-size-30);
  padding-left: 40px;
}

.gp-faq-icon,
.gp-home-faq-icon {
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  margin-right: 40px;
}

.gp-faq-icon img,
.gp-home-faq-icon img {
  width: 40px;
  height: 40px;
}

.gp-faq-answer {
  display: none;
  padding: 25px 450px 25px 40px;
  line-height: 1.6;
}

.gp-faq-item.active .gp-faq-answer {
  display: block;
}

.gp-faq-item.active .gp-faq-icon {
  transform: rotate(180deg);
}

.gp-faq-item.active .gp-home-faq-icon {
  transform: rotate(180deg);
}

.gp-faq-item.active .gp-faq-icon img {
  filter: brightness(0) invert(1);
}

.gp-faq-item.active .gp-home-faq-icon img {
  filter: brightness(0);
}

@media (hover: hover) {
  .gp-faq-item:hover .gp-faq-answer {
    display: block;
  }

  .gp-faq-item:hover .gp-faq-icon {
    transform: rotate(180deg);
  }

  .gp-faq-item:hover .gp-home-faq-icon {
    transform: rotate(180deg);
  }

  .gp-faq-item:hover .gp-faq-icon img {
    filter: brightness(0) invert(1);
  }

  .gp-faq-item:hover .gp-home-faq-icon img {
    filter: brightness(0);
  }
}

/* BLOC - FAQ */
