@charset "UTF-8";
body.env-local .admin-bar .site-details:after {
  z-index: 100;
  float: right;
  font-size: 13px;
  padding: 0px 6px;
  color: #000000;
  display: inline-block;
  padding: 0px 2px;
  bottom: 50px;
}
@media all and (min-width: 20em) {
  body.env-local .admin-bar .site-details:after {
    content: "mob ≥ 320px (20em)";
  }
}
@media all and (min-width: 37.5em) {
  body.env-local .admin-bar .site-details:after {
    content: "phab ≥ 600px (37.5em)";
  }
}
@media all and (min-width: 46.25em) {
  body.env-local .admin-bar .site-details:after {
    content: "tab ≥ 740px (46.25em)";
  }
}
@media all and (min-width: 61.25em) {
  body.env-local .admin-bar .site-details:after {
    content: "lap ≥ 980px (61.25em)";
  }
}
@media all and (min-width: 81.25em) {
  body.env-local .admin-bar .site-details:after {
    content: "desk ≥ 1300px (81.25em)";
  }
}
@media all and (min-width: 112.5em) {
  body.env-local .admin-bar .site-details:after {
    content: "epic ≥ 1800px (112.5em)";
  }
}

/**
 * Tests
 * (scroll down to edit the tests)
 */
@media all and (min-width: 20em) {
  .element {
    color: green;
  }
}
@media all and (min-width: 37.5em) {
  .element {
    color: yellow;
  }
}
@media all and (min-width: 46.25em) {
  .element {
    color: blue;
  }
}
@media all and (max-width: 61.24em) {
  .element {
    color: red;
  }
}
@media all and (max-width: 400px), (min-width: 650px) and (max-width: 1200px) {
  .element {
    color: crimson;
  }
}
@media all and (min-width: 75em) {
  .element {
    color: yellow;
  }
}

/**
 * For older browsers that don't support @media queries
 * (in our case: IE8)


.element {
    @include mq($from: mob) {
        color: lighten(green,40);
    }
    @include mq($from: tab) {
        color: lighten(blue,40);
    }
    @include mq($to: lap) {
        color: lighten(red,40); // Not wide enough: won't be in the output
    }
    @include mq(desk) {
        color: lighten(crimson,40); // Too wide: won't be in the output
    }

}
 */
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on February 8, 2023 */
@font-face {
  font-family: "bentonsans_book";
  src: url("/_assets/fonts/benton-sans/bentonsans_book-webfont.woff2") format("woff2"), url("/_assets/fonts/benton-sans/bentonsans_book-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "bentonsans_medium";
  src: url("/_assets/fonts/benton-sans/bentonsans_medium-webfont.woff2") format("woff2"), url("/_assets/fonts/benton-sans/bentonsans_medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  /* disable global scrolling when featherlights are visible */
  overflow: hidden;
}

.featherlight {
  display: none;
  /* dimensions: spanning the background from edge to edge */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647; /* z-index needs to be >= elements on the site. */
  /* position: centering content */
  text-align: center;
  /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
  white-space: nowrap;
  /* styling */
  cursor: pointer;
  background: #333;
  /* IE8 "hack" for nested featherlights */
  background: rgba(0, 0, 0, 0);
}

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.8);
}

.featherlight:before {
  /* position: trick to center content vertically */
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.featherlight .featherlight-content {
  /* make content container for positioned elements (close button) */
  position: relative;
  /* position: centering vertical and horizontal */
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  /* dimensions: cut off images */
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  /* dimensions: handling large content */
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  /* styling */
  background: #fff;
  cursor: auto;
  /* reset white-space wrapping */
  white-space: normal;
}

/* contains the content */
.featherlight .featherlight-inner {
  /* make sure its visible */
  display: block;
}

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
  display: none;
}

.featherlight .featherlight-close-icon {
  /* position: centering vertical and horizontal */
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  /* dimensions: 25px x 25px */
  line-height: 25px;
  width: 25px;
  /* styling */
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff; /* Set the background in case it overlaps the content */
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: none;
  padding: 0;
}

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.featherlight .featherlight-image {
  /* styling */
  width: 100%;
}

.featherlight-iframe .featherlight-content {
  /* removed the border for image croping since iframe is edge to edge */
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

.featherlight iframe {
  /* styling */
  border: none;
}

.featherlight * { /* See https://github.com/noelboss/featherlight/issues/42 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}
/* hide non featherlight items when printing */
@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none;
  }
}
/*! Lity - v2.2.2 - 2017-07-17
* http://sorgalla.com/lity/
* Copyright (c) 2015-2017 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.skip-link {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  text-decoration: underline;
  font-size: 18px;
  font-size: 1.8rem;
  z-index: 9999;
  display: block;
  padding: 15px 15px;
  -webkit-transition: 0s;
  transition: 0s;
}
.skip-link:focus {
  position: fixed !important;
  width: 100% !important;
  height: auto !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  color: #000000;
  outline: 3px solid #ffe32b;
  outline-offset: 0;
  background-color: #ffe32b;
}

.image-bg {
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.image-bg img {
  left: -9999em;
  position: relative;
}

.lightergrey-bg,
.light-bg {
  background-color: #e8e8e8;
  color: #1D1D1B;
}

.dark-bg {
  background-color: #1D1D1B;
  color: #fff;
}

.white-bg {
  background-color: #fff;
  color: #000000;
}

.offwhite-bg {
  background-color: #FAFAFA;
  color: #000000;
}

.lightgrey-bg {
  background-color: #CECECE;
  color: #000000;
}

.grey-bg {
  background-color: #a1a1a1;
  color: #000000;
}

.darkgrey-bg {
  background-color: #1D1D1B;
  color: #fff;
}

.black-bg {
  background-color: #000000;
  color: #fff;
}

.blue-bg {
  background-color: #4c97bb;
  color: #fff;
}

.pink-bg {
  background-color: #FFE1FF;
  color: #000000;
}

.green-bg {
  background-color: #0DC3CC;
  color: #fff;
}

.yellow-bg {
  background-color: #F9F15F;
  color: #fff;
}

.purple-bg {
  background-color: #7564FF;
  color: #fff;
}

.darkpurple-bg {
  background-color: #1B1032;
  color: #fff;
}

.red-bg {
  background-color: #FF6373;
  color: #fff;
}

.lightpink-bg {
  background-color: #FFE1FF;
  color: #000000;
}

.black-purple-vg-bg {
  background: #7564FF;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #7564FF), color-stop(40%, #000000));
  background: linear-gradient(0deg, #7564FF 10%, #000000 40%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$startColor",endColorstr="$endColor",GradientType=1);
  color: #fff;
}

div.env-callout {
  padding: 20px;
  background: #CECECE;
  margin: 0 0 20px;
  max-width: 600px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #CECECE;
}
div.env-callout h1, div.env-callout h2 {
  font-family: "bentonsans_book", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.2;
  margin-bottom: 1px;
  font-size: 36px;
  font-size: 3.6rem;
}
div.env-callout h1 strong, div.env-callout h2 strong {
  font-family: "bentonsans_medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
div.env-callout p {
  font-size: 24px;
  font-size: 2.4rem;
}
div.env-callout p a {
  color: #1D1D1B;
}
div.env-callout.local {
  background-color: #a2dc42;
}
div.env-callout.dev {
  background-color: #FFC416;
}
div.env-callout.stage {
  background-color: #F9F15F;
}
div.env-callout.prod {
  background-color: #e00719;
}
@media all and (min-width: 46.25em) {
  div.env-callout h1, div.env-callout h2 {
    font-size: 46px;
    font-size: 4.6rem;
  }
}

.f-login {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.f-login .col {
  margin: 10% auto;
  max-width: 600px;
}
.f-login .col > * {
  padding: 20px 40px;
  margin: 0;
}
.f-login .col > p {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 10px;
  padding-bottom: 0px;
}
.f-login .col > p:last-of-type {
  padding-bottom: 20px;
}

body.show-admin-bar {
  padding-bottom: 90px;
}
body.show-admin-bar .admin-bar {
  display: inline-block;
}
@media all and (min-width: 61.25em) {
  body.show-admin-bar {
    padding-bottom: 50px;
  }
}

.admin-bar {
  display: none;
  background: #ddd;
  color: #333;
  font-size: 11px;
  font-size: 1.1rem;
  font-family: "bentonsans_book", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 10px 0px 5px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.admin-bar.dark-mode {
  background: #333;
  color: #ddd;
}
.admin-bar:not(.gr1) .admin-only-item {
  display: none;
}
.admin-bar .admin-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 46.25em) {
  .admin-bar .admin-wrapper .page-details {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 6px;
  }
}
@media all and (min-width: 61.25em) {
  .admin-bar .admin-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .admin-bar .admin-wrapper .page-details {
    text-align: left;
    border-bottom: none;
    margin-bottom: 0px;
  }
  .admin-bar .admin-wrapper .site-details {
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.admin-bar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.admin-bar .container > i {
  display: inline-block;
  height: 20px;
  width: 8.3333333333%;
  top: -30px;
  margin-bottom: -25px;
  position: relative;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: 10px;
  font-size: 1rem;
  font-style: normal;
  background: rgba(76, 151, 187, 0.2);
  border-left: 1px solid #000000;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.admin-bar .container > i:last-of-type {
  border-right: 1px solid #000000;
}
.admin-bar .container > i:nth-of-type(odd) {
  background: rgba(255, 147, 105, 0.3);
}
@media all and (max-width: 46.24em) {
  .admin-bar .container {
    display: none;
  }
}
.admin-bar:hover .container {
  opacity: 1;
}
.admin-bar strong {
  font-family: "bentonsans_book", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.admin-bar .item {
  display: inline-block;
  position: relative;
  padding: 1px 4px;
  border-radius: 5px;
  background: #CECECE;
  color: #000000;
  margin: 0 2px 5px;
  border: 3px solid #CECECE;
  font-size: 16px;
  font-size: 1.6rem;
}
.admin-bar .item .fa,
.admin-bar .item .status-dot {
  position: relative;
  top: 1px;
}
.admin-bar .item .fa + span {
  margin-left: 4px;
}
.admin-bar a.item {
  background: rgba(255, 255, 255, 0.9);
}
.admin-bar a.item:visited {
  color: #1D1D1B;
}
.admin-bar a.item:hover {
  text-decoration: none;
  color: #000000;
  border-color: #1D1D1B;
}
.admin-bar a.item:active, .admin-bar a.item:focus {
  text-decoration: none;
  color: #000000;
  border-color: #89C625;
}
.admin-bar .item-nav {
  list-style: none;
  clear: both;
  float: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  position: absolute;
  width: 150px;
  bottom: 40px;
  right: calc(-50% - 15px);
  background: #333333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}
.admin-bar .item-nav li {
  margin: 0;
  padding: 0;
}
.admin-bar .item-nav li {
  font-size: 12px;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 0;
  text-align: left;
}
.admin-bar .item-nav li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  line-height: 1.3;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0;
}
.admin-bar .item-nav li a .fa {
  color: #F9F15F;
}
.admin-bar .item-nav li a:hover {
  color: #89C625;
}
.admin-bar .item-nav li span {
  min-width: 20px;
  display: inline-block;
}
.admin-bar .item-nav li span.label {
  max-height: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 25px);
}
.admin-bar .item-nav li:last-of-type {
  border-bottom: 0;
}
.admin-bar .item-nav:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  right: calc(50% - 15px);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #333333;
}
.admin-bar .has-item-nav .item-nav {
  opacity: 0;
  bottom: 30px;
  z-index: -10;
  -webkit-transition: all 0.3s ease-in-out 0.2s;
  transition: all 0.3s ease-in-out 0.2s;
}
.admin-bar .has-item-nav:hover .item-nav {
  opacity: 1;
  bottom: 40px;
  z-index: 10;
  -webkit-transition: all 0.1s ease-in-out 0.2s;
  transition: all 0.1s ease-in-out 0.2s;
}
@media all and (max-width: 46.24em) {
  .admin-bar .min1, .admin-bar .min2 {
    display: none;
  }
}
@media all and (min-width: 46.25em) {
  .admin-bar {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .admin-bar span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media all and (max-width: 61.24em) {
  .admin-bar .min1 {
    display: inline-block;
  }
  .admin-bar .min2 {
    display: none;
  }
}
@media all and (max-width: 81.24em) {
  .admin-bar .min1 {
    display: inline-block;
  }
  .admin-bar .min2 {
    display: none;
  }
  .admin-bar a.item .fa {
    margin: 0 3px;
  }
  .admin-bar a.item .label {
    display: none;
  }
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  display: inline-block;
  margin: 0 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
}

.st-local,
.st-open {
  background-color: #89C625;
}

.st-dev,
.st-draft {
  background-color: #FFC416;
}

.st-past {
  background-color: #4c97bb;
}

.st-hidden {
  background-color: #000000;
}

.st-stage {
  background-color: #F9F15F;
}

.st-prod,
.st-closed {
  background-color: #e00719;
}

.edited-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid #CECECE;
  padding-top: 6px;
  padding-bottom: 8px;
  margin-bottom: 0;
}
.edited-list li:hover {
  background-color: #e8e8e8;
}
.edited-list li > * {
  width: 50%;
  padding-left: 10px;
}
.edited-list li.draft {
  opacity: 0.7;
}
.edited-list strong {
  width: 40%;
  text-overflow: ellipsis;
  white-space: pre;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.edited-list em {
  font-style: normal;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  width: 15%;
}
.edited-list .edit-this {
  width: 25%;
  text-overflow: ellipsis;
  white-space: pre;
  overflow: hidden;
}
.edited-list .date {
  width: 15%;
  font-size: 14px;
  font-size: 1.4rem;
}
.edited-list .count {
  width: 35px;
}
.edited-list .status-dot {
  margin-top: 5px;
  margin-right: 5px;
  width: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.seo-preview {
  width: 100%;
  max-width: 440px;
}
.seo-preview h2 {
  margin-bottom: 20px;
}
.seo-preview .preview-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.seo-preview .preview-title .fa {
  font-size: 14px;
  font-size: 1.4rem;
}
.seo-preview .preview-title strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.seo-preview .preview-title .icon-share {
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 3px 3px;
  font-family: Arial, Helvetica, sans-serif;
}
.seo-preview .preview-title a.icon-share {
  background: #eee;
  padding: 3px 6px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.seo-preview .preview-title a.icon-share:hover {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.seo-preview .clip {
  max-height: 1.3em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.seo-preview .preview {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 2px;
  margin: 0 0 20px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.seo-preview .preview:hover {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.seo-preview .title, .seo-preview .url, .seo-preview .description {
  display: inline-block;
  width: 100%;
  margin: 0 0 0px;
  line-height: 1.2;
  font-weight: 400;
  color: #000000;
}
.seo-preview .title {
  font-size: 18px;
  font-size: 1.8rem;
}
.seo-preview .description {
  line-height: 1.4;
}
.seo-preview .google-preview {
  font-family: Arial, Helvetica, sans-serif;
}
.seo-preview .google-preview .title {
  color: #1e0fbe;
  font-size: 18px;
  font-size: 1.8rem;
}
.seo-preview .google-preview .url {
  max-width: 586px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #006621;
}
.seo-preview .google-preview .description {
  color: #545454;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.6;
}
.seo-preview .twitter-preview,
.seo-preview .facebook-preview {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.3em;
  border: 1px solid #ccc;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}
.seo-preview .twitter-preview .image,
.seo-preview .facebook-preview .image {
  max-width: 438px;
  max-height: 220px;
  overflow: hidden;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.seo-preview .twitter-preview .image img,
.seo-preview .facebook-preview .image img {
  left: -999em;
  position: relative;
}
.seo-preview .twitter-preview .text,
.seo-preview .facebook-preview .text {
  padding: 15px;
  font-size: 14px;
  font-size: 1.4rem;
}
.seo-preview .twitter-preview .title,
.seo-preview .facebook-preview .title {
  font-weight: 700;
  margin: 0 0 5px;
}
.seo-preview .twitter-preview .description,
.seo-preview .facebook-preview .description {
  margin: 0 0 5px;
}
.seo-preview .twitter-preview .url,
.seo-preview .facebook-preview .url {
  color: #8899A6;
  margin: 0;
}
.seo-preview .facebook-preview {
  border-radius: 2px;
  border-color: #dadde1;
}
.seo-preview .facebook-preview .text {
  background: #f2f3f5;
}
.seo-preview .facebook-preview .title {
  font-size: 16px;
  font-size: 1.6rem;
  color: #1d2129;
}
.seo-preview .facebook-preview .description {
  font-size: 14px;
  font-size: 1.4rem;
  color: #606770;
}
.seo-preview .facebook-preview .url {
  color: #606770;
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
}
.seo-preview .meta-tags {
  font-family: "Roboto Mono", Monaco, Courier New, monospace;
  font-size: 12px;
  font-size: 1.2rem;
  background: #eee;
  padding: 10px;
}
.seo-preview .meta-tags > * {
  line-height: 1.6;
}
.seo-preview .meta-tags .title {
  font-size: 12px;
  font-size: 1.2rem;
}

.page-content.notification-page {
  padding-top: 0;
}

.notification-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.notification-bg .js-notification-slider,
.notification-bg .slick-list,
.notification-bg .slick-track {
  height: 100%;
}

section#debug {
  border-top: 1px solid #a1a1a1;
  background: #fff;
  width: 100%;
  max-width: none;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) inset;
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) inset;
  margin: 0;
}
section#debug .col-group {
  max-width: 1200px;
  margin: 10px auto;
}

.edit-this {
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
}
.edit-this a {
  font-size: 70%;
  background: #FAFAFA;
  color: #4c97bb;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 0 4px 1px;
  text-decoration: none;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.edit-this a:visited {
  color: #4c97bb;
}
.edit-this a:hover {
  text-decoration: none;
  color: #000000;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0);
}

h1 .edit-this {
  margin: 0 10px;
}

.alt-dev {
  font-size: 12px;
  font-size: 1.2rem;
  background: #e8e8e8;
  padding: 0px 4px;
  border: 1px solid #b1b1b1;
  border-radius: 3px;
  overflow: hidden;
  color: #1D1D1B;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.alt-dev:hover {
  border-color: #1D1D1B;
}
.alt-dev .s-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: calc(100% - 34px);
  margin-right: 2px;
}
.alt-dev .s-text > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.alt-dev .s-text .fa,
.alt-dev .s-text .channel {
  margin-right: 4px;
}
.alt-dev .s-text .entry-title {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-right: 2px;
}
.alt-dev .s-link {
  width: 28px;
}
.alt-dev .entry-title {
  white-space: nowrap;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  text-overflow: ellipsis;
}
.alt-dev .fa-check {
  color: #89C625;
}
.alt-dev .fa-pencil {
  color: #1D1D1B;
}
.alt-dev .fa-times {
  color: #e00719;
}
.alt-dev a {
  background: #b1b1b1;
  color: #000000 !important;
  padding: 2px 4px;
  border: none;
  margin: 0 -4px 0 0px;
}
.alt-dev a:hover {
  color: #F9F15F !important;
  background: #000000;
}

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, a, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, figure, footer, header, hgroup, nav, section {
  display: block;
}

html {
  background: #fff;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: white;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: transparent;
  font-family: "bentonsans_book", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4em;
  color: #1D1D1B;
  overflow-x: hidden;
}
.hidden,
.screen-reader {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media all and (max-width: 46.24em) {
  .hide-mobile {
    display: none !important;
  }
}

@media all and (min-width: 46.25em) {
  .mobile-only {
    display: none !important;
  }
}

.clip {
  overflow: hidden;
}

.row {
  width: 100%;
  padding: 0;
  margin: 0;
  padding: 0px;
  position: relative;
}
.row.clip {
  overflow: hidden;
}
.row.first-row {
  padding-top: 50px;
}
.row.has-black-top-edge {
  position: relative;
}
.row.has-black-top-edge:before {
  width: 100%;
  height: 34vw;
  content: "";
  top: 0;
  left: 0;
  z-index: 0;
  background: #000000;
  position: absolute;
}
@media all and (min-width: 31.25em) {
  .row.has-black-top-edge:before {
    height: 17vw;
  }
}
@media all and (min-width: 46.25em) {
  .row.has-black-top-edge:before {
    height: 12vw;
  }
  .row.first-row {
    padding-top: 60px;
  }
  .row.browser-height {
    min-height: 80vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .row.browser-height.v-100 {
    min-height: 100vh;
  }
  .row.mid-height {
    min-height: 50vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .row.mid-height .container {
    padding-top: 40px;
  }
}
@media all and (min-width: 61.25em) {
  .row.first-row {
    padding-top: 70px;
  }
}
@media all and (min-width: 81.25em) {
  .row.first-row {
    padding-top: 70px;
  }
}

.container {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  max-width: 1400px;
}
@media all and (max-width: 46.24em) {
  .container {
    overflow-x: hidden;
  }
}
@media all and (min-width: 46.25em) {
  .container {
    padding: 5px 20px;
  }
}
@media all and (min-width: 61.25em) {
  .container {
    padding: 10px 30px;
  }
  .container.v-vpad {
    padding: 70px 30px 35px;
  }
}
@media all and (min-width: 81.25em) {
  .container {
    padding: 15px 40px;
  }
  .container.v-vpad {
    padding: 80px 40px 45px;
  }
}

.page {
  min-height: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page .page-header,
.page .page-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page .page-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media all and (max-width: 46.24em) {
  .page {
    padding-top: 50px;
  }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0;
  line-height: 1.1em;
  font-family: "bentonsans_medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: inherit;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}

h1 small, h2 small {
  font-weight: normal;
  color: #CECECE;
}

h1, .h1 {
  margin-bottom: 0.28em;
  font-size: 24px;
  font-size: 2.4rem;
}
@media all and (min-width: 61.25em) {
  h1, .h1 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

h2, .h2 {
  margin-bottom: 0.35em;
  font-size: 20px;
  font-size: 2rem;
}
@media all and (min-width: 61.25em) {
  h2, .h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

h3, .h3 {
  margin-bottom: 0.4666666667em;
  font-size: 20px;
  font-size: 2rem;
}
@media all and (min-width: 61.25em) {
  h3, .h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

h4, .h4 {
  margin-bottom: 0.7em;
  font-size: 20px;
  font-size: 2rem;
}
@media all and (min-width: 61.25em) {
  h4, .h4 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

h5, .h5 {
  font-size: 19px;
  font-size: 1.9rem;
  margin-bottom: 0.7em;
}

h6, .h6 {
  margin-bottom: 0.7em;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

p, ol, ul, li, dl, address, th, td, a {
  margin-bottom: 1.4em;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4em;
}
p a, ol a, ul a, li a, dl a, address a, th a, td a, a a {
  text-decoration: none;
}
p strong, ol strong, ul strong, li strong, dl strong, address strong, th strong, td strong, a strong {
  font-family: "bentonsans_medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media all and (min-width: 61.25em) {
  p, ol, ul, li, dl, address, th, td, a {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.l-blog-content p a, .l-blog-content ol a, .l-blog-content ul a, .l-blog-content li a, .l-blog-content dl a, .l-blog-content address a, .l-blog-content th a, .l-blog-content td a, .l-blog-content a a {
  text-decoration: underline;
}

.small p {
  font-size: 0.8em;
}

hr {
  display: block;
  margin: 1em 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #a1a1a1;
  border-bottom: 1px solid #fff;
  width: 100%;
  clear: both;
}

ul, ol {
  margin: 0 0 1.4em 0;
  padding: 0 0 0 20px;
}
ul li, ol li {
  margin: 0;
}

blockquote {
  font-family: "bentonsans_book", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
}

q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

cite {
  font-style: normal;
}

dl,
dd {
  margin-bottom: 20px;
}

dt {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 80%;
}

.dl-horizontal dt {
  float: left;
  clear: left;
  width: 18%;
  text-align: right;
}
.dl-horizontal dd {
  margin-left: 20%;
}

abbr[title] {
  border-bottom: 1px dotted #a1a1a1;
  cursor: help;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

ins {
  background-color: white;
  color: #1D1D1B;
  text-decoration: none;
}

mark {
  background-color: white;
  color: #1D1D1B;
  font-style: italic;
  font-weight: 700;
}

pre,
code,
kbd,
samp {
  font-family: "Roboto Mono", Monaco, Courier New, monospace;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4em;
  margin: 0 0 20px;
  display: inline-block;
  padding: 10px;
  background: #FAFAFA;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

sub,
sup {
  position: relative;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

a,
.link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:visited,
.link:visited {
  color: inherit;
}
a:hover,
.link:hover {
  text-decoration: none;
  color: #7564FF;
}
a:focus,
.link:focus {
  outline: 0;
  color: inherit;
}
a:hover, a:active,
.link:hover,
.link:active {
  outline: 0;
}

a:focus-visible,
.link:focus-visible,
button:focus-visible {
  outline: 3px solid #000000;
  background: #F9F15F !important;
  color: #000000 !important;
}

.button {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  padding: 5px 15px 5px;
  margin-bottom: 0.3em;
  font-weight: 400;
  font-family: "bentonsans_book", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #7564FF;
  border: 1px solid #7564FF;
  border-radius: 100px;
  cursor: pointer;
  *margin-left: 0.3em;
  text-decoration: none;
}
.button:visited {
  color: #fff;
  background: #7564FF;
  text-decoration: none;
}
.button:hover {
  color: #fff;
  background: #000000;
  border-color: #000000;
  text-decoration: none;
}
.button:focus, .button:focus-visible {
  border-color: #000000;
  outline: 4px solid #000000;
  background-color: #ffe32b;
  color: #000000;
}
.button .arrow {
  bottom: -2px;
  position: relative;
  margin-left: 3px;
}
.button.tag {
  margin-right: 10px;
}
@media all and (min-width: 61.25em) {
  .button {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.button:first-child {
  *margin-left: 0;
}

.disabled-button {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  cursor: default;
}

.error-button {
  color: #fff;
}
.error-button:visited, .error-button:hover {
  color: #fff;
}

.ghost-button {
  background: transparent;
  color: #1D1D1B;
}
.ghost-button:visited, .ghost-button:link {
  color: #1D1D1B;
  border-color: #a1a1a1;
}
.ghost-button:hover {
  color: #fff;
  border-color: #000000;
}

.primary-button {
  background-color: #4c97bb;
  color: #fff;
}

.secondary-button {
  background-color: #1D1D1B;
}

.success-button {
  background-color: #89C625;
}

.warning-button {
  background-color: #ff962b;
}

.mini-button {
  padding: 3px 5px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 14px;
}

.small-button {
  padding: 6px 10px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 16px;
}

.large-button {
  padding: 11px 22px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: normal;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.extlarge-button {
  padding: 11px 22px;
  font-size: 21px;
  font-size: 2.1rem;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.button-group {
  position: relative;
  *zoom: 1;
  *margin-left: 0.3em;
  margin-bottom: 1.4em;
}
.button-group .button {
  position: relative;
  float: left;
  margin-left: -1px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.button-group .button:first-child {
  margin-left: 0;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.button-group .button:last-child {
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.button-group .button.large:first-child {
  margin-left: 0;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 4px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.button-group .button.large:last-child {
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.button-toolbar {
  clear: both;
  margin-top: 0.7em;
  margin-bottom: 0.7em;
}
.button-toolbar .button-group {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.arrow {
  width: 18px;
  height: 18px;
  display: inline-block;
  text-indent: -999em;
  background: transparent url("/_assets/svg/arrow-black-up-right.svg") 50% 50% no-repeat;
  background-size: contain;
}
.arrow.v-white {
  background-image: url("/_assets/svg/arrow-white-up-right.svg");
}
a:hover .arrow.v-purple-hover {
  background-image: url("/_assets/svg/arrow-purple-up-right.svg");
}
.selected .arrow.v-purple-hover {
  background-image: url("/_assets/svg/arrow-purple-up-right.svg");
}
.arrow.v-purple {
  background-image: url("/_assets/svg/arrow-purple-up-right.svg");
}
.arrow.v-down {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.arrow.v-large {
  width: 36px;
  height: 36px;
}
.arrow.v-med {
  width: 24px;
  height: 24px;
}
.arrow.v-small {
  width: 15px;
  height: 15px;
}

.icon {
  display: inline-block;
  vertical-align: top;
  width: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: #fff;
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  background-image: url(/_assets/img/arrow-blue.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.icon.arrow-icon {
  background-image: url(/_assets/img/arrow-blue.svg);
}
.icon.arrow-icon.dark-icon {
  background-image: url(/_assets/img/arrow-dark.svg);
}
.icon.arrow-icon.white-icon, .icon.arrow-icon.light-icon {
  background-image: url(/_assets/img/arrow-white.svg);
}
.icon.arrow-icon.yellow-icon {
  background-image: url(/_assets/img/arrow-yellow.svg);
}
.icon.open-close-icon {
  background-image: url(/_assets/img/open-close-icon.png);
}
.icon.open-close-icon.is-open {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.badge {
  background: #fff;
  border-radius: 20px;
  display: inline-block;
  vertical-align: top;
  width: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  font-size: 12px;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  padding: 0px 0px;
  text-align: center;
  margin: 0px 4px;
  width: 24px;
  height: 24px;
}

.gfc {
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 1000px;
  position: absolute;
  z-index: 0;
}
.gfc.gfc-small {
  width: 100px;
  height: 100px;
}
.gfc.gfc-large {
  width: 200px;
  height: 200px;
}
.gfc.circle {
  background-image: url(/_assets/img/single-mark.png);
  background-size: cover;
}

.gfc-t {
  top: -100px;
  left: 45%;
}

form {
  margin: 0 0 1.4em 0;
}
form fieldset {
  margin-bottom: 1.4em;
  padding: 0;
  border-width: 0;
}
form legend {
  display: block;
  width: 100%;
  margin-bottom: 2.8em;
  *margin-left: -7px;
  padding: 0;
  color: #1D1D1B;
  border: 0;
  border-bottom: 1px solid #e0edf3;
  white-space: normal;
}
form legend small {
  font-size: 14px;
  font-size: 1.4rem;
  color: #CECECE;
}
form p {
  margin-bottom: 0.7em;
}
form br {
  display: none;
}

label,
input,
button,
select,
textarea {
  font-size: 14px;
  font-size: 1.4rem;
  vertical-align: baseline;
  *vertical-align: middle;
}

input,
button,
select,
textarea {
  font-family: "bentonsans_book", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

label {
  display: block;
  margin-bottom: 0.175em;
  font-weight: bold;
  color: #1D1D1B;
  cursor: pointer;
}
label input,
label textarea,
label select {
  display: block;
}

input,
textarea,
select {
  display: inline-block;
  width: 100%;
  padding: 4px;
  margin-bottom: 0.35em;
  background-color: #fff;
  border: 1px solid #e0edf3;
  color: #1D1D1B;
}
input:hover,
textarea:hover,
select:hover {
  border-color: #96c2d7;
}

::-webkit-input-placeholder {
  font-size: 14px;
  font-size: 1.4rem;
}

input:-moz-placeholder {
  font-size: 14px;
  font-size: 1.4rem;
}

input[type=image],
input[type=checkbox],
input[type=radio] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 0;
  *margin-top: 0;
  line-height: normal;
  cursor: pointer;
  border-radius: 0;
  border: 0 \9 ;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}

input[type=image] {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=file] {
  width: auto;
  padding: initial;
  line-height: initial;
  border: initial;
  background-color: transparent;
  background-color: initial;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=button],
input[type=reset],
input[type=submit] {
  width: auto;
  height: auto;
  cursor: pointer;
  *overflow: visible;
}

select,
input[type=file] {
  height: 28px;
  *margin-top: 4px;
  line-height: 28px;
}

select {
  width: auto;
  background-color: #fff;
  font-size: 13px;
  font-size: 1.3rem;
}

select[multiple],
select[size] {
  height: auto;
}

textarea {
  resize: vertical;
  overflow: auto;
  height: auto;
  overflow: auto;
  vertical-align: top;
}

input[type=hidden] {
  display: none;
}

.radio,
.checkbox {
  padding-left: 18px;
  font-weight: normal;
}

.radio input[type=radio],
.checkbox input[type=checkbox] {
  float: left;
  margin-left: -18px;
}

.radio.inline,
.checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}

.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  cursor: not-allowed;
}

input:focus,
textarea:focus {
  border-color: #e0edf3;
  outline: 0;
  outline: thin dotted \9 ;
}

input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus,
select:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.help-block,
.help-inline {
  color: #a1a1a1;
}

.help-block {
  display: block;
  margin-bottom: 0.7em;
}

.help-inline {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}

.form-inline input,
.form-inline textarea,
.form-inline select {
  display: inline-block;
  margin-bottom: 0;
}

.form-inline label {
  display: inline-block;
}

.form-inline .radio,
.form-inline .checkbox,
.form-inline .radio {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

.form-inline .radio input[type=radio],
.form-inline .checkbox input[type=checkbox] {
  float: left;
  margin-left: 0;
  margin-right: 3px;
}

.form-search input,
.form-search textarea,
.form-search select {
  display: inline-block;
  margin-bottom: 0;
}

.form-search .search-query {
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 0;
  border-radius: 14px;
}

.form-search label {
  display: inline-block;
}

.form-search .radio,
.form-search .checkbox,
.form-inline .radio {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

.form-search .radio input[type=radio],
.form-search .checkbox input[type=checkbox] {
  float: left;
  margin-left: 0;
  margin-right: 3px;
}

.list-bordered {
  list-style-type: none;
  margin: 0 0 1.4em 0;
  padding: 0;
}
.list-bordered li {
  margin-bottom: 0.35em;
  padding-bottom: 0.35em;
  border-bottom: 1px dashed #a1a1a1;
}
.list-bordered li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
}

.link-list {
  list-style: none;
  clear: both;
  float: none;
  margin: 0 0 1.4em 0;
  padding: 0;
}
.link-list li {
  margin: 0;
  padding: 0;
}
.link-list li {
  margin-bottom: 5px;
}
.link-list .fa {
  margin: 0 5px 0 0;
}
.secondary-content .link-list {
  margin-top: 30px;
}

img {
  max-width: 100%;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}
img.invert {
  -webkit-filter: invert(1);
          filter: invert(1);
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin-bottom: 20px;
}
figure img {
  margin-bottom: 0;
}
figure figcaption {
  display: block;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
  color: #1D1D1B;
  padding: 5px 0;
}
figure.video {
  width: 100%;
  height: 0;
  position: relative;
  padding: 0 0 56.6%;
  margin-bottom: 50px;
}
figure.video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}
figure.video figcaption {
  position: absolute;
  bottom: -30px;
}
figure.quote {
  background: #FAFAFA;
  padding: 20px;
}
figure.quote blockquote {
  margin: 0 0 5px;
}
figure.quote blockquote p:last-of-type {
  margin-bottom: 0;
}
figure.quote cite {
  display: block;
}
@media all and (min-width: 46.25em) {
  figure.image.left {
    width: 50%;
    float: left;
    margin: 0 20px 20px 0;
  }
  figure.image.right {
    width: 50%;
    float: right;
    margin: 0 0 20px 20px;
  }
}

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.4em;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent;
}
table th,
table td {
  padding: 8px;
  vertical-align: top;
  border-top: 1px solid #e0edf3;
  line-height: 1.4em;
  text-align: left;
}
table th {
  font-weight: bold;
}
table thead, table th {
  vertical-align: bottom;
}
table thead td, table th td {
  font-weight: bold;
}
table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
  border-top: 0;
}
table tbody + tbody {
  border-top: 2px solid #e0edf3;
}
table tbody tr td,
table tbody tr th {
  -webkit-transition: background-color 0.25s 0s linear;
  transition: background-color 0.25s 0s linear;
}
table tbody tr:hover td,
table tbody tr:hover th {
  background-color: white;
}

.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}

.table-bordered {
  border: 1px solid #e0edf3;
  border-left: 0;
  border-collapse: separate;
  *border-collapse: collapsed;
}
.table-bordered th,
.table-bordered td {
  border-left: 1px solid #e0edf3;
}
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}

.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
  background-color: white;
}

.bordered {
  border-top: 1px solid #CECECE;
  padding-top: 15px;
}

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

.m-body-text p, .m-body-text li,
.m-intro-text p,
.m-intro-text li {
  max-width: 900px;
}
.m-body-text p a, .m-body-text li a,
.m-intro-text p a,
.m-intro-text li a {
  font-size: inherit;
  text-decoration: underline;
}
a.tag-link {
  background: #7564FF;
  display: inline-block;
  color: #000000;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  border: 1px solid #a1a1a1;
  border-radius: 100px;
  padding: 5px 15px 5px;
  margin: 0 3px 5px 0;
}
a.tag-link span {
  color: #000000;
}
a.tag-link:hover {
  background-color: #000000;
}
a.tag-link:hover span {
  color: #fff;
}
@media all and (min-width: 61.25em) {
  a.tag-link {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

a.inline-link {
  padding: 3px 0px;
}
a.inline-link .fa {
  margin-left: 7px;
  font-size: 20px;
  font-size: 2rem;
}

.m-title-folder-top {
  position: absolute;
  top: -60px;
  min-height: 60px;
  padding: 15px 20px;
  background: #000;
  border-radius: 15px 15px 0 0;
  color: #fff;
  width: calc(100% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.m-title-folder-top * {
  color: inherit;
  margin: 0 0 -10px;
  line-height: 30px;
}
.m-title-folder-top .arrow {
  margin-left: 40px;
}
@media all and (min-width: 61.25em) {
  .m-title-folder-top {
    width: calc(100% - 60px);
  }
}
@media all and (max-width: 46.24em) {
  .m-title-folder-top {
    position: relative;
    top: -10px;
    width: 100%;
    border-radius: 0 0 15px 15px;
  }
  .m-title-folder-top * {
    color: inherit;
    margin: 0 0 0px;
  }
}

.page-preview .mini-container {
  padding-bottom: 40px;
  position: relative;
  height: 100%;
  width: 100%;
}
.page-preview .box-subtitle h3 {
  font-size: 28px;
  font-size: 2.8rem;
  font-family: "bentonsans_medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.page-preview p {
  font-size: 20px;
  font-size: 2rem;
}
.page-preview .box-subtitle span {
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.page-preview .footer-link {
  display: inline-block;
  height: 40px;
  width: 100%;
  line-height: 40px;
  position: relative;
  padding-right: 50px;
  margin-bottom: 0px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.page-preview .footer-link .icon {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0px 0px 0px;
}

.form {
  background: #FAFAFA;
  border: 1px solid #a1a1a1;
  padding: 20px;
}
.form .form-control,
.form .form-panel {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 0 0 10px 0;
}
.form .form-panel {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 20px;
  border: 1px solid #CECECE;
  background: white;
}
.form label input:focus-visible {
  border-color: #000000;
  outline: 4px solid #000000;
}
.form .field {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 10px 10px;
  border: 1px solid #CECECE;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.form .field:hover {
  border-color: #a1a1a1;
}
.form .field:focus {
  border-color: #a1a1a1;
}
.form .field:focus-visible {
  border-color: #000000;
  outline: 4px solid #000000;
}
.form textarea {
  min-height: 150px;
}
.form .checkbox {
  display: inline-block;
  vertical-align: top;
  width: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 5px 5px 0 0;
}
.form .radio {
  display: inline-block;
  vertical-align: top;
  width: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 5px 5px 0 0;
}
.form .req {
  color: #FF6373;
}
.form .inset-right {
  width: calc(100% - 53px);
}
.form .show-password-icon {
  width: 52px;
  display: inline-block;
  padding: 3px;
  margin: 0 0 0 -4px;
  border: 1px solid #e8e8e8;
  background-color: #e8e8e8;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.form .show-password-icon input {
  display: none;
}
.form .show-password-icon .fa {
  font-size: 20px;
  font-size: 2rem;
  padding: 10px;
}
.form .show-password-icon .fa-eye-slash {
  display: none;
}
.form .show-password-icon.show-password .fa-eye {
  display: none;
}
.form .show-password-icon.show-password .fa-eye-slash {
  display: inline-block;
}
.form .show-password-icon:hover {
  background: #CECECE;
  border-color: #CECECE;
  color: #000000;
}
.form .radio-control,
.form .checkbox-control {
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
.form .radio-control input.radio,
.form .radio-control input.checkbox,
.form .checkbox-control input.radio,
.form .checkbox-control input.checkbox {
  display: none;
  display: inline-block;
}
.form .radio-control.selected,
.form .checkbox-control.selected {
  color: #0DC3CC;
}
.form .select-container {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: #fff;
  color: #1D1D1B;
  border: 1px solid #CECECE;
}
.form .select-container select, .form .select-container .select, .form .select-container option {
  border: none;
  color: #1D1D1B;
  position: relative;
  padding: 5px 10px;
  margin: 0;
  height: 37px;
  z-index: 1;
  -webkit-appearance: none;
}
.form .select-container:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 10;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #404040;
}
.form .additional-content-container {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.form .additional-content-container .additional-content-text {
  display: block;
  max-height: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.form .additional-content-container.show-text .additional-content-text {
  max-height: 1000px;
}
.form.clean-form .submit {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  pointer-events: all;
}
.form.clean-form .submit.button-disabled {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  color: #1D1D1B;
}
.form.clean-form .submit.button-disabled:before {
  background-color: #c7c7c7;
}

.login-form {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  margin: 40px 0 40px;
  max-width: 600px;
  margin-top: 20px;
  padding: 20px 20px 20px;
  color: #1D1D1B;
  background: #eee;
}
.login-form .title {
  padding: 0;
}
.login-form .form-control {
  margin: 20px 0;
  display: block;
}
.login-form label {
  color: #1D1D1B;
  padding: 0;
}
.login-form .field, .login-form .btn {
  font-size: 20px;
  font-size: 2rem;
  padding: 10px;
}
.login-form .checkbox {
  display: inline-block;
}
.login-form .btn {
  background: #4c97bb;
  color: #fff;
  padding: 10px 30px;
  margin-right: 10px;
  border: none;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.login-form .btn:hover {
  background: #000000;
}
.login-form.site-live.env-local .btn.submit, .login-form.site-live.env-stage .btn.submit {
  background: #FF6373;
  cursor: not-allowed;
}

.valign-bottom > * {
  display: inline-block;
  vertical-align: bottom;
}
html.flexbox .valign-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.valign-middle > * {
  display: inline-block;
  vertical-align: middle;
}
html.flexbox .valign-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html.flexbox .valign-middle > * {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.lity {
  background: rgba(0, 0, 0, 0.6);
}
.lity.lity-opened .lity-close {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out 0.6s;
  transition: all 0.3s ease-in-out 0.6s;
}

.lity-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
}

.lity-close {
  position: absolute;
  color: #4c97bb;
  text-shadow: none;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  background: transparent url(/_assets/img/open-close-icon.png) center center no-repeat;
  background-size: cover;
  text-indent: -9999em;
  width: 28px;
  height: 28px;
  top: 6px;
  right: 6px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.lity-close:hover {
  color: #FF9369;
  text-shadow: none;
  background: transparent url(/_assets/img/open-close-icon.png) center center no-repeat;
  background-size: cover;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.m-featured-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
.m-featured-blocks .tile {
  width: 100%;
  background: transparent;
}
.m-featured-blocks .tile .tile-top {
  padding-bottom: 60%;
}
.m-featured-blocks .tile .tile-mid,
.m-featured-blocks .tile .tile-bottom {
  padding: 0;
}
@media all and (min-width: 40.625em) {
  .m-featured-blocks .tile {
    width: 50%;
  }
  .m-featured-blocks .tile .tile-mid,
  .m-featured-blocks .tile .tile-bottom {
    padding-right: 20px;
  }
}
@media all and (min-width: 61.25em) {
  .m-featured-blocks .tile {
    width: 50%;
  }
  .m-featured-blocks .tile .image-wrapper,
  .m-featured-blocks .tile .tile-mid,
  .m-featured-blocks .tile .tile-bottom {
    padding-right: 10%;
  }
}

.m-tile-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-tile-grid .tile {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 0px;
}
.m-tile-grid.v-platform-view .tile-top img {
  max-width: 40%;
}
.m-tile-grid.v-platform-view .tile-mid {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
@media all and (max-width: 31.25em) {
  .m-tile-grid .tile {
    margin-bottom: 20px;
    background: #fff;
  }
}
@media all and (min-width: 31.25em) {
  .m-tile-grid {
    padding: 0 0px;
    margin: 0 10px;
  }
  .m-tile-grid .tile {
    width: calc(50% - 20px);
    margin: 10px;
    border-radius: 10px;
  }
  .m-tile-grid .tile .tile-mid,
  .m-tile-grid .tile .tile-bottom {
    padding-left: 0;
  }
}
@media all and (min-width: 46.25em) {
  .m-tile-grid {
    margin: 0 -15px;
  }
  .m-tile-grid .tile {
    width: calc(33.333% - 20px);
  }
}
@media all and (min-width: 61.25em) {
  .m-tile-grid .tile {
    margin: 15px;
    width: calc(33.333% - 30px);
  }
}
@media all and (min-width: 81.25em) {
  .m-tile-grid {
    margin: 0 -10px;
  }
}

.m-config-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-config-grid .tile {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 0px;
}
.m-config-grid .tile .tile-mid,
.m-config-grid .tile .tile-bottom {
  padding-left: 0;
  padding-right: 0;
}
.m-config-grid .tile .v-additional-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.m-config-grid .tile:target {
  outline: 10px solid #f2f2f2;
  background: #f2f2f2;
  border-radius: 15px;
}
@media all and (min-width: 46.25em) {
  .m-config-grid .tile {
    width: calc(50% - 20px);
  }
}
@media all and (min-width: 61.25em) {
  .m-config-grid .tile {
    width: calc(33.333% - 20px);
  }
}

.m-benefits-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-benefits-grid .tile {
  width: 100%;
  max-width: calc(50% - 10px);
  margin: 0 0px 20px 0;
  border: 1px solid #1D1D1B;
  border-radius: 15px 15px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.m-benefits-grid .tile .tile-top {
  border: none;
  border-bottom: 1px solid #1D1D1B;
}
.m-benefits-grid .tile .tile-top.fixed-height {
  padding-bottom: calc(110% - 40px);
}
.m-benefits-grid .tile .tile-mid {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-family: "bentonsans_medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 15px 20px;
}
@media all and (min-width: 37.5em) {
  .m-benefits-grid .tile {
    max-width: calc(33.333% - 20px);
    margin: 0 20px 20px 0;
  }
}
.m-general-benefits-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -40px;
}
.m-general-benefits-grid .tile {
  width: calc(100% - 20px);
  margin: 0 10px 20px;
}
.m-general-benefits-grid .tile .tile-top {
  border: none;
  padding: 40px;
  text-align: center;
}
.m-general-benefits-grid .tile .tile-top.fixed-height {
  padding-bottom: calc(110% - 40px);
}
.m-general-benefits-grid .tile .tile-mid p {
  margin-bottom: 10px;
}
.m-general-benefits-grid .tile ul {
  list-style: none;
  clear: both;
  float: none;
  margin: 0 0 1.4em 0;
  padding: 0;
}
.m-general-benefits-grid .tile ul li {
  margin: 0;
  padding: 0;
}
@media all and (min-width: 37.5em) {
  .m-general-benefits-grid {
    margin: 0 -10px;
  }
  .m-general-benefits-grid .tile {
    width: calc(50% - 20px);
  }
  .m-general-benefits-grid .tile .tile-mid {
    padding: 20px 0;
  }
}
@media all and (min-width: 46.25em) {
  .m-general-benefits-grid {
    margin: 0 0;
  }
  .m-general-benefits-grid .tile {
    width: calc(25% - 20px);
  }
}
@media all and (min-width: 62.5em) {
  .m-general-benefits-grid {
    margin: 0 -15px;
  }
  .m-general-benefits-grid .tile {
    width: calc(25% - 30px);
    margin: 0 15px 20px;
  }
}

.grid {
  list-style: none;
  clear: both;
  float: none;
  margin: 0 0 20px;
  padding: 0;
  padding: 1px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.grid li {
  margin: 0;
  padding: 0;
}
.grid li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 0 0 20px;
  padding: 10px;
}
.grid a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #1D1D1B;
  text-decoration: none;
  background: #FAFAFA;
}
.grid a:hover {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.grid img {
  margin: 0 0 10px;
}
@media all and (min-width: 46.25em) {
  .grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin: 10px -10px 10px;
    padding-bottom: 20px;
  }
  .grid li {
    margin: 0;
  }
}
@media all and (min-width: 61.25em) {
  .grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid li {
    margin-bottom: 20px;
  }
}

@media all and (min-width: 61.25em) {
  .set-cols.has-max-2-cols {
    margin: 0 -10px 20px;
  }
  .set-cols.has-max-2-cols li {
    width: calc(49.7% - 20px);
    margin: 10px;
  }
}
@media all and (min-width: 46.25em) {
  .set-cols.has-max-3-cols {
    margin: 0 -10px 20px;
  }
  .set-cols.has-max-3-cols li {
    width: calc(49.5% - 20px);
    margin: 10px;
  }
}
@media all and (min-width: 61.25em) {
  .set-cols.has-max-3-cols li {
    width: calc(32.5% - 20px);
  }
}
@media all and (min-width: 46.25em) {
  .set-cols.has-max-4-cols {
    margin: 0 -10px 20px;
  }
  .set-cols.has-max-4-cols li {
    width: calc(49.5% - 20px);
    margin: 10px;
  }
}
@media all and (min-width: 61.25em) {
  .set-cols.has-max-4-cols li {
    width: calc(33% - 20px);
  }
}
@media all and (min-width: 81.25em) {
  .set-cols.has-max-4-cols li {
    width: calc(24.5% - 20px);
  }
}

.m-slider .slide {
  padding: 0px 0;
  height: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.m-slider .slide .image-bg {
  height: 50%;
  width: 100%;
  position: absolute;
  top: 10%;
  top: 0%;
  left: 0;
  z-index: 0;
}
.m-slider .slide .lottie-container {
  margin-top: 40px;
}
.m-slider .slide .lottie-container svg {
  width: 100%;
  max-width: 600px;
}
.m-slider .slide .image-container img {
  width: 100%;
  max-width: 500px;
}
.m-slider .slide .slide-text {
  padding: 20px 0;
  width: 100%;
  max-width: 700px;
}
.m-slider .slide .slide-text p {
  margin: 0;
  font-weight: 400;
  font-family: "bentonsans_book", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.m-slider .slide.slide-layout-standard .slide-container.pre-text {
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.m-slider .slide .offset-right,
.m-slider .slide .offset-left {
  position: relative;
}
.m-slider .slide .offset-right {
  right: -10%;
}
.m-slider .slide .offset-left {
  left: -10%;
}
.m-slider .slide .offset-right.offset-left {
  width: 120%;
  max-width: none;
  margin-top: 30px;
  margin-bottom: 30px;
}
.m-slider .slide.slick-slide .slide-text {
  opacity: 0;
  position: relative;
  -webkit-transition: all 0.6s ease-in-out 0.6s;
  transition: all 0.6s ease-in-out 0.6s;
}
.m-slider .slide.slick-slide .pre-text .slide-text {
  opacity: 1 !important;
}
.m-slider .slide.slick-slide.slick-active .slide-text {
  opacity: 1;
}
.m-slider .slide.v-layout-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.m-slider .slide.v-layout-home img {
  width: 100%;
}
.m-slider .slide.slide-layout-cases .image-bg {
  background-size: contain;
  top: 60px;
}
.m-slider .slide.slide-layout-standard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.m-slider .slide.slide-layout-standard .image-bg {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-size: contain;
  position: relative;
  margin: 0px 50px;
  width: calc(100% - 100px);
  height: auto;
  padding-bottom: 60%;
  margin-top: 40px;
}
.m-slider .slide.slide-layout-standard .slide-container {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.m-slider .slide.slide-layout-standard .slide-container.pre-text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-bottom: 0;
}
.m-slider .slide.slide-layout-standard .slide-text {
  text-align: center;
  margin: 0px auto 0px;
  padding: 1px 20px 80px;
}
.m-slider .slide.v-layout-uc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.m-slider.v-min-height {
  min-height: 40vh;
  height: auto;
}
@media all and (min-width: 46.25em) {
  .m-slider .slide .image-bg {
    height: 70%;
  }
  .m-slider .slide.slide-layout-home-3 .image-bg {
    background-size: contain;
    width: 80%;
    left: 10%;
  }
  .m-slider .slide.slide-layout-standard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .m-slider .slide.slide-layout-standard > div {
    width: 45%;
  }
  .m-slider .slide.slide-layout-standard .slide-text {
    padding: 1px 20px 30px;
    text-align: left;
  }
  .m-slider .slide.slide-layout-cases .image-bg {
    top: 100px;
    height: 60%;
    background-size: contain;
    width: 60%;
    left: 40%;
  }
}
@media all and (min-width: 61.25em) {
  .m-slider .slide .image-bg {
    height: 100%;
  }
  .m-slider .slide .offset-right.offset-left {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .m-slider .slide .slide-text {
    padding: 30px 0;
  }
  .m-slider .slide.slide-layout-standard .slide-text {
    padding: 1px 20px 60px;
  }
  .m-slider .slide.slide-layout-standard .pre-text .slide-text {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-bottom: 0;
  }
  .m-slider .slide.slide-layout-home-2 .slide-text {
    width: 36%;
  }
}

.m-tile-scroller {
  width: 100%;
  overflow-x: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-top: 10px;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 30px;
}
.m-tile-scroller::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.m-tile-scroller::-webkit-scrollbar-track {
  background: #a1a1a1;
}
.m-tile-scroller::-webkit-scrollbar-thumb {
  background-color: #7564FF;
}
.m-tile-scroller .tile {
  max-width: 440px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.m-tile-scroller .tile:last-of-type {
  margin-right: 0px;
}
.m-tile-scroller.v-compact-grid .tile {
  min-width: 260px;
}

.m-tile-slider {
  padding-top: 60px;
  position: relative;
}
.m-tile-slider .slick-list {
  margin: 0 -20px;
}
.m-tile-slider .slick-arrow {
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
}
.m-tile-slider .slick-arrow.slick-prev {
  right: 60px;
}
.m-tile-slider .slick-arrow.slick-next {
  right: 0px;
}
@media all and (max-width: 37.49em) {
  .m-tile-slider .slick-arrow {
    position: absolute;
    top: calc(50% - 25px);
    z-index: 100;
    height: 50px;
    width: 50px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    border: 1px solid #CECECE;
    text-align: center;
  }
  .m-tile-slider .slick-arrow.slick-prev {
    left: -15px;
    right: auto;
  }
  .m-tile-slider .slick-arrow.slick-next {
    right: -15px;
  }
  .m-tile-slider .slick-arrow img {
    width: 26px;
    height: 26px;
  }
}
.m-tile-slider.v-main-grid .slide {
  padding: 0 10px;
}
.m-tile-slider.v-main-grid .tile {
  color: #1D1D1B;
  margin: 0 0 10px;
}
.m-tile-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.m-tile-slider .slick-track .slide,
.m-tile-slider .slick-track .tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media all and (min-width: 37.5em) {
  .m-tile-slider .slick-list {
    margin: 0 -10px;
  }
}
@media all and (min-width: 46.25em) {
  .m-tile-slider {
    margin-bottom: 40px;
  }
  .m-tile-slider.v-main-grid .slide {
    padding: 0 15px;
  }
  .m-tile-slider .slick-list {
    margin: 0px -15px;
  }
}
@media all and (min-width: 61.25em) {
  .m-tile-slider {
    margin-bottom: 50px;
  }
  .m-tile-slider .tile {
    margin-right: 30px;
  }
}

.sticky-container .sticky-header {
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: -1px;
  background: #fff;
  padding: 10px 0;
}

.m-body-text h1, .m-body-text .h1 {
  font-size: 37.0526315789px;
  font-size: 3.7052631579rem;
}
.m-body-text h2, .m-body-text .h2 {
  font-size: 32px;
  font-size: 3.2rem;
}
.m-body-text h3, .m-body-text .h3 {
  font-size: 23.5789473684px;
  font-size: 2.3578947368rem;
}
.m-body-text p, .m-body-text li {
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (min-width: 46.25em) {
  .m-body-text h1, .m-body-text .h1 {
    font-size: 39.3684210526px;
    font-size: 3.9368421053rem;
  }
  .m-body-text h2, .m-body-text .h2 {
    font-size: 34px;
    font-size: 3.4rem;
  }
  .m-body-text h3, .m-body-text .h3 {
    font-size: 25.0526315789px;
    font-size: 2.5052631579rem;
  }
  .m-body-text p, .m-body-text li {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media all and (min-width: 61.25em) {
  .m-body-text h1, .m-body-text .h1 {
    font-size: 41.6842105263px;
    font-size: 4.1684210526rem;
  }
  .m-body-text h2, .m-body-text .h2 {
    font-size: 36px;
    font-size: 3.6rem;
  }
  .m-body-text h3, .m-body-text .h3 {
    font-size: 26.5263157895px;
    font-size: 2.6526315789rem;
  }
  .m-body-text p, .m-body-text li {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media all and (min-width: 81.25em) {
  .m-body-text h1, .m-body-text .h1 {
    font-size: 44px;
    font-size: 4.4rem;
  }
  .m-body-text h2, .m-body-text .h2 {
    font-size: 38px;
    font-size: 3.8rem;
  }
  .m-body-text h3, .m-body-text .h3 {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .m-body-text p, .m-body-text li {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.m-intro-text h1, .m-intro-text .h1 {
  font-size: 32.4210526316px;
  font-size: 3.2421052632rem;
}
.m-intro-text h2, .m-intro-text .h2 {
  font-size: 40px;
  font-size: 4rem;
}
.m-intro-text h3, .m-intro-text .h3 {
  font-size: 29.4736842105px;
  font-size: 2.9473684211rem;
}
.m-intro-text p, .m-intro-text li {
  font-size: 20px;
  font-size: 2rem;
}
@media all and (min-width: 46.25em) {
  .m-intro-text h1, .m-intro-text .h1 {
    font-size: 39.3684210526px;
    font-size: 3.9368421053rem;
  }
  .m-intro-text h2, .m-intro-text .h2 {
    font-size: 42.5px;
    font-size: 4.25rem;
  }
  .m-intro-text h3, .m-intro-text .h3 {
    font-size: 31.3157894737px;
    font-size: 3.1315789474rem;
  }
  .m-intro-text p, .m-intro-text li {
    font-size: 21.25px;
    font-size: 2.125rem;
  }
}
@media all and (min-width: 61.25em) {
  .m-intro-text h1, .m-intro-text .h1 {
    font-size: 46.8947368421px;
    font-size: 4.6894736842rem;
  }
  .m-intro-text h2, .m-intro-text .h2 {
    font-size: 45px;
    font-size: 4.5rem;
  }
  .m-intro-text h3, .m-intro-text .h3 {
    font-size: 33.1578947368px;
    font-size: 3.3157894737rem;
  }
  .m-intro-text p, .m-intro-text li {
    font-size: 22.5px;
    font-size: 2.25rem;
  }
}
@media all and (min-width: 81.25em) {
  .m-intro-text h1, .m-intro-text .h1 {
    font-size: 55px;
    font-size: 5.5rem;
  }
  .m-intro-text h2, .m-intro-text .h2 {
    font-size: 47.5px;
    font-size: 4.75rem;
  }
  .m-intro-text h3, .m-intro-text .h3 {
    font-size: 35px;
    font-size: 3.5rem;
  }
  .m-intro-text p, .m-intro-text li {
    font-size: 23.75px;
    font-size: 2.375rem;
  }
}

.m-title-text .h1 {
  font-size: 40px;
  font-size: 4rem;
}
.m-title-text .h2, .m-title-text h2, .m-title-text h3, .m-title-text p, .m-title-text li {
  font-size: 24px;
  font-size: 2.4rem;
}
@media all and (min-width: 46.25em) {
  .m-title-text .h1 {
    font-size: 44px;
    font-size: 4.4rem;
  }
  .m-title-text .h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .m-title-text h2, .m-title-text h3, .m-title-text p, .m-title-text li {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media all and (min-width: 61.25em) {
  .m-title-text .h1 {
    font-size: 52px;
    font-size: 5.2rem;
  }
  .m-title-text .h2 {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .m-title-text h2, .m-title-text h3, .m-title-text p, .m-title-text li {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media all and (min-width: 81.25em) {
  .m-title-text .h1 {
    font-size: 56px;
    font-size: 5.6rem;
  }
  .m-title-text .h2 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

.tile {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.tile .tile-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #000000;
  color: #fff;
  border: 1px solid #000000;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.tile .tile-top .text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
  min-height: 22vw;
}
.tile .tile-top h3 {
  margin: 0 0 30px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tile .tile-top .button {
  width: auto;
  margin: 10px 0 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tile .tile-top .button:hover {
  border-color: #a1a1a1;
}
.tile .tile-top.invert-bg {
  background: #fff;
  color: #000000;
  border-color: #a1a1a1;
}
.tile .tile-mid {
  height: auto;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  padding: 20px;
  color: #1D1D1B;
}
.tile .tile-mid p {
  margin: 0;
}
.tile .tile-bottom {
  background: #fff;
  border: 1px solid #a1a1a1;
  border-top: none;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}
.tile .tile-bottom.fixed-height img {
  width: auto;
  height: 70%;
  max-width: 50%;
  bottom: 0px;
  position: relative;
}
.tile .tile-bottom.v-align-vert a {
  width: 100%;
  margin: 0;
}
.tile .tile-bottom.v-additional-links {
  border: none;
}
.tile .tile-bottom.v-additional-links p {
  margin: 0 0 5px;
}
.tile .content-wrapper {
  padding: 20px;
}
.tile .v-video-wrapper {
  padding: 0;
}
.tile .v-video-wrapper iframe,
.tile .v-video-wrapper video {
  width: 100%;
  height: 100%;
}
.tile .fixed-height {
  height: 0;
  padding-bottom: calc(100% - 40px);
  padding-bottom: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 100%;
  position: relative;
}
.tile .fixed-height .content-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  position: absolute;
}
.tile .fixed-height .content-wrapper.image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
}
.tile .fixed-height .content-wrapper.image-wrapper.v-full {
  padding: 0;
}
.tile .fixed-height .content-wrapper.image-wrapper.v-full img {
  width: 100%;
  height: auto;
  max-width: none;
}
.tile .fixed-height .content-wrapper.image-wrapper.v-video-wrapper {
  pointer-events: none;
}
.tile .fixed-height .content-wrapper.text-wrapper {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.tile .stretch-height {
  height: auto;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}
.tile.min-tile .tile-top,
.tile.min-tile .tile-bottom {
  border: none;
}
.tile.simple-tile .tile-top {
  border-color: #e8e8e8;
}
.tile.simple-tile .tile-mid {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.tile.simple-tile .tile-bottom {
  border: none;
}
.tile.white-bg .tile-top {
  border: none;
}
.tile.white-bg .tile-top .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tile.white-bg .tile-top .content-wrapper img {
  margin: auto;
  max-width: 50%;
}
@media all and (min-width: 61.25em) {
  .tile {
    border-radius: 15px;
  }
}
@media all and (min-width: 80em) {
  .tile .tile-top .text-wrapper {
    min-height: 20vw;
  }
}
@media all and (min-width: 87.5em) {
  .tile .tile-top .text-wrapper {
    min-height: 270px;
  }
}

a.tile .text-wrapper h3:hover {
  color: #7564FF;
}

.m-cta {
  border-radius: 15px 15px 0 0;
}
.m-cta .cta-top,
.m-cta .cta-mid,
.m-cta .cta-bottom {
  padding: 20px 20px;
}
.m-cta .cta-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.m-cta .cta-top p {
  width: 66%;
  padding-right: 20px;
  margin: 0;
}
.m-cta .cta-top img {
  width: 33%;
}
.m-cta .cta-mid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-right: 10%;
}
.m-cta .cta-mid img {
  margin-bottom: 20px;
  width: 35%;
}
.m-cta .cta-mid p {
  padding-right: 20%;
}
.m-cta .cta-bottom {
  border-top: 1px solid #fff;
}
.m-content-panel .content-panel--title,
.m-content-panel .content-panel--text {
  padding: 15px 20px;
  border: 1px solid #a1a1a1;
}
.m-content-panel .content-panel--title {
  border-radius: 15px 15px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-bottom: none;
  border-color: #000000;
}
.m-content-panel .content-panel--title > * {
  margin: 0;
}
.m-content-panel .content-panel--title img {
  height: 50px;
  margin-left: 20px;
}
.m-content-panel .content-panel--text {
  border-radius: 0 0 15px 15px;
  border-top: none;
}
@media all and (min-width: 46.25em) {
  .m-content-panel.v-wider-panel .content-panel--text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .m-content-panel.v-wider-panel .content-panel--text p {
    width: 40%;
    margin-right: 10%;
  }
}
@media all and (min-width: 61.25em) {
  .m-content-panel .content-panel--title,
  .m-content-panel .content-panel--text {
    padding: 15px 30px;
  }
  .m-content-panel.v-use-case {
    width: 66.667%;
  }
}
@media all and (min-width: 81.25em) {
  .m-content-panel .content-panel--title,
  .m-content-panel .content-panel--text {
    padding: 20px 40px;
  }
}

.blog-grid .blog-label {
  text-align: center;
  display: inline-block;
  padding: 20px 20px;
  width: 100%;
}
@media all and (min-width: 46.25em) {
  .blog-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px 20px;
  }
  .blog-grid > * {
    width: calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin: 10px;
  }
  .blog-grid > *:first-of-type .blog-label {
    text-align: left;
  }
  .blog-grid > *:last-of-type .blog-label {
    text-align: right;
  }
  .blog-grid .blog-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .blog-grid .blog-wrapper .blog-tile,
  .blog-grid .blog-wrapper .blog-tile--text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .blog-grid .blog-wrapper .blog-tile {
    margin: 0;
  }
}
@media all and (min-width: 61.25em) {
  .blog-grid {
    margin: 0 -20px 20px;
  }
  .blog-grid > * {
    width: calc(50% - 40px);
    max-width: calc(50% - 40px);
    margin: 20px;
  }
}

.m-tags-list {
  padding: 30px 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-tags-list h3 {
  margin: 0 20px;
}
.m-tags-list .ghost-button {
  border: 1px solid #a1a1a1;
}
.m-tags-list > * {
  width: auto;
  margin: 10px 10px 0 0;
}
@media all and (min-width: 46.25em) {
  .m-tags-list h3 {
    margin: 0 30px;
  }
}
@media all and (min-width: 61.25em) {
  .m-tags-list h3 {
    margin: 0 40px;
  }
}

.blog-tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border: 1px solid #a1a1a1;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 20px;
  background: #fff;
}
.blog-tile--image {
  width: 100%;
  height: 0;
  padding: 0 0 66%;
}
.blog-tile--text {
  padding: 20px;
}
.blog-tile--title {
  font-size: 30px;
  font-size: 3rem;
}
.blog-tile--title a {
  font-size: inherit;
  line-height: inherit;
}
.blog-tile--sub {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 10px 0 20px 0;
}
.blog-tile--sub > * {
  display: inline-block;
  margin: 0 10px 0 0;
}
.blog-tile--tags {
  padding: 0;
}
.blog-tile--summary {
  font-size: 19px;
  font-size: 1.9rem;
}
.blog-tile--summary p {
  font-size: inherit;
}
.blog-tile--footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.blog-tile--footer .blog-tile--link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 20px;
}
@media all and (max-width: 61.24em) {
  .blog-tile--footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog-tile .button {
  margin-bottom: 0;
}
@media all and (min-width: 46.25em) {
  .blog-tile {
    border-radius: 20px;
  }
  .blog-tile.v-wide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .blog-tile.v-wide > * {
    width: 50%;
  }
  .blog-tile.v-wide .blog-tile--image {
    padding: 0 0 45%;
  }
  .blog-tile--text {
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .blog-tile--text .blog-tile--summary {
    -webkit-box-flex: 10;
        -ms-flex-positive: 10;
            flex-grow: 10;
  }
}
@media all and (min-width: 61.25em) {
  .blog-tile--text {
    padding: 40px;
  }
}

.skip-link {
  position: absolute !important;
  top: 0;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  text-decoration: underline;
  font-size: 18px;
  font-size: 1.8rem;
  z-index: 9999;
  display: block;
  padding: 20px 15px;
  -webkit-transition: 0s;
  transition: 0s;
}
.skip-link strong {
  font-weight: 700;
}
.skip-link:focus {
  position: fixed !important;
  width: 100% !important;
  height: auto !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  color: #000000;
  outline: 3px solid #F9F15F;
  outline-offset: 0;
  background-color: #F9F15F;
}

.logo {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 120px;
  height: 40px;
}
.logo img {
  margin-bottom: 6px;
}
.logo .logo-def {
  display: inline-block;
}
.logo .logo-inv {
  display: none;
}
.page-header {
  display: block;
  position: relative;
  width: 100%;
  z-index: 50;
}
.page-header .mobile-nav {
  display: none;
}
.page-header.v-subheader {
  position: relative;
  z-index: 1;
  position: absolute;
  top: 50px;
}
@media all and (max-width: 61.24em) {
  .page-header {
    position: fixed;
    background: #000000;
    color: #fff;
    top: 0;
  }
  .page-header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .page-header .logo {
    margin: 2px 0 0;
    z-index: 10;
    width: 80px;
  }
  .page-header .logo .logo-def {
    display: none;
  }
  .page-header .logo .logo-inv {
    display: inline-block;
    width: auto;
  }
  .page-header .mobile-nav {
    display: inline-block;
    height: 35px;
    width: 35px;
    padding: 5px 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 60;
  }
  .page-header .mobile-nav .bars {
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
  }
  .page-header .mobile-nav .bars:before, .page-header .mobile-nav .bars:after {
    width: 100%;
    height: 0px;
    content: "";
    position: absolute;
    border-top: 1px solid #fff;
    left: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .page-header .mobile-nav .bars:before {
    top: 25%;
  }
  .page-header .mobile-nav .bars:after {
    bottom: 25%;
  }
  .page-header .site-nav {
    display: inline-block;
    top: -180vh;
    height: 100vh;
    -webkit-transition: all 0.2s ease-in-out 0.2s;
    transition: all 0.2s ease-in-out 0.2s;
    position: fixed;
    background: #000000;
    width: 100%;
    padding: 80px 20px 20px;
    z-index: 9;
    left: 0;
  }
  .page-header .site-nav > ul {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .page-header .main-nav li, .page-header .main-nav a,
  .page-header .side-nav li,
  .page-header .side-nav a,
  .page-header .sub-nav li,
  .page-header .sub-nav a {
    margin: 0;
  }
  .page-header .main-nav a,
  .page-header .side-nav a,
  .page-header .sub-nav a {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    padding: 5px 0;
  }
  .page-header.show-nav .site-nav {
    top: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .page-header.show-nav .site-nav > ul {
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out 0.2s;
    transition: all 0.2s ease-in-out 0.2s;
  }
  .page-header.show-nav .mobile-nav .bars:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
  }
  .page-header.show-nav .mobile-nav .bars:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 50%;
  }
  .page-header .v-sub-nav .sub-nav-title {
    display: none;
  }
  .page-header .v-sub-nav .sub-nav {
    list-style: none;
    clear: both;
    float: none;
    margin: 0 0 6px 0;
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-header .v-sub-nav .sub-nav li {
    margin: 0;
    padding: 0;
  }
  .page-header .v-sub-nav .sub-nav li {
    width: auto;
    display: inline-block;
    margin-right: 5%;
  }
}
@media all and (max-width: 61.24em) and (min-width: 37.5em) {
  .page-header .v-sub-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .page-header .v-sub-nav .sub-nav-title {
    padding: 5px 0;
    margin-right: 5%;
    margin-bottom: 6px;
    display: inline-block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .page-header .v-sub-nav .sub-nav {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .page-header .v-sub-nav .sub-nav li {
    margin-right: 1%;
    margin-left: 4%;
  }
}
@media all and (min-width: 61.25em) {
  .page-header {
    position: relative;
    position: fixed;
    top: 0;
    text-align: right;
    background: #fff;
    border-bottom: 1px solid #1D1D1B;
  }
  .page-header.black-bg {
    border-bottom-color: #fff;
    background: #000000;
    color: #fff;
  }
  .page-header.v-subheader {
    top: 71px;
    position: fixed;
  }
  .page-header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .page-header .logo {
    width: 100px;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
  }
  .page-header .logo img {
    width: auto;
    height: 50px;
    margin: 0;
  }
  .page-header .site-nav,
  .page-header .main-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .page-header .main-nav,
  .page-header .side-nav,
  .page-header .sub-nav {
    margin: 0px 0 0px 5%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .page-header .main-nav li,
  .page-header .side-nav li,
  .page-header .sub-nav li {
    width: auto;
    position: relative;
    margin: 0 0px 0 5px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .page-header .main-nav a,
  .page-header .side-nav a,
  .page-header .sub-nav a {
    padding: 5px 10px;
  }
  .page-header .main-nav a:hover,
  .page-header .side-nav a:hover,
  .page-header .sub-nav a:hover {
    color: #7564FF;
  }
  .page-header .main-nav a .arrow,
  .page-header .side-nav a .arrow,
  .page-header .sub-nav a .arrow {
    bottom: -3px;
    position: relative;
  }
  .page-header .main-nav .selected > a,
  .page-header .side-nav .selected > a,
  .page-header .sub-nav .selected > a {
    color: #7564FF;
  }
  .page-header .main-nav li .sub-nav,
  .page-header .side-nav li .sub-nav,
  .page-header .sub-nav li .sub-nav {
    position: absolute;
    top: 47px;
    left: 0;
    background: #000000;
    color: #fff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    display: none;
  }
  .page-header .main-nav li .sub-nav.v-switch-side,
  .page-header .side-nav li .sub-nav.v-switch-side,
  .page-header .sub-nav li .sub-nav.v-switch-side {
    left: auto;
    right: 0;
  }
  .page-header .main-nav li.selected .sub-nav,
  .page-header .side-nav li.selected .sub-nav,
  .page-header .sub-nav li.selected .sub-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-header .container.v-sub-nav {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .page-header .container.v-sub-nav .sub-nav-title {
    font-family: "bentonsans_medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  .page-header .sub-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 10px 10px 12px;
    border-radius: 0 0 10px 10px;
  }
  .page-header .sub-nav li {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .page-header .sub-nav a {
    padding: 5px 20px;
  }
  .page-header .sub-nav a:hover, .page-header .sub-nav a:active {
    color: #7564FF;
  }
  .page-header .main-nav li:hover .sub-nav {
    opacity: 1;
    z-index: 1;
    pointer-events: all;
  }
}
@media all and (min-width: 81.25em) {
  .page-header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .page-header .main-nav li, .page-header .main-nav a,
  .page-header .side-nav li,
  .page-header .side-nav a {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.main-nav,
.side-nav,
.sub-nav {
  list-style: none;
  clear: both;
  float: none;
  margin: 0 0 0 0;
  padding: 0;
}
.main-nav li,
.side-nav li,
.sub-nav li {
  margin: 0;
  padding: 0;
}
.main-nav li,
.side-nav li,
.sub-nav li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.main-nav li, .main-nav a,
.side-nav li,
.side-nav a,
.sub-nav li,
.sub-nav a {
  font-size: 16px;
  font-size: 1.6rem;
  text-decoration: none;
}
@media all and (max-width: 61.24em) {
  .main-nav,
  .side-nav,
  .sub-nav {
    margin-bottom: 20px;
  }
  .main-nav li, .main-nav a,
  .side-nav li,
  .side-nav a,
  .sub-nav li,
  .sub-nav a {
    font-size: 30px;
    font-size: 3rem;
    text-decoration: none;
  }
  .main-nav .sub-nav,
  .side-nav .sub-nav,
  .sub-nav .sub-nav {
    display: none;
  }
  .main-nav .sub-nav li, .main-nav .sub-nav a,
  .side-nav .sub-nav li,
  .side-nav .sub-nav a,
  .sub-nav .sub-nav li,
  .sub-nav .sub-nav a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 61.24em) {
  .sub-nav {
    margin-bottom: 20px;
  }
  .sub-nav li, .sub-nav a {
    font-size: 16px;
    font-size: 1.6rem;
    text-decoration: none;
  }
}

.l-page-footer,
.l-page-subfooter {
  padding-top: 10px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-page-footer .col,
.l-page-subfooter .col {
  padding: 10px 0;
  width: 100%;
}
.l-page-footer .row,
.l-page-subfooter .row {
  padding-top: 10px;
  padding-bottom: 10px;
}
.l-page-footer .row img,
.l-page-subfooter .row img {
  width: 100px;
  margin-bottom: 20px;
}
.l-page-footer p,
.l-page-subfooter p {
  margin: 0 0 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
.l-page-footer hr,
.l-page-footer hr + p,
.l-page-subfooter hr,
.l-page-subfooter hr + p {
  display: none;
}
.l-page-footer .social-icons a,
.l-page-subfooter .social-icons a {
  display: inline-block;
  padding: 3px 5px;
  margin: 0 5px 0 -5px;
}
.l-page-footer .v-has-logos,
.l-page-subfooter .v-has-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 0 27px;
}
.l-page-footer .v-has-logos img,
.l-page-subfooter .v-has-logos img {
  max-height: 73px;
}
.l-page-footer .v-has-logos span,
.l-page-subfooter .v-has-logos span {
  width: auto;
  margin-bottom: 10px;
  margin-right: 20px;
}
.l-page-footer .v-fineprint p,
.l-page-subfooter .v-fineprint p {
  margin-bottom: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}
.l-page-footer .v-fineprint img,
.l-page-subfooter .v-fineprint img {
  height: 100px;
  width: auto;
  opacity: 0.9;
}
@media all and (min-width: 46.25em) {
  .l-page-footer p, .l-page-footer a,
  .l-page-subfooter p,
  .l-page-subfooter a {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .l-page-footer .col,
  .l-page-subfooter .col {
    width: 33.33%;
    padding-right: 30px;
  }
  .l-page-footer .col-4,
  .l-page-subfooter .col-4 {
    width: 66.667%;
  }
  .l-page-footer .col-x2,
  .l-page-footer .col-x3,
  .l-page-subfooter .col-x2,
  .l-page-subfooter .col-x3 {
    width: 66.667%;
  }
  .l-page-footer .col-x4,
  .l-page-subfooter .col-x4 {
    width: 100%;
  }
  .l-page-footer .v-fineprint p,
  .l-page-subfooter .v-fineprint p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media all and (min-width: 61.25em) {
  .l-page-footer p, .l-page-footer a,
  .l-page-subfooter p,
  .l-page-subfooter a {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .l-page-footer .col,
  .l-page-subfooter .col {
    width: 25%;
    padding-right: 40px;
  }
  .l-page-footer .col.col-x2,
  .l-page-subfooter .col.col-x2 {
    width: 50%;
  }
  .l-page-footer .col.col-x3,
  .l-page-subfooter .col.col-x3 {
    width: 75%;
  }
  .l-page-footer .col.col-x4,
  .l-page-subfooter .col.col-x4 {
    width: 100%;
  }
  .l-page-footer .v-has-logos,
  .l-page-subfooter .v-has-logos {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-page-footer .v-has-logos span,
  .l-page-subfooter .v-has-logos span {
    width: auto;
    margin: 0 20px 0 0;
  }
  .l-page-footer .v-has-logos span:last-of-type,
  .l-page-subfooter .v-has-logos span:last-of-type {
    margin: 0;
  }
  .l-page-footer .v-has-logos img,
  .l-page-subfooter .v-has-logos img {
    max-height: 100px;
  }
}

.l-page-footer {
  padding-top: 60px;
  padding-bottom: 30px;
}

.l-page-subfooter {
  padding-top: 30px;
  padding-bottom: 30px;
}
.l-page-subfooter:last-of-type {
  padding-bottom: 60px;
}

.l-page-subfooter {
  border-top: 1px solid #1D1D1B;
}

.layout .mini-container {
  max-width: 620px;
}

.l-browser-height {
  min-height: calc(100vh - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.l-centered-panel {
  padding: 20px;
}
.l-centered-panel .col {
  width: 100%;
}
.l-centered-panel .m-intro-text,
.l-centered-panel .m-body-text {
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.l-open .col {
  padding: 5px 0;
}
.l-open .inner-container {
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 46.25em) {
  .l-open .col {
    padding: 10px 0;
  }
}
.l-stacked-content .col {
  padding: 20px 0;
}
@media all and (min-width: 46.25em) {
  .l-stacked-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .l-stacked-content .col {
    padding: 10px 0 30px;
  }
  .l-stacked-content .text-col {
    width: 75%;
  }
}
@media all and (min-width: 61.25em) {
  .l-stacked-content .text-col {
    width: 66.66%;
  }
}
@media all and (min-width: 81.25em) {
  .l-stacked-content .text-col {
    width: 50%;
  }
  .l-stacked-content .text-col.m-intro-text {
    width: 55%;
  }
}

.video-wrapper,
.v-video-wrapper {
  padding: 100% 0 0;
  position: relative;
}
.video-wrapper iframe,
.video-wrapper video,
.v-video-wrapper iframe,
.v-video-wrapper video {
  width: 100%;
  height: 100%;
  background: #fff;
}

.l-home-header .col,
.l-standard-split .col {
  padding: 20px 0;
}
.l-home-header .v-image,
.l-standard-split .v-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.l-home-header .v-image img,
.l-standard-split .v-image img {
  width: 60%;
  max-width: 300px;
  margin-bottom: 30px;
}
@media all and (min-width: 46.25em) {
  .l-home-header,
  .l-standard-split {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .l-home-header .col,
  .l-standard-split .col {
    width: 50%;
    padding-right: 5%;
  }
  .l-home-header .col img,
  .l-standard-split .col img {
    margin-bottom: 10px;
  }
  .l-home-header .col.left-col img,
  .l-standard-split .col.left-col img {
    margin-bottom: 20px;
  }
  .l-home-header .col.min-col,
  .l-standard-split .col.min-col {
    width: 40%;
  }
  .l-home-header .v-image,
  .l-standard-split .v-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .l-home-header .v-image img,
  .l-standard-split .v-image img {
    max-width: none;
    margin: 0;
  }
}
@media all and (min-width: 81.25em) {
  .l-home-header .v-image img,
  .l-standard-split .v-image img {
    width: 45%;
  }
}

.l-home-header {
  min-height: 100%;
}
.l-home-header .text-col p {
  margin: 0;
}
@media all and (min-width: 46.25em) {
  .l-home-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .l-home-header .col {
    width: 40%;
  }
  .l-home-header .text-col .m-body-text {
    padding-top: 10%;
  }
  .l-home-header .graphic-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 50%;
  }
  .l-home-header .graphic-col .video-wrapper {
    width: 100%;
    height: 0;
    padding: 0 0 100%;
    position: relative;
  }
  .l-home-header .graphic-col .video-wrapper video, .l-home-header .graphic-col .video-wrapper iframe {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
  }
  .l-home-header .graphic-col img,
  .l-home-header .graphic-col video {
    width: 70%;
  }
  .l-home-header .graphic-col img.v-100,
  .l-home-header .graphic-col video.v-100 {
    width: 100%;
  }
}

.l-blog-header > * {
  width: 100%;
  margin: 20px auto;
}
.l-blog-header .heading-caption {
  margin-bottom: 10px;
}
.l-blog-header .title-sub-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.l-blog-header .title-sub-col > * {
  margin: 0 30px 0 0;
}
@media all and (min-width: 46.25em) {
  .l-blog-header .col {
    padding-left: 10%;
    padding-right: 10%;
  }
  .l-blog-header .title-sub-col {
    padding-top: 30px;
  }
}
@media all and (min-width: 61.25em) {
  .l-blog-header {
    padding-top: 5%;
    padding-bottom: 5%;
  }
  .l-blog-header .col {
    padding-left: 20%;
    padding-right: 20%;
  }
}

.l-blog-content > * {
  width: 100%;
  margin: 20px auto;
}
.l-blog-content .image-col {
  width: auto;
  margin-left: -20px;
  margin-right: -20px;
}
.l-blog-content .image-col img {
  max-width: none;
  width: 100%;
}
.l-blog-content .image-col figcaption {
  padding: 10px 20px 2px;
  text-align: right;
  font-size: 16px;
  font-size: 1.6rem;
}
.l-blog-content .intro-text-col {
  font-size: 20px;
  font-size: 2rem;
}
.l-blog-content .intro-text-col p {
  font-size: inherit;
}
.l-blog-content .text-col blockquote {
  border-top: 1px solid #a1a1a1;
  padding-top: 10px;
  font-weight: 700;
  font-family: "bentonsans_medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media all and (min-width: 46.25em) {
  .l-blog-content .intro-text-col,
  .l-blog-content .text-col {
    padding: 0 10%;
  }
}
@media all and (min-width: 61.25em) {
  .l-blog-content .image-col {
    margin-left: 0px;
    margin-right: 0px;
  }
  .l-blog-content .image-col figcaption {
    padding-right: 0;
  }
  .l-blog-content .intro-text-col,
  .l-blog-content .text-col {
    padding: 0 20%;
  }
  .l-blog-content .intro-text-col {
    margin: 8% 0 8% 0;
  }
  .l-blog-content .text-col blockquote {
    width: 70%;
    margin: 8% 0;
  }
}

.l-contact-page .map-embed {
  width: 100%;
  min-height: 300px;
  margin-bottom: 25px;
}
.l-contact-page .map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.l-contact-page .submap-col .address {
  padding-left: 15px;
  margin-bottom: 30px;
}
.l-contact-page .submap-col .address p {
  margin-bottom: 10px;
}
.l-contact-page .submap-col .address hr {
  margin: 5px 0;
}
@media all and (min-width: 46.25em) {
  .l-contact-page .map-embed iframe {
    min-height: 500px;
  }
  .l-contact-page .map-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .l-contact-page .map-col .map-embed {
    width: 66.666%;
    padding-right: 15px;
  }
  .l-contact-page .map-col .address {
    padding-left: 15px;
  }
  .l-contact-page .submap-col {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .l-contact-page .submap-col .address {
    width: 33.33%;
    padding-right: 5%;
    margin-bottom: 25px;
  }
  .l-contact-page .submap-col .address hr {
    margin: 10px 0;
  }
}

.l-article-footer-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-article-footer-items .col {
  width: 100%;
}
@media all and (min-width: 46.25em) {
  .l-article-footer-items .main-col {
    width: 66.66%;
    padding-right: 5%;
  }
  .l-article-footer-items .side-col {
    width: 33.33%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretc;
        -ms-flex-pack: stretc;
            justify-content: stretc;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.f-two-cols {
  padding: 20px 0;
}
.f-two-cols .col {
  width: 100%;
}
@media all and (min-width: 46.25em) {
  .f-two-cols {
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .f-two-cols .col {
    padding: 20px 0;
    width: 50%;
  }
  .f-two-cols .side-col {
    padding-left: 40px;
  }
  .f-two-cols.v-switcheroo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media all and (min-width: 61.25em) {
  .f-two-cols .main-col {
    width: 66.6666666667%;
  }
  .f-two-cols .side-col {
    padding-left: 40px;
    width: 33.3333333333%;
  }
}
.open-layout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.open-layout .col {
  padding: 20px 0;
}
@media all and (min-width: 46.25em) {
  .open-layout .col {
    padding: 40px 0;
  }
  .open-layout .image-bg {
    max-height: 50vh;
  }
}
@media all and (min-width: 61.25em) {
  .open-layout .col {
    padding-top: 80px;
  }
}

.split-layout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.split-layout .col {
  padding: 20px 0;
}
@media all and (min-width: 46.25em) {
  .split-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .split-layout .col {
    width: 50%;
    padding: 40px 0;
  }
  .split-layout .col.title-col {
    padding-right: 7.5%;
  }
  .split-layout .col.text-col {
    padding-left: 20px;
  }
}
@media all and (min-width: 61.25em) {
  .split-layout .col.text-col {
    padding-left: 40px;
  }
}

.grid-layout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}
.grid-layout .col {
  padding: 0px 0;
}
@media all and (min-width: 46.25em) {
  .grid-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
  .grid-layout .col {
    width: 50%;
    padding: 0px 0;
  }
  .grid-layout .col.title-col {
    padding-right: 7.5%;
  }
}

.alternating-tile-layout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.alternating-tile-layout .col {
  padding: 20px 0;
}
@media all and (min-width: 46.25em) {
  .alternating-tile-layout .tile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .alternating-tile-layout .tile > div {
    width: 50%;
  }
  .alternating-tile-layout .tile:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .alternating-tile-layout .tile:nth-of-type(odd) > div {
    text-align: right;
  }
  .alternating-tile-layout .tile:nth-of-type(odd) .mini-container {
    text-align: left;
    display: inline-block;
  }
  .alternating-tile-layout .tile .image-bg img {
    max-height: 400px;
  }
  .alternating-tile-layout .featured-tile {
    background-color: #a1a1a1;
    background-blend-mode: multiply;
    padding-top: 20%;
  }
  .alternating-tile-layout .featured-tile .tile-contents {
    background: #F9F15F;
  }
  .alternating-tile-layout .featured-tile .image-bg {
    margin-top: -20%;
    height: 80%;
  }
  .alternating-tile-layout .featured-tile .image-bg img {
    width: 80%;
  }
}

.blog-tile-layout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.blog-tile-layout .col {
  padding: 20px 0;
}
.blog-tile-layout .tile {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #4c97bb;
}
@media all and (min-width: 46.25em) {
  .blog-tile-layout .tile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .blog-tile-layout .tile > div {
    width: 50%;
  }
  .blog-tile-layout .featured-tile {
    background-color: #a1a1a1;
    background-blend-mode: multiply;
    padding-top: 20%;
  }
  .blog-tile-layout .featured-tile .tile-contents {
    background: #F9F15F;
  }
  .blog-tile-layout .featured-tile .image-bg {
    margin-top: -20%;
    height: 80%;
  }
  .blog-tile-layout .featured-tile .image-bg img {
    width: 80%;
  }
}

.article-nav-layout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.article-nav-layout .col {
  padding: 20px 0;
}
.article-nav-layout a {
  font-size: 24px;
  font-size: 2.4rem;
}
@media all and (min-width: 46.25em) {
  .article-nav-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .article-nav-layout .col {
    width: 50%;
    padding: 30px 0;
    padding-right: 7.5%;
  }
  .article-nav-layout .next {
    text-align: right;
    padding-right: 0;
  }
}

.footer-layout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-layout .col {
  padding: 20px 0;
}
@media all and (min-width: 46.25em) {
  .footer-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer-layout .col {
    width: 30%;
    padding: 40px 0;
    padding-right: 2.5%;
  }
  .footer-layout .col.address-col {
    width: 50%;
  }
  .footer-layout .col.links-col {
    width: 20%;
    padding-left: 20px;
  }
}
@media all and (min-width: 61.25em) {
  .footer-layout .col.links-col {
    padding-left: 40px;
  }
}

.subfooter-layout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.subfooter-layout .col {
  padding: 10px 0;
}
.subfooter-layout p {
  margin: 0;
}
@media all and (min-width: 46.25em) {
  .subfooter-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .subfooter-layout .col {
    width: 50%;
    padding: 20px 0;
    padding-right: 7.5%;
  }
  .subfooter-layout .legal-col {
    text-align: right;
    padding-right: 0;
  }
}

.consent-module p a {
  color: #4c97bb;
}

.consent-module-roadblock {
  position: fixed;
  bottom: 5px;
  left: 5px;
  width: calc(100% - 10px);
  border-radius: 2px;
  z-index: 1000;
  background: #000000;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s;
}
.consent-module-roadblock.success {
  background: #89C625;
  color: #fff;
}
.consent-module-roadblock.error {
  background: #e00719;
  color: #fff;
}
.consent-module-roadblock .container {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 15px 20px 20px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.consent-module-roadblock .container p {
  margin: 0 0 0px;
  max-width: 820px;
}
.consent-module-roadblock .container p a {
  text-decoration: underline;
}
.consent-module-roadblock .container form {
  margin: 0 0 0px;
}
.consent-module-roadblock .container .form-actions {
  text-align: right;
}
.consent-module-roadblock .container .form-actions a {
  font-size: 13px;
  font-size: 1.3rem;
  text-decoration: none;
}
.consent-module-roadblock .container .form-actions a:hover {
  color: #4c97bb;
}
.consent-module-roadblock .container .form-actions .button {
  margin-top: 10px;
}
.consent-module-roadblock .container .form-actions .button:hover {
  background-color: #fff;
  color: #000000;
}
.consent-module-roadblock .container .form-actions .button.ghost-button {
  color: #7564FF;
}
.consent-module-roadblock .container .form-actions .button.ghost-button:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.consent-module-roadblock .container .form-actions .min-link {
  top: -2px;
  position: relative;
}
.consent-module-roadblock .container .hidden-fields {
  display: none;
}
.consent-module-roadblock .container.message-content, .consent-module-roadblock .container.form-content {
  height: auto;
  overflow: hidden;
}
.consent-module-roadblock .container.message-content {
  padding: 0px 15px;
  max-height: 0;
}
.consent-module-roadblock .container.message-content > * {
  opacity: 0;
}
.consent-module-roadblock .container.form-content {
  padding: 15px 15px 20px;
  max-height: 200px;
}
.consent-module-roadblock .update-bar {
  width: 100%;
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.consent-module-roadblock .update-bar .update-bar-progress {
  width: 0%;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: 10s;
  transition: 10s;
}
.consent-module-roadblock .close-roadblock {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 100px;
  position: absolute;
  top: calc(50% - 18px);
  right: 15px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  opacity: 0;
  right: -15px;
}
.consent-module-roadblock .close-roadblock .fa {
  color: #000000;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.consent-module-roadblock .close-roadblock:hover .fa {
  color: #89C625;
}
.consent-module-roadblock.settings-updated .form-content {
  max-height: 0;
  padding: 0 15px;
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s;
}
.consent-module-roadblock.settings-updated .form-content > * {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.consent-module-roadblock.settings-updated .message-content {
  padding: 15px 60px 20px 15px;
  max-height: 200px;
  -webkit-transition: all 0.3s ease-in-out 0.6s;
  transition: all 0.3s ease-in-out 0.6s;
}
.consent-module-roadblock.settings-updated .message-content > * {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out 0.9s;
  transition: all 0.3s ease-in-out 0.9s;
}
.consent-module-roadblock.settings-updated .update-bar {
  bottom: 0;
}
.consent-module-roadblock.settings-updated .update-bar .update-bar-progress {
  width: 100%;
}
.consent-module-roadblock.settings-updated .close-roadblock {
  opacity: 1;
  right: 15px;
  -webkit-transition: all 0.3s ease-in-out 0.9s;
  transition: all 0.3s ease-in-out 0.9s;
}
.consent-module-roadblock.hide-roadblock {
  bottom: -200px;
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.consent-request-module {
  padding: 20px;
}
.consent-request-module form {
  margin: 0;
}
.consent-request-module label {
  font-weight: 700;
}

.consent-block {
  border-top: 1px solid #a1a1a1;
  padding-top: 10px;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 10px 0 20px 0;
}

.consent-button {
  padding-top: 10px;
}

.additional-content-container .consent-intro,
.additional-content-container .additional-content {
  height: auto;
  max-height: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.additional-content-container .consent-intro {
  max-height: 1000px;
  opacity: 1;
}
.additional-content-container .additional-content {
  max-height: 0;
  opacity: 0;
}
.additional-content-container.show-content .consent-intro {
  max-height: 0;
  opacity: 0;
}
.additional-content-container.show-content .additional-content {
  max-height: 1000px;
  opacity: 1;
}

@media all and (min-width: 46.25em) {
  .consent-block-layout .consent-block-text {
    display: inline-block;
    vertical-align: top;
    width: 70%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .consent-block-layout .consent-block-option {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    padding-left: 4%;
    padding-top: 10px;
  }
}

.consent-block-label {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 38px;
  border: 5px solid #CECECE;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.consent-block-label .label-text,
.consent-block-label .consent-block-input {
  display: none;
}
.consent-block-label .fa-check {
  color: #CECECE;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  font-size: 22px;
  font-size: 2.2rem;
}
.consent-block-label .fa-check .fa-lock {
  position: absolute;
  top: -8px;
  right: -8px;
  color: #fff;
  background-color: #0DC3CC;
  font-size: 10px;
  font-size: 1rem;
  border-radius: 100px;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 16px;
}
.consent-block-label:hover .fa-check {
  opacity: 1;
}
.consent-block-label.selected {
  border: 5px solid #0DC3CC;
  background: rgba(13, 195, 204, 0.2);
}
.consent-block-label.selected .fa-check {
  color: #0DC3CC;
  opacity: 1;
}
.consent-block-label.required {
  pointer-events: none;
}

.cookie-monster {
  background: url("/_assets/img/cookie_monster.jpg") center center no-repeat;
  background-size: contain;
  width: 150px;
  height: 90px;
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.fade {
  opacity: 0;
  -webkit-transition: all 1.5s ease-in-out 1.2s;
  transition: all 1.5s ease-in-out 1.2s;
}
.fade.animated {
  opacity: 1;
}
.fade.fade-out {
  bottom: 10px;
  -webkit-transition: all 0.6s ease-in-out 2.4s;
  transition: all 0.6s ease-in-out 2.4s;
  opacity: 1;
}
.fade.fade-out.animated {
  bottom: -150px;
}
html.no-js .fade {
  opacity: 1;
}

@media all and (min-width: 46.25em) {
  .no-flexbox .general-content .fi img {
    position: relative;
    bottom: auto;
  }
  .no-flexbox .mainnav > .fi {
    display: inline-block;
    width: 43%;
    vertical-align: top;
  }
  .no-flexbox .mainnav > ul.fi {
    width: 63%;
  }
}
@media all and (min-width: 61.25em) {
  .no-flexbox .general-content > .fi {
    display: inline-block;
    width: 43%;
    vertical-align: top;
  }
}

html .mod span {
  display: none;
}
html.flexbox .flexbox, html.touch .touch, html.js .js, html.mediaqueries .mediaqueries, html.cookies .cookies, html.backgroundblendmode .backgroundblendmode, html.backgroundcliptext .backgroundcliptext, html.csscalc .csscalc, html.csscolumns .csscolumns, html.batteryapi .batteryapi, html.cssfilters .cssfilters, html.ligatures .ligatures, html.flash .flash {
  display: inline-block;
}
html.flexbox .flexbox:before, html.touch .touch:before, html.js .js:before, html.mediaqueries .mediaqueries:before, html.cookies .cookies:before, html.backgroundblendmode .backgroundblendmode:before, html.backgroundcliptext .backgroundcliptext:before, html.csscalc .csscalc:before, html.csscolumns .csscolumns:before, html.batteryapi .batteryapi:before, html.cssfilters .cssfilters:before, html.ligatures .ligatures:before, html.flash .flash:before {
  content: "";
  background: #6be468;
  margin: 0 5px 0 0;
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 20px;
  position: relative;
  top: -1px;
}
html.safari .safari {
  display: inline-block;
}
html.chrome .chrome {
  display: inline-block;
}
html.firefox .firefox {
  display: inline-block;
}
html.ie .ie {
  display: inline-block;
}
html.mac .mac {
  display: inline-block;
}
html.win .win {
  display: inline-block;
}
html.webkit .webkit {
  display: inline-block;
}
html.gecko .gecko {
  display: inline-block;
}
html.ipod .ipod {
  display: inline-block;
}
html.iphone .iphone {
  display: inline-block;
}
html.ipad .ipad {
  display: inline-block;
}
html.webtv .webtv {
  display: inline-block;
}
html.android .android {
  display: inline-block;
}
html.mobile .mobile {
  display: inline-block;
}

html.no-flexbox .no-flexbox, html.no-touch .no-touch, html.no-js .no-js, html.no-mediaqueries .no-mediaqueries, html.no-cookies .no-cookies, html.no-backgroundblendmode .no-backgroundblendmode, html.no-backgroundcliptext .no-backgroundcliptext, html.no-csscalc .no-csscalc, html.no-csscolumns .no-csscolumns, html.no-batteryapi .no-batteryapi, html.no-cssfilters .no-cssfilters, html.no-ligatures .no-ligatures, html.no-flash .no-flash {
  display: inline-block;
  font-weight: bold;
}
html.no-flexbox .no-flexbox:before, html.no-touch .no-touch:before, html.no-js .no-js:before, html.no-mediaqueries .no-mediaqueries:before, html.no-cookies .no-cookies:before, html.no-backgroundblendmode .no-backgroundblendmode:before, html.no-backgroundcliptext .no-backgroundcliptext:before, html.no-csscalc .no-csscalc:before, html.no-csscolumns .no-csscolumns:before, html.no-batteryapi .no-batteryapi:before, html.no-cssfilters .no-cssfilters:before, html.no-ligatures .no-ligatures:before, html.no-flash .no-flash:before {
  content: "";
  background: #ec5463;
  margin: 0 5px 0 0;
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 20px;
  position: relative;
  top: -1px;
}

@media print {
  /* Print =================================================== */
  * {
    background: transparent !important;
    color: black !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important;
  }
  @page {
    margin: 0.5cm;
  }
  h2, h3 {
    orphans: 3;
    widows: 3;
    page-break-after: avoid;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  pre, blockquote {
    border: 1px solid #a1a1a1;
    page-break-inside: avoid;
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr {
    page-break-inside: avoid;
  }
}

.extra-bold {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

/*# sourceMappingURL=style.css.map */