@charset "UTF-8";
/*
##############################
# IMPORTS
##############################
*/
/*
##############################
# FLEXBOX
##############################
*/
/*
##############################
# UTILITY
##############################
*/
/*
##############################
# ANIMATION
##############################
*/
/*
##############################
# NORMALIZE
##############################
*/
/*
##############################
# FLEXBOX
##############################
*/
/*
##############################
# UTILITY
##############################
*/
/*
##############################
# ANIMATION
##############################
*/
html {
  height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  border-width: 0px;
  border-spacing: 0px;
}

table {
  border-collapse: collapse;
}

input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
/*
##############################
# VARIABLES
##############################
*/
/*
##############################
# COLORS
##############################
*/
/*
##############################
# STACK
##############################
*/
/*
##############################
# TYPOGRAPHY
##############################
*/
.title {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-family: eurostile;
  font-size: 10rem;
  font-weight: 900;
  color: #23222a;
  line-height: 1;
  padding: 60px 0px 100px 0px;
  letter-spacing: -4px;
}
.title span {
  color: #c2c5c5;
  margin-left: 20px;
}
@media (max-width: 1000px) {
  .title {
    font-size: 8rem;
    padding: 40px 0px 80px 0px;
  }
}
@media (max-width: 750px) {
  .title {
    font-size: 6rem;
    padding: 30px 0px 60px 0px;
  }
}

.label {
  font-family: franklin-gothic-atf;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  color: #23222a;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.label--section {
  margin-top: 120px;
}
@media (max-width: 1000px) {
  .label--section {
    margin-top: 100px;
  }
}
@media (max-width: 750px) {
  .label--section {
    margin-top: 80px;
  }
}
@media (max-width: 500px) {
  .label--section {
    margin-top: 60px;
  }
}

.project-title {
  font-family: franklin-gothic-atf;
  color: #23222a;
  font-weight: 200;
  font-size: 2.1rem;
  line-height: 1.2;
  letter-spacing: 0px;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .project-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 750px) {
  .project-title {
    font-size: 1.7rem;
  }
}
@media (max-width: 500px) {
  .project-title {
    font-size: 1.6rem;
  }
}
.project-title--section {
  margin-top: 120px;
}
@media (max-width: 1000px) {
  .project-title--section {
    margin-top: 100px;
  }
}
@media (max-width: 750px) {
  .project-title--section {
    margin-top: 80px;
  }
}
@media (max-width: 500px) {
  .project-title--section {
    margin-top: 60px;
  }
}
.project-role {
  font-family: franklin-gothic-atf;
  color: #23222a;
  font-weight: 300;
  font-size: 1rem;
  line-height: 2;
}
@media (max-width: 750px) {
  .project-role {
    font-size: 0.9rem;
  }
}
@media (max-width: 500px) {
  .project-role {
    font-size: 0.8rem;
  }
}

.legal {
  font-family: franklin-gothic-atf;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 120px;
  font-weight: 300;
  font-size: 0.75rem;
  color: #78787e;
  text-align: center;
  line-height: 2;
}
@media (max-width: 1000px) {
  .legal {
    padding-bottom: 100px;
  }
}
@media (max-width: 750px) {
  .legal {
    padding-bottom: 80px;
  }
}
@media (max-width: 500px) {
  .legal {
    padding-bottom: 60px;
  }
}

/*
###########################
# CONTAINERS
###########################
*/
html, body {
  background-color: #ffffff;
  overflow: hidden;
  width: 100%;
}

.frame {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: -webkit-box;
  display: -mox-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  background-color: #ffffff;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 1600px;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0px 80px;
  opacity: 1;
}
.frame--closed {
  top: 100%;
  opacity: 0;
}
@media (max-width: 1000px) {
  .frame {
    padding: 0px 80px 0px 60px;
  }
}
@media (max-width: 750px) {
  .frame {
    padding: 0px 60px 0px 40px;
  }
}
@media (max-width: 500px) {
  .frame {
    padding: 0px 60px 0px 20px;
  }
}

.container {
  width: 100%;
  max-width: 1600px;
  position: relative;
}
.container--project {
  padding-top: 100px;
}
@media (max-width: 1000px) {
  .container--project {
    padding-top: 80px;
  }
}
@media (max-width: 750px) {
  .container--project {
    padding-top: 60px;
  }
}
@media (max-width: 500px) {
  .container--project {
    padding-top: 40px;
  }
}

/*
###########################
# BUTTONS
###########################
*/
.dismiss {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: fixed;
  display: block;
  right: 42px;
  top: 25px;
  color: #23222a;
  background: transparent;
  border: 0px;
  font-family: franklin-gothic-atf;
  font-weight: 100;
  font-size: 3rem;
  line-height: 15px;
  cursor: pointer;
  z-index: 100;
}
.dismiss:before {
  content: "×";
}
.dismiss:hover {
  color: #23222a;
  font-weight: 200;
}
@media (max-width: 750px) {
  .dismiss {
    font-size: 2rem;
    right: 40px;
    top: 20px;
  }
}

.contact {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-family: franklin-gothic-atf;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  background-image: url("../img/contact.svg");
  background-repeat: no-repeat;
  background-position: top 9px right 15px;
  background-color: #23222a;
  background-size: 25px 25px;
  color: #ffffff;
  cursor: pointer;
  padding: 10px 52px 12px 20px;
  display: inline-block;
  right: 40px;
  top: 20px;
  position: fixed;
  z-index: 100;
}
.contact:hover {
  background-color: #c2c5c5;
}
.contact:before {
  content: "Let's work together";
}
.contact----offscreen {
  top: -60px;
}
@media (max-width: 750px) {
  .contact {
    font-size: 1rem;
    background-position: center center;
    padding: 0px;
    height: 43px;
    width: 43px;
    right: 26px;
    top: 8px;
  }
  .contact:before {
    content: "";
  }
}

/*
###########################
# THUMBNAILS
###########################
*/
.thumb-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 750px) {
  .thumb-grid {
    margin-bottom: 60px;
  }
}
.thumb-grid--index .thumb-cell {
  width: 50%;
}
.thumb-grid--index .thumb-cell:nth-child(odd) {
  border-left: 0px;
}
.thumb-grid--index .thumb-cell:nth-child(even) {
  border-right: 0px;
}
@media (max-width: 1000px) {
  .thumb-grid--index .thumb-cell {
    border-width: 10px;
  }
}
@media (max-width: 750px) {
  .thumb-grid--index .thumb-cell {
    width: 100%;
    border-width: 10px 0px;
  }
}
.thumb-grid--mini .thumb-cell {
  width: 33.333%;
}
.thumb-grid--mini .thumb-cell:first-child {
  border-left: 0px;
}
.thumb-grid--mini .thumb-cell:nth-child(2) {
  border-width: 15px 7.5px;
}
@media (max-width: 1000px) {
  .thumb-grid--mini .thumb-cell:nth-child(2) {
    border-width: 10px 5px;
  }
}
.thumb-grid--mini .thumb-cell:last-child {
  border-right: 0px;
}
@media (max-width: 1000px) {
  .thumb-grid--mini .thumb-cell {
    border-width: 10px;
  }
}
@media (max-width: 750px) {
  .thumb-grid--mini .thumb-cell {
    width: 100%;
    border-width: 10px 0px !important;
  }
}

.thumb-cell {
  background: #f0eff2;
  border: 15px solid #ffffff;
}
.thumb-img {
  -webkit-transition: 1.5s;
  transition: 1.5s;
  padding-top: 56.25%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  opacity: 100;
  position: relative;
  cursor: pointer;
}
.thumb-img--zoom {
  opacity: 0;
  background-size: 105%;
}
.thumb-img:hover {
  background-size: 110%;
}
.thumb-img:hover .thumb-inner {
  background-color: rgba(0, 0, 0, 0.5);
}
.thumb-img:hover .thumb-view {
  opacity: 1;
}
.thumb-inner {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.thumb-view {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 10px 20px 12px 20px;
  font-family: franklin-gothic-atf;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .thumb-view {
    font-size: 1rem;
    padding: 10px 12px 12px 12px;
  }
}

/*
###########################
# PROJECTS
###########################
*/
.project-placeholder {
  width: 100%;
  background: #f0eff2;
}
.project-placeholder--section {
  margin-top: 100px;
}
@media (max-width: 1000px) {
  .project-placeholder--section {
    margin-top: 80px;
  }
}
@media (max-width: 750px) {
  .project-placeholder--section {
    margin-top: 60px;
  }
}
@media (max-width: 500px) {
  .project-placeholder--section {
    margin-top: 40px;
  }
}
.project-image {
  -webkit-transition: 1.5s;
  transition: 1.5s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  opacity: 1;
}
.project-image--zoom {
  opacity: 0;
  background-size: 104%;
}
.project-image--charge-1 {
  padding-top: 47%;
}
.project-image--charge-2 {
  padding-top: 73.125%;
}
.project-image--charge-3 {
  padding-top: 73.125%;
}
.project-image--ssi-1 {
  padding-top: 87.5%;
}
.project-image--alight-1 {
  padding-top: 149.375%;
}
.project-image--alight-2 {
  padding-top: 75%;
}
.project-image--alight-3 {
  padding-top: 81.25%;
}
.project-image--alight-4 {
  padding-top: 84.0625%;
}
.project-image--aon-1 {
  padding-top: 84.5%;
}
.project-image--aon-2 {
  padding-top: 95.75%;
}
.project-image--hewitt-1 {
  padding-top: 72.125%;
}
.project-image--hewitt-2 {
  padding-top: 54.75%;
}
.project-image--marvel-1 {
  padding-top: 79.875%;
}
.project-image--marvel-2 {
  padding-top: 61.25%;
}

.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 80px;
}
@media (max-width: 1000px) {
  .icon {
    margin-bottom: 60px;
  }
}
@media (max-width: 750px) {
  .icon {
    margin-bottom: 40px;
  }
}
@media (max-width: 500px) {
  .icon {
    margin-bottom: 30px;
  }
}