.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

::-moz-selection { /* Code for Firefox */
    color:        #ffffff; 
    background:   #000000;
}

::selection {
    color:        #ffffff; 
    background:   #000000;
}

/* BODY */
body
{
  background-color:      #f2f2f2;
  -webkit-font-smoothing:antialiased;
  overflow: hidden;
  background-color: #fedc09;
}


/* HYPERLINKS */
a, a:visited 
{
  text-decoration:   none;
  outline:           none;
  color: inherit;
}
a:hover
{
  text-decoration:   underline;
}

a img
{
  border:            none;
}


/* EFFECTS */
.shadow {
    box-shadow: 0px 0px 8px rgba(0,0,0,.15);
}


#loading-animation {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000000;
  display: none;
  z-index: 100;
}
#loading-animation.revealed {
  display: block;
}
#loading-animation .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -44px;
  margin-left: -4px;
}
  #loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
  }
    #loader > div {
      position: absolute;
      display: block;
    }
      #loader img {
        position: absolute;
        display: block;
      }
    #loader-champagne {
      top: -1px;
      left: 12px;
      animation-name: loaderchampagnenanim;
      animation-duration: 2s;
      animation-iteration-count: infinite;
      animation-timing-function: cubic-bezier(.59,0,.46,.99);
    }
    #loader-club {
      top: 12px;
      left: 0px;
      animation-name: loadercclubnanim;
      animation-duration: 2s;
      animation-iteration-count: infinite;
      animation-timing-function: cubic-bezier(.79,.01,.29,.99);
    }
    #loader-sandwich {
      top: 18px;
      left: 20px;
      animation-name: loadercsandwichnanim;
      animation-duration: 2s;
      animation-iteration-count: infinite;
      animation-timing-function: cubic-bezier(.59,0,.46,.99);
    }
    @keyframes loaderchampagnenanim {
        0%{
          transform: translate(0px,0px);
          -webkit-transform: translate(0px,0px);
        }
        10%{
          transform: translate(0px,0px);
          -webkit-transform: translate(0px,0px);
        }
        30%{
          transform: translate(-10px,1px);
          -webkit-transform: translate(-10px,1px);
        }
        58%{
          transform: translate(-10px,1px);
          -webkit-transform: translate(-10px,1px);
        }
        78%{
          transform: translate(0px,0px);
          -webkit-transform: translate(0px,0px);
        }
        100%{
          transform: translate(0px,0px);
          -webkit-transform: translate(0px,0px);
        }
    }
    @keyframes loadercclubnanim {
        0%{
          transform: translate(0px,0px);
          -webkit-transform: translate(0px,0px);
        }
        20%{
          transform: translate(0px,0px);
          -webkit-transform: translate(0px,0px);
        }
        50%{
          transform: translate(30px,-3px);
          -webkit-transform: translate(30px,-3px);
        }
        66%{
          transform: translate(30px,-3px);
          -webkit-transform: translate(30px,-3px);
        }
        100%{
          transform: translate(0px,0px);
          -webkit-transform: translate(0px,0px);
        }
    }
    @keyframes loadercsandwichnanim {
        0%{
          transform: translate(0px,0px);
          -webkit-transform: translate(0px,0px);
        }
        25%{
          transform: translate(0px,0px);
          -webkit-transform: translate(0px,0px);
        }
        48%{
          transform: translate(-12px,1px);
          -webkit-transform: translate(-12px,1px);
        }
        74%{
          transform: translate(-12px,1px);
          -webkit-transform: translate(-12px,1px);
        }
        100%{
          transform: translate(0px,0px);
          -webkit-transform: translate(0px,0px);
        }
    }



/* HEADINGS */
h1 { font-size: 42px; line-height: 46px; }
h2 {
  font-size: 39px;
  line-height: 40px;
  font-weight: 900;
  text-transform: uppercase;
}
h3 {
  width: 205px;
  font-size: 28px;
  line-height: 32px;
  font-weight: 900;
  text-transform: uppercase;
}
p { font-size: 16px; line-height: 22px; }

@media screen and (max-width: 480px) {
h2 {
  font-size: 28px;
  line-height: 29px;
}
h3 {
  width: 180px;
  font-size: 23px;
  line-height: 25px;
}
}


/* ROW AND COLUMNS */
.wrapper {
  position:   relative;
  width:      auto;
}
    .row {
      position:     relative;
      display:      table;
      width:        1024px;
      margin:       0 auto;
      z-index: 1;
    }
    section .row {
      margin: 24px auto;
    }
        .col-1,
        .col-12,
        .col-13,
        .col-23,
        .col-14,
        .col-34,
        .col-15,
        .col-16 {
          display: table-cell;
          vertical-align: top;
          padding: 0 18px;
        }

        .row > div:first-child { padding-left: 0px; }
        .row > div:last-child { padding-right: 0px; }

        .col-1  { width: 100%; }
        .col-12 { width: 50%; }
        .col-13 { width: 33.3%; }
        .col-23 { width: 66.6%; }
        .col-14 { width: 25%; }
        .col-34 { width: 75%; }
        .col-15 { width: 20%; }
        .col-16 { width: 16%; }

        .row > div img {
            max-width: 100%;
        }


/*@media screen and (max-width: 1280px) {
  .row {
    width:        1024px;
  }
}*/

@media screen and (max-width: 1090px) {
  .row {
    width:        768px;
  }
}

@media screen and (max-width: 840px) {
.wrapper {
  padding:     0 20px;
}
    .row {
      width:        100%;
    }
    .row > div {
      display: block;
      padding: 2px 0;
      width:   100%;
    }
}

/* SECTION */
section.wrapper {
  padding-top:        0px;
  padding-bottom:     0px;
}
@media screen and (max-width: 840px) {
section.wrapper {
  padding-top:        0px;
  padding-bottom:     0px;
}
}


/* PROJECT LIST */
#projectsWrapper {
  position: relative;
  margin-top: 0px;
}
section.project {
  position: relative;
  width: 100%;
  height:         680px;
  max-width: 1200px;
  margin: 0 auto;
  pointer-events: none;
}
section.project a {
    pointer-events: all;
}
section.project .imagecloud {
  position:       absolute;
  width:          100%;
  height:         100%; 
}
section.project .imagecloud div {
    position:     absolute;
    top:          50%;
    left:         50%;
    transition:   top 0.5s ease-out, left 0.1s linear;
    transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
}
section.project .imagecloud div img {
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transition: margin-top 1s cubic-bezier(.59,0,.46,.99), margin-left 1s cubic-bezier(.59,0,.46,.99);
}
section.project .stripecloud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
section.project .stripecloud div {
  position:       absolute;
  z-index:        10;
  transform:      scale(0.66);
  -webkit-transform:      scale(0.66);
  transition:     top 0.5s ease-out;
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
.projectBg {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}

section.projectInfos {
  position: relative;
  width: 100%;
  height: 40px;
  margin-bottom: 80px;
  z-index: 100;
}
  section.projectInfos > div {
    position: absolute;
    width: 400px;
    top: 40px;
    left: 50%;
  }
  section.projectInfos.even > div {
    margin-left: 90px;
  }
  section.projectInfos.odd > div {
    margin-left: -300px;
  }
    section.projectInfos .number {
      position: absolute;
      top: -7px;
      left: -120px;
      font-family: 'Rozha One';
      font-size: 27px;
    }
    section.projectInfos h2 {
    }
    section.projectInfos .subtitle {
      font-size: 15px;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

@media screen and (max-width: 1280px) {
  section.project .stripecloud div {
    transform: scale(.44);
    -webkit-transform: scale(.44);
  }
  section.projectInfos {
    margin-bottom: 160px;
  }
}

@media screen and (max-width: 767px) {
  section.projectInfos > div {
    width: 220px;
    top: 60px;
  }
  section.project .stripecloud div {
    transform: scale(.33);
    -webkit-transform: scale(.33);
  }
  section.projectInfos {
    margin-bottom: 80px;
  }
  section.projectInfos.even > div {
    margin-left: 25px;
  }
  section.projectInfos.odd > div {
    margin-left: -114px;
  }
    section.projectInfos .number {
      left: -80px;
    }
}

@media screen and (max-width: 480px) {
  section.projectInfos > div {
    width: 180px;
    top: 60px;
  }
  section.projectInfos.even > div {
    margin-left: 0px;
  }
  section.projectInfos.odd > div {
    margin-left: 0px;
  }
    section.projectInfos .number {
      left: -60px;
    }
    section.projectInfos h2 {
    }
    section.projectInfos .subtitle {
      font-size: 12px;
      margin-bottom: 12px;
    }
}

@media screen and (max-width: 1280px) {
  #projectsWrapper {
    margin-top: 0px;
  }
}


/* SINGLE PROJECT (POPUP) */
#project {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  background: #000000;
  overflow-y: scroll;
  overflow-x: hidden;
}
#project .row {
  width: 980px;
}
#project.revealed {
  opacity: 1;
  pointer-events: all;
}
  .projectHeader {
    padding-top: 60px;
    padding-bottom: 50px;
  }
      .projectHeader > img {
        width: 244px;
      }
  #projectWrapper {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  #projectWrapper .projectTitle {
    margin-top: 60px;
    margin-bottom: 120px;
  }
    #projectWrapper .projectTitle .subtitle {
      color: #fff;
      font-size: 18px;
      line-height: 18px;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    #projectWrapper .projectTitle .title {
      color: #fff;
      font-size: 61px;
      line-height: 61px;
      font-weight: 900;
      text-transform: uppercase;
    }
  #projectWrapper .projectDescriptionWrapper {
    position: relative;
  }
  #projectWrapper .projectDescription {
    margin-bottom: 80px;
  }
    #projectWrapper .projectDescription div:nth-child(1) {
      color: #000;
      font-size: 44px;
      line-height: 44px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 34px;
    }
    #projectWrapper .projectDescription div:nth-child(2) > p {
      color: #000;
      font-size: 22px;
      line-height: 34px;
    }
  #projectWrapper #singleProjectBg {
    position: absolute;
    top: -200px;
    left: 0px;
    z-index: -1;
  }

  #projectWrapper .projectImages img,
  #projectWrapper .projectImages video,
  #projectWrapper .projectImages iframe {
    width: 100%;
    margin-bottom: 40px;
  }

  #projectWrapper .projectCreditsShare {
    margin-top: -20px;
    padding-top: 60px;
    border-top: 3px solid #fff;
  }
    #projectWrapper .projectCreditsShare .title {
      margin-bottom: 30px;
      font-size: 22px;
      line-height: 26px;
      font-weight: 700;
      text-transform: uppercase;
      color: #fff;
    }
    #projectWrapper .projectCredits {
    }
      #projectWrapper .projectCredits .creditItem {
        display: block;
        margin-bottom: 14px;
        color: #fff;
      }
        #projectWrapper .projectCredits .creditItem > div {
          display: block;
        }
        #projectWrapper .projectCredits .creditItem .creditType {
          text-transform: uppercase;
          font-size: 12px;
          line-height: 12px;
          font-weight: 700;
          margin-bottom: 10px;
          letter-spacing: 1px;
        }
        #projectWrapper .projectCredits .creditItem .creditValue {
          text-transform: uppercase;
          font-size: 16px;
          line-height: 20px;
          font-weight: 100;
          letter-spacing: 1px;
        }
    #projectWrapper .projectShare {
    }
      #projectWrapper .projectShare a {
        display: block;
      }
      #projectWrapper .projectShare a img {
        width: 40px;
        height: 40px;
      }
      #projectWrapper .projectShare a.email img {
          transform: scale(.6);
          -webkit-transform: scale(.6);
      }
      #projectWrapper .projectShare a.facebook img {
          transform: scale(1.25);
          -webkit-transform: scale(1.25);
      }
      #projectWrapper .projectShare a.twitter img {
          transform: scale(1.25);
          -webkit-transform: scale(1.25);
      }
      #projectWrapper .creditItemCol {
          display: inline-block;
          vertical-align: top;
          margin-right: 40px;
      }

  #projectWrapper .videoContainer {
    position: relative;
  }
  #projectWrapper .videoContainer .playButton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  #projectWrapper .videoContainer[data-alreadyplayed="true"] .playButton {
    display: none;
  }
  #projectWrapper .videoContainer .playButton::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -35px;
    margin-left: -35px;
    width: 70px;
    height: 70px;
    background-image: url('../img/play_button_v5.png');
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    transform-origin: 50% 50%;
    transition: transform 0.1s ease-out;
  }
  #projectWrapper .videoContainer:hover .playButton::after {
    transform: scale(1.12);
  }
/*@media screen and (max-width: 940px) {
  #projectWrapper .videoContainer .playButton::after {
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
  }
}*/

@media screen and (max-width: 1550px) {
  #projectWrapper .row {
    width: 980px;
  }
} 
@media screen and (max-width: 1280px) {
  #projectWrapper {
    padding-top: 110px;
  }
} 
@media screen and (max-width: 1160px) {
  #projectWrapper .row {
    width: 768px;
  }
}

@media screen and (max-width: 940px) {
  #projectWrapper .row {
    width: 620px;
  }
  #projectWrapper #singleProjectBg {
    top: -150px;
  }
    #projectWrapper .projectTitle .title {
      font-size: 55px;
      line-height: 55px;
    }
    #projectWrapper .projectDescription div:nth-child(1) {
      font-size: 38px;
      line-height: 38px;
      margin-bottom: 28px;
    }
    #projectWrapper .projectDescription div:nth-child(2) > p {
      font-size: 18px;
      line-height: 28px;
    }
}

@media screen and (max-width: 768px) {
  #projectWrapper {
    padding-top: 80px;
  }
  #projectWrapper .row {
    width: 480px;
  }
  #projectWrapper .projectTitle {
    margin-top: 30px;
    margin-bottom: 140px;
  }
    #projectWrapper .projectDescription div:nth-child(1) {
      margin-bottom: 30px;
      margin-top: -20px;
    }
}

@media screen and (max-width: 680px) {
#projectWrapper {
}
  #projectWrapper .row {
    width: 280px;
  }
  #projectWrapper #singleProjectBg {
    top: -120px;
  }
}

/* CLIENTS */
#clients {
  position: relative;
  pointer-events: none;
}
#clients .wrapper {
  padding-top: 260px;
}
  #clients h3 {
    margin-bottom: 70px;
  }
  #clients .row > div { text-align: center; vertical-align: middle; }
  #clients .row > div:first-child { text-align: left; }
  #clients .row > div:last-child { text-align: right; }

  /* :KLUGE: fix spacing between logos */
  #clients .row:nth-child(2) .col-14:nth-child(2) img {
    margin-left: -95px;
  }

  #clientsBg {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
  }

@media screen and (max-width: 840px) {
  #clients .row > div {
    display: table-cell;
    width: auto;
    padding: 20px;
  }
  #clients .row > div:first-child {
    padding-left: 0px;
  }
  #clients .row > div:last-child {
    padding-right: 0px;
  }
  #clients .row:nth-child(2) .col-14:nth-child(2) img {
    margin-left: 0px;
  }
}

@media screen and (max-width: 767px) {
#clients .wrapper {
  padding-top: 180px;
}
  #clients h3 {
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 480px) {
#clients .wrapper {
  padding-top: 120px;
}
    #clients .row > div {
      display: block;
      width: 100%;
      text-align: center !important;
      padding: 0px;
      padding-bottom: 20px;
    }
    #clients .row > div img {
      transform: scale(.6);
      -webkit-transform: scale(.6);
    }
}


/* FOOTER */
footer {
  position: relative;
  width: 100%;
  background-color: #f2f2f2 !important;
}
  footer .wrapper,
  .projectFooter {
    height: 100%;
    padding-top: 260px;
    padding-bottom: 60px;
  }
  .projectFooter {
    padding-top: 100px;
    padding-bottom: 40px;
  }
    footer .row,
    .projectFooter .row {
      height: 100%;
    }
    footer .row h3,
    .projectFooter .row h3 {
      margin-bottom: 88px;
      color: #fff;
    }
    footer .row.email,
    .projectFooter .row.email {
      margin-bottom: 25px;
      padding-bottom: 18px;
      border-bottom: 3px solid #fff;
    }
      footer .row.email > a,
      .projectFooter .row.email > a {
        font-size: 48px;
        line-height: 48px;
        font-weight: 100;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
      }
      .projectFooter .row.email > a {
        font-size: 40px;
        line-height: 40px;
      }
      footer .row.email > a:hover,
      .projectFooter .row.email > a:hover {
        text-decoration: none;
      }
      footer .row .address > p,
      .projectFooter .row .address > p {
        position: relative;
        font-size: 15px;
        line-height: 26px;
        color: #fff;
      }
      footer .row .address > p:nth-child(3),
      .projectFooter .row .address > p:nth-child(3) {
        padding-bottom: 16px;
        margin-bottom: 16px;
      }
      footer .row .address > p:nth-child(3):after,
      .projectFooter .row .address > p:nth-child(3):after {
        position: absolute;
        left: 0px;
        bottom: 0px;
        content: '';
        width: 140px;
        height: 3px;
        background: #fff;
      }
      .projectFooter .row .col-16:first-child {
        display: none;
      }
      footer .row .share,
      .projectFooter .row .share {
      }
        footer .row .share a,
        .projectFooter .row .share a {
          display: block;
          /*height: 38px;*/
        }
        footer .row .share a:first-child,
        .projectFooter .row .share a:first-child {
          margin-top: -10px;
        }
        footer .row .share a:hover,
        .projectFooter .row .share a:hover {
          text-decoration: none;
        }
          footer .row .share a img,
          .projectFooter .row .share a img,
          footer .row .share a svg,
          .projectFooter .row .share a svg {
            vertical-align: middle;
            width: 50px;
            height: 50px;
          }
            footer .row .share a svg path {
              fill: #fff;
            }
            .projectFooter .row .share a svg path {
              fill: #fff;
            }
          footer .row .share a span,
          .projectFooter .row .share a span {
            vertical-align: middle;
            font-size: 13px;
            line-height: 13px;
            color: #fff;
            margin-left: 20px;
          }

footer #footerBg {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}

@media screen and (max-width: 1090px) {
  footer .row.email > a,
  .projectFooter .row.email > a {
    font-size: 35.5px;
    line-height: 35px;
  }
  footer .row .col-16,
  .projectFooter .row .col-16 {
    display: none;   
  }
  footer .row .col-16.address,
  .projectFooter .row .col-16.address,
  footer .row .col-16.share,
  .projectFooter .row .col-16.share {
    display: table-cell;
    padding: 0;  
  }
}

@media screen and (max-width: 840px) {
  .projectFooter {
    padding-top: 80px;
  }
  footer .row .col-16.address,
  .projectFooter .row .col-16.address,
  footer .row .col-16.share,
  .projectFooter .row .col-16.share {
    width: 50%;
  }
      footer .row.email > a,
      .projectFooter .row.email > a {
        font-size: 18px;
        line-height: 18px;
        letter-spacing: 0px;
      }
}

@media screen and (max-width: 767px) {
  footer .wrapper {
    padding-top: 120px;
  }
    footer .row h3,
    .projectFooter .row h3 {
      margin-bottom: 55px;
    }
}

@media screen and (max-width: 680px) {
          footer .row .share a span,
          .projectFooter .row .share a span {
            margin-left: 0px;
          }
}

@media screen and (max-width: 480px) {
      footer .row.email > a,
      .projectFooter .row.email > a {
        font-size: 13px;
        line-height: 13px;
      }
}