@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: #000000;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.layout_margin-top {
  margin-top: 90px;
}

.layout_margin-bottom {
  margin-bottom: 90px;
}


.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  font-size: 2.6em;
  position: relative;
  margin-bottom: 0;
  text-transform: uppercase;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}

.sub_page .hero_area {
  min-height: auto;
  background-color: #178066;
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  padding-top:  20px;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.logo-img {
  width: 15%;
  max-width: 150px;
  display: inline-block;
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s; /* Ajoute une transition au changement de propriété "transform" */
}

.logo-img img {
  width: 75%;
  height: auto;
}

.logo-img:hover {
  transform: scale(1.05); /* Applique un léger zoom au survol */
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #1ea3e0;
  font-weight: 600;
  font-size: 1.1em;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #1ea3e0;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #1ea3e0;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover {
  color: #FFF; 
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #FFF;
}

.phone-box {
  background-color: white;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-left: 20px;
  transition: transform 0.3s; /* Ajoute une transition pour l'effet de zoom */
}

.phone-box-content {
  color: #1ea3e0; /* Couleur de texte pour le numéro de téléphone */
  font-size: 1em; /* Taille de police pour le numéro de téléphone */
  text-align: center;
}

.phone-number {
  margin: 0;
  padding: 5px 0;
}

.phone-box a{
  color: #1ea3e0;
}

.phone-box a:hover {
  cursor: pointer;
  
}

.infos {
  text-align: center;
  color: #FFF;
}

.infos h4 {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 0px;
}

/* Slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 15px 0 145px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #2392c5;
}

.slider_section .detail-box h1 {
  font-size: 2.7rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
  margin-bottom: 0px;

}

.slider_section .detail-box p {
  color: #fefefe;
  font-size: 14px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 15px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #ffffff;
  color: #1ea3e0;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #ffffff;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: transparent;
  color: #ffffff;
}

.slider_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider_section .img-box img {
  width: 100%;
  max-width: 375px;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
}


/*About section*/
.about_section {
  background-image: linear-gradient(to bottom, #ffffff, #feffff); /* Dégradé de couleur */
  padding-bottom: 100px;
}

.about_section h2 {
  margin-top: 150px;
  font-size: 3em;
  font-weight: 600;
  background-image: linear-gradient(to right, #1ea3e0, #57caff); /* Dégradé de couleur */
  -webkit-background-clip: text; /* Appliquer le dégradé au texte */
  background-clip: text;
  color: transparent; /* Rendre le texte transparent */
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  margin-top: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about_section .img-box img {
  width: 300px; /* Remplacez par la largeur souhaitée */
  height: 300px; /* Assurez-vous que la hauteur correspond à la largeur */
  object-fit: cover; /* Pour gérer le remplissage de l'image */
  border-radius: 50%; /* Pour créer un cercle en utilisant un rayon de 50% */
}

.about_section .detail-box p {
  margin-top: 15px;
  font-size: 1.2em;
}

@keyframes typing {
  from {
    width: 0; /* Commence avec une largeur nulle */
  }
  to {
    width: 100%; /* Augmente la largeur pour afficher tout le texte */
  }
}

.typing-text {
  overflow: hidden; /* Masque le texte qui dépasse */
  white-space: nowrap; /* Empêche le texte de passer à la ligne */
  border-right: 2px solid #34bfff; /* Ajoute un curseur de texte */
  animation: typing 3.5s steps(40) infinite; /* Animation de "typing" */
}


/*Techniques section*/
.techniques_section {
  background-size: 100%; /* Ajustez le dimensionnement de l'image */
  background-repeat: no-repeat;
  background-image: linear-gradient(to bottom, #ffffff, #1ea3e0); /* Dégradé de couleur */
}

.techniques_section .heading_container {
  color: #ffffff;
}

.techniques_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  margin-top: 45px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease-in-out; /* Transition fluide pour le zoom */
  box-shadow: 0px 3px 6px rgba(68, 68, 68, 0.1); /* Ajoute une légère ombre portée */

}

.techniques_section .box .img-box {
  width: 100%;
}

.techniques_section .box .img-box img {
  width: 100%;
}

.techniques_section .box .detail-box {
  width: 100%;
  padding: 25px 15px;
  text-align: justify;
  position: relative;
}

.techniques_section .box .detail-box h5 {
text-align: left;
font-weight: bold;
}

.techniques_section .box .detail-box .social_box {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 150%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
}

.techniques_section .box:hover {
  transform: scale(1.05); /* Vous pouvez ajuster la valeur pour contrôler l'intensité du zoom */
}


/*Avantages section*/
.avantages_section {
  position: relative;
}

.avantages_section h2 {
  font-size: 3em;
  font-weight: 600;
  background-image: linear-gradient(to right, #1ea3e0, #57caff); /* Dégradé de couleur */
  -webkit-background-clip: text; /* Appliquer le dégradé au texte */
  background-clip: text;
  color: transparent; /* Rendre le texte transparent */
  padding-bottom: 30px;
}

.avantages_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
  background-color: #ffffff;
  border-radius: 5px;
  text-align: center;
}

.avantages_section .box .img-box {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
  background-color: #1ea3e0;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.avantages_section .box .img-box img {
  max-width: 55px;
  max-height: 55px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.avantages_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
}

/*Tarifs section*/
.tarif_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tarif_section h2 {
 font-size: 3em;
 font-weight: 600;
 background-image: linear-gradient(to right, #1ea3e0, #57caff); /* Dégradé de couleur */
 -webkit-background-clip: text; /* Appliquer le dégradé au texte */
  background-clip: text;
  color: transparent; /* Rendre le texte transparent */
}

.detail-box a {
  color: #1ea3e0;
}

.detail-box a:hover {
  color: #1ea3e0;
}

.tarif_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 45px;
  border-radius: 15px;
}

.tarif_section .detail-box {
  height: 200px;
  width: 1000px;
}

.tarif_section .box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tarif_section .box .detail-box .name img {
  width: 25px;
  margin-bottom: 5px;
}

.tarif_section .box .detail-box .name h4 {
  color: #1ea3e0;
  font-size: 1.8em;
  margin-bottom: 15px;
}


.tarif_section .carousel_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tarif_section .carousel-control-prev,
.tarif_section .carousel-control-next {
  position: unset;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-color: #1ea3e0;
  border-radius: 5px;
  margin: 0 2.5px;
  
}

.tarif_section .carousel-control-prev:hover,
.tarif_section .carousel-control-next:hover {
  transform: scale(1.1); /* Ajoutez cette ligne pour le zoom au survol */
  transition: transform 0.3s ease-in-out; /* Ajoutez une transition fluide */
}

.tarif_section .carousel-control-next {
  left: initial;
}

/*Devis Section*/
.devis_section {
  text-align: center; /* Pour centrer le contenu horizontalement */
  margin-bottom: 0px; /* Ajuster les espacements selon vos besoins */
  padding-bottom: 0;
}

.btn-devis {
  display: inline-block;
  padding: 20px 20px;
  background-color: #1ea3e0;
  border: solid 1px #1ea3e0;
  color: #ffffff; /* Couleur du texte blanc */
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 5px;
}

#btn-devis-Tarifs {
  color: #FFF;
}

#btn-devis-Tarifs:active {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#btn-devis-Tarifs:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#btn-devis-Tarifs:hover {
  color: #1ea3e0;
  transition: 0.4s ease-in-out;
}

.btn-devis:hover {
  background-color: #FFF;
  color: #1ea3e0;
  transition: 0.4s ease-in-out;
}

/*Footer*/
.footer_section {
  background-image: url('../images/rdf_footer.jpg'); /* Chemin vers votre image */
  color: #ffffff;
  padding: 0px 0 15px 0;
  position: relative;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  
}

.footer_section h4 {
  padding-top: 220px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer_section .footer_col {
  margin-bottom: 30px;
}

.footer_section .footer_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.footer_section .footer_contact .contact_link_box a i {
  margin-right: 5px;
}

.footer_section .footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  margin-bottom: 10px;
}

.footer_section .footer_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.footer_section .footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer_section .footer_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer_section .footer_links a:hover {
  font-weight: bold;
}

.footer_section .footer-info {
  text-align: center;
}

.footer_section .footer-info p {
  color: #ffffff;
  padding: 25px 0;
  margin: 0;
}

.footer_section .footer-info p a {
  color: inherit;
}


