/* BEGIN INITIALIZATION */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

:root {
  --main-darkblue-hex : #000071;
  --main-skyblue-hex : #3079ec;
  --main-lightblue-hex : #549efb;
  --main-darkgray-hex : #60636f;
  --main-lightgray-hex : #949494;
  --main-green-hex : #22b573;
  --main-darkblue-rgb : rgb(20, 44, 123);
  --main-skyblue-rgb : rgb(46, 152, 211);
  --main-skyblue-rgb : rgb(90, 191, 212);
  --main-darkgray-rgb : rgb(96, 99, 111);
  --main-lightgray-rgb : rgb(148, 148, 148);
  --main-green-rgb : rgb(4, 108, 52);
}

/* NEW POLICE */
@font-face {
  font-family: "cpt";
  src: local('AvenirNextLTPro-Regular'), local('AvenirNextLTPro-Regular'),
      url('../font/AvenirNextLTPro-Regular.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "cpl";
  src: local('AvenirNextLTPro-Bold'), local('AvenirNextLTPro-Bold'),
      url('../font/AvenirNextLTPro-Bold.otf') format('opentype');
  font-weight: 400;
  font-style: bolder;
}

@font-face {
  font-family: "cpi";
  src: local('Avenir-Next-Italic'), local('Avenir-Next-Italic'),
      url('../font/Avenir-Next-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: bolder;
}
/* END INITIALIZATION */


body {
  font-family: "cpt", sans-serif;
  font-weight: 300;
}

/* BEGIN NAVBAR */


/*.header {
  background-color: var(--main-skyblue-hex);
} */

/* HEADER SLIDESHOWS */
/* General header-home styling */
.header-home {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slideshow container */
.slideshow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  animation: fadeEffect 15s infinite;
  z-index: -1;
}

.slideshow-img1 {
  background-image: url("../img/nothing-without-them-2024-09-13-23-07-55-utc.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.slideshow-img2 {
  background-image: url("../img/img2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-position: center; /* Center the image */
  background-size: cover; /* Scale the image to cover the element */
}

.slideshow-img3 {
  background-image: url("../img/img1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

/* Individual slides */
.main-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  transition: opacity 1s ease-in-out;
}

/* Keyframes for slideshow effect */
@keyframes fadeEffect {
  0%, 33% { transform: translateX(0%); }
  34%, 66% { transform: translateX(-100%); }
  67%, 100% { transform: translateX(-200%); }
}

/* Navbar styling if needed */
.header {
  background-color: var(--main-skyblue-hex);
}
/* END HEADER SLIDESHOWS */

/* BEGIN DOWN ARROW */
/* Arrow styles */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: white;
  text-decoration: none;
  animation: bounce 2s infinite;
  z-index: 1;
  cursor: pointer;
  background-color: var(--main-darkblue-hex);
  padding: 18px 18px 10px 18px;
  border-radius: 50%;
}

.scroll-down:hover {
  background-color: var(--main-lightblue-hex);
}

/* Bounce animation for the arrow */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
/* END DOWN ARROW */

/* BEGIN NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  align-items: center;
  font-family: "cpt", sans-serif;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  position: fixed;
  justify-content: space-between;
  padding: 0 5%;
  top: 0;
  width: 90%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}


.nav-logo > img {
  width: 100px;  
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 5rem;
  position: relative;
  letter-spacing: .3rem;
}

.nav-link {
  text-decoration: none;
  font-size: 1.8rem;
  color: #fff;
  transition: all .3s ease;
}

.nav-link:hover {
  color: var(--main-darkblue-hex);
}

.navbar.scrolled .nav-link {
  color: var(--main-darkblue-hex);
}

.navbar.scrolled .nav-link:hover {
  color: var(--main-green-hex);
}

.navbar.scrolled .nav-link span {
  color: #fff;
}

.navbar.scrolled .menu-btn:hover {
  background-color: var(--main-lightblue-hex);
}

.menu-btn {
  background-color: var(--main-darkblue-hex);
  color: #fff;
  border-radius: 25px;
  padding: 15px;
  transition: all ease .3s;
}

.menu-btn:hover {
  background-color: var(--main-lightblue-hex);
}

.navbar.scrolled .menu-btn {
  background-color: var(--main-darkblue-hex);
  color: #fff;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
}

.dropdown-item {
  margin: 0;
}

.dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #fff;
}

.dropdown-link:hover {
  background-color: #f1f1f1;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: var(--main-green-hex);
  margin: 4px 0;
  transition: 0.3s;
}
/* END NAVBAR */




/* BEGIN SLOGAN */
#slogan {
  height: 150px;
  margin: 0;
  /* background-color: var(--main-darkblue-hex); */
  background: linear-gradient(0deg, #fff, #ebe7e7);
  background-color: var(--main-darkblue-hex);
  color: var(--main-darkblue-hex);
  font-family: "cpt", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* END SLOGAN */


/*video{*/
/*  -webkit-filter: brightness(108.5%); */
/*}*/

/* BEGIN ABOUT US */
#about {
  width:  80%;
  margin: 0 auto 2% auto;
  display: grid;
}

.about-animation {
  /* background-color: red; */
  text-align: center;
  /* width: 100px; */
}

#about-sides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 2%;
  align-items: center;
}

#about-left-side {
  text-align: center;
  background-image: url("../img/img3.jpg");
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

#about-right-side {
  padding: 8%;
}

#about-right-side,
#fondateur {
  font-family: "cpt", sans-serif;
  align-self: center;
}

#about-right-side > h1 {
  color: var(--main-darkblue-hex);
}

#fondateur-mots > h1 {
  color: #fff;
}

#about-right-side > h1,
#fondateur-mots > h1 {
  font-size: 2.5rem;
  padding-bottom: 4%;
}

#about-right-side > p,
#fondateur-mots > p {
  font-size: 1.7rem;
  line-height: 3rem;
  padding-bottom: 3%;
  letter-spacing: 1px;
  font-family: "cpt", sans-serif;
}

#about-right-side > h2,
#fondateur-mots > h2 {
  font-size: 1.5rem;
  padding-bottom: 2%;
  color: var(--main-green-hex);
  letter-spacing: 2px;
}

#about-right-side > h3,
#fondateur-mots > h3 {
  font-size: 1.2rem;
  font-family: "cpt", sans-serif;
  color: var(--main-darkgray-hex);
  letter-spacing: 2px;
}
/* END ABOUT US */



/* BEGIN FONDATEUR */
#fondateur {
  height: 100%;
  padding: 0 10%;
  /* background: linear-gradient(135deg, var(--main-darkblue-hex), var(--main-skyblue-hex)); */
  background: linear-gradient(135deg, var(--main-darkblue-hex), var(--main-skyblue-hex));
  background-position: center;
  background-size: cover;
  margin-bottom: 3%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

#fondateur-mots {
  width: 90%;
  margin: 0 auto;
}

#fondateur-mots > h1,
#fondateur-mots > h2 {
  color: #fff;
}

#fondateur-mots > p,
#fondateur-mots > h3 {
  color: #ffffffd1;
}

#fondateur-pic {
  text-align: right;
}

#fondateur-pic > img {
  /* width: 315px; */
  width: 70%;
  height: auto;
  /*border-radius: 50px;*/
  filter: drop-shadow(0 0 0.75rem var(--main-skyblue-hex));
  /* scale: 1.24; */
  justify-self: right;
}

#fondateur-pic > img:hover {
  cursor: pointer;
}

/* Vibrating animation with reduced intensity and pause */
/* @keyframes vibrate {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(1px, 1px) rotate(0deg); }
  20% { transform: translate(-1px, -1px) rotate(-1deg); }
  30% { transform: translate(-1px, 0) rotate(1deg); }
  40% { transform: translate(1px, 1px) rotate(0deg); }
  50% { transform: translate(-1px, 1px) rotate(-1deg); }
  60% { transform: translate(1px, -1px) rotate(0deg); }
  70% { transform: translate(0px, 1px) rotate(1deg); }
  80% { transform: translate(-1px, 0px) rotate(-1deg); }
  90% { transform: translate(1px, -1px) rotate(0deg); }
} */

/* Image with vibrating animation */
.vibrating-image {
  animation: vibrate 2s infinite; /* 2 seconds includes vibrating and pause */
  display: inline-block;
  transition: transform 0.3s ease-in-out; /* Smooth transition on hover */
}

/* Stop vibration on hover */
.vibrating-image:hover {
  animation: none; /* Stops the vibration */
  transform: none; /* Ensures no jittery end */
}

/* btn chat */
.btn-chat {
  background-color: transparent;
  margin-top: 6%;
  padding: 15px;
  border-radius: 25px;
  color: #fff;
  text-transform: uppercase;
  font-family: "cpt", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  border: none;
  animation: btn-glow 3s infinite;
  scale: 1;
  transition: all .3s ease;
}

.btn-chat:hover {
  scale: 1.05;
  cursor: pointer;
}

.btn-glow {
  box-shadow: 1px 1px 5px var(--main-lightblue-hex), -1px -1px 5px var(--main-lightblue-hex);
}

/* btn-glow */
/* Glowing pulse animation */
@keyframes btn-glow {
  0%, 100% {
    box-shadow: 3px 3px 5px var(--main-lightblue-hex), 
                -3px -3px 5px var(--main-lightblue-hex);
  }
  50% {
    box-shadow: 7px 7px 15px var(--main-lightblue-hex), 
                -7px -7px 15px var(--main-lightblue-hex);
  }
}
/* END FONDATEUR */



/* BEGIN HR */
hr {
  border-bottom: 1px solid rgb(148, 148, 148, .1);
  margin-bottom: 3%;
}
/* END HR */



/* BEGIN SERVICES */
#services {
  width: 90%;
  margin: 3% auto 0 auto;
}

.services-title {
  text-align: center;
}

.services-title > h1 {
  font-family: "cpl", sans-serif;
  font-size: 3.8rem;
  color: var(--main-darkgray-hex);
  padding: 2% 0 1% 0;
}

.services-title > h2 {
  font-family: "cpt", sans-serif;
  font-size: 1.7rem;
  color: var(--main-darkgray-hex);
  padding-bottom: 2%;
  letter-spacing: 2px;
}

.services-title-color1 {
  color: var(--main-darkblue-hex);
  font-family: "cpt", sans-serif;
}

.services-title-color2 {
  color: var(--main-darkblue-hex);
}

.services-title-color3 {
  color: #f1f1f1;
}

.services-title-color4 {
  color: #ccc;
}

#services-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 auto;
  width: 100%; /* Ensure the container spans the full width */
}

.services-items-boxes {
  background-image: url("../img/picto-original.png");
  background-size: contain; /* Ensure the background image is fully visible */
  background-position: center center;
  background-repeat: no-repeat;
  display: flex; /* Enables flexbox layout */
  flex-direction: column; /* Stacks content vertically */
  justify-content: center; /* Centers content vertically */
  align-items: center; /* Centers content horizontally */
  text-align: left; /* Ensures text alignment is centered */
  padding: 60px;
  scale: 1;
  transition: all ease 0.3s;
  font-family: "cpl", sans-serif;
  color: #fff;
  letter-spacing: 1px;
  height: 100%; /* Adjust height if necessary */
}


.services-items-boxes:hover {
  cursor: pointer;
  scale: 1.05;
}

.services-items-boxes > h1 {
  font-size: 1.8rem;
  padding-bottom: 5%;
  color: #fff;
}

.services-items-boxes > h2 {
  font-family: "cpt", sans-serif;
  font-size: 1.5rem;
  color: #e0e0e0;
  line-height: 2.5rem;
  padding-bottom: 7%;
}

.icons-services {
  color: #fff;
  font-size: 7rem;
  padding-bottom: 7%;
}

.services-link {
  color:  var(--main-darkblue-hex);
  color:  #fff;
  font-size: 1.5rem;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  transition: all .3s ease;
}

.services-link:hover {
  color: var(--main-darkblue-hex);
  border-bottom: 1px solid var(--main-darkblue-hex);
}
/* END SERVICES */


/* BEGIN TESTIMONY */
#testimony {
  width: 80%;
  margin: 2% auto 7% auto;
}

.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto 2% auto;
  z-index: -1000;
}

.slider {
  width: 80%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, var(--main-darkblue-hex), var(--main-skyblue-hex));
  padding: 20px;
  scale: 1;
  transition: all ease .3s;
}

.slider:hover {
  cursor: pointer;
  scale: 1.05;
}

.slides {
  display: flex;
  transition: transform .5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  color: white;
  text-align: center;
}

.slide p {
  margin: 10px 0;
  font-family: "cpt", sans-serif;
}

.testimony-description {
  font-size: 2.3rem;
}

.testimony-author {
  font-size: 1.5rem;
}

.stars {
  margin-top: 10px;
}

.stars i {
  color: gold;
  margin: 0 2px;
}
/* END TESTIMONY */


/* BEGIN FAQ */
#faq {
  margin-bottom: 2%;
  /* background-color: var(--main-skyblue-hex); */
  background: linear-gradient(135deg, var(--main-darkblue-hex), var(--main-skyblue-hex));
}

.faq-title {
  padding-top: 2%;
}

.faq-container {
  width: 100%;
  max-width: 600px;
  margin: 2% auto 0 auto;
  padding-bottom: 5%;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 0;
  font-size: 1.5rem;
}

.faq-question {
  cursor: pointer;
  padding: 2.2rem;
  background-color: #f9f9f9;
  transition: background-color 0.3s;
  font-family: "cpt", sans-serif;
  font-size: 2rem;
}

.faq-question:hover,
.faq-item.active .faq-question {
  background-color: var(--main-green-hex);
  color: #fff; /* Optional: Change text color to white for better contrast */
}

.faq-answer {
  display: none;
  padding: 1.8rem;
  background-color: #fff;
  font-size: 1.7rem;
  font-family: "cpi", sans-serif;
  font-style: italic;
  line-height: 1.5;
}

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

.dropdown-arrow {
  float: right;
  font-size: 1.8rem;
  transition: transform 0.3s;
  color: var(--main-darkblue-hex);
}

.faq-item.active .dropdown-arrow {
  transform: rotate(180deg); /* Rotate arrow when FAQ item is active */
}

.link-faq-answer > a {
  text-decoration: none;
  color: var(--main-darkblue-hex);
  border-bottom: 1px solid var(--main-darkblue-hex);
  transition: all .3s ease;
}

.link-faq-answer > a:hover {
  color: var(--main-green-hex);
  border-bottom: 1px solid var(--main-green-hex);
}
/* END FAQ */




/* BEGIN CONTACT FORM */
#contact-form-bloc {
  display: grid;
  width: 70%;
  margin: 0 auto 7% auto;
}

.contact-title {
  padding-top: 3%;
}

form {
  margin-top: 2%;
}

label {
  display: block;
  font-family: "cpt", sans-serif;
  font-size: 1.8rem;
  color: var(--main-darkgray-hex);
  padding-bottom: .2%;
}

input,
textarea {
  width: 100%;
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  border-left: 4px solid var(--main-green-hex);
  border-top: 1px solid var(--main-lightgray-hex);
  border-bottom: 1px solid var(--main-lightgray-hex);
  border-right: 1px solid var(--main-lightgray-hex);
  border-radius: 15px;
  padding: 2%;
  margin-bottom: 3%;
  letter-spacing: 2px;
}

input:focus,
textarea:focus {
  outline: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
  box-shadow: 1px 1px 5px var(--main-green-hex), -1px -1px 5px var(--main-green-hex);
}

.required-stars {
  color: red;
}

.submit-btn {
  font-family: "cpt", sans-serif;
  letter-spacing: 2px;
  border: none;
  font-size: 1.6rem;
}

.submit-btn:hover {
  cursor: pointer;
}
/* END CONTACT FORM */




/* BEGIN */
.footer {
  background: var(--main-darkblue-hex);
  padding: 30px 0px;
  font-family:  "cpl", sans-serif;
  text-align: center;
}
  
.footer .row {
  width: 100%;
  margin: 3% 0%;
  padding: 0.6% 0%;
  color: #fff;
}
  
.footer .row a {
  text-decoration: none;
  color: #fff;
  transition: 0.5s;
  font-size: 1.8rem;
  font-family: "cpt", sans-serif;
}
  
.footer .row a:hover {
  color: var(--main-lightblue-hex);
}
  
.footer .row ul {
  width: 100%;
}
  
.footer .row ul li {
  display: inline-block;
  margin: 0px 30px;
  font-size: 1.5rem;
  border-bottom: 1px solid #fff;
  transition: all ease .5s;
}
  
.footer .row ul li:hover {
  border-bottom: 1px solid var(--main-lightblue-hex);
}
  
.footer .row a i {
  font-size: 3rem;
  margin: 0% 1%;
}

.row small {
  font-size: 1.5rem;
  font-family: "Raleway", sans-serif;
}

.link-copyright {
  color: var(--main-lightblue-hex) !important;
  border-bottom: 1px solid var(--main-lightblue-hex);
}

.link-copyright:hover {
  color: #fff !important;
}
/* END FOOTER */



/* BEGIN ACTIVITIES */
.activities-container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

.categories, .activities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.category, .activity {
  background: #fff;
  margin: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
}

.category:hover, .activity:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

img {
  max-width: 100%;
  height: auto;
}
/* END ACTIVITIES */














/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*---------------- BEGIN RESPONSIVE DESIGN -----------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/

@media (max-width: 1024px) {
  .header-home {
    height: 50vh;
  }

  .nav-logo > img {
    width: 60px;
    height: auto;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 10rem;
    flex-direction: column;
    /* background-color: var(--main-darkblue-hex); */
    background: linear-gradient(135deg, var(--main-darkblue-hex), var(--main-skyblue-hex));
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 2.5rem 0;
  }

  .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
  }

  .dropdown-link:hover {
    background-color: var(--main-darkblue-hex);
    color: #fff;
  }
  
  .dropdown-item.active .dropdown-link {
    background-color: var(--main-darkblue-hex);
    color: #fff;
  }
  
  .hamburger {
    display: flex;
  }

  .nav-link:hover {
    color: var(--main-lightblue-hex);
  }

  .navbar.scrolled .nav-link {
    color: #fff;
  }
  
  .navbar.scrolled .nav-link:hover {
    color: var(--main-lightblue-hex);
  }
  /* END RESPONSIVE MENU */

  #slogan {
    font-size: 4rem;
  }

  #about {
    width: 90%;
  }

  #fondateur {
    padding: 0;
  }

  #fondateur-pic > img {
    width: 400px;
  }

  #services-items {
    grid-template-columns: 4fr;
  }

  .services-items-boxes {
    width: 40%;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    height: 200px;
  }
}







@media (max-width: 768px) {
  /* BEGIN RESPONSIVE MENU */
  .header-home {
    height: 40vh;
  }

  .nav-logo > img {
    width: 60px;
    height: auto;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 10rem;
    flex-direction: column;
    background-color: var(--main-darkblue-hex);
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    z-index: 3;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 2.5rem 0;
  }

  .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
  }

  .dropdown-link:hover {
    background-color: var(--main-darkblue-hex);
    color: #fff;
  }
  
  .dropdown-item.active .dropdown-link {
    background-color: var(--main-darkblue-hex);
    color: #fff;
  }
  
  .hamburger {
    display: flex;
  }

  .nav-link:hover {
    color: var(--main-lightblue-hex);
  }

  .navbar.scrolled .nav-link {
    color: #fff;
  }
  
  .navbar.scrolled .nav-link:hover {
    color: var(--main-lightblue-hex);
  }
  /* END RESPONSIVE MENU */



  /* BEGIN RESPONSIVE SLOGAN */
  /* #slogan {
    height: 10vh;
  }*/

  #slogan {
    height: 70px;
    font-size: 1.5rem;
    text-align: center;
  }
  /* END RESPONSIVE SLOGAN */

  /* BEGIN SCROLL DOWN */
  .scroll-down {
    display: none;
  }
  /* END SCROLL DOWN */

  .services-title > h1 > img {
    width: 300px;
  }

  /* BEGIN RESPONSIVE ABOUT */
  #about-sides {
    display: block;
  }
  
  #about-left-side {
    display: none;
  }

  .services-title {
    margin: 10% 0;
  }

  .services-title > h1 {
    font-size: 3.5rem;
    padding: 0;
  }

  .services-title > h2 {
    font-size: 1.5rem;
    padding: 0;
  }

  #about-right-side > h1 {
    font-size: 1.8rem;
  }

  #about-right-side > p {
    font-size: 1.7rem;
  }

  #fondateur {
    display: block;
    height: 100%;
    padding: 0;
  }

  #fondateur-mots {
    padding: 10% 0 10% 0;
  }

  #fondateur-mots > h1 {
    font-size: 3.5rem;
  }

  #fondateur-mots > p {
    font-size: 1.5rem;
    padding-bottom: 5%;
  }

  #fondateur-mots > a {
    display: none;
  }

  #fondateur-pic {
    padding-bottom: 0;
    text-align: center;
  }

  #fondateur-pic > img {
    height: 350px;
    width: auto;
  }

  #services {
    margin-bottom: 10%;
  }

  #services-items {
    grid-template-columns: 1fr;
  }

  .services-items-boxes {
    width: 60%;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    height: 200px;
  }

  .services-items-boxes > h1 {
    font-size: 1.9rem;
    padding-bottom: 5%;
    color: #fff;
  }
  
  .services-items-boxes > h2 {
    font-family: "cpt", sans-serif;
    font-size: 1.5rem;
    color: #e0e0e0;
    line-height: 2.5rem;
    padding-bottom: 0 8% 7% 8%;
  }
  
  .services-link {
    color:  var(--main-darkblue-hex);
    color:  #fff;
    font-size: 1.3rem;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    transition: all .3s ease;
  }

  /* .services-items-boxes > h1 {
    text-align: center;
  } */

  /* .services-items-boxes {
    background-image: url("../img/picto-original.png");
    background-size: cover;
    background-position: center center;
    padding: 58px;
    scale: 1;
    transition: all ease .3s;
    font-family: "cpl", sans-serif;
    color: #fff;
    letter-spacing: 1px;
  } */
/* testimony */
  .slider {
    width: 100%;
  }

  .testimony-author {
    padding-top: 5%;
  }

  .testimony-author,
  .stars {
    font-size: 1.5rem;
  }

  /* faq */
  .faq-title {
    padding-top: 9%;
  }

  .faq-question {
    font-size: 2rem;
    font-weight: 600;
  }

  .faq-answer {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
  }

  /* contact */
  #contact {
    width: 95%;
    margin: 0 auto;
  }

  #contact-form-bloc {
    width: 95%;
    margin: 0 auto;
  }

  label {
    font-size: 1.8rem;
  }

  input,
  textarea {
    width: 90%;
    padding: 4%;
    font-size: 1.8rem;
    font-weight: 500;
  }

  #contact-form-name,
  #contact-form-email {
    padding-bottom: 5%;
  }

  .ctc-btn2 {
    margin: 3% 0 10% 0;
  }
  /* END RESPONSIVE ABOUT */


  /* BEGIN RESPONSIVE FOOTER */
  .footer{
    text-align:left;
    padding:5%;
  }

  .footer .row ul li{
    display:block;
    margin:30px 0px;
    text-align:left;
  }

  .footer .row a i{
    margin:0% 3%;
  }

  .footer .row > small {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
  /* END RESPONSIVE FOOTER */
}

/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*---------------- END RESPONSIVE DESIGN ------------------ */
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/