@import 'https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900';
@import 'https://fonts.googleapis.com/css?family=Boogaloo';
* {
  box-sizing: border-box;
}
body {
  font-family: 'Pt sans narrow', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  background: #222;
  font-size: 9px;
}
@media screen and (min-width: 320px) {
  body {
    font-size: calc(9px + 7 * ((100vw - 320px) / 960));
  }
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 16px;
  }
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.project {
  height: 100vh;
  min-width: 100vw;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.project__list {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 1.2em;
  color: #9acd32;
}
.project__link {
  will-change: opacity;
  display: block;
  margin: 2.5vh 0;
}
.project__link:nth-child(1) {
  -webkit-animation: bright 3s infinite alternate ease-in-out;
          animation: bright 3s infinite alternate ease-in-out;
}
.project__bg-list {
  position: absolute;
  top: 0;
  left: 0;
}
.project__bg-item {
  will-change: transform, opacity;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-filter: blur(30px);
          filter: blur(30px);
  -webkit-transition: all 4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 4s cubic-bezier(0.23, 1, 0.32, 1);
}
.project__bg-item--active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.project__bg-item:nth-child(1) {
  background: url("https://www.lacor.info/film/bitter_money/img/large/bitter_money_17.jpg") 35%/cover;
}
.project__bg-item:nth-child(2) {
  background: url("https://www.lacor.info/film/bitter_money/img/large/bitter_money_13.jpg") 30%/cover;
}
.project__bg-item:nth-child(3) {
  background: url("https://www.lacor.info/film/bitter_money/img/large/bitter_money_04.jpg") 30%/cover;
}
.project__bg-item:nth-child(4) {
  background: url("https://www.lacor.info/film/bitter_money/img/large/bitter_money_19.jpg") center/cover;
}
.project__bg-item:nth-child(5) {
  background: url("https://www.lacor.info/film/bitter_money/img/large/bitter_money_21.jpg") 64%/cover;
}
.project__bg-item:nth-child(6) {
  background: url("https://www.lacor.info/film/bitter_money/img/large/bitter_money_15.jpg") 64%/cover;
}
.project__bg-item:nth-child(7) {
  background: url("https://www.lacor.info/film/bitter_money/img/large/bitter_money_14.jpg") center/cover;
}
@-webkit-keyframes bright {
  to {
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
}
@keyframes bright {
  to {
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.51);
  background-color: rgba(19,46,5,0.51);
  border-radius: 10px;
}
::-webkit-scrollbar {
  width: 5px;
  background-color: rgba(255,255,255,0.2);
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #111;
  background-image: -webkit-gradient(linear, 40% 0%, 75% 84%, from(#e9a616), to(#c05d07), color-stop(0.6, #eb1e55));
}
/* Page d'accueil */
main {
  position: absolute;
  width: 100%;
  bottom: 5vh;
  color: #fff8dc;
  padding: 1vh 1vw 2vh 2vw;
  opacity: 0.9;
}
main h1 {
  font-weight: 300;
  margin: 0 0 1.7vh;
  text-align: center;
  font-size: 2em;
}
main h2 {
  text-align: center;
}
main .prix {
  color: #64bec4;
  font-size: 0.8em;
  text-shadow: 1px 1px 1px #111;
}
main .resume {
  display: block;
  text-align: justify;
  padding-top: 1em;
}
main p {
  margin: 0;
  text-align: center;
}
main p a {
  font-weight: bold;
  color: #ff581a;
  text-shadow: 1px 1px 1px #444;
}
/*all and (min-width: 401px)*/
@media all and (min-width: 401px) {
  .resume {
    width: 60%;
    margin-left: 20%;
    max-width: 900px;
  }
  main {
    bottom: 15vh;
  }
}
/*all and (min-width: 481px)*/
@media all and (min-width: 481px) {
  body {
    line-height: 1.5em;
  }
}
/*all and (min-width: 850px)*/
@media all and (min-width: 850px) {
  body {
    line-height: 1.5em;
  }
}
/*all and (min-width: 1000px)*/
@media all and (min-width: 1000px) {
  body {
    line-height: 1.5em;
  }
}
/*all and(max-width 320px)*/
@media all and (max-width: 320px) {
  body {
    line-height: 1.3em;
  }
  main {
    bottom: 15vh;
  }
  .resume {
    display: none !important;
  }
}
