/*
VARIABLES --------------------
*/
/*
VW SIZING FUNCTION --------------------
*/
/*
FONT SIZE MIXIN FUNCTION --------------------
*/
/*
MIXINS --------------------
*/
/* ASPECT RATIO MIXIN */
/* MEDIA QUERY MIXINS */
/*
EXTEND / INHERITANCE --------------------
*/
.page-wrap#about-page .carousel-section .carousel-section-carousel .carousel-slide, .page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .carousel-slide, .page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content .slide-image, .page-wrap .work-thumbnail .thumbnail-media-wrapper .work-thumbnail-hover-carousel .carousel-slide, .page-wrap .work-thumbnail .thumbnail-media-wrapper .thumbnail-image, .page-wrap .work-thumbnail .thumbnail-media-wrapper .thumbnail-video, .video-placeholder {
  background: no-repeat 50% 50%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.page-wrap#home-page .homepage-carousel-section .down-arrow-wrap img.arrow, .page-wrap .work-thumbnail .thumbnail-media-wrapper .thumbnail-image video, .page-wrap .work-thumbnail .thumbnail-media-wrapper .thumbnail-video video {
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

/*
GENERAL STYLES --------------------
*/
html, html a {
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
html.visible {
  opacity: 1;
}

body {
  color: #000000;
  background-color: #ffffff;
  transition: background-color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: background-color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: background-color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: background-color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: background-color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  text-rendering: optimizeLegibility;
  font-family: neue-haas-grotesk-display, sans-serif;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  will-change: background-color;
}
body a {
  position: relative;
  display: inline-block;
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
body a.no-underline {
  text-decoration: none !important;
}
body a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 480px) {
  body a {
    text-decoration-thickness: 0.5px;
  }
}

/*
SITE WIDE CONTENT ------------------
*/
#content {
  position: relative;
  display: block;
  width: 100%;
  height: auto !important;
  z-index: 20;
}

.content-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity;
}
.content-wrapper.visible {
  opacity: 1;
}

.lazyload-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

img, video, svg {
  display: block;
  width: 100%;
  height: auto;
}

.loading-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity;
}
.loading-overlay.green {
  background-color: #E9FF00;
}
.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.flickity-bg-lazyloaded .loading-overlay {
  opacity: 0;
  pointer-events: none;
}

.video-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity;
}
.video-placeholder.hidden {
  opacity: 0;
  pointer-events: none;
}

.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
  opacity: 0 !important;
  transition: opacity 0ms cubic-bezier(0.25, 0.1, 0.25, 1) !important;
  -o-transition: opacity 0ms cubic-bezier(0.25, 0.1, 0.25, 1) !important;
  -ms-transition: opacity 0ms cubic-bezier(0.25, 0.1, 0.25, 1) !important;
  -moz-transition: opacity 0ms cubic-bezier(0.25, 0.1, 0.25, 1) !important;
  -webkit-transition: opacity 0ms cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
  opacity: 1 !important;
}

.flickity-prev-next-button {
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
  z-index: 200;
  background: transparent !important;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}
.flickity-prev-next-button.previous {
  left: 0;
}
.flickity-prev-next-button.next {
  right: 0;
}

/*
CONTENT WRAPS ------------------
*/
.outer-content-wrap {
  position: relative;
  width: calc(100% - 95px);
  width: -o-calc(100% - 95px);
  width: -ms-calc(100% - 95px);
  width: -moz-calc(100% - 95px);
  width: -webkit-calc(100% - 95px);
  max-width: 1345px;
  margin: 0 auto;
  z-index: 1;
}
.outer-content-wrap.full-width {
  max-width: 100%;
}
.outer-content-wrap.wider {
  width: calc(100% - 95px);
  width: -o-calc(100% - 95px);
  width: -ms-calc(100% - 95px);
  width: -moz-calc(100% - 95px);
  width: -webkit-calc(100% - 95px);
  max-width: 1345px;
}
.outer-content-wrap.narrower {
  width: calc(100% - 252px);
  width: -o-calc(100% - 252px);
  width: -ms-calc(100% - 252px);
  width: -moz-calc(100% - 252px);
  width: -webkit-calc(100% - 252px);
  max-width: 1188px;
}
@media only screen and (max-width: 1080px) {
  .outer-content-wrap {
    width: calc(100% - 80px);
    width: -o-calc(100% - 80px);
    width: -ms-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
  }
  .outer-content-wrap.wider, .outer-content-wrap.narrower {
    width: calc(100% - 80px);
    width: -o-calc(100% - 80px);
    width: -ms-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
  }
}
@media only screen and (max-width: 480px) {
  .outer-content-wrap {
    width: calc(100% - 10.6666666667vw);
    width: -o-calc(100% - 10.6666666667vw);
    width: -ms-calc(100% - 10.6666666667vw);
    width: -moz-calc(100% - 10.6666666667vw);
    width: -webkit-calc(100% - 10.6666666667vw);
  }
  .outer-content-wrap.wider, .outer-content-wrap.narrower {
    width: calc(100% - 10.6666666667vw);
    width: -o-calc(100% - 10.6666666667vw);
    width: -ms-calc(100% - 10.6666666667vw);
    width: -moz-calc(100% - 10.6666666667vw);
    width: -webkit-calc(100% - 10.6666666667vw);
  }
}

/*
TEXT STYLES CONTENT ------------------
*/
h1, h2, h3, h4, h5, h6 {
  position: relative;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 1em;
}

h1,
span {
  font-family: neue-haas-grotesk-display, sans-serif;
}
h1.size-02,
span.size-02 {
  font-size: 64px;
  line-height: 1.0245614035em;
  letter-spacing: 0.06em;
  font-size: 29px;
}
@media (min-width: 375px) {
  h1.size-02,
  span.size-02 {
    font-size: calc(2.7989821883vw + 18.5038167939px);
  }
}
@media (min-width: 768px) {
  h1.size-02,
  span.size-02 {
    font-size: calc(3.8461538462vw + 10.4615384615px);
  }
}
@media (min-width: 1080px) {
  h1.size-02,
  span.size-02 {
    font-size: calc(3.3333333333vw + 16px);
  }
}
@media (min-width: 1440px) {
  h1.size-02,
  span.size-02 {
    font-size: 64px;
  }
}
h1.size-02,
span.size-02 {
  margin-bottom: 0.5em;
  font-weight: 500;
}
h1.size-03,
span.size-03 {
  font-size: 59px;
  line-height: 1em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 26.3px;
}
@media (min-width: 375px) {
  h1.size-03,
  span.size-03 {
    font-size: calc(2.7226463104vw + 16.0900763359px);
  }
}
@media (min-width: 768px) {
  h1.size-03,
  span.size-03 {
    font-size: calc(3.5256410256vw + 9.9230769231px);
  }
}
@media (min-width: 1080px) {
  h1.size-03,
  span.size-03 {
    font-size: calc(3.0555555556vw + 15px);
  }
}
@media (min-width: 1440px) {
  h1.size-03,
  span.size-03 {
    font-size: 59px;
  }
}
h1.size-03,
span.size-03 {
  margin-bottom: 0.6em;
  font-weight: 500;
}
h1.size-04,
span.size-04 {
  font-size: 52.5px;
  line-height: 1em;
  letter-spacing: 0.042em;
  text-transform: uppercase;
  font-size: 28px;
}
@media (min-width: 375px) {
  h1.size-04,
  span.size-04 {
    font-size: calc(2.0356234097vw + 20.3664122137px);
  }
}
@media (min-width: 768px) {
  h1.size-04,
  span.size-04 {
    font-size: calc(2.7243589744vw + 15.0769230769px);
  }
}
@media (min-width: 1080px) {
  h1.size-04,
  span.size-04 {
    font-size: calc(2.2222222222vw + 20.5px);
  }
}
@media (min-width: 1440px) {
  h1.size-04,
  span.size-04 {
    font-size: 52.5px;
  }
}
h1.size-04,
span.size-04 {
  margin-bottom: 0.6em;
  font-weight: 400;
}
h1.size-05,
span.size-05 {
  font-size: 39px;
  line-height: 1.1538461538em;
  font-size: 24px;
}
@media (min-width: 375px) {
  h1.size-05,
  span.size-05 {
    font-size: calc(1.272264631vw + 19.2290076336px);
  }
}
@media (min-width: 768px) {
  h1.size-05,
  span.size-05 {
    font-size: calc(1.6025641026vw + 16.6923076923px);
  }
}
@media (min-width: 1080px) {
  h1.size-05,
  span.size-05 {
    font-size: calc(1.3888888889vw + 19px);
  }
}
@media (min-width: 1440px) {
  h1.size-05,
  span.size-05 {
    font-size: 39px;
  }
}
h1.size-05,
span.size-05 {
  margin-bottom: 1.1538461538em;
  font-weight: 500;
}
h1.size-06,
span.size-06 {
  font-size: 36px;
  line-height: 1.1em;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  font-size: 22px;
}
@media (min-width: 375px) {
  h1.size-06,
  span.size-06 {
    font-size: calc(1.0178117048vw + 18.1832061069px);
  }
}
@media (min-width: 768px) {
  h1.size-06,
  span.size-06 {
    font-size: calc(1.2820512821vw + 16.1538461538px);
  }
}
@media (min-width: 1080px) {
  h1.size-06,
  span.size-06 {
    font-size: calc(1.3888888889vw + 15px);
  }
}
@media (min-width: 1440px) {
  h1.size-06,
  span.size-06 {
    font-size: 35px;
  }
}
h1.size-06,
span.size-06 {
  margin-bottom: 0.8em;
  font-weight: 500;
}

span.menu-text {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 58.5px;
  line-height: 1.4102564103em;
  letter-spacing: 0.03em;
  font-size: 40px;
}
@media (min-width: 375px) {
  span.menu-text {
    font-size: calc(1.5267175573vw + 34.2748091603px);
  }
}
@media (min-width: 768px) {
  span.menu-text {
    font-size: calc(1.9230769231vw + 31.2307692308px);
  }
}
@media (min-width: 1080px) {
  span.menu-text {
    font-size: calc(1.8055555556vw + 32.5px);
  }
}
@media (min-width: 1440px) {
  span.menu-text {
    font-size: 58.5px;
  }
}
span.menu-text {
  margin-bottom: 0px;
  font-weight: 500;
}

h2 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 32.5px;
  line-height: 1.5029868578em;
  letter-spacing: 0.05em;
  font-size: 20px;
}
@media (min-width: 375px) {
  h2 {
    font-size: calc(1.0178117048vw + 16.1832061069px);
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: calc(1.4423076923vw + 12.9230769231px);
  }
}
@media (min-width: 1080px) {
  h2 {
    font-size: calc(1.1111111111vw + 16.5px);
  }
}
@media (min-width: 1440px) {
  h2 {
    font-size: 32.5px;
  }
}
h2 {
  margin-bottom: 0.6em;
  font-weight: 500;
}
h2.size-01 {
  font-size: 100px;
  line-height: 0.97em;
  letter-spacing: -0.005em;
  letter-spacing: 0.01em;
  font-size: 40px;
}
@media (min-width: 375px) {
  h2.size-01 {
    font-size: calc(2.7989821883vw + 29.5038167939px);
  }
}
@media (min-width: 768px) {
  h2.size-01 {
    font-size: calc(3.8461538462vw + 21.4615384615px);
  }
}
@media (min-width: 1080px) {
  h2.size-01 {
    font-size: calc(3.3333333333vw + 27px);
  }
}
@media (min-width: 1440px) {
  h2.size-01 {
    font-size: 75px;
  }
}
h2.size-01 {
  margin-bottom: 0.4em;
  font-weight: 600;
}

h3 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 27.5px;
  line-height: 1.2162162162em;
  letter-spacing: 0.055em;
  font-size: 14.5px;
}
@media (min-width: 375px) {
  h3 {
    font-size: calc(1.1450381679vw + 10.2061068702px);
  }
}
@media (min-width: 768px) {
  h3 {
    font-size: calc(1.2820512821vw + 9.1538461538px);
  }
}
@media (min-width: 1080px) {
  h3 {
    font-size: calc(1.25vw + 9.5px);
  }
}
@media (min-width: 1440px) {
  h3 {
    font-size: 27.5px;
  }
}
h3 {
  margin-bottom: 1.2162162162em;
  font-weight: 400;
}

h4 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 22.5px;
  line-height: 1.6864535769em;
  letter-spacing: 0.11em;
  font-size: 14.5px;
}
@media (min-width: 375px) {
  h4 {
    font-size: calc(0.7633587786vw + 11.6374045802px);
  }
}
@media (min-width: 768px) {
  h4 {
    font-size: calc(0.8012820513vw + 11.3461538462px);
  }
}
@media (min-width: 1080px) {
  h4 {
    font-size: calc(0.6944444444vw + 12.5px);
  }
}
@media (min-width: 1440px) {
  h4 {
    font-size: 22.5px;
  }
}
h4 {
  margin-bottom: 1.6864535769em;
  font-weight: 400;
}

h4.underlined-title {
  display: block;
  border-bottom: 1.5px solid #000000;
  width: 100%;
  height: auto;
  max-width: 31.5104166667vw;
}
@media only screen and (max-width: 480px) {
  h4.underlined-title {
    max-width: 100%;
    padding-bottom: 0.3em;
    margin-bottom: 0.6em !important;
  }
}

h5 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 19.5px;
  line-height: 0.9534883721em;
  letter-spacing: 0.07em;
  font-size: 18px;
}
@media (min-width: 375px) {
  h5 {
    font-size: calc(0.1272264631vw + 17.5229007634px);
  }
}
@media (min-width: 768px) {
  h5 {
    font-size: calc(0.1602564103vw + 17.2692307692px);
  }
}
@media (min-width: 1080px) {
  h5 {
    font-size: calc(0.1388888889vw + 17.5px);
  }
}
@media (min-width: 1440px) {
  h5 {
    font-size: 19.5px;
  }
}
h5 {
  margin-bottom: 0.9534883721em;
  font-weight: 400;
}

h6 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 17px;
  line-height: 1.347826087em;
  letter-spacing: 0.04em;
  font-size: 13px;
}
@media (min-width: 375px) {
  h6 {
    font-size: calc(0.3307888041vw + 11.7595419847px);
  }
}
@media (min-width: 768px) {
  h6 {
    font-size: calc(0.4487179487vw + 10.8538461538px);
  }
}
@media (min-width: 1080px) {
  h6 {
    font-size: calc(0.3611111111vw + 11.8px);
  }
}
@media (min-width: 1440px) {
  h6 {
    font-size: 17px;
  }
}
h6 {
  margin-bottom: 1.347826087em;
  font-weight: 400;
}
h6.smaller {
  font-size: 13px;
  font-size: 10px;
}
@media (min-width: 375px) {
  h6.smaller {
    font-size: calc(0.2544529262vw + 9.0458015267px);
  }
}
@media (min-width: 768px) {
  h6.smaller {
    font-size: calc(0.3205128205vw + 8.5384615385px);
  }
}
@media (min-width: 1080px) {
  h6.smaller {
    font-size: calc(0.2777777778vw + 9px);
  }
}
@media (min-width: 1440px) {
  h6.smaller {
    font-size: 13px;
  }
}

.cc-window {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 14px;
  line-height: 1.347826087em;
  letter-spacing: 1.12px;
  font-size: 14px;
}
@media (min-width: 375px) {
  .cc-window {
    font-size: calc(0vw + 14px);
  }
}
@media (min-width: 768px) {
  .cc-window {
    font-size: calc(0vw + 14px);
  }
}
@media (min-width: 1080px) {
  .cc-window {
    font-size: calc(0vw + 14px);
  }
}
@media (min-width: 1440px) {
  .cc-window {
    font-size: 14px;
  }
}
.cc-window {
  margin-bottom: 1.347826087em;
  font-weight: 400;
}

.cc-btn,
.cc-link {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 14px;
  line-height: 1.347826087em;
  letter-spacing: 0;
  font-size: 12px;
}
@media (min-width: 375px) {
  .cc-btn,
  .cc-link {
    font-size: calc(0.2544529262vw + 11.0458015267px);
  }
}
@media (min-width: 768px) {
  .cc-btn,
  .cc-link {
    font-size: calc(0vw + 13px);
  }
}
@media (min-width: 1080px) {
  .cc-btn,
  .cc-link {
    font-size: calc(0.2777777778vw + 10px);
  }
}
@media (min-width: 1440px) {
  .cc-btn,
  .cc-link {
    font-size: 14px;
  }
}
.cc-btn,
.cc-link {
  margin-bottom: 1.347826087em;
  font-weight: 400;
}

p,
hr,
.plyr__time {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 20px;
  line-height: 1.7142857143em;
  letter-spacing: 0.065em;
  font-size: 14px;
}
@media (min-width: 375px) {
  p,
  hr,
  .plyr__time {
    font-size: calc(0.5089058524vw + 12.0916030534px);
  }
}
@media (min-width: 768px) {
  p,
  hr,
  .plyr__time {
    font-size: calc(0.641025641vw + 11.0769230769px);
  }
}
@media (min-width: 1080px) {
  p,
  hr,
  .plyr__time {
    font-size: calc(0.5555555556vw + 12px);
  }
}
@media (min-width: 1440px) {
  p,
  hr,
  .plyr__time {
    font-size: 20px;
  }
}
p,
hr,
.plyr__time {
  margin-bottom: 1.7142857143em;
  font-weight: 400;
}
p strong, p b,
hr strong,
hr b,
.plyr__time strong,
.plyr__time b {
  font-weight: 600;
}

hr {
  display: block;
  height: 1px;
  border: none !important;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:not(.menu):last-child {
  margin-bottom: 0px !important;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

textarea:focus, input:focus, select:focus {
  outline: 0;
}

em, i {
  font-style: italic;
}

strong, b {
  font-style: normal;
}

@media only screen and (max-width: 480px) {
  h1.size-02,
  span.size-02 {
    font-size: 7.7333333333vw;
  }
  h1.size-03,
  span.size-03 {
    font-size: 7.0133333333vw;
  }
  h1.size-04,
  span.size-04 {
    font-size: 7.4666666667vw;
  }
  h1.size-05,
  span.size-05 {
    font-size: 6.4vw;
  }
  h1.size-06,
  span.size-06 {
    font-size: 5.6vw;
  }
  span.menu-text {
    font-size: 10.6666666667vw;
  }
  h2, p.tagline {
    font-size: 5.3333333333vw;
  }
  h2.size-01 {
    font-size: 10.6666666667vw;
  }
  h3 {
    font-size: 3.8666666667vw;
  }
  h4 {
    font-size: 3.8666666667vw;
  }
  h5 {
    font-size: 4.8vw;
  }
  h6 {
    font-size: 3.8666666667vw;
  }
  h6.smaller {
    font-size: 2.6666666667vw;
  }
  p, hr, .plyr__time {
    font-size: 3.7333333333vw;
    line-height: 1.3823529412em;
  }
}
/*
BUTTON STYLES CONTENT ------------------
*/
.button {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  border: 1.5px solid #000000;
  font-family: neue-haas-grotesk-display, sans-serif;
  line-height: 0.8em;
  text-transform: uppercase;
  border-radius: 1.5em;
  -o-border-radius: 1.5em;
  -ms-border-radius: 1.5em;
  -moz-border-radius: 1.5em;
  -webkit-border-radius: 1.5em;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  will-change: color;
  transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.button:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0px;
  bottom: 0;
  left: 0;
  background: #000000;
  z-index: -1;
  pointer-events: none;
  will-change: height;
  transition: height 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: height 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: height 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: height 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: height 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.button.dark-bg {
  border-color: #ffffff;
  color: #ffffff;
}
.button.dark-bg:before {
  background-color: #ffffff;
}
.button.dark-bg:hover {
  color: #000000 !important;
}
.button.large {
  font-size: 21px;
  letter-spacing: 0.08em;
  font-size: 13px;
}
@media (min-width: 375px) {
  .button.large {
    font-size: calc(0.6615776081vw + 10.5190839695px);
  }
}
@media (min-width: 768px) {
  .button.large {
    font-size: calc(0.8653846154vw + 8.9538461538px);
  }
}
@media (min-width: 1080px) {
  .button.large {
    font-size: calc(0.75vw + 10.2px);
  }
}
@media (min-width: 1440px) {
  .button.large {
    font-size: 21px;
  }
}
.button.large {
  font-weight: 400;
  padding: 0.55em 1.4em;
}
.button.small {
  font-size: 16.5px;
  letter-spacing: 0.09em;
  font-size: 11px;
}
@media (min-width: 375px) {
  .button.small {
    font-size: calc(0.4580152672vw + 9.2824427481px);
  }
}
@media (min-width: 768px) {
  .button.small {
    font-size: calc(0.641025641vw + 7.8769230769px);
  }
}
@media (min-width: 1080px) {
  .button.small {
    font-size: calc(0.4722222222vw + 9.7px);
  }
}
@media (min-width: 1440px) {
  .button.small {
    font-size: 16.5px;
  }
}
.button.small {
  font-weight: 500;
  padding: 0.6em 0.9em;
}
.button:hover {
  color: #ffffff !important;
}
.button:hover:before {
  height: 100%;
}
@media only screen and (max-width: 480px) {
  .button {
    border-width: 1px;
  }
  .button.large {
    font-size: 3.4666666667vw;
    padding: 0.65em 1.5em;
  }
  .button.small {
    font-size: 3.4666666667vw;
    padding: 0.65em 1.5em;
  }
}

/*
PLYR VIDEO STYLES ------------------
*/
.plyr {
  position: relative;
  display: block;
  overflow: hidden;
}
.plyr .plyr__video-wrapper {
  transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.plyr .plyr__control--overlaid {
  width: 75px;
  height: 75px;
  padding: 0px;
  opacity: 1;
}
.plyr .plyr__control--overlaid svg {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 480px) {
  .plyr .plyr__control--overlaid {
    width: 8vw;
    height: 8vw;
  }
}
.plyr .plyr__time {
  font-weight: 600;
  margin-bottom: 0px;
}
@media only screen and (max-width: 480px) {
  .plyr .plyr__controls {
    display: none;
  }
}

.plyr-video-wrapper {
  --plyr-color-main: #ffffff;
  --plyr-tooltip-color: $colour-white;
  --plyr-control-icon-size: 27px;
  --plyr-control-spacing: 15px;
  --plyr-video-controls-background: transparent;
  --plyr-video-control-background-hover: transparent;
}

/*
HEADER CONTENT ------------------
*/
.header-wrap {
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  padding: 33.7584396099px 0 18.0045011253px 0;
  z-index: 100;
  will-change: background-color, transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), background-color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), background-color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: -ms-transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), background-color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: -moz-transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), background-color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), background-color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media only screen and (max-width: 1080px) {
  .header-wrap {
    padding: 30px 0 17px 0;
  }
}
@media only screen and (max-width: 480px) {
  .header-wrap {
    padding: 5.8666666667vw 0 3.2vw 0;
  }
}
.header-wrap .outer-content-wrap {
  position: relative;
  z-index: 20;
}
.header-wrap .logo-and-tagline {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-end;
  -o-align-items: flex-end;
  -ms-align-items: flex-end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  -webkit-transition: -webkit-filter 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: -moz-filter 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: -ms-filter 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: -o-filter 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: filter 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: filter;
}
.header-wrap .logo-and-tagline .main-logo {
  position: relative;
  display: block;
  width: 102.0255063766px;
  height: auto;
  margin-right: 17.2543135784px;
}
.header-wrap .logo-and-tagline .main-logo a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  cursor: pointer;
}
.header-wrap .logo-and-tagline p.tagline {
  margin-bottom: 0;
  font-size: 32.5px;
  font-size: 20px;
}
@media (min-width: 375px) {
  .header-wrap .logo-and-tagline p.tagline {
    font-size: calc(1.0178117048vw + 16.1832061069px);
  }
}
@media (min-width: 768px) {
  .header-wrap .logo-and-tagline p.tagline {
    font-size: calc(1.4423076923vw + 12.9230769231px);
  }
}
@media (min-width: 1080px) {
  .header-wrap .logo-and-tagline p.tagline {
    font-size: calc(1.1111111111vw + 16.5px);
  }
}
@media (min-width: 1440px) {
  .header-wrap .logo-and-tagline p.tagline {
    font-size: 32.5px;
  }
}
.header-wrap .logo-and-tagline p.tagline {
  line-height: 0.9em;
  font-weight: 300;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(20px);
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  will-change: opacity, transform;
}
.header-wrap .logo-and-tagline p.tagline.visible {
  opacity: 1;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
}
@media only screen and (max-width: 768px) {
  .header-wrap .logo-and-tagline p.tagline {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .header-wrap .logo-and-tagline {
    display: block;
  }
  .header-wrap .logo-and-tagline .main-logo {
    min-width: 0px;
    width: 17.3333333333vw;
    margin-right: 0px;
  }
}
.header-wrap .menu-opener {
  position: absolute;
  width: 37.5093773443px;
  height: 37.5093773443px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: -webkit-filter 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: -moz-filter 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: -ms-filter 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: -o-filter 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: filter 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: filter;
}
.header-wrap .menu-opener .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: -moz-transform 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: -ms-transform 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: -o-transform 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.header-wrap .menu-opener .inner:before, .header-wrap .menu-opener .inner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #000000;
}
.header-wrap .menu-opener .inner:before {
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.header-wrap .menu-opener .inner:after {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
}
.header-wrap .menu-opener .page-closer {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.header-wrap .menu-opener.opened, .header-wrap .menu-opener.contact-page-closer {
  filter: invert(0%) !important;
  -o-filter: invert(0%) !important;
  -ms-filter: invert(0%) !important;
  -moz-filter: invert(0%) !important;
  -webkit-filter: invert(0%) !important;
}
.header-wrap .menu-opener.opened .inner, .header-wrap .menu-opener.contact-page-closer .inner {
  transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  -webkit-transform: rotate(-225deg);
}
.header-wrap .menu-opener.contact-page-closer .page-closer.contact {
  display: block;
}
@media only screen and (max-width: 480px) {
  .header-wrap .menu-opener {
    min-width: 0px;
    min-height: 0px;
    width: 5.4666666667vw;
    height: 5.4666666667vw;
    top: 0;
    right: 0;
    transform: translateY(0%);
    -o-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
  .header-wrap .menu-opener .inner:before, .header-wrap .menu-opener .inner:after {
    height: 0.5333333333vw;
  }
}
.header-wrap.white-logo .logo-and-tagline,
.header-wrap.white-logo .menu-opener {
  filter: invert(100%);
  -o-filter: invert(100%);
  -ms-filter: invert(100%);
  -moz-filter: invert(100%);
  -webkit-filter: invert(100%);
}
.header-wrap.solid-header {
  background-color: #ffffff !important;
}
.header-wrap.solid-header .logo-and-tagline,
.header-wrap.solid-header .menu-opener {
  filter: invert(0%) !important;
  -o-filter: invert(0%) !important;
  -ms-filter: invert(0%) !important;
  -moz-filter: invert(0%) !important;
  -webkit-filter: invert(0%) !important;
}
.header-wrap.hidden {
  transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
}

html.menu-overlay-visible .header-wrap .logo-and-tagline {
  pointer-events: none;
}

/*
MENU OVERLAY ------------------
*/
.menu-overlay {
  position: fixed;
  width: 100%;
  max-width: 433.6084021005px;
  height: auto;
  top: 0;
  right: 0;
  background-color: #E9FF00;
  z-index: 10;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translateX(100%);
  -o-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  -moz-transition: -moz-transform 600ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  -ms-transition: -ms-transform 600ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  -o-transition: -o-transform 600ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
}
.menu-overlay::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 480px) {
  .menu-overlay {
    min-width: 0px;
    width: 100%;
  }
  .menu-overlay p {
    font-size: 4.2666666667vw;
  }
}
.menu-overlay .inner-menu-wrap {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  width: 100%;
  height: auto;
  padding: 138.784696174px 37.5093773443px 71.2678169542px 37.5093773443px;
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity;
}
@media only screen and (max-width: 1080px) {
  .menu-overlay .inner-menu-wrap {
    padding: 150px 35px 55px 35px;
  }
}
@media only screen and (max-width: 480px) {
  .menu-overlay .inner-menu-wrap {
    padding: 32vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
.menu-overlay a {
  text-decoration: none;
}
.menu-overlay a:hover {
  text-decoration: underline;
}
.menu-overlay p {
  line-height: 1.5435222672em;
}
.menu-overlay .top-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.menu-overlay .top-section .main-menu {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 41.2603150788px;
  list-style: none;
}
.menu-overlay .top-section .main-menu .main-menu-item {
  position: relative;
  display: block;
}
.menu-overlay .top-section .main-menu .main-menu-item .menu-text {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-decoration-thickness: 2px;
}
.menu-overlay .top-section .main-menu .main-menu-item .menu-text a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
}
.menu-overlay .top-section .main-menu .main-menu-item .menu-text:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1080px) {
  .menu-overlay .top-section .main-menu {
    margin-bottom: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .menu-overlay .top-section .main-menu {
    margin-bottom: 8vw;
  }
}
.menu-overlay .top-section .social-menu {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .menu-overlay .top-section .social-menu {
    display: flex;
    display: -o-flex;
    display: -ms-flex;
    display: -moz-flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -o-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: baseline;
    -o-align-items: baseline;
    -ms-align-items: baseline;
    -moz-align-items: baseline;
    -webkit-align-items: baseline;
  }
  .menu-overlay .top-section .social-menu .social-menu-item {
    margin-right: 4vw;
  }
}
.menu-overlay .bottom-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-top: 60.0150037509px;
}
@media only screen and (max-width: 1080px) {
  .menu-overlay .bottom-section {
    margin-top: 55px;
  }
}
@media only screen and (max-width: 480px) {
  .menu-overlay .bottom-section {
    margin-top: 8vw;
  }
}
.menu-overlay.opened {
  -webkit-transition: -webkit-transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: -moz-transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: -ms-transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: -o-transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
}
.menu-overlay.opened .inner-menu-wrap {
  opacity: 1;
  transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1) 450ms;
  -o-transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1) 450ms;
  -ms-transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1) 450ms;
  -moz-transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1) 450ms;
  -webkit-transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1) 450ms;
}

.menu-overlay-closer {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.27);
  z-index: 5;
  cursor: pointer;
}

/*
MULTI PAGE CONTENT ------------------
*/
.page-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: #ffffff;
  z-index: 10;
}
@media only screen and (max-width: 480px) {
  .page-wrap {
    margin-bottom: 0px !important;
  }
}
.page-wrap:not(#home-page) {
  overflow: hidden;
}
.page-wrap .posts-filter-menu {
  position: relative;
  display: block;
  margin-bottom: 25.5063765941px;
  padding: 0 15.0037509377px;
  font-weight: 300;
  color: #7D7877;
}
.page-wrap .posts-filter-menu span.filter-by {
  font-weight: 500;
  color: #000000;
}
.page-wrap .posts-filter-menu span.posts-filterer {
  cursor: pointer;
  margin-right: 0.6em;
  transition: color 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: color 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: color 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: color 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: color 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: color;
}
.page-wrap .posts-filter-menu span.posts-filterer:last-child {
  margin-right: 0px;
}
.page-wrap .posts-filter-menu span.posts-filterer:hover {
  color: #000000;
}
.page-wrap .posts-filter-menu span.posts-filterer.active {
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  font-weight: 500;
}
@media only screen and (max-width: 1080px) {
  .page-wrap .posts-filter-menu {
    margin-bottom: 30px;
    padding: 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap .posts-filter-menu {
    margin-bottom: 9.3333333333vw;
    padding: 0;
  }
  .page-wrap .posts-filter-menu span.filter-by,
  .page-wrap .posts-filter-menu span.posts-filterer {
    display: block;
    margin-bottom: 0.4em;
  }
}
.page-wrap .related-articles-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 82.5206301575px 0 50.2625656414px 0;
}
.page-wrap .related-articles-section .outer-content-wrap {
  width: calc(100% - 180px);
  width: -o-calc(100% - 180px);
  width: -ms-calc(100% - 180px);
  width: -moz-calc(100% - 180px);
  width: -webkit-calc(100% - 180px);
}
@media only screen and (max-width: 1080px) {
  .page-wrap .related-articles-section {
    padding: 80px 0 63px 0;
  }
  .page-wrap .related-articles-section .outer-content-wrap {
    width: calc(100% - 80px);
    width: -o-calc(100% - 80px);
    width: -ms-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap .related-articles-section {
    padding: 13.3333333333vw 0 16vw 0;
  }
  .page-wrap .related-articles-section .outer-content-wrap {
    width: calc(100% - 10.6666666667vw);
    width: -o-calc(100% - 10.6666666667vw);
    width: -ms-calc(100% - 10.6666666667vw);
    width: -moz-calc(100% - 10.6666666667vw);
    width: -webkit-calc(100% - 10.6666666667vw);
  }
}
.page-wrap .related-articles-section .section-title {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #000000;
  padding-bottom: 6.751687922px;
  margin-bottom: 35.2588147037px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap .related-articles-section .section-title {
    padding-bottom: 7px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap .related-articles-section .section-title {
    padding-bottom: 1.6vw;
    margin-bottom: 6.6666666667vw;
  }
}
.page-wrap .related-articles-section .articles-grid {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .page-wrap .related-articles-section .articles-grid {
    display: block;
  }
}
.page-wrap .related-articles-section .articles-grid .article-thumbnail {
  position: relative;
  display: block;
  width: 31.5%;
  margin-right: 2.75%;
  text-decoration: none !important;
}
.page-wrap .related-articles-section .articles-grid .article-thumbnail:last-child {
  margin-right: 0px;
}
.page-wrap .related-articles-section .articles-grid .article-thumbnail .thumbnail-inner {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.page-wrap .related-articles-section .articles-grid .article-thumbnail .thumbnail-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 15.7539384846px;
}
.page-wrap .related-articles-section .articles-grid .article-thumbnail .thumbnail-text {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-right: 35%;
}
.page-wrap .related-articles-section .articles-grid .article-thumbnail .thumbnail-text strong {
  font-weight: 600;
}
.page-wrap .related-articles-section .articles-grid .article-thumbnail .thumbnail-text span.time {
  display: block;
}
@media only screen and (max-width: 1080px) {
  .page-wrap .related-articles-section .articles-grid .article-thumbnail .thumbnail-image {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap .related-articles-section .articles-grid .article-thumbnail {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 8vw;
  }
  .page-wrap .related-articles-section .articles-grid .article-thumbnail:nth-child(3) {
    display: none;
  }
  .page-wrap .related-articles-section .articles-grid .article-thumbnail .thumbnail-image {
    margin-bottom: 2.1333333333vw;
  }
  .page-wrap .related-articles-section .articles-grid .article-thumbnail .thumbnail-text {
    padding-right: 20%;
  }
}
.page-wrap .related-articles-section .view-more-button-wrap {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  width: 100%;
  height: auto;
  margin-top: 56.2640660165px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap .related-articles-section .view-more-button-wrap {
    margin-top: 62px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap .related-articles-section .view-more-button-wrap {
    margin-top: 13.3333333333vw;
  }
}
.page-wrap .work-thumbnail {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 48.8%;
  height: auto;
  text-decoration: none !important;
  margin-bottom: 39px;
  padding-bottom: 7px;
  border-bottom: 1px solid #bbb;
}
.page-wrap .work-thumbnail .thumbnail-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.page-wrap .work-thumbnail .thumbnail-media-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1px;
}
.page-wrap .work-thumbnail .thumbnail-media-wrapper:before {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: calc(473 / 876 * 100%);
}
.page-wrap .work-thumbnail .thumbnail-media-wrapper .thumbnail-image, .page-wrap .work-thumbnail .thumbnail-media-wrapper .thumbnail-video {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
.page-wrap .work-thumbnail .thumbnail-media-wrapper .thumbnail-image video, .page-wrap .work-thumbnail .thumbnail-media-wrapper .thumbnail-video video {
  position: absolute;
}
.page-wrap .work-thumbnail .thumbnail-media-wrapper .work-thumbnail-hover-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  transition: opacity 50ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: opacity 50ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: opacity 50ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: opacity 50ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: opacity 50ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.page-wrap .work-thumbnail .thumbnail-media-wrapper .work-thumbnail-hover-carousel .flickity-viewport,
.page-wrap .work-thumbnail .thumbnail-media-wrapper .work-thumbnail-hover-carousel .flickity-slider {
  height: 100% !important;
}
.page-wrap .work-thumbnail .thumbnail-media-wrapper .work-thumbnail-hover-carousel .carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page-wrap .work-thumbnail .thumbnail-text {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: baseline;
  -o-align-items: baseline;
  -ms-align-items: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  width: 100%;
  height: auto;
}
.page-wrap .work-thumbnail .thumbnail-text h4 {
  letter-spacing: 0.09em;
  font-weight: 300;
  line-height: 1.2em;
  padding-top: 0.4em;
}
.page-wrap .work-thumbnail .thumbnail-text h4 strong {
  font-weight: 500;
  font-size: 109%;
  letter-spacing: 0.07em;
}
.page-wrap .work-thumbnail:hover .thumbnail-media-wrapper .work-thumbnail-hover-carousel {
  opacity: 1;
  transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media only screen and (max-width: 1080px) {
  .page-wrap .work-thumbnail {
    margin-bottom: 25px;
  }
  .page-wrap .work-thumbnail .thumbnail-image {
    margin-bottom: 4px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap .work-thumbnail {
    width: 100%;
    margin-bottom: 5.3333333333vw !important;
  }
  .page-wrap .work-thumbnail:last-child {
    margin-bottom: 0px !important;
  }
  .page-wrap .work-thumbnail .thumbnail-image {
    margin-bottom: 2.1333333333vw;
  }
  .page-wrap .work-thumbnail .thumbnail-image:before {
    display: block;
    content: "";
    width: 100%;
    padding-bottom: calc(196 / 331 * 100%);
  }
  .page-wrap .work-thumbnail .thumbnail-text h4 {
    font-weight: 400;
    line-height: 1.15em;
  }
  .page-wrap .work-thumbnail .thumbnail-text h4 strong {
    display: block;
    font-size: inherit;
    font-weight: 600;
  }
}
.page-wrap .fb-video-wrapper {
  position: absolute !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-wrap .jquery-background-video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transition-duration: 0ms !important;
  -o-object-fit: cover;
  object-fit: cover;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.page-wrap .jquery-background-video-pauseplay {
  display: none !important;
}

/*
HOME PAGE CONTENT ------------------
*/
body.page-template-page-home .header-wrap {
  background-color: #ffffff;
}

.page-wrap#home-page .homepage-carousel-section {
  position: sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: -moz-sticky;
  position: -webkit-sticky;
  display: block;
  width: 100%;
  height: auto;
  top: 0;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 10;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .flickity-viewport,
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .flickity-slider {
  height: 100% !important;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content {
  position: absolute;
  width: calc(100% - 95px);
  width: -o-calc(100% - 95px);
  width: -ms-calc(100% - 95px);
  width: -moz-calc(100% - 95px);
  width: -webkit-calc(100% - 95px);
  height: calc(100% - 47.5px);
  height: -o-calc(100% - 47.5px);
  height: -ms-calc(100% - 47.5px);
  height: -moz-calc(100% - 47.5px);
  height: -webkit-calc(100% - 47.5px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  text-decoration: none;
  overflow: hidden;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content {
    width: calc(100% - 80px);
    width: -o-calc(100% - 80px);
    width: -ms-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
    height: calc(100% - 40px);
    height: -o-calc(100% - 40px);
    height: -ms-calc(100% - 40px);
    height: -moz-calc(100% - 40px);
    height: -webkit-calc(100% - 40px);
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content {
    width: 100%;
    height: calc(100% - 12.8vw);
    height: -o-calc(100% - 12.8vw);
    height: -ms-calc(100% - 12.8vw);
    height: -moz-calc(100% - 12.8vw);
    height: -webkit-calc(100% - 12.8vw);
  }
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content .slide-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  padding: 24.0060015004px;
  color: #ffffff;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content .slide-caption h3, .page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content .slide-caption h5 {
  margin-bottom: 0px;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content .slide-caption h3.title {
  font-weight: 600;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content .slide-caption h5.subtitle {
  font-weight: 400;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content .slide-caption {
    padding: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content .slide-caption {
    padding: 5.3333333333vw;
  }
  .page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content .slide-caption h3, .page-wrap#home-page .homepage-carousel-section .homepage-carousel .carousel-slide .carousel-slide-content .slide-caption h5 {
    font-size: 4.88vw;
  }
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .flickity-prev-next-button {
  width: 30%;
  height: 100%;
  top: 0;
  cursor: none !important;
  overflow: hidden;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .flickity-prev-next-button * {
  cursor: none !important;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .flickity-prev-next-button.previous {
  left: 0;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .flickity-prev-next-button.next {
  right: 0;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .flickity-prev-next-button svg {
  position: absolute;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .flickity-prev-next-button svg path {
  fill: #ffffff;
}
.page-wrap#home-page .homepage-carousel-section .homepage-carousel .flickity-prev-next-button:hover svg {
  opacity: 1;
}
@media only screen and (max-width: 480px) {
  .page-wrap#home-page .homepage-carousel-section .homepage-carousel .flickity-prev-next-button svg {
    display: none;
  }
}
.page-wrap#home-page .homepage-carousel-section .down-arrow-wrap {
  position: absolute;
  display: none;
  width: 100%;
  height: 12.8vw;
  bottom: 0;
  left: 0;
  cursor: pointer;
  z-index: 20;
}
.page-wrap#home-page .homepage-carousel-section .down-arrow-wrap img.arrow {
  position: absolute;
  width: 6.6666666667vw;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .page-wrap#home-page .homepage-carousel-section .down-arrow-wrap {
    display: block;
  }
}
.page-wrap#home-page .further-homepage-content {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 20;
  background-color: #ffffff;
}
.page-wrap#home-page .studio-intro-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 48.7621905476px 0 116.2790697674px 0;
}
.page-wrap#home-page .studio-intro-section .text-wrap {
  position: relative;
  display: block;
  width: 832.7081770443px;
  height: auto;
  margin-left: 127.5318829707px;
}
.page-wrap#home-page .studio-intro-section .text-wrap h2 {
  font-weight: 300;
}
.page-wrap#home-page .studio-intro-section .text-wrap h2 strong, .page-wrap#home-page .studio-intro-section .text-wrap h2 b {
  font-weight: 500;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#home-page .studio-intro-section {
    padding: 57px 0 110px 0;
  }
  .page-wrap#home-page .studio-intro-section .text-wrap {
    margin-left: 0px;
    width: 85%;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#home-page .studio-intro-section {
    padding: 13.3333333333vw 0 16vw 0;
  }
  .page-wrap#home-page .studio-intro-section .text-wrap {
    width: 87%;
    margin: 0;
  }
}
.page-wrap#home-page .selected-works-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.page-wrap#home-page .selected-works-section .outer-content-wrap {
  padding: 0 0 131.2828207052px 0;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#home-page .selected-works-section .outer-content-wrap {
    padding: 0 0 125px 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#home-page .selected-works-section .outer-content-wrap {
    padding: 0 0 18.6666666667vw 0;
  }
}
.page-wrap#home-page .selected-works-section .section-title {
  position: relative;
  display: block;
  margin-bottom: 31.5078769692px;
}
.page-wrap#home-page .selected-works-section .section-title h3 {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.09em;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#home-page .selected-works-section .section-title {
    margin-bottom: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#home-page .selected-works-section .section-title {
    margin-bottom: 2.9333333333vw;
  }
}
.page-wrap#home-page .selected-works-section .selected-works-grid {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  width: 100%;
  height: auto;
}
.page-wrap#home-page .selected-works-section .view-all-work {
  position: absolute;
  bottom: 61.5153788447px;
  left: 50%;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media only screen and (max-width: 1080px) {
  .page-wrap#home-page .selected-works-section .view-all-work {
    bottom: 49px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#home-page .selected-works-section .view-all-work {
    bottom: 5.0666666667vw;
  }
}

/*
WORK ARCHIVE CONTENT ------------------
*/
body.post-type-archive-work .header-wrap {
  background-color: #ffffff;
}

.page-wrap#work-archive .outer-content-wrap {
  padding: 138.784696174px 0 131.2828207052px 0;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-archive .outer-content-wrap {
    padding: 165px 0 110px 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-archive .outer-content-wrap {
    padding: 40vw 0 13.3333333333vw 0;
  }
}
.page-wrap#work-archive .work-archive-grid {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  will-change: height;
  transition: height 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: height 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: height 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: height 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: height 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.page-wrap#work-archive .work-archive-grid .gutter-sizer {
  width: 2.4%;
}
.page-wrap#work-archive .view-more-work {
  position: absolute;
  bottom: 61.5153788447px;
  left: 50%;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-archive .view-more-work {
    bottom: 49px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-archive .view-more-work {
    bottom: 5.0666666667vw;
  }
}

/*
WORK POST CONTENT ------------------
*/
body.single-work .header-wrap .logo-and-tagline p.tagline {
  opacity: 0;
  display: none;
}

.page-wrap#work-post .hero-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .hero-image:before {
    display: block;
    content: "";
    width: 100%;
    padding-bottom: calc(300 / 375 * 100%);
  }
  .page-wrap#work-post .hero-image .lazyload-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .page-wrap#work-post .hero-image img, .page-wrap#work-post .hero-image video {
    position: absolute;
    width: auto;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
}
.page-wrap#work-post .project-info {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 105.0262565641px 232.5581395349px 108.7771942986px 127.5318829707px;
}
.page-wrap#work-post .project-info .inner-wrap {
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-info {
    padding: 90px 40px 95px 40px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-info {
    padding: 10.6666666667vw 5.3333333333vw 13.3333333333vw 5.3333333333vw;
  }
  .page-wrap#work-post .project-info .inner-wrap {
    display: block;
  }
}
.page-wrap#work-post .project-info .left-column {
  display: block;
  width: 46.5%;
  height: auto;
}
/* Work section heading size overrides — h1 25% smaller, h2 35% smaller */
.page-wrap#work-post .project-info .left-column h1.project-title {
  font-size: 21px;
}
@media (min-width: 375px) {
  .page-wrap#work-post .project-info .left-column h1.project-title {
    font-size: calc(1.5267175573vw + 15.2748091603px);
  }
}
@media (min-width: 768px) {
  .page-wrap#work-post .project-info .left-column h1.project-title {
    font-size: calc(2.0432692308vw + 11.3076923077px);
  }
}
@media (min-width: 1080px) {
  .page-wrap#work-post .project-info .left-column h1.project-title {
    font-size: calc(1.6666666667vw + 15.375px);
  }
}
@media (min-width: 1440px) {
  .page-wrap#work-post .project-info .left-column h1.project-title {
    font-size: 39.375px;
  }
}
.page-wrap#work-post .project-info .left-column h2.large-title {
  font-size: 26px;
}
@media (min-width: 375px) {
  .page-wrap#work-post .project-info .left-column h2.large-title {
    font-size: calc(1.8193384224vw + 19.177480916px);
  }
}
@media (min-width: 768px) {
  .page-wrap#work-post .project-info .left-column h2.large-title {
    font-size: calc(2.5vw + 13.95px);
  }
}
@media (min-width: 1080px) {
  .page-wrap#work-post .project-info .left-column h2.large-title {
    font-size: calc(2.1666666666vw + 17.55px);
  }
}
@media (min-width: 1440px) {
  .page-wrap#work-post .project-info .left-column h2.large-title {
    font-size: 48.75px;
  }
}
.page-wrap#work-post .project-info .left-column h1.project-title {
  font-weight: 500;
  margin-bottom: 0.2em;
}
.page-wrap#work-post .project-info .left-column h2.large-title {
  margin-bottom: 0.35em;
}
.page-wrap#work-post .project-info .left-column h6.project-categories {
  padding-right: 30%;
  line-height: 1.7em;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-info .left-column {
    width: 100%;
    margin-bottom: 8vw;
  }
  .page-wrap#work-post .project-info .left-column h2.large-title {
    margin-bottom: 0.5em;
  }
  .page-wrap#work-post .project-info .left-column h6.project-categories {
    padding-right: 0px;
    line-height: 1.3823529412em;
  }
}
.page-wrap#work-post .project-info .right-column {
  display: block;
  width: 42.8%;
  height: auto;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-info .right-column {
    width: 45%;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-info .right-column {
    width: 100%;
  }
}
.page-wrap#work-post .project-info.logo-present {
  padding: 78.7696924231px 0 101.2753188297px 75.0187546887px;
}
.page-wrap#work-post .project-info.logo-present .left-column {
  width: 42.7%;
}
.page-wrap#work-post .project-info.logo-present .left-column h6.project-categories {
  margin-bottom: 0px;
}
.page-wrap#work-post .project-info.logo-present .left-column .project-info-text {
  display: block;
  margin-top: 2.5vw;
}
.page-wrap#work-post .project-info.logo-present .right-column {
  width: 55.2%;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-info.logo-present {
    padding: 70px 0 90px 40px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-info.logo-present {
    padding: 10.6666666667vw 5.3333333333vw 13.3333333333vw 5.3333333333vw;
  }
  .page-wrap#work-post .project-info.logo-present .left-column {
    width: 100%;
  }
  .page-wrap#work-post .project-info.logo-present .left-column .project-info-text {
    margin-top: 9.3333333333vw;
  }
  .page-wrap#work-post .project-info.logo-present .right-column {
    width: 100%;
  }
}
.page-wrap#work-post .project-content-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap {
    padding-top: 8vw;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section {
    padding: 14.6666666667vw 0 5.3333333333vw 0 !important;
  }
  .page-wrap#work-post .project-content-wrap .project-section:first-child {
    padding-top: 0px !important;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.image-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.page-wrap#work-post .project-content-wrap .project-section.image-section .inner-wrap {
  width: 100%;
}
.page-wrap#work-post .project-content-wrap .project-section.image-section.full-bleed .inner-wrap {
  padding: 0;
}
.page-wrap#work-post .project-content-wrap .project-section.image-section.large-size {
  padding: 52.5131282821px 0;
}
.page-wrap#work-post .project-content-wrap .project-section.image-section.large-size .inner-wrap {
  padding: 0 63.7659414854px;
}
.page-wrap#work-post .project-content-wrap .project-section.image-section.medium-size {
  padding: 52.5131282821px 0;
}
.page-wrap#work-post .project-content-wrap .project-section.image-section.medium-size .inner-wrap {
  padding: 0 161.2903225806px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.image-section.large-size {
    padding: 60px 0;
  }
  .page-wrap#work-post .project-content-wrap .project-section.image-section.large-size .inner-wrap {
    padding: 0 40px;
  }
  .page-wrap#work-post .project-content-wrap .project-section.image-section.medium-size {
    padding: 60px 0;
  }
  .page-wrap#work-post .project-content-wrap .project-section.image-section.medium-size .inner-wrap {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.image-section .inner-wrap {
    padding: 0 5.3333333333vw !important;
  }
  .page-wrap#work-post .project-content-wrap .project-section.image-section.full-bleed .inner-wrap {
    padding: 0px !important;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.video-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.page-wrap#work-post .project-content-wrap .project-section.video-section .inner-wrap {
  width: 100%;
}
.page-wrap#work-post .project-content-wrap .project-section.video-section.full-bleed .inner-wrap {
  padding: 0;
}
.page-wrap#work-post .project-content-wrap .project-section.video-section.large-size {
  padding: 52.5131282821px 0;
}
.page-wrap#work-post .project-content-wrap .project-section.video-section.large-size .inner-wrap {
  padding: 0 63.7659414854px;
}
.page-wrap#work-post .project-content-wrap .project-section.video-section.medium-size {
  padding: 52.5131282821px 0;
}
.page-wrap#work-post .project-content-wrap .project-section.video-section.medium-size .inner-wrap {
  padding: 0 161.2903225806px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.video-section.large-size {
    padding: 60px 0;
  }
  .page-wrap#work-post .project-content-wrap .project-section.video-section.large-size .inner-wrap {
    padding: 0 40px;
  }
  .page-wrap#work-post .project-content-wrap .project-section.video-section.medium-size {
    padding: 60px 0;
  }
  .page-wrap#work-post .project-content-wrap .project-section.video-section.medium-size .inner-wrap {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.video-section .inner-wrap {
    padding: 0 5.3333333333vw !important;
  }
  .page-wrap#work-post .project-content-wrap .project-section.video-section.full-bleed .inner-wrap {
    padding: 0px !important;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.two-up-images-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 52.5131282821px 0;
}
.page-wrap#work-post .project-content-wrap .project-section.two-up-images-section .inner-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-row-gap: 0px;
}
.page-wrap#work-post .project-content-wrap .project-section.two-up-images-section.full-bleed .inner-wrap {
  padding: 0;
}
.page-wrap#work-post .project-content-wrap .project-section.two-up-images-section.large-size .inner-wrap {
  padding: 0 63.7659414854px;
}
.page-wrap#work-post .project-content-wrap .project-section.two-up-images-section.medium-size .inner-wrap {
  padding: 0 161.2903225806px;
}
.page-wrap#work-post .project-content-wrap .project-section.two-up-images-section.no-gap .inner-wrap {
  grid-column-gap: 0px;
}
.page-wrap#work-post .project-content-wrap .project-section.two-up-images-section.small-gap .inner-wrap {
  grid-column-gap: 15.0037509377px;
}
.page-wrap#work-post .project-content-wrap .project-section.two-up-images-section.large-gap .inner-wrap {
  grid-column-gap: 37.5093773443px;
}
.page-wrap#work-post .project-content-wrap .project-section.two-up-images-section.staggered-images .image-wrap:first-child {
  margin-top: 45%;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.two-up-images-section {
    padding: 60px 0;
  }
  .page-wrap#work-post .project-content-wrap .project-section.two-up-images-section.large-size .inner-wrap {
    padding: 0 40px;
  }
  .page-wrap#work-post .project-content-wrap .project-section.two-up-images-section.medium-size .inner-wrap {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.two-up-images-section .inner-wrap {
    padding: 0 5.3333333333vw !important;
    grid-column-gap: 2.6666666667vw !important;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.image-text-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 52.5131282821px 121.5303825956px 52.5131282821px 0;
}
.page-wrap#work-post .project-content-wrap .project-section.image-text-section .outer-content-wrap {
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.image-text-section {
    padding: 60px 100px 60px 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.image-text-section .outer-content-wrap {
    display: block;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.image-text-section .image-column {
  position: relative;
  display: block;
  width: 54.8%;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.image-text-section .image-column {
    width: 100%;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.image-text-section .text-column {
  position: relative;
  display: block;
  width: 41.6%;
  height: auto;
  padding-top: 142.5356339085px;
}
.page-wrap#work-post .project-content-wrap .project-section.image-text-section .text-column p {
  margin-bottom: 1em;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.image-text-section .text-column {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.image-text-section .text-column {
    width: 100%;
    padding-top: 6.6666666667vw;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.image-text-section.full-bleed-image {
  padding-left: 0px;
  padding-right: 0px;
}
.page-wrap#work-post .project-content-wrap .project-section.image-text-section.full-bleed-image .outer-content-wrap {
  width: 100%;
  justify-content: flex-start;
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.page-wrap#work-post .project-content-wrap .project-section.image-text-section.full-bleed-image .image-column {
  width: 46.1%;
  margin-right: 54.0135033758px;
}
.page-wrap#work-post .project-content-wrap .project-section.image-text-section.full-bleed-image .text-column {
  width: 36.4%;
  padding-top: 60.0150037509px;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.image-text-section.full-bleed-image .image-column {
    width: 100%;
    margin-right: 0px;
  }
  .page-wrap#work-post .project-content-wrap .project-section.image-text-section.full-bleed-image .text-column {
    width: 100%;
    padding: 6.6666666667vw 5.3333333333vw 0 5.3333333333vw;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 52.5131282821px 0 52.5131282821px 0;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-section .inner-wrap {
  padding: 0 63.7659414854px;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-section {
    padding: 60px 0 60px 0;
  }
  .page-wrap#work-post .project-content-wrap .project-section.text-image-section .inner-wrap {
    padding: 0 65px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-section .inner-wrap {
    flex-direction: column-reverse;
    -o-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-section .text-column {
  position: relative;
  display: block;
  width: 36.3%;
  height: auto;
  padding-top: 45.0112528132px;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-section .text-column h3 {
  margin-bottom: 0.8em;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-section .text-column p {
  margin-bottom: 1em;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-section .text-column {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-section .text-column {
    width: 100%;
    padding-top: 6.6666666667vw;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-section .image-column {
  position: relative;
  display: block;
  width: 53%;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-section .image-column {
    width: 100%;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 75.0187546887px 0;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-section {
    padding: 70px 0;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-section .inner-wrap {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-section .inner-wrap {
    display: block;
  }
  .page-wrap#work-post .project-content-wrap .project-section.text-section .inner-wrap .text-wrap {
    width: 100% !important;
    margin: 0px !important;
    padding: 0 5.3333333333vw;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-section.left-float .inner-wrap {
  justify-content: flex-start;
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.page-wrap#work-post .project-content-wrap .project-section.text-section.left-float .text-wrap {
  width: 717.7679441986px;
  margin-left: 183.7545938648px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-section.left-float .text-wrap {
    width: 75%;
    margin-left: 40px;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-section.right-float .inner-wrap {
  justify-content: flex-end;
  -o-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.page-wrap#work-post .project-content-wrap .project-section.text-section.right-float .text-wrap {
  width: 607.6519129782px;
  margin-right: 161.2903225806px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-section.right-float .text-wrap {
    width: 75%;
    margin-right: 40px;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.testimonial-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 146.2865716429px 0;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.testimonial-section {
    padding: 100px 0;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.testimonial-section .inner-wrap {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
}
.page-wrap#work-post .project-content-wrap .project-section.testimonial-section .text-wrap {
  position: relative;
  display: block;
  width: 53.6%;
  height: auto;
  text-align: center;
}
.page-wrap#work-post .project-content-wrap .project-section.testimonial-section .text-wrap h2 {
  margin-bottom: 1.2em;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.testimonial-section .text-wrap {
    width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.testimonial-section.image-present {
  padding: 24.0060015004px 42.0105026257px 24.0060015004px 150.0375093773px;
}
.page-wrap#work-post .project-content-wrap .project-section.testimonial-section.image-present .inner-wrap {
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
}
.page-wrap#work-post .project-content-wrap .project-section.testimonial-section.image-present .text-wrap {
  width: 472.6181545386px;
}
.page-wrap#work-post .project-content-wrap .project-section.testimonial-section.image-present .text-wrap h3 {
  margin-bottom: 0.6em;
}
.page-wrap#work-post .project-content-wrap .project-section.testimonial-section.image-present .image-wrap {
  position: relative;
  display: block;
  width: 564.8912228057px;
  height: auto;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.testimonial-section.image-present {
    padding: 25px 40px 25px 100px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.testimonial-section.image-present {
    padding: 16vw 0 !important;
    margin-top: 14.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  .page-wrap#work-post .project-content-wrap .project-section.testimonial-section.image-present .text-wrap {
    width: 100%;
    padding: 0 5.3333333333vw;
  }
  .page-wrap#work-post .project-content-wrap .project-section.testimonial-section.image-present .image-wrap {
    display: none;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .inner-wrap {
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: stretch;
  -o-align-items: stretch;
  -ms-align-items: stretch;
  -moz-align-items: stretch;
  -webkit-align-items: stretch;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .inner-wrap {
    display: block;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .left-column {
  position: relative;
  width: 43.2%;
  height: auto;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  margin-left: 57.7644411103px;
  padding-top: 93.7734433608px;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .left-column .text-wrap {
  position: relative;
  display: block;
  width: 82%;
  height: auto;
  margin-left: 30.0075018755px;
  margin-bottom: 33.7508437711px;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .left-column .text-wrap h3 {
  margin-bottom: 0.8em;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .left-column .text-wrap p {
  line-height: 1.5641025641em;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .left-column {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .left-column {
    width: 100%;
    padding-top: 0px;
    margin-left: 0px;
    padding: 0 5.3333333333vw;
  }
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .left-column .text-wrap {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 6.6666666667vw;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .right-column {
  position: relative;
  width: 50%;
  height: auto;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .right-column .image-caption {
  position: absolute;
  width: 100%;
  height: auto;
  padding: 10px 5% 0 0;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .right-column {
    width: 100%;
    margin-top: 20vw;
  }
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section .right-column .image-caption {
    position: relative;
    padding-top: 5.3333333333vw;
    padding-left: 5.3333333333vw;
    padding-right: 0px;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.image-caption-present {
  z-index: 200;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-horizontally {
  padding: 45.0112528132px 51.0127531883px;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-horizontally .inner-wrap {
  justify-content: flex-end;
  -o-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-horizontally {
    padding: 55px 0 55px 0;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-horizontally .right-column {
  width: 54%;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-horizontally .right-column {
    width: 100%;
    margin-top: 20vw;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-horizontally .left-column {
  width: 36.2%;
  margin-left: 48.7621905476px;
  padding-top: 26.256564141px;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-horizontally .left-column .text-wrap {
  width: 100%;
  margin-left: 0px;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-horizontally .left-column .image-wrap {
  width: 78%;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-horizontally .left-column {
    width: 100%;
    margin-left: 0px;
    padding-top: 0px;
  }
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-horizontally .left-column .text-wrap {
    padding: 0 5.3333333333vw;
  }
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-horizontally .left-column .image-wrap {
    margin: 0 auto;
    width: calc(100% - 10.6666666667vw);
    width: -o-calc(100% - 10.6666666667vw);
    width: -ms-calc(100% - 10.6666666667vw);
    width: -moz-calc(100% - 10.6666666667vw);
    width: -webkit-calc(100% - 10.6666666667vw);
  }
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-vertically .left-column {
  padding-top: 0px;
  flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
}
.page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-vertically .left-column .text-wrap {
  width: 76%;
  margin: 0 auto;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.text-image-grid-section.flipped-vertically .left-column .text-wrap {
    width: 100%;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .inner-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .inner-wrap:before {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: calc(1100 / 1920 * 100%);
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .inner-wrap {
  overflow: hidden;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .flickity-viewport,
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .flickity-slider {
  height: 100% !important;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .carousel-slide video,
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .carousel-slide .plyr-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  object-fit: cover;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .flickity-prev-next-button {
  width: 50%;
  height: 100%;
  top: 0;
  cursor: none !important;
  overflow: hidden;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .flickity-prev-next-button * {
  cursor: none !important;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .flickity-prev-next-button.previous {
  left: 0;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .flickity-prev-next-button.next {
  right: 0;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .flickity-prev-next-button svg {
  position: absolute;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .flickity-prev-next-button svg path {
  fill: #ffffff;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .flickity-prev-next-button:hover svg {
  opacity: 1;
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .flickity-prev-next-button {
    display: none !important;
  }
  .page-wrap#work-post .project-content-wrap .project-section.carousel-section .carousel-section-carousel .flickity-prev-next-button svg {
    display: none;
  }
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section.full-bleed .inner-wrap {
  padding: 0;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section.large-size {
  padding: 52.5131282821px 0;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section.large-size .inner-wrap {
  width: calc(100% - 127.53px);
  width: -o-calc(100% - 127.53px);
  width: -ms-calc(100% - 127.53px);
  width: -moz-calc(100% - 127.53px);
  width: -webkit-calc(100% - 127.53px);
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section.medium-size {
  padding: 52.5131282821px 0;
}
.page-wrap#work-post .project-content-wrap .project-section.carousel-section.medium-size .inner-wrap {
  width: calc(100% - 322.58px);
  width: -o-calc(100% - 322.58px);
  width: -ms-calc(100% - 322.58px);
  width: -moz-calc(100% - 322.58px);
  width: -webkit-calc(100% - 322.58px);
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .project-content-wrap .project-section.carousel-section.large-size {
    padding: 60px 0;
  }
  .page-wrap#work-post .project-content-wrap .project-section.carousel-section.large-size .inner-wrap {
    width: calc(100% - 80px);
    width: -o-calc(100% - 80px);
    width: -ms-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
  }
  .page-wrap#work-post .project-content-wrap .project-section.carousel-section.medium-size {
    padding: 60px 0;
  }
  .page-wrap#work-post .project-content-wrap .project-section.carousel-section.medium-size .inner-wrap {
    width: calc(100% - 80px);
    width: -o-calc(100% - 80px);
    width: -ms-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .project-content-wrap .project-section.carousel-section .inner-wrap:before {
    display: block;
    content: "";
    width: 100%;
    padding-bottom: calc(1500 / 1920 * 100%);
  }
  .page-wrap#work-post .project-content-wrap .project-section.carousel-section .inner-wrap {
    width: calc(100% - 10.6666666667vw !important);
    width: -o-calc(100% - 10.6666666667vw !important);
    width: -ms-calc(100% - 10.6666666667vw !important);
    width: -moz-calc(100% - 10.6666666667vw !important);
    width: -webkit-calc(100% - 10.6666666667vw !important);
  }
  .page-wrap#work-post .project-content-wrap .project-section.carousel-section.full-bleed .inner-wrap {
    padding: 0px !important;
  }
}
.page-wrap#work-post .how-we-helped {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 56.2640660165px 0 67.5168792198px 0;
}
.page-wrap#work-post .how-we-helped .outer-content-wrap {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .how-we-helped {
    padding: 55px 0 65px 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .how-we-helped {
    padding: 10.6666666667vw 0 10.6666666667vw 0;
  }
}
.page-wrap#work-post .how-we-helped .hwh-table {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: baseline;
  -o-align-items: baseline;
  -ms-align-items: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  padding: 37.5093773443px 0;
}
.page-wrap#work-post .how-we-helped .hwh-table .title-column {
  display: block;
  width: 36.7%;
}
.page-wrap#work-post .how-we-helped .hwh-table .title-column span {
  display: block;
}
.page-wrap#work-post .how-we-helped .hwh-table .list-column {
  display: block;
  width: "63.3%";
}
.page-wrap#work-post .how-we-helped .hwh-table .list-column h3 {
  line-height: 1.4023372287em;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .how-we-helped .hwh-table {
    padding: 37px 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .how-we-helped .hwh-table {
    display: block;
    padding: 6.6666666667vw 0;
  }
  .page-wrap#work-post .how-we-helped .hwh-table .title-column {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
  .page-wrap#work-post .how-we-helped .hwh-table .list-column {
    width: 100%;
  }
}
.page-wrap#work-post .related-projects-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  color: #000000;
  padding: 18.7546886722px 0 131.2828207052px 0;
}
.page-wrap#work-post .related-projects-section * {
  color: #000000;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .related-projects-section {
    padding: 23px 0 125px 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .related-projects-section {
    padding: 5.3333333333vw 0 19.4666666667vw 0;
  }
}
.page-wrap#work-post .related-projects-section .section-title {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 27.0067516879px;
}
.page-wrap#work-post .related-projects-section .section-title h4 {
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: 500;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .related-projects-section .section-title {
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .related-projects-section .section-title {
    margin-bottom: 5.3333333333vw;
  }
}
.page-wrap#work-post .related-projects-section .related-projects-grid {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  width: 100%;
  height: auto;
}
.page-wrap#work-post .related-projects-section .view-all-button-wrap {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 61.5153788447px;
  left: 0;
  text-align: center;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#work-post .related-projects-section .view-all-button-wrap {
    bottom: 49px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#work-post .related-projects-section .view-all-button-wrap {
    bottom: 4.2666666667vw;
  }
}

/*
ARTICLES ARCHIVE CONTENT ------------------
*/
body.post-type-archive-articles .header-wrap {
  background-color: #ffffff;
}

.page-wrap#articles-archive .outer-content-wrap {
  padding: 290px 0 131.2828207052px 0;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-archive .outer-content-wrap {
    padding: 165px 0 110px 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-archive .outer-content-wrap {
    padding: 41.3333333333vw 0 13.3333333333vw 0;
  }
}
.page-wrap#articles-archive .articles-archive-intro {
  margin-bottom: 120px;
  max-width: 1050px;
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-archive .articles-archive-intro {
    margin-bottom: 80px;
  }
}
.page-wrap#articles-archive .articles-archive-intro h2 {
  font-weight: 300;
}
.page-wrap#articles-archive .articles-archive-grid {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  will-change: height;
  transition: height 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: height 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: height 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: height 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: height 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.page-wrap#articles-archive .articles-archive-grid .gutter-sizer {
  width: 1.1%;
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-archive .articles-archive-grid .gutter-sizer {
    width: 3%;
  }
}
.page-wrap#articles-archive .articles-archive-grid .article-thumbnail {
  position: relative;
  display: block;
  width: 32.6%;
  height: auto;
  text-decoration: none !important;
  margin-bottom: 11.2528132033px;
}
.page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 15.7539384846px;
  border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow: hidden;
}
.page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-right: 15%;
}
.page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text h4, .page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text h5, .page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text h6 {
  margin-bottom: 0px;
}
.page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text h5.date-cat {
  font-weight: 500;
  line-height: 1.3179297597em;
}
.page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text h5.date-cat em, .page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text h5.date-cat i {
  font-weight: 400;
}
.page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text p.title-subtitle {
  font-weight: 500;
  line-height: 1.2305833621em;
}
.page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text p.title-subtitle strong {
  display: block;
  font-weight: 600;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-archive .articles-archive-grid .article-thumbnail {
    margin-bottom: 17px;
  }
  .page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-image {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-archive .articles-archive-grid .article-thumbnail {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
  .page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-image {
    margin-bottom: 2.1333333333vw;
    border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text {
    padding-right: 20%;
  }
  .page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text h5, .page-wrap#articles-archive .articles-archive-grid .article-thumbnail .thumbnail-text p {
    font-size: 3.8666666667vw;
    line-height: 1.347826087em;
  }
}
.page-wrap#articles-archive .view-more-articles {
  position: absolute;
  bottom: 61.5153788447px;
  left: 50%;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-archive .view-more-articles {
    bottom: 49px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-archive .view-more-articles {
    bottom: 5.0666666667vw;
  }
}

/*
ARTICLES POST CONTENT ------------------
*/
body.single-articles .header-wrap {
  background-color: #ffffff;
}

.page-wrap#articles-post .article-intro {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 210.0525131283px 172.5431357839px 71.2678169542px 0;
}
.page-wrap#articles-post .article-intro h2, .page-wrap#articles-post .article-intro h4 {
  margin-bottom: 0px;
}
.page-wrap#articles-post .article-intro .intro {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-top: 41.2603150788px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .article-intro {
    padding: 225px 50px 87px 0;
  }
  .page-wrap#articles-post .article-intro .intro {
    margin-top: 45px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .article-intro {
    padding: 46.6666666667vw 0 21.3333333333vw 0;
  }
  .page-wrap#articles-post .article-intro h4 {
    margin-top: 0.6em;
    line-height: 1.4em;
  }
  .page-wrap#articles-post .article-intro h4 em {
    display: block;
  }
  .page-wrap#articles-post .article-intro h4 span.dash {
    display: none;
  }
  .page-wrap#articles-post .article-intro .intro {
    margin-top: 9.3333333333vw;
  }
}
.page-wrap#articles-post .article-content-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 131.2828207052px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .article-content-wrap {
    padding-bottom: 125px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .article-content-wrap {
    padding-bottom: 21.3333333333vw;
  }
}
.page-wrap#articles-post .article-content-wrap .article-section h4 {
  margin-bottom: 0px;
  letter-spacing: 0.065em;
}
.page-wrap#articles-post .article-content-wrap .article-section:last-child {
  padding-bottom: 0px !important;
}
.page-wrap#articles-post .article-content-wrap .article-section.large-image-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0 18.7546886722px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .article-content-wrap .article-section.large-image-section {
    padding: 0 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .article-content-wrap .article-section.large-image-section {
    padding: 10.6666666667vw 0 10.6666666667vw 0;
  }
}
.page-wrap#articles-post .article-content-wrap .article-section.large-text-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 71.2678169542px 0 45.0112528132px 0;
}
.page-wrap#articles-post .article-content-wrap .article-section.large-text-section .text-wrap {
  position: relative;
  display: block;
  width: 87.3%;
  height: auto;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .article-content-wrap .article-section.large-text-section {
    padding: 65px 0 50px 0;
  }
  .page-wrap#articles-post .article-content-wrap .article-section.large-text-section .text-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .article-content-wrap .article-section.large-text-section {
    padding: 10.6666666667vw 0 10.6666666667vw 0;
  }
  .page-wrap#articles-post .article-content-wrap .article-section.large-text-section .text-wrap {
    width: 100%;
  }
}
.page-wrap#articles-post .article-content-wrap .article-section.two-up-text-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 63.7659414854px 0 60.0150037509px 0;
}
.page-wrap#articles-post .article-content-wrap .article-section.two-up-text-section .outer-content-wrap {
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.page-wrap#articles-post .article-content-wrap .article-section.two-up-text-section .column {
  position: relative;
  display: block;
  width: 45.7%;
  height: auto;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .article-content-wrap .article-section.two-up-text-section {
    padding: 60px 0 60px 0;
  }
  .page-wrap#articles-post .article-content-wrap .article-section.two-up-text-section .column {
    width: 47%;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .article-content-wrap .article-section.two-up-text-section {
    padding: 10.6666666667vw 0 10.6666666667vw 0;
  }
  .page-wrap#articles-post .article-content-wrap .article-section.two-up-text-section .column {
    width: 100%;
    margin-bottom: 8vw;
  }
  .page-wrap#articles-post .article-content-wrap .article-section.two-up-text-section .column:last-child {
    margin-bottom: 0px;
  }
}
.page-wrap#articles-post .article-content-wrap .article-section.text-image-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 63.7659414854px 18.7546886722px 60.0150037509px 78.7696924231px;
}
.page-wrap#articles-post .article-content-wrap .article-section.text-image-section .outer-content-wrap {
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .article-content-wrap .article-section.text-image-section {
    padding: 60px 0 60px 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .article-content-wrap .article-section.text-image-section {
    padding: 10.6666666667vw 0 10.6666666667vw 0;
  }
}
.page-wrap#articles-post .article-content-wrap .article-section.text-image-section .text-column {
  position: relative;
  display: block;
  width: 41.4%;
  height: auto;
}
.page-wrap#articles-post .article-content-wrap .article-section.text-image-section .text-column h4 {
  line-height: 1.296803653em;
}
.page-wrap#articles-post .article-content-wrap .article-section.text-image-section .text-column h4.underlined-title {
  padding-bottom: 0.4em;
  margin-bottom: 0.6em;
}
.page-wrap#articles-post .article-content-wrap .article-section.text-image-section .text-column h4:not(.underlined-title) {
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .article-content-wrap .article-section.text-image-section .text-column {
    width: 47%;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .article-content-wrap .article-section.text-image-section .text-column {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.page-wrap#articles-post .article-content-wrap .article-section.text-image-section .image-column {
  position: relative;
  display: block;
  width: 51.8%;
  height: auto;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .article-content-wrap .article-section.text-image-section .image-column {
    width: 47%;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .article-content-wrap .article-section.text-image-section .image-column {
    width: 100%;
  }
}
.page-wrap#articles-post .article-content-wrap .article-section.image-text-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 37.5093773443px 67.5168792198px 60.0150037509px 18.7546886722px;
}
.page-wrap#articles-post .article-content-wrap .article-section.image-text-section .outer-content-wrap {
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .article-content-wrap .article-section.image-text-section {
    padding: 60px 0 60px 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .article-content-wrap .article-section.image-text-section {
    padding: 10.6666666667vw 0 10.6666666667vw 0;
  }
}
.page-wrap#articles-post .article-content-wrap .article-section.image-text-section .image-column {
  position: relative;
  display: block;
  width: 42.7%;
  height: auto;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .article-content-wrap .article-section.image-text-section .image-column {
    width: 47%;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .article-content-wrap .article-section.image-text-section .image-column {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.page-wrap#articles-post .article-content-wrap .article-section.image-text-section .text-column {
  position: relative;
  display: block;
  width: 51.4%;
  height: auto;
}
.page-wrap#articles-post .article-content-wrap .article-section.image-text-section .text-column h4 {
  line-height: 1.296803653em;
}
.page-wrap#articles-post .article-content-wrap .article-section.image-text-section .text-column h4.underlined-title {
  padding-bottom: 0.4em;
  margin-bottom: 0.6em;
}
.page-wrap#articles-post .article-content-wrap .article-section.image-text-section .text-column h4:not(.underlined-title) {
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .article-content-wrap .article-section.image-text-section .text-column {
    width: 47%;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .article-content-wrap .article-section.image-text-section .text-column {
    width: 100%;
  }
}
.page-wrap#articles-post .related-articles-section {
  padding: 0 0 86.271567892px 0;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#articles-post .related-articles-section {
    padding: 0 0 85px 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#articles-post .related-articles-section {
    padding: 0 0 16vw 0;
  }
}

/*
ABOUT PAGE CONTENT ------------------
*/
body.page-template-page-about .header-wrap {
  background-color: #ffffff;
}

.page-wrap#about-page .text-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 225.056264066px 0 135.0337584396px 0;
}
.page-wrap#about-page .text-section .outer-content-wrap {
  padding-right: 131.2828207052px;
}
.page-wrap#about-page .text-section h1 {
  text-transform: none;
  font-weight: 300;
  line-height: 1.4791666667em;
}
.page-wrap#about-page .text-section h1 strong, .page-wrap#about-page .text-section h1 b {
  font-weight: 500;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#about-page .text-section {
    padding: 200px 0 140px 0;
  }
  .page-wrap#about-page .text-section .outer-content-wrap {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#about-page .text-section {
    padding: 46.6666666667vw 0 26.6666666667vw 0;
  }
}
.page-wrap#about-page .carousel-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.page-wrap#about-page .carousel-section:before {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: calc(1100 / 1920 * 100%);
}
.page-wrap#about-page .carousel-section {
  overflow: hidden;
}
.page-wrap#about-page .carousel-section .carousel-section-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page-wrap#about-page .carousel-section .carousel-section-carousel .flickity-viewport,
.page-wrap#about-page .carousel-section .carousel-section-carousel .flickity-slider {
  height: 100% !important;
}
.page-wrap#about-page .carousel-section .carousel-section-carousel .carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page-wrap#about-page .carousel-section .carousel-section-carousel .flickity-prev-next-button {
  width: 50%;
  height: 100%;
  top: 0;
  cursor: none !important;
  overflow: hidden;
}
.page-wrap#about-page .carousel-section .carousel-section-carousel .flickity-prev-next-button * {
  cursor: none !important;
}
.page-wrap#about-page .carousel-section .carousel-section-carousel .flickity-prev-next-button.previous {
  left: 0;
}
.page-wrap#about-page .carousel-section .carousel-section-carousel .flickity-prev-next-button.next {
  right: 0;
}
.page-wrap#about-page .carousel-section .carousel-section-carousel .flickity-prev-next-button svg {
  position: absolute;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
}
.page-wrap#about-page .carousel-section .carousel-section-carousel .flickity-prev-next-button svg path {
  fill: #ffffff;
}
.page-wrap#about-page .carousel-section .carousel-section-carousel .flickity-prev-next-button:hover svg {
  opacity: 1;
}
@media only screen and (max-width: 480px) {
  .page-wrap#about-page .carousel-section .carousel-section-carousel .flickity-prev-next-button svg {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#about-page .carousel-section:before {
    display: block;
    content: "";
    width: 100%;
    padding-bottom: calc(1500 / 1920 * 100%);
  }
}
.page-wrap#about-page .capabilities-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 75.0187546887px 0 75.0187546887px 0;
}
.page-wrap#about-page .capabilities-section .outer-content-wrap {
  padding-left: 72.768192048px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#about-page .capabilities-section {
    padding: 90px 0 90px 0;
  }
  .page-wrap#about-page .capabilities-section .outer-content-wrap {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#about-page .capabilities-section {
    padding: 21.3333333333vw 0 21.3333333333vw 0;
  }
}
.page-wrap#about-page .capabilities-section .section-title {
  position: relative;
  display: block;
  padding-bottom: 15.0037509377px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#about-page .capabilities-section .section-title {
    padding-bottom: 17px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#about-page .capabilities-section .section-title {
    padding-bottom: 6.6666666667vw;
  }
}
.page-wrap#about-page .capabilities-section .capabilities-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.page-wrap#about-page .capabilities-section .capabilities-wrap .capability {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: baseline;
  -o-align-items: baseline;
  -ms-align-items: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  width: 100%;
  height: auto;
  border-top: 1px solid #000000;
  padding: 14.2535633908px 0 45.0112528132px 0;
}
.page-wrap#about-page .capabilities-section .capabilities-wrap .capability:last-child {
  padding-bottom: 0px;
}
.page-wrap#about-page .capabilities-section .capabilities-wrap .capability .left-column {
  position: relative;
  display: block;
  width: 70%;
  height: auto;
}
.page-wrap#about-page .capabilities-section .capabilities-wrap .capability .left-column h2, .page-wrap#about-page .capabilities-section .capabilities-wrap .capability .left-column h3 {
  line-height: 1.25em;
  margin-bottom: 0px;
}
.page-wrap#about-page .capabilities-section .capabilities-wrap .capability .right-column {
  position: relative;
  display: block;
  width: 30%;
  height: auto;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#about-page .capabilities-section .capabilities-wrap .capability {
    padding: 14px 0 55px 0;
  }
  .page-wrap#about-page .capabilities-section .capabilities-wrap .capability:last-child {
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#about-page .capabilities-section .capabilities-wrap .capability {
    padding: 2.6666666667vw 0 13.3333333333vw 0;
  }
  .page-wrap#about-page .capabilities-section .capabilities-wrap .capability:last-child {
    padding-bottom: 0px;
  }
  .page-wrap#about-page .capabilities-section .capabilities-wrap .capability .left-column {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
  .page-wrap#about-page .capabilities-section .capabilities-wrap .capability .right-column {
    width: 100%;
  }
}
.page-wrap#about-page .testimonials-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 60.0150037509px 0 45.0112528132px 0;
  background-color: #000000;
  color: #ffffff;
  overflow: hidden;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#about-page .testimonials-section {
    padding: 70px 0 70px 0;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#about-page .testimonials-section {
    padding: 16vw 0 16vw 0;
  }
}
.page-wrap#about-page .testimonials-section .testimonials-carousel {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
}
.page-wrap#about-page .testimonials-section .testimonials-carousel .flickity-viewport {
  transition: height 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: height 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: height 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: height 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: height 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: height;
}
.page-wrap#about-page .testimonials-section .testimonials-carousel .testimonial {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.page-wrap#about-page .testimonials-section .testimonials-carousel .testimonial .inner-wrap {
  display: block;
  width: 57%;
  height: auto;
  margin: 0 auto;
}
.page-wrap#about-page .testimonials-section .testimonials-carousel .testimonial h4 {
  margin-bottom: 0.2em;
}
.page-wrap#about-page .testimonials-section .testimonials-carousel .testimonial .button {
  margin-top: 33.008252063px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#about-page .testimonials-section .testimonials-carousel .testimonial .inner-wrap {
    width: 70%;
  }
  .page-wrap#about-page .testimonials-section .testimonials-carousel .testimonial .button {
    margin-top: 37px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#about-page .testimonials-section .testimonials-carousel .testimonial .inner-wrap {
    width: calc(100% - 10.6666666667vw);
    width: -o-calc(100% - 10.6666666667vw);
    width: -ms-calc(100% - 10.6666666667vw);
    width: -moz-calc(100% - 10.6666666667vw);
    width: -webkit-calc(100% - 10.6666666667vw);
  }
  .page-wrap#about-page .testimonials-section .testimonials-carousel .testimonial h4 {
    margin-bottom: 0.6em;
  }
  .page-wrap#about-page .testimonials-section .testimonials-carousel .testimonial .button {
    margin-top: 8vw;
  }
}
.page-wrap#about-page .testimonials-section .testimonials-carousel .flickity-prev-next-button {
  width: 37.5093773443px;
  height: 37.5093773443px;
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 500;
  cursor: pointer;
}
.page-wrap#about-page .testimonials-section .testimonials-carousel .flickity-prev-next-button.previous {
  left: 37.5093773443px;
}
.page-wrap#about-page .testimonials-section .testimonials-carousel .flickity-prev-next-button.next {
  right: 37.5093773443px;
}
.page-wrap#about-page .testimonials-section .testimonials-carousel .flickity-prev-next-button svg path {
  fill: #ffffff;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#about-page .testimonials-section .testimonials-carousel .flickity-prev-next-button.previous {
    left: 50px;
  }
  .page-wrap#about-page .testimonials-section .testimonials-carousel .flickity-prev-next-button.next {
    right: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#about-page .testimonials-section .testimonials-carousel .flickity-prev-next-button {
    display: none !important;
  }
}

/*
CONTACT PAGE CONTENT ------------------
*/
body.page-template-page-contact {
  background-color: #E9FF00;
}
body.page-template-page-contact .header-wrap.solid-header {
  background-color: #E9FF00 !important;
}
body.page-template-page-contact .header-wrap .logo-and-tagline p.tagline {
  opacity: 0;
}
body.page-template-page-contact .footer-wrap {
  display: none !important;
}

.page-wrap#contact-page {
  background-color: #E9FF00;
  margin-bottom: 0px !important;
  padding: 161.2903225806px 0;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
}
.page-wrap#contact-page .contact-page-content {
  position: relative;
  display: block;
  width: calc(100% - 95px);
  width: -o-calc(100% - 95px);
  width: -ms-calc(100% - 95px);
  width: -moz-calc(100% - 95px);
  width: -webkit-calc(100% - 95px);
  max-width: 1174.7936984246px;
  height: auto;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#contact-page {
    padding: 175px 0;
  }
  .page-wrap#contact-page .contact-page-content {
    margin: 0 auto;
    width: calc(100% - 80px);
    width: -o-calc(100% - 80px);
    width: -ms-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#contact-page {
    display: block;
    padding: 37.3333333333vw 0 18.6666666667vw 0;
  }
  .page-wrap#contact-page .contact-page-content {
    margin: 0 auto;
    width: calc(100% - 10.6666666667vw);
    width: -o-calc(100% - 10.6666666667vw);
    width: -ms-calc(100% - 10.6666666667vw);
    width: -moz-calc(100% - 10.6666666667vw);
    width: -webkit-calc(100% - 10.6666666667vw);
  }
}
.page-wrap#contact-page .top-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #000000;
  padding-bottom: 37.5093773443px;
}
.page-wrap#contact-page .top-section h1.intro {
  margin-bottom: 0.3em;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#contact-page .top-section {
    padding-bottom: 45px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#contact-page .top-section {
    padding-bottom: 10.6666666667vw;
  }
  .page-wrap#contact-page .top-section h1.intro {
    margin-bottom: 0.4em;
  }
}
.page-wrap#contact-page .bottom-section {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -o-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  width: 100%;
  height: auto;
  padding-top: 21.7554388597px;
}
.page-wrap#contact-page .bottom-section .inner-wrap {
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: stretch;
  -o-align-items: stretch;
  -ms-align-items: stretch;
  -moz-align-items: stretch;
  -webkit-align-items: stretch;
  width: 55%;
  height: auto;
}
.page-wrap#contact-page .bottom-section h5.section-title {
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#contact-page .bottom-section {
    padding-top: 27px;
  }
  .page-wrap#contact-page .bottom-section .inner-wrap {
    width: 80%;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#contact-page .bottom-section {
    padding-top: 6.6666666667vw;
    flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .page-wrap#contact-page .bottom-section .inner-wrap {
    width: 100%;
    flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .page-wrap#contact-page .bottom-section h5.section-title {
    margin-bottom: 0.5em;
  }
}
.page-wrap#contact-page .bottom-section h6.job-openings-button {
  cursor: pointer;
  margin-bottom: 0px;
}
.page-wrap#contact-page .bottom-section h6.job-openings-button span.arrow {
  display: inline-block;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: -ms-transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: -o-transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.page-wrap#contact-page .bottom-section h6.job-openings-button.opened span.arrow {
  transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.page-wrap#contact-page .bottom-section .job-openings-dropdown {
  position: absolute;
  display: none;
}
.page-wrap#contact-page .bottom-section .column {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
}
.page-wrap#contact-page .bottom-section .column .inner-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 15.0037509377px;
}
.page-wrap#contact-page .bottom-section .column .inner-section:last-child {
  margin-bottom: 0px;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#contact-page .bottom-section .column .inner-section {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#contact-page .bottom-section .column {
    width: 100% !important;
    margin-bottom: 6.6666666667vw;
  }
  .page-wrap#contact-page .bottom-section .column:last-child {
    margin-bottom: 0px;
  }
  .page-wrap#contact-page .bottom-section .column .inner-section {
    margin-bottom: 6.6666666667vw;
  }
  .page-wrap#contact-page .bottom-section .column .inner-section:last-child {
    margin-bottom: 0px;
  }
}
.page-wrap#contact-page .bottom-section .left-column {
  width: 41%;
}
.page-wrap#contact-page .bottom-section .centre-column {
  width: 27%;
}
.page-wrap#contact-page .bottom-section .centre-column .inner-section {
  height: 100%;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
}
.page-wrap#contact-page .bottom-section .centre-column .social-menu {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  flex: 1;
}
.page-wrap#contact-page .bottom-section .right-column {
  width: 32%;
}

/*
LEGAL PAGE CONTENT ------------------
*/
body.page-template-page-legal .header-wrap {
  background-color: #ffffff;
}

.page-wrap#legal-page .page-content-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 225.056264066px 0 135.0337584396px 0;
}
.page-wrap#legal-page .page-content-wrap .outer-content-wrap {
  padding-right: 131.2828207052px;
}
.page-wrap#legal-page .page-content-wrap h4 {
  font-weight: 300;
  letter-spacing: 0.11em;
  margin-bottom: 1.0416666667vw;
}
.page-wrap#legal-page .page-content-wrap h4 strong, .page-wrap#legal-page .page-content-wrap h4 b {
  font-weight: 500;
}
.page-wrap#legal-page .page-content-wrap p {
  margin-bottom: 1.1458333333vw;
}
@media only screen and (max-width: 480px) {
  .page-wrap#legal-page .page-content-wrap p {
    margin-bottom: 2.6666666667vw;
  }
}
.page-wrap#legal-page .page-content-wrap p strong, .page-wrap#legal-page .page-content-wrap p b {
  font-weight: 500;
}
.page-wrap#legal-page .page-content-wrap h6 {
  font-weight: 300;
  line-height: 1.65em;
}
.page-wrap#legal-page .page-content-wrap ul {
  list-style: none;
}
.page-wrap#legal-page .page-content-wrap ul li h4, .page-wrap#legal-page .page-content-wrap ul li h6 {
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  align-items: baseline;
  -o-align-items: baseline;
  -ms-align-items: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  justify-content: flex-start;
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.page-wrap#legal-page .page-content-wrap ul li h4:before, .page-wrap#legal-page .page-content-wrap ul li h6:before {
  content: "- ";
  flex-shrink: 0;
  width: 0.8em;
}
.page-wrap#legal-page .page-content-wrap ul li h6:before {
  width: 1.2em;
}
.page-wrap#legal-page .page-content-wrap ul li:last-child h4, .page-wrap#legal-page .page-content-wrap ul li:last-child h6 {
  margin-bottom: 1.216em !important;
}
.page-wrap#legal-page .page-content-wrap .page-title {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #000000;
  margin-bottom: 1.5625vw;
}
.page-wrap#legal-page .page-content-wrap .page-title h2 {
  padding-bottom: 0.25em;
}
@media only screen and (max-width: 480px) {
  .page-wrap#legal-page .page-content-wrap .page-title {
    margin-bottom: 4vw;
  }
  .page-wrap#legal-page .page-content-wrap .page-title h2 {
    padding-bottom: 0.25em;
  }
}
.page-wrap#legal-page .page-content-wrap .text-sections {
  width: 100%;
  height: auto;
}
.page-wrap#legal-page .page-content-wrap .text-section {
  width: 100%;
  height: auto;
  margin-bottom: 2.0833333333vw;
}
.page-wrap#legal-page .page-content-wrap .text-section:last-child {
  margin-bottom: 0px !important;
}
@media only screen and (max-width: 480px) {
  .page-wrap#legal-page .page-content-wrap .text-section {
    margin-bottom: 10.1333333333vw;
  }
}
.page-wrap#legal-page .page-content-wrap .text-section .section-title {
  border-bottom: 1px solid #000000;
  margin-bottom: 1.25em;
  padding-bottom: 0.35em;
}
@media only screen and (max-width: 480px) {
  .page-wrap#legal-page .page-content-wrap .text-section .section-title {
    margin-bottom: 0.8em;
    padding-bottom: 0.3em;
  }
}
.page-wrap#legal-page .page-content-wrap .text-section .top-line {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin-bottom: 1.9270833333vw;
}
@media only screen and (max-width: 480px) {
  .page-wrap#legal-page .page-content-wrap .text-section .top-line {
    margin-bottom: 6.6666666667vw;
  }
}
.page-wrap#legal-page .page-content-wrap .text-section:first-child .top-line {
  display: none !important;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#legal-page .page-content-wrap {
    padding: 200px 0 170px 0;
  }
  .page-wrap#legal-page .page-content-wrap .outer-content-wrap {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#legal-page .page-content-wrap {
    padding: 46.6666666667vw 0 32vw 0;
  }
}

/*
404 PAGE CONTENT ------------------
*/
.page-wrap#not-found .outer-content-wrap {
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  justify-content: flex-start;
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.page-wrap#not-found .text-wrap {
  position: relative;
  display: block;
  width: 832.7081770443px;
  height: auto;
  margin-left: 127.5318829707px;
}
.page-wrap#not-found .text-wrap h2 {
  font-weight: 300;
}
.page-wrap#not-found .text-wrap h2 strong, .page-wrap#not-found .text-wrap h2 b {
  font-weight: 500;
}
@media only screen and (max-width: 1080px) {
  .page-wrap#not-found .text-wrap {
    margin-left: 0px;
    width: 85%;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrap#not-found .text-wrap {
    width: 95%;
    margin: 0;
  }
  .page-wrap#not-found .text-wrap br {
    display: none;
  }
}

/*
FOOTER CONTENT ------------------
*/
.footer-wrap {
  position: fixed;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  background-color: #E9FF00;
  overflow: hidden;
  z-index: 0;
}
.footer-wrap .outer-content-wrap {
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: -o-transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: -ms-transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: -moz-transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  transform: translateY(-7vh);
  -o-transform: translateY(-7vh);
  -ms-transform: translateY(-7vh);
  -moz-transform: translateY(-7vh);
  -webkit-transform: translateY(-7vh);
  will-change: opacity, transform;
  pointer-events: none;
}
@media only screen and (max-width: 480px) {
  .footer-wrap {
    position: relative;
    bottom: initial;
    left: initial;
  }
  .footer-wrap .outer-content-wrap {
    opacity: 1;
    transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  .footer-wrap p {
    line-height: 1.7em;
  }
}
.footer-wrap.visible .outer-content-wrap {
  opacity: 1;
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  pointer-events: all;
}
.footer-wrap .top-footer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 121.5303825956px 0 75.0187546887px 0;
  text-align: center;
}
.footer-wrap .top-footer h1, .footer-wrap .top-footer span {
  display: block;
  margin-bottom: 0.42em;
}
.footer-wrap .top-footer .button:hover {
  color: #E9FF00;
}
@media only screen and (max-width: 1080px) {
  .footer-wrap .top-footer {
    padding: 120px 0 105px 0;
  }
}
@media only screen and (max-width: 480px) {
  .footer-wrap .top-footer {
    padding: 20.5333333333vw 0 18.6666666667vw 0;
    border-bottom: 0.5px solid #000000;
  }
  .footer-wrap .top-footer h1, .footer-wrap .top-footer span {
    margin-bottom: 0.9em;
  }
}
.footer-wrap .bottom-footer {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding: 0 0 23.2558139535px 0;
}
.footer-wrap .bottom-footer .column {
  position: relative;
  display: block;
  width: 50%;
  height: auto;
}
.footer-wrap .bottom-footer .column.left-column {
  text-align: left;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
}
.footer-wrap .bottom-footer .column.left-column h4.column-title {
  font-weight: 500;
  margin-bottom: 0px;
}
.footer-wrap .bottom-footer .column.left-column .social-column {
  width: 40%;
}
@media only screen and (max-width: 480px) {
  .footer-wrap .bottom-footer .column.left-column .social-column {
    width: 45%;
  }
}
.footer-wrap .bottom-footer .column.left-column .social-column .social-menu {
  position: relative;
  display: block;
}
.footer-wrap .bottom-footer .column.left-column .social-column .social-menu p.footer-menu-item {
  margin-bottom: 0px;
}
.footer-wrap .bottom-footer .column.left-column .contact-column {
  width: 60%;
}
.footer-wrap .bottom-footer .column.left-column .contact-column p {
  margin-bottom: 0px;
}
@media only screen and (max-width: 480px) {
  .footer-wrap .bottom-footer .column.left-column .contact-column {
    width: 55%;
  }
}
.footer-wrap .bottom-footer .column.right-column {
  text-align: left;
  width: fit-content;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-start;
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
}
.footer-wrap .bottom-footer .column.right-column h4.column-title {
  font-weight: 500;
  margin-bottom: 0px;
}
.footer-wrap .bottom-footer .column.right-column .text-column {
  width: fit-content;
}
.footer-wrap .bottom-footer .column.right-column .logo-column {
  width: 5.3125vw;
  height: auto;
  min-width: 98px;
  padding-top: 9px;
  margin-left: 0.78125vw;
}
@media only screen and (max-width: 480px) {
  .footer-wrap .bottom-footer .column.right-column {
    width: 100%;
  }
  .footer-wrap .bottom-footer .column.right-column .text-column {
    width: 45%;
  }
  .footer-wrap .bottom-footer .column.right-column .logo-column {
    width: 55%;
    min-width: 0px;
    padding-top: 1.0666666667vw;
    margin-left: 0px;
  }
  .footer-wrap .bottom-footer .column.right-column .logo-column img {
    width: 18.6666666667vw;
    margin-left: -2.6666666667vw;
  }
}
@media only screen and (max-width: 1080px) {
  .footer-wrap .bottom-footer {
    padding: 27px 0 28px 0;
  }
}
@media only screen and (max-width: 480px) {
  .footer-wrap .bottom-footer {
    padding: 6.4vw 0 7.2vw 0;
  }
  .footer-wrap .bottom-footer .column {
    width: 100%;
  }
  .footer-wrap .bottom-footer .column.right-column {
    margin-top: 8vw;
  }
}
.footer-wrap .footer-menu-row {
  width: 100%;
  height: auto;
  border-top: 1.5px solid #000000;
  padding: 15.0037509377px 0 48.7621905476px 0;
}
@media only screen and (max-width: 480px) {
  .footer-wrap .footer-menu-row {
    border-width: 0.5px;
    padding: 5.3333333333vw 0 9.3333333333vw 0;
  }
}
.footer-wrap .footer-menu-row .footer-menu {
  position: relative;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: baseline;
  -o-align-items: baseline;
  -ms-align-items: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
}
.footer-wrap .footer-menu-row .footer-menu p.footer-menu-item {
  margin-right: 1.6em;
  margin-bottom: 0px;
}
.footer-wrap .footer-menu-row .footer-menu p.footer-menu-item:last-child {
  margin-right: 0px !important;
}
@media only screen and (max-width: 480px) {
  .footer-wrap .footer-menu-row .footer-menu {
    justify-content: space-between;
    -o-justify-content: space-between;
    -ms-justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .footer-wrap .footer-menu-row .footer-menu p.footer-menu-item {
    margin-right: 0px;
  }
}

/*
MENU OVERLAY VISIBLE SPECIFICS ------------------
*/
@media only screen and (max-width: 480px) {
  html.menu-overlay-visible .header-wrap.white-logo .logo-and-tagline {
    -webkit-transition: -webkit-filter 350ms cubic-bezier(0.25, 0.1, 0.25, 1) 100ms;
    -moz-transition: -moz-filter 350ms cubic-bezier(0.25, 0.1, 0.25, 1) 100ms;
    -ms-transition: -ms-filter 350ms cubic-bezier(0.25, 0.1, 0.25, 1) 100ms;
    -o-transition: -o-filter 350ms cubic-bezier(0.25, 0.1, 0.25, 1) 100ms;
    transition: filter 350ms cubic-bezier(0.25, 0.1, 0.25, 1) 100ms;
    filter: invert(0%) !important;
    -o-filter: invert(0%) !important;
    -ms-filter: invert(0%) !important;
    -moz-filter: invert(0%) !important;
    -webkit-filter: invert(0%) !important;
  }
}

/*
IN VIEWPORT CONTENT ------------------
*/
.out-of-opacity {
  transition: opacity 500ms cubic-bezier(0.25, 0.1, 0.25, 1) 300ms;
  -o-transition: opacity 500ms cubic-bezier(0.25, 0.1, 0.25, 1) 300ms;
  -ms-transition: opacity 500ms cubic-bezier(0.25, 0.1, 0.25, 1) 300ms;
  -moz-transition: opacity 500ms cubic-bezier(0.25, 0.1, 0.25, 1) 300ms;
  -webkit-transition: opacity 500ms cubic-bezier(0.25, 0.1, 0.25, 1) 300ms;
  opacity: 0;
}
.out-of-opacity.in-opacity {
  opacity: 1;
}

/* OUT OF VIEW */
.out-of-view {
  transition: transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
  -o-transition: -o-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
  -ms-transition: -ms-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
  -moz-transition: -moz-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
  -webkit-transition: -webkit-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
  opacity: 0;
  transform: translateY(23px);
  -o-transform: translateY(23px);
  -ms-transform: translateY(23px);
  -moz-transform: translateY(23px);
  -webkit-transform: translateY(23px);
  will-change: opacity, transform;
}
.out-of-view.centered {
  transform: translate(-50%, 23px);
  -o-transform: translate(-50%, 23px);
  -ms-transform: translate(-50%, 23px);
  -moz-transform: translate(-50%, 23px);
  -webkit-transform: translate(-50%, 23px);
}
@media only screen and (min-width: 481px) {
  .out-of-view.stage-one-desktop {
    transition: transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
    -o-transition: -o-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
    -ms-transition: -ms-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
    -moz-transition: -moz-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
    -webkit-transition: -webkit-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
  }
  .out-of-view.stage-two-desktop {
    transition: transform 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms, opacity 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms;
    -o-transition: -o-transform 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms, opacity 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms;
    -ms-transition: -ms-transform 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms, opacity 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms;
    -moz-transition: -moz-transform 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms, opacity 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms;
    -webkit-transition: -webkit-transform 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms, opacity 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms;
  }
  .out-of-view.stage-three-desktop {
    transition: transform 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms, opacity 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms;
    -o-transition: -o-transform 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms, opacity 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms;
    -ms-transition: -ms-transform 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms, opacity 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms;
    -moz-transition: -moz-transform 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms, opacity 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms;
    -webkit-transition: -webkit-transform 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms, opacity 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms;
  }
  .out-of-view.stage-four-desktop {
    transition: transform 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms, opacity 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms;
    -o-transition: -o-transform 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms, opacity 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms;
    -ms-transition: -ms-transform 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms, opacity 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms;
    -moz-transition: -moz-transform 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms, opacity 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms;
    -webkit-transition: -webkit-transform 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms, opacity 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms;
  }
  .out-of-view.stage-five-desktop {
    transition: transform 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms, opacity 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms;
    -o-transition: -o-transform 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms, opacity 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms;
    -ms-transition: -ms-transform 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms, opacity 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms;
    -moz-transition: -moz-transform 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms, opacity 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms;
    -webkit-transition: -webkit-transform 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms, opacity 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms;
  }
  .out-of-view.stage-six-desktop {
    transition: transform 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms, opacity 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms;
    -o-transition: -o-transform 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms, opacity 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms;
    -ms-transition: -ms-transform 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms, opacity 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms;
    -moz-transition: -moz-transform 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms, opacity 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms;
    -webkit-transition: -webkit-transform 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms, opacity 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms;
  }
}
@media only screen and (max-width: 480px) {
  .out-of-view {
    transform: translateY(12px);
    -o-transform: translateY(12px);
    -ms-transform: translateY(12px);
    -moz-transform: translateY(12px);
    -webkit-transform: translateY(12px);
  }
  .out-of-view.stage-one-mobile {
    transition: transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
    -o-transition: -o-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
    -ms-transition: -ms-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
    -moz-transition: -moz-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
    -webkit-transition: -webkit-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
  }
  .out-of-view.stage-two-mobile {
    transition: transform 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms, opacity 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms;
    -o-transition: -o-transform 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms, opacity 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms;
    -ms-transition: -ms-transform 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms, opacity 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms;
    -moz-transition: -moz-transform 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms, opacity 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms;
    -webkit-transition: -webkit-transform 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms, opacity 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) 500ms;
  }
  .out-of-view.stage-three-mobile {
    transition: transform 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms, opacity 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms;
    -o-transition: -o-transform 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms, opacity 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms;
    -ms-transition: -ms-transform 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms, opacity 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms;
    -moz-transition: -moz-transform 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms, opacity 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms;
    -webkit-transition: -webkit-transform 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms, opacity 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 600ms;
  }
  .out-of-view.stage-four-mobile {
    transition: transform 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms, opacity 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms;
    -o-transition: -o-transform 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms, opacity 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms;
    -ms-transition: -ms-transform 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms, opacity 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms;
    -moz-transition: -moz-transform 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms, opacity 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms;
    -webkit-transition: -webkit-transform 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms, opacity 1200ms cubic-bezier(0.25, 0.1, 0.25, 1) 700ms;
  }
  .out-of-view.stage-five-mobile {
    transition: transform 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms, opacity 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms;
    -o-transition: -o-transform 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms, opacity 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms;
    -ms-transition: -ms-transform 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms, opacity 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms;
    -moz-transition: -moz-transform 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms, opacity 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms;
    -webkit-transition: -webkit-transform 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms, opacity 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 800ms;
  }
  .out-of-view.stage-six-mobile {
    transition: transform 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms, opacity 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms;
    -o-transition: -o-transform 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms, opacity 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms;
    -ms-transition: -ms-transform 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms, opacity 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms;
    -moz-transition: -moz-transform 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms, opacity 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms;
    -webkit-transition: -webkit-transform 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms, opacity 1400ms cubic-bezier(0.25, 0.1, 0.25, 1) 900ms;
  }
}
.out-of-view.am-in-view-quick {
  transition: transform 0s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: -o-transform 0s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: -ms-transform 0s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0s cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: -moz-transform 0s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.out-of-view.am-in-view {
  opacity: 1;
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
}
.out-of-view.am-in-view.centered {
  transform: translate(-50%, 0px);
  -o-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  -moz-transform: translate(-50%, 0px);
  -webkit-transform: translate(-50%, 0px);
}
@media only screen and (max-width: 480px) {
  .out-of-view.am-in-view {
    transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}

/* OUT OF SCALE */
.out-of-scale {
  opacity: 0;
  transform: scale(1.08);
  -o-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -webkit-transform: scale(1.08);
  transition: transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
  -o-transition: -o-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
  -ms-transition: -ms-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
  -moz-transition: -moz-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
  -webkit-transition: -webkit-transform 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms, opacity 900ms cubic-bezier(0.25, 0.1, 0.25, 1) 400ms;
}
.out-of-scale.in-scale {
  opacity: 1;
  transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
}

.cc-window {
  padding: 20px !important;
  z-index: 50 !important;
  max-width: 400px !important;
  left: 20px !important;
  bottom: 20px !important;
  flex-direction: column !important;
  row-gap: 48px;
  margin: 0;
  background-color: #000000 !important;
  color: #ffffff !important;
}
@media only screen and (max-width: 480px) {
  .cc-window {
    left: 8px !important;
    bottom: 8px !important;
    width: calc(100% - 16px) !important;
  }
}
.cc-window .cc-message {
  margin-right: auto !important;
  max-width: 340px;
}
@media only screen and (max-width: 480px) {
  .cc-window .cc-message {
    max-width: 320px;
  }
}
.cc-window .cc-link {
  line-height: 1.75;
  margin: 0 !important;
  text-align: center;
  background-color: #ffffff;
  color: #000000 !important;
  border: 1px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #ffffff;
  opacity: 1;
  transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cc-window .cc-link:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cc-window .cc-compliance {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 11px;
}
@media only screen and (max-width: 480px) {
  .cc-window .cc-compliance {
    column-gap: 6px;
  }
}
.cc-window .cc-compliance a.cc-btn {
  font-weight: normal;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 50px;
  margin: 0;
  text-decoration: none;
  transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cc-window .cc-compliance a.cc-btn:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
  text-decoration: none;
}
.cc-window .cc-compliance a.cc-btn.cc-allow {
  grid-row: 1;
  grid-column: 1;
}
.cc-window .cc-compliance a.cc-btn.cc-deny {
  grid-row: 1;
  grid-column: 2;
}

.cc-revoke {
  display: none !important;
}
