/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&family=Poppins:wght@100&display=swap');

/*reset*/
* {
box-sizing: border-box;
outline:none;
margin: 0;
padding:0;
scroll-behavior: auto;

}

ul{
    list-style:none;
}
/* variables*/
:root{
    --font-size: 1rem;
}
.dark-mode{
    --navbar-color: #bab8b8;
    --navbar-bg-color: black;

}
/*basic style*/
body{

    font-size: var(--font-size);
    font-family: 'Nunito', sans-serif;
}

.main-content{
    padding: 1rem;
}

/*navbar*/
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px;
    background:var(--navbar-bg-color);
    color: var(--navbar-color);
    height: 65px;
    
    
  
}
.navbar-nav{
display: flex;


}
.nav-item{
    padding: 0 10px;
}
.nav-link{
    color: var(--navbar-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.nav-item > .nav-link::after{
    display:block;
    content:"";
    width:0;
    height: 1px;
    background: var(--navbar-color);
    transition: width .4s;
}
.nav-item:hover > .nav-link::after{
    width: 100%;
}
.burger{
    display: none;
}

.img1{
    width: 10%;
 
}

/*cuerpo parte 1*/

.block1{
    
    display: flex;
    width: 100%;
    height: 700px;
}

.img2{
    width: 100%;
    height: 750px;
    filter: grayscale(80%);
    opacity: 0.8;
    position: absolute; 
    object-fit: cover;
    
}

.text1{
   position: absolute;
    display: block;
    font-size: 50px;
    color: rgb(253, 255, 255);
    margin: 230px 0 0 205px;
    font-weight: 900;
   /* text-shadow: rgb(110, 53, 15) 1px 0 10px;*/
    z-index: 2;
   
   
}
.text2{
    position: absolute;
    
    display: block;
    margin:  300px 0 0 200px;
    font-size: 70px;
    font-weight: bold;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
   /* text-shadow: rgb(28, 16, 1) 3px 0 10px;*/
    color: rgb(8, 109, 123);
    /*color:rgb(227, 99, 14) ;*/
    z-index: 2;
}
.click-botton{
    position: absolute;
    display: block;
    text-decoration: none;
    margin: 600px 0 0 205px;
    border-radius: 150px;
    background:  rgb(118, 212, 244);
    padding: 10px;
    width: 250px;
    height: 50px;
    border: 0;
    opacity: 0.9;
    color: white;
    font-size: 22px;
   
    text-align: center;
    cursor: pointer;
    transition: color 0.4s linear;
    
}

.click-botton::before{
    content: "";
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
   /* background: #391703; */
   background: #063844; 
    border-radius: 150px;
    z-index: -1;
    transition: transform 0.4s;
    transform-origin: 1 0 ;
    transition-timing-function: cubic-bezier(0.5,0.5,0.4,0.7);
}
.over::before{
    transform: scaleX(0);
    
}
.over:hover::before{
    transform: scaleX(1);
    border-radius: 150px;
}

/*cuerpo parte 2*/
.container2{

 margin: 150px auto;
 height: 100%;
 width: 100%;
 display: flex;
 padding: 10px;
 
   
}

.block3{
    margin: 15px 0 0 20px;
    width: 100%;

}
.block3 h1{
    border-radius: 50%;
    background:  rgb(212, 244, 244);
    padding: 15px;
    width: 150px;
    height: 150px;
   /* box-shadow:60px 0  rgb(190, 217, 217) ;*/
 

}
h1{
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    /*text-shadow: rgb(207, 102, 33) 5px 0 5px;*/
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    
    /*text-decoration-color: rgb(237, 172, 129);*/
    

}

.text3{
    font-size: 20px;
    font-weight: bold;
    color:rgb(6, 2, 0) ;
    
}
.img3{
    width: 90%;
    height: 90%;
    padding-left: 50px;
    border-radius: 20px;
    margin-top: 50px;
   

    
}

.container3{
    display: flex;
    margin: 150px 0 100px 0;
    width: 100%;
    height: 150px;
    background:rgb(16, 15, 15);
    padding: 20px;
    align-content: space-around;
    align-items: center;
    justify-content: space-between;
   
   /* box-shadow: #945029 0 9px 5px;*/
    
  
}
.item{
  
    margin: 0 100px 0 100px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}
 
.bolls{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgb(10, 0, 0);
    position: relative;


}
.uno{
    animation: uno 5s ease 1s infinite;
    
}
.dos{
    animation: dos 7s ease 1s infinite;

}
.tres{
    animation: tres 9s ease-in-out 1s infinite;
}

@keyframes uno {
    0%{ 
        background: rgb(206, 124, 124); 
        left:0;
        top:0px;
        opacity: 0.5;
        
        
    }
    25%{background: rgb(109, 55, 64); 
        right:300px; 
        top:50px; 
        opacity: 0.5;
    }
    50%{ background: rgb(128, 197, 128); 
        left:400px; 
        bottom:20px; 
        opacity: 0.5;
        
    }
    75%{background: rgb(224, 224, 150);
        left:800px; 
        top: 10px;
        
        opacity: 0.5;
    }
    100%{ background: #7868aa; 
        left:1300px; 
        top: 40px;
      
        opacity: 0.5; 
        }

}

@keyframes dos {
    0%{ 
        background: rgb(87, 79, 238); 
        right:900px;
        top:30px;
        opacity: 0.5;
    }
    25%{background: pink; 
        right:500px; 
        top:20px; 
        opacity: 0.5;
    }
    50%{ background: rgb(228, 118, 197); 
        left:200px; 
        top: 5px; 
        opacity: 0.5;
    }
    75%{background: rgb(123, 230, 236);
        left:600px; 
        top:40px; 
        opacity: 0.5;
    }
    100%{ background: #ed9fc7; 
        left:100px; 
        top: 10px;
          opacity: 0.5;
        }

}

@keyframes tres {
    0%{ 
        background: rgb(124, 107, 201); 
        left:1100px;
        top:0px;
        opacity: 0.2;
    }
    25%{background: rgb(212, 5, 40); 
        left:900px; 
        top:40px; 
        opacity: 0.2;
    }
    50%{ background: rgb(220, 21, 196); 
        right:500px; 
        bottom:30px; 
        top: 10px;
        opacity: 0.2;
    }
    75%{background: rgb(59, 233, 82);
        left:300px; 
        bottom:10px; 
        opacity: 0.2;
    }
    100%{ background: #db8888; 
        right:100px; 
        bottom:5px; 
        left: 1000px;
        opacity: 0.2;
        }

}
/*galery */

.gallery{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2vmin;
    padding: 0 14px;
    z-index: 1;
   

}
.gallery li{
    list-style-type: none;
    height: 350px;
    flex-grow: 1;
    overflow: hidden;
    

}
.gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: 0.5s;

  
}

.gallery img:hover{
    
    filter: grayscale(0);
    transform: scale(1.1);
}

li span{
    font-weight: bold;
    font-size: 25px;
    position: absolute;
    margin: 20px 0 0 20px;
    z-index: 3;

    
}
.span1, .span2{
    font-weight: bold;
    font-size: 25px;
    position: absolute;
    margin: 20px 0 0 20px;
    z-index: 3;
    color: white;

}

/*formulaire*/
.div-title{
    text-align: center;
    margin-top: 150px;
}
h2{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    font-size: 50px;
}
.form-div{
    margin: 100px auto ;
    width: 500px;
    
}


input {
    font-size: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    outline: none;
    box-shadow: none;
    display: block;
    align-items: center;
    justify-content: first baseline;
    height: 30px;
    line-height: 30px;
    padding: 8px 15px;
    border: 1px solid #8788ab;
    border-radius: 10px;
    width: 100%;
    
    margin-bottom: 10px;

}
textarea{
    font-size: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    outline: none;
    box-shadow: none;
    display: block;
    align-items: center;
    justify-content: first baseline;
    height: 150px;
    line-height: 20px;
    padding: 8px 15px;
    border: 1px solid #8788ab;
    border-radius: 10px;
    width: 100%;
     
}
.send{
    font-size: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    outline: none;
    box-shadow: none;
    display: block;
    justify-content: space-around;
    align-content: center;
    justify-content: first baseline;
    height: 50px;
    line-height: 30px;
    padding: 8px 15px;
    border: 1px solid #8788ab;
    border-radius: 10px;
    width: 150px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 35%;
    color: #747484;
}


/*footer */
footer{
   
    margin-top: 150px;
    background: black;
    height: 270px;
    

}
.info-foo{
    margin: 0 0 0 50px;
    padding: 25px;
    color: white;
}
.line{
    display: block;
    border: 1px solid orangered;
    width: 90%;
    margin:  20px auto;

}
.nav-footer{
    display: flex;
    width: 100%;
    
    margin: 0 0 0 -80px;
    justify-content:end;
    align-items: center;

}

.nav-link-foo{
    text-decoration: none;
    padding: 10px;
    color: rgb(156, 153, 153);
    
}

/* servicios BTL */

.container5{

    display: flex;
    align-items: center;
    justify-content: center;
    height: 650px;
    overflow: hidden;
    margin: 150px auto;
    box-sizing: border-box;
    background-color: black;
}



.wrapper{
    display: flex;
    width: 800px;
}


.panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    height: 600px;
    border-radius: 50px;
    
    cursor: pointer;
    flex: 0.5;
    margin: 10px;
    position: relative;
    -webkit-transition: all 700ms ease-in;
   
  
    
}


.panel.active {
    flex: 5;
    background-size: cover;
    background-position: center;
 
}


.panel.active h3 {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
}


.container .text-box{
    color: rgb(245, 243, 243);
    width: 300px; 
}
.text-box h3{
    font-size: 50px;
    color: rgb(240, 236, 236);
    
   
}
.text-box p{
    font-size: 20px;
}

/*button de fotos*/
.text-box .buton-panel{
 display: block;
 position: absolute;
 text-decoration: none;
 color: white;
 background: gray;
 border-radius: 20px;
 height: 40px;
 width: 150px;
 text-align: center;
 padding: 10px;
 margin: 30px;
}
.text-box .buton-panel:hover{
opacity: 0.5;


}


/*text slide*/


.slider-1{
    width: 100%;
    margin: 100px auto;
    overflow: hidden;

}

.slider-1 .slider {
    display: flex;
    animation: textslider 15s infinite ease-in-out;
}
.slider p {

    /*depas le parrant mais est ca taille*/
    background-color: #d9eaf6;
    flex-shrink: 0;
    padding: 72px 0;
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: #121313;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    
}

@keyframes textslider {
    0%,
    20% {
        transform: translateX(0);
    }

    25%,
    45% {
        transform: translateX(-100%);
    }

    50%,
    70% {
        transform: translateX(-200%);
    }

    75%,
    95% {
        transform: translateX(-300%);
    }

    100% {
        transform: translateX(-400%);
    }
}

.container7{
  height: 100%;
  width: 100%;
  padding: 50px;
  background: rgb(226, 245, 245);
  width: 100%;
  
  
  
}
.container7 h2{
    font-size: 40px;
    text-align: center;
    padding: 50px;
    margin-bottom: 50px;
    color: rgb(10, 10, 10);
 
}

.clientes{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;

    gap: 2vmin;
    padding: 0 15px;
    z-index: 1;
}
.clientes li{
    list-style-type: none;
    height: 100%;
    width: 100%;
    flex-grow: 1;
    overflow: hidden;
}

.clientes img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}


/*small device*/

@media screen and (max-width:750px)
{

    .navbar-nav{
        display: flex;
        flex-direction: column;
        width: 0;
        height: calc(100vh-65px);
        position: absolute;
        top: 65px;
        right: 1;
        background-color: var(--navbar-bg-color);
        transition: all .5s ease-in-out;
        z-index: 2;
        opacity: 0.6;

     
    }
    
    .show-nav .navbar-nav{
        width: 100%;
    }
    .nav-item{
        transform:translateX(101%);
        
    }
    .show-nav .nav-item{
        transform:translateX(0);
        z-index: 0;
    
        
    }

    .nav-link {
       
            display: block;
            padding: 1rem;
            font-size: 1.6rem;
            transition: all .4s ease-in-out;

            
        }

        .nav-link:hover {
        
            padding-left: 2rem;
            letter-spacing: 5px;
           
        }
        /*toglle menu*/
    .burger{
        display: block;
        position: relative;
        padding: 0;
        width: 45px;
        height: 45px;
        border: none;
        background: transparent;
        cursor: pointer;
    }
    .bar{
        display: block;
        width: 45px;
        height: 4px;
        background: var(--navbar-color);
        border-radius: 3px;
        transition: all .5s ease-in-out;
    }
    .show-nav .bar{
        width: 0;
        background: transparent;
        
        
    }
    .bar::before, .bar::after{
        content: "";
        width: 45px;
        height: 4px;
        position: absolute;
        left: 0;
        background: var(--navbar-color);
        border-radius: 3px;
        transition: all .5s ease-in-out;
    }
    .bar::before {
        transform: translateY(-12px);
       
    }
    .show-nav .bar::before{
        transform: rotate(45deg);
    }

    .bar::after {
        transform: translateY(12px);
    }

    .show-nav .bar::after{
        transform: rotate(-45deg);
    }
    /*animation bonus*/
    .show-nav .first{
        transition: all 1s ease-out;
    }
    .show-nav .second{
        transition: all 1.2s ease-out;
    }
    .show-nav .third{
        transition: all 1.3s ease-out;
    }
    .show-nav .four{
        transition: all 1.4s ease-out;
    }
    .show-nav .fifth{
        transition: all 1.5s ease-out;
    }

  
    /*body et corp*/
   /*primer bloque*/
   .img2{
    object-fit: cover;
    width: 100%;
  
   }
   .img1{
    width: 30%;
    margin-right: 10px;
   }
   .text1{
    
   font-size: 25px;
   margin: 355px 0 0 30px;
   }
   .text2{
    font-size: 35px;
    
    margin: 380px 0 0 25px;
   }
   /*botton 1r bloque */
  
   .click-botton{
    margin: 600px 30px;
    font-size: 22px;
    padding: 10px;
    width: 150px;
    height: 50px;
    
   }
   .container2{
   
    flex-wrap: wrap;
    margin: 100px 0 0 0;
    
    
   }
   .block3 h1{
    border-radius: 50%;
    background:  rgb(212, 244, 244);
    padding: 10px;
    width: 100px;
    height: 100px;
    
  }
  h1{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
   
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}
.text3{
    font-size: 15px;
    font-weight: bold;
    color:rgb(6, 2, 0) ;
    
}
.img3{
    width: 220px;
    height: 200px;
    margin: 10px 0 0 -30px;
    border-radius: 0;
    display: block;
   
}
/*link servicios*/
.container3{
  
    flex-direction: column;
    margin: 50px auto;
    width: 100%;
    height: 300px;
    background:rgb(16, 15, 15);
    
  /*  align-content: space-between;*/
    align-items: center;
    
}
.item{
  
    margin: 10px auto;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    padding: 7px;
}
.bolls{
    width: 0;
    height: 0;
}

/*formulaire*/
.div-title{
    text-align: center;
    margin-top: 100px;
}
h2{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    font-size: 30px;
}
.div-title h3{
    font-size: 18px;
}
.form-div{
    margin: 100px auto ;
    width: 180px;
    
}


input {
    font-size: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    outline: none;
    box-shadow: none;
    display: block;
    align-items: center;
    justify-content: first baseline;
    height: 30px;
    line-height: 30px;
    padding: 8px 15px;
    border: 1px solid #8788ab;
    border-radius: 10px;
    width: 100%;
    
    margin-bottom: 10px;

}
textarea{
    font-size: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    outline: none;
    box-shadow: none;
    display: block;
    align-items: center;
    justify-content: first baseline;
    height: 100px;
    line-height: 15px;
    padding: 8px 15px;
    border: 1px solid #8788ab;
    border-radius: 10px;
    width: 100%;
     
}
.send{
    font-size: 12px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    outline: none;
    box-shadow: none;
    display: block;
    justify-content: space-around;
    align-content: center;
    justify-content: first baseline;
    height: 30px;
    
    padding: 1px 15px;
    border: 1px solid #8788ab;
    border-radius: 10px;
    width: 150px;
    margin: 10px;
    color: #747484;
}

/*footer */
footer{
   
    margin-top: 150px;
    background: black;
    height: 400px;
    

}
.info-foo{
    margin: 0 0 0 10px;
    padding: 25px;
    color: white;
}
.line{
    display: block;
    border: 1px solid orangered;
    width: 90%;
    margin:  20px auto;

}
.nav-footer{
    display: flex;
    display: block;
    width: 100%;
    
    margin: 0 0 0 25px;
    flex-direction: column;
    align-items: center;

}

.nav-link-foo{
    text-decoration: none;
    padding: 10px;
    color: rgb(156, 153, 153);
    
}
/*servicios fotos*/
.container5{

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    margin: 150px auto;
    box-sizing: border-box;
    background-color: black;
   

}

.wrapper{
    display: flex;
    width: 200px;
}


.panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    height: 250px;
    border-radius: 50px;
    
    cursor: pointer;
    flex: 0.5;
    margin: 5px;
    position: relative;
    -webkit-transition: all 700ms ease-in;
   
    
}


.panel.active {
    flex: 5;
    background-size: cover;
    background-position: center;
 
}

  
    .panel:nth-of-type(4),
    .panel:nth-of-type(5) {
        display: none;
    }

.container .text-box{
    color: rgb(245, 243, 243);
    width: 100%; 
    padding: 15px;
   
}
.text-box h3{
    font-size: 30px;
    color: rgb(240, 236, 236);
   
}
.text-box p{
    font-size: 18px;

   
}
/*container 6*/

.slider p {

    /*depas le parrant mais est ca taille*/
    background-color: #d9eaf6;
    flex-shrink: 0;
    padding: 72px 0;
    width: 100%;
    text-align: center;
    font-size: 21px;
    color: #121313;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    
}
/*button de fotos*/
.text-box .buton-panel{
 display: block;
 position: inherit;
 text-decoration: none;
 color: white;
 background: gray;
 border-radius: 20px;

 text-align: center;
 padding: 10px;
 

}
.text-box .buton-panel:hover{
opacity: 0.5;

}

/*continer7 clientes*/
.container7{
    height:100%;
}
.container7 h2{
    font-size: 30px;
    padding: 10px;
}

.clientes{
    
    flex-wrap: wrap;
    
}
.clientes li{
    height: 45px;
    width: 45px;
}




}
/*medium device*/

@media screen and (min-width:750px) and (max-width:1200px)
{

    .container3{
  
       
        margin: 100px auto;
        width: 100%;
        height: 150px;
        background:rgb(16, 15, 15);
        
        align-content: space-between;
        align-items: center;
        
    }
    .item{
      
        margin: 5px 50px 0 60px;
        color: white;
        font-size: 22px;
        font-weight: bold;
        text-decoration: none;
        padding: 7px;
    }
    /*nosotros somos*/
    .container3{
  
      
        margin: 50px auto;
        width: 100%;
        height: 150px;
        background:rgb(16, 15, 15);
        
        align-content: space-between;
        align-items: center;
        
    }
    .item{
      
        margin: 5px 50px 0 60px;
        color: white;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        padding: 7px;
    }
    .bolls{
        width: 10px;
        height: 10px;
    }
/*servicios fotos*/
.container5{

    display: flex;
    
    align-items: center;
    justify-content: center;
    height: 500px;
    overflow: hidden;
    margin: 150px auto;
    box-sizing: border-box;
    background-color: black;
   

}

.wrapper{
    display: flex;
    width: 400px;
}


.panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    height: 350px;
    border-radius: 50px;
    
    cursor: pointer;
    flex: 0.5;
    margin: 5px;
    position: relative;
    -webkit-transition: all 700ms ease-in;
   
    
}


.panel.active {
    flex: 5;
    background-size: cover;
    background-position: center;
 
}

 

.container .text-box{
    color: rgb(245, 243, 243);
    width: 60%; 
    padding: 15px;
   
}
.text-box h3{
    font-size: 40px;
    color: rgb(240, 236, 236);
   
}
.text-box p{
    font-size: 22px;

   
}

/*button de fotos*/
.text-box .buton-panel{
 display: block;
 position: inherit;
 text-decoration: none;
 color: white;
 background: gray;
 border-radius: 20px;

 text-align: center;
 padding: 10px;
 

}
.text-box .buton-panel:hover{
opacity: 0.5;

}

   
}

