.acceuil .hero {
  padding: 0 0 0 0;
}

.carrousel {
}

.carrousel p, 
.carrousel h3 {
  color: #fff;
}

.carrousel .carrousel__slide {
  /*height: calc(78vh - 221px);*/
  min-height: calc(78vh - 221px);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.carrousel .carrousel__container {
  display: flex;
  /*justify-content: center;*/
  justify-content: flex-start;

  /*justify-content: flex-end;*/

  align-items: center;
  /*min-height: 100%;*/
  min-height: calc(78vh - 221px);
  /*background-color: aquamarine;*/
  padding-top: 24px;
  padding-bottom: 24px;
}

.carrousel .carrousel__box {
  /*width: 40%;*/
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  width: calc(310px + ((40% - 24px - 310px)/2));
  padding: 24px;
}

.carrousel .carrousel__slide.carrousel__slide--right .carrousel__container {
  justify-content: flex-end;
}

.carrousel .carrousel__title {
  font-family: "Source Sans Pro regular", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  /*font-weight: 500;*/
  font-weight: bold;
  margin-bottom: 24px;
}

.carrousel .carrousel__btn {
  display: block;
  padding: 8px 12px;
  margin-top: 24px;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.1s ease-in, border-color 0.1s ease-in;
}

.carrousel .carrousel__btn:hover {
  text-decoration: none;
  background-color: #70c2f2;
  border-color: #70c2f2;
}

.carrousel .carrousel__box > :first-child {
  margin-top: 0;
}

.carrousel .carrousel__box > :last-child {
  margin-bottom: 0;
}

.carrousel .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  justify-content: flex-end;
  bottom: auto;
  width: auto;
}

.carrousel .slick-dots > :first-child {
  margin-left: 0;
}

.carrousel .slick-dots > :last-child {
  margin-right: 0;
}

.carrousel .slick-dots li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  margin: 0 5px;
  width: 25px;
  height: 5px;
}

.carrousel .slick-dots li::before {
  content: none;
}

.carrousel .slick-dots li button {
  width: 25px;
  height: 5px;
  padding: 0;
  background-color: rgba(0,0,0,0.6);
}

.carrousel .slick-dots li.slick-active button,
.carrousel .slick-dots li button:hover {
  background-color: #70c2f2;
}

.carrousel .slick-dots li button::before {
  content: none;
}

.carrousel .slick-next,
.carrousel .slick-prev {
  height: 28px;
  width: 13px;
  background-image: url("../images/icons/chevron_right_white.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 13px 28px;
  z-index: 10;
}

.carrousel .slick-next {
  right: 12px;
}

.carrousel .slick-prev {
  left: 12px;

  -webkit-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}

.carrousel .slick-next::before,
.carrousel .slick-prev::before {
  display: none;
  content: none;
}