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

:root{
    --bg: #0D3754;
    --bg-light:#F9A418;
    --text: white;
    --hover:#F9A418;
    --light:#d58607;
    --black: #1a1a1a;
    
  
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family:'Ubuntu',sans-serif;
}
html{
 scroll-behavior:smooth;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin:auto;
    
}
/* menubar */
.navbar{
    position: fixed;
    width:100%;
    padding:15px 0;
   /* background:var(--hover);*/
    font-family:'Ubuntu',sans-serif;
    transition: all 0.3s ease;
    z-index: 9999;
}
.navbar.sticky{
    padding: 15px 0;
  background:var(--hover);   
}
.navbar .max-width{
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar .logo a{
   color: var(--text);
   font-size: 35px;
   font-weight: 600;
  
}
.navbar .logo a span{
    color: var(--hover);
     transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: rgb(18, 18, 18);
  
}
.navbar .menu li {
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
     display: block;
    color:#fff;
    font-size:18px;
    font-weight: 500;
    margin-left: 25px;
}


.navbar .menu li a:hover{
    color: var(--hover);
  }
  .navbar.sticky .menu li a:hover{
    color: var(--text);
  
}
/*menu styling*/
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
     
    /*opacity: 0;*/
}
.scroll-up-btn{
 position:  fixed;
 height:45px;
 width: 42px;
 background: var(--hover);
right: 30px;
bottom: 10px;
text-align: center;
line-height: 45px;
color: var(--text);
cursor: pointer;
z-index: 999;
font-size: 30px;
border-radius: 6px;
opacity: 0;
pointer-events:none;
transition: all 0.3s ease;
}
.scroll-up-btn.vue{
 opacity: 1;
pointer-events:auto;
bottom: 75px;
}
.no_monile{
    opacity: 1;
    display:block;
  }
  .mobille{
    opacity: 0;
    display: none;
    background-color:rgb(18, 18, 18);
  }
/*home section */


.home {
    display: flex;
    position: relative;
    height: 100vh;
    min-height: 500px;
    color: var(--text);
    font-family: 'Ubuntu', sans-serif;
    overflow: hidden;
}

/* Style pour la vidéo en arrière-plan */
.home video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste la vidéo pour remplir l'écran */
    z-index: -1; /* Envoie la vidéo à l'arrière-plan */
}

/* Ajout d'un effet sombre si nécessaire */
.home::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);/* Filtre sombre */
    z-index: -1;
}

.home{
    display: flex;
   /*background:url(../img/1.jpg) no-repeat center;
    background:url(../img/fond-web6_crop0.jpg) no-repeat center;
    background-size: cover;
    background-color: rgba(0,0,0,0.9);    
    height: 100vh;
    color: var(--text);
    min-height: 500px;
    font-family:'Ubuntu',sans-serif;*/
}
.home .max-width{
    margin: auto 0 auto 40px;
}
.home .home-content .text-1{
    font-size: 27px;
    border:2% solid;
    background-color: rgba(0,0,0,0.2); 
    display: inline; 
}
.home .home-content .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
    border: 1px solid var(var(--bg-light));
    background-color: rgba(0,0,0,0.4);  
    width: auto;
    display: inline;
    
}
.home .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;
}
.home .home-content .text-3 span{
    color:var(--bg-light);
    font-weight: 500;
}
.home .home-content a{
    display: inline-block;
    background: var(--hover);
    color: var(--text);
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    border-radius:6px;
     border: 2px solid var(--hover);   
     transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: var(--text);
    background: none;
   
}
/*tout les style similaires*/
section{
    padding: 100px 0;
}
.about, .services, .skills, .teams, .cahier, .contact, footer{
  font-family: 'Poppins',sans-serif;  
}
.about .about-content,
.services .serv-content,
.skills .skills-content,
.cahier .cahier-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 60px;
    margin-bottom: 60px;
    font-family: 'Ubuntu',sans-serif;
}
.about .title::before{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 320px;
    height: 3px;
    background: var(--black);
    transform: translate(-50%);
}
.about .title::after{
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: var(--bg-light);
    padding: 5px;
    background: var(--text);
    transform: translate(-50%);
}

.services .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 60px;
    margin-bottom: 60px;
    font-family: 'Ubuntu',sans-serif;
}
.services .title::before{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 320px;
    height: 3px;
    background: var(--bg);
    transform: translate(-50%);
}
.services .title::after{
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: var(--hover);
    padding: 5px;
    background: var(--text);
    transform: translate(-50%);
}

.skills .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 60px;
    margin-bottom: 60px;
    font-family: 'Ubuntu',sans-serif;
}
.skills .title::before{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 320px;
    height: 3px;
    background: var(--bg);
    transform: translate(-50%);
}
.skills .title::after{
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: var(--hover);
    padding: 5px;
    background: var(--text);
    transform: translate(-50%);
}

.teams .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 60px;
    margin-bottom: 60px;
    font-family: 'Ubuntu',sans-serif;
}
.teams .title::before{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 320px;
    height: 3px;
    background: var(--bg);
    transform: translate(-50%);
}
.teams .title::after{
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: var(--hover);
    padding: 5px;
    background: var(--text);
    transform: translate(-50%);
}







/*cahier*/
.cahier .title::before{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 320px;
    height: 3px;
    background: var(--bg);
    transform: translate(-50%);
}
.cahier .title::after{
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: var(--bg-light);
    padding: 5px;
    background: var(--text);
    transform: translate(-50%);
}



.cahier .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 60px;
    margin-bottom: 60px;
    font-family: 'Ubuntu',sans-serif;
}





.teams .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 60px;
    margin-bottom: 60px;
    font-family: 'Ubuntu',sans-serif;
}
.contact .title::before{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 320px;
    height: 3px;
    background: var(--bg);
    transform: translate(-50%);
}
.contact .title::after{
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: var(--hover);
    padding: 5px;
    background: var(--text);
    transform: translate(-50%);
}



.contact .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 60px;
    margin-bottom: 60px;
    font-family: 'Ubuntu',sans-serif;
}






/*style about*/


.about .title::after{
  content: 'Qui sommes-nous';
}

.about2 .title::after{
    content: 'Jean Paul Cromwell';
  }

.about .about-content .left{
    width: 45%;
}


.about .about-content .left img{
 height: 400px;
 width: 500px;
 object-fit: cover;
 border-radius: 6px;
}
/*********************
.about .about-content .left video {
    height: 400px;
    width: 500px;
    object-fit: cover;
    border-radius: 6px;
}
/*********************************/

.about .about-content .right{
    width: 55%;
}
.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span{
   color: var(--hover); 
}
.about .about-content .right p{
    text-align: justify;
}
.about .about-content .right .div{
 width: 100%;
 height: 50px; 
 padding: 30px; 
 position: relative;
 transition: all 0.3s ease;
 justify-content: center;
}
.about .about-content .right .div span{
    display: inline-block;
    background: var(--text);
    color: var(--hover);
    font-size: 250%;
    font-weight: 600;
    padding-right:20px;
    margin-top: -10%;
    width: 30%;
    height: 50px;
    text-align: center;
    justify-content: center; 
    
    border-radius:100%;
     
    
}
.about .about-content .right .div span:hover{
    color: var(--bg);
    font-size: 270%;
    background: none;
}
/*espace entre abaout et service*/



/*service section*/
.services, .teams{
 color: var(--text);
 background: var(--black);
}
.services .title::before,
.teams .title::before{
 background: var(--text);
}
.services .title::after,
.teams .title::after{
 background: var(--bg);
 content: "Ce que nous fournissons";
}

.services .serv-content .carousel .card{
 /*;
 
 width: calc(33% - 20px);
margin: 10px;
 transition: all 0.5s ease;
 background:var(--bg);
 border-radius: 6px;
 padding: 20px 25px;
 text-align: center;
 
*/
background: var(--bg);
text-align: center;
border-radius: 6px;
padding: 20px 25px;
margin: 10px;
cursor: pointer;
transition: all 0.3s ease;


}
.services .serv-content .card:hover{
 background:var(--hover);
 
}
.services .serv-content .carousel .card .box{
 transition: all 0.3s ease;
 }
.services .serv-content .card:hover .box{
 transform: scale(1.05);
 }

.services .serv-content .card i{
 font-size: 50px;
 color: var(--hover);
}
 .services .serv-content .card:hover i{
  transition:color 0.5s ease;
 color: var(--text);
 } 
.services .serv-content .card .text{
 font-size: 25px;
 font-weight:500;
 margin: 10px 0 7px 0;
}

/*-------------------------*/



/*skills section*/
.skills .title::after{
 content: "Pourquoi avoir un site web ?";
}
.skills .skills-content .column{
 width: calc(50% - 30px);
}
.skills .skills-content .left .text{
 font-size: 20px;
 font-weight: 600;
 margin-bottom: 10px;
}
.skills .skills-content .left p{
 text-align: justify;
}
.skills .skills-content .left a{
 display: inline-block;
    background: var(--hover);
    color: var(--text);
    font-size: 18px;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius:6px;
     border: 2px solid var(--hover);   
     transition: all 0.3s ease;
}
.skills .skills-content .left a:hover{
color: var(--hover);
background: none;
}

.skills .skills-content .right .bars{
 margin-bottom: 15px;
}
.skills .skills-content .right .infor{
 display: flex;
 margin-bottom: 5px;
 align-items: center;
 justify-content:space-between;
}
.skills .skills-content .right .span{
 font-weight: 500;
font-size: 18px;
}
.skills .skills-content .right .line{
height: 5px;
width: 100%;
background: lightgrey;
position: relative;
}
.skills .skills-content .right .line::before{
 content: '';
 position: absolute;
 height: 100%;
 width: 80%;
 left: 0;
 top: 0;
 background: var(--hover);
}
.skills .skills-content .right .html::before{
 width: 90%;
}
.skills .skills-content .right .css::before{
 width: 60%;
}
.skills .skills-content .right .js::before{
 width: 45%;
}
.skills .skills-content .right .php::before{
 width: 70%;
}
.skills .skills-content .right .mysql::before{
 width: 60%;
}
.skills .skills-content .right .caugib::before{
 width: 100%;
}

/*teams section*/
.teams .title::after{
 content:"qui avec nous";
}

/*teams section*/
.teams .carousel .card{
 background:var(--bg);
 border-radius: 6px;
 padding: 25px 35px;
 text-align: center;
}
.teams .carousel .card:hover{
 background: var(--bg-light);
}
.teams .carousel .card .box{
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 transition: all 0.3s ease;
 
}
.teams .carousel .card:hover .box{
 transform: scale(1.05);
}
.teams .carousel .card .text{
 font-size: 25px;
 font-weight: 500;
 margin:10px 0 7px 0;
 transition: all 0.3s ease;
}

.teams .carousel .card img{
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--hover);
   transition: all 0.3s ease;
}

.teams .carousel .card:hover img{
 border-color: var(--text);
}

.owl-dots{
 text-align: center;
 margin-top: 20px;
 transition: all 0.3s ease;
}
.owl-dot{
 height: 13px;
 width: 13px;
 margin: 0 5px;
 outline: none !important;
 border-radius: 50%;
 border:2px solid var(--hover) !important;
}
.owl-dot.active{
 width: 35px;
 border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
 
 background: var(--hover) !important;
}



/* cahier de charge */

.cahier .title::after{
    content: 'Un site web adapté à votre budget !';
   }
   .cahier .cahier-content .column{
    width: calc(50% - 30px);
   }
   .cahier .cahier-content .text {
   font-size: 25px;
   font-weight: 600;
   margin-bottom: 10px;
   }
   .cahier .cahier-content .left p{
    text-align: justify;
   }
  .cahier .max-width .cahier-content .left .card{
    background:var(--bg);
    border-radius: 6px;
    padding: 10px 10px;
    text-align: center;

    width: 100%;
    height: 50%;
   }
   .cahier .max-width .cahier-content .left .card:hover{
    background:var(--bg-light);
    
   }

   .cahier .max-width .cahier-content .left .card img{
   
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--bg-light);
   transition: all 0.3s ease;
    
   }
   .cahier .max-width .cahier-content .left .card img:hover{
    border-color: var(--text);
      
     }
   .cahier .max-width .cahier-content .left .card .box{
   width: 90%;
    height: 50%;
    
   }
  


   .cahier .cahier-content .left .icons{
   margin: 10px 0;
   }
   .cahier .cahier-content .row{
   display: flex;
   height: 65px;
   align-items: center;
   }
   .cahier .cahier-content .row .info{
   margin-left: 30px;
   }
   .cahier .cahier-content .row i{
   font-size: 25px;
   color: var(--hover);
   }
   .cahier .cahier-content .info .head{
   font-weight: 500;
   }
   .cahier .cahier-content .info .sub-title{
    color:var(--bg);
   }
   .cahier .right form .fields{
    display:  flex;
   }
   .cahier .right form .fields,
   .cahier .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
   }
  
   .c__cahier .c__icons{
    
     padding: 0px;
     margin: 0px;
     width: 100%;
     position: relative;
     display:flex;
   }
   .c__cahier .c__icons .c__text{
    width:25%;
    
    text-align: center;
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
    border-radius: 6px;
    padding: 10px 10px;
    margin: 10px 10px;
    text-align: center;

   }
   .c__cahier .c__icons .c__text:hover{
    background:var(--bg-light);

   }
   .c__cahier .c__icons .c__text .ch{
    display: block;
    text-align: center;
    font-size: 3rem;
    margin: 10px;
    padding: 10px;
    color: var(--bg-light);

   }
   .c__cahier .c__icons .c__text .ch:hover{
   color: var(--text);

   }

   .c__cahier .c__icons .c__text .ch__text{
   font-size: 100%;
   padding: 2px;
   margin: 2px;

   }


  .button .button__ch{
    display: block;
    height: 47px;
    width: 170px;
    
    text-align: center;
    margin-top: 15px;
  }
   
a .button__ch{
    height: 100%;
    width: 100%;
    border: 2px solid var(--bg-light);
    background: var(--bg-light);
    color: var(--text);
    font-size: 20px;
    font-weight: 500;
    margin-top: 5px;
    padding: 5px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
   }
   .button__ch:hover{
    color: var(--hover);
    background: none;
   }









/*contact section*/
.contact .title::after{
 content: 'Entrer en contact';
}
.contact .contact-content .column{
 width: calc(50% - 30px);
}
.contact .contact-content .text {
font-size: 25px;
font-weight: 600;
margin-bottom: 10px;
}
.contact .contact-content .left p{
 text-align: justify;
}
.contact .contact-content .left .icons{
margin: 10px 0;
}
.contact .contact-content .row{
display: flex;
height: 65px;
align-items: center;
}
.contact .contact-content .row .info{
margin-left: 30px;
}
.contact .contact-content .row i{
font-size: 25px;
color: var(--hover);
}
.contact .contact-content .info .head{
font-weight: 500;
}
.contact .contact-content .info .sub-title{
 color:var(--black);
}
.contact .right form .fields{
 display:  flex;
}
.contact .right form .fields,
.contact .right form .fields .field{
 height: 45px;
 width: 100%;
 margin-bottom: 15px;
}
.contact .right form .textarea{
 height: 80px;
 width: 100%;
}
.contact .right form .name{
 margin-right: 10px;
}
.contact .right form .email{
 margin-left: 10px;
}
.contact .right form .sujet{
 margin-bottom:10px;
 font-size: 12px;
}
.contact .right form .field input,
.contact .right form .textarea textarea {
 height: 100%;
 width: 100%;
 border: 1px solid var(--text);
 border-radius: 6px;
 outline: none;
 padding:0 15px;
 font-size: 17px;
 font-family: 'Poppins',sans-serif;
 
}
.contact .right form .textarea textarea {
 padding-top: 10px;
 resize: none;
}
.contact .right form .button{
 height: 47px;
 width: 170px;
}
.contact .right form .button button{
 height: 100%;
 width: 100%;
 border: 2px solid var(--bg-light);
 background: var(--bg-light);
 color: var(--text);
 font-size: 20px;
 font-weight: 500;
 border-radius: 6px;
 cursor: pointer;
 transition: all 0.3s ease;
}
.contact .right form .button button:hover{
 color: var(--hover);
 background: none;
}


/*section*/
footer{
 background: var(--bg);
 padding: 20px 23px;
 color: var(--text);
}
footer span a{
 color: var(--hover);
 text-decoration: none;
}
footer span a:hover{
 text-decoration: underline;
}

/*responsif media*/
@media (max-width:1300px){
    .home .max-width{
        margin-left: 0px;
    }
}

@media (max-width:1104px){
    .about .about-content .left img{
 height: 350px;
 width: 350px;
}

}
@media (max-width:991px){
 .max-width{
        padding: 0 50px;
    }
}
@media (max-width:947px){
    
}
@media (max-width:947px){
  .max-width{
     padding: 0 50px;
   
    }
  .menu-btn{
        display:block;
        opacity: 1;
        z-index: 999;
      }
      .no_monile{
        opacity: 0;
        display:none;
      }
      .mobille{
        opacity: 1;
        display: block;
      }
    .menu-btn i.active:before{
        content: '\ea0f';
    }
  
    .navbar .menu{
       position: fixed;
       height: 100vh;
       width: 100%;
       /*left: 0;*/
       left:-100%;
       top: 0;
       background: var(--bg);
       text-align: center;
       padding-top:80px;
       transition: all 0.3s ease;
    }
    .navbar .menu.active{
        left:0;
    }
    
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    
    .menu-btn{
    
    display: block;    
    
}
    .home .home-content .text-2{
    font-size: 70px;
    
}
.home .home-content .text-3{
    font-size: 35px;
    }
    
    .home .home-content a{
       font-size: 23px;
       padding: 10px 30px;
    }
   
    .max-width{
        max-width: 800px;
    }
   .about .about-content .column{
        width: 100%;
        
    }
   .about .about-content .left{
       display: flex;
       justify-content: center;
       margin: 0 auto 60px;
    }
   .about .about-content .right{
       flex:100%;
    }
    
    .services .serv-content .card{
     width: calc(50% - 10px);
     margin-bottom: 20px;
    }
    .skills .skills-content .column,
    .cahier .cahier-content .column,
    .contact .contact-content .column{
    width: 100%;
    margin-bottom:35px;
    }

    .cahier .max-width .cahier-content .left .card{
       
        padding: 10px 10px;
        margin: 10px;
        
       }

       .cahier .max-width .cahier-content .left .card img{
   
        width: 100%;
          
         }

         .c__cahier .c__icons .c__text{
            width:40%;
            font-size: 0.8rem;
            padding: 5px 5px;
            margin: 5px 5px;
                    
           }
           .c__cahier .c__icons .c__text .ch{
            font-size: 2rem;
            margin: 10px;
            padding: 10px;
            
        
           }


}

@media (max-width:690px){
    .max-width{
        padding: 0 23px;
    }
  .home .home-content .text-2{
    /*font-size: 60px;  */
    font-size: 40px;  
   }
.home .home-content .text-3{
    /*font-size: 32px;  */
    font-size: 22px;  
    }
     .home .home-content a{
       font-size: 20px;  
    }
   .services .serv-content .card,
   .skills .skills-content .left .text{
     width: 100%;
     
     
    }
    
}


@media (max-width:500px){
   .home .home-content .text-2{
    font-size: 50px;   
   }
.home .home-content .text-3{
    font-size: 27px;
    }
}

/*   footer start---------------------------------------------------------*/





footer{
    background-color: var(--bg-light);
    line-height: 15px;
    color:var(--text);
    width: 100%;
    overflow: auto;
    z-index: 2;
}
footer .art{
    background-color: var(--bg);
     width: 100%;
    overflow: auto;
    padding: 16px;
    padding-top: 48px;
    clip-path: polygon(0% 5%,15% 0%,100% 10%,100% 100%,0% 100%);
}
footer .content{
    max-width: 1080px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap:6px;
}
footer header{
    font-size: 150%;
    padding:10px;
}
footer .content a{
    display: block;
    width: 90%;
    padding-block:10px;
    color: var(--text);
    opacity: 0.65;
    font-size: 90%;
    text-decoration: none;
 
}
footer .content a:hover{
    opacity:1;
    font-size: 100%;
    color:var(--hover);
  
 
}
.search select{
  border-style: solid;
    line-height: 16px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 100%;
    width: 100%;
    margin:8px;
    border-radius: 8px;
    border-width: 2px;
    
    background-color:var(--text);
    border-color:var(--text) ;
    color:var(--hover);
}


footer input{
    border-style: solid;
    line-height: 16px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 90%;
    width: 100%;
    margin:8px;
    border-radius: 8px;
    border-width: 2px;
}
footer input[type="email"]{
    background-color:transparent; ;
    border-color: var(--text);
    color:var(--hover);
}
footer input[type="email"]:hover,
footer input[type="email"]:focus{
    background-color: var(--text);
    border-color: var(--hover);
    color:var(--hover);
    width: 100%;
}
footer input[type="submit"]{
    background-color: var(--text);
    text-transform: uppercase;
    border:none;
    color:var(--bg);
    width: 100%;
}
footer input[type="submit"]:hover{
    background-color: var(--hover);
    border-color: var(--text);
    
}
footer .social{
    margin:10px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-gap:10px;
}
footer .social i{
    font-size: 150%;
    padding: 12px;
    text-align: center;
    border: 1px solid var(--light);
    border-radius: 8px;
    width: 100%;
}
footer .social i:hover{
   color: var(--text);
   border-color: var(--hover);
   box-shadow: 0px 0px 16px inset var(--light);
}
footer .notice{
 display:block;  
 position: relative;
 min-width: 700px;
 
}

footer .notice .contents{
    color:#f1f1f1;
    padding:10px;
    margin: 5px;
}


/* footer end-------------------------------------------------------------*/




/*****autres *******/


.teams p .icon-info{
    padding:5px;
    margin: 3px;
    font-size: 110%;
   }
   
.teams p a{
    padding:5px;
    margin: 3px;
    color: var(--text);
    
   }




   .p-separe{
    position: relative;
    display: block;        
    visibility: visible;
    width:auto;
    height: 100vh;
    margin-bottom: 20px;
    margin-right: 30px;
    padding: 5px;    
    border: var(--text) 2px solid;
    background:url(../img/bg__2.jpg) no-repeat center;
    background-size: cover;
    
   }
   .p-separe .home-p{
    position: relative;
    padding: 20px;
    margin-bottom: 30px;
    min-width: 700px;
   max-height: 500px;
   padding: 20px;
    margin: 10px;
    
   }
   .p-separe .home-p .img{
    display: inline;
   width: 100%;
   padding: 30px;
    margin: 15px;
     
   }
.p-separe .home-p .img img{
    max-width: 100%;
    max-height: 100%;
    padding: 30px;
    margin: 15px;
    
}
@media (max-width:530px){
    .p-separe{        
        display: none;        
        visibility: hidden;
         
    }
 
 }


 /*****************section count****** start**************/


 .counter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 15px;
    max-width: 90%;
    margin: auto;
    text-align: center;
}

.compter {
    font-size: 24px;
    font-weight: bold;
    color: cornsilk;
}

.counter {
    font-size: 300%;
    font-weight: bold;
    color: #F9A418;
    transition: transform 0.5s ease-in-out;
}

/* Nouvelle animation inédite */
.counter.animated {
    animation: pulseEffect 1.5s ease-in-out 3, colorFlash 1.5s ease-in-out 3;
}

@keyframes pulseEffect {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

@keyframes colorFlash {
    0% { color: #F9A418; }
    50% { color: #ff4d4d; }
    100% { color: #F9A418; }
}

.trustpilot-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (min-width: 768px) {
    .counter-section {
        flex-direction: row;
        justify-content: space-around;
    }

    .trustpilot-widget {
        width: auto;
    }
}

.container-separr{
  width: 100%;
  height: 0.2%;
  padding: 20px;
}


 /********************END***************************/