body {
  margin: 0;
  padding: 0;
}

#PageContainer {
  position: relative;
  z-index: 1;
}

img, video {
  display: block;
  max-width: 100%;
}

.parallax_container {
  position: relative;
}

.lookbook_grid {
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  display: grid;
  grid-template-columns:
    [left-viewport-edge] 1fr
    [left-grid-edge] repeat(12, [grid-col-start] minmax(40px, 80px)) [right-grid-edge]
    1fr [right-viewport-edge];
  grid-column-gap: 20px;
  grid-row-gap: 12vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  justify-items: center;
  padding-bottom: 12vh;
}

@media screen and (max-width: 740px) {
  .lookbook_grid--no_mobile_row_gap {
    grid-row-gap: 0;
  }
}

@media screen and (max-width: 740px) {
  .lookbook_grid {
    grid-template-columns: [left-viewport-edge left-grid-edge] 1fr [right-viewport-edge right-grid-edge];
    grid-column-gap: 0;
    padding-bottom: 0;
  }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.a-rotate {
  animation: rotate 240s infinite;
}

@media screen and (min-width: 740px) {
  .b-red_background {
    padding: 12vh 0 0;
    position: relative;
  }

  .b-red_background:before {
    background: #FF0000;
    content: '';
    height: 100vh;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }

  .b-pink_background {
    background: #FAC9DE;
    min-height: 76vh;
    padding: 12vh 0;
    position: relative;
  }

  .b-yellow_background {
    padding: 12vh 0 0;
    position: relative;
  }

  .b-yellow_background:before {
    background: #FFFC00;
    bottom: 48vh;
    content: '';
    left: 0;
    position: absolute;
    top: 24vh;
    width: 100%;
    z-index: -1;
  }

  .b-black_background {
    padding: 12vh 0 0;
    position: relative;
  }

  .b-black_background:before {
    background: #000;
    bottom: 24vh;
    content: '';
    left: 0;
    position: absolute;
    top: 48vh;
    width: 100%;
    z-index: -1;
  }
}

@media screen and (max-width: 740px) {
  .b-red_background,
  .b-pink_background,
  .b-yellow_background,
  .b-black_background {
    padding: 1rem;
    position: relative;
    grid-row-gap: 0;
  }

  .b-red_background {
    background: #FF0000;
  }

  .b-pink_background {
    background: #FAC9DE;
  }

  .b-yellow_background {
    background: #FFFC00;
  }

  .b-black_background {
    background: #000;
  }
}

@media screen and (min-width: 740px) {
  .o-remove_top_row_gap {
    margin-top: -12vh;
  }

  .o-double_top_row_gap {
    margin-top: 12vh;
  }

  .o-negative_bottom_row_gap {
    margin-bottom: -12vh;
  }

  .o-align_to_top {
    align-self: start;
  }

  .o-align_to_bottom {
    align-self: end;
  }
}

.r-center_to_right_viewport_edge {
  grid-column: grid-col-start 7 / right-viewport-edge;
}

.r-one_left_of_center_to_right_viewport_edge {
  grid-column: grid-col-start 6 / right-viewport-edge;
}

.r-half_width {
  grid-column: grid-col-start 7 / right-grid-edge;
}

.r-two_thirds_width {
  grid-column: grid-col-start 9 / right-grid-edge;
}

.r-one_thirds_width {
  grid-column: grid-col-start 9 / span 3;
}

.r-one_left_of_center_to_grid_edge {
  grid-column: grid-col-start 6 / right-grid-edge;
}

.r-two_left_of_center_to_grid_edge {
  grid-column: grid-col-start 5 / right-grid-edge;
}

.r-one_right_of_center_to_grid_edge {
  grid-column: grid-col-start 8 / right-grid-edge;
}

.r-two_right_of_center_to_viewport_edge {
  grid-column: grid-col-start 9 / right-viewport-edge;
}

.r-one_left_of_edge_to_viewport_edge {
  grid-column: grid-col-start 12 / right-viewport-edge;
}

.l-center_to_left_viewport_edge {
  grid-column: left-viewport-edge / grid-col-start 7;
}

.l-half_width {
  grid-column: left-grid-edge / span 6;
}

.l-two_thirds_width {
  grid-column: grid-col-start 2 / span 4;
}

.l-one_right_of_center_to_grid_edge {
  grid-column: left-grid-edge / grid-col-start 8;
}

.l-two_right_of_center_to_grid_edge {
  grid-column: left-grid-edge / grid-col-start 9;
}

.l-one_left_of_center_to_grid_edge {
  grid-column: left-grid-edge / span 5;
}

.c-one_column_padding {
  grid-column: grid-col-start 2 / span 10;
}

.c-two_column_padding {
  grid-column: grid-col-start 3 / span 8;
}

.f-full_grid_width {
  grid-column: left-grid-edge / right-grid-edge;
}

.f-full_viewport_width {
  grid-column: left-viewport-edge / right-viewport-edge;
}

@media screen and (max-width: 740px) {
  .r-center_to_right_viewport_edge,
  .r-one_left_of_center_to_right_viewport_edge,
  .r-half_width,
  .r-two_thirds_width,
  .r-one_thirds_width,
  .r-one_left_of_center_to_grid_edge,
  .r-two_left_of_center_to_grid_edge,
  .r-one_right_of_center_to_grid_edge,
  .r-two_right_of_center_to_viewport_edge,
  .r-one_left_of_edge_to_viewport_edge,
  .l-center_to_left_viewport_edge,
  .l-half_width,
  .l-two_thirds_width,
  .l-one_right_of_center_to_grid_edge,
  .l-two_right_of_center_to_grid_edge,
  .l-one_left_of_center_to_grid_edge,
  .c-one_column_padding,
  .c-two_column_padding,
  .f-full_grid_width,
  .f-full_viewport_width {
    grid-column: left-viewport-edge / right-viewport-edge;
  }
}

.lookbook_icon_parent {
  overflow: visible;
  position: relative;
}

.lookbook_icon {
  max-height: 400px;
  z-index: 1;
  min-width: 200px;
}

.lookbook_icon--large {
  min-width: 400px;
}

@media screen and (max-width: 740px) {
  .lookbook_icon {
    max-height: 250px;
    min-width: 200px;
    margin: auto;
  }

  .lookbook_icon--large {
    min-width: 300px;
  }
}

.lookbook_icon--overlay_left {
  height: 200px;
  top: 32%;
  left: 10%;
  position: absolute;
  z-index: 1;
}

.lookbook_icon--overlay_right {
  height: 200px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(-90deg) translate3d(50%, 40%, 0);
  z-index: 1;
}

.lookbook_icon--overlay_center {
  height: 900px;
  max-height: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(-20deg) translate3d(35%, -40%, 0);
  z-index: 1;
}

.lookbook_icon--overlay_bottom {
  height: 800px;
  max-height: none;
  max-width: none;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(-90deg) translate3d(-65%, 25%, 0);
  z-index: 1;
}

.lookbook_icon--top_right {
  height: 500px;
  max-height: none;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(-20deg) translate3d(50%, 0%, 0);
  z-index: 1;
}

.lookbook_credits {
  line-height: 3;
  width: 100%;
  font-family: 'Programme', sans-serif;
  color: #3d76c7;
}

@media screen and (max-width: 740px) {
  .lookbook_credits {
    padding: 2rem 4rem;
  }
}

.lookbook_credits-row:nth-child(1) { filter: brightness(1) }
.lookbook_credits-row:nth-child(2) { filter: brightness(.9) }
.lookbook_credits-row:nth-child(3) { filter: brightness(.8) }
.lookbook_credits-row:nth-child(4) { filter: brightness(.7) }
.lookbook_credits-row:nth-child(5) { filter: brightness(.6) }

.lookbook_credits span {
  font-size: .8em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lookbook_credits a {
  text-decoration: none;
  color: inherit;
}