:root {
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smooth: always;
}

*, ::before, ::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  font: inherit;
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

img, iframe, video {
  max-width: 100%;
  height: auto;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.667;
  letter-spacing: .33px;
  color: #FFFFFF;
  margin: 0;
  background: #020202;
}

html, body {
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Spectral', serif;
  font-weight: 300;
  line-height: 1.133;
  letter-spacing: -.15px;
  margin-bottom: 40px;
}

h1 {
  font-size: 96px;
}

h2 {
  font-size: 88px;
}

h3 {
  font-size: 72px;
}

h4 {
  font-size: 56px;
}

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

article a {
  text-decoration: underline;
}

p {
  margin-bottom: 40px;
}

main {
  display: block;
}

.fluid-container,
.container {
  width: 940px;
  max-width: 100%;
  margin: auto;
  padding: 0 20px;
}

.fluid-container {
  width: 100%;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-align-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-auto {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
}

.flex-100 {
  width: 100%;
}

.flex-50 {
  width: 50%;
}

.flex-33 {
  width: 33.33%;
}

.big-text {
  font-size: 36px;
  line-height: 1.33;
}

/* @header */
#site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#site-header .logo img {
  display: block;
  width: 180px;
}

#site-header .site-header__inner {
  padding: 20px 0;
}

#site-header .navigation {
  text-align: right;
}

#site-header .navigation ul {
  margin: 0;
}

#site-header .navigation ul li {
  display: inline-block;
}

#site-header .navigation ul li:not(:last-child) {
  margin-right: 20px;
}

#site-header .navigation ul li a {
  color: #FFF;
}

#site-header .navigation button {
  display: none;
}

/* @hero */
#main {
  margin-bottom: 200px;
}

.hero {
  position: relative;
  height: 100vh;
}

.hero .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero .background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero .hero__inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* @presentation */
.presentation {
  margin-top: 200px;
}

.presentation__description {
  margin-bottom: 200px;
}

.images-gallery {
  position: relative;
  padding-bottom: 100vh;
}

.images-gallery .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.images-gallery .image:first-child {
  opacity: 1 !important;
  visibility: visible !important;
}

.images-gallery .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.images-gallery .image img:last-child {
  -o-object-position: center -60px;
     object-position: center -60px;
}

/* @brand */
.brand {
  margin-top: 200px;
}

.brand .brand__about > .description {
  margin-bottom: 100px;
}

.process {
  list-style: none;
  margin: 0;
}

.process li {
  position: relative;
  padding-left: 100px;
}

.process li h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.process li .icon {
  position: absolute;
  top: 0;
  left: 0;
}

.process li .icon img {
  width: 64px;
}

.process li:not(:last-child) {
  margin-bottom: 40px;
}

/* @work */
.work {
  margin-bottom: 20px;
}

.work .work__image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 600px;
  margin-bottom: 120px;
}

.work .work__image .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.work .work__image .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}

.work .work__image .work__with {
  position: relative;
  text-align: center;
  z-index: 5;
}

.work .work__image .work__with h2 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  color: #020202;
  margin-bottom: 0;
}

.work .work__image .work__with h2 span {
  font-weight: 300;
}

.work .contact-details .footer-logo {
  padding-bottom: 50px;
  margin-bottom: 60px;
  border-bottom: 1px solid #FFF;
  text-align: center;
}

.work .contact-details .footer-logo .motto {
  font-size: 20px;
}

.work .contact-details .footer-logo img {
  width: 340px;
}

.work .contact-details .footer-details {
  margin-right: -50px;
}

.work .contact-details .footer-details .col {
  padding-right: 50px;
}

.work .contact-details .footer-details .title {
  font-size: 24px;
  font-weight: 600;
}

.work .contact-details .credits {
  font-size: 16px;
  opacity: .9;
  margin-top: 120px;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */