html, body {
	height: 100%;
}

body {
	padding-top   : 86px;
	padding-bottom: 43px;
}

.container {
	min-height: 100%;
}

@media (min-width: 992px) {
  body {
    padding-top: 86px;
  }
}

@media (min-width: 992px) {
  .carousel-item {
    height: 70vh;
    min-height: 300px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
}

.portfolio-item {
  margin-bottom: 30px;
}

.no-list {
  list-style-type: none;
}

.myImage {
  opacity: 0.5;
  transition: all 0.3s ease-in-out; 
  -webkit-transition: all 0.3s ease-in-out;
  padding: 10px;
}

.myImage:hover {
  opacity: 1;
}

.bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.navbar-toggler {
  opacity: 0.5;
  transition: all 0.3s ease-in-out; 
  -webkit-transition: all 0.3s ease-in-out;
}

.navbar-toggler:hover {
  opacity: 1;
}

.bg-dark {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.titleColor {
  color: maroon;
}

.titleColor1 {
  color: #146E21;
}

.mouv {
  opacity: 0.5;
}

.mouv:hover {
  opacity: 1;
}

/****************
* Comparaison   *
****************/

.img-comp-container {
  position: relative;
  height: 560px; /*should be the same height as the images*/
}
.img-comp-img {
  position: absolute;
  width: auto;
  height: auto;
  overflow:hidden;
}
.img-comp-img img {
  display:block;
  vertical-align:middle;
}
.img-comp-slider {
  position: absolute;
  z-index:9;
  cursor: ew-resize;
  /*set the appearance of the slider:*/
  width: 40px;
  height: 40px;
  background-color: #2196F3;
  opacity: 0.7;
  border-radius: 50%;
}

.img-comp-slider:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.caption2 {
  margin: auto;
  display: block;
  text-align: center;
  color: black;
  padding: 10px;
}

/****************
* Réalisations  *
****************/

/* Add Animation */
.modalVue-content, #caption {    
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Modal (background) */
.modalVue {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content */
.modalVue-content {
  display: none;
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.closeVue {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.closeVue:hover,
.closeVue:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prevVue,
.nextVue {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.nextVue {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prevVue:hover,
.nextVue:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

img {
  margin-bottom: -4px;
}

.caption {
  margin: auto;
  display: block;
  text-align: center;
  color: white;
  padding: 10px;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);