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

                
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}
body{
  overflow-x: hidden;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}
a{
  text-decoration: none;
}
ul{
  list-style: none;
}
h1 { 
  font-family: 'Monstserrat', sans-serif;
  font-size: 30px;
}
h2 { 
  font-family: 'Monstserrat', sans-serif;
  font-size: 27px;
}
h3 {
  font-family: 'Monstserrat', sans-serif;
  font-size: 25px;
}
h4 { 
  font-family: 'Monstserrat', sans-serif;
  font-size: 20px;
}
p { 
  font-family: 'poppins', serif;
  font-size: 20px;
}
a { 
  font-family: 'poppins', serif;
  font-size: 15px;
}
li { 
  list-style: none;
  color: #000000;
  font-family: 'poppins', serif;
  font-size: 18px;
}
.w3-container{
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}
.w2-container{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}  
.userl { 
  display: none;
}
.userl ul { 
  display: none;
  width: 130px;
  backdrop-filter: blur(5px);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  position: absolute;
}
.user ul { 
  display: none;
  position: absolute;
  width: 150px;
  background-color: #D9D9D9;
  margin-left: -50px;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
.user ul li, .userl ul li { 
  display: flex;
  align-items: center;
  justify-content: center;
}
.user ul li a, .userl ul li a{ 
   list-style: none;
   color: #000000;
   padding: 5px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   font-size: 15px;
}
.user ul li a:hover { 
  color: #794405;
  border-bottom: solid 2px #794405;
}
.user ul li a img:hover, .userl ul li a img:hover { 
  color: #794405;
}
.user ul li a img, .userl ul li a img { 
  width: 15px;
  height: auto;
}
.deconnect { 
  width: 15px;
  height: auto;
}
.user:hover.user ul, .userl:hover.userl ul { 
  display: block;
}
header {
  z-index: 999;
  position: fixed;
  width: 100%;
  padding: 20px 5%;
  background: #d4d0d0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 8vw;
  height: 8vh;
}
header .nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .nav-bar a{
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 1.25rem;
  padding: 0 1rem;
  color: #000000;
  text-transform: uppercase;
  transition: 0.01s;
}
.nav-bar a::after{
  content: '';
  display: block;
  width: 0;
  height: 0.11rem;
  background: #794405;
  transition: width 0.3s;
}
.nav-bar a:hover::after{
  width: 100%;
  color: #794405;
  transition: width 0.3s;
}
.nav-bar a.action, .nav-bar a.action1 {
  color: #794405;
}
.nav-bar a.action::after { 
  color: #794405;
  transition: width 0.3s;
}
header .burger{
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.dropdown-menu{
  display: none;
}
.dropdown li{
  display: block;
}
.userprofile { 
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.home{
  width: 100vw;
  height: 100vh;
  background-image: url('/static/Images/imagehome.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.home-content h1{
  color: #794405;
  padding: 3.5rem 0 3rem 0;
  text-align: center;
  font-size: 3.15rem;
  font-weight: 700;
  animation: Slide_up 1.4s ease;
}
.home-content h3{
  color: white;
  padding-bottom: 4.5rem;
  margin-left: 40.5rem;
  font-size: 2.25rem;
  font-weight: 700;
	animation: Slide_up 2.2s ease;
}
.btn{ 
padding: 0.775rem 0.95rem;
background: #ac804a;
border-radius: 10px;
border: solid 1px #ac804a;
color: antiquewhite;
margin-left: 70.5rem;
font-weight: 600;
animation: Slide_up 2.6s ease;
width: 200px;
}
.btn a {
  color: #fff;
  font-size: 20px;
}
.btn:hover{
	background-color: #794405;
  border: solid 1px #794405;
}
@keyframes Slide_up{
  0%{
    transform: translateY(250px);
  }
  100%{
    transform: translateY(0);
  }
}
.container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px;
}
.about-card{
  width: 320px;
  height: 650px;
  margin: 8px;
  border-radius: 20px;
  border: 3px solid grey;
  transition: 0.5s ease;
}
.container .about-card:hover{
	border-color: #794405;
  transform: scale(1.02);
}
.about-image{
  height: 35%;
  width: 100%;
  margin-bottom: 20px;
  border-top-right-radius: 18px;
  border-top-left-radius: 18px;
  background-size: cover;
  background-position: center;
}
.image-1{
  background-image: url('/static/Images/imagecard1.png');
}
.image-2{
  background-image: url('/static/Images/imagecard2.png');
}
.image-3{
  background-image: url('/static/Images/imagecard3.png'); 
}
.about-card h1 a{
  font-weight: 700;
  color: black;
  transition: 0.5s ease;
}
.about-card h1 a:hover{
  color: #794405;
}
  .about-card h1{
  text-align: center;
}
.about-card li{
  margin-left: 1.875rem;
}
.about-card ul li{
  font-weight: 700;
  color: #794405;
  margin-top: 0.625rem;
}
.part2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(20rem, 31rem));
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.close-box {
  display: flex;
  flex-direction: column;
}
.close-box p {
  font-size: 15px;
}
.close-box hr {
  width: 6.25rem;
  margin: 1.375rem 0;
  padding: 0.0875rem 0;
  background-color: #794405;
  border-radius: 0.625rem;
}
.btn-about {
  width: 6.25rem;
  border: solid 1px #FFFFFF;
  border-radius: 10px;
  margin: 1.875rem 0 0 0;
  padding: 0.625rem 0.625rem;
  background-color: #ac804a;
}
.btn-about a {
  color: #fff;
}
.btn-about:hover{
	background-color: #794405;
}
.frame iframe {
  width: 30.5rem;
  height: 25.75rem;
  padding-left: 1.25rem;
}
.part3 h1{
	font-weight: 400;
  text-align: center;
  padding: 3.5rem 0 2rem 0;
}
.part3-container{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap:1rem;
  padding: 0 15%;
}
.part3-box{
	position: relative;
  border-radius: 1rem;
	overflow: hidden;
  display: flex;
}
.part3-box img{
	width: 100%;
  height: auto;
	transition: .5s ease;
}
.part3-box:hover img{
 transform: scale(1.1);
}

/* page A propos de nous*/  
.propos{
  position: relative;
  padding: 0 9rem 5.75rem 9rem;
  width: 100%;
  height: 115vh;
  align-items: center;
  overflow: hidden;
  display: flex;
  color: white;
}
.propos:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: #794405;
  border-radius: 0 0 50% 50%;
  transform: scaleX(2.5);
}
.propos h1{
  position: absolute;
  margin: -5.5rem 0 0;
}
.ifame-container {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0.025rem;
}
.propos-box {
  display: flex;
  flex-direction: column;
}
.propos-box p {
  padding-top: 1.5rem;
  font-weight: 500;
}
.propos-frame iframe {
  width: 32.5rem;
  height: 25.75rem;
  padding-left: 1.25rem;
} 
.proposinfo { 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}
.section-card{
 display: flex;
 text-align: center;
 align-items: center;
 flex-direction: column; 
 position: relative;
 bottom: 10rem;
}
.logopropos{
  width: 70%;
  height: 40%;
}
.propos-container{
  background-color: lightgray;
  display: flex;
  border-radius: 1.1rem;
  justify-content: center;
  align-items: center;
  margin: -5.75rem 0 5.75rem 0;
}
.propos-content{
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
}
.propos-img img{
  width: 20.75rem;
  margin: 0 0 -8px 0;
}
.propos-content h2{
  font-weight: bolder
}
.propos-content h3{
  font-weight: bolder;
}
.propos-text{
  font-size: 1.0rem;
  font-weight: 400;
}

/* page service*/
.service{
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.service:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #794405;
  border-radius: 0 0 50% 50%;
  transform: scaleX(2.5);
}
.service .service-content{
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 56rem;
  text-align: center;
}
.service .service-content h1{
  padding-top: 2rem;
  color: white;
}
.service .service-content h2{
  padding-top: 2rem ;
  color: white;
}
.line-service{
  width: 8rem;
  height: 0.25rem;
  background: white;
  margin:1rem auto;
}
.service .service-content p{
  margin: 0 0 3rem 0;
  padding-top: 2.25rem;
  color: white;
}
.service-gallery{
  display: grid;
  grid-template-columns: repeat(3, minmax(10.75rem, 20.75rem)); 
  grid-column-gap: 1.5rem;
  grid-row-gap: 2.0rem;
  justify-content: center;
  align-items: center;
}
.servcont{
	position: relative;
  overflow: hidden;
  display: flex;
  border-radius: 1rem;
}
  .servcont img{
    transition: .5s ease;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  .servcont:hover img{
    transform: scale(1.1);
    opacity: 0.8;
   }
.service-img1, .service-img, .service-img3, .service-img5{
  width: 19.0rem;
  height: 18.75rem;
  object-position: center;
  border-radius: 1rem;
  cursor: pointer;
}
.service-items p{
  max-width: 50rem;
  text-align: center; 
  padding: 4.25rem 0 1.5rem 0;
  margin: auto;
}
.service-items2 h4{
  text-align: center;
  padding: 3rem 0 1.5rem 0;
}
.service-items span, .service-items2 span{
  font-size: 1.5rem;
  color: #794405;
}
.service-video{
  width: 100%;
  justify-content: center;
  margin: auto;
}
.service-video iframe{
  position: relative;
  width: 100%;
  height: 100vh; 
}
/* page galerie*/
.galerie{
  position: relative;
  padding: 3.75rem 17%;
  width: 100%;
  height: 100vh;
  color: white;
  display: grid;
  grid-template-columns: repeat(2, minmax(20rem, 40rem));
  grid-gap:2.5rem;
  justify-content: center;
  overflow: hidden;
  justify-items: center;
}
.galerie:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: #794405;
  border-radius: 0 0 50% 50%;
  transform: scaleX(2.5);
}
.galerie .galerie-content{
  margin: 8rem auto;
  position: relative;
  max-width: 30rem;
}
.galerie-content p{
margin: 2rem auto;
}
.button-gal{
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #e0b075;
  color: #FFFFFF;
  border-radius: 0.9rem;
  margin: 0 0 0 6rem;
}
.button-gal:hover{
  background-color: #794405;
  color: white;
  border: solid 2px #FFFFFF;
  cursor: pointer;
}
.galerie-pic{
  position: relative;
  top: 0;
  left: 0;
}
.galerie-pic img{
  max-width: 100%;
  width: 20.5rem;
  height: auto;
  margin-top: 5rem;
}
.image1 {
  top: 0;
  left: 0;
}
.image2 {
  position: absolute;
  top: 9.975rem;
  left: 10.875rem;
}
.title { 
  text-align: center;
  font-size: 30px;
  font-family: 'poppins', serif;
  padding-bottom: 50px;
}
.title1 { 
  text-align: center;
  font-size: 30px;
  font-family: 'poppins', serif;
  position: relative;
  bottom: 10rem;
}
.galecont{
  padding-bottom: 150px;
}
  #drag-container { 
    padding: 0 0 300px;
  }
  #drag-container, #spin-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateX(-10deg);
    transform: rotateX(-30deg);
    }
  #drag-container img, #drag-container video {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
    height: 300px;
    line-height: 200px;
    text-align: center;
    -webkit-box-shadow: 0 0 8px #fff;
    box-shadow: 0 0 8px #fff;
    -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #0005);
    }
  #drag-container img:hover, #drag-container video:hover {
    -webkit-box-shadow: 0 0 15px #fffd;
    box-shadow: 0 0 15px #fffd;
    -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #0007);
    }
  #drag-container p {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%) rotateX(90deg);
    transform: translate(-50%,-50%) rotateX(90deg);
    color: #fff;
    }
  #ground {
    width: 900px;
    height: 900px;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%) rotateX(90deg);
    transform: translate(-50%,-50%) rotateX(90deg);
    background: -webkit-radial-gradient(center center, farthest-side , #9993, transparent);
    }
  #music-container {
    position: absolute;
    top: 0;
    left: 0;
    }
    @-webkit-keyframes spin {
    from{
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    } to{
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    }
    }
    @keyframes spin {
    from{
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    } to{
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    }
    }
    @-webkit-keyframes spinRevert {
    from{
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    } to{
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    }
    }
    @keyframes spinRevert {
    from{
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    } to{
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    }
    }
  .gallery-sec{
  position: relative;
  padding: 3.75rem 17%;
  width: 100%;
  height: 80vh;
  color: white;
  display: grid;
  grid-template-columns: repeat(2, minmax(20rem, 40rem));
  justify-content: center;
  justify-items: center;
  grid-gap:2.5rem;
  overflow: hidden;
  }
  .gallery-sec:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: #794405;
    border-radius: 50% 50% 50% 50%;
    transform: scaleX(2.5)
  }
  .gallery-contain h3{
    position: relative;
  }
  .gallery-contain p{
    position: relative;
    top: 10rem;
  }
  .galerie-pictures{
      position: relative;
      margin: -1.5rem 0 0 0;
      top: 0;
     left: 0;
    }
    .galerie-pictures img{
      max-width: 100%;
      width: 19.95rem;
      height: auto;
    }
  
 
 /* Slideshow container */
 
 .slideshow-container {
    max-width: 100vw;
    position: relative;
    margin-top: 5%;
    display: none;
    padding: 0 3rem 0 3rem;
 }
 .slideshow-container img{
   width: 100%;
   height: 20rem;
   border-radius: 1rem;
 }
 
 /* Number text (1/3 etc) */
 
 .numbertext {
    color: #f2f2f2;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    position: absolute;
    top: 0;
 }
 
 /* The dots/bullets/indicators */
 
 .dot {
    cursor: pointer;
    height: 0.9375rem;
    width: 0.9275rem;
    margin: 0 0.125rem;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    display: none;
 }
 .active,
 .dot:hover {
    background-color: #794405;
 }
 .square{
  cursor: pointer;
  height: 0.9375rem;
  width: 0.9275rem;
  margin: 0 0.125rem;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  display: none;
 }
 .active,
 .square:hover {
    background-color: #794405;
 }
 /* Fading animation */
 .fade {
    animation-name: fade;
    animation-duration: 1.5s;
 }
 @keyframes fade {
    from {
       opacity: 0.4;
    }
    to {
       opacity: 1;
    }
 }
/* FOOTER*/
footer{
	width: 100%;
	height: auto;
  background: #794405;
  margin-top: 5rem;	
}
footer .foot-container{
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 2rem;
	padding: 2rem 5%;
  justify-items: center;
}
 footer .foot-container .logofoot{
    width: 70%;
    height: 100%;
}
.links{
	position: relative;
}
.links li{
	list-style: none;
}
.links li a{
	color: white;
	text-decoration: none;
	margin-bottom: 1.25rem;
	display: inline-block;
	right: 22rem;
}
.links li a:hover{
	color: #000000;
  font-weight: bold;
}
.pDf { 
  display: flex;
  flex-direction: column;
}
.link_pdf { 
  padding-top: 60px;
}
.link_pdf li, .link_pdf a { 
  color: #fff;
  padding: 5px 5px;
  font-size: 15px;
}
.link_pdf li:hover, .link_pdf a:hover { 
  color: black;
}
.link_pdf a { 
  text-decoration: underline;
}
.sec p{
	position: relative;
	color: white;
	margin-bottom: 1rem;
}
.sec p::before{
	content: '';
	position: absolute;
	bottom: -0.16rem;
	left: 0;
	width: 11rem;
	height: 0.1rem;
	background: orange;
}
.sec a {
	position: absolute;
	color: white;
  text-decoration: none;
}
.sec a:hover { 
  color: black;
  font-weight: bold;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.sci{
	margin-top: 1.25rem;
	display: grid;
	grid-template-columns: repeat(4, 5rem);
}
.sci .social{
	width: 40px;
	height: 40px;
  border-radius: 50%;
}
.sci li{
	list-style: none;
}
.sci li a{
	display: inline-block;
	width: 3rem;
	height: 3rem;
	display: grid;
	align-content: center;
}
.back-to-top {
  position: fixed;
  bottom: -40px;
  right: 40px;
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  background: #ac804a;
  color: #fff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale(0.3);
  -ms-transform: scale(0.3);
  transform: scale(0.3);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.back-to-top:focus {
  color: #fff;
}
.back-to-top.show {
  bottom: 40px;
  right: 40px;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.back-to-top.show:hover {
  color: #fff;
  background-color: #794405;
  bottom: 30px;
  opacity: 1;
}
.arrow {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHN0eWxlPi5zdDB7ZmlsbDojZmZmfTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTMxOS4xIDIxN2MyMC4yIDIwLjIgMTkuOSA1My4yLS42IDczLjdzLTUzLjUgMjAuOC03My43LjZsLTE5MC0xOTBjLTIwLjEtMjAuMi0xOS44LTUzLjIuNy03My43UzEwOSA2LjggMTI5LjEgMjdsMTkwIDE5MHoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzE5LjEgMjkwLjVjMjAuMi0yMC4yIDE5LjktNTMuMi0uNi03My43cy01My41LTIwLjgtNzMuNy0uNmwtMTkwIDE5MGMtMjAuMiAyMC4yLTE5LjkgNTMuMi42IDczLjdzNTMuNSAyMC44IDczLjcuNmwxOTAtMTkweiIvPjwvc3ZnPg==);
  position: absolute; width: 12px; height: 12px; background-size: contain;
  transform: rotate(-90deg);
  top: 25%;
  left: 36.99%;
}
.arrow:nth-child(2){
  top: 42%;
}

@keyframes bounceAlpha {
  0% {opacity: 1; transform: rotate(-90deg) translateX(0px) scale(1);}
  25%{opacity: 0; transform: rotate(-90deg) translateX(10px) scale(0.9);}
  26%{opacity: 0; transform: rotate(-90deg) translateX(-10px) scale(0.9);}
  55% {opacity: 1; transform: rotate(-90deg) translateX(0px) scale(1);}
}

.back-to-top:hover .arrow{
  animation-name: bounceAlpha;
  animation-duration:1.4s;
  animation-iteration-count:infinite;
  animation-timing-function:linear;
}
.back-to-top:hover .arrow:nth-child(2){
  animation-name: bounceAlpha;
  animation-duration:1.4s;
  animation-delay:0.2s;
  animation-iteration-count:infinite;
  animation-timing-function:linear;
}
/* RESPONSIVE*/

@media only screen and (max-width: 981px){
  header .burger{
    display: block;
  }
  .userl { 
    display: block;
  }
  .user { 
    display: none;
  }
  header .nav-bar{
    position: fixed;
    flex-direction: column;
    min-width: 50px;
    height: 100vh;
    background: #f2f2f2;
    top: 0;
    right: -100%;
    padding: 80px 50px;
  }
  header .nav-bar.active{
    right: 0;
  } 
  header .nav-bar .close-burger{
    position: absolute;
    top: 0;
    left: 0;
    margin: 25px;
  }
  header .nav-bar a{
    display: block;
    margin: 1.1rem;
    padding: 0 0.9rem; 
  } 
  .logo img {
    width: 12vw;
    height: 9vh;
  } 
}
@media only screen and (max-width:768px) {
  p { 
    font-size: 15px;
  }
  h1 { 
    font-size: 20px;
    text-align: center;
  }
  h2{
    font-size: 19px;
  }
  h3 { 
    font-size: 18px;
  }
  .w3-container{
    padding: 0 50px;
  }
  .home{
    background-size: cover;
    text-align: center;
    height: 90vh;
  }
  .home-content h1{
    font-weight: 600;
    font-size: 2.0rem;
  }
.home-content h3{
  margin-left: 0;
  font-size: 1.55rem;
}
.btn{
  margin-left: 35%;
}
.part2{
  padding: 1.875rem 2rem 0 2rem;
  grid-template-columns: auto;
}
.close-box{
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-box p{
  text-align: center;
}
.btn-about{
  margin-bottom: 2rem;
}
.frame iframe{
  width: 100%;
  padding-left: 0;
}
.part3 h1{
  padding: 1.5rem 0 1rem 0;
  margin-bottom: 3rem;
}
.propos{
  padding: 0 2rem 8rem 2rem;
  text-align: center;
}
.propos h1{
  margin-top: 10px;
  position: relative;
}
.ifame-container{
  flex-direction: column;
}
.propos-frame iframe{
  width: 100%;
  height: 13.5rem;
  padding-left: 0;
}
.propos-box h2{
  padding-top: 0.3rem;
}
.propos-box p{
  padding: 10px 0 35px 0;
}
.section-card{
  bottom: 10rem;
}
.logopropos{
  width: 70%;
  height: 50%;
}
.propos-container{
  flex-direction: column;
  margin: -6.75rem 0 8.75rem 0;
}  
.reverse{
  display: flex;
  flex-direction: column-reverse;
}
.propos-img img{
  width: 100%;
}
    .framework-container{
      width: 90%;
      margin: 0 auto;
    }
    .framework-container iframe{
      width: 90%;
      height: 50vh; 
    } 
    .line-service{
      margin: 2rem auto;
    }
    .service .service-content p{
      padding-top: 0.25rem;
    }
    .service-video iframe{
      width: 100%;
      height: 50vh;    
}
    .service-gallery{
      margin: 0 0 0 3rem;
      width: 60vw;
      display: none;
}
.service-img{
  width: 17rem;
  height: 16rem;
}
  .service-img5{
  width: 17rem;
  height: 16rem;
}
.service-img3{
  width: 17rem;
  height: 16rem;
}
.service-items p{
  padding: 0 2rem 1rem 2rem;
  }
.service-items2 h4{
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem 1rem 2rem;
}
  footer{
  	padding: 3.5rem;
  }
  footer .foot-container{
  	grid-template-columns: repeat(1, 1fr);
    justify-items: start;
  }
  .sec p { 
    padding-top: 40px;
  }
  .galerie{
    grid-template-columns: repeat(1, 1fr);
    grid-gap:0rem;
  }
  .galerie .galerie-content{
    text-align: center;
  }
  .button-gal{
    margin: 0;
  }
  .galerie-pic{
    top: -14.5rem;
   left: 0;
  }
  .slideshow-container img {
    height: auto;
  }
  #drag-container { 
    padding: 40px 0 150px;
    margin: 0 3rem;
    transform: rotateX(-10deg);
  }
  #drag-container img { 
    width: 150px;
    height: 200px;
  }
  .galerie-pic img{
    max-width: 100%;
    width: 50%;
    height: auto;
  }
  .image2 {
    top: 4.875rem;
    left: 4.875rem;
}
.galerie-content p{
  margin: 20px 0;
}
.galerie-container{
margin:0 auto;
display: none;
}
.title { 
  padding-bottom: 45px;
  font-size: 20px;
}
.gallery-sec{
  grid-template-columns: repeat(1, 1fr);
  margin: 0 auto; 
  grid-gap:0rem;
}
.gallery-contain p{
  top: 0;
  padding: 20px 0 30px 0;
}
.galerie-pictures{
 top: -8rem;
}
.galerie-pictures img{
  width: 60%;
}
.slideshow-container{
  display: block;
  position: relative;
  bottom: 3rem;
}
.dot{
  display: inline-flex;
  position: relative;
  bottom: 4rem;
}
.square{
  display: inline-flex;
  position: relative;
  bottom: 4rem; 
}
#spin-container{
      padding: 0 0 8rem 0;
    }
    .galerie-images{
      display: none;
    }
    .part3-container{
      display: none;
    }
    .slider{
      display: block;
      margin:  0 0 0 2.5rem;
      padding: 0 0 12rem 0; 
  }
  .slider img{
    width: 100%;
    height: 21.5rem;
  }
  .back-to-top.show {
    right: 50px;
  }  
}
@media screen and (min-width: 768px)
    and (max-width: 1024px) {
      .home-content h1{
        margin-top: 2rem;  
        font-size: 2.5rem;  
      }
    .home-content h3{
      margin-left: 20rem;
      font-size: 2.0rem;
    }
    .about-card { 
      width: 45%;
    }
    .btn{
      margin-left: 36rem;
    }
    .part2{
      padding: 1.875rem 3.75rem 0 3.75rem;
      grid-template-columns: auto;
    }
    .close-box{
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .close-box p{
      text-align: center;
    }
    .btn-about{
      margin-bottom: 2rem;
    }
    .frame iframe{
      width: 100%;
      height: 28.0rem;
    }
    .part3-container{
      grid-template-columns: repeat(2, 1fr);
    }
    .propos h1{
      position: relative;
    }
    .propos{
      padding: 0 5.5rem 5.75rem 5.5rem;
      text-align: center;
    }
    .propos-box p{
      padding: 0.5rem 0 1.5rem 0;
      font-size: 15px;
    }
    .propos-box h2{
      padding-top: 0.65rem;
      font-size: 25px;
    }
    .ifame-container{
      flex-direction: column;
    }
    .propos-frame iframe{
      width: 100%;
      height: 15rem;
    }
    .propos-img img{
      width: 18.75rem;
      margin: 0 0 -0.445rem 0;
    }
    .propos-text{
      font-size: 0.93rem;
    }
    
   .propos-container{
    margin: -5.75rem 0 5.75rem 0;
  }
    .service-video iframe{
      width: 100%;
      height: 50vh;    
   }
    .service-gallery{
      width: 95vw;
      grid-template-columns: repeat(2, minmax(10rem, 20rem));
   }
.service-img{
  width: 20.75rem;
  height: 18.75rem;
}
.service-img1{
  width: 20.75rem;
  height: 18.75rem;
}
  .service-img5{
  width: 20.75rem;
  height: 18.75rem;
}
.service-img3{
  width: 20.75rem;
  height: 18.75rem;
}
.service-items p{
  max-width: 40rem;
}
.part3-container{
  margin-right: 5rem;
}
.button-gal{
  margin: 0 0 0 3rem;
}
.galerie-container{
  margin:0 auto;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2.5rem;
  bottom: 8rem;
  }
  .gallery-img1 {
    width: 18.5rem;
    margin-left: 0;
    height: 350px;
    }
    .gallery-img2 {
      width: 18.5rem;
      height: 350px;
    }
    .gallery-img3 {
      width: 18.5rem;
      right: 0;
      height: 350px;
    }
    .gallery-img4 {
      width: 296px;
      height: 350px;
      margin-left: 0;  
    }
    .galerie-images{
      margin:0 auto;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      grid-gap: 2.0rem;
      bottom: 8rem;
    }
    .gallery-img0{
    width: 19.5rem;
    height: 23.5rem;
    height: 350px;
    }
  .galerie-pic img{
    max-width: 100%;
    width: 18.5rem;
  }
  .galerie-pictures img{
    width: 20rem;
  }
  .image2 {
    position: absolute;
    top: 9.875rem;
    left: 6.875rem;
    border: 0.063rem solid #000000;
  }
  .gallery-contain p{
    top: 8rem;
  }
  footer{
    padding: 3.5rem;
  }
  footer .foot-container{
  	grid-template-columns: repeat(2, 1fr);
    justify-items: start;
  }
  .sec p { 
    padding-top: 40px;
  }
  }
  @media screen and (min-width: 1024px)
    and (max-width: 1200px) {
      .home-content h1{
        font-size: 3.0rem;
      } 
      .home-content h3{
        margin-left: 30rem;
        font-size: 2.25rem;
      }  
      .btn{
        margin-left: 48.75rem;
      }
     .part2 {
      padding: 1.875rem 3rem 0 3rem;
    }
    .propos{
      padding: 0 3rem 5.75rem 3rem;
    }
    .propos-frame iframe{
      height: 30rem;
    }
.propos-text{
  font-size: 0.91rem;
}
.propos-container{
  margin: -5.75rem 0 5.75rem 0;
}
    .propos-img img{ 
      width: 18.75rem;
      margin: 0 0 -0.575rem 0;
    }
    .service-video iframe{
      width: 100%;
      height: 60vh;    
}
.service-gallery{
margin: 0 auto;
width: 99vw;
}
.service-img{
  width: 18.75rem;
  height: 18.75rem;
}
  .service-img5{
  width: 18.75rem;
  height: 18.75rem;
}
.service-img3{
  width: 18.75rem;
  height: 18.75rem;
}
  .galerie:before{
    border-radius: 0 0 50% 50%;
    transform: scaleX(2.5);
  }
  .button-gal{
    margin: 0 0 0 3rem;
  }
  .galerie-pic img{
    max-width: 100%;
    width: 18.5rem;
  }
  .image2 {
    position: absolute;
    top: 9.975rem;
    left: 8.875rem;
    border: 0.063rem solid #000000;
  }
    .galerie-container{
      margin:0 auto;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 1.5rem;
      bottom: 8rem;
      }
      .gallery-img1 {
        width: 18.5rem;
        margin-left: 0;
        }
        .gallery-img2 {
          width: 18.5rem;
        }
        .gallery-img3 {
          width: 18.5rem;
          right: 0;
        }
        .gallery-img4 {
          width: 18.5rem;
          height: 23.5rem;
          margin-left: 0;  
        }
        .gallery-contain p{
          top: 11.75rem;
        }
        .galerie-images{
          margin:0 auto;
          bottom: 8rem;
          grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
          grid-gap: 2.0rem;
        }
        .gallery-img0{
        width: 18.5rem;
        height: 23.5rem;
        }
        footer{
          padding: 2.5rem;
        }
        footer .foot-container{
          grid-template-columns: repeat(3, 1fr);
        }
  }
@media screen and (min-width: 768px)
  and (max-width: 959px) {
    .propos-text{
      width: 25rem; 
      -webkit-line-clamp:6;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .propos-text:hover{
      overflow: auto;
    }
    .propos-container{
      width: fit-content;
    }
    .propos-img img{
      width: 16.5rem;
      margin: 0 0 -0.45rem 0;
    }
    .service-video{
      width: 47rem;
    }
  }
  @media screen and (min-width: 360px)
  and (max-width: 550px) {
    .button-gal{
      margin: 0 0 1rem 0;
    }
    .galerie-content h1{
     width: 18.5rem;
    }
    .galerie-content p{
      width: 18.5rem;
    }
  .propos-box h2{
    padding-top: 0.5rem;
  }
  .propos-frame iframe{
    padding: 0 0 1.5rem 0.5rem;
  }
}
  @media screen and (min-width: 360px)
  and (max-width: 689px) {  
.container{
  padding: 0 3rem 0 3rem;
}
.about-card{
  width: 100%;
  height: 820px;
}
.about-image{
  border-top-right-radius: 0.9rem;
  border-top-left-radius: 0.9rem;
}
}
@media screen and (min-width: 960px)
  and (max-width: 995px) {  
.propos-text{
  font-size: 0.93rem;
}
.propos-img img{
  width: 18.75rem;
}
.propos-container{
  margin: -5.75rem 0 5.75rem 0;
}
}
@media screen and (min-width: 280px)
    and (max-width: 389px) {
      .propos{
        height: 155vh;
      }
    }