/*! Flickity v2.1.2
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: #333;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

* {
  box-sizing: border-box; }

@font-face {
  font-family: 'GT Walsheim Bold';
  src: url("/assets/fonts/GT-Walsheim-Bold.eot");
  src: url("/assets/fonts/GT-Walsheim-Bold.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/GT-Walsheim-Bold.ttf") format("ttf"), url("/assets/fonts/GT-Walsheim-Bold.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-stretch: normal; }

@font-face {
  font-family: 'GT Walsheim Regular';
  src: url("/assets/fonts/GT-Walsheim-Regular.eot");
  src: url("/assets/fonts/GT-Walsheim-Regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/GT-Walsheim-Regular.ttf") format("ttf"), url("/assets/fonts/GT-Walsheim-Regular.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-stretch: normal; }

@font-face {
  font-family: 'GT Walsheim Thin';
  src: url("/assets/fonts/GT-Walsheim-Thin.eot");
  src: url("/assets/fonts/GT-Walsheim-Thin.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/GT-Walsheim-Thin.ttf") format("ttf"), url("/assets/fonts/GT-Walsheim-Thin.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-stretch: normal; }

.button--reset {
  background: none;
  border: none;
  margin: 0;
  outline: none;
  padding: 0; }

.list--reset {
  list-style: none;
  margin-left: 0;
  padding-left: 0; }

.link--reset {
  text-decoration: none; }

.hidden-mobile {
  display: none !important; }
  @media (min-width: 768px) {
    .hidden-mobile {
      display: block !important; } }

.hidden-desktop {
  display: block !important; }
  @media (min-width: 768px) {
    .hidden-desktop {
      display: none !important; } }

.is-hidden {
  visibility: hidden;
  opacity: 0; }

body.modal {
  overflow: hidden; }
  @media (min-width: 768px) {
    body.modal {
      overflow-x: hidden;
      overflow-y: auto; } }

body:before {
  content: 'sm';
  display: none;
  /* Prevent from displaying. */ }
  @media (min-width: 768px) {
    body:before {
      content: 'md'; } }
  @media (min-width: 1024px) {
    body:before {
      content: 'lg'; } }
  @media (min-width: 1660px) {
    body:before {
      content: 'xl'; } }

*::-moz-selection {
  background-color: #472626;
  color: #F7DE6E; }

*::selection {
  background-color: #472626;
  color: #F7DE6E; }

.content-page {
  margin: 0 auto;
  padding: 50px 1rem; }

img {
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.3s; }
  img.loaded {
    opacity: 1; }

main.site-content {
  min-height: calc(100vh - 280px); }
  @media (min-width: 768px) {
    main.site-content {
      min-height: calc(100vh - 50px); }
      main.site-content.sidebar-in .section {
        margin-left: auto;
        width: calc(50% - 30px); }
        main.site-content.sidebar-in .section .grid--25 {
          width: 33.33%; }
        main.site-content.sidebar-in .section .grid--20 {
          width: 25%; }
      main.site-content.sidebar-in .page-header {
        left: calc(50% + 30px); }
      main.site-content.sidebar-in .img-module .img--full {
        -webkit-transform: translateX(calc(50% + 30px));
                transform: translateX(calc(50% + 30px)); }
      main.site-content.sidebar-in .img--dual .img--full {
        -webkit-transform: translateX(calc(50% + 100px));
                transform: translateX(calc(50% + 100px)); } }
  @media (min-width: 1024px) {
    main.site-content.sidebar-in .section {
      width: calc(60% - 40px); }
    main.site-content.sidebar-in .page-header {
      left: calc(40% + 50px); }
    main.site-content.sidebar-in .img-module .img--full {
      -webkit-transform: translateX(calc(40% + 40px));
              transform: translateX(calc(40% + 40px)); }
    main.site-content.sidebar-in .img--dual .img--full {
      -webkit-transform: translateX(calc(50% + 40px));
              transform: translateX(calc(50% + 40px)); } }

.debug {
  display: none !important; }

.page {
  padding: 50px 20px; }
  .page.has-hero {
    padding: 50px 20px 0; }
  @media (min-width: 768px) {
    .page {
      padding: 100px 30px 30px; }
      .page.has-hero {
        padding: 100px 30px 30px; } }
  @media (min-width: 1024px) {
    .page {
      padding: 100px 50px 50px; }
      .page.has-hero {
        padding: 50px; } }

.page--child {
  padding: 100px 20px 50px; }
  @media (min-width: 768px) {
    .page--child {
      padding: 150px 50px 50px; } }
  @media (min-width: 1024px) {
    .page--child {
      padding: 150px 50px 50px; } }

.section {
  width: 100%; }
  @media (min-width: 768px) {
    .section {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      margin-left: auto;
      transition: all 0.3s ease-in; } }
  .section strong {
    font-family: "GT Walsheim Bold", sans-serif; }

@media (min-width: 768px) {
  .section--half {
    width: calc(50% - 30px); } }

@media (min-width: 1024px) {
  .section--half {
    width: calc(60% - 40px); } }

.section--pad {
  margin-top: 30px; }
  @media (min-width: 768px) {
    .section--pad {
      margin-top: 100px; } }

.page-header {
  display: inline-block;
  padding-bottom: 20px; }
  .page-header h1, .page-header h2 {
    display: block;
    font-family: "GT Walsheim Bold", sans-serif;
    margin: 0; }
  @media (min-width: 768px) {
    .page-header {
      left: 30px;
      padding-bottom: 0;
      position: -webkit-sticky;
      position: sticky;
      top: 100px;
      transition: all 0.3s ease-in;
      z-index: 8;
      width: 300px; }
      .page-header:first-of-type {
        z-index: 9; }
        .page-header:first-of-type h1 {
          opacity: 1; }
      .page-header.in {
        z-index: 9; }
      .page-header h1 {
        opacity: 0;
        position: relative;
        z-index: 1; }
      .page-header h2 {
        transition: -webkit-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
        transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
        z-index: -1; }
        .page-header h2.out {
          -webkit-transform: translateY(-100%);
                  transform: translateY(-100%); } }
  @media (min-width: 1024px) {
    .page-header {
      left: 50px;
      width: 350px; } }
  @media (min-width: 1660px) {
    .page-header {
      width: 400px; } }

.page-header--simple {
  max-width: none; }

.hero-wrapper {
  position: relative; }
  .hero-wrapper .hero {
    height: 80vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 0; }
  .hero-wrapper .page--child {
    margin-top: calc(80vh - 50px);
    position: relative;
    top: 0;
    z-index: 1; }
  @media (min-width: 768px) {
    .hero-wrapper .hero {
      height: 90vh; }
    .hero-wrapper .page--child {
      margin-top: calc(90vh - 50px); } }

@media (min-width: 768px) {
  .page--child .page-header {
    top: 100px; } }

.grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start; }
  .grid--front {
    z-index: 9; }

.grid--half {
  margin: 10px;
  width: calc(50% - 20px); }
  @media (min-width: 1024px) {
    .grid--half {
      margin: 10px;
      width: calc(40% - 20px); } }

.grid--third {
  margin: 10px;
  width: calc(33.333% - 20px); }

.grid--10 {
  width: 100%; }
  @media (min-width: 768px) {
    .grid--10 {
      display: flex;
      justify-content: flex-start;
      width: 10%; } }

.grid--50 {
  width: 100%; }
  @media (min-width: 768px) {
    .grid--50 {
      display: flex;
      justify-content: flex-start;
      width: 50%; } }

.grid--20 {
  width: 50%; }
  @media (min-width: 580px) {
    .grid--20 {
      width: 33%; }
      .grid--20.width--auto {
        max-width: 31vw; } }
  @media (min-width: 768px) {
    .grid--20 {
      width: 25%; }
      .grid--20.width--auto {
        max-width: 21vw;
        width: auto !important; } }
  @media (min-width: 1024px) {
    .grid--20 {
      width: 20%; }
      .grid--20.width--auto {
        max-width: 17vw; } }
  @media (min-width: 1660px) {
    .grid--20.width--auto {
      max-width: 18vw; } }

.grid--33 {
  width: 100%; }
  @media (min-width: 580px) {
    .grid--33 {
      width: 50%; } }
  @media (min-width: 768px) {
    .grid--33 {
      width: 33%; }
      .grid--33.width--auto {
        width: auto !important; } }
  @media (min-width: 1024px) {
    .grid--33.width--auto .link-module {
      max-width: 26vw; } }

.grid--25 {
  width: 50%; }
  @media (min-width: 768px) {
    .grid--25 {
      width: 25%; } }

.grid--90 {
  width: 100%; }
  @media (min-width: 768px) {
    .grid--90 {
      width: 90%; } }

.grid--100 {
  width: 100%; }

.grid--fill {
  justify-content: space-between; }
  .grid--fill:after {
    content: '';
    flex: auto; }

.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s;
  z-index: -1; }
  .bg-image.loaded {
    opacity: 1; }

.center-all {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  min-height: calc(100vh - 50px);
  position: relative;
  width: 100%; }
  .center-all img {
    padding: 1rem; }

.bg--brown {
  background-color: #472626;
  color: #FFFFFF; }
  .bg--brown .grid--front {
    background-color: #472626; }
  .bg--brown .page-header * {
    background-color: #472626; }

.bg--red {
  background-color: #D63338;
  color: #FFFFFF; }
  .bg--red h1 {
    color: #F7DE6E; }
  .bg--red .page-header * {
    background-color: #D63338; }

.bg--yellow {
  background-color: #F7DE6E;
  color: #472626; }
  .bg--yellow .grid--front {
    background-color: #F7DE6E; }
  .bg--yellow h1 {
    color: #F7A121; }
  .bg--yellow + .sidebar {
    background-color: #F7A121;
    color: #472626; }
    .bg--yellow + .sidebar svg * {
      fill: #472626; }
  .bg--yellow .toggle-nav:before,
  .bg--yellow .toggle-nav:after {
    border-color: #472626; }
  .bg--yellow .page-header * {
    background-color: #F7DE6E; }

.bg--green {
  background-color: #1C664F;
  color: #FFFFFF; }
  .bg--green .grid--front {
    background-color: #1C664F; }
  .bg--green h1 {
    color: #F7DE6E; }
  .bg--green + .sidebar {
    background-color: #F7DE6E;
    color: #472626; }
    .bg--green + .sidebar svg * {
      fill: #472626; }
  .bg--green .page-header * {
    background-color: #1C664F; }

.bg--orange {
  background-color: #F7A121;
  color: #472626; }
  .bg--orange .grid--front {
    background-color: #F7A121; }
  .bg--orange .page-header * {
    background-color: #F7A121; }

.bg--blue {
  background-color: #85C7D1;
  color: #472626; }
  .bg--blue .grid--front {
    background-color: #85C7D1; }
  .bg--blue h1 {
    color: #D63338; }
  .bg--blue + .sidebar {
    background-color: #D63338;
    color: #FFFFFF; }
    .bg--blue + .sidebar svg * {
      fill: #FFFFFF; }
    .bg--blue + .sidebar .close:before,
    .bg--blue + .sidebar .close:after {
      border-color: #FFFFFF; }
  .bg--blue .toggle-nav:before,
  .bg--blue .toggle-nav:after {
    border-color: #472626; }
  .bg--blue .page-header * {
    background-color: #85C7D1; }

.bg--white {
  background-color: #FFFFFF;
  color: #472626; }
  .bg--white .grid--front {
    background-color: #FFFFFF; }
  .bg--white .page-header * {
    background-color: #FFFFFF; }

.color--yellow {
  color: #F7DE6E; }

.color--orange {
  color: #F7A121; }

.color--brown {
  color: #472626; }

.color--white {
  color: #FFFFFF; }

.fill--red {
  fill: #D63338; }

.fill--brown {
  fill: #472626; }

.fill--white {
  fill: #FFFFFF; }

body {
  font-family: "GT Walsheim Regular", sans-serif;
  font-style: normal; }

.type--body, .section > p, .link--button, input[type="submit"], .form--footer label, .form--footer input[type="text"],
.form--footer input[type="email"], label, .form--apply .form__group textarea,
.form--apply .form__group input[type="text"],
.form--apply .form__group input[type="email"],
.form--apply .wf-group textarea,
.form--apply .wf-group input[type="text"],
.form--apply .wf-group input[type="email"] {
  font-family: "GT Walsheim Regular", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem; }
  @media (min-width: 768px) {
    .type--body, .section > p, .link--button, input[type="submit"], .form--footer label, .form--footer input[type="text"],
    .form--footer input[type="email"], label, .form--apply .form__group textarea,
    .form--apply .form__group input[type="text"],
    .form--apply .form__group input[type="email"],
    .form--apply .wf-group textarea,
    .form--apply .wf-group input[type="text"],
    .form--apply .wf-group input[type="email"] {
      font-size: 1.15rem;
      line-height: 1.6rem; } }
  @media (min-width: 1024px) {
    .type--body, .section > p, .link--button, input[type="submit"], .form--footer label, .form--footer input[type="text"],
    .form--footer input[type="email"], label, .form--apply .form__group textarea,
    .form--apply .form__group input[type="text"],
    .form--apply .form__group input[type="email"],
    .form--apply .wf-group textarea,
    .form--apply .wf-group input[type="text"],
    .form--apply .wf-group input[type="email"] {
      font-size: 1.25rem;
      line-height: 1.75rem; } }
  @media (min-width: 1660px) {
    .type--body, .section > p, .link--button, input[type="submit"], .form--footer label, .form--footer input[type="text"],
    .form--footer input[type="email"], label, .form--apply .form__group textarea,
    .form--apply .form__group input[type="text"],
    .form--apply .form__group input[type="email"],
    .form--apply .wf-group textarea,
    .form--apply .wf-group input[type="text"],
    .form--apply .wf-group input[type="email"] {
      font-size: 1.75rem;
      line-height: 2.25rem; } }

.type--thin {
  font-family: "GT Walsheim Thin", sans-serif; }

.type--bold, .section h2 {
  font-family: "GT Walsheim Bold", sans-serif; }

.type--uppercase {
  text-transform: uppercase; }

.type--large, .page-header h1, .page-header h2 {
  font-size: 2rem; }
  @media (min-width: 768px) {
    .type--large, .page-header h1, .page-header h2 {
      font-size: 3.3rem; } }
  @media (min-width: 1660px) {
    .type--large, .page-header h1, .page-header h2 {
      font-size: 4.5rem; } }

.type--medium, .section h2, .bio h3,
.work h3 {
  font-size: 1.2rem;
  line-height: 1.7rem; }
  @media (min-width: 768px) {
    .type--medium, .section h2, .bio h3,
    .work h3 {
      font-size: 1.5rem;
      line-height: 1.9rem; } }
  @media (min-width: 1024px) {
    .type--medium, .section h2, .bio h3,
    .work h3 {
      font-size: 1.75rem;
      line-height: 2.25rem; } }
  @media (min-width: 1660px) {
    .type--medium, .section h2, .bio h3,
    .work h3 {
      font-size: 2.25rem;
      line-height: 2.66rem; } }

.type--small {
  font-size: 0.6rem;
  line-height: 0.8rem;
  letter-spacing: 0.05rem; }
  @media (min-width: 768px) {
    .type--small {
      font-size: 0.75rem;
      letter-spacing: 0.1rem;
      line-height: 0.95rem; } }
  @media (min-width: 1660px) {
    .type--small {
      font-size: 1.25rem;
      letter-spacing: 0.2rem;
      line-height: 1.45rem; } }

.type--xs {
  font-size: 0.5rem;
  letter-spacing: 0.05rem;
  line-height: 0.7rem; }
  @media (min-width: 768px) {
    .type--xs {
      font-size: 0.6rem;
      letter-spacing: 0.1rem;
      line-height: 0.9rem; } }
  @media (min-width: 1660px) {
    .type--xs {
      font-size: 1rem;
      line-height: 1.2rem; } }

.type--small.type--bold, .section h2.type--small {
  letter-spacing: 0.1rem; }
  @media (min-width: 768px) {
    .type--small.type--bold, .section h2.type--small {
      letter-spacing: 0.2rem; } }

.type--block {
  display: block; }

a {
  border-bottom: 1px solid #F7A121;
  color: #F7A121;
  text-decoration: none;
  transition: color 0.3s, border 0.3s; }
  a:hover {
    border-bottom-color: #D63338;
    color: #D63338; }

.link--icon {
  display: block;
  border: none; }
  .link--icon svg {
    height: auto;
    max-width: 20px;
    width: 100%; }

.link--button, input[type="submit"] {
  border-radius: 0;
  border-width: 2px;
  display: block;
  height: 50px;
  line-height: 46px;
  min-width: 175px;
  padding: 0 25px;
  text-align: center;
  text-transform: capitalize;
  width: 100%; }
  @media (min-width: 768px) {
    .link--button, input[type="submit"] {
      width: auto; } }

.link--bold {
  border-bottom-width: 2px;
  font-family: "GT Walsheim Bold", sans-serif; }

.link--yellow, .bg--red a {
  border-bottom-color: #F7DE6E;
  color: #F7DE6E; }
  .link--yellow:hover, .bg--red a:hover {
    border-bottom-color: #F7A121;
    color: #F7A121; }

.link--white, .news-module a {
  border-bottom-color: #FFFFFF;
  color: #FFFFFF;
  opacity: 1;
  transition: opacity 0.3s; }
  .link--white:hover, .news-module a:hover {
    border-bottom-color: #FFFFFF;
    color: #FFFFFF;
    opacity: 0.75; }

.header a {
  font-size: 2rem; }
  @media (min-width: 768px) {
    .header a {
      font-size: 1rem; } }
  @media (min-width: 1660px) {
    .header a {
      font-size: 1.5rem; } }

.link-module h4 {
  font-family: "GT Walsheim Bold", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem; }
  @media (min-width: 768px) {
    .link-module h4 {
      font-size: 1rem;
      line-height: 1.45rem; } }
  @media (min-width: 1024px) {
    .link-module h4 {
      font-size: 1.05rem;
      line-height: 1.55rem; } }
  @media (min-width: 1660px) {
    .link-module h4 {
      font-size: 1.55rem;
      line-height: 2.05rem; } }

.header {
  height: 50px;
  margin: 0 auto;
  padding: 0;
  position: relative; }
  .header nav {
    align-items: center;
    display: flex;
    height: 50px;
    justify-content: space-between;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 10; }
    .header nav.is-open .nav__right .nav__list {
      -webkit-transform: translateY(0);
              transform: translateY(0); }
    .header nav.is-open .toggle-nav:before {
      border-color: #FFFFFF;
      border-bottom: 0;
      height: 0;
      top: 4px;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .header nav.is-open .toggle-nav:after {
      border-color: #FFFFFF;
      height: 0;
      top: 4px;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    @media (min-width: 768px) {
      .header nav {
        padding-right: 30px; } }
    @media (min-width: 1024px) {
      .header nav {
        padding-right: 50px; } }
    @media (min-width: 1660px) {
      .header nav {
        height: 60px; } }
  .header a {
    border: none;
    color: #FFFFFF;
    font-family: "GT Walsheim Bold", sans-serif;
    transition: color 0.3s; }
    .header a:hover {
      color: #F7DE6E; }
  .header.darken .nav__logo svg * {
    fill: #472626; }
  .header.darken .nav__logo:hover svg * {
    fill: #F7A121; }
  .header.nav-open .nav__logo svg * {
    fill: #FFFFFF; }
  @media (min-width: 768px) {
    .header {
      padding: 0 30px; }
      .header.darken a {
        color: #472626; }
        .header.darken a:hover {
          color: #F7A121; } }
  @media (min-width: 1024px) {
    .header {
      padding: 0 50px; } }
  .header.bg--blue .nav__logo svg * {
    fill: #472626; }
  .header.bg--blue .nav__logo:hover svg * {
    fill: #F7DE6E; }

.nav__logo {
  display: block;
  font-size: inherit;
  left: 20px;
  margin-top: 10px;
  position: fixed;
  top: 0;
  z-index: 11; }
  @media (min-width: 768px) {
    .nav__logo {
      left: 30px;
      margin-left: 0; } }
  @media (min-width: 1024px) {
    .nav__logo {
      left: 50px; } }
  @media (min-width: 1660px) {
    .nav__logo {
      margin-top: 6px; }
      .nav__logo svg {
        height: auto;
        min-width: 100px; } }
  .nav__logo svg * {
    transition: fill 0.15s ease-in; }
  .nav__logo:hover svg * {
    fill: #F7DE6E; }

.nav__left {
  z-index: 10; }

.nav__list {
  align-items: center;
  background-color: #472626;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  left: 0;
  margin: 0;
  padding: 100px 0;
  position: fixed;
  right: 0;
  text-align: center;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  top: 0;
  width: 100%; }
  @media (min-width: 768px) {
    .nav__list {
      background-color: transparent;
      flex-direction: row;
      height: auto;
      justify-content: unset;
      padding: 0;
      position: relative;
      text-align: left;
      -webkit-transform: none;
              transform: none;
      transition: none; }
      .nav__list li {
        line-height: calc(50px + 1px);
        padding: 0 1rem; }
        .nav__list li:last-of-type {
          padding-right: 0; }
        .nav__list li a {
          color: inherit; } }

.toggle-nav {
  display: block;
  height: 24px;
  position: absolute;
  right: 20px;
  top: 17px;
  width: 18px; }
  .toggle-nav:before {
    border-bottom: 2px solid #FFFFFF;
    border-top: 2px solid #FFFFFF;
    bottom: 0;
    content: '';
    height: 12px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; }
  .toggle-nav:after {
    border-bottom: 2px solid #FFFFFF;
    content: '';
    height: 7px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; }
  @media (min-width: 768px) {
    .toggle-nav {
      display: none; } }

@media (min-width: 768px) {
  .logo-dark .header .nav__logo svg * {
    fill: #472626; } }

@media (min-width: 768px) {
  .logo-light .header .nav__logo svg * {
    fill: #FFFFFF; } }

.footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 230px;
  padding: 20px;
  position: relative; }
  .footer > .footer__column {
    width: 100%; }
  @media (min-width: 768px) {
    .footer {
      padding: 40px 30px; } }
  @media (min-width: 1024px) {
    .footer {
      flex-direction: row;
      min-height: 250px;
      justify-content: space-between;
      padding: 40px 50px; }
      .footer > .footer__column {
        width: 30%; }
      .footer p {
        max-width: 300px; } }
  @media (min-width: 1660px) {
    .footer .type--body, .footer .section > p, .footer .link--button, .footer input[type="submit"], .footer .form--footer label, .form--footer .footer label, .footer .form--footer input[type="text"], .form--footer .footer input[type="text"],
    .footer .form--footer input[type="email"], .form--footer .footer input[type="email"], .footer label, .footer .form--apply .form__group textarea, .form--apply .form__group .footer textarea,
    .footer .form--apply .form__group input[type="text"], .form--apply .form__group .footer input[type="text"],
    .footer .form--apply .form__group input[type="email"], .form--apply .form__group .footer input[type="email"],
    .footer .form--apply .wf-group textarea, .form--apply .wf-group .footer textarea,
    .footer .form--apply .wf-group input[type="text"], .form--apply .wf-group .footer input[type="text"],
    .footer .form--apply .wf-group input[type="email"], .form--apply .wf-group .footer input[type="email"] {
      font-size: 1.2rem;
      line-height: 1.7rem; } }
  .footer a {
    color: #FFFFFF;
    border-bottom: none; }
    .footer a:hover {
      color: #F7DE6E; }
  .footer .address {
    margin: 0; }
    .footer .address span {
      display: block; }
  .footer .share-list {
    display: flex;
    justify-content: space-between;
    max-width: 100px; }
    .footer .share-list svg * {
      fill: #FFFFFF; }
  .footer .share-list__linkedin {
    display: none; }

.footer__column {
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .footer__column ul {
      margin: 0; } }

.footer__column--lg {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%; }
  .footer__column--lg .footer__column {
    width: 45%; }
  @media (min-width: 768px) {
    .footer__column--lg {
      flex-wrap: nowrap; } }
  @media (min-width: 1024px) {
    .footer__column--lg {
      flex-direction: row;
      justify-content: space-around;
      width: 70%; }
      .footer__column--lg .footer__column {
        width: 20%; } }

.footer__inner {
  padding: 0.5rem 0; }
  .footer__inner p {
    margin: 0;
    padding: 0 1rem; }
  @media (min-width: 1024px) {
    .footer__inner {
      min-width: 150px;
      padding: 0; }
      .footer__inner p {
        line-height: 68px; } }

.form--footer {
  margin: 1rem 0;
  position: relative; }
  .form--footer label {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  .form--footer:active label, .form--footer:focus label, .form--footer:focus-within label {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  @media (min-width: 1024px) {
    .form--footer {
      max-width: 330px; } }
  .form--footer input[type="text"],
  .form--footer input[type="email"] {
    background-color: #472626;
    border: 2px solid #FFFFFF;
    border-radius: 0;
    color: #FFFFFF;
    outline: none;
    padding: 10px 10px 3px;
    line-height: 1.75rem; }
  .form--footer input[type="submit"] {
    display: none; }

label {
  left: 10px;
  pointer-events: none;
  position: absolute;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; }

textarea,
input[type="email"],
input[type="text"] {
  font-family: "GT Walsheim Regular", sans-serif;
  width: 100%; }

input[type="submit"] {
  transition: all 0.3s; }
  @media (min-width: 768px) {
    input[type="submit"]:hover {
      cursor: pointer; } }

.form__group {
  position: relative; }

.form--apply {
  background-color: #F7A121;
  opacity: 1;
  transition: all 0.3s; }
  .form--apply.complete {
    opacity: 0; }
  .form--apply form {
    display: flex;
    flex-wrap: wrap; }
  @media (min-width: 768px) {
    .form--apply .grid--50:first-of-type {
      padding-right: 10px; } }
  .form--apply .form__group,
  .form--apply .wf-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 40px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative; }
    .form--apply .form__group label,
    .form--apply .wf-group label {
      color: #472626;
      top: 8px;
      -webkit-transform: translateY(0);
              transform: translateY(0); }
      @media (min-width: 768px) {
        .form--apply .form__group label,
        .form--apply .wf-group label {
          top: 5px; } }
    .form--apply .form__group.active label,
    .form--apply .wf-group.active label {
      -webkit-transform: translateY(-30px);
              transform: translateY(-30px); }
    .form--apply .form__group.error input,
    .form--apply .form__group.error textarea,
    .form--apply .wf-group.error input,
    .form--apply .wf-group.error textarea {
      border-color: #D63338; }
    .form--apply .form__group:active label, .form--apply .form__group:focus label, .form--apply .form__group:focus-within label,
    .form--apply .wf-group:active label,
    .form--apply .wf-group:focus label,
    .form--apply .wf-group:focus-within label {
      -webkit-transform: translateY(-30px);
              transform: translateY(-30px); }
    .form--apply .form__group input[type="text"],
    .form--apply .form__group input[type="email"],
    .form--apply .wf-group input[type="text"],
    .form--apply .wf-group input[type="email"] {
      height: 40px; }
    .form--apply .form__group textarea,
    .form--apply .form__group input,
    .form--apply .wf-group textarea,
    .form--apply .wf-group input {
      background-color: transparent;
      border: 2px solid #472626;
      outline: none;
      padding: 0 10px; }
    @media (min-width: 1660px) {
      .form--apply .form__group,
      .form--apply .wf-group {
        height: 45px; }
        .form--apply .form__group input[type="text"],
        .form--apply .form__group input[type="email"],
        .form--apply .wf-group input[type="text"],
        .form--apply .wf-group input[type="email"] {
          height: 45px; } }
  .form--apply .field--text {
    height: 240px; }
    .form--apply .field--text textarea {
      height: 100%; }
  .form--apply input[type="submit"] {
    background-color: #F7A121;
    border: 2px solid #472626; }
    @media (min-width: 768px) {
      .form--apply input[type="submit"]:hover {
        background-color: #472626;
        color: #F7A121; } }

.link-module {
  border-bottom: none;
  display: block;
  max-width: 100%;
  overflow: hidden;
  padding-right: 10px;
  z-index: 9; }
  .link-module figure {
    display: block;
    margin: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 9; }
    .link-module figure img {
      -webkit-filter: grayscale(100%);
              filter: grayscale(100%);
      transition: all 0.3s;
      width: 100%; }
      .link-module figure img.loaded {
        opacity: 0.6; }
  .link-module h4 {
    margin-top: 10px; }
  .link-module.hover img, .link-module:hover img {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
    opacity: 1; }
    .link-module.hover img.loaded, .link-module:hover img.loaded {
      opacity: 1; }

.link-module__inner {
  display: block;
  margin-top: 1rem; }

.bio-module {
  color: #FFFFFF; }
  .bio-module h4 {
    max-width: 250px; }
  .bio-module.hover, .bio-module:hover {
    color: #F7DE6E; }
    .bio-module.hover figure:before, .bio-module:hover figure:before {
      background-color: #F7DE6E; }

.work-module {
  color: #472626;
  padding-bottom: 1.5rem; }
  .work-module p {
    margin: 0; }
  .work-module h4 {
    max-width: 500px;
    margin-bottom: 15px; }
  .work-module.hover, .work-module:hover {
    color: #D63338; }
    .work-module.hover figure:before, .work-module:hover figure:before {
      background-color: #D63338; }
  .work-module figure {
    overflow: hidden;
    min-height: 200px; }
    .work-module figure img {
      height: auto;
      left: 50%;
      max-width: unset;
      min-height: 100%;
      min-width: 100%;
      position: absolute;
      top: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%);
              transform: translateX(-50%) translateY(-50%);
      width: auto; }
  @media (min-width: 768px) {
    .work-module {
      max-width: 33vw; }
      .work-module figure {
        min-height: 175px; } }
  @media (min-width: 1024px) {
    .work-module figure {
      min-height: 250px; } }
  @media (min-width: 1660px) {
    .work-module figure {
      min-height: 350px; } }

.news-module {
  color: #FFFFFF;
  margin: 0 -20px;
  padding: 2rem;
  position: relative; }
  @media (min-width: 768px) {
    .news-module {
      margin: 33% 10px 0;
      max-width: 300px;
      padding: 0 1rem 1rem; }
      .news-module img {
        left: 0;
        position: absolute;
        right: 0;
        top: -25%; } }
  @media (min-width: 1024px) {
    .news-module img {
      top: -50%; } }

.news-module__image {
  margin: 0;
  min-height: 150px;
  position: relative;
  text-align: center; }

.news-module__content {
  padding-top: 1rem; }
  .news-module__content p, .news-module__content h4 {
    margin: 0; }
  .news-module__content a {
    display: inline-block;
    font-size: 0.9rem;
    padding-top: 30px;
    margin-bottom: 10px; }
  @media (min-width: 768px) {
    .news-module__content {
      align-items: flex-start;
      display: flex;
      flex-direction: column;
      height: calc(60% - 20px);
      justify-content: space-between; } }

.img-module {
  margin: 30px 0;
  position: relative;
  z-index: 9; }
  .img-module .img--full {
    height: auto;
    width: 100%; }
  .img-module.img--dual .img--full,
  .img-module .img--top,
  .img-module .img--bottom {
    height: auto;
    width: 100%; }
  @media (min-width: 768px) {
    .img-module {
      margin: 100px 0; }
      .img-module.img--dual .img--full {
        width: 80%; }
      .img-module .img--top,
      .img-module .img--bottom {
        position: absolute;
        right: 0;
        width: 33%; }
      .img-module .img--top {
        top: -10%; }
      .img-module .img--bottom {
        bottom: -10%; } }

.img--full {
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in; }

.sidebar {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  padding: 20px 20px 100px;
  position: fixed;
  top: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  width: 100%;
  z-index: 10; }
  .sidebar.is-in {
    -webkit-transform: translateY(10%);
            transform: translateY(10%); }
    .sidebar.is-in .sidebar__content {
      opacity: 1; }
  @media (min-width: 768px) {
    .sidebar {
      height: 100vh;
      padding: 30px 30px 0;
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
      width: 50%; }
      .sidebar.is-in {
        -webkit-transform: translateX(0);
                transform: translateX(0); } }
  .sidebar strong {
    font-family: "GT Walsheim Bold", sans-serif; }
  .sidebar figure {
    margin: 0 0 1em; }
    .sidebar figure img {
      width: 100%; }
  @media (min-width: 1024px) {
    .sidebar {
      padding: 50px 50px;
      width: 40%; } }

.sidebar__content {
  box-sizing: content-box;
  height: 100%;
  opacity: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 50px;
  padding-right: 15px;
  transition: opacity 0.3s 0.3s;
  width: 100%; }
  .sidebar__content .grid {
    height: auto;
    width: 100%; }
  @media (min-width: 768px) {
    .sidebar__content {
      padding-top: 50px;
      width: 100%; }
      .sidebar__content .grid p:first-child {
        margin-top: 0; } }

.complete {
  opacity: 0 !important; }

.bio h3 span,
.work h3 span {
  display: block; }

.bio img,
.work img {
  max-width: 100%; }

.bio .share-list,
.work .share-list {
  display: flex;
  flex-direction: row;
  margin-top: 0; }
  .bio .share-list li,
  .work .share-list li {
    margin: 0 10px; }
    .bio .share-list li:first-child,
    .work .share-list li:first-child {
      margin-left: 0; }

@media (min-width: 580px) {
  .bio,
  .work {
    padding-bottom: 50px; } }

@media (min-width: 768px) {
  .bio .share-list,
  .work .share-list {
    flex-direction: column;
    left: 0;
    max-height: 300px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%; }
    .bio .share-list li,
    .work .share-list li {
      margin: 0 0 10px; } }

.work p.type--small {
  margin: 0; }

@media (min-width: 768px) {
  .form__wrapper {
    padding-bottom: 50px; }
    .form__wrapper h3 {
      margin-bottom: 0;
      margin-top: 25px; } }

.close {
  height: 20px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 40px; }
  .close:hover {
    cursor: pointer; }
    .close:hover:before, .close:hover:after {
      -webkit-transform: rotate(0);
              transform: rotate(0); }
  .close:before {
    border-top: 2px solid #472626;
    content: '';
    height: 0;
    position: absolute;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    width: 75%; }
  .close:after {
    border-bottom: 2px solid #472626;
    content: '';
    height: 0;
    position: absolute;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    width: 75%; }
  @media (min-width: 768px) {
    .close {
      right: 30px;
      top: 30px; } }
  @media (min-width: 1024px) {
    .close {
      right: 50px;
      top: 50px; } }

.is-ie .close {
  left: unset;
  position: absolute;
  right: 55px;
  top: 100px; }

.carousel {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .carousel ul {
    height: 100%;
    margin: 0;
    width: 100%; }

.carousel__item {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding: 20px;
  width: 100%;
  z-index: 1; }
  @media (min-width: 768px) {
    .carousel__item {
      padding: 50px; } }

.carousel__item--image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  .carousel__item--image:before {
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0; }
  .carousel__item--image video {
    height: auto;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
    z-index: -1; }

.carousel__content {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 500px;
  padding-bottom: 50px;
  z-index: 2; }
  .carousel__content h2 {
    margin: 0; }
  @media (min-width: 768px) {
    .carousel__content {
      padding-bottom: 0; } }
  @media (min-width: 1660px) {
    .carousel__content {
      max-width: 680px; } }

.flickity-slider {
  height: 80vh; }
  @media (min-width: 768px) {
    .flickity-slider {
      height: 90vh; } }

.flickity-page-dots {
  bottom: 20px; }
  .flickity-page-dots .dot {
    background: #FFFFFF; }

