@charset "UTF-8";
/**
 * Calculate the REM value.
 *
 * @param  String - ex: 12px
 * @return String - ex: 1rem
 */
/**
 * Calculate the font size and line height in REM units.
 *
 * @param  String - ex: 12px
 * @param  Int - default: 1.2
 */
/**
 * Simple way to give shared attributes for different font families.
 */
/**
 * Feed in a string to set mobile breakpoint styles. Strings that
 * relate to breakpoints are defined ./_variables.scss.
 *
 * @param  String
 * @param  String - default: 'min'
 */
/**
 * Shared padding for container elements. Not used everywhere, but
 * certainly used in most places to give breathing room on mobile.
 */
/**
 * Create a link that covers the entire parent element and all its
 * contents. This is useful for making media blocks (image + txt)
 * fully click-able. Be sure to add `aria-label` to link.
 */
/**
 * These two are separated out for the cases where a parent element
 * receives the :hover but the child needs to respond.
 */
/**
 * Make that scrollbar go away. Nobody likes it anyhow but it just
 * won't get the message. I've sent it chunks of coal for Christmas
 * and yet the poor bugger keeps showing up for dinner.
 */
/**
 * Primarily used by free floating <p> elements to keep them from going full screen.
 */
/*
 * Reference for current font sizes and line heights found here:
 * http://typecast.com/blog/a-more-modern-scale-for-web-typography
 */
@font-face {
  font-family: "Geomanist";
  src: url("../fonts/geomanist-regular-webfont.woff2") format("woff2"), url("../fonts/geomanist-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geomanist";
  src: url("../fonts/geomanist-medium-webfont.woff2") format("woff2"), url("../fonts/geomanist-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geomanist";
  src: url("../fonts/geomanist-bold-webfont.woff2") format("woff2"), url("../fonts/geomanist-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geomanist";
  src: url("../fonts/geomanist-black-webfont.woff2") format("woff2"), url("../fonts/geomanist-black-webfont.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geomanist";
  src: url("../fonts/geomanist-regular-italic-webfont.woff2") format("woff2"), url("../fonts/geomanist-regular-italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Geomanist";
  src: url("../fonts/geomanist-medium-italic-webfont.woff2") format("woff2"), url("../fonts/geomanist-medium-italic-webfont.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Geomanist";
  src: url("../fonts/geomanist-bold-italic-webfont.woff2") format("woff2"), url("../fonts/geomanist-bold-italic-webfont.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Geomanist";
  src: url("../fonts/geomanist-black-italic-webfont.woff2") format("woff2"), url("../fonts/geomanist-black-italic-webfont.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
body {
  font-family: "Geomanist";
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #000;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (min-width: 759px) {
  body {
    font-size: 1rem;
    line-height: 1.2;
  }
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: "Geomanist", sans-serif;
}

h1, h2, h3 {
  font-weight: 700;
}
h1.strong, h2.strong, h3.strong {
  font-weight: 900;
}

h4, h5, h6 {
  font-weight: 500;
}
h4.strong, h5.strong, h6.strong {
  font-weight: 700;
}

b, strong {
  font-weight: 500;
}

.wysiwyg a {
  text-decoration: underline;
}
.wysiwyg-alt a {
  color: #DA291C;
}

a:hover {
  cursor: pointer;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.25;
}
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 4.5rem;
    line-height: 1.2;
  }
}
h1.display-1 {
  font-size: 3rem;
  line-height: 0.9;
}
@media only screen and (min-width: 1024px) {
  h1.display-1 {
    font-size: 6rem;
    line-height: 0.9375;
  }
}

h2 {
  font-size: 3rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 3.75rem;
    line-height: 1.2;
  }
}

h3 {
  font-size: 2rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) {
  h3 {
    font-size: 3rem;
    line-height: 1.2;
  }
}

h4 {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) {
  h4 {
    font-size: 2.25rem;
    line-height: 1.2;
  }
}

h5 {
  font-size: 1.25rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) {
  h5 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}

h6 {
  font-size: 1.125rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) {
  h6 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

p {
  margin-top: 0;
  margin-bottom: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 400;
}
p.paragraph-2 {
  font-size: 1rem;
  line-height: 1.2;
}

p.micro,
span.micro,
i.micro,
a.micro {
  font-size: 0.625rem;
  line-height: 1.2;
}
p.small,
span.small,
i.small,
a.small {
  font-size: 0.8125rem;
  line-height: 1.2;
}
p.large,
span.large,
i.large,
a.large {
  font-size: 1.125rem;
  line-height: 1.2;
}
p b,
span b,
i b,
a b {
  font-weight: 700;
}

blockquote {
  font-size: 1.25em;
  /* 20px / 16px */
  line-height: 1.25;
  /* 25px / 20px */
  margin: 0 0 1rem;
}
@media only screen and (min-width: 759px) {
  blockquote {
    font-size: 1.5em;
    /* 24px / 16px = */
    line-height: 1.45833333;
    /* 35px / 24px */
  }
}
blockquote cite {
  font-size: 0.8125rem;
}
blockquote cite::before {
  content: "— ";
}

.txt-bold,
.bold {
  font-weight: 700;
}

.white {
  color: white;
  text-shadow: 0 0 7px #000;
  font-weight: 800;
}

.black {
  color: black;
}

.uppercase {
  text-transform: uppercase;
}

.ui-element-0, .ui-element-1, .ui-element-2, .ui-element-3, .ui-element-4 {
  font-family: "Geomanist";
}
.ui-element-0 {
  font-size: 1.25rem;
  line-height: 1.2;
}
.ui-element-1, .ui-element-2 {
  font-size: 1.125rem;
  line-height: 1.2;
}
.ui-element-1 {
  font-weight: 500;
}
.ui-element-2, .ui-element-3, .ui-element-4 {
  font-weight: 400;
}
.ui-element-3 {
  font-size: 0.875rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.ui-element-4 {
  font-size: 0.75rem;
  line-height: 1.2;
}

p a {
  text-decoration: underline;
  color: #DA291C;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
p a:hover {
  border-radius: 2px;
  background-color: #FA3F20;
  color: #fff;
  text-decoration: none;
}
p a:focus, p a:focus-visible {
  background-color: #FA3F20;
  color: #fff;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px #8B5CD7;
          box-shadow: 0 0 0 3px #8B5CD7;
  border-radius: 2px;
  text-decoration: none;
}

body {
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  position: relative;
}
img *,
img ::before,
img ::after {
  position: relative;
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
}

.main,
.section {
  width: 100%;
  max-width: 1408px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}
.main *,
.main ::before,
.main ::after,
.section *,
.section ::before,
.section ::after {
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .main__mobile-full-width,
.section__mobile-full-width {
    width: 100vw;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.section {
  margin-bottom: 48px;
}

.full-width-section + .section {
  margin-top: 48px;
}

section[role=main] {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  section[role=main] {
    padding-left: 96px;
    padding-right: 96px;
  }
}

.content-container {
  position: relative;
}
.content-container *,
.content-container ::before,
.content-container ::after {
  position: relative;
}
.content-container ul, .content-container ol {
  padding-left: 20px;
}
.content-container ul li, .content-container ol li {
  margin-bottom: 4px;
}
.content-container ul.blocks-gallery-grid, .content-container ol.blocks-gallery-grid {
  padding-left: 0;
}
.content-container ul {
  list-style: disc;
}
.content-container ol {
  list-style: decimal;
}

.no-scroll {
  overflow: hidden;
  height: auto;
}

.full-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.full-bg.scale {
  background-size: auto 110%;
  -webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.full-bg.scale:hover, .full-bg.scale:focus {
  background-size: auto 100%;
}

.picture-box {
  position: relative;
}
.picture-box picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.picture-box picture img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin: 0 auto;
}
.picture-box picture:after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 100%);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
}
.picture-box:hover picture img, .picture-box:focus picture img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.picture-box:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 75%;
}
.picture-box > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.picture-box picture {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
.picture-box span {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: block;
  padding: 0.9375rem;
  color: #fff;
  text-transform: uppercase;
  font-family: "Geomanist";
  font-weight: 700;
}

.img-ratio {
  position: relative;
  overflow: hidden;
}
.img-ratio:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 78.1609195402%;
}
.img-ratio > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.img-ratio .content {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 100%);
}
.img-ratio a {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.img-ratio span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: white;
  width: 100%;
  font-family: "Geomanist";
  font-weight: 700;
}
.img-ratio .img-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-size: cover;
  background-position: center;
  -webkit-transition: all 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.img-ratio:hover .img-block {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.rel {
  position: relative !important;
}

.centered-title {
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (min-width: 759px) {
  .centered-title {
    margin-bottom: 20px;
  }
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

.gray-bg {
  background-color: #f2f2f2;
}

.spacer-block {
  display: block;
  height: 50px;
}
.spacer-block__medium {
  height: 75px;
}
.spacer-block__large {
  height: 100px;
}

.full-size-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media only screen and (min-width: 759px) {
  .narrow-width {
    max-width: 85%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .narrow-width {
    max-width: 49.5%;
  }
}

.hidden {
  display: none !important;
}

.who-we-are-vid {
  margin: -70px 0;
}

.visit-downtown-video {
  width: 80%;
  margin: 0 auto;
}

/**
 * Please don't use these on the theme and template. They are intended
 * for use within the WP Gutenberg Editor's Advanced Tab.
 */
.has-padding {
  padding: 30px;
}

.sr-only {
  display: block;
  height: 0;
}

.full-width-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw;
}

.full-width-section__inner {
  width: 100%;
  max-width: 1408px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  .full-width-section__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .mobile-only {
    display: none !important;
    visibility: hidden;
  }
}

@media only screen and (max-width: 1023px) {
  .desktop-only {
    display: none !important;
    visibility: hidden;
  }
}

/**
 * Custom colors for theme. These are set within the WP editor and added
 * by WP as class names to elements after rendering HTML.
 */
.has-text-color {
  /* universally shared class name */
}

.has-black-color {
  color: #000 !important;
}

.has-white-color {
  color: #fff !important;
}

.has-lightest-gray-color {
  color: #f2f2f2 !important;
}

.has-light-gray-color {
  color: #dadada !important;
}

.has-gray-color {
  color: #999 !important;
}

.has-medium-gray-color {
  color: #6b6f70 !important;
}

.has-charcoal-color {
  color: #484f55 !important;
}

.has-light-green-color {
  color: #b0b795 !important;
}

.has-dark-green-color {
  color: #0e4634 !important;
}

.has-violet-color {
  color: #635dc7 !important;
}

.has-orange-color {
  color: #e3540c !important;
}

.has-taupe-color {
  color: #d7c69e !important;
}

.has-salmon-color {
  color: #ccb4a8 !important;
}

.has-silver-color {
  color: #d6dee1 !important;
}

.has-dark-silver-color {
  color: #c1c6ca !important;
}

.has-red-color {
  color: #e0271d !important;
}

.has-background {
  /* universally shared class name */
}

.has-black-background-color {
  background-color: #000 !important;
}

.has-white-background-color {
  background-color: #fff !important;
}

.has-lightest-gray-background-color {
  background-color: #f2f2f2 !important;
}

.has-light-gray-background-color {
  background-color: #dadada !important;
}

.has-gray-background-color {
  background-color: #999 !important;
}

.has-medium-gray-background-color {
  background-color: #6b6f70 !important;
}

.has-charcoal-background-color {
  background-color: #484f55 !important;
}

.has-light-green-background-color {
  background-color: #b0b795 !important;
}

.has-dark-green-background-color {
  background-color: #0e4634 !important;
}

.has-violet-background-color {
  background-color: #635dc7 !important;
}

.has-orange-background-color {
  background-color: #e3540c !important;
}

.has-taupe-background-color {
  background-color: #d7c69e !important;
}

.has-salmon-background-color {
  background-color: #ccb4a8 !important;
}

.has-silver-background-color {
  background-color: #d6dee1 !important;
}

.has-dark-silver-background-color {
  background-color: #c1c6ca !important;
}

.has-red-background-color {
  background-color: #e0271d !important;
}

.a11y-skip-to-content {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  width: 100vw;
  height: 0;
  padding: 15px 0;
  display: block;
  text-align: center;
}
.a11y-skip-to-content:focus {
  opacity: 1;
  pointer-events: auto;
  background-color: #DA291C;
  color: white;
  z-index: 99;
  height: auto;
  height: initial;
}

.adny-media-block {
  background: #d6dee1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px;
}
@media only screen and (min-width: 759px) {
  .adny-media-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.adny-media-block picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.adny-media-block picture img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin: 0 auto;
}
.adny-media-block picture:after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 100%);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
}
.adny-media-block:hover picture img, .adny-media-block:focus picture img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.adny-media-block a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.adny-media-block__image {
  width: 100%;
}
@media only screen and (min-width: 759px) {
  .adny-media-block__image {
    width: calc(50% - 0.63rem);
  }
}
.adny-media-block__content {
  width: 100%;
  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;
  padding: 30px;
}
@media only screen and (min-width: 759px) {
  .adny-media-block__content {
    width: calc(50% + 0.63rem);
  }
}
.adny-media-block__title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.9375rem;
}
.adny-media-block__eyebrow {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.9375rem;
}
.adny-media-block__cta {
  font-family: "Geomanist";
  font-weight: 700;
  text-transform: uppercase;
  color: #DA291C;
}

.blogroll {
  margin-bottom: 60px;
}
@media only screen and (min-width: 1024px) {
  .blogroll {
    margin-top: 60px;
  }
}
.blogroll__entries, .blogroll__featured-categories {
  margin: 0 15px;
}
@media only screen and (min-width: 375px) {
  .blogroll__entries, .blogroll__featured-categories {
    margin: 0 30px;
  }
}
@media only screen and (min-width: 759px) {
  .blogroll__entries, .blogroll__featured-categories {
    margin: 0 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .blogroll__entries, .blogroll__featured-categories {
    margin: 0 15px;
  }
}
.blogroll__entry {
  padding: 40px 0;
  border-bottom: 1px solid #dadada;
}
.blogroll__entry:first-of-type {
  padding-top: 0;
}
.blogroll__entry:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
@media only screen and (min-width: 1024px) {
  .blogroll__entry {
    border-bottom: none;
    padding: 20px 0;
  }
}
.blogroll__entry h2 {
  font-family: "Geomanist";
  font-weight: 700;
}
@media only screen and (min-width: 1024px) {
  .blogroll__entry h2 {
    font-size: 1.625rem;
    line-height: 1.2;
  }
}
.blogroll__entry a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.blogroll__entry picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.blogroll__entry picture img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin: 0 auto;
}
.blogroll__entry picture:after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 100%);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
}
.blogroll__entry:hover picture img, .blogroll__entry:focus picture img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media only screen and (min-width: 1024px) {
  .blogroll__entry picture {
    max-height: 221px;
  }
}
.blogroll__entry picture img {
  position: relative;
}
.blogroll__entry-meta {
  color: #5d6263;
  display: block;
}
.blogroll__entry-meta:last-of-type {
  margin-bottom: 15px;
}
.blogroll__entry--feature {
  background: #f2f2f2;
  padding: 30px;
  border-bottom: none;
}
@media only screen and (min-width: 1024px) {
  .blogroll__entry--feature:nth-child(odd) {
    padding: 60px;
    padding-right: 30px;
  }
  .blogroll__entry--feature:nth-child(even) {
    padding: 60px;
    padding-left: 30px;
  }
}
.blogroll__entry--feature picture {
  max-height: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blogroll__entry--feature h2 {
  color: #DA291C;
}
.blogroll__entry--feature .blogroll__entry-meta:first-of-type {
  color: #000;
}

p.btn > a,
:not(p).btn,
.wp-block-button__link {
  background: #DA291C;
  width: 100%;
  display: block;
  padding: 15px 80px 15px 30px;
  font-family: "Geomanist", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15rem;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1024px) {
  p.btn > a,
:not(p).btn,
.wp-block-button__link {
    white-space: nowrap;
    padding: 25px 80px 25px 30px;
    font-size: 1.125rem;
    line-height: 1.2;
  }
}
p.btn > a span,
:not(p).btn span,
.wp-block-button__link span {
  position: relative;
}
p.btn > a span:after,
:not(p).btn span:after,
.wp-block-button__link span:after {
  height: 2px;
  width: 0;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #000;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
p.btn > a:before,
:not(p).btn:before,
.wp-block-button__link:before {
  height: 2px;
  width: 0;
  content: "";
  position: absolute;
  top: calc(50% + 13px);
  right: 40px;
  background-color: #000;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
p.btn > a::after,
:not(p).btn::after,
.wp-block-button__link::after {
  content: "";
  background-image: url("../img/arrow-right-white.png");
  background-size: contain;
  width: 10px;
  height: 9px;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1024px) {
  p.btn > a::after,
:not(p).btn::after,
.wp-block-button__link::after {
    width: 15px;
    height: 13px;
    right: 35px;
  }
}
p.btn > a:hover,
:not(p).btn:hover,
.wp-block-button__link:hover {
  color: #000;
}
p.btn > a:hover:before,
:not(p).btn:hover:before,
.wp-block-button__link:hover:before {
  width: 15px;
}
p.btn > a:hover::after,
:not(p).btn:hover::after,
.wp-block-button__link:hover::after {
  background-image: url("../img/arrow-right-black.png");
  right: 40px;
}
p.btn > a:hover span:after,
:not(p).btn:hover span:after,
.wp-block-button__link:hover span:after {
  width: 98%;
}
p.btn > a.alt,
:not(p).btn.alt,
.wp-block-button__link.alt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 120px;
}
p.btn > a.alt::after,
:not(p).btn.alt::after,
.wp-block-button__link.alt::after {
  background-image: url("../img/play-button.png");
  height: 25px;
  width: 25px;
  -webkit-transition: none;
  transition: none;
  right: 35px;
}
p.btn > a.alt::before,
:not(p).btn.alt::before,
.wp-block-button__link.alt::before {
  display: none;
}
p.btn > a.alt:hover::after,
:not(p).btn.alt:hover::after,
.wp-block-button__link.alt:hover::after {
  background-image: url("../img/play-button-black.png");
}
p.btn > a--no-icon::after, p.btn > a--no-icon::before,
:not(p).btn--no-icon::after,
:not(p).btn--no-icon::before,
.wp-block-button__link--no-icon::after,
.wp-block-button__link--no-icon::before {
  display: none;
}
p.btn > a--auto,
:not(p).btn--auto,
.wp-block-button__link--auto {
  width: auto;
  display: inline-block;
}
@media only screen and (min-width: 759px) {
  p.btn > a--medium,
:not(p).btn--medium,
.wp-block-button__link--medium {
    max-width: 50%;
  }
}
p.btn > a--no-animation:hover:before,
:not(p).btn--no-animation:hover:before,
.wp-block-button__link--no-animation:hover:before {
  width: 0;
}
p.btn > a--no-animation:hover::after,
:not(p).btn--no-animation:hover::after,
.wp-block-button__link--no-animation:hover::after {
  background-image: none;
  right: 0;
}
p.btn > a--no-animation:hover span:after,
:not(p).btn--no-animation:hover span:after,
.wp-block-button__link--no-animation:hover span:after {
  display: none;
}
p.btn > a--link,
:not(p).btn--link,
.wp-block-button__link--link {
  background: transparent;
  display: inline;
  padding: 0;
  width: auto;
  color: #DA291C;
  font-size: inherit;
  text-transform: none;
  font-weight: normal;
  line-height: inherit;
  -webkit-transition: none;
  transition: none;
  white-space: normal;
  text-align: inherit;
  font-family: inherit;
  letter-spacing: inherit;
}
p.btn > a--link:hover,
:not(p).btn--link:hover,
.wp-block-button__link--link:hover {
  text-decoration: underline;
  color: #DA291C;
}
p.btn > a--link::after, p.btn > a--link::before,
:not(p).btn--link::after,
:not(p).btn--link::before,
.wp-block-button__link--link::after,
.wp-block-button__link--link::before {
  display: none;
}

.button-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid #000;
  background: #000;
  /* Shadow/xs */
  -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
          box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  color: #fff !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button-primary:hover {
  background-color: #DA291C;
  border-color: #DA291C;
}
.button-lg {
  padding: 8px 16px;
}

.btn--no-before::before {
  display: none !important;
}

.btn--no-after::after {
  display: none !important;
}

.cky-consent-container {
  width: 100% !important;
}
@media only screen and (min-width: 560px) {
  .cky-consent-container {
    max-width: 480px;
  }
}
@media only screen and (min-width: 1024px) {
  .cky-consent-container {
    max-width: 600px;
  }
}
.cky-consent-container * {
  color: white !important;
}
.cky-consent-container .cky-consent-bar {
  background: #BF0D02 !important;
  border: 0 !important;
  padding: 20px 30px;
}
.cky-consent-container .cky-title, .cky-consent-container .cky-notice-des {
  margin-bottom: 16px !important;
}
@media only screen and (min-width: 1024px) {
  .cky-consent-container .cky-title, .cky-consent-container .cky-notice-des {
    margin-bottom: 24px !important;
  }
}
.cky-consent-container .cky-title {
  font-size: 18px;
  font-weight: 700;
}
.cky-consent-container .cky-notice-des * {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}
.cky-consent-container .cky-notice-btn-wrapper {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
@media only screen and (min-width: 1024px) {
  .cky-consent-container .cky-notice-btn-wrapper {
    gap: 16px;
  }
}
.cky-consent-container .cky-notice-btn-wrapper button {
  border-radius: 8px;
  border-width: 1px;
  margin: 0;
  font-weight: 400;
  padding: 8px 16px;
  font-size: 14px;
}
@media only screen and (min-width: 1024px) {
  .cky-consent-container .cky-notice-btn-wrapper button {
    padding: 16px 32px;
    font-size: 16px;
  }
}
.cky-consent-container .cky-notice-btn-wrapper button.cky-btn-customize {
  border-color: white !important;
}
.cky-consent-container .cky-notice-btn-wrapper button.cky-btn-reject, .cky-consent-container .cky-notice-btn-wrapper button.cky-btn-accept {
  border: 1px solid #1E1E1E !important;
  background: #1E1E1E !important;
}

.cky-modal .cky-preference-header {
  padding: 14px 16px;
  border-color: #D0D5DD;
}
@media only screen and (min-width: 1024px) {
  .cky-modal .cky-preference-header {
    padding: 22px 24px;
  }
}
.cky-modal .cky-preference-body-wrapper {
  padding: 0 16px;
  border-color: #D0D5DD;
}
@media only screen and (min-width: 1024px) {
  .cky-modal .cky-preference-body-wrapper {
    padding: 0 24px;
  }
}
.cky-modal .cky-preference-body-wrapper .cky-preference-content-wrapper * {
  font-size: 14px;
  line-height: 24px;
  color: #1E1E1E !important;
}
.cky-modal .cky-preference-body-wrapper .cky-preference-content-wrapper .cky-show-desc-btn {
  color: #1E1E1E !important;
  font-weight: 700;
  text-decoration: underline;
}
.cky-modal .cky-preference-body-wrapper .cky-accordion-wrapper .cky-always-active {
  color: #1E1E1E !important;
  font-weight: 700 !important;
  text-decoration: underline;
}
.cky-modal .cky-preference-body-wrapper .cky-accordion-wrapper .cky-chevron-right {
  border-color: #1E1E1E;
}
.cky-modal .cky-preference-body-wrapper .cky-accordion-wrapper .cky-switch input:checked {
  background-color: #BF0D02 !important;
}
.cky-modal .cky-footer-shadow {
  display: none;
}
.cky-modal .cky-prefrence-btn-wrapper {
  border-color: #D0D5DD;
  gap: 8px;
}
.cky-modal .cky-prefrence-btn-wrapper button {
  border-radius: 8px;
  margin: 0;
  font-weight: 400;
  padding: 16px;
  font-size: 14px;
  border: 0;
  color: #fff !important;
  background-color: #BF0D02 !important;
}
@media only screen and (min-width: 1024px) {
  .cky-modal .cky-prefrence-btn-wrapper button {
    font-size: 16px;
  }
}

.fa {
  font-size: 55px;
  color: #000;
  margin: 10px 0px 10px 15px;
}

.footer {
  background: #1E1E1E;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  .footer {
    padding-left: 96px;
    padding-right: 96px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer {
    padding: 60px 0;
  }
}
.footer__logo svg {
  height: 96px;
  width: 81px;
  fill: #fff;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media only screen and (min-width: 1024px) {
  .footer__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.footer__col-subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.footer__col-title {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.286;
  color: #fff;
  font-weight: 400;
  margin-bottom: 16px;
}
.footer__navigate .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.125;
  color: #fff;
  font-weight: 400;
}
.footer__navigate .menu a {
  text-transform: uppercase;
}
.footer__about .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
  line-height: 1.286;
  color: #B59D9D;
  font-weight: 400;
}
.footer__primary {
  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;
  padding-bottom: 25px;
  border-bottom: 1px solid #384048;
}
@media only screen and (min-width: 1024px) {
  .footer__primary {
    -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;
  }
}
@media only screen and (max-width: 1023px) {
  .footer__primary {
    gap: 25px;
  }
}
.footer__secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .footer__secondary {
    -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;
  }
}
@media only screen and (max-width: 1023px) {
  .footer__secondary {
    gap: 25px;
  }
}
.footer__secondary .footer__terms .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}
@media only screen and (max-width: 1023px) {
  .footer__secondary .footer__terms .menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__secondary .footer__terms .menu a {
  text-decoration: underline;
}
.footer__col-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
}
.footer__col-address .footer__address {
  color: #fff;
}
.footer__col-address .footer__address, .footer__col-address .footer__address p {
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 400;
}
.footer__copyright, .footer__terms {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 400;
}
.footer__subscribe-form {
  position: relative;
}
.footer__subscribe-icon, .footer__subscribe-btn {
  position: absolute;
  z-index: 50;
}
.footer__subscribe-icon {
  left: 13.5px;
  top: 16px;
}
.footer__subscribe-btn {
  top: 6px;
  right: 6px;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
  text-align: center;
  padding: 6px 10px;
  background: #CF2E2E;
  border-radius: 4px;
}
.footer__subscribe-input {
  background: #282A32;
  border: 1px solid #384048;
  border-radius: 8px;
  padding: 12px 84px 12px 39px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .footer__subscribe-input {
    min-width: 288px;
  }
}
.footer__subscribe-input::-webkit-input-placeholder {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
}
.footer__subscribe-input::-moz-placeholder {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
}
.footer__subscribe-input:-ms-input-placeholder {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
}
.footer__subscribe-input::-ms-input-placeholder {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
}
.footer__subscribe-input::placeholder {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
}

.content-container .form {
  background: #d6dee1;
  padding: 50px 20px;
}
.content-container .form__inner {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}
.content-container .form input {
  display: block;
  margin-bottom: 10px;
  /*
  &[type="email"] {}
  &[type="url"] {}
  &[type="password"] {}
  &[type="search"] {}
  &[type="tel"] {}
  &[type="number"] {}
  &[type="range"] {}
  &[type="datetime-local"] {}
  &[type="month"] {}
  &[type="time"] {}
  &[type="week"] {}
  &[type="date"] {}
  &[type="color"] {}
  */
}
.content-container .form input[type=text] {
  border: none;
  background: #fff;
  color: #000;
  font-family: "Geomanist";
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 10px;
  width: 100%;
  padding: 10px;
  height: auto;
}
.content-container .form input[type=submit] {
  background: #DA291C;
  width: auto;
  display: block;
  padding: 10px 30px;
  font-family: "Geomanist", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.15em;
  font-size: 1.125rem;
  line-height: 1.2;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.content-container .form input[type=checkbox] {
  width: 20px;
  display: inline-block;
}
.content-container .form input[type=file] {
  background: none;
}
.content-container .form select {
  border: none;
  background: #fff;
  color: #000;
  font-family: "Geomanist";
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 10px;
  margin-bottom: 10px;
  width: 100%;
  height: auto;
  /* hide the default browser cta button for <select> objects */
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.content-container .form label {
  display: block;
  margin-bottom: 10px;
}
.content-container .form__context {
  font-size: 12px;
  margin-bottom: 10px;
}
.content-container .form__group--has-addon-appended input[type=text] {
  padding-right: 49px;
}
.content-container .form__group--has-addon-prepended input[type=text] {
  padding-left: 49px;
}
.content-container .form__group--checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content-container .form__group--checkbox label {
  margin-left: 0.5rem;
}
.content-container .form__addon {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 39px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #cecece;
  pointer-events: none;
  cursor: default;
}
.content-container .form__addon--append {
  right: 0;
}
.content-container .form__addon--prepend {
  left: 0;
}
.content-container .form__addon--select {
  background: transparent url("../svg/chevron-down-solid.svg") center 40% no-repeat;
  background-size: 13px;
}

#main-content {
  margin-top: 120px;
}
@media only screen and (min-width: 1024px) {
  #main-content {
    margin-top: 168px;
  }
}
#main-content.events-page {
  margin-top: 160px;
}
@media only screen and (min-width: 1024px) {
  #main-content.events-page {
    margin-top: 208px;
  }
}

.admin-bar .header:not(.header--scrolled) {
  margin-top: 46px !important;
}
@media only screen and (min-width: 1024px) {
  .admin-bar .header:not(.header--scrolled) {
    margin-top: 32px !important;
  }
}

.header {
  position: relative;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: background 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 10;
  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;
}
.header *,
.header ::before,
.header ::after {
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .header {
    padding-top: 24px;
    padding-bottom: 24px;
    min-height: 168px;
    background: transparent;
    position: absolute;
    top: 0;
    padding-left: 96px;
    padding-right: 96px;
  }
}
@media only screen and (max-width: 1023px) {
  .header--scrolled {
    background: #DA291C;
  }
  .header--scrolled .header__inner.top-inner {
    height: 60px;
  }
}
@media only screen and (max-width: 1023px) {
  .header--scrolled .header__logo svg {
    width: 30px;
  }
}
.header--scrolled .header__logo svg .st0,
.header--scrolled .header__logo svg .st1 {
  fill: #fff;
}
@media only screen and (min-width: 1024px) {
  .header--scrolled .header__logo svg .st0,
.header--scrolled .header__logo svg .st1 {
    fill: #fff;
  }
}
.header > nav {
  min-height: 72px;
}
.header .nav {
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  overflow-y: scroll;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 100;
  background-color: #DA291C;
}
@media only screen and (min-width: 1024px) {
  .header .nav {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: unset;
    top: auto;
    left: auto;
    height: auto;
    background: none;
    opacity: 1;
    pointer-events: auto;
    overflow-y: visible;
  }
}
.header--expanded {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #DA291C;
}
.header--expanded .header-nav-container {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: absolute;
  top: 120px;
  left: 0;
}
@media only screen and (min-width: 1024px) {
  .header--expanded .header-nav-container {
    top: initial;
    position: initial;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .header--expanded .header__top-nav {
    display: block !important;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.header--expanded .header__top-nav .menu {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}
@media only screen and (min-width: 1024px) {
  .header--expanded .header__top-nav .menu {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
}
@media only screen and (min-width: 1024px) {
  .header--expanded {
    background: none;
    height: auto;
    padding-bottom: 0;
  }
}
.header--expanded .b31cef4d-f6bd-461d-b5e2-d511dd32f023 {
  fill: #000;
}
@media only screen and (max-width: 1023px) {
  .header--expanded .top-inner {
    background-color: #DA291C;
    min-height: 67px;
  }
}
.header--expanded nav {
  overflow: initial;
}
@media only screen and (max-width: 1023px) {
  .header--expanded nav {
    height: 100vh;
    background: #DA291C;
    overflow: auto;
  }
}
.header--expanded .nav {
  pointer-events: auto;
  opacity: 1;
}
@media only screen and (max-width: 1023px) {
  .header--expanded .nav {
    background-color: #DA291C;
  }
}
@media only screen and (max-width: 1023px) {
  .header--expanded .header__logo svg {
    width: 60px;
  }
  .header--expanded .header__logo svg .st0 {
    fill: #DA291C;
  }
}
.header--expanded .header__logo svg .st0,
.header--expanded .header__logo svg .st1 {
  fill: #fff;
}
@media only screen and (min-width: 1024px) {
  .header--expanded .header__logo svg .st0,
.header--expanded .header__logo svg .st1 {
    fill: #DA291C;
  }
}
.header--expanded .header__hamburger > span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 3.071px;
}
.header--expanded .header__hamburger > span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -2.929px;
}
.header--expanded .header__hamburger > span:nth-child(3) {
  display: none;
}
.header--expanded .header__mega-wrap {
  display: none;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  opacity: 1;
  pointer-events: auto;
  max-height: none;
}
@media only screen and (min-width: 1024px) {
  .header--expanded .header__mega-wrap {
    display: block;
  }
}
.header--expanded .header__nav-mega {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .header--expanded .header__nav-mega {
    opacity: 1;
  }
}
.header--expanded .header__nav-top > a {
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  .header--expanded .header__nav-top > a {
    color: #000;
    padding: 0;
  }
}
.header--expanded .header__nav-top > a .header__nav-item-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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
}
@media only screen and (min-width: 1024px) {
  .header--expanded .header__nav-top > a .header__nav-item-content {
    padding: 0;
  }
}
.header--expanded .header__nav-top:nth-last-child(2) #fugacious-container {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .header--expanded .header__nav-top:not(:nth-last-child(2)) > a span {
    border-bottom: 1px solid #ED7169;
  }
}
@media only screen and (min-width: 1024px) {
  .header--expanded .header__nav-top--active > a {
    color: #DA291C;
  }
  .header--expanded .header__nav-top--active > a::after {
    background-color: inherit;
  }
}
.header--expanded .header__nav-top--active svg:not(.header__search-btn) {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.header--expanded .floaties {
  display: block !important;
}
@media only screen and (max-width: 1023px) {
  .header--expanded .floaties {
    display: none !important;
  }
}
.header #fugacious-container .header__nav-item > a {
  padding: 16px 0;
}
.header__nav-item > a {
  margin-bottom: 0;
  display: block;
  color: #000;
}
@media only screen and (min-width: 1024px) {
  .header__nav-item > a {
    padding: 0;
  }
}
.header__nav-top {
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .header__nav-top {
    width: auto;
  }
}
.header__nav-top:last-of-type {
  margin: 0;
}
.header__nav-top > a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #1E1E1E;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  line-height: 1.2;
  margin-bottom: 0;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__nav-top > a::after {
  content: "";
  display: none;
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 5px;
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  .header__nav-top > a::after {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .header__nav-top > a {
    padding: 0;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.2;
    line-height: 1.2;
    border-bottom: none;
  }
}
.header__nav-top > a svg:not(.header__search-btn) {
  width: 20px;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 250ms;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 250ms;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 250ms;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 250ms, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 250ms;
}
@media only screen and (min-width: 1024px) {
  .header__nav-top > a svg:not(.header__search-btn) {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .header__nav-top > a:hover {
    color: #DA291C;
  }
}
.header__nav-top > a:hover::after {
  background-color: #000;
}
@media only screen and (min-width: 1024px) {
  .header__nav-top > a:hover::after {
    background-color: #000;
  }
}
@media only screen and (min-width: 1024px) {
  .header__nav-top--active > a {
    color: #DA291C;
  }
  .header__nav-top--active > a::after {
    background-color: #DA291C;
  }
}
.header__nav-parent > a {
  color: #000;
  font-family: "Geomanist";
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) {
  .header__nav-parent > a {
    color: #fff;
    font-size: 1.75rem;
    line-height: 1.2;
    text-wrap: nowrap;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 !important;
  }
}
@media only screen and (min-width: 1024px) {
  .header__nav-child > a {
    color: #5d6263;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .header__nav-children {
    grid-auto-rows: 80px;
  }
}
.header__nav-bucket {
  padding: 0;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .header__nav-bucket {
    padding: 30px;
  }
}
.header__nav-bucket > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .header__nav-bucket > ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .header__nav-bucket {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background: transparent;
  }
}
.header__nav-bucket .header__nav-item-cta,
.header__nav-bucket .mobile-search-cta {
  width: 100%;
  margin-bottom: 24px;
  padding-right: 20px;
  padding-left: 20px;
}
@media only screen and (min-width: 1024px) {
  .header__nav-bucket .header__nav-item-cta,
.header__nav-bucket .mobile-search-cta {
    display: none;
  }
}
.header__nav-bucket .mobile-search-input {
  height: 56px;
  width: 100%;
  padding: 18px 140px 14px 20px;
  border-radius: 8px;
  border: 1px solid #98A2B3;
  background: #f2f4f7;
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.header__nav-bucket .mobile-search-input::-webkit-input-placeholder {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.header__nav-bucket .mobile-search-input::-moz-placeholder {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.header__nav-bucket .mobile-search-input:-ms-input-placeholder {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.header__nav-bucket .mobile-search-input::-ms-input-placeholder {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.header__nav-bucket .mobile-search-input::placeholder {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.header__nav-bucket .mobile-search-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: #fff;
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.5;
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 50;
}
.header__nav-bucket .mobile-search-cta-active {
  -webkit-transition: width 0.4s ease-out 0.1s;
  transition: width 0.4s ease-out 0.1s;
  top: 5px;
  width: 130px;
  right: 5px;
  height: 46px;
  padding: 11px 16px;
  background: #BF0D02;
  color: #fff;
}
.header__nav-bucket .mobile-search-cta-active svg path {
  stroke: #fff;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  top: 0;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  .header__inner {
    background-color: transparent;
    left: 0;
    right: 0;
  }
}
.header__inner.top-inner {
  width: 100%;
  max-width: 1408px;
  margin: 0 auto;
  min-height: 47px;
  z-index: 1;
  padding-top: 32px;
  padding-bottom: 16px;
  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;
  height: 120px;
}
@media only screen and (min-width: 1024px) {
  .header__inner.top-inner {
    padding: 0;
  }
}
.header__inner .header-nav-container {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .header__inner .header-nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__inner .header-nav-container .header__top-nav {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header__inner .header-nav-container .header__top-nav {
    display: block;
  }
}
.header__inner .header-nav-container .header__top-nav .menu {
  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;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (min-width: 1024px) {
  .header__inner .header-nav-container .header__top-nav .menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__inner .header-nav-container .header__top-nav .menu a {
  color: #fff;
  font-family: "Geomanist";
  font-size: 1rem;
  line-height: 1.2;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) {
  .header__inner .header-nav-container .header__top-nav .menu a {
    color: #1E1E1E;
  }
}
@media only screen and (max-width: 1023px) {
  .header__inner .header-nav-container .header__top-nav .menu .btn-stay-updated {
    background: #fff;
    border-color: #fff;
    color: #DA291C !important;
  }
}
.header__inner .main-nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
.header__inner .menu {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .header__inner .menu {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header__logo {
  z-index: 101;
}
@media only screen and (min-width: 1024px) {
  .header__logo {
    padding-left: 0;
  }
}
.header__logo svg {
  width: 60px;
  -webkit-transition: width 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: width 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__logo svg .st0,
.header__logo svg .st1 {
  fill: #DA291C;
}
@media only screen and (min-width: 1024px) {
  .header__logo svg {
    height: 125.628px;
    width: 106px;
  }
}
.header__search-trigger {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header__search-trigger {
    display: block;
  }
  .header__search-trigger *:not(a) {
    pointer-events: none;
  }
}
.header__search-btn {
  width: 24px;
  height: 24px;
}
.header__mobile-search {
  border: none;
  margin: 18px 0;
  display: none;
  pointer-events: none;
}
.header__mobile-search input[type=search],
.header__mobile-search input[type=text] {
  padding: 10px 48px 10px 10px;
  width: 100%;
}
.header__mobile-search input[type=submit],
.header__mobile-search button {
  position: absolute;
  width: 38px;
  height: 100%;
  background: #DA291C;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.header__mobile-search svg {
  fill: #fff;
  width: 13px;
}
.header__hamburger {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  pointer-events: auto;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
}
@media only screen and (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger > span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}
.header__mega-wrap {
  top: -47px;
  left: 0;
  width: 100%;
  background-color: #DA291C;
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header__mega-wrap {
    display: block;
    max-height: 0;
    overflow: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    position: relative;
    -webkit-transition: all 0.4s ease-out 0.1s;
    transition: all 0.4s ease-out 0.1s;
    top: 0;
    pointer-events: none;
  }
}
.header__nav-mega {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 48px;
  display: none;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
  z-index: 1;
}
.header__nav-mega::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}
@media only screen and (min-width: 1024px) {
  .header__nav-mega {
    display: block;
    position: relative;
    height: 100%;
    opacity: 0;
    padding: 96px;
  }
}
.header__nav-mega-inner {
  width: 100%;
}
.header__nav-mega-inner .nav-mega-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 36px;
}
.header__nav-cta-btn {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 1023px) {
  .header__nav-cta-btn {
    background: none !important;
    padding: 0 0 2px 0 !important;
    text-decoration: underline !important;
    color: #DA291C !important;
    border-bottom: 2px solid #DA291C !important;
    display: inline-block !important;
    width: auto !important;
    font-family: "Geomanist", sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: 0.15rem !important;
    text-decoration: none !important;
    letter-spacing: 0.07rem !important;
  }
}
.header__nav-cta {
  margin: 25px 0;
}
@media only screen and (min-width: 1024px) {
  .header__nav-cta {
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .header__nav-cta p {
    margin-bottom: 25px;
    line-height: 1.4em;
  }
}
@media only screen and (max-width: 1023px) {
  .header__nav-cta-btn {
    width: auto;
    padding: 15px 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .header__nav-cta-btn {
    margin-top: 50px;
  }
}
.header .nav-cta-block {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .header .nav-cta-block {
    background: #dadada;
    padding: 20px;
    margin-bottom: 50px;
  }
}
.header .nav-cta-block.active {
  display: block;
}
.header__search {
  width: 100%;
  max-width: 1408px;
  margin: 0 auto;
}
.header__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
.header__search-input {
  background: transparent;
  width: 100%;
  border-bottom: 2px solid #fff;
  padding: 14px 8px 8px;
}
.header__search-input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #fff;
}
.header__search-input::-moz-placeholder {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #fff;
}
.header__search-input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #fff;
}
.header__search-input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #fff;
}
.header__search-input, .header__search-input::placeholder {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #fff;
}
.header__search-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: #fff;
  color: #1E1E1E;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-appearance: none;
}
.header__search-submit svg {
  height: 24px;
  width: 24px;
}

@media only screen and (min-width: 1024px) {
  .has-alt-hero .header__nav-top > a {
    color: #000;
  }
}
@media only screen and (min-width: 1024px) {
  .has-alt-hero .header__logo .st1 {
    fill: #000;
  }
}
.has-alt-hero .b31cef4d-f6bd-461d-b5e2-d511dd32f023 {
  fill: #000;
}

.header__mobile-search input {
  -webkit-appearance: none;
  border-radius: 0;
  background: #fff;
}
.header__mobile-search #mobile-search-trigger {
  -webkit-appearance: none;
}

#fugacious-container {
  background: #f2f4f7;
  padding: 48px 20px;
}
#fugacious-container .nav-cta-block {
  display: none !important;
  visibility: hidden !important;
}
#fugacious-container .header__nav-parent {
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1023px) {
  #fugacious-container .header__nav-parent:not(:last-child) > a {
    border-bottom: 1px solid #292D321A;
  }
}
#fugacious-container .header__nav-parent > a {
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
#fugacious-container .header__nav-sub-menu {
  padding-left: 2rem;
}

.nav-cta-block .contact-container {
  width: 90%;
  background: #000;
  color: #FFF;
  padding: 25px;
  text-align: center;
}
.nav-cta-block .contact-container form label {
  font-size: 1rem;
  line-height: 1rem;
  padding-bottom: 15px;
  letter-spacing: 0.1rem;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: bold;
}
.nav-cta-block .contact-container form input {
  width: 100%;
  padding: 15px;
  margin: 5px 0 20px 0;
}
.nav-cta-block .contact-container form button {
  width: 50%;
  margin: 0 auto;
  padding: 10px 0;
  background-color: #DA291C;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

.ie__warning {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 9999;
}
.ie__warning-content {
  padding: 10px;
  width: 100%;
  width: 100%;
  max-width: 1408px;
  margin: 0 auto;
  color: #fff;
}

.map {
  width: 100%;
  height: 100%;
  z-index: 2;
  /**
   * Mapbox default style overrides
   */
}
.map > * {
  position: static;
}
.map h3 {
  font-size: 1rem;
  line-height: 1.2;
  font-family: "Geomanist";
  font-weight: 700;
}
.map hr {
  margin: 10px 0;
}
.map a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.map__container {
  opacity: 0;
  color: #DA291C;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 2;
}
.map__loading {
  opacity: 0;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  -webkit-transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 3;
}
.map__loading svg {
  width: 100px;
}
.map__marker {
  position: static;
  width: 45px;
  height: 60px;
  pointer-events: none;
}
.map__marker--cursor > div {
  cursor: pointer;
}
.map__marker > div {
  background-image: url("../svg/mb-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 40px;
  pointer-events: auto;
}
.map__marker--active > div {
  background-image: url("../svg/mb-icon-active.png");
}
.map__popup {
  max-width: 200px;
}
.map__popup-content {
  text-align: center;
  font-family: "Open Sans", sans-serif;
}
.map--visible .map__container {
  opacity: 1;
}
.map--loading .map__loading {
  opacity: 0.7;
  pointer-events: auto;
}
.map .mapboxgl-popup-close-button {
  padding: 0 5px;
  font-size: 1.5rem;
  z-index: 10;
}
.map .mapboxgl-popup-content {
  padding: 20px;
  -webkit-box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.5);
  color: #484f55;
}
.map .mapboxgl-popup-content h3 {
  font-size: 1.2rem;
}
.map .mapboxgl-popup-content:hover h3 {
  text-decoration: underline;
}

.pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px auto 60px;
}
@media only screen and (min-width: 759px) {
  .pagination {
    display: grid;
  }
}
.pagination a {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  cursor: pointer;
  padding: 12px;
  padding: 0.75rem;
}
.pagination a > * {
  pointer-events: none;
}
.pagination a .disabled {
  pointer-events: none;
}
.pagination li {
  display: none;
}
@media only screen and (min-width: 759px) {
  .pagination li {
    display: block;
  }
}
.pagination a:hover, .pagination--active a, .pagination--disabled {
  color: #e0e0e0;
  text-decoration: none;
}
.pagination-previous, .pagination-next {
  display: block !important;
}
.pagination-previous a, .pagination-next a {
  background: #e0271d;
}
.pagination-previous img, .pagination-next img {
  width: 17px;
}
.pagination--disabled a {
  background: #e0e0e0;
  cursor: auto !important;
  pointer-events: none;
}

.block-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.block-pagination-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
}
.block-pagination-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.block-pagination-track::-webkit-scrollbar {
  display: none;
}
.block-pagination-slide {
  scroll-snap-align: start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.block-pagination-controls-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.block-pagination-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}
.block-pagination-next-suggestion-container {
  position: absolute;
  top: 0;
  right: 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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 64px;
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.block-pagination-controls button, .block-pagination-next-suggestion-container button {
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #DA291C;
  padding: 8px 16px;
  border-radius: 4px;
}
.block-pagination-controls button svg path, .block-pagination-next-suggestion-container button svg path {
  stroke: #fff;
}
.block-pagination-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}
.block-pagination-dots .dot {
  border: none;
  display: inline-block;
  height: 8px;
  width: 8px;
  background-color: #E1E1E1;
  border-radius: 50%;
}
.block-pagination-dots .dot:hover {
  cursor: pointer;
}
.block-pagination-dots .dot.active {
  width: 16px;
  border-radius: 300px;
  background-color: #DA291C;
}
@media only screen and (min-width: 1024px) {
  .block-pagination:not(.block-pagination-desktop) .block-pagination-controls-container, .block-pagination:not(.block-pagination-desktop) .block-pagination-next-suggestion-container {
    display: none;
  }
}

.people__content {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 1260px) {
  .people__content {
    padding-left: 0;
    padding-right: 0;
  }
}

.research {
  position: relative;
}
.research *,
.research ::before,
.research ::after {
  position: relative;
}
.research__chart {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.research__chart-btns select {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.research__chart-btns button:first-of-type {
  border-top-left-radius: 8px;
}
.research__chart-btns button:last-of-type {
  border-top-right-radius: 8px;
}
@media only screen and (min-width: 1024px) {
  .research__chart-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.research__chart-btns::after {
  content: "";
  position: absolute !important;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: transparent url("../svg/chevron-down-white.svg") no-repeat;
  background-position: center;
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  .research__chart-btns::after {
    display: none;
  }
}
.research__chart-btns > .btn {
  display: none;
  text-align: center;
  padding: 25px;
  white-space: normal;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) {
  .research__chart-btns > .btn {
    display: block;
  }
}
.research__chart-btns > .btn::after {
  content: "";
  width: 1px;
  height: 15px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.research__chart-btns > .btn::before {
  display: none;
}
.research__chart-btns > .btn:hover, .research__chart-btns > .btn--active {
  background: #000;
  color: #fff;
}
.research__chart-btns > .btn:hover::after, .research__chart-btns > .btn--active::after {
  display: none;
}
.research__chart-btns > .btn:last-of-type::after {
  display: none;
}
.research__chart-btns select {
  width: 100%;
  padding: 25px 30px;
  color: #fff;
  background: #000;
  font-family: "Geomanist", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15rem;
  font-size: 1.125rem;
  line-height: 1.2;
  text-transform: capitalize;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.15em;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media only screen and (min-width: 1024px) {
  .research__chart-btns select {
    display: none;
  }
}
.research__chart-btns option {
  background: #fff;
  color: #000;
}
.research__chart {
  background: #f2f2f2;
}
@media only screen and (min-width: 1024px) {
  .research__chart {
    margin-top: -1rem;
  }
}
@media only screen and (min-width: 1024px) {
  .research__copy {
    padding: 0;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 759px) {
  .research__copy--narrow {
    max-width: 85%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .research__copy--narrow {
    max-width: 49.5%;
  }
}
@media only screen and (min-width: 1024px) {
  .research__copy--narrow {
    margin-bottom: 40px !important;
  }
}
@media only screen and (min-width: 759px) {
  .research__copy--columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.research .hero.section {
  margin-bottom: 0 !important;
}
@media only screen and (min-width: 1024px) {
  .research .fifty-fifty-breaker {
    padding-top: 48px;
  }
}

.wp-block-embed-issuu .wp-block-embed__wrapper .issuuembed {
  height: 100% !important;
  width: 100% !important;
}
.wp-block-embed-issuu .wp-block-embed__wrapper iframe {
  width: 100% !important;
  height: 100% !important;
}

.resuable-block__contact > div:first-child {
  -ms-flex-item-align: auto;
      align-self: auto;
  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;
}
.resuable-block__contact > div:first-child .single-btn {
  height: auto;
}

.single section[role=main] {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1024px) {
  .single picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    overflow: hidden;
  }
}
.single h2 {
  margin-top: 40px;
}
.single iframe {
  width: 100%;
}
.single__featured-img {
  width: 100%;
  position: relative;
}
.single__featured-img--baseline {
  margin-top: -50px;
}
@media only screen and (min-width: 1024px) {
  .single__featured-img--baseline {
    margin-top: 0;
  }
}
.single__content {
  position: relative;
}
.single__content-the-content {
  max-width: 100%;
}
@media only screen and (min-width: 1024px) {
  .single__content-the-content {
    width: 100%;
    max-width: 811px;
    min-width: 0;
  }
}
.single__content .alt-bg:after {
  height: 40%;
  content: "";
  background-color: #d6dee1;
  position: absolute;
  width: 100vw;
  left: 50%;
  top: 0;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.single__content a {
  text-decoration: underline;
  color: #DA291C;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.single__content a:hover {
  border-radius: 2px;
  background-color: #FA3F20;
  color: #fff;
  text-decoration: none;
}
.single__content a:focus, .single__content a:focus-visible {
  background-color: #FA3F20;
  color: #fff;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px #8B5CD7;
          box-shadow: 0 0 0 3px #8B5CD7;
  border-radius: 2px;
  text-decoration: none;
}
.single__content h1,
.single__content h2,
.single__content h3,
.single__content h4,
.single__content h5,
.single__content h6 {
  margin-top: 48px;
  margin-bottom: 48px;
}
.single__content ul,
.single__content ol {
  margin-top: 48px;
  margin-bottom: 48px;
  margin-left: 20px;
}
.single__content ul li,
.single__content ol li {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 400;
}
.single__content ul > li {
  list-style: initial;
}
.single__content ol > li {
  list-style: auto;
}
.single__content .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.single__content figure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.single__content figure figcaption {
  margin: 0 !important;
  padding: 20px;
  background: #F9FAFB;
  color: #000;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: left;
}
.single__content figure.aligncenter figcaption {
  text-align: center;
}
.single__content figure.alignleft figcaption {
  text-align: left;
}
.single__content figure.alignright figcaption {
  text-align: right;
}
.single__hero {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  .single__hero {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.single__content-section {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  .single__content-section {
    padding-left: 144px;
    padding-right: 144px;
  }
}
.single__content-section-inner {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1002px;
}
@media only screen and (min-width: 1024px) {
  .single__content-section-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 95px;
  }
}
.single__hero-title {
  color: #1E1E1E;
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .single__hero-title {
    font-weight: 500;
  }
}
.single__hero-date {
  margin: 0;
  font-weight: 400;
  color: #7A7986;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media only screen and (min-width: 759px) {
  .single__hero-date {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}
.single__hero-categories .categories ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
}
.single__hero-categories .categories ul li {
  margin: 0;
}
.single__hero-categories .categories ul li a,
.single__hero-categories .categories ul li a:hover {
  background: #CF2E2E;
  color: #fff;
  padding: 8px 16px;
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 400;
  border-radius: 4px;
}
.single__hero-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  max-width: 82%;
  background-color: #FBFBFB;
  position: relative;
  margin-top: -92px;
  padding: 16px;
  border-radius: 8px;
}
@media only screen and (min-width: 1024px) {
  .single__hero-container {
    padding: 48px;
    max-width: 922px;
    margin-left: 48px;
  }
}
@media only screen and (max-width: 1023px) {
  .single__hero-container {
    margin-left: auto;
    margin-right: auto;
  }
}
.single__body {
  margin-top: 60px;
}
.single-sidebar {
  margin-top: 60px;
}
@media only screen and (min-width: 1024px) {
  .single-sidebar {
    padding: 0 0 0 30px;
    margin-top: 0;
  }
}
.single-sidebar > div {
  padding-bottom: 40px;
}
.single-sidebar > div:last-of-type {
  margin-bottom: 0;
}
.single-sidebar h2 {
  font-family: "Geomanist";
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
}
.single-sidebar form button {
  position: absolute;
  right: 0;
  padding: 15px 15px 14px;
  border: none;
  background: #DA291C;
}
.single-sidebar input[type=text],
.single-sidebar input[type=search] {
  width: 100%;
  font-family: "Geomanist";
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 10px;
}
.single-sidebar span[class$=-title] {
  font-size: 1.125rem;
  line-height: 1.2;
}
.single-sidebar p[class$=-copy] {
  margin: 0.5rem auto;
}
@media only screen and (min-width: 1024px) {
  .single-sidebar p[class$=-copy] {
    font-size: 0.875rem;
    line-height: 1.2;
    line-height: 1.7em;
    color: #484f55;
  }
}
.single__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  padding-bottom: 48px;
}
.single__tags-label {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
}
.single__tags-item {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 400;
  color: #fff !important;
  text-decoration: underline;
  text-transform: uppercase;
  padding: 8px 16px;
  background-color: #CF2E2E;
  border-radius: 4px;
}

.single-press-release .btn,
.single-newsletter .btn,
.single-research .btn {
  color: #fff;
  text-decoration: none;
}
.single-press-release .content-container,
.single-newsletter .content-container,
.single-research .content-container {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 1024px) {
  .single-press-release .content-container,
.single-newsletter .content-container,
.single-research .content-container {
    padding-left: 96px;
    padding-right: 96px;
  }
}
@media only screen and (min-width: 1600px) {
  .single-press-release .content-container,
.single-newsletter .content-container,
.single-research .content-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.safari .single__featured-img {
  height: 100%;
}

.featured-caption {
  padding: 30px 15px;
  background: #f2f2f2;
}

.single-tribe_event_series .tribe-events-c-top-bar__nav-list, .single-tribe_event_series .tribe-events-c-view-selector__list, .single-tribe_event_series .tribe-events-c-subscribe-dropdown__list {
  margin: 0;
}
.single-tribe_event_series .tribe-events-c-top-bar__nav-list li, .single-tribe_event_series .tribe-events-c-view-selector__list li, .single-tribe_event_series .tribe-events-c-subscribe-dropdown__list li {
  list-style: none;
}

.biz-profile {
  margin-top: 60px;
  margin-bottom: 100px;
}
@media only screen and (min-width: 759px) {
  .biz-profile {
    margin-top: 80px;
  }
}
.biz-profile h2 {
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  position: relative;
  border-bottom: 2px solid #d6dde1;
}
.biz-profile__bio .profile-block {
  margin-bottom: 3rem;
}
.biz-profile__slider {
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .biz-profile__slider .biz-profile__slider-wrap {
    width: calc(100% - 150px);
  }
}
.biz-profile__slider .biz-profile__slider-wrap .slick-list {
  overflow: visible;
}
@media only screen and (min-width: 1024px) {
  .biz-profile__slider .biz-profile__slider-wrap .slick-slide {
    margin-right: 1rem;
  }
}
.biz-profile__slider .slider-nav {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  left: 0;
  padding: 0 30px;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 1024px) {
  .biz-profile__slider .slider-nav {
    right: 75px;
    padding: 0 65px;
  }
}
.biz-profile__slider .slider-nav .action {
  width: 19px;
}
@media only screen and (min-width: 1024px) {
  .biz-profile__slider .slider-nav .biz-slider-prev {
    opacity: 0 !important;
  }
}
.biz-profile__callout {
  padding: 2rem;
}
.biz-profile__callout h2 {
  border-bottom: 2px solid #fff;
  padding-bottom: 1.5rem;
}
.biz-profile__callout hr {
  display: none;
}
.biz-profile__details h2 {
  margin-top: 60px;
}
.biz-profile__details h2:first-child {
  margin-top: 0;
}
.biz-profile__details h3 {
  font-size: 27px;
  font-family: "Geomanist";
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #666666;
  margin-top: 45px;
}
.biz-profile__details p {
  margin-bottom: 0px;
}
.biz-profile__details ul {
  padding-left: 1rem;
}
.biz-profile__map {
  position: relative;
  /* Map styles found in ./map.scss */
}
.biz-profile__map:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.biz-profile__map > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.biz-profile__map-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.biz-profile__info .content-wrap {
  padding: 2rem;
}
.biz-profile__address h2 {
  font-size: 27px;
  font-family: "Geomanist";
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.biz-profile__address h2, .biz-profile__address h3 {
  color: #666666;
}
.biz-profile__hours span {
  display: block;
  line-height: 1.5;
}
.biz-profile .sidebar-block {
  margin-bottom: 2rem;
}
.biz-profile .sidebar-block:last-child {
  margin-bottom: 0;
}
.biz-profile .sidebar-block a {
  text-decoration: underline;
}
.biz-profile .sidebar-block a.btn {
  text-decoration: none;
}

.sidebar-blogroll {
  background: #d6dee1;
  padding: 30px;
}
@media only screen and (min-width: 759px) {
  .sidebar-blogroll {
    padding: 30px 120px;
  }
}
@media only screen and (min-width: 1024px) {
  .sidebar-blogroll {
    padding: 30px;
  }
}
.sidebar-blogroll > div {
  margin-bottom: 60px;
}
.sidebar-blogroll > div:last-of-type {
  margin-bottom: 0;
}
.sidebar-blogroll h2 {
  color: #5d6263;
  font-family: "Geomanist";
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
}
.sidebar-blogroll form button[type=submit] {
  color: #fff !important;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: #DA291C;
  padding: 15px 15px 14px;
}
.sidebar-blogroll form button[type=submit] svg path {
  stroke: #fff;
}
.sidebar-blogroll input[type=text],
.sidebar-blogroll input[type=search] {
  width: 100%;
  font-family: "Geomanist";
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 10px;
}
.sidebar-blogroll input[type=text]::-webkit-input-placeholder, .sidebar-blogroll input[type=search]::-webkit-input-placeholder {
  font-size: 0.9375rem;
  line-height: 1.2;
}
.sidebar-blogroll input[type=text]::-moz-placeholder, .sidebar-blogroll input[type=search]::-moz-placeholder {
  font-size: 0.9375rem;
  line-height: 1.2;
}
.sidebar-blogroll input[type=text]:-ms-input-placeholder, .sidebar-blogroll input[type=search]:-ms-input-placeholder {
  font-size: 0.9375rem;
  line-height: 1.2;
}
.sidebar-blogroll input[type=text]::-ms-input-placeholder, .sidebar-blogroll input[type=search]::-ms-input-placeholder {
  font-size: 0.9375rem;
  line-height: 1.2;
}
.sidebar-blogroll input[type=text]::placeholder,
.sidebar-blogroll input[type=search]::placeholder {
  font-size: 0.9375rem;
  line-height: 1.2;
}
.sidebar-blogroll input[type=search] {
  height: 53px;
  width: calc(100% - 122px);
}
.sidebar-blogroll__archive-list li {
  margin-bottom: 15px;
  font-size: 18px;
}
.sidebar-blogroll__archive-month {
  margin-bottom: 2rem;
}
.sidebar-blogroll .categories {
  overflow-x: scroll;
}
@media only screen and (min-width: 1024px) {
  .sidebar-blogroll .categories {
    overflow: visible;
  }
}

.table-wrapper {
  overflow-x: auto;
}

.content-container table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.content-container table th {
  font-weight: 700;
  text-align: right;
  padding: 0.625rem;
  margin: 0;
}
.content-container table th:first-of-type {
  text-align: left;
}
.content-container table tr.table__row--gray {
  background: #949494;
}
.content-container table tr.table__row--taupe {
  background: #d7c69e;
}
.content-container table td {
  text-align: right;
  padding: 0.625rem;
  margin: 0;
}
.content-container table td:first-of-type {
  text-align: left;
}
.content-container table td:last-of-type {
  border: none;
}
.content-container table.table--striped tr:not(.table__row--gray):not(.table__row--taupe):nth-child(odd) {
  background: #f2f2f2;
}
.content-container table.table--popout {
  margin: 1rem 0;
}
.content-container table.table--popout tbody {
  border-top: 3px solid #ccc;
  border-bottom: 3px solid #ccc;
}

/**
 | Classes assigned by WP should go in here.
 */
.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.alignleft {
  z-index: 1;
}

.alignright {
  z-index: 1;
}

.wp-block-column .section {
  height: auto;
}
.wp-block-column .section__padding {
  padding: 0;
  margin: 0;
}

.wp-block-separator {
  margin: 2rem 0 0;
}

.wp-block-media-text {
  margin-top: 40px;
}

.wp-block-table.is-style-regular td {
  border: none;
}

.content-container::after {
  content: "";
  display: table;
  clear: both;
}

.wp-block-embed.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}
.wp-block-embed.alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}
.wp-block-embed.alignright {
  float: right;
  margin: 0.5em 1em 0.5em 0;
}
.wp-block-embed.alignwide {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-embed.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  left: 0;
  right: 0;
}
.wp-block-embed.wp-block-embed-issuu {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 ratio = 9/16 = 0.5625 */
  height: 0;
  overflow: hidden;
  max-width: none;
  float: none;
  margin-left: 0;
  margin-left: 0;
}
.wp-block-embed.wp-block-embed-issuu.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.wp-block-embed.wp-block-embed-issuu .wp-block-embed__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*
 | These apply to all g-blocks
 */
.block-editor-block-list__block[data-type^="acf/"] {
  max-width: 100%;
}
.block-editor-block-list__block[data-type^="acf/"] .alignfull {
  width: auto;
  margin-left: auto;
}

.acf-block-preview .news-image-breaker-video h2,
.acf-block-preview .news-image-breaker-video h3,
.acf-block-preview .news-image-breaker-video a {
  color: #1E1E1E;
}
.acf-block-preview .news-image-breaker-video a > svg path {
  stroke: #1E1E1E;
}
.acf-block-preview a {
  pointer-events: none;
}

.wp-block[data-align] {
  height: 100%;
}
.wp-block[data-align]::after {
  content: "";
  display: block;
  clear: both;
}
.wp-block[data-align] figure {
  float: none !important;
}
.wp-block[data-align] figure::after {
  content: "";
  display: block;
  clear: both;
}

.wp-block-image figcaption {
  text-align: left;
}

.wp-block[data-align=right] figcaption {
  text-align: right;
}

.wp-block[data-align=left] figcaption {
  text-align: left;
}

.wp-block[data-align=center] figcaption {
  text-align: center;
}

.wp-block > .block-editor-block-list__block.wp-block-embed {
  max-width: none;
  float: none;
  margin-left: 0;
  margin-left: 0;
}

@media only screen and (min-width: 1024px) {
  .article-grid__blurb {
    padding: 0;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 759px) {
  .article-grid__blurb--narrow {
    max-width: 85%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .article-grid__blurb--narrow {
    max-width: 49.5%;
  }
}
@media only screen and (min-width: 1024px) {
  .article-grid__blurb--narrow {
    margin-bottom: 40px !important;
  }
}
@media only screen and (min-width: 759px) {
  .article-grid__blurb--columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.article-grid__wrapper {
  padding: 20px;
  background: #f2f2f2;
}
@media only screen and (min-width: 759px) {
  .article-grid__wrapper {
    padding: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .article-grid__wrapper {
    background: none;
    padding: 0;
  }
}
.article-grid__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.article-grid__item-title {
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
}
.article-grid__item-copy {
  margin: 15px 0 0;
  opacity: 0.8;
}
.article-grid__item-image {
  margin-bottom: 20px;
}
.article-grid__item--blurb picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  max-height: 221px;
}
.article-grid__item--blurb picture::after {
  display: none;
}
.article-grid__item--blurb picture img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin: 0 auto;
}
.article-grid__item--external-link .article-grid__item-eyebrow {
  color: #DA291C;
  width: 100%;
  display: block;
  border-bottom: 2px solid #dadada;
  padding-bottom: 5px;
  text-align: left;
}
.article-grid__item--external-link .article-grid__item-title {
  margin-top: 15px;
}
.article-grid__item-picture {
  background-color: #484f55;
  position: relative;
}
.article-grid__item-picture:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 75%;
}
.article-grid__item-picture > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.article-grid__item-picture picture {
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  width: 100%;
}
.article-grid__item-picture picture::after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 100%);
  content: "";
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.article-grid__item-picture span {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: block;
  padding: 0.9375rem;
  color: #fff;
  text-transform: uppercase;
  font-family: "Geomanist";
  font-weight: 700;
}
.article-grid__item picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.article-grid__item picture img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin: 0 auto;
}
.article-grid__item picture::after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 100%);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
}
.article-grid__item:hover picture img, .article-grid__item:focus picture img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.article-grid--col-2 .article-grid__item {
  margin-bottom: 60px;
}
.article-grid--col-2 .article-grid__item-title {
  font-size: 2rem;
  line-height: 1.2;
}
.article-grid--col-2 .article-grid__item-eyebrow {
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.9375rem;
  display: block;
}
.article-grid--col-2 .article-grid__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "Geomanist";
  font-weight: 700;
  text-transform: uppercase;
  height: calc(100% + 30px);
}
.article-grid--col-2 .article-grid__item picture {
  height: 56.25%;
}
.article-grid .centered-title {
  margin-bottom: 30px;
}
.article-grid .article-grid__blurb--narrow {
  margin-bottom: 40px;
  text-align: center;
}

.banner {
  height: 50vw;
}
@media only screen and (min-width: 759px) {
  .banner {
    padding: 0;
    height: auto;
  }
}
.banner .banner-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner__bkg {
  overflow: hidden;
  background: #b0b795;
  position: absolute;
  left: 0;
  top: 130%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 250px;
}
@media only screen and (min-width: 759px) {
  .banner__bkg {
    height: 100%;
    padding: 0 30px;
    top: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .banner__bkg {
    height: 100%;
    top: 50%;
  }
}
.banner__bkg-txt {
  font-family: "Geomanist", sans-serif;
  font-weight: 900;
  letter-spacing: 0.15rem;
  font-size: 11.25rem;
  line-height: 1.2;
  text-transform: uppercase;
  line-height: 10rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-43%, -52%);
          transform: translate(-43%, -52%);
  opacity: 0.08;
  width: 100%;
  color: #000;
  -webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  display: none;
}
@media only screen and (min-width: 759px) {
  .banner__bkg-txt {
    left: 50%;
    display: block;
  }
}
@media only screen and (min-width: 759px) {
  .banner__title {
    font-family: "Geomanist", sans-serif;
    font-weight: 900;
    letter-spacing: 0.15rem;
    margin: 0;
    text-align: left;
    padding: 10px 0 0;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .banner__title {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin: 0;
    display: inline-block;
  }
}
.banner__title h2 {
  font-size: 1.625rem;
  line-height: 1.2;
  line-height: 2rem;
  text-transform: uppercase;
  -webkit-transition: color 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: color 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 100%;
  padding: 20px;
  margin-top: 25px;
}
@media only screen and (min-width: 759px) {
  .banner__title h2 {
    font-family: "Geomanist", sans-serif;
    font-weight: 900;
    letter-spacing: 0.15rem;
    text-align: left;
    padding: 0;
    font-size: 1.5rem;
    margin-top: 15px;
  }
}
@media only screen and (min-width: 1024px) {
  .banner__title h2 {
    font-family: "Geomanist", sans-serif;
    font-weight: 700;
    letter-spacing: 0.15rem;
    padding: 20px 0 0;
    color: #fff;
    letter-spacing: 0.1rem;
    font-size: 1.75rem;
  }
}
.banner__title h2::after {
  content: "";
  position: absolute;
  background: #000;
  height: 2px;
  left: 0;
  bottom: -5px;
  width: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: width 750ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: width 750ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.banner__title-spacer {
  display: none;
  width: 37px;
  height: 2px;
  background: #000;
}
@media only screen and (min-width: 759px) {
  .banner__title-spacer {
    display: inline-block;
  }
}
.banner__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  padding: 25px 4rem 25px 25px;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 900;
}
@media only screen and (min-width: 759px) {
  .banner__btn {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .banner__btn {
    font-size: 1.25rem;
  }
}
.banner__btn span:first-of-type {
  line-height: 1;
  font-size: 1.3rem;
}
.banner__img {
  display: none;
  background: transparent no-repeat center;
}
@media only screen and (min-width: 1024px) {
  .banner__img {
    overflow: hidden;
    background-size: cover;
    height: 250px;
    margin: 0;
    right: 0;
    width: 50%;
    top: 0;
    position: absolute;
    display: block;
  }
}
@media only screen and (min-width: 759px) {
  .banner__img {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    background-size: cover;
    display: block;
  }
}
.banner__arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner__arrow::after {
  content: "";
  background: url("../img/arrow-right-white.png");
  background-size: contain;
  width: 18px;
  height: 15px;
  display: block;
  -webkit-transition: background 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.banner:hover .banner__bkg-txt {
  -webkit-transform: translate(-47%, -52%);
          transform: translate(-47%, -52%);
}
.banner:hover .banner__title h2 {
  color: #000;
}
.banner:hover .banner__title h2::after {
  width: 98%;
  opacity: 1;
}

/* NEWSLETTER BANNER STYLES */
.newsletter-bg {
  background-color: #000;
}
.newsletter-bg .newsletter-form {
  position: relative;
  bottom: 0;
  left: 0;
}
@media only screen and (min-width: 759px) {
  .newsletter-bg .newsletter-form {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .newsletter-bg .newsletter-form {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.newsletter-bg .newsletter-form label {
  color: #FFF;
  font-size: 32px;
  line-height: 1.25em;
  padding: 20px 25px;
  text-transform: uppercase;
  font-weight: 900;
}
@media only screen and (min-width: 759px) {
  .newsletter-bg .newsletter-form label {
    font-size: 26px;
  }
}
.newsletter-bg .newsletter-form input {
  width: 22em;
  padding: 15px;
  margin-bottom: 25px;
  margin-left: 25px;
}
@media only screen and (min-width: 1024px) {
  .newsletter-bg .newsletter-form input {
    width: 29em;
  }
}
.newsletter-bg .newsletter-form button {
  background-color: #e0271d;
  color: #FFF;
  padding: 25px;
  text-transform: uppercase;
  text-align: left;
  font-weight: 900;
  font-size: 2rem;
}
@media only screen and (min-width: 759px) {
  .newsletter-bg .newsletter-form button {
    width: 100%;
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .newsletter-bg .newsletter-form button {
    font-size: 1.25rem;
  }
}
.newsletter-bg .newsletter-form button:hover {
  background-color: maroon;
}

@media only screen and (min-width: 1024px) {
  .business-directory__blurb {
    padding: 0;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 759px) {
  .business-directory__blurb--narrow {
    max-width: 85%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .business-directory__blurb--narrow {
    max-width: 49.5%;
  }
}
@media only screen and (min-width: 1024px) {
  .business-directory__blurb--narrow {
    margin-bottom: 40px !important;
  }
}
@media only screen and (min-width: 759px) {
  .business-directory__blurb--columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

.checkbox-container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: 33%;
  color: #565656;
  height: 40px;
}
.checkbox-container:hover {
  color: #111;
}
.checkbox-container .biz-dir__filter {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ddd;
  border: 1px solid #FFF;
  height: 0.65em;
  width: 0.65em;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 30px;
  margin-bottom: 4px;
}
.checkbox-container .biz-dir__filter:focus {
  outline: none;
}
.checkbox-container .biz-dir__filter:hover {
  background-color: #aaa;
}
.checkbox-container:hover {
  color: #000;
}
.checkbox-container .biz-dir__filter:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-top: -9px;
  color: #FFF;
}
.checkbox-container .biz-dir__filter.active {
  background-color: #d4231a;
}
.checkbox-container .biz-dir__filter.active:before {
  content: "✓";
  font-size: 0.5em;
}
.checkbox-container .checkbox-text {
  position: absolute;
  text-align: left;
  top: 0px;
  left: 24px;
  font-size: 13px;
  padding-bottom: 5px;
  width: 200px;
}

@media screen and (min-width: 420px) {
  #BarType, #DiningType, #DiningService, #AmenitiesPointsofInterest, #PrimaryCategoryPointsofInterst, #MarketTypeShoppingSpecialty, #SpecialtyCategoryShopping, #SpecialtyCategoryLocalResources, #SpecialtyCategoryPersonalBusinessServices {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  .checkbox-container {
    width: 100%;
    margin: 4px 0;
  }

  .biz-dir__filter:before {
    margin-top: -4px !important;
  }
}
.biz-dir {
  /**
   |-----------------------------------------------------------------------------------
   | Filter modal
   |-----------------------------------------------------------------------------------
   */
  /**
   |-----------------------------------------------------------------------------------
   | Search modal
   |-----------------------------------------------------------------------------------
   */
}
.biz-dir i {
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  .biz-dir__blurb {
    padding: 0;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 759px) {
  .biz-dir__blurb--narrow {
    max-width: 85%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .biz-dir__blurb--narrow {
    max-width: 49.5%;
  }
}
@media only screen and (min-width: 1024px) {
  .biz-dir__blurb--narrow {
    margin-bottom: 40px !important;
  }
}
@media only screen and (min-width: 759px) {
  .biz-dir__blurb--columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.biz-dir__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  position: sticky;
  top: 2.9375rem;
  padding: 0.75rem 0;
  z-index: 20;
}
@media only screen and (min-width: 1024px) {
  .biz-dir__controls {
    top: 0;
  }
}
.biz-dir__utility button {
  background: #DA291C;
  color: #fff;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.875rem;
}
.biz-dir__utility button:hover, .biz-dir__utility button:focus {
  background: #000;
  color: #fff;
}
.biz-dir__view-toggle {
  display: none;
  margin-right: 0.5rem;
}
.biz-dir__view-toggle .fa-list {
  display: inline;
}
.biz-dir__view-toggle .fa-map-marker-alt {
  display: none;
}
.biz-dir__view-toggle.hide-map .fa-list {
  display: none;
}
.biz-dir__view-toggle.hide-map .fa-map-marker-alt {
  display: inline;
}
.biz-dir__paging button {
  background: #DA291C;
  color: #fff;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.75rem;
  text-align: center;
}
.biz-dir__paging button:disabled {
  pointer-events: none;
  background: #949494;
}
.biz-dir__paging button:hover {
  background: #000;
  color: #fff;
}
.biz-dir__paging-prev {
  margin-right: 0.5rem;
}
.biz-dir__map {
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  margin-bottom: 2rem;
}
.biz-dir__map::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #949494;
}
.biz-dir__search-nearby {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  -webkit-box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.5);
  -webkit-transition: all 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 2;
}
.biz-dir__search-nearby:hover, .biz-dir__search-nearby:focus {
  background: black;
  color: white;
}
.biz-dir__search-nearby.visible {
  pointer-events: auto;
  opacity: 1;
}
@media only screen and (max-width: 1023px) {
  .biz-dir__active-filters {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
.biz-dir__active-filters-list {
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
  overflow-x: scroll;
  padding: 0 1.25rem;
}
.biz-dir__active-filters-list::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}
@media only screen and (min-width: 759px) {
  .biz-dir__active-filters-list {
    padding: 0 1.875rem;
  }
}
@media only screen and (min-width: 1024px) {
  .biz-dir__active-filters-list {
    padding: 0;
  }
}
.biz-dir__active-filters-list > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.biz-dir__active-filters > span {
  display: block;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
}
@media only screen and (min-width: 759px) {
  .biz-dir__active-filters > span {
    padding-left: 1.875rem;
  }
}
@media only screen and (min-width: 1024px) {
  .biz-dir__active-filters > span {
    padding-left: 0;
  }
}
.biz-dir__listings::after {
  content: "";
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
}
.biz-dir__listings-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.biz-dir__listings .svg__loading {
  position: sticky;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 12.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.biz-dir__listings.loading::after {
  opacity: 1;
  pointer-events: auto;
}
.biz-dir__listings.loading .biz-dir__listings-loading {
  opacity: 1;
}
.biz-dir__listing {
  color: #000;
  margin-bottom: 4rem;
  background: #fff;
  -webkit-transition: background-color 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: hidden;
  -webkit-box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.2), 0 1px 2px 0 rgba(60, 64, 67, 0.3);
          box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.2), 0 1px 2px 0 rgba(60, 64, 67, 0.3);
}
@media only screen and (min-width: 759px) {
  .biz-dir__listing {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .biz-dir__listing {
    margin-bottom: 1rem;
  }
}
.biz-dir__listing:hover, .biz-dir__listing:focus, .biz-dir__listing.active {
  border: 2px solid #DA291C;
}
.biz-dir__listing:hover .biz-dir__listing-details, .biz-dir__listing:focus .biz-dir__listing-details, .biz-dir__listing.active .biz-dir__listing-details {
  display: block;
}
.biz-dir__listing-details {
  display: none;
  background-color: #DA291C;
  color: #fff;
  padding: 0.25rem !important;
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8rem;
}
.biz-dir__listing > div {
  padding: 1rem;
}
.biz-dir__listing picture {
  height: 0;
  padding-bottom: 72%;
  display: block;
}
.biz-dir__listing img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.biz-dir__listing strong {
  font-size: 0.8rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  display: block;
}
.biz-dir__listing p {
  font-size: 0.8rem;
  line-height: 1.2;
}
.biz-dir__listing p:first-of-type {
  margin-bottom: 1.5rem;
}
.biz-dir__active-filters {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.biz-dir__active-filters span {
  font-size: 0.85rem;
  margin-right: 1rem;
}
.biz-dir__active-filters-list button.biz-dir__filter {
  border: none;
  outline: none;
  z-index: 1;
}
.biz-dir__active-filters-list button.biz-dir__filter.active {
  color: #949494;
  font-size: 0.8rem;
  padding: 0.5rem;
  width: auto;
  text-align: left;
  margin-right: 12px;
}
.biz-dir__active-filters-list button.biz-dir__filter:hover, .biz-dir__active-filters-list button.biz-dir__filter:focus {
  color: #DA291C;
}
.biz-dir__active-filters-list button.biz-dir__filter:after {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: inherit;
  display: inline-block;
  line-height: 0;
}
.biz-dir__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 759px) {
  .biz-dir__modal {
    padding: 5rem;
  }
}
.biz-dir__modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.biz-dir__modal button.biz-dir__filter::after {
  display: none;
}
.biz-dir__modal button.biz-dir__filter.active::after {
  display: inline-block;
}
.biz-dir__modal-inner {
  background: #fff;
  width: 100%;
  max-width: 50rem;
  height: 90vh;
  border-radius: 0.25rem;
  overflow: hidden;
}
.biz-dir__modal-header {
  padding: 1rem;
  border-bottom: 1px solid #dadada;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
}
@media only screen and (min-width: 759px) {
  .biz-dir__modal-header {
    padding: 2rem;
  }
}
.biz-dir__modal-header span {
  text-transform: uppercase;
}
.biz-dir__modal-body {
  padding: 1rem;
  height: calc(100% - 130px);
  margin-top: 3.125rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}
.biz-dir__modal-body::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}
@media only screen and (min-width: 759px) {
  .biz-dir__modal-body {
    padding: 2rem;
    margin-top: 5.3125rem;
    height: calc(100% - 197px);
  }
}
@media only screen and (min-width: 1024px) {
  .biz-dir__modal-body {
    height: calc(100% - 202px);
  }
}
.biz-dir__modal-body-inner .category-separtion {
  margin: 10px 0 20px 0;
}
.biz-dir__modal-footer {
  padding: 1rem;
  border-top: 1px solid #dadada;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
}
@media only screen and (min-width: 759px) {
  .biz-dir__modal-footer {
    padding: 2rem;
  }
}
.biz-dir__modal-footer button:not(.btn--link) {
  text-align: center;
  padding: 0.9375rem 1.875rem;
  outline: none;
}
.biz-dir__modal-footer button:not(.btn--link):disabled, .biz-dir__modal-footer button:not(.btn--link)[disabled] {
  background: #dadada;
  pointer-events: none;
}
.biz-dir__modal-tags {
  margin-bottom: 2rem;
}
.biz-dir__modal-tags strong {
  display: block;
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  position: sticky;
  top: -1rem;
  padding: 0.625rem 0;
  background: #fff;
  z-index: 10;
}
@media only screen and (min-width: 759px) {
  .biz-dir__modal-tags strong {
    top: -2rem;
  }
}
.biz-dir__modal-tags .dir-main-heading {
  font-size: 1.75em;
  line-height: 1.75em;
}
.biz-dir__modal-tags-list-short {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: calc(3.125rem + .5rem);
  overflow: hidden;
  padding: 5px 0;
}
.biz-dir__modal-tags-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: calc(5.125rem + .5rem);
  overflow: hidden;
  padding: 5px 0;
}
.biz-dir__modal--search .biz-dir__modal-inner {
  max-width: 25rem;
  height: auto;
  max-height: 90vh;
}
.biz-dir__modal-search input {
  width: 100%;
  display: block;
  margin: 0 auto 2rem;
  padding: 0.5rem 1rem 0.5rem 0;
  border-bottom: 1px solid #484f55;
  background: transparent;
}
.biz-dir__modal-search input:focus {
  outline: 0;
}
.biz-dir__modal-search button {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.biz-dir__modal-search button .fa-search {
  display: inline;
}
.biz-dir__modal-search button .fa-times {
  display: none;
}
.biz-dir__modal-search button.filled .fa-search {
  display: none;
}
.biz-dir__modal-search button.filled .fa-times {
  display: inline;
}
.biz-dir__modal-search-item {
  display: block;
  margin-bottom: 1rem;
  padding: 1rem 0;
  color: #484f55;
}
.biz-dir__modal-search-item strong {
  display: block;
  margin-bottom: 0.5rem;
}
.biz-dir__modal-search-item:hover, .biz-dir__modal-search-item:focus {
  color: #DA291C;
}
.biz-dir__container {
  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;
}
@media only screen and (min-width: 759px) {
  .biz-dir__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.biz-dir__map-outer {
  overflow: hidden;
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (min-width: 759px) {
  .biz-dir__map-outer {
    width: calc(40% - 1rem);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.biz-dir__listing-outer {
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 759px) {
  .biz-dir__listing-outer {
    width: calc(60% - 1rem);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.biz-dir #bizDirListings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 759px) {
  .biz-dir #bizDirListings {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.biz-dir__listing {
  width: 100%;
}
@media only screen and (min-width: 759px) {
  .biz-dir__listing {
    width: calc(33.3333333333% - 1rem);
    margin: 0.5rem;
  }
}
.biz-dir__biz-dir__listing-cat {
  margin-bottom: 0.5rem;
}
.biz-dir #filter-form {
  padding-top: 0.75rem;
}
.biz-dir #filter-form .form-row {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  opacity: 1;
  -webkit-transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.biz-dir #filter-form .form-row input {
  padding: 5px 80px 5px 5px;
  line-height: 1;
  width: 100%;
  border: 1px solid #dadada;
  font-size: 0.9rem;
}
.biz-dir #filter-form .form-row select {
  padding: 15px 25px 15px 15px;
  line-height: 1;
  width: 100%;
}
.biz-dir #filter-form .form-row button.submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #DA291C;
  font-size: 0.875rem;
  line-height: 1.2;
  color: white;
  font-family: "Geomanist", sans-serif;
  font-weight: 900;
}
.biz-dir #filter-form .form-row button svg {
  width: 14px;
}
.biz-dir #filter-form .form-row--hidden {
  pointer-events: none;
  opacity: 0;
}

#bizDirActiveFilters {
  margin-top: -8px;
}

.rb-main-heading {
  font-size: 1.75em;
  line-height: 1.75em;
  display: block;
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  top: -1rem;
  padding: 0.625rem 0;
  background: #fff;
  z-index: 10;
}

.dinearound {
  margin-bottom: 7.5rem;
}
.dinearound__utility {
  padding: 0.5rem 0 !important;
  margin: 0 0 2rem !important;
  -webkit-box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.2), 0 1px 2px 0 rgba(60, 64, 67, 0.3);
          box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.2), 0 1px 2px 0 rgba(60, 64, 67, 0.3);
  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;
  position: sticky;
  top: 47px;
  z-index: 5;
  background: white;
}
@media only screen and (min-width: 759px) {
  .dinearound__utility {
    padding: 0.5rem !important;
  }
}
@media only screen and (min-width: 1024px) {
  .dinearound__utility {
    top: 0;
    padding: 0.5rem !important;
  }
}
.dinearound__filters {
  list-style-type: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 !important;
  padding: 0 !important;
}
.dinearound__filters button {
  white-space: nowrap;
}
.dinearound__filters li {
  padding: 0 1rem;
  white-space: nowrap;
}
@media only screen and (min-width: 1200px) {
  .dinearound__filters li {
    padding: 0 2rem;
  }
}
.dinearound__filters li:first-of-type {
  padding-right: 0;
}
@media only screen and (min-width: 759px) {
  .dinearound__filters li:first-of-type {
    padding-right: 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .dinearound__filters li:first-of-type {
    padding: 0 2rem;
  }
}
.dinearound__filters li::after {
  content: "";
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1rem;
  width: 1px;
  background-color: #dadada;
}
@media only screen and (min-width: 1024px) {
  .dinearound__filters li::after {
    display: block;
  }
}
.dinearound__filters input {
  margin-right: 0.75rem;
  cursor: pointer;
}
.dinearound__filters label {
  cursor: pointer;
}
.dinearound__filters select {
  background: none;
}
.dinearound__filters-select {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .dinearound__filters-select {
    display: none;
  }
}
.dinearound__filters-radio {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .dinearound__filters-radio {
    display: inline-block;
  }
}
.dinearound__filters-clear {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .dinearound__filters-clear {
    display: block;
  }
}
.dinearound__count {
  font-size: 0.75rem;
  white-space: nowrap;
  margin: 1rem 0;
  display: none;
}
@media only screen and (min-width: 759px) {
  .dinearound__count {
    margin: 0;
    display: block;
  }
}
.dinearound__listings::after {
  content: "";
  opacity: 0;
  background: rgba(255, 255, 255, 0.8) url("../img/ajax-loader.gif") center no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 100ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 100ms cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
  z-index: 1;
}
.dinearound__listings--loading::after {
  opacity: 1;
  pointer-events: auto;
}
.dinearound__listing {
  overflow: hidden;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  -webkit-box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.2), 0 1px 2px 0 rgba(60, 64, 67, 0.3);
          box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.2), 0 1px 2px 0 rgba(60, 64, 67, 0.3);
}
.dinearound__listing ul {
  margin: 0.625rem 0;
  padding-left: 0.875rem;
}
.dinearound__listing picture {
  padding-bottom: 72.7272727273%;
  height: 0;
  width: 100%;
  display: block;
}
.dinearound__listing picture img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.dinearound__listing-content {
  width: 100%;
  background: #fff;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dinearound__listing-title {
  color: #484f55;
  font-family: "Geomanist", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.65;
}
.dinearound__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  pointer-events: none;
}
.dinearound__pagination button {
  padding: 0 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  pointer-events: auto;
  white-space: nowrap;
}
@media only screen and (min-width: 759px) {
  .dinearound__pagination button {
    padding: 0 1rem;
  }
}
.dinearound__pagination button b {
  font-size: 2rem;
  padding: 0 10px;
  pointer-events: none;
}
.dinearound__pagination button:hover {
  color: black;
}
.dinearound__pagination button[disabled] {
  color: #dadada;
  pointer-events: none;
}
.dinearound__pagination button span {
  display: none;
  pointer-events: none;
}
@media only screen and (min-width: 375px) {
  .dinearound__pagination button span {
    display: inline;
  }
}

.downtown-connection-bus {
  margin: 60px 0;
}
.downtown-connection-bus__iframe-wrapper {
  height: 0;
  padding-bottom: 56.25%;
  display: none;
}
@media only screen and (min-width: 1024px) {
  .downtown-connection-bus__iframe-wrapper {
    display: block;
  }
}
.downtown-connection-bus iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.downtown-connection-bus__mobile-link {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .downtown-connection-bus__mobile-link {
    display: none;
  }
}

.event-blocks {
  padding: 75px 0;
}
.event-blocks__event {
  background-color: #dadada;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: background-color 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: hidden;
}
.event-blocks__event a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.event-blocks__event:hover, .event-blocks__event:focus {
  background-color: #DA291C;
}
.event-blocks__event:hover .img-wrap .img-block, .event-blocks__event:focus .img-wrap .img-block {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.event-blocks__event:hover .event-blocks__copy .arrow-wrap img, .event-blocks__event:focus .event-blocks__copy .arrow-wrap img {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
}
.event-blocks__event:hover .title, .event-blocks__event:hover .date, .event-blocks__event:focus .title, .event-blocks__event:focus .date {
  color: white;
}
.event-blocks__copy {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 30px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.event-blocks__copy .title {
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
  -webkit-transition: color 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: color 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.event-blocks__copy .title.alt {
  font-size: 1.125rem;
  line-height: 1.2;
}
.event-blocks__copy .date {
  -webkit-transition: color 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: color 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #5d6263;
}
.event-blocks__copy .arrow-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
}
.event-blocks__copy .arrow-wrap img {
  width: 18px;
  opacity: 0;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  -webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.event-blocks__copy .arrow-wrap span {
  margin-left: auto;
}
.event-blocks__copy .top-wrap {
  margin-bottom: 25px;
}
.event-blocks__filter-form {
  background-color: #dadada;
}
.event-blocks__filter-form .form-wrap {
  padding: 20px;
}
@media only screen and (min-width: 1024px) {
  .event-blocks__filter-form .form-wrap {
    padding: 55px;
  }
}
.event-blocks__filter-form .form-row {
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  opacity: 1;
  -webkit-transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.event-blocks__filter-form .form-row input {
  padding: 15px 80px 15px 15px;
  line-height: 1;
  width: 100%;
}
.event-blocks__filter-form .form-row select {
  padding: 15px 25px 15px 15px;
  line-height: 1;
  width: 100%;
}
.event-blocks__filter-form .form-row button.submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding-left: 25px;
  padding-right: 25px;
  background-color: #DA291C;
  font-size: 1rem;
  line-height: 1.2;
  color: white;
  font-family: "Geomanist", sans-serif;
  font-weight: 900;
}
.event-blocks__filter-form .form-row button svg {
  width: 18px;
}
.event-blocks__filter-form .form-row--hidden {
  pointer-events: none;
  opacity: 0;
}
.event-blocks__filter-form .form-title {
  font-size: 1.6875rem;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  margin-bottom: 55px;
}
.event-blocks__filter-form .form-filters {
  font-weight: 900;
}
.event-blocks__filter-form .form-filters .filter-title {
  margin-bottom: 7px;
  display: block;
}
.event-blocks__filter-form .form-filters .selected-filters {
  color: #DA291C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.event-blocks__filter-form .form-filters .selected-filters button {
  font-weight: 900;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 5px;
}
.event-blocks__filter-form .form-filters .selected-filters button span {
  background-color: #DA291C;
  border-radius: 100%;
  height: 18px;
  width: 18px;
  margin-left: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  pointer-events: none;
}
.event-blocks__filter-form .form-filters .selected-filters button span:after, .event-blocks__filter-form .form-filters .selected-filters button span:before {
  background-color: #dadada;
  height: 2px;
  width: 10px;
  position: absolute;
  content: "";
}
.event-blocks__filter-form .form-filters .selected-filters button span:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.event-blocks__filter-form .form-filters .selected-filters button span:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.event-blocks__filter-form .form-filters .selected-filters button.selected-item:after {
  content: ",";
}
.event-blocks__filter-form .form-filters .selected-filters button.selected-item:last-child:after {
  content: "";
}
.event-blocks .img-wrap {
  position: relative;
  overflow: hidden;
}
.event-blocks .img-wrap:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 72.7272727273%;
}
.event-blocks .img-wrap > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.event-blocks .img-wrap .img-block {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.event-blocks .grid-map {
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 250px;
}
.event-blocks .grid-map .btn {
  display: block;
  width: auto;
  width: initial;
  padding: 13px 25px;
}
.event-blocks .search-wrap__multi-select-wrap {
  width: 100%;
  position: relative;
  background-image: url("../img/select-down.png");
  background-repeat: no-repeat;
  background-color: white;
  background-position: 95% 50%;
}
.event-blocks .search-wrap__multi-select-wrap.active {
  background-image: url("../img/select-up.png");
}
.event-blocks .search-wrap__multi-select-wrap.active .select-dropdown {
  display: block;
}
.event-blocks .search-wrap__multi-select-wrap.active .input-text {
  border-bottom: 1px solid #dadada;
}
.event-blocks .search-wrap__multi-select-wrap .input-text {
  padding: 18px 15px;
  line-height: 1;
  width: 100%;
  cursor: pointer;
}
.event-blocks .search-wrap .select-dropdown {
  position: absolute;
  top: 100%;
  background-color: white;
  width: 100%;
  left: 0;
  z-index: 1;
  padding: 10px 0;
  display: none;
  max-height: 370px;
  overflow: scroll;
}
.event-blocks .search-wrap .select-dropdown .select-option {
  position: relative;
  cursor: pointer;
}
.event-blocks .search-wrap .select-dropdown .select-option span {
  pointer-events: none !important;
  padding: 10px 15px;
  display: block;
}
.event-blocks .search-wrap .select-dropdown .select-option span:hover {
  background-color: rgba(224, 39, 29, 0.75);
  color: white;
}
.event-blocks .search-wrap .select-dropdown .select-option input {
  pointer-events: none !important;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.event-blocks .search-wrap .select-dropdown .select-option input:checked + span {
  background-color: #DA291C;
  color: white;
}

@media only screen and (min-width: 1024px) {
  .event-grid__blurb {
    padding: 0;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 759px) {
  .event-grid__blurb--narrow {
    max-width: 85%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .event-grid__blurb--narrow {
    max-width: 49.5%;
  }
}
@media only screen and (min-width: 1024px) {
  .event-grid__blurb--narrow {
    margin-bottom: 40px !important;
  }
}
@media only screen and (min-width: 759px) {
  .event-grid__blurb--columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

.form-assembly-section.section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.form-assembly {
  background: #F2F4F7;
  padding: 40px 20px;
  border-radius: 8px;
  /*
   Place all FormAssembly overrides within the following `.wForm` wrapper.
   Many styles provided by FormAssembly otherwise take precedence.
   */
}
.form-assembly h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-assembly__blurb {
  font-weight: 400;
  margin-bottom: 24px;
}
.form-assembly__blurb p {
  margin: 0;
  line-height: 30px;
}
.form-assembly__form-wrapper {
  width: 100%;
}
.form-assembly .wFormContainer {
  border: none;
  width: 100%;
  max-width: none;
}
.form-assembly .wFormContainer .wFormHeader {
  display: none;
}
.form-assembly .wFormContainer .wForm {
  background: none;
  padding: 0;
}
.form-assembly .wFormContainer .wForm * {
  font-weight: 400 !important;
}
.form-assembly .wFormContainer .wForm .oneField {
  padding: 0;
  border: none;
  margin-bottom: 1.5rem;
}
.form-assembly .wFormContainer .wForm .oneField input {
  padding: 12px 8px;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
}
.form-assembly .wFormContainer .wForm .oneField .errMsg {
  margin-top: 0.5rem;
}
.form-assembly .wFormContainer .wForm .inline div.oneField input[type=text], .form-assembly .wFormContainer .wForm .inline div.oneField input[type=email],
.form-assembly .wFormContainer .wForm input[type=text],
.form-assembly .wFormContainer .wForm input[type=email] {
  background: #fff;
  color: #000;
  font-family: "Geomanist";
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 10px;
  width: 100%;
  height: auto;
}
.form-assembly .wFormContainer .wForm .inline div.oneField input[type=submit],
.form-assembly .wFormContainer .wForm input[type=submit] {
  background: #DA291C;
  width: auto;
  display: block;
  padding: 16px 32px;
  font-family: "Geomanist", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.15em;
  font-size: 1.125rem;
  line-height: 1.2;
  border-radius: 8px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  margin: auto;
}
.form-assembly .wFormContainer .wForm .inline div.oneField input[type=file],
.form-assembly .wFormContainer .wForm input[type=file] {
  background: none;
}
.form-assembly .wFormContainer .wForm .inline div.oneField select,
.form-assembly .wFormContainer .wForm select {
  border: none;
  background: #fff;
  color: #000;
  font-family: "Geomanist";
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 10px;
  width: 100%;
  height: auto;
  /* hide the default browser cta button for <select> objects */
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-assembly .wFormContainer .wForm .inline div.oneField .form-assembly__select::after,
.form-assembly .wFormContainer .wForm .form-assembly__select::after {
  content: "";
  position: absolute !important;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 13px;
  background: transparent url("../svg/chevron-down-solid.svg") no-repeat;
  background-position: center;
}
.form-assembly .wFormContainer .wForm .inline div.oneField .inputWrapper,
.form-assembly .wFormContainer .wForm .inputWrapper {
  width: 100% !important;
}
.form-assembly .wFormContainer .wForm .inline div.oneField,
.form-assembly .wFormContainer .wForm div div.oneField {
  width: 100% !important;
}
@media only screen and (min-width: 759px) {
  .form-assembly .wFormContainer .wForm .inline div.oneField,
.form-assembly .wFormContainer .wForm div div.oneField {
    width: 49% !important;
  }
}
.form-assembly .wFormContainer .wForm .section.inline {
  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;
}
@media only screen and (min-width: 759px) {
  .form-assembly .wFormContainer .wForm .section.inline {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.form-assembly .wFormContainer .wForm .section.inline > div {
  -webkit-box-flex: 100%;
      -ms-flex: 100% 1 1;
          flex: 100% 1 1;
}
@media only screen and (min-width: 759px) {
  .form-assembly .wFormContainer .wForm .section.inline > div {
    -webkit-box-flex: 49%;
        -ms-flex: 49% 0 0px;
            flex: 49% 0 0;
  }
}
.form-assembly .wFormContainer .wForm .section .oneField {
  width: 100% !important;
}
.form-assembly .wFormContainer .wForm .empty {
  display: none;
}
.form-assembly .wFormContainer .wFormFooter,
.form-assembly .wFormContainer > .supportInfo {
  display: none;
}
.form-assembly .htmlSection div,
.form-assembly .htmlSection p {
  margin-top: 0;
  margin-bottom: 0.9375rem;
  line-height: 1.6em;
}

.wp-block-column .form-assembly .wFormContainer .wForm div div.oneField {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
}
.hero-image-container, .hero-content-container {
  padding: 24px 0;
}
@media only screen and (min-width: 1024px) {
  .hero-image-container, .hero-content-container {
    padding: 48px 0;
  }
}
.hero-image-container:last-child, .hero-content-container:last-child {
  padding-top: 0;
}
.hero-image-container {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .hero-main .hero-content-container {
    max-width: 1051px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-internal .hero-image, .hero-post .hero-image {
    height: 80vh;
    max-height: 684px;
    border-radius: 8px;
  }
}
.hero-internal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 1024px) {
  .hero-internal {
    padding-left: 96px;
    padding-right: 96px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-internal .hero-content-container {
    max-width: 1022px;
  }
}
.hero-internal .hero-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-internal .hero-title,
.hero-internal .hero-text {
  text-align: center;
}
.hero-post .hero-content-container {
  padding: 16px;
  background-color: #FBFBFB;
  z-index: 2;
  left: 0;
  position: relative;
  margin-top: -92px !important;
  max-width: 82%;
  border-radius: 8px;
}
@media only screen and (min-width: 1024px) {
  .hero-post .hero-content-container {
    margin-left: 48px;
    max-width: 922px;
    padding: 48px;
    margin-top: -184px !important;
    margin-left: 48px !important;
  }
}
@media only screen and (max-width: 1023px) {
  .hero-post .hero-content-container {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-post .hero-content-container .hero-title,
.hero-post .hero-content-container .hero-text {
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .hero .content-center {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1024px) {
  .hero .content-start {
    margin: 0;
  }
}
.hero-image {
  height: 40vh;
  width: 100%;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -ms-flex-item-align: center;
      align-self: center;
}
@media only screen and (min-width: 1024px) {
  .hero-image {
    height: 50vh;
    border-radius: 4px;
  }
}
.hero-image .hero-learn-more {
  padding: 36.5px 68.5px;
  background: #DA291C;
  border-radius: 4px;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 1023px) {
  .hero-image .hero-learn-more {
    display: none;
  }
}
.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.hero-content .hero-tag {
  color: #fff;
  background: #DA291C;
  padding: 9px 16px;
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.hero-content .hero-text {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 400;
}
@media only screen and (min-width: 1024px) {
  .hero-content .hero-text {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.the-latest {
  background: #F9FAFB;
}
.the-latest__inner {
  padding-top: 48px;
  padding-bottom: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.the-latest__actions-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.the-latest__articles-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 1024px) {
  .the-latest__articles-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.the-latest__articles-container .the-latest__articles-list {
  width: 100%;
  background: #F6F7F9;
  padding: 20px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media only screen and (min-width: 1024px) {
  .the-latest__articles-container .the-latest__articles-list {
    width: 60%;
    padding: 40px;
  }
}
.the-latest__articles-container .the-latest__articles-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 1024px) {
  .the-latest__articles-container .the-latest__articles-list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.the-latest__articles-container .the-latest__articles-list-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .the-latest__articles-container .the-latest__articles-list-item-content {
    width: calc(100% - 250px);
  }
}
.the-latest__articles-container .the-latest__articles-list-item-title {
  font-weight: 700;
  margin: 0;
}
.the-latest__articles-container .the-latest__articles-list-item-summary {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1023px) {
  .the-latest__articles-container .the-latest__articles-list-item-summary {
    display: none;
  }
}
.the-latest__articles-container .the-latest__articles-list-item-summary, .the-latest__articles-container .the-latest__articles-list-item .the-latest__featured-article-category-date {
  font-weight: 400;
  color: #7A7986;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
.the-latest__articles-container .the-latest__articles-list-item .the-latest__featured-article-category-date .the-latest__featured-article-category {
  border-right: 1px solid #CBCBCF;
}
.the-latest__articles-container .the-latest__articles-list-item:not(:last-child) {
  padding-bottom: 48px;
  border-bottom: 1px solid #292D321A;
}
.the-latest__articles-container .the-latest__articles-list-item-image {
  width: 100%;
  height: 223px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}
@media only screen and (min-width: 1024px) {
  .the-latest__articles-container .the-latest__articles-list-item-image {
    height: 180px;
    width: 250px;
  }
}
.the-latest__articles-container .the-latest__featured-article {
  width: 100%;
  padding: 40px;
  border-radius: 8px;
  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;
  background-repeat: no-repeat;
  background-size: cover;
  gap: 24px;
}
.the-latest__articles-container .the-latest__featured-article-title {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .the-latest__articles-container .the-latest__featured-article-title {
    font-size: 2.25rem;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 1024px) {
  .the-latest__articles-container .the-latest__featured-article {
    width: 40%;
  }
}
@media only screen and (max-width: 1023px) {
  .the-latest__articles-container .the-latest__featured-article {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 400px;
  }
}
.the-latest__articles-container .the-latest__featured-article-info {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -2%;
  font-weight: 400;
  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;
}
.the-latest__articles-container .the-latest__featured-article-category-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.the-latest__articles-container .the-latest__featured-article-category, .the-latest__articles-container .the-latest__featured-article-date {
  padding: 4px 8px;
}
.the-latest__articles-container .the-latest__featured-article-category {
  padding-left: 0;
}
.the-latest__articles-container .the-latest__featured-article-date {
  padding-right: 0;
}
.the-latest__articles-container .the-latest__featured-article-category {
  border-right: 1px solid #fff;
}
.the-latest__read-more-btn {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  background: #DA291C;
  text-transform: uppercase;
}

.our-people .img-wrap {
  position: relative;
}
.our-people .img-wrap:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 126.8348623853%;
}
.our-people .img-wrap > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.our-people h2 {
  line-height: 1.4;
}
.our-people .position {
  display: block;
  color: #949494;
}
.our-people__copy {
  padding: 30px 0px;
}
.our-people__copy p {
  line-height: 1.7;
}
.our-people__copy a {
  font-size: 1rem;
  line-height: 1.2;
  font-family: "Geomanist", sans-serif;
  font-weight: 700;
}
.our-people__copy a span {
  font-size: 1.625rem;
  line-height: 1.2;
  line-height: 0;
  position: relative;
  top: 1px;
}
.our-people__team {
  padding: 80px 0 60px;
}
.our-people__team p {
  line-height: 1.5;
  margin-bottom: 40px;
}
.our-people__team ul {
  list-style-type: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.our-people__team ul li {
  width: 100%;
}
@media only screen and (min-width: 759px) {
  .our-people__team ul li {
    width: calc(50% - 10px);
  }
}
.our-people__team ul li a {
  font-weight: bold;
}
.our-people__types {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-bottom: 35px;
}
.our-people__types a {
  margin-bottom: 25px;
  font-size: 1.125rem;
  line-height: 1.2;
  display: block;
  color: #DA291C;
  font-family: "Geomanist";
  font-weight: 700;
}
.our-people .person {
  grid-column: span 12;
}
@media only screen and (min-width: 759px) {
  .our-people .person {
    grid-column: span 6;
  }
}
.our-people__featured-people-wrapper, .our-people__team-wrapper {
  grid-column: span 12;
}
@media only screen and (min-width: 1260px) {
  .our-people__featured-people-wrapper, .our-people__team-wrapper {
    grid-column: span 6;
  }
}
.our-people__types-wrapper {
  grid-column: 2/span 10;
}
@media only screen and (min-width: 1260px) {
  .our-people__types-wrapper {
    grid-column: 3/span 8;
  }
}

@media only screen and (max-width: 1023px) {
  .promo-block {
    overflow-x: hidden;
  }
}
@media only screen and (min-width: 1024px) {
  .promo-block {
    grid-template-rows: repeat(3, minmax(216px, 1fr));
  }
}
@media only screen and (min-width: 1024px) {
  .promo-block__header {
    grid-row: 1/span 3;
  }
}
.promo-block__bkg {
  position: relative;
  padding-bottom: 56.25%;
  height: 80vh;
  margin-bottom: 3.125rem;
}
.promo-block__bkg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.18;
}
@media only screen and (min-width: 1024px) {
  .promo-block__bkg {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.promo-block__bkg picture {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.promo-block__bkg picture img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo-block__bkg h2 {
  position: absolute;
  display: inline-block;
  bottom: 1.25rem;
  left: 1.25rem;
  width: calc(100% - 2.5rem);
  text-transform: uppercase;
  font-family: "Geomanist", sans-serif;
  font-weight: 900;
  letter-spacing: 0.15rem;
  font-size: 2.75rem;
  line-height: 1.2;
  color: #fff;
}
@media only screen and (min-width: 375px) {
  .promo-block__bkg h2 {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 759px) {
  .promo-block__bkg h2 {
    font-size: 4.5rem;
    line-height: 1.2;
    left: 1.875rem;
    bottom: 1.875rem;
    width: calc(100% - 3.75rem);
  }
}
@media only screen and (min-width: 1024px) {
  .promo-block__bkg h2 {
    top: 3rem;
    left: 4.375rem;
    width: calc(50% - 8.75rem);
    font-size: 4.5rem;
    line-height: 1.2;
  }
}
.promo-block__cta {
  padding: 0 1.25rem;
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 759px) {
  .promo-block__cta {
    padding: 0 1.875rem;
    margin-bottom: 3.75rem;
  }
}
@media only screen and (min-width: 1024px) {
  .promo-block__cta {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 0 1rem 1rem;
    background: #fff;
    width: calc(50% + 0.5rem);
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .promo-block__links {
    grid-row: 3/span 2;
    display: block;
    margin: 0 20px;
    padding: 20px;
    background: #f2f2f2;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 759px) {
  .promo-block__links {
    margin: 0 30px;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 1024px) {
  .promo-block__links {
    margin: 0;
    padding: 0;
    background: none;
    display: block;
  }
}
@media only screen and (max-width: 1023px) {
  .promo-block__link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 759px) {
  .promo-block__link {
    margin-bottom: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
    margin-right: 30px;
  }
  .promo-block__link:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 1024px) {
  .promo-block__link {
    margin-bottom: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .promo-block__link:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .promo-block__link picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
  }
  .promo-block__link picture img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    margin: 0 auto;
  }
  .promo-block__link picture:after {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.05)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 100%);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
  }
}
@media only screen and (max-width: 1023px) {
  .promo-block__link:hover picture img, .promo-block__link:focus picture img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media only screen and (max-width: 1023px) {
  .promo-block__link span {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: block;
    padding: 0.9375rem;
    color: #fff;
    text-transform: uppercase;
    font-family: "Geomanist";
    font-weight: 700;
  }
}
@media only screen and (max-width: 1023px) {
  .promo-block__link a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .promo-block--cta-bottom .promo-block__bkg h2 {
    bottom: 2rem;
    top: auto;
  }
  .promo-block--cta-bottom .promo-block__cta {
    top: auto;
    bottom: 0;
    padding: 1rem 0 0 1rem;
    background: #fff;
  }
  .promo-block--cta-bottom .promo-block__links {
    grid-row: 4/span 1;
  }
}

.services-block__spacer {
  margin-top: 50px;
}

.share-categories {
  padding: 75px 0;
}
.share-categories.alt {
  padding: 25px 0;
}
.share-categories h2 {
  margin-bottom: 5px;
}
.share-categories__blurb {
  display: block;
  margin-top: 10px;
}

.stats-block h2,
.stats-block h3,
.stats-block h4 {
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1.2;
  font-family: "Geomanist", sans-serif;
  font-weight: 900;
  letter-spacing: 0.15rem;
  letter-spacing: 0;
  line-height: 3.2rem;
}
.stats-block h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 500;
}
.stats-block__copy {
  padding-bottom: 1rem;
}
@media only screen and (min-width: 1024px) {
  .stats-block__copy {
    padding: 0px 45px 35px 0;
  }
}
.stats-block picture {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.stats-block picture img {
  -o-object-fit: cover;
     object-fit: cover;
}
.stats-block__links {
  margin: 25px 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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 759px) {
  .stats-block__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.stats-block__links a {
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.2;
  font-family: "Geomanist";
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
@media only screen and (min-width: 759px) {
  .stats-block__links a {
    border-right: 2px solid black;
    width: 33.3333333333%;
    text-align: center;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 759px) {
  .stats-block__links a:first-child {
    text-align: left;
  }
}
@media only screen and (min-width: 759px) {
  .stats-block__links a:last-child {
    border-right: 0;
  }
}
.stats-block__links--alignleft {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.stats-block__post a {
  font-family: "Geomanist";
  font-weight: 700;
  text-transform: uppercase;
}
.stats-block__post a span {
  font-size: 1.125rem;
  line-height: 1.2;
}
.stats-block__post p {
  color: #5d6263;
  font-size: 1rem;
  line-height: 1.2;
  line-height: 1.5;
  margin: 1rem 0;
}
.stats-block__post h2,
.stats-block__post h3,
.stats-block__post h4 {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media only screen and (min-width: 759px) {
  .stats-block__post h2,
.stats-block__post h3,
.stats-block__post h4 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}
.stats-block__post-img {
  margin-bottom: 20px;
  width: 100vw;
  overflow: hidden;
  margin-left: -50vw;
  left: calc(50vw - 20px);
  height: 70vh;
}
@media only screen and (min-width: 759px) {
  .stats-block__post-img {
    left: calc(50vw - 30px);
  }
}
@media only screen and (min-width: 1024px) {
  .stats-block__post-img {
    margin-bottom: 20px;
    width: 100%;
    margin-left: auto;
    height: auto;
    left: auto;
  }
}
.stats-block__post-img::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.18;
}
@media only screen and (min-width: 1024px) {
  .stats-block__post-img::after {
    padding-bottom: 56.25%;
    background: transparent;
    height: 0;
  }
}
.stats-block__post-img img {
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  -webkit-transform: none;
          transform: none;
  height: 100%;
}
@media only screen and (min-width: 1024px) {
  .stats-block__post-img img {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 1023px) {
  .stats-block__post h2.stats-block__post-title,
.stats-block__post h3.stats-block__post-title {
    height: 70vh;
    position: absolute;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    color: #fff;
    padding-bottom: 20px;
    font-family: "Geomanist", sans-serif;
    font-weight: 900;
    letter-spacing: 0.15rem;
    font-size: 2.875rem;
    line-height: 1.2;
  }
}
.stats-block__post-media {
  background: #d6dee1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1024px) {
  .stats-block__post-media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.stats-block__post-media h2,
.stats-block__post-media h3,
.stats-block__post-media h4 {
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 30px;
}
.stats-block__post-media p {
  color: #5d6263;
  font-size: 1rem;
  line-height: 1.2;
  line-height: 1.5;
}
.stats-block__post-media-img {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}
.stats-block__post-media-img::after {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: 56.25%;
}
@media only screen and (min-width: 1024px) {
  .stats-block__post-media-img {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    margin-bottom: 0;
  }
}
.stats-block__post-media-content {
  padding: 20px;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}
@media only screen and (min-width: 1024px) {
  .stats-block__post-media-content {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    padding: 30px 40px;
  }
}
.stats-block__post-media-content h3 {
  font-size: 1.25rem;
  line-height: 1.25rem;
}
.stats-block__post-media .full-bg.scale {
  background-size: cover;
}
@media only screen and (min-width: 1024px) {
  .stats-block__post-media .full-bg.scale {
    background-size: auto 110%;
  }
}
.stats-block__post-media:hover .full-bg.scale {
  background-size: auto 100%;
}
.stats-block__promo {
  margin: 2.5rem 0;
  padding: 1.25rem;
  background: #f2f2f2;
}
@media only screen and (min-width: 759px) {
  .stats-block__promo {
    margin: 3.75rem 0;
    padding: 1.875rem;
  }
}
@media only screen and (min-width: 1024px) {
  .stats-block__promo {
    margin: 1rem 0 0 0;
    padding: 0;
    background: none;
  }
}
.stats-block__slider {
  background: #d6dee1;
  padding: 40px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .stats-block__slider {
    padding: 60px;
  }
}
.stats-block__slider-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-bottom: 20px;
  width: 100%;
}
.stats-block__slider-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.stats-block__slider-nav ul li {
  display: block;
  margin: 0 10px 0 0;
}
.stats-block__slider-nav ul li.slick-active button {
  background: #000;
}
.stats-block__slider-nav ul li:last-of-type {
  margin: 0;
}
.stats-block__slider-nav button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  background: #b0b795;
  font-size: 0;
}
.stats-block__promo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .stats-block__blurb {
    padding: 0;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 759px) {
  .stats-block__blurb--narrow {
    max-width: 85%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .stats-block__blurb--narrow {
    max-width: 49.5%;
  }
}
@media only screen and (min-width: 1024px) {
  .stats-block__blurb--narrow {
    margin-bottom: 40px !important;
  }
}
@media only screen and (min-width: 759px) {
  .stats-block__blurb--columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

.single-btn__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: colunn;
          flex-direction: colunn;
  margin: 10px 0;
}
@media only screen and (min-width: 759px) {
  .single-btn__btn-wrapper--center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .single-btn__btn-wrapper--left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .single-btn__btn-wrapper--right {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  .single-btn__btn-wrapper {
    margin: 0;
  }
}

.two-col-copy {
  margin-top: 20px;
  padding: 0 0 60px;
}
.two-col-copy__title-wrap h2 {
  margin-bottom: 0.5rem;
}
.two-col-copy__title-wrap .sub-title {
  font-size: 1.6875rem;
  line-height: 1.2;
  color: #5d6263;
  margin-bottom: 35px;
}
.two-col-copy__content p:first-child {
  margin-top: -15px;
}
@media only screen and (min-width: 1024px) {
  .two-col-copy__content--full {
    width: 75%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 759px) {
  .two-col-copy__content--narrow {
    max-width: 85%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .two-col-copy__content--narrow {
    max-width: 49.5%;
  }
}
@media only screen and (min-width: 759px) {
  .two-col-copy__content--columns p {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.two-col-copy__content a {
  text-decoration: underline;
  color: #DA291C;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.two-col-copy__content a:hover {
  border-radius: 2px;
  background-color: #FA3F20;
  color: #fff;
  text-decoration: none;
}
.two-col-copy__content a:focus, .two-col-copy__content a:focus-visible {
  background-color: #FA3F20;
  color: #fff;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px #8B5CD7;
          box-shadow: 0 0 0 3px #8B5CD7;
  border-radius: 2px;
  text-decoration: none;
}

@media only screen and (min-width: 759px) {
  .chrome .two-col-copy__content--columns p {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.section > .section:first-of-type.two-col-copy {
  padding: 0 0 40px;
}

.hero-feature + .two-col-copy {
  margin-top: 60px;
}

.external-links .header-col {
  padding: 50px;
}
@media only screen and (min-width: 759px) {
  .external-links .header-col {
    padding: 70px;
  }
}
.external-links .link-col {
  padding: 50px;
}
@media only screen and (min-width: 759px) {
  .external-links .link-col {
    padding: 70px;
  }
}
.external-links .link-col p {
  margin-bottom: 0;
}
.external-links .link-col a {
  display: block;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
}
.external-links .link-col a:after, .external-links .link-col a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #dadada;
}
.external-links .link-col a:before {
  width: 0%;
  background-color: #949494;
  z-index: 1;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
.external-links .link-col a:hover:before {
  width: 100%;
}

.intro-blurb-content {
  padding-top: 40px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}
.intro-blurb-content a {
  color: #DA291C;
}
.intro-blurb-content p:only-child, .intro-blurb-content p:last-child {
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .intro-blurb-content {
    padding: 128px 334px;
    font-size: 1.75rem;
    line-height: 1.2;
  }
}
.intro-blurb-black {
  background: #1E1E1E;
}
.intro-blurb-red {
  background: #BF0D02;
}
.intro-blurb-red .intro-blurb-content a {
  text-decoration: underline;
  color: #fff;
}
.intro-blurb-white {
  background: #fff;
}
.intro-blurb-white .intro-blurb-content {
  color: #1E1E1E;
}
.intro-blurb-black .intro-blurb-text, .intro-blurb-red .intro-blurb-text {
  color: #fff;
}

.news-image-breaker-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.news-image-breaker-image .news-image-breaker__content::before, .news-image-breaker-video .news-image-breaker__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw;
}
.news-image-breaker__video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.news-image-breaker__content {
  padding-top: 60px;
  padding-bottom: 60px;
  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;
  z-index: 1;
  min-height: 525px;
}
@media only screen and (min-width: 1024px) {
  .news-image-breaker__content {
    padding: 120px 80px 40px;
  }
}
.news-image-breaker__content h2, .news-image-breaker__content h3 {
  color: #fff;
}
.news-image-breaker__content .news-image-breaker__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.news-image-breaker__content .news-image-breaker__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
  -webkit-transition: gap 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: gap 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 1024px) {
  .news-image-breaker__content .news-image-breaker__link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 60px;
  }
  .news-image-breaker__content .news-image-breaker__link:hover {
    gap: 80px;
  }
}

.doing-business-breaker__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 363px;
}
.doing-business-breaker__content-left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .doing-business-breaker__content-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.doing-business-breaker__content-right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  .doing-business-breaker__content-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.doing-business-breaker-red .doing-business-breaker__content {
  color: #fff;
  background: #DA291C;
}
.doing-business-breaker-white .doing-business-breaker__content {
  color: #1E1E1E;
  background: #fff;
}
.doing-business-breaker__content-container, .doing-business-breaker__image-container {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .doing-business-breaker__content-container, .doing-business-breaker__image-container {
    width: 50%;
  }
}
.doing-business-breaker__content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 40px;
}
@media only screen and (min-width: 1024px) {
  .doing-business-breaker__content-container {
    padding: 40px 80px;
  }
}
.doing-business-breaker__content-container .doing-business-breaker__text {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}
.doing-business-breaker__image-container {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (min-width: 1024px) {
  .doing-business-breaker__image-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media only screen and (max-width: 1023px) {
  .doing-business-breaker__image-container {
    height: 365px;
    width: 100%;
  }
}

.multi-purpose-vertical-images.section {
  margin-top: 48px;
  margin-bottom: 96px;
}
.multi-purpose-vertical-images__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.multi-purpose-vertical-images__items-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  overflow: auto;
}
@media only screen and (min-width: 1024px) {
  .multi-purpose-vertical-images__items-container {
    overflow: hidden;
    gap: 40px;
  }
}
.multi-purpose-vertical-images__item {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 280px;
  width: 280px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media only screen and (min-width: 1024px) {
  .multi-purpose-vertical-images__item {
    min-width: calc(25% - 40px + 10px);
    width: calc(25% - 40px + 10px);
  }
  .multi-purpose-vertical-images__item:nth-child(even) {
    padding-top: 40px;
  }
}
.multi-purpose-vertical-images__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.multi-purpose-vertical-images__item-image {
  height: 320px !important;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: auto;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .multi-purpose-vertical-images__item-image {
    height: 420px !important;
  }
}
.multi-purpose-vertical-images__item-tag {
  color: #fff;
  background: #DA291C;
  padding: 8px 16px;
  border-radius: 4px;
  text-transform: uppercase;
  line-height: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.multi-purpose-vertical-images__item-title {
  color: #141414;
  margin: 0;
}
.multi-purpose-vertical-images__item-text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #344054;
  margin: 0;
}

.service-cards {
  background: #F9FAFB;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media only screen and (min-width: 1024px) {
  .service-cards {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.service-cards__top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 1024px) {
  .service-cards__top-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.service-cards__heading {
  color: #292D32;
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .service-cards__heading {
    line-height: 1.25;
    max-width: 456px;
  }
}
.service-cards__description-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .service-cards__description-container {
    max-width: 575px;
  }
}
.service-cards__text {
  color: #292D32;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}
.service-cards__see-more-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  background: #CF2E2E;
  padding: 16px 32px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 400;
}
.service-cards__image {
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: auto;
  width: 100%;
  border-radius: 8px;
}
.service-cards__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.service-cards__items-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  overflow: auto;
}
@media only screen and (min-width: 1024px) {
  .service-cards__items-container {
    overflow: hidden;
  }
}
.service-cards__item {
  background: #BF0D02;
  text-decoration: none;
  min-width: 336px;
  width: 336px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 47.5px 39.6px;
  gap: 60px;
}
@media only screen and (min-width: 1400px) {
  .service-cards__item {
    min-width: calc(25% - 20px + 6.6666666667px);
    width: calc(25% - 20px + 6.6666666667px);
  }
}
.service-cards__item-title-image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.service-cards__item-image {
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: auto;
  width: 100%;
}
.service-cards__item-title {
  color: #fff;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .service-cards__item-title {
    min-height: 4.8rem;
  }
}
.service-cards__item-title.dta-mobile {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .service-cards__item-title.dta-mobile {
    display: none;
  }
}
.service-cards__item-title.dta-desktop {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .service-cards__item-title.dta-desktop {
    display: block;
  }
}

.card-carousel {
  background: #F9FAFB;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media only screen and (min-width: 1024px) {
  .card-carousel {
    padding-top: 48px;
    padding-bottom: 96px;
  }
}
.card-carousel .block-pagination {
  gap: 48px;
}
.card-carousel__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.card-carousel__items-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  overflow: auto;
}
@media only screen and (min-width: 1024px) {
  .card-carousel__items-container {
    overflow: hidden;
  }
}
.card-carousel__item {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #E1E8F1;
  text-decoration: none;
  min-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 22px;
  gap: 24px;
  text-decoration: none !important;
}
@media only screen and (min-width: 1024px) {
  .card-carousel__item {
    min-width: calc(33.33% - 24px + 8px);
    width: calc(33.33% - 24px + 8px);
    gap: 20px;
  }
}
.card-carousel__item-title-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.card-carousel__item-title {
  color: #000;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
  margin: 0;
}
.card-carousel__item-text {
  color: #00000099;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  margin: 0;
  /* Limit to 3 lines */
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-carousel__item-image {
  height: 192px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: auto;
  width: 100%;
  border-radius: 8px;
}
.card-carousel__item-download-pdf-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: center;
      align-self: center;
  background-color: #1E1E1E;
  padding: 8px 16px;
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}
.card-carousel__item-download-pdf-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px;
  background-color: #BF0D02;
  border-radius: 8px;
}
.card-carousel__item-download-pdf-icon svg {
  width: 24px;
  height: 24px;
}
.card-carousel__item-image-wrapper {
  position: relative;
  width: 100%;
}
.card-carousel__actions-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-carousel__read-more-btn {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 8px;
  background: #DA291C;
  text-transform: uppercase;
  text-decoration: none !important;
}

.instagram-carousel-feed {
  background: #1E1E1E;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 1024px) {
  .instagram-carousel-feed {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.instagram-carousel-feed__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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media only screen and (min-width: 1024px) {
  .instagram-carousel-feed__top {
    -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;
  }
}
.instagram-carousel-feed__social-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.instagram-carousel-feed__social {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  padding: 10px 8px 10px 20px;
  border-radius: 9999px;
  border: 1px solid #E1E1E1;
  height: 52px;
}
@media only screen and (min-width: 1024px) {
  .instagram-carousel-feed__social {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.instagram-carousel-feed__social-title {
  color: #fff;
  text-transform: uppercase;
}
.instagram-carousel-feed__social .social-icons {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}
.instagram-carousel-feed__heading {
  color: #fff;
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .instagram-carousel-feed__heading {
    line-height: 1.25;
    max-width: 958px;
  }
}
@media only screen and (max-width: 1023px) {
  .instagram-carousel-feed__heading {
    font-size: 3rem;
    line-height: 1.1;
  }
}
.instagram-carousel-feed__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 1024px) {
  .instagram-carousel-feed__content {
    gap: 48px;
  }
}
.instagram-carousel-feed .block-pagination {
  gap: 48px;
}
.instagram-carousel-feed #sb_instagram, .instagram-carousel-feed #sbi_images {
  padding: 0 !important;
}
.instagram-carousel-feed #sbi_load, .instagram-carousel-feed .sbi-owl-nav, .instagram-carousel-feed .sbi-owl-dots {
  display: none;
}
.instagram-carousel-feed #sb_instagram .sbi_photo {
  height: 236px !important;
  width: 236px !important;
}
@media only screen and (min-width: 1024px) {
  .instagram-carousel-feed #sb_instagram .sbi_photo {
    height: 290px !important;
    width: 290px !important;
  }
}
.instagram-carousel-feed .sbi-owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  -webkit-transform: none !important;
          transform: none !important;
}
.instagram-carousel-feed .sbi-owl-item {
  padding: 24px 22px;
  border-radius: 20px;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  border: 1px solid #E1E8F1;
}
.instagram-carousel-feed .sbi-owl-item .sbi_item {
  padding: 0 !important;
  height: 236px !important;
  width: 236px !important;
}
@media only screen and (min-width: 1024px) {
  .instagram-carousel-feed .sbi-owl-item .sbi_item {
    height: 290px !important;
    width: 290px !important;
  }
}
.instagram-carousel-feed .sbi-owl-item .sbi_photo_wrap {
  border-radius: 8px;
}
.instagram-carousel-feed .sbi-owl-item .sbi_info_wrapper {
  display: none;
}
.instagram-carousel-feed .sbi-owl-item .sbi_photo {
  border-radius: 8px;
}
.instagram-carousel-feed .sbi-owl-item .sbi_photo img {
  border-radius: 8px;
}
.instagram-carousel-feed .sbi-owl-item .sbi_hover_bottom {
  display: none !important;
}
.instagram-carousel-feed .sbi-owl-item .sbi_playbtn {
  position: absolute;
  top: 36px !important;
  left: 278px !important;
  width: 16px !important;
  height: 16px !important;
}

.fifty-fifty-breaker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .fifty-fifty-breaker.section {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .fifty-fifty-breaker {
    padding-top: 96px;
    gap: 48px;
  }
}
.fifty-fifty-breaker__heading {
  color: #292D32;
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .fifty-fifty-breaker__heading {
    line-height: 1.25;
    max-width: 958px;
  }
}
@media only screen and (max-width: 1023px) {
  .fifty-fifty-breaker__heading {
    font-size: 3rem;
    line-height: 1.1;
  }
}
.fifty-fifty-breaker__tag {
  color: #fff;
  background: #CF2E2E;
  padding: 8px 16px;
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}
.fifty-fifty-breaker__title {
  color: #292D32;
  margin: 0;
}
.fifty-fifty-breaker .fifty-fifty-breaker__text {
  color: #292D32;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}
.fifty-fifty-breaker .continue-reading-cta {
  color: #292D32;
}
.fifty-fifty-breaker .continue-reading-cta svg path {
  stroke: #292D32;
}
@media only screen and (min-width: 1024px) {
  .fifty-fifty-breaker .continue-reading-cta {
    width: 100%;
  }
}
.fifty-fifty-breaker__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 460px;
  text-decoration: none;
  gap: 40px;
}
@media only screen and (min-width: 1024px) {
  .fifty-fifty-breaker__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.fifty-fifty-breaker__content-left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .fifty-fifty-breaker__content-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.fifty-fifty-breaker__content-right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  .fifty-fifty-breaker__content-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.fifty-fifty-breaker__content-container, .fifty-fifty-breaker__image-container {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .fifty-fifty-breaker__content-container, .fifty-fifty-breaker__image-container {
    width: 50%;
  }
}
.fifty-fifty-breaker__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.fifty-fifty-breaker__content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
  padding-right: 40px;
}
.fifty-fifty-breaker__image-container {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (min-width: 1024px) {
  .fifty-fifty-breaker__image-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 460px;
  }
}
@media only screen and (max-width: 1023px) {
  .fifty-fifty-breaker__image-container {
    height: 232.729px;
    width: 100%;
  }
}

.offset-images {
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px;
  width: 100vw;
  max-width: 100vw;
}
@media only screen and (max-width: 1023px) {
  .offset-images {
    margin-bottom: 0;
  }
}
.offset-images__image-container {
  position: relative;
  height: 397px;
}
@media only screen and (min-width: 1024px) {
  .offset-images__image-container {
    height: 646px;
  }
}
.offset-images__first-image, .offset-images__second-image {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 50%;
  height: 81.42%;
}
@media only screen and (max-width: 1023px) {
  .offset-images__first-image, .offset-images__second-image {
    height: 53.91%;
    width: calc(100% - 70px);
  }
}
.offset-images__first-image {
  z-index: 2;
}
.offset-images__second-image {
  z-index: 1;
}
.offset-images-top-left .offset-images__first-image {
  left: 0;
}
.offset-images-top-left .offset-images__second-image {
  left: 70px;
  bottom: 22px;
}
@media only screen and (min-width: 1024px) {
  .offset-images-top-left .offset-images__second-image {
    left: unset;
    right: 119px;
    bottom: 48.377px;
  }
}
.offset-images-bottom-left .offset-images__first-image {
  left: 0;
  bottom: 22px;
}
@media only screen and (min-width: 1024px) {
  .offset-images-bottom-left .offset-images__first-image {
    bottom: 48.377px;
  }
}
.offset-images-bottom-left .offset-images__second-image {
  left: 70px;
}
@media only screen and (min-width: 1024px) {
  .offset-images-bottom-left .offset-images__second-image {
    left: unset;
    right: 119px;
  }
}
.offset-images-top-right .offset-images__first-image {
  right: 0;
}
@media only screen and (min-width: 1024px) {
  .offset-images-top-right .offset-images__first-image {
    right: unset;
    left: 119px;
  }
}
.offset-images-top-right .offset-images__second-image {
  right: 70px;
  bottom: 22px;
}
@media only screen and (min-width: 1024px) {
  .offset-images-top-right .offset-images__second-image {
    right: 0;
    bottom: 48.377px;
  }
}
.offset-images-bottom-right .offset-images__first-image {
  left: 70px;
  bottom: 22px;
}
@media only screen and (min-width: 1024px) {
  .offset-images-bottom-right .offset-images__first-image {
    left: 119px;
    bottom: 48.377px;
  }
}
.offset-images-bottom-right .offset-images__second-image {
  right: 70px;
}
@media only screen and (min-width: 1024px) {
  .offset-images-bottom-right .offset-images__second-image {
    right: 0;
  }
}

.image-gallery {
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px;
  width: 100vw;
  max-width: 100vw;
}
.image-gallery__selected-image, .image-gallery__list-container, .image-gallery__list-wrapper {
  width: 100%;
}
.image-gallery__selected-image {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 39/22;
}
@media only screen and (min-width: 1024px) {
  .image-gallery__selected-image {
    aspect-ratio: 1264/713;
    max-height: 713px;
    width: 79%;
    border-radius: 0 8px 8px 0;
  }
}
.image-gallery__list-wrapper {
  padding: 20px;
  padding-right: 0;
  background-color: #D9D9D9;
  border-radius: 0 0 8px 8px;
}
@media only screen and (min-width: 1024px) {
  .image-gallery__list-wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 79%;
  }
}
.image-gallery__list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  padding-right: 20px;
  max-width: 100%;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.image-gallery__list-container::-webkit-scrollbar {
  display: none;
}
.image-gallery__list-container .image-gallery__image {
  width: 100px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  scroll-snap-align: start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.image-gallery__list-container .image-gallery__image-cta {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.image-gallery__list-container .image-gallery__image.selected {
  border-bottom: 3px solid #CF2E2E;
}
.image-gallery__list-container .image-gallery__image:hover {
  cursor: pointer;
}

.animated-banner {
  overflow: hidden;
}
.animated-banner-red {
  background-color: #DA291C !important;
}
.animated-banner-black {
  background-color: #1E1E1E !important;
}
.animated-banner__content {
  padding-top: 60px;
  padding-bottom: 60px;
  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;
  z-index: 1;
  min-height: 525px;
  text-decoration: none !important;
}
@media only screen and (min-width: 1024px) {
  .animated-banner__content {
    padding: 48px 96px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.animated-banner__content h1 {
  color: #fff;
  margin: 0;
}
.animated-banner__content .animated-banner__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  max-width: 900px;
}
.animated-banner__animation-container {
  height: 100%;
  width: 100%;
  z-index: 0;
}
@media only screen and (min-width: 1024px) {
  .animated-banner__animation-container {
    width: 75%;
  }
}
.animated-banner__animation-container, .animated-banner__animation, .animated-banner__animation-cloud-1, .animated-banner__animation-cloud-2 {
  position: absolute;
}
.animated-banner__animation-container {
  right: 0;
  bottom: 0;
}
.animated-banner__animation {
  right: 0;
  bottom: -210px;
  -webkit-transition: right 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: right 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 1024px) {
  .animated-banner__animation {
    bottom: -85px;
    right: -262.5px;
  }
}
@media only screen and (min-width: 1600px) {
  .animated-banner__animation {
    right: -150px;
  }
}
@media only screen and (max-width: 1023px) {
  .animated-banner__animation svg {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .animated-banner__animation svg {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
.animated-banner__animation-cloud-1 {
  bottom: 100px;
  left: -50px;
  -webkit-transition: right 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: right 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 1024px) {
  .animated-banner__animation-cloud-1 {
    bottom: unset;
    left: unset;
    top: 300px;
    right: 671px;
  }
}
@media only screen and (max-width: 1023px) {
  .animated-banner__animation-cloud-1 svg {
    width: 150px;
  }
}
@media only screen and (min-width: 1024px) {
  .animated-banner__animation-cloud-1 svg {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
.animated-banner__animation-cloud-2 {
  bottom: 150px;
  right: -160px;
  -webkit-transition: right 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: right 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 1024px) {
  .animated-banner__animation-cloud-2 {
    bottom: unset;
    top: 232px;
    right: -50px;
  }
}
@media only screen and (max-width: 1023px) {
  .animated-banner__animation-cloud-2 svg {
    width: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .animated-banner__animation-cloud-2 svg {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
@media only screen and (min-width: 1600px) {
  .animated-banner__animation-cloud-2 svg {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media only screen and (max-width: 1599px) {
  .animated-banner:hover .animated-banner__animation, .animated-banner:focus-within .animated-banner__animation {
    right: -170px;
  }
}
@media only screen and (min-width: 1600px) {
  .animated-banner:hover .animated-banner__animation, .animated-banner:focus-within .animated-banner__animation {
    right: -25px;
  }
}
@media only screen and (min-width: 1024px) {
  .animated-banner:hover .animated-banner__animation-cloud-1, .animated-banner:focus-within .animated-banner__animation-cloud-1 {
    right: 871px;
  }
}
@media only screen and (min-width: 1600px) {
  .animated-banner:hover .animated-banner__animation-cloud-1, .animated-banner:focus-within .animated-banner__animation-cloud-1 {
    right: 1171px;
  }
}
@media only screen and (min-width: 1024px) {
  .animated-banner:hover .animated-banner__animation-cloud-2, .animated-banner:focus-within .animated-banner__animation-cloud-2 {
    right: -150px;
  }
}
@media only screen and (min-width: 1600px) {
  .animated-banner:hover .animated-banner__animation-cloud-2, .animated-banner:focus-within .animated-banner__animation-cloud-2 {
    right: -150px;
  }
}

.single .testimonial.section {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .single .testimonial.section {
    padding-left: 144px;
    padding-right: 144px;
  }
}

.testimonial {
  width: 100%;
  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;
  gap: 24px;
}
@media only screen and (max-width: 1023px) {
  .testimonial.section {
    margin-left: auto;
    margin-right: auto;
  }
}
.testimonial__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 1024px) {
  .testimonial__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.testimonial_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (min-width: 1024px) {
  .testimonial_author {
    width: 143px;
  }
}
.testimonial_author img {
  max-width: 74px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  margin-bottom: 20px;
}
.testimonial_author p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}
.testimonial_author__name {
  margin-bottom: 8px;
}
.testimonial_author__title {
  margin: 0;
  color: #666666;
}
.testimonial_text {
  color: #666666;
  line-height: 1.2;
  font-weight: 400;
  font-size: 18px;
  width: 100%;
  width: 100%;
  max-width: 811px;
}
@media only screen and (min-width: 1024px) {
  .testimonial_text {
    font-size: 24px;
  }
}
.testimonial_text strong {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
}
@media only screen and (min-width: 1024px) {
  .testimonial_text strong {
    font-size: 36px;
  }
}
.testimonial_divider {
  height: 1px;
  background: rgba(41, 45, 50, 0.1);
}

.selling-points-card-grid {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media only screen and (min-width: 1024px) {
  .selling-points-card-grid {
    padding-top: 128px;
    padding-bottom: 128px;
    padding-left: 96px;
    padding-right: 96px;
  }
}
.selling-points-card-grid-dark {
  background: #1E1E1E;
}
.selling-points-card-grid-light {
  background: #F9FAFB;
}
.selling-points-card-grid__see-more-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  background: #CF2E2E;
  padding: 16px 32px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 400;
  -ms-flex-item-align: center;
      align-self: center;
}
.selling-points-card-grid__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 1024px) {
  .selling-points-card-grid__content {
    gap: 48px;
  }
}
.selling-points-card-grid__items-container, .selling-points-card-grid__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
}
.selling-points-card-grid__items-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.selling-points-card-grid__row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .selling-points-card-grid__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.selling-points-card-grid__item {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 47.5px 20px;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 1024px) {
  .selling-points-card-grid__item {
    gap: 60px;
  }
}
.selling-points-card-grid__item-description-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.selling-points-card-grid__item-title, .selling-points-card-grid__item-description {
  color: #fff;
}
.selling-points-card-grid__item-title {
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .selling-points-card-grid__item-title {
    font-size: 2.3770625rem;
    line-height: 1.2;
    font-weight: 700;
  }
}
.selling-points-card-grid__item .continue-reading-cta svg {
  width: 70px;
  height: 17px;
}
.selling-points-card-grid__item .continue-reading-cta svg path {
  stroke: #fff;
}
.selling-points-card-grid__item-dark-red {
  background: #690701;
}
.selling-points-card-grid__item-medium-red {
  background: #BF0D02;
}
.selling-points-card-grid__item-light-red {
  background: #DA291C;
}
.selling-points-card-grid__item-lighter-red {
  background: #FA3F20;
}
.selling-points-card-grid__item-dark-gray {
  background: #475467;
}
.selling-points-card-grid__item-medium-gray {
  background: #667085;
}
.selling-points-card-grid__item-light-gray {
  background: #D0D5DD;
}
.selling-points-card-grid__item-lighter-red .selling-points-card-grid__item-title,
.selling-points-card-grid__item-lighter-red .selling-points-card-grid__item-description, .selling-points-card-grid__item-light-gray .selling-points-card-grid__item-title,
.selling-points-card-grid__item-light-gray .selling-points-card-grid__item-description {
  color: #1E1E1E;
}
.selling-points-card-grid__item-lighter-red .continue-reading-cta svg path, .selling-points-card-grid__item-light-gray .continue-reading-cta svg path {
  stroke: #1E1E1E;
}

.dta-search {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100vw;
  max-width: 100vw;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  .dta-search {
    padding-left: 96px;
    padding-right: 96px;
  }
}
@media only screen and (max-width: 1023px) {
  .dta-search .full-width-section__inner {
    padding: 0 !important;
  }
}
.dta-search__content {
  width: 100%;
  background-color: #f2f4f7;
  padding: 16px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
}
@media only screen and (min-width: 1024px) {
  .dta-search__content {
    padding: 40px 80px;
  }
}
.dta-search__form {
  width: 100%;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dta-search__title-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.dta-search__title, .dta-search__text {
  color: #292D32;
  margin: 0 !important;
}
.dta-search__title {
  text-align: center;
}
.dta-search__input-container {
  width: 100%;
  position: relative;
}
.dta-search__input {
  background-color: #fff;
  padding: 24px 12px !important;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  width: 100%;
}
.dta-search__input::-webkit-input-placeholder {
  color: #667085;
}
.dta-search__input::-moz-placeholder {
  color: #667085;
}
.dta-search__input:-ms-input-placeholder {
  color: #667085;
}
.dta-search__input::-ms-input-placeholder {
  color: #667085;
}
.dta-search__input::placeholder {
  color: #667085;
}
.dta-search__search-submit {
  position: absolute;
  top: 8px;
  right: 12px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  z-index: 2;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  padding: 16px 32px;
  background-color: #CF2E2E;
  border-radius: 8px;
  color: #fff;
  text-transform: uppercase;
}
.dta-search__search-submit svg {
  height: 24px;
  width: 24px;
}
.dta-search__search-submit svg path {
  stroke: #fff;
}

.dta-charts.section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.categories {
  width: 100%;
}
.categories ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  width: 100vw;
  overflow-x: scroll;
  padding-left: 1.875rem;
  margin-right: 1.875rem;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}
.categories ul::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}
@media only screen and (min-width: 759px) {
  .categories ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    width: auto;
    -webkit-transform: none;
            transform: none;
    overflow: visible;
    margin-right: 0;
  }
}
.categories ul li {
  list-style: none;
}
.categories a {
  color: #000;
  padding: 5px 10px;
  display: block;
  background: #c1c6ca;
  white-space: nowrap;
}
@media only screen and (min-width: 1024px) {
  .categories a {
    padding: 8px 10px;
  }
}
.categories--large a {
  font-size: 1.125rem;
  line-height: 1.2;
  font-family: "Geomanist";
  font-weight: 700;
}

/* Styles for Single News pages to align the date and the categories. */
.hero__single-meta .categories {
  margin-top: 0;
  margin-bottom: 5px;
}
@media only screen and (min-width: 1024px) {
  .hero__single-meta .categories {
    margin-top: 8px;
    margin-bottom: 0;
  }
}

.hero__single-meta .categories ul li:last-of-type {
  margin: 0;
}

.directory__listings, .directory__map {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 66.1%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.directory__listings--visible, .directory__map--visible {
  opacity: 1;
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  height: auto;
  pointer-events: auto;
}
.directory__map {
  width: calc(100vw - 2.5rem);
  height: 70vh;
}
@media only screen and (min-width: 759px) {
  .directory__map {
    width: calc(100vw - 3.75rem);
  }
}
@media only screen and (min-width: 1024px) {
  .directory__map {
    width: 100%;
    height: 100%;
  }
}
.directory__listings::after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0.8;
  background-image: url("../svg/loading.svg");
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.directory__listings--loading::after {
  display: block;
}
.social-icons {
  list-style: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 !important;
  padding: 0 !important;
}
.social-icons li {
  list-style: none;
}
.social-icons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #CF2E2E;
}
.social-icons svg {
  pointer-events: none;
  width: 15px;
}
.social-icons svg path {
  fill: #fff;
}
.social-icons__instagram svg {
  height: 15px;
  width: 15px;
}
.social-icons__instagram svg path:not(:first-child) {
  fill: #CF2E2E !important;
}

.social-side-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-radius: 8px;
  border: 1px solid #292D321A;
  background: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 !important;
  margin: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .social-side-bar {
    width: 100%;
  }
}
.social-side-bar li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .social-side-bar li {
    width: 33.33%;
  }
}
.social-side-bar li button {
  padding: 24px;
}
@media only screen and (max-width: 1023px) {
  .social-side-bar li:not(:last-child) {
    border-right: 1px solid #292D321A;
  }
}
@media only screen and (min-width: 1024px) {
  .social-side-bar li:not(:last-child) {
    border-bottom: 1px solid #292D321A;
  }
}
@media only screen and (min-width: 1024px) {
  .social-side-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.social-side-bar svg {
  height: 24px;
  width: 24px;
}
.social-side-bar svg path {
  fill: #292D32;
}

.adny-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
  pointer-events: none;
  opacity: 0;
  overflow-y: auto;
  z-index: 999;
}
.adny-modal ul, .adny-modal ol {
  margin: 25px 0;
  padding: 0 0 0 50px;
}
.adny-modal ul li, .adny-modal ol li {
  margin: 0.625rem 0;
}
.adny-modal ul.blocks-gallery-grid, .adny-modal ol.blocks-gallery-grid {
  padding-left: 0;
}
.adny-modal ul {
  list-style: disc;
}
.adny-modal ol {
  list-style: decimal;
}
.adny-modal__content {
  width: 100%;
  max-width: 700px;
}
@media only screen and (min-width: 759px) {
  .adny-modal__content {
    padding: 10vh 0;
  }
}
.adny-modal__content-inner {
  background: #fff;
  padding: 30px;
  -webkit-box-shadow: 0 1px 3px 1px rgba(60, 64, 67, 0.2), 0 2px 8px 4px rgba(60, 64, 67, 0.1);
          box-shadow: 0 1px 3px 1px rgba(60, 64, 67, 0.2), 0 2px 8px 4px rgba(60, 64, 67, 0.1);
}
@media only screen and (min-width: 759px) {
  .adny-modal__content-inner {
    padding: 60px;
  }
}
.adny-modal__close {
  border: none;
  margin: 0;
  padding: 0;
  z-index: 1;
  position: fixed;
  top: 6px;
  right: 6px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  background: transparent;
}
@media only screen and (min-width: 759px) {
  .adny-modal__close {
    top: 30px;
    right: 40px;
    background: #fff;
  }
}
@media only screen and (min-width: 1024px) {
  .adny-modal__close {
    right: 30px;
  }
}
.adny-modal__close span {
  pointer-events: none;
  display: block;
  height: 1px;
  background: #000;
  top: 50%;
  width: 100%;
  position: absolute;
  left: 0;
}
.adny-modal__close span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.adny-modal__close span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.adny-modal--visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
}
.adny-modal--full-screen .adny-modal__content {
  padding: 60px;
  height: 100%;
}
.adny-modal--full-screen .adny-modal__content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
}

.continue-reading-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
}
.continue-reading-cta svg {
  position: relative;
  -webkit-transition: left 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: left 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 1024px) {
  .continue-reading-cta svg {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .continue-reading-cta {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 60px;
  }
}

@media only screen and (min-width: 1024px) {
  .has-continue-reading-cta:hover .continue-reading-cta svg, .has-continue-reading-cta:focus-within .continue-reading-cta svg {
    left: 20px;
  }
}

.dta-newsletter {
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px;
  width: 100vw;
  max-width: 100vw;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  .dta-newsletter {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.dta-newsletter__content {
  width: 100%;
  background-color: #000;
  padding: 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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .dta-newsletter__content {
    padding: 40px 80px;
  }
}
.dta-newsletter__subscribe-form {
  width: 100%;
  max-width: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dta-newsletter__title, .dta-newsletter__description, .dta-newsletter__subscribe-btn {
  color: #fff;
}
.dta-newsletter__title {
  margin: 0 !important;
  margin-bottom: 8px !important;
}
.dta-newsletter__description {
  margin: 0;
}
.dta-newsletter__subscribe-input {
  background-color: #fff;
  padding: 8px 12px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
  width: 100%;
  max-width: 384px;
  margin-bottom: 26px;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
}
.dta-newsletter__subscribe-input::-webkit-input-placeholder {
  color: #667085;
}
.dta-newsletter__subscribe-input::-moz-placeholder {
  color: #667085;
}
.dta-newsletter__subscribe-input:-ms-input-placeholder {
  color: #667085;
}
.dta-newsletter__subscribe-input::-ms-input-placeholder {
  color: #667085;
}
.dta-newsletter__subscribe-input::placeholder {
  color: #667085;
}
.dta-newsletter__subscribe-btn {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  padding: 8px 16px;
  background-color: #CF2E2E;
  border-radius: 8px;
}
@media only screen and (min-width: 1024px) {
  .dta-newsletter__subscribe-btn {
    padding: 16px 32px;
  }
}

.news-page .hero:first-of-type {
  margin-bottom: 0 !important;
}

.events-page .hero:first-of-type {
  margin-bottom: 0 !important;
}

section[role=main].events-page {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  section[role=main].events-page {
    padding-left: 96px;
    padding-right: 96px;
  }
}
@media only screen and (min-width: 1600px) {
  section[role=main].events-page {
    padding-left: 0;
    padding-right: 0;
  }
}

.dta-related-content {
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px;
  width: 100vw;
  max-width: 100vw;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1024px) {
  .dta-related-content {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.dta-related-content-image-breaker {
  background-repeat: no-repeat;
  background-size: cover;
}
.dta-related-content-image-breaker__content {
  padding: 48px 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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .dta-related-content-image-breaker__content {
    padding: 180px 80px 48px;
  }
}
.dta-related-content-image-breaker__content h2 {
  margin: 0;
  color: #fff;
  z-index: 2;
}
.dta-related-content-image-breaker__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw;
}
.dta-related-content__content {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
}
.dta-related-content__items-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}
.dta-related-content__item {
  min-width: 100%;
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #E1E1E1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
  text-decoration: none !important;
}
@media only screen and (min-width: 1024px) {
  .dta-related-content__item {
    min-width: calc(25% - 18px);
    width: calc(25% - 18px);
  }
}
.dta-related-content__item-image {
  height: 220.5px;
  width: 100%;
  aspect-ratio: 294/220.5;
  -o-object-fit: cover;
     object-fit: cover;
}
.dta-related-content__item-title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  color: #141414;
  margin: 0 !important;
}
.dta-related-content__item-text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #7A7986;
  margin: 0;
}
.dta-related-content__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.dta-related-content__item-category-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: 400;
  color: #7A7986;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
.dta-related-content__item-category, .dta-related-content__item-date {
  padding: 4px 8px;
}
.dta-related-content__item-category {
  border-right: 1px solid #CBCBCF;
  padding-left: 0;
}
.dta-related-content__item-date {
  padding-right: 0;
}

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