@charset "UTF-8";
/**
 * Theme Name: FLEX CLEAN
 * Description: Thème réalisé par l'Agence Webideal. Reproduction & modification /!\ Interdite
 * Author: M'hamed TAHIR
 * Version: 1.0
**/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
  --black: #000000;
  --white: #ffffff;
  --light: #f1f1f1;
  --black-rgb: 0, 0, 0;
  --white-rgb: 255, 255, 255;
  --theme-01: #4fc9b5;
  --theme-02: #40a593;
  --theme-03: #2e6e64;
  --theme-02-rgba-5: rgb(64, 165, 147, 0.5);
  --gradient: linear-gradient(120deg, var(--theme-02), var(--theme-01));
  --gradient-02: linear-gradient(45deg, var(--theme-01), var(--theme-02), var(--theme01));
  --theme-yellow-satisfaction: #F9E107;
}

.text-theme-01 {
  color: var(--theme-01);
}

.text-theme-02 {
  color: var(--theme-02);
}

.text-yellow-satisfaction {
  color: var(--text-yellow-satisfaction);
}

.surlign-theme-02 {
  background: var(--theme-02-rgba-5);
}

.btn-theme-01 {
  background-color: var(--theme-01);
  color: var(--white);
}

.btn-theme-01:hover {
  background-color: var(--theme-02);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--theme-03);
}

.btn-white:hover {
  background-color: var(--white);
  color: var(--theme-03);
}

.btn-md {
  font-size: 1.2em;
  font-weight: bold;
  padding: 0.45em 1em;
}

.btn-lg {
  font-size: 1.2em;
  font-weight: bold;
  padding: 0.75em 1em;
}

.navbar-brand {
  color: var(--white);
  font-size: 2em;
  font-weight: bold;
  text-transform: uppercase;
}

.navbar-brand:hover {
  color: var(--theme-01);
  font-size: 2em;
  font-weight: bold;
  text-transform: uppercase;
}

.home {
  position: relative;
  width: 100%;
  height: 75vh;
  background-image: url("https://flexclean.be/wp-content/uploads/themes/header2.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.home .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.home h1 {
  position: relative;
  font-weight: bolder;
  color: var(--white);
  text-align: center;
  font-size: clamp(1.5em, 5vh, 4em);
  text-shadow: 0 1rem 3rem rgba(var(--white-rgb), 0.175);
}
.home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 110, 100, 0.75);
}

section {
  padding: 4em 1em;
}
section h2 {
  font-size: clamp(2em, 5vw, 3em);
  font-weight: 700;
  color: var(--theme-03);
  margin-bottom: 1em;
}
section p {
  font-size: 1.1em;
}

.services {
  background: var(--gradient);
}
.services h2 {
  color: var(--white);
  text-align: center;
}
.services h3 {
  color: var(--theme-03);
  font-weight: 700;
  margin-bottom: 0.5em;
}
.services p {
  font-size: 1.3em;
}
.services .card {
  border: 0;
}
.services .card img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 342px;
}
.services .card-body {
  padding: 2em 1em;
}
.services .col-lg-6 {
  margin-bottom: 1.2em;
}
.services .bi {
  color: var(--theme-02);
}
.services ul {
  margin-top: 0.75em;
  margin-left: 0 !important;
  padding-left: 0 !important;
  list-style: none;
}
.services li {
  margin-bottom: 0.5em;
}

.why {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.why.visible {
  opacity: 1;
  transform: translateY(0);
}

.why h2 {
  font-size: clamp(2em, 5vw, 3em);
  font-weight: 700;
  color: var(--theme-03);
  margin-bottom: 3em;
  text-align: center;
}
.why h3 {
  position: relative;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 0.5em;
  text-align: center;
  z-index: 1;
}
.why .col-lg-4 {
  margin-bottom: 2em;
}
.why h3::before {
  content: attr(data-content);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%);
  font-size: 5em; /* Ajustez selon la taille souhaitée */
  color: var(--theme-01);
  opacity: 0.75;
  z-index: -1;
}
.why p {
  text-align: center;
}
.why .card {
  border: 0;
}

.satisfactions h2 {
  font-size: clamp(2em, 5vw, 3em);
  font-weight: 700;
  color: var(--theme-03);
  text-align: center;
}
.satisfactions .card {
  height: 245px;
  min-height: 100%;
  border: 0;
  background-color: var(--light);
}

footer {
  padding: 3em 1em;
  height: 100%;
  display: flex;
  align-items: center;
}
footer .nav-link {
  color: var(--black);
  font-weight: 600;
}
footer .nav-link:hover {
  color: var(--theme-02);
  font-weight: 600;
}

.cta {
  background-color: var(--light);
}/*# sourceMappingURL=style.css.map */