/* v1.0 | 20080212 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}
a {
  text-decoration: none;
}
a:active {
  outline: none;
}
input,
textarea,
submit {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
/* remember to define focus styles! */
:focus {
  outline: 0;
  -moz-outline-style: none;
}
/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* HTML 5 Reset */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* Import ////////////////////////////////////////////////////////// */
/* Accordions ////////////////////////////////////////////////////////// */
.accordion {
  margin-bottom: 40px;
}
.accordion__item {
  border-bottom: 1px solid #282728;
  visibility: hidden;
}
.accordion__item:after {
  background-color: #b69d73;
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  z-index: 1;
  transition: width 0.4s ease;
}
.accordion__item:hover:after {
  width: 100%;
}
.accordion__item:hover .accordion__itemIconWrap {
  top: 29px;
  transform: rotate(45deg);
}
.accordion__item:hover .accordion__itemIconWrap span:nth-of-type(1) {
  height: 13px;
  top: 5px;
}
.accordion__item:hover .accordion__itemIconWrap span:nth-of-type(2) {
  height: 13px;
  right: 15px;
}
.accordion__item.is-active .accordion__itemTitleWrap::after {
  transform: translateX(-20%);
}
.accordion__item.is-active .accordion__itemIconWrap {
  top: 29px;
  transform: rotate(180deg);
}
.accordion__item.is-active .accordion__itemIconWrap span {
  background-color: #b69d73;
}
.accordion__item.is-active .accordion__itemIconWrap span:nth-of-type(1) {
  transform: rotate(-90deg);
}
.accordion__item.is-active .accordion__itemIconWrap span:nth-of-type(2) {
  opacity: 0;
  transform: rotate(0deg);
}
.accordion__itemTitleWrap {
  cursor: pointer;
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}
.accordion__itemTitle {
  font-size: 1.5em;
  z-index: 10;
}
.accordion__itemIconWrap {
  height: 23px;
  position: absolute;
  right: 10px;
  top: 25px;
  width: 23px;
  z-index: 10;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.accordion__itemIconWrap span {
  background-color: #282728;
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transform-origin: center;
}
.accordion__itemIconWrap span:nth-of-type(1) {
  height: 23px;
  width: 3px;
}
.accordion__itemIconWrap span:nth-of-type(2) {
  height: 23px;
  transform: rotate(90deg);
  width: 3px;
}
.accordion__itemContent {
  position: relative;
  height: 0;
  overflow: hidden;
}
.accordion__itemContent h1 {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 20px;
}
.accordion__itemContent h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 20px;
}
.accordion__itemContent p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 40px;
}
.accordion__itemContent p a {
  color: #b69d73;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.accordion__itemContent p a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .accordion__itemContent p {
    margin-bottom: 24px;
  }
}
.accordion__itemContent ul {
  margin-bottom: 30px;
}
.accordion__itemContent ul a {
  color: #b69d73;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.accordion__itemContent ul a:hover {
  opacity: 0.7;
}
.accordion__itemContent ul li {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 0 15px 30px;
  position: relative;
}
.accordion__itemContent ul li:before {
  content: "- ";
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  left: 0;
  position: absolute;
}
.accordion__itemContent figure.quote {
  margin: 0 0 40px;
}
.accordion__itemContent figure.quote blockquote {
  position: relative;
}
.accordion__itemContent figure.quote blockquote p {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.8;
}
.accordion__itemContent figure.quote blockquote p + p {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .accordion__itemContent figure.quote blockquote p {
    font-size: 22px;
  }
}
.accordion__itemContent figure.quote blockquote footer {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.accordion__itemContent figure.quote blockquote footer:before {
  background: #b69d73;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  width: 30px;
  vertical-align: middle;
}
.accordion__itemContent figure.quote figcaption {
  color: #5e5e5e;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding-top: 25px;
}
.accordion__itemContent img {
  height: auto;
  max-width: 100%;
}
.accordion__itemContent img.alignleft {
  display: inline-block;
  float: left;
  margin: 7px 20px 6px 0;
  width: 35%;
}
.accordion__itemContent img.alignright {
  display: inline-block;
  float: right;
  margin: 7px 0 6px 20px;
  width: 35%;
}
.accordion__itemContent ul.btns li {
  padding-left: 0;
}
.accordion__itemContent ul.btns li:before {
  display: none;
}
.accordion__itemContent form ul li {
  padding-left: 0;
}
.accordion__itemContent form ul li:before {
  display: none;
}
.accordion__itemContent h1 {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 20px;
}
.accordion__itemContent h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 20px;
}
.accordion__itemContent p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 40px;
}
.accordion__itemContent p a {
  color: #b69d73;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.accordion__itemContent p a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .accordion__itemContent p {
    margin-bottom: 24px;
  }
}
.accordion__itemContent ul {
  margin-bottom: 30px;
}
.accordion__itemContent ul a {
  color: #b69d73;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.accordion__itemContent ul a:hover {
  opacity: 0.7;
}
.accordion__itemContent ul li {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 0 15px 30px;
  position: relative;
}
.accordion__itemContent ul li:before {
  content: "- ";
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  left: 0;
  position: absolute;
}
.accordion__itemContent figure.quote {
  margin: 0 0 40px;
}
.accordion__itemContent figure.quote blockquote {
  position: relative;
}
.accordion__itemContent figure.quote blockquote p {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.8;
}
.accordion__itemContent figure.quote blockquote p + p {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .accordion__itemContent figure.quote blockquote p {
    font-size: 22px;
  }
}
.accordion__itemContent figure.quote blockquote footer {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.accordion__itemContent figure.quote blockquote footer:before {
  background: #b69d73;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  width: 30px;
  vertical-align: middle;
}
.accordion__itemContent figure.quote figcaption {
  color: #5e5e5e;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding-top: 25px;
}
.accordion__itemContent img {
  height: auto;
  max-width: 100%;
}
.accordion__itemContent img.alignleft {
  display: inline-block;
  float: left;
  margin: 7px 20px 6px 0;
  width: 35%;
}
.accordion__itemContent img.alignright {
  display: inline-block;
  float: right;
  margin: 7px 0 6px 20px;
  width: 35%;
}
.accordion__itemContent ul.btns li {
  padding-left: 0;
}
.accordion__itemContent ul.btns li:before {
  display: none;
}
.accordion__itemContent form ul li {
  padding-left: 0;
}
.accordion__itemContent form ul li:before {
  display: none;
}
/* Reusable Animations ////////////////////////////////////////////////////////// */
.intro .line {
  overflow: hidden;
}
/* Buttons ////////////////////////////////////////////////////////// */
ul.btns {
  display: table;
  margin-bottom: 0;
  position: relative;
}
ul.btns li {
  display: inline-block;
  margin: 0 30px 0 0;
  padding: 0;
}
ul.btns li:last-of-type {
  margin-right: 0;
}
.btn {
  display: inline-block;
  position: relative;
}
.btn.sans {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 55px;
  font-size: 11px;
  text-transform: uppercase;
}
.btn.serif {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}
.btn svg {
  left: 0;
  position: relative;
  transition: left 0.25s ease-in-out;
  -moz-transition: left 0.25s ease-in-out;
  -o-transition: left 0.25s ease-in-out;
  -webkit-transition: left 0.25s ease-in-out;
}
.btn:hover svg {
  left: 5px;
}
/* Sample Work Gallery ////////////////////////////////////////////////////////// */
.gallery {
  overflow: hidden;
  padding-left: 220px;
}
.gallery .items {
  align-items: center;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-right: 440px;
}
.gallery .items .item {
  width: 30vw;
}
.gallery .items .item + .item {
  margin-left: 50px;
}
.gallery .items .item figure {
  margin: 0;
}
.gallery .items .item figure img {
  height: auto;
  width: 100%;
}
.gallery .items .item figure figcaption {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  padding: 30px 0;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  -o-transition: opacity 0.35s ease-in-out;
  -webkit-transition: opacity 0.35s ease-in-out;
}
.gallery .items .item figure:hover figcaption {
  opacity: 1;
}
/* Form Errors */
body .gform_wrapper.gform_validation_error .validation_error {
  background-color: #3f2323;
}
body .gform_wrapper.gform_validation_error li.gfield.gfield_error,
body .gform_wrapper.gform_validation_error li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background: #524444;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 15px !important;
}
@media only screen and (min-width: 641px) {
  body .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: 100% !important;
  }
}
/* Form */
body .gform_wrapper {
  min-width: 100%;
}
body .gform_wrapper input[type="text"],
body .gform_wrapper input[type="email"],
body .gform_wrapper input[type="tel"],
body .gform_wrapper textarea {
  border: 1px solid #e2e2e2;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1em;
  padding: 15px !important;
  width: 100% !important;
}
body .gform_wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #222222 50%), linear-gradient(135deg, #222222 50%, transparent 50%), linear-gradient(to right, #e0e0e0, #e0e0e0);
  background-position: calc(100% - 20px) calc(23px + 0px),calc(100% - 15px) calc(23px + 0px),calc(100% - 40px) 5px;
  background-size: 5px 5px, 5px 5px, 1px 45px;
  background-repeat: no-repeat;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  height: 55px;
  padding-left: 15px;
}
body .gform_wrapper label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
body .gform_wrapper label.gfield_label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
body .gform_wrapper .gfield_description {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
}
body .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
}
body .gform_wrapper ul.gfield_checkbox li input[type="checkbox"] {
  appearance: checkbox;
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox;
  margin-left: 5px !important;
  position: relative;
  top: 1px;
  vertical-align: top;
}
body .gform_wrapper ul.gfield_radio li input[type="radio"] {
  appearance: radio-button;
  -moz-appearance: radio;
  -webkit-appearance: radio;
  margin-left: 5px !important;
  position: relative;
  top: 3px;
  vertical-align: top;
}
body .gform_wrapper li {
  margin-bottom: 10px;
  padding-left: 0;
}
body .gform_wrapper .top_label .gfield_label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
body .gform_wrapper .ginput_complex label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 10px !important;
  letter-spacing: 0.15em !important;
  opacity: 0.7;
  padding-top: 5px;
  text-transform: uppercase;
}
body .gform_wrapper .ginput_complex span {
  display: inline-block;
  margin-bottom: 6px;
}
body .gform_wrapper .ginput_full {
  width: 100%;
}
body .gform_wrapper .ginput_left {
  clear: left;
}
body .gform_wrapper .gfield_html p {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 20px;
}
body .gform_wrapper .gfield_html ul li {
  font-size: 12px;
  list-style: disc;
  margin: 0 0 10px 20px;
}
body .gform_wrapper .gform_footer {
  margin: 30px 0 0;
  padding: 0;
}
body .gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_footer input[type="submit"] {
  background: #b69d73;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  margin: 0;
  padding: 18px 24px;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  width: 100%;
}
@media screen and (min-width: 900px) {
  body .gform_wrapper .gform_footer input.button:hover,
  body .gform_wrapper .gform_footer input[type="submit"]:hover {
    background: #000;
  }
}
body #gforms_confirmation_message {
  border: 3px solid #fafce9;
  padding: 20px;
}
body .gforms_confirmation_message {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
}
/* Pages  ////////////////////////////////////////////////////////// */
.pre span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin-bottom: 27px;
}
.pre span i {
  color: #9d9d9d;
  font-style: normal;
  padding-left: 10px;
}
.pre-title-sans {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.18em;
  line-height: 1.5;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.small-title-serif {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.title-large {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.25;
  margin-bottom: 20px;
}
.para-large.para-sans {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 25px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.content {
  position: relative;
}
.content h1 {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 20px;
}
.content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 20px;
}
.content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 40px;
}
.content p a {
  color: #b69d73;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.content p a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .content p {
    margin-bottom: 24px;
  }
}
.content ul {
  margin-bottom: 30px;
}
.content ul a {
  color: #b69d73;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.content ul a:hover {
  opacity: 0.7;
}
.content ul li {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 0 15px 30px;
  position: relative;
}
.content ul li:before {
  content: "- ";
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  left: 0;
  position: absolute;
}
.content figure.quote {
  margin: 0 0 40px;
}
.content figure.quote blockquote {
  position: relative;
}
.content figure.quote blockquote p {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.8;
}
.content figure.quote blockquote p + p {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .content figure.quote blockquote p {
    font-size: 22px;
  }
}
.content figure.quote blockquote footer {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.content figure.quote blockquote footer:before {
  background: #b69d73;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  width: 30px;
  vertical-align: middle;
}
.content figure.quote figcaption {
  color: #5e5e5e;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding-top: 25px;
}
.content img {
  height: auto;
  max-width: 100%;
}
.content img.alignleft {
  display: inline-block;
  float: left;
  margin: 7px 20px 6px 0;
  width: 35%;
}
.content img.alignright {
  display: inline-block;
  float: right;
  margin: 7px 0 6px 20px;
  width: 35%;
}
.content ul.btns li {
  padding-left: 0;
}
.content ul.btns li:before {
  display: none;
}
.content form ul li {
  padding-left: 0;
}
.content form ul li:before {
  display: none;
}
/* Footer ////////////////////////////////////////////////////////// */
#footer {
  background-color: #f8f7f6;
  position: relative;
}
#footer h1 {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.6;
  max-width: 1200px;
  margin-bottom: 60px;
  orphans: 3;
}
#footer .col {
  display: inline;
  float: left;
}
#footer .col + .col {
  padding-left: 75px;
}
#footer .col.pre-line:before {
  left: -70px;
  top: 7px;
}
#footer .col address {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.75;
}
#footer .col address strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
#footer .col address a {
  color: #282728;
}
#footer .col address a svg {
  left: 0;
  position: relative;
  top: -4px;
  transition: left 0.25s ease-in-out;
  -moz-transition: left 0.25s ease-in-out;
  -o-transition: left 0.25s ease-in-out;
  -webkit-transition: left 0.25s ease-in-out;
}
#footer .col address a:hover svg {
  left: 4px;
}
#footer .container-02:after {
  clear: both;
  content: "";
  display: block;
}
#footer #bottom {
  background-color: #f8f7f6;
  line-height: 140px;
  padding: 0 60px;
  position: relative;
  width: 100%;
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  float: left;
  font-size: 12px;
}
@media screen and (max-width: 900px) {
  #footer #bottom {
    padding: 0 10vw;
  }
}
#footer #bottom .left {
  display: inline;
  float: left;
}
#footer #bottom .right {
  float: right;
}
#footer #bottom a {
  color: #282728;
  text-decoration: underline;
  transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
}
#footer #bottom a:hover {
  color: #b69d73;
}
#footer #bottom span {
  opacity: 0.4;
}
/* Global Usage ////////////////////////////////////////////////////////// */
a.skip-link {
  display: none;
}
::selection {
  background: #000;
  color: #fff;
}
::-moz-selection {
  background: #000;
  color: #fff;
}
.clearboth {
  clear: both;
  height: 0;
}
article,
section {
  clear: both;
}
a.link {
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
/* Video ////////////////////////////////////////////////////////// */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  margin-bottom: 30px;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-bg {
  height: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .video-bg video {
    height: 70vh;
  }
}
/* Header ////////////////////////////////////////////////////////// */
body.hero #menu #nav {
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
body.page-home header nav a {
  color: #141414;
}
#header {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  height: 140px;
  left: 0;
  mix-blend-mode: difference;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}
#header:after {
  clear: both;
  content: "";
  display: block;
}
#header.scrolled #menu #nav {
  opacity: 0 !important;
  top: -20px;
  pointer-events: none;
}
#header a#logo {
  color: #e7e7e7;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  left: 50%;
  line-height: 140px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  transform: translateX(-50%);
}
#header a#cta-fixed {
  color: #e7e7e7;
  float: right;
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 140px;
}
#header a#cta-fixed svg {
  mix-blend-mode: normal;
}
#header a#cta-fixed svg path {
  fill: #49628c;
}
#header #menu {
  display: inline;
  float: left;
  padding-top: 50px;
}
#header #menu a#nav-btn {
  color: #e7e7e7;
  display: inline-block;
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.9375rem;
  margin-bottom: 8px;
  padding: 12px 0;
  position: relative;
  z-index: 106;
}
#header #menu a#nav-btn span {
  display: inline-block;
  height: 7px;
  margin-left: 7px;
  position: relative;
  width: 20px;
}
#header #menu a#nav-btn span:before,
#header #menu a#nav-btn span:after {
  background: #e7e7e7;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
#header #menu a#nav-btn span:before {
  top: 0;
  width: 75%;
}
#header #menu a#nav-btn span:after {
  bottom: 0;
  width: 100%;
}
#header #menu a#nav-btn.in {
  position: fixed;
}
#header #menu a#nav-btn.in:before {
  transform: rotate(45deg);
}
#header #menu a#nav-btn.in:after {
  bottom: 18px;
  transform: rotate(-45deg);
}
#header #menu #nav {
  position: relative;
}
#header #menu #nav:after {
  clear: both;
  content: "";
  display: block;
}
@media screen and (min-width: 768px) {
  #header #menu #nav {
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  #header #menu #nav {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: table;
    left: 0;
    height: 100%;
    margin: 0;
    min-height: 500px;
    min-width: inherit;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 105;
    transition: opacity 0.35s ease-in-out;
    -moz-transition: opacity 0.35s ease-in-out;
    -o-transition: opacity 0.35s ease-in-out;
    -webkit-transition: opacity 0.35s ease-in-out;
  }
  #header #menu #nav.in {
    opacity: 1;
    pointer-events: inherit;
  }
  #header #menu #nav.out {
    opacity: 0;
    pointer-events: none;
  }
}
#header #menu #nav ul.nav {
  position: relative;
}
@media screen and (max-width: 768px) {
  #header #menu #nav ul.nav {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: table-cell;
    padding-bottom: 100px;
    vertical-align: middle;
    width: 100%;
    z-index: 5;
  }
}
@media screen and (min-width: 768px) {
  #header #menu #nav ul.nav li {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #header #menu #nav ul.nav li {
    display: table;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease-in-out;
    -moz-transition: opacity 0.35s ease-in-out;
    -o-transition: opacity 0.35s ease-in-out;
    -webkit-transition: opacity 0.35s ease-in-out;
  }
  #header #menu #nav ul.nav li.in {
    opacity: 1;
    pointer-events: inherit;
  }
  #header #menu #nav ul.nav li.out {
    opacity: 0;
    pointer-events: none;
  }
}
#header #menu #nav ul.nav li a {
  color: #626262;
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  padding: 10px 0;
  position: relative;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
#header #menu #nav ul.nav li a.current {
  color: #d7d8d7;
}
#header #menu #nav ul.nav li a:hover {
  color: #49628c;
}
/* Typography ////////////////////////////////////////////////////////// */
/* Capabilities ////////////////////////////////////////////////////////// */
.page-capabilities main {
  padding-top: 15vh;
}
.page-capabilities main #big-intro {
  padding-top: 20vh;
}
.page-capabilities main #big-intro h1 {
  margin-bottom: 6vw;
  max-width: 1000px;
}
.page-capabilities main #big-intro h1 .line {
  overflow: hidden;
}
.page-capabilities main #big-intro .imgs {
  background-color: #b69d73;
  height: 50vh;
  width: 100%;
}
.page-capabilities main .container-02 {
  padding-bottom: 6vw;
}
.page-capabilities main #capabilities {
  overflow: hidden;
}
.page-capabilities main #work-loop {
  cursor: none !important;
  display: flex;
  flex-wrap: nowrap;
}
.page-capabilities main #work-loop .flickity-viewport {
  overflow: initial;
}
.page-capabilities main #work-loop .flickity-viewport .item {
  padding-right: 30px;
  width: 36%;
}
.page-capabilities main #work-loop .item {
  display: flex;
  flex-shrink: 0;
}
.page-capabilities main #work-loop .item:last-of-type figure {
  padding-right: 435px;
}
.page-capabilities main #work-loop .item figure {
  margin: 0;
  padding-right: 5vw;
}
.page-capabilities main #work-loop .item figure img {
  height: 70vh;
  padding: 15vh 0 15vh;
  width: auto;
}
.drag-proxy {
  visibility: hidden;
  position: absolute;
}
/* Contact ////////////////////////////////////////////////////////// */
.page-contact {
  background-color: #282728;
}
.page-contact #contact {
  color: #fff;
  padding-top: 15vh;
}
.page-contact #contact h1 {
  max-width: 1000px;
}
.page-contact #contact h1 .line {
  overflow: hidden;
}
.page-contact #contact .col {
  display: inline;
  float: left;
}
.page-contact #contact .col + .col {
  padding-left: 75px;
}
.page-contact #contact .col.pre-line:before {
  left: -70px;
  top: 7px;
}
.page-contact #contact .col address {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.75;
}
.page-contact #contact .col address strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.page-contact #contact .col address a {
  color: #fff;
}
.page-contact #contact .col address a svg {
  left: 0;
  opacity: 0;
  position: relative;
  top: -4px;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.page-contact #contact .col address a:hover svg {
  left: 4px;
  opacity: 1;
}
.page-contact #contact .container-02 {
  padding-bottom: 5vh;
}
.page-contact #footer {
  background-color: transparent;
}
.page-contact #footer #bottom {
  background-color: transparent;
}
.page-contact #footer #bottom .left {
  color: rgba(255, 255, 255, 0.6);
}
.page-contact #footer #bottom .left a {
  color: #f8f7f6;
}
/* Hero ////////////////////////////////////////////////////////// */
#hero-overlay {
  background-color: #b69d73;
  bottom: 0;
  height: 100vh;
  position: fixed;
  width: 100vw;
  z-index: 5;
}
#hero {
  background-color: #282728;
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  min-height: 700px;
  position: relative;
}
#hero #hero-msg {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  left: 0;
  padding: 0 10vw;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 5;
}
#hero #hero-msg h2 {
  color: #fff;
  display: block;
  font-family: 'Trade Winds', cursive;
  font-size: 14vw;
  margin-bottom: 22px;
}
@media screen and (max-width: 900px) {
  #hero #hero-msg h2 {
    font-size: 17vw;
  }
}
#hero #hero-msg h1 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.6em;
  line-height: 70px;
  text-transform: uppercase;
}
#hero #hero-msg h1 span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
#hero #hero-msg p {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.75;
  padding: 0 14vw 20px 70px;
}
#hero #hero-msg p.pre-line:before {
  left: 0;
  top: 18px;
}
#hero #hero-msg a {
  color: #282728;
  margin-left: 70px;
}
#hero #hero-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
#hero #hero-vid {
  background-color: #b69d73;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  z-index: 4;
}
#hero #hero-vid .wiper {
  background-color: #f8f7f6;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
#hero #hero-vid:before {
  background: -webkit-linear-gradient(220deg, rgba(248, 247, 246, 0) 75%, #f8f7f6 110%);
  background: -moz-linear-gradient(220deg, rgba(248, 247, 246, 0) 75%, #f8f7f6 110%);
  background: linear-gradient(220deg, rgba(248, 247, 246, 0) 75%, #f8f7f6 110%);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
#imgs {
  padding-bottom: 10vw;
}
#imgs:after {
  clear: both;
  content: "";
  display: block;
}
#imgs > div {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 65%;
  position: relative;
}
#imgs > div .hide {
  background-color: #f8f7f6;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  #imgs > div .hide {
    display: none;
  }
}
#imgs > div .wiper {
  background-color: #b69d73;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  #imgs > div .wiper {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  #imgs > div {
    display: inline;
    float: left;
    margin-right: 30px;
    width: calc(33.333% - 30px);
    width: -moz-calc(33.333% - 30px);
    width: -webkit-calc(33.333% - 30px);
  }
  #imgs > div:nth-of-type(3) {
    margin-right: 0;
  }
}
@media screen and (max-width: 900px) {
  #imgs > div {
    display: block;
    margin-bottom: 30px;
    width: 100%;
  }
  #imgs > div:nth-of-type(3) {
    margin-bottom: 0;
  }
}
#home-intro {
  background-color: #282728;
  color: #fff;
  margin-bottom: 100px;
}
#home-intro .container-02:after {
  clear: both;
  content: "";
  display: block;
}
#home-intro h1 {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.6;
  margin-bottom: 100px;
}
#home-intro .fig figure {
  margin: 0;
  position: relative;
}
#home-intro .fig figure figcaption {
  font-family: "adriane", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  height: 35px;
  overflow: hidden;
}
#home-intro .fig figure figcaption span {
  color: #9d9d9d;
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
}
#home-intro .fig .img {
  padding-bottom: 23vw;
  position: relative;
}
#home-intro .fig .img .wiper {
  background-color: #b69d73;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
#home-intro .fig .img span {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
#home-intro .fig .img img {
  height: auto;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 2%;
}
#home-intro .fig-01 {
  display: inline;
  float: left;
  width: 65%;
}
#home-intro .fig-01 .img .wiper,
#home-intro .fig-01 .img span {
  height: calc(100% + 200px);
  height: -moz-calc(100% + 200px);
  height: -webkit-calc(100% + 200px);
}
#home-intro .fig-01 .img .wiper {
  bottom: -200px;
}
#home-intro .fig-02 {
  float: right;
  width: 30%;
}
#home-intro a {
  color: #fff;
  clear: right;
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  float: right;
  font-size: 0.9375rem;
  line-height: 100px;
  width: 30%;
}
#home-intro a svg {
  left: 0;
  position: relative;
  transition: left 0.25s ease-in-out;
  -moz-transition: left 0.25s ease-in-out;
  -o-transition: left 0.25s ease-in-out;
  -webkit-transition: left 0.25s ease-in-out;
}
#home-intro a:hover svg {
  left: 4px;
}
#home-process {
  background-color: #f8f7f6;
  padding-top: 180px;
}
#home-process-intro {
  padding-bottom: 60px;
}
#home-process-intro h1 {
  position: relative;
}
#home-process-intro h1.pre-line:before {
  left: -70px;
  top: 10px;
}
#home-process-steps:after {
  clear: both;
  content: "";
  display: block;
}
#home-process-steps .col {
  display: inline;
  float: left;
  margin-right: 5%;
  padding: 10vw 0;
  position: sticky;
  top: 40px;
  width: 30%;
}
#home-process-steps .col:nth-of-type(2) {
  margin-top: 30vh;
}
#home-process-steps .col:nth-of-type(3) {
  margin-right: 0;
  margin-top: 60vh;
}
#home-process-steps .col h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 30px;
  text-transform: uppercase;
}
#home-process-steps .col h2 em {
  display: block;
  font-family: "adriane", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: normal;
  margin-bottom: 10px;
  text-transform: none;
}
#home-process-steps .col p {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 2;
}
/* Project Single ////////////////////////////////////////////////////////// */
.page-project-single.project-intro #cursor {
  background: #b69d73;
  border: 1px solid #b69d73;
}
.page-project-single.project-intro .cta-fixed {
  color: #fff;
}
.page-project-single.project-intro main {
  background-color: #181818;
}
.page-project-single.project-intro #container #project-intro,
.page-project-single.project-intro #container #project-content,
.page-project-single.project-intro #container #project-media {
  background-color: transparent;
  color: #fff;
}
.page-project-single.project-intro #container #project-intro p,
.page-project-single.project-intro #container #project-content p,
.page-project-single.project-intro #container #project-media p {
  color: rgba(255, 255, 255, 0.7);
}
.page-project-single.project-intro #container #project-intro a,
.page-project-single.project-intro #container #project-content a,
.page-project-single.project-intro #container #project-media a {
  color: #fff;
}
.page-project-single.project-intro #container #next {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.page-project-single.project-intro.project-media main {
  background-color: #fff;
}
.page-project-single.project-intro.project-media #cursor {
  background: inherit;
  border: inherit;
}
.page-project-single.project-intro.project-media .cta-fixed {
  color: initial;
}
.page-project-single.project-intro.project-media #container #project-media {
  color: initial;
}
.page-project-single.project-intro.project-media #container #project-media p,
.page-project-single.project-intro.project-media #container #project-media a {
  color: initial;
}
.page-project-single.project-intro.project-media #container #project-media #next {
  border-top-color: #e5e5e5;
}
.page-project-single main {
  background: var(--light);
  transition: background 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out;
  -o-transition: background 0.5s ease-in-out;
  -webkit-transition: background 0.5s ease-in-out;
}
.page-project-single main .section h1,
.page-project-single main .section h2,
.page-project-single main .section h3,
.page-project-single main .section p,
.page-project-single main .section a {
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.page-project-single #container {
  background-color: #fff;
}
.page-project-single #container #smooth-content {
  background-color: #fff;
}
.page-project-single #container p {
  color: #5e5e5e;
}
.page-project-single #container a.btn {
  color: #282728;
}
.page-project-single #container .row {
  overflow: hidden;
  padding: 50px 0;
}
.page-project-single #container .content > :last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.page-project-single #container #project-hero {
  background: var(--white);
  padding: 50vh 0 60px;
  position: relative;
}
.page-project-single #container #project-hero #project-img {
  height: calc(100% + 80px);
  height: -moz-calc(100% + 80px);
  height: -webkit-calc(100% + 80px);
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 640px;
  z-index: 1;
}
.page-project-single #container #project-hero #project-img .wipe {
  background-color: #b69d73;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.page-project-single #container #project-hero #project-img .img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.page-project-single #container #project-hero #project-img .img.one {
  left: 0;
  z-index: 3;
}
.page-project-single #container #project-hero #project-img .img.two {
  left: calc(-100% - 50px);
  left: -moz-calc(-100% - 50px);
  left: -webkit-calc(-100% - 50px);
  z-index: 2;
}
.page-project-single #container #project-hero #project-img .img.three {
  left: calc(100% + 50px);
  left: -moz-calc(100% + 50px);
  left: -webkit-calc(100% + 50px);
  z-index: 1;
}
.page-project-single #container #project-hero #project-title {
  max-width: calc(50% + 320px);
  max-width: -moz-calc(50% + 320px);
  max-width: -webkit-calc(50% + 320px);
  position: relative;
  z-index: 2;
}
.page-project-single #container #project-hero #project-title strong {
  color: #5e5e5e;
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 22px;
}
.page-project-single #container #project-hero #project-title h1 {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 90px;
}
.page-project-single #container #project-hero #project-services {
  bottom: 7px;
  left: calc(50% + 320px);
  left: -moz-calc(50% + 320px);
  left: -webkit-calc(50% + 320px);
  padding-left: 70px;
  position: absolute;
}
.page-project-single #container #project-hero #project-services:before {
  left: 0;
  top: 10px;
}
.page-project-single #container #project-hero #project-services h2 {
  font-family: "adriane", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 23px;
  margin-bottom: 10px;
}
.page-project-single #container #project-hero #project-services ul li {
  color: #5e5e5e;
  font-size: 18px;
  line-height: 1.7;
}
.page-project-single #container #project-hero #project-services ul li + li {
  padding-top: 2px;
}
.page-project-single #container #project-intro {
  transition: background 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out;
  -o-transition: background 0.5s ease-in-out;
  -webkit-transition: background 0.5s ease-in-out;
  padding: 160px 0 50px;
}
.page-project-single #container #project-content {
  transition: background 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out;
  -o-transition: background 0.5s ease-in-out;
  -webkit-transition: background 0.5s ease-in-out;
}
.page-project-single #container #project-media {
  transition: background 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out;
  -o-transition: background 0.5s ease-in-out;
  -webkit-transition: background 0.5s ease-in-out;
}
.page-project-single #container #project-media #work-loop .flickity-viewport {
  overflow: initial;
}
.page-project-single #container #project-media #work-loop .flickity-viewport .item {
  padding-right: 30px;
  width: 36%;
}
.page-project-single #container .media-group .media {
  padding-bottom: 30px;
  position: relative;
}
.page-project-single #container .media-group .media:after {
  clear: both;
  content: "";
  display: block;
}
.page-project-single #container .media-group .media:last-of-type {
  padding-bottom: 0;
}
.page-project-single #container .media-group .media figure {
  line-height: 0;
  margin: 0;
}
.page-project-single #container .media-group .media figure img {
  height: auto;
  width: 100%;
}
.page-project-single #container .media-group .media.double:after {
  clear: both;
  content: "";
  display: block;
}
.page-project-single #container .media-group .media.double figure {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: inline;
  float: left;
  width: 50%;
}
.page-project-single #container .media-group .media.double figure:first-of-type {
  padding-right: 15px;
}
.page-project-single #container .media-group .media.double figure:last-of-type {
  padding-left: 15px;
}
.page-project-single #container .media-group .media.double figure.bg {
  padding-bottom: calc(50% - 15px);
  padding-bottom: -moz-calc(50% - 15px);
  padding-bottom: -webkit-calc(50% - 15px);
  position: relative;
}
.page-project-single #container .media-group .media.double figure.bg:first-of-type div {
  left: 0;
}
.page-project-single #container .media-group .media.double figure.bg:last-of-type div {
  right: 0;
}
.page-project-single #container .media-group .media.double figure.bg div {
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  width: calc(100% - 15px);
  width: -moz-calc(100% - 15px);
  width: -webkit-calc(100% - 15px);
}
.page-project-single #container .media-group .media.double figure.bg div iframe {
  height: 100%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 177.777vh;
}
#next {
  border-top: 1px solid #e5e5e5;
  margin-top: 80px;
  padding: 80px 0 !important;
}
#next a strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 28px;
  padding-top: 10px;
}
.zoom {
  padding-bottom: 66%;
}
.zoom .img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
/* Theme Branding ////////////////////////////////////////////////////////// */
/* Base ////////////////////////////////////////////////////////// */
html,
body {
  background: #282728;
  color: #282728;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
}
html *,
body * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
html.lock body {
  overflow: hidden;
}
body {
  visibility: hidden;
}
/* Transition ////////////////////////////////////////////////////////// */
.load-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}
.load-container .loading-screen {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  background-color: #282728;
  width: 0%;
  height: 100%;
}
/* Fade ////////////////////////////////////////////////////////// */
.fade-leave {
  opacity: 1;
}
.fade-leave-active {
  transition: opacity 0.2s linear;
}
.fade-leave-to {
  opacity: 0;
}
.fade-enter {
  opacity: 0;
}
.fade-enter-active {
  transition: opacity 0.2s linear;
}
.fade-enter-to {
  opacity: 1;
}
/* Contain ////////////////////////////////////////////////////////// */
#container {
  background-color: #282728;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: auto;
  position: relative;
  width: 100%;
}
#container:after {
  clear: both;
  content: "";
  display: block;
}
:root {
  --white: #fff;
  --light: #f8f7f6;
  --dark: #282728;
}
.container {
  margin: auto;
  position: relative;
}
.container-00 {
  margin: auto;
  padding: 0 80px;
  position: relative;
}
.container-00:after {
  clear: both;
  content: "";
  display: block;
}
.container-00.left {
  left: -70px;
}
.container-00.eighty {
  padding-right: 20%;
}
.container-00.seventy {
  padding-right: 30%;
}
.container-01 {
  margin: auto;
  padding: 0 150px;
  position: relative;
}
.container-01:after {
  clear: both;
  content: "";
  display: block;
}
.container-01.left {
  left: -70px;
}
.container-01.eighty {
  padding-right: 20%;
}
.container-01.seventy {
  padding-right: 30%;
}
.container-02 {
  margin: auto;
  padding: 0 220px;
  position: relative;
}
.container-02:after {
  clear: both;
  content: "";
  display: block;
}
.container-02.left {
  left: -70px;
}
.container-02.eighty {
  padding-right: 20%;
}
.container-02.seventy {
  padding-right: 30%;
}
.container-03 {
  margin: auto;
  max-width: 1400px;
  padding: 0 80px;
  position: relative;
}
.container-03:after {
  clear: both;
  content: "";
  display: block;
}
.container-03.left {
  left: -70px;
}
.container-03.eighty {
  padding-right: 20%;
}
.container-03.seventy {
  padding-right: 30%;
}
.container-04 {
  margin: auto;
  max-width: 640px;
  position: relative;
}
.container-04:after {
  clear: both;
  content: "";
  display: block;
}
.container-04.left {
  left: -70px;
}
.container-04.eighty {
  padding-right: 20%;
}
.container-04.seventy {
  padding-right: 30%;
}
.row-t-padding {
  padding-top: 220px;
}
.row-b-padding {
  padding-bottom: 220px;
}
/* Content Padding ////////////////////////////////////////////////////////// */
.base-lr-padding {
  padding-left: 60px;
  padding-right: 60px;
}
.base-l-padding {
  padding-left: 70px;
}
.base-b-padding {
  padding-bottom: 5vw;
}
section.max {
  margin: auto;
  max-width: 2000px;
}
/* Sections ////////////////////////////////////////////////////////// */
.section.dark {
  background-color: #282728;
}
.section.light {
  background-color: #f8f7f6;
}
/* Elements ////////////////////////////////////////////////////////// */
.pre-line {
  position: relative;
}
.pre-line:before {
  background-color: #b69d73;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 45px;
}
/* Icons ////////////////////////////////////////////////////////// */
svg.arrow {
  height: 9px;
  position: relative;
  top: -1px;
  width: 18px;
}
