
      /* Supprimer les marges et paddings par défaut */
      * {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Inclure padding et bordures dans les dimensions */
}

html, body {
    
    width: 100%; /* Assurer une largeur pleine pour le document */
    overflow-x: hidden; /* Empêcher les débordements horizontaux */
}


       @font-face {
            font-family: ArbFONTS;
            src: url(Fonts/ArbFONTS-Janna-LT-Regular.ttf);
        }
        @font-face {
            font-family: PoppinsBold;
            src: url(Fonts/Poppins-Bold.ttf);
        }
        @font-face {
            font-family: georgiab;
            src: url(Fonts/georgiab.ttf);
        }
        @font-face {
            font-family: Poppins;
            src: url(Fonts/Poppins-SemiBold.ttf);
        }
        @font-face {
            font-family: SpaceMono;
            src: url(Fonts/SpaceMono-Bold.ttf);
        }
        h1,h2{
          font-family: georgiab;
        }
        p{
          font-family: Poppins;
        }
        /* span{
          font-family: SpaceMono;
        } */
        /* a{
          font-family: Poppins;
        } */
       

               /* Navbar styling */
               .navbar {
            position: fixed;
            width: 100%;
            top: 0;
            transition: 1s;
        }

        .navbar-brand {
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    display: flex;
    margin-top: 5%;
    align-items: center; /* Aligne le logo avec les éléments du menu */
}


        .icon-bar {
            background-color: #000;
        }

        .nav {
            font-family: Poppins;
            color: #fff;
            padding: 10px 20px;
            font-family: popins;
        }

        .nav a {
            display: block; /* Important pour prendre tout l'espace du parent */

            padding: 10px;
            cursor: pointer;
            font-size: 16px;
            font-family: ArbFONTS;
            text-decoration: none;
            color: inherit;
            position: relative; 
        }

        .nav a:after {
            content: '';
            display: block;
            border-bottom: 2px solid #727070;
            transform: scaleX(0);
            transition: .2s ease-in-out;
        }

        .nav a:hover:after {
            transform: scaleX(1);
        }
        .nav a:hover {
    background: none; /* Empêche l'ajout d'un background au hover */
    color: inherit;
}
a:hover{
  background: none;
}
.nav li,
.nav a {
    background: none !important; /* Supprime tout background */
    box-shadow: none !important; /* Supprime tout ombrage */
    border: none !important; /* Supprime toute bordure qui pourrait ressembler à un background */
}
@media screen and (max-width: 425){
          .navbar-brand {
            color: #fff;
            
            font-size: 10px;
            width: 10px;
            height: 10px;
            /* margin-bottom:20% ; */
            /* font-family: Germania; */
            cursor: pointer;
            margin-bottom: 5%;
        }
        }
        /* Parallax section */
        .paralax {
            min-height: 100vh;
            background: url('your-image.jpg') center center/cover;
            position: relative;
            color: white;
            text-align: center;
            padding: 50px 0;
        }

        .paralax p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        /* Video background */
        .hero-section {
            position: relative;
            height: 70vh;
            width: 100%;
            overflow: hidden;
        }

        /* .background-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            object-fit: cover;
            z-index: -1;
        } */
         /* Styles de base */
         .background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background-image: url("image/aquarelsite.jpg");
    background-repeat: no-repeat;
    background-size: cover; */
    background-color:#6c1320;
    display: flex; /* Permet d'utiliser Flexbox */
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    z-index: -1;
    opacity: 0.8; /* Ajustez cette valeur entre 0 et 1 pour l'opacité */

}

.titr {
    color: white; /* Couleur du texte */
    font-size: 10em; /* Taille du texte */
    text-align: center;
    font-family: Sinera;
     /* Aligne le texte au centre */
     padding-bottom: 10%;
     
}
@media (max-width:767px) {
  .titr{
    font-size: 5em;
  }
}
/* Masquer la vidéo mobile par défaut */
.mobile-video {
    display: none;
}

/* Afficher la vidéo desktop uniquement pour les écrans larges */
@media (min-width: 768px) {
    .mobile-video {
        display: none;
    }

    .desktop-video {
        display: block;
    }
}

/* Afficher la vidéo mobile uniquement pour les écrans étroits */
@media (max-width: 767px) {
    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }
}


        .hero-content {
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
            top: 50%;
            transform: translateY(-50%);
        }
        .apres {
            background-color:#fff;
            position: relative;
            z-index: 2;
            margin-top: 100px;
        }
       
        /* About us */
 

/* ((((((((((((((((((((((((((((((((((((((((((((((((())))))))))))))))))))))))))))))))))))))))))))))))) */

.about-section {
    color: #fff; /* Couleur du texte */
    background-color: #6c1320; /* Couleur de fond */
    padding: 100px 20px; /* Espaces intérieur haut/bas et gauche/droite */
    text-align: center; /* Centrer le texte */
    width: 100vw; /* Assure que la section occupe toute la largeur */
    margin: 0; /* Supprime les marges */
    box-sizing: border-box; /* Inclure les paddings dans la largeur */
}
.about-section h1 {
    font-size: 2.5rem; /* Taille adaptée pour grands écrans */
    margin-bottom: 20px; /* Espacement sous le titre */
}

.about-section p {
    font-size: 1.2rem; /* Taille du texte */
    line-height: 1.6; /* Hauteur de ligne pour améliorer la lisibilité */
    max-width: 800px; /* Limite la largeur pour ne pas trop étirer le texte */
    margin: 0 auto; /* Centrer le paragraphe */
}
@media (max-width: 768px) {
    .about-section {
        padding: 50px 10px; /* Réduire le padding pour petits écrans */
    }

    .about-section h1 {
        font-size: 2rem; /* Réduire la taille du titre */
    }

    .about-section p {
        font-size: 1rem; /* Réduire la taille du texte */
    }
}

@media (min-width: 1200px) {
    .about-section h1 {
        font-size: 3.5rem; /* Augmenter la taille du titre sur grands écrans */
    }

    .about-section p {
        font-size: 1.5rem; /* Augmenter la taille des paragraphes */
        line-height: 1.8; /* Hauteur de ligne légèrement plus grande */
    }
}

.wrapper {
  
    /* max-width: 1200px; */
    margin: 0;
    
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    width: 100%;
   
}

.text-content {
    flex: 1;
    max-width: 600px;
    padding: 20px;
}

.text-content h2 {
    font-size: 2rem; /* Taille augmentée */
    margin-bottom: 20px;
    font-family: georgiab;

}

.text-content p {
    font-size: 1.2rem; /* Taille augmentée */
    line-height: 1.8;
    color: #fff; /* Texte blanc pour rester cohérent avec le fond sombre */
}

.image-content img {
    width: 100%;
    max-width: 400px; /* Taille de l'image légèrement augmentée */
    height: auto;
    border-radius: 15px;
}


@media (max-width: 768px) {
    .about-section h1 {
        font-size: 2rem; /* Taille ajustée pour les petits écrans */
    }

    .about-section p {
        font-size: 1rem; /* Taille ajustée pour les petits écrans */
    }

    .text-content h2 {
        font-size: 1.5rem; /* Taille ajustée */
    }

    .text-content p {
        font-size: 1rem;
    }

    .image-content img {
        max-width: 100%;
        margin-right: 10%;
    }
}
.centered-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem; /* Taille du texte pour les mobiles */
  padding: 1rem;
  margin: 0;
  margin-top: 5%;
  font-family: georgiab;
}

@media (min-width: 768px) {
  .centered-title {
    font-size: 3rem; /* Taille du texte pour les tablettes */
    font-family: georgiab;

  }
}

@media (min-width: 1024px) {
  .centered-title {
    font-size: 4rem; /* Taille du texte pour les écrans larges */
    font-family: georgiab;

  }
}
@media screen and (max-width: 524px){
  .navbar-header{
    padding-bottom:3% ;
  }
}
@media screen and (max-width: 1024px){
  .titl{
    font-size: 0.2em;
}
}
@media screen and (max-width: 1024px){
  .nosprj{
    width: 50%;
}
}
.hide{
  display: none;
}
/* @media screen and (max-width: 524px){
  .gras{
    font-size: 0;
    }
} */
.gras{
  font-family: PoppinsBold;
}
h1,h2{
  color: #727070;
}
/* foooooooooooooooooooooooooooooter */
/* Global Styles */
/* Global Styles */
/* Global Styles */


/* a {
    color: #fff;
    text-decoration: none;
} */

.pg-footer {
    font-family: 'ArbFONTS';
}

.footer {
    background-color: #6c1320;
    color: #fff;
}

/* Footer Wave */
.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    width: 100%;
}

.footer-wave-path {
    fill: #fff;
}

/* Footer Content */
.footer-content {
    margin: 0 auto;
    max-width: 1230px;
    padding: 40px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-content-column {
    flex: 1;
    min-width: 200px;
    color: #fff;
    text-align: center; /* Centrer tout dans la colonne */
}

.footer-menu-name {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 auto; /* Centrer horizontalement */
    display: inline-block; /* Important pour centrer la liste */
}

.footer-menu-list li {
    margin-bottom: 10px;
}

.footer-menu-list li a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center; /* Centrer le contenu du lien */
}

.footer-call-to-action-button {
    background-color: #6c1320;
    border: 2px solid #fffff2;
    border-radius: 21px;
    color: #fffff2;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 900;
    transition: background-color 0.2s, color 0.2s;
}

.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #6c1320;
}

/* Copyright Section */
.footer-copyright {
    background-color: #6c1320;
    text-align: center;
    padding: 15px 0;
}

.footer-copyright-text {
    font-size: 13px;
    line-height: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-content-column {
        width: 100%;
    }

    .footer-menu-list {
        margin: 0 auto; /* Centrer les listes */
        display: inline-block; /* Important pour uniformiser avec les titres */
    }

    .footer-menu-list li {
        margin-bottom: 8px;
    }

    .footer-call-to-action-button {
        width: 100%;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .footer-menu-name {
        font-size: 14px;
    }

    .footer-menu-list li {
        font-size: 14px;
    }

    .footer-call-to-action-button {
        font-size: 14px;
        padding: 8px 0;
    }

    .footer-copyright-text {
        font-size: 12px;
    }
}
@media (max-width: 524px){
  .mob{
    display: block;
  }
}
/* Media Query pour les grands mobiles et tablettes */
@media (max-width: 768px) {
    .carte {
        width: 150%; /* Rendre la carte plus grande */
        margin-left: -25%; /* Décaler la carte à gauche pour qu'elle soit centrée */
    }
}

/* Media Query pour les mobiles moyens */
@media (max-width: 576px) {
    .carte {
        width: 200%; /* Rendre la carte encore plus grande */
        margin-left: -50%; /* Décaler la carte pour la centrer */
    }
}

/* Media Query pour les très petits mobiles */
@media (max-width: 524px) {
    .carte {
        width: 200%; /* Agrandir encore davantage sur les très petits écrans */
        margin-left: -50%; /* Garder la carte centrée */
    }
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}
body{
    position: relative;
}
.whatsapp-sticker {
  bottom: 50px;
  right: 100px;
  position: fixed;
  width: 100px;
  z-index: 1000;
  transition: all 700ms;
}

.whatsapp-sticker:hover {
  transform: scale(1.3);
}

.whatsapp-sticker .stick-elem {
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 3px 3px #00000080);
}

.whatsapp-sticker .stick-elem img {
  width: 100%;
}

@media (max-width: 580px) {
  .whatsapp-sticker {
    bottom: 10px;
    right: 6px;
  }
}
@font-face {
            font-family: Sinera;
            src: url(Fonts/Sinera.otf);
        }

    /*  -----------------------------------------------------------------------------------------------------------------------------*/
    .marquee {
	overflow-x: clip;
	white-space: nowrap;
	position: relative;
	width: 100%;
}

.marquee-inner {
	display: flex;
	align-items: center;
	gap: 2vw;
	padding: 12vh 0;
	will-change: transform;
}

.marquee-inner img {
	height: 100%;
	transition: transform 0.5s;
	flex-shrink: 0;
	width: 20vw;
	border-radius: 2rem;
}
/* @media (max-width:767px) {
    .marquee-inner img {
	height: 100%;
	transition: transform 0.5s;
	flex-shrink: 0;
	width: 20vw;
	border-radius: 2rem;
}
} */

.marquee-inner img:hover {
	transform: scale(1.03);
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: relative; /* Permet de positionner les éléments de manière absolue */
}

.background-div {
    border-radius: 2%;
    background-color: #6c1320;
    height: 90%;
    margin-left: 15%;
    width: 40%; /* Définit la largeur du div sur le côté gauche */
    position: absolute; /* Positionne le div derrière la vidéo */
    left: 0; /* Aligne le div à/. gauche */
    z-index: -1;
     /* Place le div derrière la vidéo */
}
@media (max-width:767px) {
    .background-div{
        display: none;
    }
}

.vid {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
@font-face {
            font-family: RusticRoadway;
            src: url(Fonts/RusticRoadway.otf);
        }
        .social {
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement (si nécessaire) */
    text-decoration: none;
    gap: 10px; /* Espacement entre les icônes */
}

.social a {
    font-size: 2em;
}

@media (max-width: 768px) { /* Pour les écrans de 768px ou moins */
    .social {
        justify-content: center;
        margin: 0 auto; /* Centrer avec des marges automatiques */
    }
}
   