/* Styles généraux */

body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--secondary);
  padding-top: 73px;
}

@media (min-width: 992px) {
  body {
    padding-top: 114px;
  }
}

/* Arrière-plan général */

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-clair-sec {
  background-color: var(--bs-secondary-bg) !important;
}

/* Background page */

.wp-dynamique, .wp-statique {
  position: relative;
  background-size: cover !important;
  background-position: center;
  background-color: var(--bs-secondary-bg);
  background-repeat: no-repeat;
}

.form-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #ffffffe6;
  filter: brightness(95%);
}

/* Titres en général */

h2, h3, h4, h5, .h2, .h3, .h4, .h5 {
  line-height: 1.6;
  color: var(--primary);
}

.text-primary {
  color: var(--primary) !important;
}

a {
  color: var(--primary);
}

/* Bloc de contenu */

.rounded-10 {
  border-radius: 10px !important;
}

.rounded-15 {
  border-radius: 15px !important;
}

/* Logo */

.logo-site {
  max-height: 30px;
  margin-right: 10px;
}

/* Nom de l'enseigne */

.navbar-brand {
  align-items: center;
}

/* Menu de navigation */

.nav-link:focus-visible {
  box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 25%);
  background: var(--primary);
}

.navbar-nav .nav-link:hover {
  color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-white);
  background: var(--primary);
}

.container-fluid:first-child {
  border-bottom: 2px solid var(--primary);
}

/* Liens de navigation */

@media (max-width: 1200px) {
  .navbar-light .navbar-nav .nav-link {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 991.98px) {
  h1.display-4.text-uppercase {
    font-size: calc(0.5rem + 2.5vw);
  }
}

@media (max-width: 991.98px) {
  a.nav-item, a.nav-link {
    font-size: 13px;
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
}

@media (max-width: 991.98px) {
  #navbarCollapse.collapse.show {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dotted var(--secondary);
  }
}

/* Appliquer la bordure aux éléments de menu non actifs */

@media (max-width: 991.98px) {
  .navbar-nav .nav-item.nav-link, .navbar-nav .nav-item.dropdown, a.dropdown-item {
    border-bottom: 1px dashed #c9c9c9;
  }
}

/* Annuler la bordure pour les éléments de menu actifs */

@media (max-width: 991.98px) {
  .navbar-nav .nav-item.nav-link.active, .navbar-nav .nav-item.dropdown.active, a.dropdown-item.active, .navbar-nav .nav-item.nav-link:last-child, a.dropdown-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 991.98px) {
  .nav-item.dropdown.show {
    padding-bottom: 10px;
    padding-top: 5px;
  }
}

@media (max-width: 991.98px) {
  a.dropdown-item {
    padding: 10px 20px;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-item.nav-link.active, .navbar-nav .nav-item.dropdown.active, a.dropdown-item.active, .navbar-nav .nav-item.nav-link:last-child, a.dropdown-item:last-child {
    border-bottom: none;
  }
}

/* Dropdown menu et items */

.dropdown-menu, a.dropdown-item {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
}

a.dropdown-item {
  padding: 15px 20px;
}

.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-white);
  text-decoration: none;
  background-color: var(--primary);
}

.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-white);
  text-decoration: none;
  background-color: var(--primary);
}

/* Header Pages Internes */

.page-header {
  height: 260px;
  margin-bottom: 0px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  filter: brightness(50%);
  z-index: 1;
  pointer-events: none;
}

.page-header h1, .page-header h6 {
  z-index: 9;
  color: var(--bs-white);
}

@media (max-width: 991.98px) {
  .page-header {
    height: 230px;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: calc(1.575rem + 1.9vw);
  }
}

/* Textes - Header des pages internes */

@media (min-width: 576px) {
  h1.titre-intro {
    font-size: 1.5rem;
  }
}

h1.titre-intro {
  font-size: 1.3rem;
  margin-top: 25px;
}

@media (min-width: 768px) {
  h1.titre-intro {
    font-size: 2.5rem;
  }
}

@media (min-width: 576px) {
  p.intro-page {
    font-size: initial;
  }
}

/* Boutons */

.btn-primary {
  color: var(--bs-white);
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  color: var(--bs-white);
  background-color: #0e0e0e;
  border-color: #0e0e0e;
}

a.btn.btn-primary.text-uppercase.py-3.px-5 {
  color: var(--bs-white);
}

.bouton-cta {
  height: 40px;
  font-size: 15px;
  border-radius: 24px;
  align-items: center;
  padding: 0.75em 2.375em;
  line-height: 1;
  transition-property: border-color,background-color,color;
  transition-duration: .2s;
  transition-timing-function: ease;
  font-weight: 700;
  border: 0px #0e0e0e;
  text-transform: uppercase;
}

a.lien-cta {
  color: white;
}

/* Retour en Haut */

.back-to-top i.fa.fa-angle-up {
  color: var(--bs-white);
}

/* **** Pied de page **** */

.footer {
  border-top: 3px solid var(--primary);
}

.liens-footer {
  color: rgb(235 235 235) !important;
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 0px !important;
}

.footer.py-5 .row.pt-5 {
  padding-top: 1rem !important;
}

.footer-1.mb-5, .footer-2.mb-5, .footer-3.mb-5, .footer-4.mb-5 {
  margin-bottom: 1rem !important;
}

.horaires {
  line-height: 29px;
}

/* Zone 1 Footer */

img.logo-site-footer {
  margin: 0px 0px 15px;
  min-height: 65px;
  max-height: 85px;
}

.footer-1 .es-carousel-layout-container {
  display: none;
}

.footer-1 .es-main-container {
  max-width: 385px !important;
  margin-left: 1px !important;
}

.footer-1 .fisQVN {
  border-radius: 15px;
  background-color: rgb(228 228 228 / 16%);
}

.footer-1 .jUXzLe {
  background: #cca540 !important;
}

/* Zone 2 Footer */

.footer-opt {
  background: #1d1d1d;
}

.footer-opt p:last-of-type {
  margin-bottom: 0!important;
}

.footer-opt.container-fluid.py-4 {
  padding-bottom: 1.2rem !important;
  padding-top: 1.2rem !important;
}

i.fa.text-white.mr-2::before {
  color: #8d8d8d !important;
}

p.infos-supp.mb-2.text-center {
  font-size: 12px;
}

/* Zone 3 Footer */

/* Footer Partage Réseaux Sociaux */

.cta.qr a {
  font-size: 15px;
}

/* Zone 4 Footer - Newsletter -> Voir Css Newsletter - */

.container.py-5.bg-light {
  background: #ffffff !important;
  border-radius: 15px;
}

.accueil.slide-accueil h1.display-1 {
  color: var(--primary);
}

/* Footer Copyright */

p.infos-supp.mb-2.text-center a {
  color: var(--secondary);
}

/* Zone Footer */

@media (max-width: 1200px) {
  .footer-1, .footer-2, .footer-3, .footer-4 {
    padding: 0px 20px;
  }
}

@media (min-width: 1200px) {
  .footer-1, .footer-2, .footer-3, .footer-4 {
    padding: 0px 20px 0px 40px;
  }
}

@media (max-width: 991.98px) {
  .footer.py-5 .row.pt-5 {
    padding-top: 0rem !important;
  }
}

@media (max-width: 991.98px) {
  .footer-1.mb-5, .footer-2.mb-5, .footer-3.mb-5, .footer-4.mb-5 {
    margin-bottom: 0rem !important;
    padding: 30px 30px 30px 5%;
  }
}

.footer-1, .footer-2, .footer-3 {
  border-bottom: 1px dotted rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
  .footer-1, .footer-3 {
    border-right: 1px dotted rgba(255,255,255,0.5);
  }
}

@media (min-width: 768px) {
  .footer-3 {
    border-bottom: 0px dotted rgba(255,255,255,0.5);
  }
}

@media (min-width: 1200px) {
  .footer-2 {
    border-right: 1px dotted rgba(255,255,255,0.5);
  }
}

@media (min-width: 1200px) {
  .footer-1, .footer-2, .footer-3 {
    border-bottom: 0px dotted rgba(255,255,255,0.5);
  }
}

@media (max-width: 767px) {
  .footer .mb-5 {
    padding: 30px 5% 30px 7% !important;
  }
}

@media (max-width: 767px) {
  .footer-1 {
    border-right: 0px;
  }
}

@media (max-width: 767px) {
  .footer .col-lg-3.col-md-6.mb-5 {
    padding-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .footer .col-lg-3.col-md-6.mb-5.footer-4 {
    padding-bottom: 0;
  }
}

/* **** Médias queries **** */

@media (max-width: 1200px) {
  h1.display-4.text-uppercase {
    font-size: calc(0.5rem + 1.5vw);
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .mw-xl-1140 {
    max-width: 1140px !important;
  }
}

@media (max-width: 1200px) {
  .display-4 {
    font-size: 2.0rem;
  }
}

@media (max-width: 1200px) {
  h1.display-3 {
    font-size: 2.5rem;
  }
}

a:hover {
  text-decoration: none;
}

.text-black a {
  color: black;
}

.text-white a {
  color: white;
}

.cta-la strong {
  font-size: small;
}

/* Contenu Dynamique */

@media (max-width: 767px), (min-width: 768px) {
  .wp-dynamique.container-fluid.py-5 .container.py-5 {
    padding: 2.5% 3% !important;
  }
}

@media (max-width: 767px), (min-width: 768px) {
  .wp-dynamique.container-fluid.py-5 {
    max-width: 100%;
  }
}

@media (max-width: 767px), (min-width: 768px) {
  .wp-dynamique .container.pt-5.pb-3 {
    max-width: 100%;
    padding: 0 !important;
  }
}

/* Contenu Statique */

@media (max-width: 767px) {
  .wp-statique.container-fluid.pt-5 {
    padding-top: 3% !important;
  }
}

/* *****************************
******PAGES WEB STATIQUES******
****************************** */

/* Pages Accueil Statique */

.txt-accueil {
  font-size: 1.1rem;
  font-weight: 300;
}

.titre-txt-accueil {
  line-height: 1.4em;
}

.mh-50.photo-accueil {
}

.photo-accueil {
  /*border: 5px solid white;*/
}

/* Background */

.bg-c01 {
  background: linear-gradient(125deg, var(--primary) 30%, #f1f1f1 30%);
  background-size: 100% 100%;
}

.img-about {
  width: 991px;
}

/* slide-accueil */

/* Slider Accueil Html */

.slide-accueil .d-flex {
  min-height: 76vh;
  background-blend-mode: overlay;
}

.contenu-slide-accueil {
  margin-right: auto;
  margin-left: auto;
  min-width: 80%;
}

.slide-accueil-statique .positionnement {
  line-height: 1.1;
  font-size: 63px;
  font-family: var(--font-family-sans-serif);
}

.badge {
  line-height: 1.6;
  white-space: nowrap;
  vertical-align: baseline;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 15px;
  padding: 0.230769em 1.5rem;
  border: 1px solid #fff;
  border-radius: 2px;
  display: inline-block;
  flex-grow: 0;
}

.slide-accueil-statique .cta {
  height: 46px;
  font-size: 15px;
  border-radius: 5px;
  align-items: center;
  padding: 0.5rem 1.375em;
  line-height: 2.2;
  transition-property: border-color,background-color,color;
  transition-duration: .2s;
  transition-timing-function: ease;
  font-weight: 500;
  border: 0px #0e0e0e;
  text-transform: uppercase;
}

.cta a {
  color: #212529;
  font-size: 15px;
}

@media (max-width: 576px) {
  .slide-accueil-statique .positionnement {
    font-size: 26px;
    line-height: 1.3;
  }
}

@media (max-width: 576px) {
  .slide-accueil .d-flex {
    min-height: 90vh;
  }
}

@media (max-width: 576px) {
  .slide-accueil-statique .lead {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Fin slide-accueil */

/* **** Formulaire **** */

/* Formulaire Pleine page écran réduit */

@media (max-width: 991.98px) {
  .container.form {
    max-width: 100%;
  }
}

/* Page Local Digital */

#local-delocalise #contenu-local-delocalise h3 {
  color: #cca540 !important;
}

/* Page Témoignages statiques */

.testimon1 {
  padding: 35px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 50px;
}

.testimon1 .testicon p {
  margin-bottom: 10px;
  color: #999;
  line-height: 25px;
}

.testimon1 .testimopic {
  display: inline-block;
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
}

.testimon1 .testimopic img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 0 0 1px rgba(49, 49, 49, 0.07);
}

.testimon1 .testimoin {
  text-align: right;
}

.testimon1 .posit {
  font-size: 12px;
  color: #888;
}

.testimon1 .posit a {
  color: #888;
}

/* **** Page Tarifs statiques **** */

#page-tarifs .bloc-produit {
  padding-left: 20px;
  padding-right: 20px;
}

/* Css pour cacher image des produits */

#page-tarifs .ssimg .bloc-txt-produit {
  padding-left: 0px !important;
}

#page-tarifs .img-produit {
  max-width: 90px;
  height: auto;
}

#page-tarifs .ssimg .img-produit {
  display: none;
}

#page-tarifs .titre-produit {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5) !important;
}

#page-tarifs .separat-produit {
  border-bottom: 1px dotted var(--bs-dark-bg-subtle) !important;
}

#page-tarifs .prix-produit {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5) !important;
  font-weight: 400 !important;
}

#page-tarifs .desc-produit {
  font-size: 14px;
  color: var(--secondary);
}

#page-tarifs .ss-titre-desc-prod {
  color: #aaaaac !important;
}

/* Css pour une seule catégorie */

#page-tarifs .cat-unique .tabs-categories {
  display: none !important;
}

/* **** Page Qui sommes nous **** */

/* Bannière Gauche */

#page-about .wp-statique.about .container.pt-5 {
  padding-top: 15px !important;
}

#page-about .txt-about {
  padding-right: 5%;
}

#page-about .bloc-x3 {
  height: 150px;
}

@media (max-width: 1200px) {
  #page-about .wp-statique.about .container {
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  #page-about .wp-statique .container.py-5.bg-light {
    padding-top: 17px !important;
  }
}

@media (max-width: 991.98px) {
  #page-about .txt-about {
    padding-right: 6%;
    padding-left: 6%;
  }
}

/* **** Page Galerie Photos Statique **** */

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #545454;
  border-color: #545454;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  color: var(--bs-btn-active-color);
  background-color: #545454;
  border-color: #545454;
}

.btn-outline-dark {
  color: #545454;
  border-color: #545454;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #545454;
  border-color: #545454;
}

.titre-police {
  font-family: var(--font-family-sans-serif) !important;
  font-size: 12px;
  font-weight: 500;
}

@media (min-width: 300px) {
  .wp-statique.galerie {
    min-height: 500px;
  }
}

@media (min-width: 576px) {
  .wp-statique.galerie {
    min-height: 690px;
  }
}

@media (min-width: 768px) {
  .wp-statique.galerie {
    min-height: 905px;
  }
}

@media (min-width: 992px) {
  .wp-statique.galerie {
    min-height: 630px;
  }
}

@media (min-width: 1200px) {
  .wp-statique.galerie {
    min-height: 730px;
  }
}

@media (min-width: 1400px) {
  .wp-statique.galerie {
    min-height: 747px;
  }
}

/* **** Page Services **** */

.service-item {
  height: auto;
  background: #F4F5F8;
  transition: .5s;
  min-height: 275px;
}

.service-item-photo {
  min-height: auto;
  background-color: rgba(255,255,255,0);
}

.service-item-photo:hover {
  background-color: rgba(255,255,255,0);
}

/* **** Page Contact **** */

/* Icones Pages Contact */

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

/* Pages One */

.fas.star-avis {
  color: #edcd46;
}

button.cta.qr {
  width: 212px;
}

.testimopic img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(49, 49, 49, 0.07);
}

/* **** LIGHTBOX **** */

.lb-cancel {
  background: url(../img/lightbox/loading.gif) no-repeat;
}

.lb-nav a.lb-prev {
  background: url(../img/lightbox/prev.png) left 48% no-repeat;
}

.lb-nav a.lb-next {
  background: url(../img/lightbox/next.png) right 48% no-repeat;
}

.lb-data .lb-close {
  background: url(../img/lightbox/close.png) top right no-repeat;
}

/* **** FONT AWESOME GENERIC BEAT **** */

.fa-beat {
  animation: fa-beat 5s ease infinite;
}

@keyframes fa-beat {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.25);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.25);
  }
  50% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.25);
  }
  70% {
    transform: scale(1);
  }
}

/* *** EXTENSIONS BOOTSTRAP *** */

/* Classes de typographie personnalisées */

.display-1 {
  font-size: 3rem;
}

.display-2 {
  font-size: 2.75rem;
}

.display-3 {
  font-size: 2.5rem;
}

.display-4 {
  font-size: 2.5rem;
}

@media (min-width: 1400px) {
  .p-xxl-5 {
    padding: 3rem!important;
  }
}

/* Classes de colonnes personnalisées */

@media (min-width:1400px) {
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (min-width:1400px) {
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

@media (min-width:1400px) {
  .px-xxl-2 {
    padding-right: .5rem!important;
    padding-left: .5rem!important;
  }
}

@media (min-width: 1200px) {
  .pl-xxl-5, .px-xxl-5 {
    padding-left: 2.2rem !important;
  }
}

@media (min-width:1400px) {
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

.fab.fa-google.jaune {
  color: #ffc117;
}

