
.carousel {
  z-index: 0;
}
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}


.carousel-control span {
  position: absolute;
  top: 30%;
  width: 40px;
  left: 10px;
  font-size: 60px;
  display: block;
  font-weight: 100;
}
.carousel-control.right span {
  left: auto;
  right: 10px;
}

body .carousel-indicators {
  bottom: 0px;
  right: 0px;
  left: auto;
  text-align: right;
  padding-right: 20px;
}



html,
body,
.carousel,
.carousel-inner,
.carousel-inner .item {
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed; 
}
.item:nth-child(1) {
  background-image: url(photos/01.jpg); 
}
.item:nth-child(2) {
  background-image: url(photos/02.jpg); 
}
.item:nth-child(3) {
  background-image: url(photos/03.jpg); 
}
.item:nth-child(4) {
  background-image: url(photos/04.jpg); 
}
.item:nth-child(5) {
  background-image: url(photos/05.jpg); 
}
.item:nth-child(6) {
  background-image: url(photos/06.jpg); 
}
.item:nth-child(7) {
  background-image: url(photos/07.jpg); 
}
.item:nth-child(8) {
  background-image: url(photos/08.jpg); 
}



.header-wrapper {
  position: absolute;
  top: 10%;
  width: 100%;
  z-index: 10;
}

.header {
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  font-size: 30px;
}
.header h2 {
  font-size: 24px;
}
.arrow-down {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: #fff;
  font-size: 70px;
  font-weight: 100;
  display: none;
  position: absolute;
  left: 45%;
  bottom: 10px;
  z-index: 9;
}





.content-wrapper {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 10;
}

.content {
  margin-top: 30px;
  color: #fff;
  /*text-shadow: 1px 1px 1px #000;*/
  font-size: 18px;
  font-weight: 300;
  padding: 20px;
  margin: 0px auto;

}

.content ul {
  list-style: none;
  padding-left: 32px;
  margin: 0px;
}
.content ul li {
  position: relative;
  m
}
.content ul li:before {
  content: "\00BB";
  display: block;
  position: absolute;
  left: -20px;
}


hr {
  width: 45px;
  height: 1px;
  margin-top: 14px;
  margin-bottom: 14px;
  margin-left: 0px;
  border-top: 1px solid #fff;
}
.contact-infos a {
  text-shadow: 1px 1px 1px #000;
}


@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
  .carousel-control span {
    top: 40%;
  }
  .content-wrapper {
    position: relative;
    background-color: #fff;
  }
  .content {
    color: #333;
  }
  .content .col-md-4 {
    margin-top: 20px;
  }
  .arrow-down {
    display: block;
  }
  .contact-infos a {
    text-shadow: none;
  }
  .header-wrapper {
    top: 5%;
  }

}