.img-fluid {
    max-width: 100%;
}
.image_lourd {
    width:75%;
}
.block_image {
    width: 25%;
}
.image_center {
    display: flex;
    justify-content: center;
}
.image_camion {
    width:100%;
}
.flex-container {
    display: flex;
}
@media (max-width: 800px)
{
    .block_image {
        width: 95%;
        display:block;
    }
    .flex-container {
        display: block;
    }
    .img_width {

      max-width: fit-content;
      max-height: fit-content;
      width:100px;
      height:100px;
    }
    
  
}


.img_width {

  max-width: fit-content;
  max-height: fit-content;
  width:300px;
  height:300px;
  max-width: 100%;
}

/* Slideshow container */
.slideshow-container {
  max-width: 300px;
  max-height: 300px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  margin-top:20px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.responsive {
  width: 100%;
  height: auto;
}


body, html {
  height: 100%;
}


* {box-sizing:border-box}

@media (min-width: 800px)
{

  /* The hero image */
  .hero-image {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../../assets/images/lamaison/lamaison8");

    /* Set a specific height */
  height: auto;

    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* Place text in the middle of the image */
  .hero-text {
      padding:1em;
      text-align: center;
      /*color: white;*/
    height:1000px;
  }


  .parallax {
    /* The image used */
    background-image: url('../../../assets/images/lamaison/lamaison8.jpg');
    /* Full height */
    height: 100%; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
 
}



 /* The grid: Four equal columns that floats next to each other */
 /*
 .column {
  float: left;
  width: 25%;
  padding: 10px;
}
*/



/* Style the images inside the grid */
.column img {
  opacity: 0.8;
  cursor: pointer;
}

.column img:hover {
  opacity: 1;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container (positioning is needed to position the close button and the text) */
.container {
  position: relative;
  display: none;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
}

/* Closable button inside the image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
} 

 /* Style the Image Used to Trigger the Modal */
 #myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
} 

@media only screen and (min-width: 1200px) {
 
  .wrapper-img
  {
    margin-top:40px;
    display: grid;
    max-width: 100%;
  }
   
  .collumn-one {
    grid-column: 0 /20;
  }
  
  .collumn-two { 
    grid-column: 15/ 30;
  }
  .collumn-three { 
    grid-column: 30/ 45;
  }

  .collumn-four { 
    grid-column: 45/ 59;
  }

  .ligne1 { 
    grid-row: 1;
  }
  .ligne2 { 
    grid-row: 2;
  }
  .ligne3 { 
    grid-row: 3;
  }

} 

@media only screen and (max-width: 1200px) and (min-width: 891px) {
 
  .wrapper-img
  {
    margin-top:40px;
    display: grid;
    max-width: 100%;
  }
   
  .collumn-one {
    grid-column: 0 /20;
  }
  
  .collumn-two { 
    grid-column: 20/ 40;
  }
  .collumn-three { 
    grid-column: 40/ 60;
  }

  .ligne1 { 
    grid-row: 1;
  }
  .ligne2 { 
    grid-row: 2;
  }
  .ligne3 { 
    grid-row: 3;
  }

  .ligne11 { 
    grid-row: 4;
  }
  .ligne12 { 
    grid-row: 4;
    grid-column: 20/ 40;
  }
 
} 

@media only screen and (max-width: 890px) and  (min-width: 590px) {
 
  .wrapper-img
  {
    margin-top:40px;
    display: grid;
    max-width: 100%;
  }
   


  .ligne1 { 
    grid-row: 1;
  }
  .ligne2 { 
    grid-row: 2;
  }
  .ligne3 { 
    grid-row: 3;
  }

  .ligne21 { 
    
    grid-row: 4;
  }
  .ligne22 { 
    grid-row: 4;
  }
  .ligne23 { 
    grid-row: 5;
  }
  .ligne24 { 
    grid-row: 5;
  }
  .ligne25 { 
    grid-row: 6;
  }
} 
