#bigPic {
  width: 100%;
  height: 50vh;
  margin-top: 20vh;
  padding: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #050505;
  background: url("../images/photos/background.jpg");
  background-size: cover;
  transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -o-transition: opacity 1s;
}

#bigPic img {
  max-width: 200%;
  height: auto;
  padding: 0;
  margin: 0;
}

.pagination .page-item .page-link {
  font-size: 0.8em;
  margin-left: 5px;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.galerie {
  width: 100%;
}

.galerie [class*="col-"] {
  padding: 0;
  margin: 0;
}

.galerie .image-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 25vh;
  padding: 0;
  border: 5px solid #fff;
}

.galerie .image-box img {
  position: absolute;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.galerie .image-box .footprint img {
  z-index: 99999;
  opacity: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.galerie .image-box .footprint:hover img {
  margin-top: -20px;
  opacity: 0.3;
}

.galerie img {
  height: auto;
  transition: all 2s ease;
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -ms-transition: all 2s ease;
  -o-transition: all 2s ease;
}

.galerie .img1 {
  z-index: 9999;
}

.galerie .img2,
.galerie .img3,
.galerie .img4 {
  opacity: 0;
}

.galerie .fade-in {
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  animation: fadeIn 1s linear forwards;
  -webkit-animation: fadeIn 1s linear forwards;
}

.galerie .fade-out {
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  animation: fadeOut 1s linear forwards;
  -webkit-animation: fadeOut 1s linear forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    z-index: -1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    z-index: -1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    z-index: 9999;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    z-index: 9999;
  }
}

@media screen and (max-width: 415px) {
  #bigPic {
    background: url("../images/photos/background.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #050505;
  }
  #bigPic img {
    max-width: 220%;
    margin-left: -50% !important;
  }
  .galerie .col-4,
  .galerie .image-box {
    max-height: 10vh;
  }
  .footprint img {
    z-index: 99999;
    opacity: 0;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
  }
  .footprint:hover img {
    opacity: 0.3;
  }
}

@media screen and (max-width: 800px) {
  #bigPic {
    margin-top: 15vh;
  }
  #bigPic img {
    width: 300%;
    margin-left: -50% !important;
  }
  .galerie .col-4,
  .galerie .image-box {
    max-height: 10vh;
  }
  .footprint {
    z-index: 99999;
    opacity: 1;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
  }
  .footprint:hover img {
    margin-top: 0px;
    opacity: 0.3;
  }
}

@media screen and (max-width: 768px) and (max-height: 415px) {
  #bigPic {
    margin-top: 20vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #050505;
  }
  #bigPic img {
    max-width: 140%;
    margin-top: -10vh;
  }
  .galerie .col-4,
  .galerie .image-box {
    max-height: 30vh;
  }
}
/*# sourceMappingURL=folio.css.map */