@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@200;300;400;500&display=swap');

:root{
    --red:#E6C552;
    --light-black:#666;
   --light-white:#ccc;
   --light-bg:#f5f5f5;
   --dark-bg:rgba(0,0,0,.7);
   --border:.1rem solid #aaa;
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}

*{
    font-family: 'Dosis';
    margin:0; padding:0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border:none;
    transition: all .3s cubic-bezier(.16,.8,.62,1.52);
    /* text-transform: capitalize; */
    font-weight: normal;
}

*::selection{
    background: white;
    color:#fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    overflow-x: hidden;
}

html::-webkit-scrollbar{
    width:1.3rem;
}

html::-webkit-scrollbar-track{
    background:#000;
}

html::-webkit-scrollbar-thumb{
    background:var(--red);
}

/* section{
    min-height: 100vh;
    padding:0 7%;
    padding-top: 4rem;
} */

section{
    padding:5rem 10%;
    padding-top: 4rem;
   
 }

.btn{
    display: inline-block;
    padding:.7rem 4rem;
    font-size: 2rem;
    color:#fff;
    background:var(--red);
    padding-top: 1rem;
    margin-top: 1rem;
}

.btn:hover{
    transform:scale(1.02);
}

.heading{
    text-align: center;
    color: orange ;
    /* text-transform: uppercase; */
    font-size: 4rem;
}

.heading span{
    color:#000000;
}

header{
   position: relative;
    top:2.5rem; left:50%;
    transform:translateX(-50%);
    width:93%;
    z-index: 1000;
    background:#fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:2rem 3rem;
    border-radius: .5rem;
    padding: 0 9%;
    
    
}

header .logo{
    color:#333;
    font-size: 2.5rem;
}
header .logo img{
    height: 6rem;
  }

header .logo span{
    color:var(--red);
}

header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

header .navbar ul li{
    margin-left: 3rem;
}

header .navbar ul li a{
   font-size: 2rem;
   color:#333;
}

header .navbar ul li a.active,
header .navbar ul li a:hover{
    color:var(--red);
}

#menu{
    font-size: 3rem;
    color:#666;
    cursor: pointer;
    display: none;
}
@keyframes fadeIn {
  0%{
     transform: translateY(-4rem) scale(0);
     opacity: 0;
  }
}
.home1{
  padding:5rem;
  background: white;
}

.home1 .slide{
  min-height: 120vh;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2%;
}

.home1 .slide::before{
  content: '';
  position: absolute;
  top:0; left:0;
  height: 100%;
  width: 100%;
  /* background: var(--dark-bg); */
  z-index: -1;
}

.home1 .slide .content{
  text-align: center;
  width: 70rem;
  display: none;
}

.home1 .slide .content span{
  font-size: 3rem;
  display: block;
  padding-bottom: .5rem;
  color:var(--light-white);
  animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .2s backwards;
}

.home1 .slide .content h3{
  font-size: 5vw;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 .5rem 1rem rgb(0, 0, 0);
  line-height: 1;
  padding:2rem 0;
  animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .4s backwards;
}

.home1 .slide .content .btn{
  animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .6s backwards;
}

.home1 .swiper-slide-active .content{
  display: inline-block;
}

.swiper-button-next,
.swiper-button-prev{
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  background: white;
  color: black;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
  background: #E6C552;
  color:var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after{
  font-size: 2rem;
}

.home{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* background:linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.8)), url(../images/home.jpg) no-repeat; */

}

.home .image{
    flex:1 1 40rem;
}

.home .image img{
    width:100%;

}

.home .content{
    flex:1 1 40rem;
    padding: 4rem 0;
}

.home .content h3{
    color: black;
    font-size: 4rem;
    padding-bottom: 1rem;
}

.home .content h1{
    color:#000000;
    font-size: 2rem;
}

.home .content p{
    color:#000000;
    font-size: 2.5rem;
    padding:1rem 0;
    text-align: justify;
    margin-right: 3rem;
}

.step-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    min-height: 50vh;
    padding:2 7%;

  }
  
  .step-container .step{
    background:#eee;
    margin:1rem;
    padding:2rem;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.9);
    text-align: center;
    flex:1 1 30rem;
  }
  
  .step-container .step span{
    font-size: 7rem;
    color:var(--pink);
    font-weight: bolder;
  }
  
  .step-container .step h3{
    font-size: 3rem;
    color:var(--black);
  }
  
  .step-container .step p{
    font-size: 1.5rem;
    color:#666;
    padding:1rem 0;
  }

.gallery{
    background:#f0f0f0;
}

.gallery .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .box-container .box{
    flex:1 1 30rem;
    height:40rem;
    overflow: hidden;
    background:#ffffff;
    text-align: center;
    padding: 2rem;
    margin: 1rem;
    border-radius: 1rem;
    position: relative;
}

.gallery .box-container .box img{
    height:100%;
    object-fit: cover;
}

.gallery .box-container .box .info{
    position: absolute;
    bottom:-120%; left:50%;
    transform: translateX(-50%);
    width:90%;
    background:#fff;
    padding:2rem;
    border:.3rem solid var(--red);
    border-radius: .5rem;
}

.gallery .box-container .box:hover .info{
    bottom:2rem;
}

.gallery .box-container .box:hover img{
    transform: scale(1.2);
}

.gallery .box-container .box:hover{
    background:#111;
}

.gallery .box-container .box .info h3{
    background:var(--red);
    color:#fff;
    border-radius: .5rem;
    margin:0 5rem;
    margin-top: -3.7rem;
    padding:.5rem 2rem;
    font-size: 2.5rem;
}

.gallery .box-container .box .info p{
    font-size: 2rem;
    color:#666;
    padding:.5rem;
    padding-top: 2rem;
}

.about{
    background:#eee;
    padding-bottom: 3rem;
}

.about .row{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about .row .image{
    flex:1 1 40rem;
    padding: 2rem 0;
    text-align: center;
}

.about .row .image img{
    height:40rem;
}

.about .row .content{
    flex:1 1 30rem;;
    text-justify: auto;
}

.about .row .content h3{
    font-size: 4rem;
    color:#333;
}

.about .row .content p{
    font-size: 2.2rem;
    color:#666;
    padding:1rem 0;
}
.counting{
    min-height: 40vh;
    padding:2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* background-color: #fff; */
    background: url(../images/rea.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  
.counting .box{
    padding-top: 1rem;
    margin: 2rem 4rem;
    text-align: center;
    
  }
  
 .counting .box .count{
    font-size: 7rem;
    color:#ffffff;
  }
  
.counting .box h3{
    font-size: 4rem;
    color: white;
  }
  .fond .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
  }
  
  .fond .row .image{
    flex: 1 1 40rem;
  }
  
  .fond .row .image img{
    width: 40rem;
    border-radius: .5rem;
  }
  
  .fond .row .content{
    flex:1 1 40rem;
  }
  
  .fond .row .content h3{
    font-size: 3rem;
    color: var(--sub-color);
    /* text-transform: capitalize; */
    margin-bottom: 1rem;
  }
  
  .fond .row .content p{
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.7rem;
    text-align: justify;
    color: var(--sub-color);
  }
  
  .fond .row.revers{
    flex-flow: row-reverse;
    margin: 3rem 0;
    flex-wrap: wrap;
  }
  
  .services .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
  }
  .fond .row .content ul {
    padding: 0;
    margin: 0;
  }
  
  .fond .row .content li {
    padding: 2px;
    background-color: #ffffff;
    margin-bottom: 2px;
    border-radius: 5px;
    font-size: 1.5rem;
    text-align: left;
  }

.blogs .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
  }
  
  .blogs .box-container .box {
    border-radius: 1rem;
    background: #222;
    overflow: hidden;
  }
  
  .blogs .box-container .box:hover .image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  
  .blogs .box-container .box .image {
    height: 25rem;
    overflow: hidden;
    width: 100%;
  }
  
  .blogs .box-container .box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .blogs .box-container .box .content {
    padding: 2rem;
  }
  
  .blogs .box-container .box .content .link {
    font-size: 2rem;
    color: #fff;
  }
  
  .blogs .box-container .box .content .link:hover {
    color: #29d9d5;
  }
  
  .blogs .box-container .box .content p {
    padding: 1rem 0;
    font-size: 1.4rem;
    color: #aaa;
    line-height: 2;
  }
  
  .blogs .box-container .box .content .icon {
    padding-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .blogs .box-container .box .content .icon a {
    font-size: 1.4rem;
    color: #aaa;
  }
  
  .blogs .box-container .box .content .icon a:hover {
    color: #29d9d5;
  }
  
  .blogs .box-container .box .content .icon a i {
    padding-right: .5rem;
    color: #29d9d5;
  }
  

.movies{
    background:#222;
}

.movies .heading span{
    color:#fff;
}

.movies .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.movies .box-container .box{
    flex:1 1 30rem;
    height:40rem;
    overflow: hidden;
    position: relative;
    margin:2rem;
    box-shadow: 0 .3rem .5rem #000;
}

.movies .box-container .box img{
    height:100%;
    width:100%;
    object-fit: cover;
}

.movies .box-container .box .info{
    padding:2rem;
    width:100%;
    position: absolute;
    bottom:-100%; left:0;
    background:rgba(0,0,0,.7);
}

.movies .box-container .box:hover .info{
    bottom:0;
}

.movies .box-container .box .info h3{
    font-size: 3rem;
    color:#fff;
    padding-bottom: .5rem;
}

.movies .box-container .box .info span{
    font-size: 2rem;
    color:var(--red);
}

.movies .box-container .box .info .stars i{
    font-size: 2rem;
    color:orange;
    padding:1rem .1rem;
}

.movies .box-container .box .info p{
    font-size: 2rem;
    color:#ccc;
    padding:.5rem 0;
}


.product{
    background:#eee;
}

.product .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.product .box-container .box{
    margin:1rem;
    padding:2rem;
    background:#fff;
    border:.1rem solid rgba(0,0,0,.1);
    text-align: center;
    width:27rem;
}

.product .box-container .box:hover{
    box-shadow: 0 .7rem 1rem rgba(0,0,0,.1);
}

.product .box-container .box img{
    margin:2rem 0;
    height:17rem;
}

.product .box-container .box h3{
    color:#444;
    font-size: 3rem;
}

.product .box-container .box p{
    color:#999;
    font-size: 2rem;
    padding:1rem 0;
}

.product .box-container .box .price{
    color:#666;
    font-size: 3rem;
}
.food{
    background: var(--light-bg);
 }
 .pricing .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap:1.5rem;
}

.pricing .box-container .box{
  padding:2rem 0;
  background:#333;
  border-radius: .5rem;
  text-align: center;
}

.pricing .box-container .box:hover{
  transform: scale(1.03);
}

.pricing .box-container .box .title{
  background:#E6C552;
  color:#fff;
  padding:1.5rem 0;
  font-size: 2rem;
}

.pricing .box-container .box .amount{
  color:#fff;
  padding-top: 2rem;
  font-size: 4rem;
}

.pricing .box-container .box ul{
  list-style-type: none;
  padding:1rem 0;
}
.newsletter{
  /* background:url(../images/maquette\ tshirt\ site_Plan\ de\ travail\ 1\ copie\ 16.jpg) no-repeat; */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.newsletter form{
  max-width: 45rem;
  margin-left: auto;
  text-align: center;
  padding:5rem 0;
}

.newsletter form h3{
  font-size: 2.2rem;
  color:#fff;
  padding-bottom: .7rem;
  font-weight: normal;
}

.newsletter form .box{
  width: 100%;
  margin: .7rem 0;
  padding:1rem 1.2rem;
  font-size: 1.6rem;
  color:var(--black);
  border-radius: .5rem;
  text-transform: none;
}
.newsletter1{
  background:linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.8)),url(../images/img_texte_51_1_lang62.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.newsletter1 form{
  max-width: 45rem;
  margin-left: auto;
  text-align: center;
  padding:5rem 0;
}

.newsletter1 form h3{
  font-size:3.3rem;
  color:#fff;
  padding-bottom: .7rem;
  font-weight: lighter;
}

.newsletter1 form .box{
  width: 100%;
  margin: .7rem 0;
  padding:1rem 1.2rem;
  font-size: 1.6rem;
  color:var(--black);
  border-radius: .5rem;
  text-transform: none;
}
.pricing .box-container .box ul li{
  font-size: 1.5rem;
  color:#eee;
  padding:1rem 0;
}

.pricing .box-container .box ul li i{
  color:var(--main-color);
  padding-right: .5rem;
}
 .food .slide{
    text-align: center;
    padding:4rem 2rem;
    border-radius: .5rem;
    transform: scale(.9);
    opacity: .5;
    margin-bottom: 4rem;
    cursor: pointer;
 }
 
 .swiper-pagination-bullet-active{
    background: var(--peru);
 }
 
 .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom:0;
 }
 
 .food .swiper-slide-active{
    transform: scale(1);
    opacity: 1;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border:var(--border);
 }
 
 .food .slide img{
    height: 10rem;
    margin-bottom: 1rem;
 }
 
 .food .slide h3{
    font-size: 2.5rem;
    padding:1rem 0;
    color:var(--black);
 }
 
 .food .slide .price{
    font-size: 2.5rem;
    color:var(--peru);
 }
 
 .food-preview-container{
    background: var(--dark-bg);
    position: fixed;
    top:0; left:0;
    height: 20%;
    width: 20%;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
 }
 
 .food-preview-container .food-preview{
    text-align: center;
    background: var(--white);
    padding:3rem 2rem;
    border-radius: .5rem;
    display: none;
    width: 35rem;
 }
 
 .food-preview-container .food-preview.active{
    display: inline-block;
    animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) backwards;
 }
 
 .food-preview-container .food-preview img{
    height: 25rem;
    margin-bottom: 1rem;
 }
 
 .food-preview-container .food-preview h3{
    padding:1rem 0;
    font-size: 2.5rem;
    color:var(--black);
 }
 
 .food-preview-container .food-preview .stars{
    margin-top: .5rem;
 }
 
 .food-preview-container .food-preview .stars i{
    font-size: 1.7rem;
    color:var(--peru);
 }
 
 .food-preview-container .food-preview p{
    font-size: 1.6rem;
    color:var(--light-black);
    padding:1rem 0;
    line-height: 2;
 }
 
 .food-preview-container .food-preview .price{
    font-size: 2.5rem;
    color:var(--black);
    margin-bottom: .5rem;
 }
 
 #close-preview{
    position: absolute;
    top:1.5rem; right:2.5rem;
    font-size: 6rem;
    cursor: pointer;
    color:var(--white);
 }
 
 #close-preview:hover{
    transform: rotate(90deg);
 }
 .wrapper{
    display: flex;
    text-align: center;
  }
  .wrapper .static-txt{
 
    color: #fff;
    font-size: 60px;
    font-weight: 400;
  }
  .wrapper .dynamic-txts{
    text-align: center;
    margin-left: 15px;
    height: 90px;
    line-height: 90px;
    overflow: hidden;
  }
  .dynamic-txts li{
    text-align: center;
    list-style: none;
    color: #000000;
    font-size: 60px;
    font-weight: 500;
    position: relative;
    top: 0;
    animation: slide 12s steps(4) infinite;
  }
  @keyframes slide {
    100%{
      top: -360px;
    }
  }
  .dynamic-txts li span{
    text-align: center;
    position: relative;
    margin: 5px 0;
    line-height: 80px;
    text-align: center;
  }
  .dynamic-txts li span::after{
    text-align: center;
    text-align: center;
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: #E6C552;
    border-left: 5px solid #000000;
    animation: typing 3s steps(10) infinite;
  }
  @keyframes typing {
    40%, 60%{
      left: calc(100% + 50px);
    }
    100%{
      left: 0;
    }
  }

 .gallerie .gallerie-container{
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:2rem;display: -ms-grid; */
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
  
 }
 
 .gallerie .gallerie-container .box{
    /* height: 50rem;
    position: relative;
    overflow: hidden;
    border-radius: .5rem;
    text-align: center; */
    height: 30rem;
    position: relative;
    overflow: hidden;
    border-radius: .8rem;
  
 }
 
 .gallerie .gallerie-container .box img{
    height: 100%;
    width: 100%;
  
    -o-object-fit: cover;
       object-fit: cover;
 }
 
 .gallerie .gallerie-container .box .icon{
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top:0; left:0;
    z-index: 10;
    height: 100%;
    width: 100%;
    background: var(--dark-bg);
 }
 
 .gallerie .gallerie-container .box .icon i{
    font-size: 6rem;
    color:var(--white);
 }
 
 .gallerie .gallerie-container .box:hover .icon{
    display: flex;
 }
.footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
 
  padding:0 10%;
  padding-top: 2rem;

}

.footer .box-container .box {
  padding: 1rem 0;
}

.footer .box-container .box .logo img {
  height: 6rem;
  padding-bottom: 1rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: #000000;
  padding: 1rem 0;
}

.footer .box-container .box p {
  font-size: 1.4rem;
  color: #aaa;
  padding: 1rem 0;
  line-height: 2;
}

.footer .box-container .box p i {
  padding-right: .5rem;
  color: #000000;
}

.footer .box-container .box .share {
  padding-top: 1rem;
}

.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4rem;
  font-size: 2rem;
  border-radius: 50%;
  font-size: 1.7rem;
  border: 0.2rem solid #E5BD41;
  color: #E5BD41;
  margin-right: .5rem;
  text-align: center;
}

.footer .box-container .box .share a:hover {
  background: #E5BD41;
  color: #111;
}

.footer .box-container .box .links {
  font-size: 1.4rem;
  color: #aaa;
  padding: 1rem 0;
  display: block;
}

.footer .box-container .box .links:hover {
  color: #000000;
}

.footer .box-container .box .links:hover i {
  padding-right: 2rem;
}

.footer .box-container .box .links i {
  padding-right: .5rem;
  color: #222;
}

.footer .box-container .box form .email {
  width: 100%;
  border-radius: 5rem;
  border: 0.2rem solid #29d9d5;
  background: none;
  font-size: 1.5rem;
  text-transform: none;
  color: #aaa;
  margin-bottom: 1rem;
  padding: 1.2rem 1.4rem;
}

.credit {
  background: #222;
  text-align: center;
  font-size: 2rem;
  padding: 2rem 1rem;
  color: #aaa;
}

.credit span {
  color: #29d9d5;
}
.heading1 {
  text-align: center;
  background: #E6C552;
  /* background:linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.8)), url(../images/img_texte_51_1_lang62.jpg) no-repeat; */
  padding: 5rem;
  width:100%;
}
.heading1 h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #fff;
}
.heading1 p {
  color: #fff;
  padding-top: .7rem;
  font-size: 1.7rem;
}

.heading1 p a {
  color: #fff;
}

.heading1 p a:hover {
  color: #333;
}
/* .footer{
    text-align: center;
    background:#222;
}

.footer .share{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:2rem 0;
}

.footer .share a{
    font-size: 2rem;
    color:#ccc;
    padding:2rem;
}

.footer .share a:hover{
    color:#eee;
}

.footer a:hover{
    text-decoration: underline;
}

.footer .credit{
    padding:2rem 1rem;
    font-size: 3rem;
    color:#fff;
    background:#111;
}

.footer .credit a{
    color:var(--red);
} */

.scroll-top{
    position: fixed;
    bottom:7.5rem; right:2rem;
    z-index: 1000;
    display: none;
}

.scroll-top img{
    height:3rem;
    filter:drop-shadow(0 .3rem .5rem rgba(0,0,0,.2));
    
}





















/* media queries  */

@media (max-width:991px){

    html{
        font-size: 55%;
    }

}

@media (max-width:768px){

    #menu{
        display: block;
    }

    header .navbar{
        position: fixed;
        top:110%; left:0;
        background:#fff;
        width: 100%;
        border-radius: .5rem;
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
        transform:scaleY(0);
        transform-origin: top;
        opacity: 0;
    }

    header .navbar ul{
        flex-flow: column;
        padding:2rem;
    }

    header .navbar ul li{
        margin:1rem 0;
        width:100%;
    }

    header .navbar ul li a{
        display: block;
        font-size: 2.5rem;
        border-bottom: .1rem solid rgba(0,0,0,.1);
        padding:1.5rem 0;
    }

    .fa-times{
        transform: rotate(180deg);
    }

    header .navbar.nav-toggle{
        transform:scaleY(1);
        opacity: 1;
    }
    .home{
      background-position: left;
      justify-content: center;
      text-align: center;
  }

  .home .content h3{
      font-size: 4.5rem;
  }

  .home .content p{
      font-size: 1.5rem;
  }
    .home .content{
        text-align: center;
    }
    .wrapper {
        flex-direction: column; /* Empile les éléments verticalement */
      }
    
      .wrapper .static-txt,
      .dynamic-txts, .dynamic-txts li,.dynamic-txts li span::after  {
        margin-left: 0; /* Supprime la marge entre les éléments sur les petits écrans */
      top: 0;
        text-align: center;
        font-size: 40px;
      }
      .home1 .slide {
        min-height: 20vh; /* Ajustez la taille en fonction de vos besoins */
      }
      .home1 .slide .content {
        width: 95%; /* Ajustez la largeur en fonction de vos besoins */
      }
      .home1 .slide .content h3 {
        font-size: 3.5vw; /* Ajustez la taille de la police en fonction de vos besoins */
      }
      .gallery .box-container .box {
      flex: 1 1  30rem; /* Ajustez la largeur en fonction de vos besoins */
      height: 30rem; /* Ajustez la hauteur en fonction de vos besoins */
  }
      
      .swiper-button-next,
  .swiper-button-prev {
      height: 2rem; /* Ajustez la hauteur en fonction de vos besoins */
      width: 2rem; /* Ajustez la largeur en fonction de vos besoins */
      line-height: 1rem;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
      font-size: 1rem; /* Ajustez la taille de la police en fonction de vos besoins */
  }
   
}

@media (max-width:400px){

    html{
        font-size: 50%;
    }
    .wrapper {
        flex-direction: column; /* Empile les éléments verticalement */
      }
      .home1 .slide {
        min-height: 22vh; /* Ajustez la taille en fonction de vos besoins */
      
      }
      .home1 .slide .content {
        width: 95%; /* Ajustez la largeur en fonction de vos besoins */
      }
      .home1 .slide .content h3 {
        font-size: 3.5vw; /* Ajustez la taille de la police en fonction de vos besoins */
      }
    
      .wrapper .static-txt,
      .dynamic-txts, .dynamic-txts li,.dynamic-txts li span::after  {
        margin-left: 0; /* Supprime la marge entre les éléments sur les petits écrans */
      top: 0;
        text-align: center;
        font-size: 40px;
      }
      .heading{
        text-align: center;

        font-size: 2rem;
    }
    .home{
     padding-bottom: 2em;
  }
     .swiper-button-next,
  .swiper-button-prev {
      height: 2rem; /* Ajustez la hauteur en fonction de vos besoins */
      width: 2rem; /* Ajustez la largeur en fonction de vos besoins */
      line-height: 1rem;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
      font-size: 1rem; /* Ajustez la taille de la police en fonction de vos besoins */
  }

    section{
        padding:0 3%;
        padding-top: 5rem;
    }
   
    .about .row .image img{
        height: auto;
        width:100%;
    }

    .product .box-container .box{
        width: 100%;
    }

}