/* Foundation */
/* Header */
/* Navigation */
/* Home */
/* Project */
/* Footer */



/* Foundation */
body {
  font-family: 'BentonSans-Regular', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: #231f20;
  height: 100%;
}

.element::-webkit-scrollbar {
  width: 0 !important;
}

p {
  font-family: 'BentonSans-Regular', sans-serif;
  font-weight: 100;
  font-style: normal;
  line-height: normal;
  color: #231f20;
  letter-spacing: .8px;
  margin-block-start: 0em;
  margin-block-end: 0em;
}

a {
  color: #333;
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  opacity: .9;
}

h1 {
  font-size: 150px;
  margin-block-end: 0em;
  line-height: 100px;
  font-family: 'ChampionGothic-Bantamweight', sans-serif;
}

h3 {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 800;
}

h4 {
  font-family: benton-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  letter-spacing: .5px;
  margin-block-start: .8em;
  margin-block-end: .8em;
}

.vertical {
  float: left;
  width: 100%;
  padding: 50px 0;
  clear: both;
}

.vertical {
  padding-left: 3000px;
  margin-left: -3000px;
  padding-right: 3000px;
  margin-right: -3000px;
}

.content {
  position: relative;
  z-index: 99;
  width: 100%;
  height: auto;
  background-color: white;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.white {
  background-color: white;
}

.grey {
  background-color: #FBF9F9;
}

.black {
  background-color: #000;
}

ul,
menu,
dir {
  display: block;
  list-style-type: disc;
  margin: 0;
  padding: 0;
  -webkit-margin-before: 0em;
  -moz-margin-before: 0em;
  -ms-margin-before: 0em;
  -o-margin-before: 0em;
  -webkit-margin-after: 0em;
  -moz-margin-after: 0em;
  -ms-margin-after: 0em;
  -o-margin-after: 0em;
  -webkit-margin-start: 0px;
  -moz-margin-start: 0px;
  -ms-margin-start: 0px;
  -o-margin-start: 0px;
  -webkit-margin-end: 0px;
  -moz-margin-end: 0px;
  -ms-margin-end: 0px;
  -o-margin-end: 0px;
  -webkit-padding-start: 0px;
  -moz-padding-start: 0px;
  -ms-padding-start: 0px;
  -o-padding-start: 0px;
}

li {
  text-decoration: none;
  list-style: none;
  float: left;
  display: inline-block;
}

.clear {
  clear: both;
}

#section {
  display: block;
  height: 100%;
  width: 100%;
  padding-top: 0px;
}

img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
}

.hidden {
  display: none;
}

/* Header */

header {
  height: 70px;
  position: fixed;
  top: 0;
  transition: top 0.3s ease-in-out;
  width: 100%;
}

.header-red {
  background-color: red;
  height: 70px;
  position: fixed;
  top: 0;
  transition: top 0.3s ease-in-out;
  width: 100%;
}



.logo {
  margin-top: 15px;
  margin-left: 10px;
  display: inline-block;
  float: left;
}

/* Navigation */


* {
  box-sizing: border-box;
}

  navigate ul {
    float: right;
    margin-right: 30px;
    margin-top: 10px;
  }
  
  navigate ul li {
    display: inline-block;
    float: left;
  }
  
  navigate ul li:not(:first-child) {
    margin-left: 25px;
  }
  
  navigate ul li a {
    display: inline-block;
    outline: none;
    color: #1f2227;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.04em;
  }
  
  navigate ul li a:hover {
    color: #808080;
    text-decoration: none;
  }

nav {
  padding: 14px;
  padding-right: 40px;
}

nav ul li {
  display: inline-block;
  float: left;
}

nav ul li:not(:first-child) {
  margin-left: 25px;
}

nav ul li a {
  display: inline-block;
  outline: none;
  color: #1f2227;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-right:30px;
}

nav ul li a:hover {
  color: #808080;
  text-decoration: none;
}

#nav:checked+.nav-open {
  transform: rotate(45deg);
}

#nav:checked+.nav-open i {
  background: #fff;
  transition: transform 0.2s ease;
}

#nav:checked+.nav-open i:nth-child(1) {
  transform: translateY(6px) rotate(180deg);
}

#nav:checked+.nav-open i:nth-child(2) {
  opacity: 0;
}

#nav:checked+.nav-open i:nth-child(3) {
  transform: translateY(-6px) rotate(90deg);
}

#nav:checked~.nav-container {
  z-index: 9990;
  opacity: 1;
}

#nav:checked~.nav-container ul li a {
  opacity: 1;
  transform: translateY(0);
}

.nav-up {
  top: -100px;
}



@media screen and (max-width: 5560px) {

  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: #1f2227;
    opacity: 0;
    transition: all 0.2s ease;
    display: none;
  }

 .nav-container.show {
    display: block;
  }
 
  .nav-container ul {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }

.nav-container ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: right;
    margin-bottom: 10px;
  }


  .nav-container ul li:nth-child(1) a {
    transition-delay: 0.2s;
  }

  .nav-container ul li:nth-child(2) a {
    transition-delay: 0.3s;
  }

  .nav-container ul li:nth-child(3) a {
    transition-delay: 0.4s;
  }

  .nav-container ul li:nth-child(4) a {
    transition-delay: 0.5s;
  }

  .nav-container ul li:not(:first-child) {
    margin-left: 0;
  }

.nav-container ul li a {
    padding: 10px 25px;
    opacity: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    transform: translateY(-20px);
    transition: all 0.2s ease;
  }

 .nav-open {
    position: fixed;
    right: 10px;
    top: 10px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
  }

  .nav-open i {
    display: block;
    width: 20px;
    height: 2px;
    background: #1f2227;
    border-radius: 2px;
    margin-left: 14px;
  }

  .nav-open i:nth-child(1) {
    margin-top: 16px;
  }

  .nav-open i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }

  .nav-open i:nth-child(3) {
    margin-top: 4px;
  }



#nav:checked+.nav-open {
  transform: rotate(45deg);
}

#nav:checked+.nav-open i {
  background: #fff;
  transition: transform 0.2s ease;
}

#nav:checked+.nav-open i:nth-child(1) {
  transform: translateY(6px) rotate(180deg);
}

#nav:checked+.nav-open i:nth-child(2) {
  opacity: 0;
}



#nav:checked+.nav-open i:nth-child(3) {
  transform: translateY(-6px) rotate(90deg);
}

#nav:checked~.nav-container {
  z-index: 9990;
  opacity: 1;
}

#nav:checked~.nav-container ul li a {
  opacity: 1;
  transform: translateY(0);
}


}


/* Home */
.intro {
  padding-top: 20px;
  margin-top: 100px;
}

.intro p {
  font-size: 30px;
  line-height: normal;
  padding-right: 31%;
}

.line {
  border-bottom: 1px solid #b7a85c;
  opacity: 1;
  background-color: white;
}

.brief {
  padding-right: 0;
  padding-left: 0;
}

.title {
  color: #958007;
  font-size: 33px;
}


@media screen and (min-width: 1200px) {
  .brief {
    text-align: right;
    padding-top: 30px;
  }

  .intro p {
    font-size: 44px;
  }
}

@media screen and (max-width: 1199px) {
  .brief {
    text-align: right;
  }

  .title {
    margin-block-start: .5em;
    margin-block-end: 1em;
  }
}

@media screen and (max-width: 768px) {
  .intro p {
    font-size: 22px;
    line-height: normal;
    font-weight: 300;
    opacity: .7;
    padding-right: 30%;
  }

  .brief {
    text-align: left;
    padding-top: 0;
    margin-block-start: 0.2em;
    margin-block-end: 0.2em;
  }

  .title {
    margin-block-end: 0em;
    font-size: 28px;
  }

  .brief p {
    margin-block-start: 0em;
  }

  #section {
    padding-top: 30px;
  }

  .design {
    padding-bottom: 40px;
  }
}

/* Project */
.project_note {
  text-align: center;
  padding: 100px 20% 40px 20%;
}

.tablet img {
  width: 50%;
  margin: 0 auto;
}

.hero {
  padding: 0px;
  position: relative;
  z-index: 1;
  opacity: 1;
}

.testimonial {
  font-size: 24px;
  line-height: 34px;
}

.upperpunch {
  font-size: 11px;
  text-transform: uppercase;
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 400;
  letter-spacing: 3px;
  color: #958007;
}

.project_meta {
  font-size: 80%;
}

.credits h1 {
  line-height: 200px;
}

.credits p {
  font-size: 42px;
  font-family: 'BentonSans-Regular', sans-serif;
}

.credits {
  padding: 10px 0 120px 0;
}


@media screen and (max-width: 1180px) {
  .credits h1 {
    font-size: 42px;
    line-height: 55px;
  }

  .credits p {
    font-size: 16px;
  }

  .credits {
    padding-bottom: 50px;
  }
}


@media screen and (max-width: 768px) {
  .project .body-small {
    text-align: left;
    float: left;
  }

  .testimonial {
    font-size: 20px;
    line-height: 24px;
  }
}

/* Footer */
.sig {
  padding-top: 120px;
}

@media screen and (min-width: 1200px) {
  .sig img {
    max-width: 20%;
  }
}

@media screen and (max-width: 1199px) {
  .sig img {
    max-width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .sig img {
    max-width: 40%;
  }
}

#video-background {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000000000;
}

.lockscreen {
  display: none;
  width: 100%;
  height: 100%;
  background: #131521;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
}




@media screen and (min-width: 1200px) {
  .footer {
    padding: 30px 0 200px 0;
  }
}

@media screen and (max-width: 1199px) {
  .footer {
    padding: 30px 0 300px 0;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0 500px 0;
  }
}

/* Project Thumbnail Overlay 

.grid-image {
  display: inline-block;
  overflow: hidden;
  
}
.grid-image img {
  display: block;
  transition: transform 20s;  
}
.grid-image:hover img {
  transform: scale(1);
  transform-origin: 50% 50%;
}
*/


.service-title {
  font-size: 49px;
  line-height: 58px;
}

.service-description {
  font-size: 49px;
  line-height: 58px;
  font-family: 'BentonSans-Regular', sans-serif;
  opacity:.4;
}


@media screen and (min-width: 1200px) {}

@media screen and (max-width: 1199px) {
  .service-title {
    font-size: 32px;
    line-height: 44px;
  }

  .service-description {
    font-size: 32px;
    line-height: 38px;
  }
}


.primary-image {
  float: left;
  width: 68%;
  padding-right: 20px;
}

.secondary-image {
  float: left;
  width: 32%;
}


@media screen and (min-width: 1200px) {
  .primary-image {
    float: left;
    width: 58%;
    padding-right: 20px;
  }

  .secondary-image {
    float: left;
    width: 27%;
  }
  
    .body-large {
    font-size: 30px;
    line-height: 33px;
    display: block;
  }
}


@media screen and (max-width: 768px) {
  .primary-image {
    display: none;
  }

  .secondary-image {
    width: 97%;
  }
    .body-large {
    font-size: 30px;
    line-height: 33px;
    display: block;
  }
}

.project .body-large {
  margin-top: 100px;
}


.body-small {
  font-size: 16px;
  display: block;
  padding-top: 10px;
}


@media screen and (max-width: 1199px) {
  .body-large {
    font-size: 40px;
    padding-bottom: 0px;
    line-height: 46px;
  }
}

.arrow:hover {
  padding-left: 20px;
}

.bg img {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  background-position: 50% 50%;
}

#image-desktop {display:block;}
#image-mobile {display:none}

@media all and (max-width: 499px) {
    #image-desktop {display: none;}
    #image-mobile {display: block;}
}


.color-swap {color:red; color:white; font-size:72px; line-height: 78px;}

