/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* line 29, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

/* line 35, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

/* line 42, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -.5rem;
  margin-left: -.5rem;
}

/* line 52, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.row.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* line 56, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/* line 76, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 8.33333%;
  flex-basis: 8.33333%;
  max-width: 8.33333%;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 41.66667%;
  flex-basis: 41.66667%;
  max-width: 41.66667%;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 58.33333%;
  flex-basis: 58.33333%;
  max-width: 58.33333%;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-8 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-10 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-11 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 91.66667%;
  flex-basis: 91.66667%;
  max-width: 91.66667%;
}

/* line 81, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 8.33333%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 16.66667%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 25%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 33.33333%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 41.66667%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 50%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 58.33333%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-8 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 66.66667%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 75%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-10 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 83.33333%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-11 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 91.66667%;
}

/* line 88, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs-offset-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 100%;
}

/* line 93, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.col-xs {
  -webkit-box-flex: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

/* line 98, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: start;
}

/* line 103, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  text-align: center;
}

/* line 108, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  text-align: end;
}

/* line 113, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

/* line 117, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

/* line 121, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

/* line 125, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.around-xs {
  -ms-flex-pack: distribute;
  -moz-justify-content: space-around;
  justify-content: space-around;
}

/* line 129, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

/* line 133, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.first-xs {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

/* line 137, node_modules/flexboxgrid-sass/flexboxgrid.scss */

.last-xs {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media only screen and (min-width: 48em) {
  /* line 147, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .container {
    width: 46rem;
  }

  /* line 151, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 100%;
  }

  /* line 168, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-sm {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  /* line 173, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }

  /* line 178, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  /* line 183, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }

  /* line 188, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  /* line 192, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }

  /* line 196, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  /* line 200, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .around-sm {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  /* line 204, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  /* line 208, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .first-sm {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  /* line 212, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .last-sm {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (min-width: 62em) {
  /* line 147, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .container {
    width: 61rem;
  }

  /* line 151, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 100%;
  }

  /* line 168, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-md {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  /* line 173, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }

  /* line 178, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  /* line 183, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }

  /* line 188, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  /* line 192, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }

  /* line 196, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  /* line 200, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .around-md {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  /* line 204, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  /* line 208, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .first-md {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  /* line 212, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .last-md {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (min-width: 75em) {
  /* line 147, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .container {
    width: 71rem;
  }

  /* line 151, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }

  /* line 156, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66667%;
  }

  /* line 163, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 100%;
  }

  /* line 168, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .col-lg {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  /* line 173, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }

  /* line 178, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  /* line 183, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }

  /* line 188, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  /* line 192, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }

  /* line 196, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  /* line 200, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .around-lg {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  /* line 204, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  /* line 208, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .first-lg {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  /* line 212, node_modules/flexboxgrid-sass/flexboxgrid.scss */

  .last-lg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

/* line 3, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: .15s;
       -o-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

/* line 21, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger:hover {
  opacity: .7;
}

/* line 31, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

/* line 38, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

/* line 43, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -o-transform;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

/* line 56, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

/* line 62, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-inner::before {
  top: -10px;
}

/* line 66, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-inner::after {
  bottom: -10px;
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_3dx.scss */

.hamburger--3dx .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_3dx.scss */

.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 14, node_modules/hamburgers/_sass/hamburgers/types/_3dx.scss */

.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 21, node_modules/hamburgers/_sass/hamburgers/types/_3dx.scss */

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

/* line 25, node_modules/hamburgers/_sass/hamburgers/types/_3dx.scss */

.hamburger--3dx.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 29, node_modules/hamburgers/_sass/hamburgers/types/_3dx.scss */

.hamburger--3dx.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_3dx-r.scss */

.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_3dx-r.scss */

.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 14, node_modules/hamburgers/_sass/hamburgers/types/_3dx-r.scss */

.hamburger--3dx-r .hamburger-inner::before,
.hamburger--3dx-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 21, node_modules/hamburgers/_sass/hamburgers/types/_3dx-r.scss */

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

/* line 25, node_modules/hamburgers/_sass/hamburgers/types/_3dx-r.scss */

.hamburger--3dx-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 29, node_modules/hamburgers/_sass/hamburgers/types/_3dx-r.scss */

.hamburger--3dx-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_3dy.scss */

.hamburger--3dy .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_3dy.scss */

.hamburger--3dy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 14, node_modules/hamburgers/_sass/hamburgers/types/_3dy.scss */

.hamburger--3dy .hamburger-inner::before,
.hamburger--3dy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 21, node_modules/hamburgers/_sass/hamburgers/types/_3dy.scss */

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

/* line 25, node_modules/hamburgers/_sass/hamburgers/types/_3dy.scss */

.hamburger--3dy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 29, node_modules/hamburgers/_sass/hamburgers/types/_3dy.scss */

.hamburger--3dy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_3dy-r.scss */

.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_3dy-r.scss */

.hamburger--3dy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 14, node_modules/hamburgers/_sass/hamburgers/types/_3dy-r.scss */

.hamburger--3dy-r .hamburger-inner::before,
.hamburger--3dy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 21, node_modules/hamburgers/_sass/hamburgers/types/_3dy-r.scss */

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

/* line 25, node_modules/hamburgers/_sass/hamburgers/types/_3dy-r.scss */

.hamburger--3dy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 29, node_modules/hamburgers/_sass/hamburgers/types/_3dy-r.scss */

.hamburger--3dy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_3dxy.scss */

.hamburger--3dxy .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_3dxy.scss */

.hamburger--3dxy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 14, node_modules/hamburgers/_sass/hamburgers/types/_3dxy.scss */

.hamburger--3dxy .hamburger-inner::before,
.hamburger--3dxy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 21, node_modules/hamburgers/_sass/hamburgers/types/_3dxy.scss */

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(180deg) rotateY(180deg);
          transform: rotateX(180deg) rotateY(180deg);
}

/* line 25, node_modules/hamburgers/_sass/hamburgers/types/_3dxy.scss */

.hamburger--3dxy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 29, node_modules/hamburgers/_sass/hamburgers/types/_3dxy.scss */

.hamburger--3dxy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_3dxy-r.scss */

.hamburger--3dxy-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_3dxy-r.scss */

.hamburger--3dxy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 14, node_modules/hamburgers/_sass/hamburgers/types/_3dxy-r.scss */

.hamburger--3dxy-r .hamburger-inner::before,
.hamburger--3dxy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 21, node_modules/hamburgers/_sass/hamburgers/types/_3dxy-r.scss */

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
          transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

/* line 25, node_modules/hamburgers/_sass/hamburgers/types/_3dxy-r.scss */

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 29, node_modules/hamburgers/_sass/hamburgers/types/_3dxy-r.scss */

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/* line 7, node_modules/hamburgers/_sass/hamburgers/types/_arrow.scss */

.hamburger--arrow.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/* line 11, node_modules/hamburgers/_sass/hamburgers/types/_arrow.scss */

.hamburger--arrow.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/* line 7, node_modules/hamburgers/_sass/hamburgers/types/_arrow-r.scss */

.hamburger--arrow-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/* line 11, node_modules/hamburgers/_sass/hamburgers/types/_arrow-r.scss */

.hamburger--arrow-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/* line 7, node_modules/hamburgers/_sass/hamburgers/types/_arrowalt.scss */

.hamburger--arrowalt .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: top 0.1s 0.1s ease,-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* line 12, node_modules/hamburgers/_sass/hamburgers/types/_arrowalt.scss */

.hamburger--arrowalt .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: bottom 0.1s 0.1s ease,-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* line 20, node_modules/hamburgers/_sass/hamburgers/types/_arrowalt.scss */

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: top 0.1s ease,-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/* line 27, node_modules/hamburgers/_sass/hamburgers/types/_arrowalt.scss */

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: bottom 0.1s ease,-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/* line 7, node_modules/hamburgers/_sass/hamburgers/types/_arrowalt-r.scss */

.hamburger--arrowalt-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: top 0.1s 0.1s ease,-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* line 12, node_modules/hamburgers/_sass/hamburgers/types/_arrowalt-r.scss */

.hamburger--arrowalt-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: bottom 0.1s 0.1s ease,-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* line 20, node_modules/hamburgers/_sass/hamburgers/types/_arrowalt-r.scss */

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: top 0.1s ease,-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/* line 27, node_modules/hamburgers/_sass/hamburgers/types/_arrowalt-r.scss */

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: bottom 0.1s ease,-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_arrowturn.scss */

.hamburger--arrowturn.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
       -o-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/* line 9, node_modules/hamburgers/_sass/hamburgers/types/_arrowturn.scss */

.hamburger--arrowturn.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/* line 13, node_modules/hamburgers/_sass/hamburgers/types/_arrowturn.scss */

.hamburger--arrowturn.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_arrowturn-r.scss */

.hamburger--arrowturn-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
       -o-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/* line 9, node_modules/hamburgers/_sass/hamburgers/types/_arrowturn-r.scss */

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/* line 13, node_modules/hamburgers/_sass/hamburgers/types/_arrowturn-r.scss */

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/* line 7, node_modules/hamburgers/_sass/hamburgers/types/_boring.scss */

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
}

/* line 15, node_modules/hamburgers/_sass/hamburgers/types/_boring.scss */

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* line 18, node_modules/hamburgers/_sass/hamburgers/types/_boring.scss */

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

/* line 23, node_modules/hamburgers/_sass/hamburgers/types/_boring.scss */

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_collapse.scss */

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
       -o-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
       -o-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 13, node_modules/hamburgers/_sass/hamburgers/types/_collapse.scss */

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
  -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
}

/* line 19, node_modules/hamburgers/_sass/hamburgers/types/_collapse.scss */

.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 26, node_modules/hamburgers/_sass/hamburgers/types/_collapse.scss */

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 31, node_modules/hamburgers/_sass/hamburgers/types/_collapse.scss */

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
}

/* line 38, node_modules/hamburgers/_sass/hamburgers/types/_collapse.scss */

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-o-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_collapse-r.scss */

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
       -o-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
       -o-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 13, node_modules/hamburgers/_sass/hamburgers/types/_collapse-r.scss */

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
  -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
}

/* line 19, node_modules/hamburgers/_sass/hamburgers/types/_collapse-r.scss */

.hamburger--collapse-r .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 26, node_modules/hamburgers/_sass/hamburgers/types/_collapse-r.scss */

.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(45deg);
          transform: translate3d(0, -10px, 0) rotate(45deg);
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 31, node_modules/hamburgers/_sass/hamburgers/types/_collapse-r.scss */

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
}

/* line 38, node_modules/hamburgers/_sass/hamburgers/types/_collapse-r.scss */

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-o-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_elastic.scss */

.hamburger--elastic .hamburger-inner {
  top: 2px;
  -webkit-transition-duration: 0.275s;
       -o-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
       -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* line 11, node_modules/hamburgers/_sass/hamburgers/types/_elastic.scss */

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  -o-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}

/* line 16, node_modules/hamburgers/_sass/hamburgers/types/_elastic.scss */

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: -o-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -o-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* line 23, node_modules/hamburgers/_sass/hamburgers/types/_elastic.scss */

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
          transform: translate3d(0, 10px, 0) rotate(135deg);
  -webkit-transition-delay: 0.075s;
       -o-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/* line 29, node_modules/hamburgers/_sass/hamburgers/types/_elastic.scss */

.hamburger--elastic.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

/* line 34, node_modules/hamburgers/_sass/hamburgers/types/_elastic.scss */

.hamburger--elastic.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
          transform: translate3d(0, -20px, 0) rotate(-270deg);
  -webkit-transition-delay: 0.075s;
       -o-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_elastic-r.scss */

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  -webkit-transition-duration: 0.275s;
       -o-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
       -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* line 11, node_modules/hamburgers/_sass/hamburgers/types/_elastic-r.scss */

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  -o-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}

/* line 16, node_modules/hamburgers/_sass/hamburgers/types/_elastic-r.scss */

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: -o-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -o-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* line 23, node_modules/hamburgers/_sass/hamburgers/types/_elastic-r.scss */

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
          transform: translate3d(0, 10px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.075s;
       -o-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/* line 29, node_modules/hamburgers/_sass/hamburgers/types/_elastic-r.scss */

.hamburger--elastic-r.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

/* line 34, node_modules/hamburgers/_sass/hamburgers/types/_elastic-r.scss */

.hamburger--elastic-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
          transform: translate3d(0, -20px, 0) rotate(270deg);
  -webkit-transition-delay: 0.075s;
       -o-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/* line 5, node_modules/hamburgers/_sass/hamburgers/types/_emphatic.scss */

.hamburger--emphatic {
  overflow: hidden;
}

/* line 8, node_modules/hamburgers/_sass/hamburgers/types/_emphatic.scss */

.hamburger--emphatic .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  -o-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}

/* line 11, node_modules/hamburgers/_sass/hamburgers/types/_emphatic.scss */

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

/* line 18, node_modules/hamburgers/_sass/hamburgers/types/_emphatic.scss */

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

/* line 28, node_modules/hamburgers/_sass/hamburgers/types/_emphatic.scss */

.hamburger--emphatic.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent;
}

/* line 33, node_modules/hamburgers/_sass/hamburgers/types/_emphatic.scss */

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg);
          transform: translate3d(80px, 80px, 0) rotate(45deg);
  -webkit-transition: left 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: left 0.125s ease-out,top 0.05s 0.125s linear,-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* line 42, node_modules/hamburgers/_sass/hamburgers/types/_emphatic.scss */

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg);
          transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  -webkit-transition: right 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: right 0.125s ease-out,top 0.05s 0.125s linear,-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* line 5, node_modules/hamburgers/_sass/hamburgers/types/_emphatic-r.scss */

.hamburger--emphatic-r {
  overflow: hidden;
}

/* line 8, node_modules/hamburgers/_sass/hamburgers/types/_emphatic-r.scss */

.hamburger--emphatic-r .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  -o-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}

/* line 11, node_modules/hamburgers/_sass/hamburgers/types/_emphatic-r.scss */

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

/* line 18, node_modules/hamburgers/_sass/hamburgers/types/_emphatic-r.scss */

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

/* line 28, node_modules/hamburgers/_sass/hamburgers/types/_emphatic-r.scss */

.hamburger--emphatic-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent;
}

/* line 33, node_modules/hamburgers/_sass/hamburgers/types/_emphatic-r.scss */

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  -webkit-transform: translate3d(80px, -80px, 0) rotate(-45deg);
          transform: translate3d(80px, -80px, 0) rotate(-45deg);
  -webkit-transition: left 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: left 0.125s ease-out,top 0.05s 0.125s linear,-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* line 42, node_modules/hamburgers/_sass/hamburgers/types/_emphatic-r.scss */

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  -webkit-transform: translate3d(-80px, -80px, 0) rotate(45deg);
          transform: translate3d(-80px, -80px, 0) rotate(45deg);
  -webkit-transition: right 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: right 0.125s ease-out,top 0.05s 0.125s linear,-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* line 7, node_modules/hamburgers/_sass/hamburgers/types/_minus.scss */

.hamburger--minus .hamburger-inner::before,
.hamburger--minus .hamburger-inner::after {
  -webkit-transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
  -o-transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

/* line 17, node_modules/hamburgers/_sass/hamburgers/types/_minus.scss */

.hamburger--minus.is-active .hamburger-inner::before,
.hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  -webkit-transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
  -o-transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

/* line 24, node_modules/hamburgers/_sass/hamburgers/types/_minus.scss */

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

/* line 28, node_modules/hamburgers/_sass/hamburgers/types/_minus.scss */

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_slider.scss */

.hamburger--slider .hamburger-inner {
  top: 2px;
}

/* line 9, node_modules/hamburgers/_sass/hamburgers/types/_slider.scss */

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, -o-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform, -o-transform;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

/* line 16, node_modules/hamburgers/_sass/hamburgers/types/_slider.scss */

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

/* line 22, node_modules/hamburgers/_sass/hamburgers/types/_slider.scss */

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 27, node_modules/hamburgers/_sass/hamburgers/types/_slider.scss */

.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
          transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

/* line 32, node_modules/hamburgers/_sass/hamburgers/types/_slider.scss */

.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
          transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_slider-r.scss */

.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

/* line 9, node_modules/hamburgers/_sass/hamburgers/types/_slider-r.scss */

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, -o-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform, -o-transform;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

/* line 16, node_modules/hamburgers/_sass/hamburgers/types/_slider-r.scss */

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

/* line 22, node_modules/hamburgers/_sass/hamburgers/types/_slider-r.scss */

.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
          transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/* line 27, node_modules/hamburgers/_sass/hamburgers/types/_slider-r.scss */

.hamburger--slider-r.is-active .hamburger-inner::before {
  -webkit-transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
          transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

/* line 32, node_modules/hamburgers/_sass/hamburgers/types/_slider-r.scss */

.hamburger--slider-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(90deg);
          transform: translate3d(0, -20px, 0) rotate(90deg);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_spin.scss */

.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
       -o-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_spin.scss */

.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  -o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

/* line 15, node_modules/hamburgers/_sass/hamburgers/types/_spin.scss */

.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in,-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s 0.25s ease-in,-o-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 22, node_modules/hamburgers/_sass/hamburgers/types/_spin.scss */

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
       -o-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 27, node_modules/hamburgers/_sass/hamburgers/types/_spin.scss */

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

/* line 34, node_modules/hamburgers/_sass/hamburgers/types/_spin.scss */

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out,-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out,-o-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_spin-r.scss */

.hamburger--spin-r .hamburger-inner {
  -webkit-transition-duration: 0.22s;
       -o-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_spin-r.scss */

.hamburger--spin-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  -o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

/* line 15, node_modules/hamburgers/_sass/hamburgers/types/_spin-r.scss */

.hamburger--spin-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in,-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s 0.25s ease-in,-o-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 22, node_modules/hamburgers/_sass/hamburgers/types/_spin-r.scss */

.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-225deg);
       -o-transform: rotate(-225deg);
          transform: rotate(-225deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 27, node_modules/hamburgers/_sass/hamburgers/types/_spin-r.scss */

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

/* line 34, node_modules/hamburgers/_sass/hamburgers/types/_spin-r.scss */

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: bottom 0.1s ease-out,-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out,-o-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_spring.scss */

.hamburger--spring .hamburger-inner {
  top: 2px;
  -webkit-transition: background-color 0s 0.13s linear;
  -o-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_spring.scss */

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 16, node_modules/hamburgers/_sass/hamburgers/types/_spring.scss */

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 24, node_modules/hamburgers/_sass/hamburgers/types/_spring.scss */

.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent;
}

/* line 28, node_modules/hamburgers/_sass/hamburgers/types/_spring.scss */

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 35, node_modules/hamburgers/_sass/hamburgers/types/_spring.scss */

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
          transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_spring-r.scss */

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
       -o-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 13, node_modules/hamburgers/_sass/hamburgers/types/_spring-r.scss */

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0s linear;
  -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0s linear;
}

/* line 19, node_modules/hamburgers/_sass/hamburgers/types/_spring-r.scss */

.hamburger--spring-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 26, node_modules/hamburgers/_sass/hamburgers/types/_spring-r.scss */

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 31, node_modules/hamburgers/_sass/hamburgers/types/_spring-r.scss */

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0s 0.22s linear;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0s 0.22s linear;
}

/* line 38, node_modules/hamburgers/_sass/hamburgers/types/_spring-r.scss */

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_stand.scss */

.hamburger--stand .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: background-color 0s 0.075s linear,-o-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_stand.scss */

.hamburger--stand .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.075s 0.075s ease-in,-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 15, node_modules/hamburgers/_sass/hamburgers/types/_stand.scss */

.hamburger--stand .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.075s 0.075s ease-in,-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 22, node_modules/hamburgers/_sass/hamburgers/types/_stand.scss */

.hamburger--stand.is-active .hamburger-inner {
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: transparent;
  -webkit-transition: background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: background-color 0s 0.15s linear,-o-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 29, node_modules/hamburgers/_sass/hamburgers/types/_stand.scss */

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.075s 0.1s ease-out,-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 36, node_modules/hamburgers/_sass/hamburgers/types/_stand.scss */

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.075s 0.1s ease-out,-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_stand-r.scss */

.hamburger--stand-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: background-color 0s 0.075s linear,-o-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_stand-r.scss */

.hamburger--stand-r .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.075s 0.075s ease-in,-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 15, node_modules/hamburgers/_sass/hamburgers/types/_stand-r.scss */

.hamburger--stand-r .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.075s 0.075s ease-in,-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 22, node_modules/hamburgers/_sass/hamburgers/types/_stand-r.scss */

.hamburger--stand-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: transparent;
  -webkit-transition: background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: background-color 0s 0.15s linear,-o-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 29, node_modules/hamburgers/_sass/hamburgers/types/_stand-r.scss */

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.075s 0.1s ease-out,-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 36, node_modules/hamburgers/_sass/hamburgers/types/_stand-r.scss */

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.075s 0.1s ease-out,-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_squeeze.scss */

.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
       -o-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_squeeze.scss */

.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  -o-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

/* line 15, node_modules/hamburgers/_sass/hamburgers/types/_squeeze.scss */

.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease,-webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease,-webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.075s 0.12s ease,-o-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease,transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease,transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 22, node_modules/hamburgers/_sass/hamburgers/types/_squeeze.scss */

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 27, node_modules/hamburgers/_sass/hamburgers/types/_squeeze.scss */

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  -o-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

/* line 34, node_modules/hamburgers/_sass/hamburgers/types/_squeeze.scss */

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease,-webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease,-webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.075s ease,-o-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease,transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease,transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_vortex.scss */

.hamburger--vortex .hamburger-inner {
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_vortex.scss */

.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
  -webkit-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* line 17, node_modules/hamburgers/_sass/hamburgers/types/_vortex.scss */

.hamburger--vortex .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  -o-transition-property: top, opacity;
  transition-property: top, opacity;
}

/* line 21, node_modules/hamburgers/_sass/hamburgers/types/_vortex.scss */

.hamburger--vortex .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  -o-transition-property: bottom, -o-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform, -o-transform;
}

/* line 27, node_modules/hamburgers/_sass/hamburgers/types/_vortex.scss */

.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transform: rotate(765deg);
       -o-transform: rotate(765deg);
          transform: rotate(765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 31, node_modules/hamburgers/_sass/hamburgers/types/_vortex.scss */

.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

/* line 36, node_modules/hamburgers/_sass/hamburgers/types/_vortex.scss */

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

/* line 41, node_modules/hamburgers/_sass/hamburgers/types/_vortex.scss */

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* line 6, node_modules/hamburgers/_sass/hamburgers/types/_vortex-r.scss */

.hamburger--vortex-r .hamburger-inner {
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 10, node_modules/hamburgers/_sass/hamburgers/types/_vortex-r.scss */

.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* line 17, node_modules/hamburgers/_sass/hamburgers/types/_vortex-r.scss */

.hamburger--vortex-r .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  -o-transition-property: top, opacity;
  transition-property: top, opacity;
}

/* line 21, node_modules/hamburgers/_sass/hamburgers/types/_vortex-r.scss */

.hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  -o-transition-property: bottom, -o-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform, -o-transform;
}

/* line 27, node_modules/hamburgers/_sass/hamburgers/types/_vortex-r.scss */

.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
       -o-transform: rotate(-765deg);
          transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 31, node_modules/hamburgers/_sass/hamburgers/types/_vortex-r.scss */

.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

/* line 36, node_modules/hamburgers/_sass/hamburgers/types/_vortex-r.scss */

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

/* line 41, node_modules/hamburgers/_sass/hamburgers/types/_vortex-r.scss */

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@font-face {
  font-family: 'Roboto-Black';
  src: url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Black.eot) format("embedded-opentype"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Black.woff) format("woff"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Black.ttf) format("truetype"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Black.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'RobotoCondensed-Bold';
  src: url(/wp-content/themes/usav-theme/dist/fonts/RobotoCondensed-Bold.eot) format("embedded-opentype"),url(/wp-content/themes/usav-theme/dist/fonts/RobotoCondensed-Bold.woff) format("woff"),url(/wp-content/themes/usav-theme/dist/fonts/RobotoCondensed-Bold.ttf) format("truetype"),url(/wp-content/themes/usav-theme/dist/fonts/RobotoCondensed-Bold.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'RobotoCondensed-Regular';
  src: url(/wp-content/themes/usav-theme/dist/fonts/RobotoCondensed-Regular.eot) format("embedded-opentype"),url(/wp-content/themes/usav-theme/dist/fonts/RobotoCondensed-Regular.woff) format("woff"),url(/wp-content/themes/usav-theme/dist/fonts/RobotoCondensed-Regular.ttf) format("truetype"),url(/wp-content/themes/usav-theme/dist/fonts/RobotoCondensed-Regular.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Bold';
  src: url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Bold.eot) format("embedded-opentype"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Bold.woff) format("woff"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Bold.ttf) format("truetype"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Bold.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Regular';
  src: url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Regular.eot) format("embedded-opentype"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Regular.woff) format("woff"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Regular.ttf) format("truetype"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Regular.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Italic';
  src: url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Italic.eot) format("embedded-opentype"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Italic.woff) format("woff"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Italic.ttf) format("truetype"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Italic.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Thin';
  src: url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Thin.eot) format("embedded-opentype"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Thin.woff) format("woff"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Thin.ttf) format("truetype"),url(/wp-content/themes/usav-theme/dist/fonts/Roboto-Thin.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 13, resources/assets/styles/common/_reset.scss */

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* line 17, resources/assets/styles/common/_reset.scss */

html,
body {
  margin: 0;
  padding: 0;
}

/* line 23, resources/assets/styles/common/_reset.scss */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 29, resources/assets/styles/common/_reset.scss */

a {
  background-color: transparent;
}

/* line 32, resources/assets/styles/common/_reset.scss */

a,
input,
button {
  -webkit-tap-highlight-color: fade(#000, 0%);
}

/* line 37, resources/assets/styles/common/_reset.scss */

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

/* line 43, resources/assets/styles/common/_reset.scss */

p,
ul,
ol,
dl,
blockquote,
pre,
address,
fieldset,
figure {
  margin: 0;
}

/* line 54, resources/assets/styles/common/_reset.scss */

*+p,
*+ul,
*+ol,
*+dl,
*+blockquote,
*+pre,
*+address,
*+fieldset,
*+figure {
  margin-top: 20px;
}

/* line 58, resources/assets/styles/common/_reset.scss */

ul,
ol {
  padding-left: 30px;
}

/* line 63, resources/assets/styles/common/_reset.scss */

ul>li>ul,
ul>li>ol,
ol>li>ul,
ol>li>ol {
  margin: 0;
}

/* line 69, resources/assets/styles/common/_reset.scss */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid #000;
}

/* line 76, resources/assets/styles/common/_reset.scss */

*+hr {
  margin-top: 20px;
}

/* line 80, resources/assets/styles/common/_reset.scss */

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* line 93, resources/assets/styles/common/_reset.scss */

iframe {
  border: 0;
}

/* line 13, resources/assets/styles/components/_base.scss */

body {
  -webkit-font-smoothing: antialiased;
  font-family: "Roboto-Regular";
  color: #1C232C;
  letter-spacing: 0;
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
}

/* line 20, resources/assets/styles/components/_base.scss */

body #banner {
  margin-top: 140px;
}

/* line 23, resources/assets/styles/components/_base.scss */

body.no-scroll {
  overflow: hidden;
}

/* line 26, resources/assets/styles/components/_base.scss */

body #slide-drawer {
  top: 70px;
}

/* line 29, resources/assets/styles/components/_base.scss */

body #slide-drawer .bottom {
  padding-bottom: 150px;
}

@media only screen and (max-width: 480px) and (min-width: 1px) {
  /* line 29, resources/assets/styles/components/_base.scss */

  body #slide-drawer .bottom {
    padding-bottom: 200px;
  }
}

/* line 37, resources/assets/styles/components/_base.scss */

body header.nav-up+#slide-drawer {
  top: 69px;
}

/* line 42, resources/assets/styles/components/_base.scss */

body.announcement-active #banner {
  margin-top: 200px;
}

/* line 45, resources/assets/styles/components/_base.scss */

body.announcement-active #slide-drawer {
  top: 130px;
}

/* line 48, resources/assets/styles/components/_base.scss */

body.announcement-active #slide-drawer .bottom {
  padding-bottom: 250px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 54, resources/assets/styles/components/_base.scss */

  body #banner {
    margin-top: 70px;
  }

  /* line 59, resources/assets/styles/components/_base.scss */

  body.announcement-active #banner {
    margin-top: 130px;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 68, resources/assets/styles/components/_base.scss */

  body.announcement-active #banner {
    margin-top: 70px;
  }

  /* line 71, resources/assets/styles/components/_base.scss */

  body.announcement-active .page-overlay {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

/* line 80, resources/assets/styles/components/_base.scss */

.shell {
  display: block;
  margin: 0 auto;
  width: 100%;
}

/* line 86, resources/assets/styles/components/_base.scss */

.error404 .shell {
  margin-bottom: -100px;
}

/* line 90, resources/assets/styles/components/_base.scss */

.page-template-template-leadership-staff .shell {
  margin-bottom: -150px;
}

/* line 96, resources/assets/styles/components/_base.scss */

.max-content-width {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1680px;
}

/* line 103, resources/assets/styles/components/_base.scss */

.wrapper {
  max-width: 100%;
}

/* line 109, resources/assets/styles/components/_base.scss */

hr {
  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;
  position: relative;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5IDM8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJIb21lcGFnZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3NS4wMDAwMDAsIC02Mzc5LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik01ODUsNjM4MC40MzExNyBMNTg2Ljk2OTY1OCw2Mzg2LjI4OSBMNTkzLjE0OTQzNyw2Mzg2LjM1MjA5IEw1ODguMTg2OTc0LDYzOTAuMDM1NTEgTDU5MC4wMzY2MjksNjM5NS45MzIzMyBMNTg1LDYzOTIuMzUwOTggTDU3OS45NjMzNzEsNjM5NS45MzIzMyBMNTgxLjgxMzAyNiw2MzkwLjAzNTUxIEw1NzYuODUwNTYzLDYzODYuMzUyMDkgTDU4My4wMzAzNDIsNjM4Ni4yODkgTDU4NSw2MzgwLjQzMTE3IFoiIGlkPSJTdGFyLUNvcHktMyI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% 0 no-repeat;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 20px;
  width: 100%;
  margin: 20px auto;
}

/* line 122, resources/assets/styles/components/_base.scss */

hr.blue {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iRmxleC1UZW1wbGF0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMzMy4wMDAwMDAsIC02ODA4LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iIzE3MjY0MiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0zNDMsNjgwOS40MzExNyBMMzQ0Ljk2OTY1OCw2ODE1LjI4OSBMMzUxLjE0OTQzNyw2ODE1LjM1MjA5IEwzNDYuMTg2OTc0LDY4MTkuMDM1NTEgTDM0OC4wMzY2MjksNjgyNC45MzIzMyBMMzQzLDY4MjEuMzUwOTggTDMzNy45NjMzNzEsNjgyNC45MzIzMyBMMzM5LjgxMzAyNiw2ODE5LjAzNTUxIEwzMzQuODUwNTYzLDY4MTUuMzUyMDkgTDM0MS4wMzAzNDIsNjgxNS4yODkgTDM0Myw2ODA5LjQzMTE3IFoiIGlkPSJTdGFyLUNvcHkiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) 50% 0 no-repeat;
}

/* line 125, resources/assets/styles/components/_base.scss */

hr:before {
  content: '';
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(203,151,1,0)), to(#cb9701));
  background: -webkit-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: -o-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: linear-gradient(90deg, rgba(203,151,1,0) 0%, #cb9701 100%);
}

/* line 133, resources/assets/styles/components/_base.scss */

hr:after {
  content: '';
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(203,151,1,0)), to(#cb9701));
  background: -webkit-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: -o-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: linear-gradient(90deg, rgba(203,151,1,0) 0%, #cb9701 100%);
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 144, resources/assets/styles/components/_base.scss */

hr+h3 {
  margin-top: 35px;
}

/* line 150, resources/assets/styles/components/_base.scss */

svg .fill {
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 154, resources/assets/styles/components/_base.scss */

.alignnone {
  margin: 35px 20px 20px 0;
}

/* line 158, resources/assets/styles/components/_base.scss */

.aligncenter,
div.aligncenter {
  display: block;
  margin: 35px auto 5px auto;
}

/* line 164, resources/assets/styles/components/_base.scss */

.alignright {
  float: right;
  margin: 35px 0 20px 20px;
}

/* line 169, resources/assets/styles/components/_base.scss */

.alignleft {
  float: left;
  margin: 35px 20px 20px 0;
}

/* line 13, resources/assets/styles/components/_button.scss */

.btn {
  display: inline-block;
  width: auto;
  padding: 7px 25px;
  text-align: center;
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid transparent;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 27, resources/assets/styles/components/_button.scss */

.btn.red {
  color: #fff;
  background: #A71F34;
}

/* line 31, resources/assets/styles/components/_button.scss */

.btn.red:hover {
  background: #BD233B;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 37, resources/assets/styles/components/_button.scss */

.btn.blue {
  color: #fff;
  background: #172642;
}

/* line 41, resources/assets/styles/components/_button.scss */

.btn.blue:hover {
  background: #243B66;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 47, resources/assets/styles/components/_button.scss */

.btn.white {
  background: #fff;
  color: #1C232C;
}

/* line 51, resources/assets/styles/components/_button.scss */

.btn.white:hover {
  background: #172642;
  color: #fff;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 58, resources/assets/styles/components/_button.scss */

.btn.white-red {
  background: #fff;
  color: #A71F34;
}

/* line 62, resources/assets/styles/components/_button.scss */

.btn.white-red:hover {
  background: #A71F34;
  color: #fff;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 73, resources/assets/styles/components/_button.scss */

.btn-cta {
  display: inline-block;
  position: relative;
  width: auto;
  padding: 4px 35px 4px 25px;
  text-align: center;
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid transparent;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 73, resources/assets/styles/components/_button.scss */

  .btn-cta {
    white-space: normal;
  }
}

/* line 92, resources/assets/styles/components/_button.scss */

.btn-cta:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  width: 6px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 102, resources/assets/styles/components/_button.scss */

.btn-cta.red {
  background: #A71F34;
  color: #fff;
}

/* line 106, resources/assets/styles/components/_button.scss */

.btn-cta.red:hover {
  background: #BD233B;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 112, resources/assets/styles/components/_button.scss */

.btn-cta.blue {
  background: #172642;
  color: #fff;
}

/* line 116, resources/assets/styles/components/_button.scss */

.btn-cta.blue:hover {
  background: #243B66;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 122, resources/assets/styles/components/_button.scss */

.btn-cta.blue-bg {
  background: rgba(255,255,255,0.1);
}

/* line 125, resources/assets/styles/components/_button.scss */

.btn-cta.blue-bg:hover {
  background: #fff;
  color: #172642;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 131, resources/assets/styles/components/_button.scss */

.btn-cta.blue-bg:hover:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 135, resources/assets/styles/components/_button.scss */

.btn-cta.white {
  background: #fff;
  color: #1C232C;
}

/* line 139, resources/assets/styles/components/_button.scss */

.btn-cta.white:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 142, resources/assets/styles/components/_button.scss */

.btn-cta.white:hover {
  background: #172642;
  color: #fff;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 148, resources/assets/styles/components/_button.scss */

.btn-cta.white:hover:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 152, resources/assets/styles/components/_button.scss */

.btn-cta.white-red {
  background: #fff;
  color: #A71F34;
}

/* line 156, resources/assets/styles/components/_button.scss */

.btn-cta.white-red:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjQTcxRjM0IiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 159, resources/assets/styles/components/_button.scss */

.btn-cta.white-red:hover {
  background: #A71F34;
  color: #fff;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 165, resources/assets/styles/components/_button.scss */

.btn-cta.white-red:hover:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 169, resources/assets/styles/components/_button.scss */

.btn-cta.back {
  padding: 4px 25px 4px 35px;
}

/* line 172, resources/assets/styles/components/_button.scss */

.btn-cta.back:after {
  left: 15px;
  right: unset;
  -webkit-transform: translate(0, -50%) rotate(180deg);
       -o-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

/* line 177, resources/assets/styles/components/_button.scss */

.btn-cta.back.white:hover:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 185, resources/assets/styles/components/_button.scss */

.btn-download {
  display: inline-block;
  position: relative;
  width: auto;
  padding: 4px 35px 4px 25px;
  text-align: center;
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 199, resources/assets/styles/components/_button.scss */

.btn-download:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  width: 6px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
  -webkit-transform: translate(0, -50%) rotate(90deg);
       -o-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}

/* line 209, resources/assets/styles/components/_button.scss */

.btn-download.red {
  background: #A71F34;
}

/* line 212, resources/assets/styles/components/_button.scss */

.btn-download.red:hover {
  background: #BD233B;
}

/* line 216, resources/assets/styles/components/_button.scss */

.btn-download.blue {
  background: #172642;
}

/* line 219, resources/assets/styles/components/_button.scss */

.btn-download.blue:hover {
  background: #243B66;
}

/* line 223, resources/assets/styles/components/_button.scss */

.btn-download.blue-bg {
  background: rgba(255,255,255,0.1);
}

/* line 226, resources/assets/styles/components/_button.scss */

.btn-download.white {
  background: #fff;
  color: #1C232C;
}

/* line 230, resources/assets/styles/components/_button.scss */

.btn-download.white:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 234, resources/assets/styles/components/_button.scss */

.btn-download.white-red {
  background: #fff;
  color: #A71F34;
}

/* line 238, resources/assets/styles/components/_button.scss */

.btn-download.white-red:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjQTcxRjM0IiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 242, resources/assets/styles/components/_button.scss */

.btn-download.back {
  padding: 4px 25px 4px 35px;
}

/* line 245, resources/assets/styles/components/_button.scss */

.btn-download.back:after {
  left: 15px;
  right: unset;
  -webkit-transform: translate(0, -50%) rotate(180deg);
       -o-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

/* line 255, resources/assets/styles/components/_button.scss */

.btn-more {
  display: inline-block;
  position: relative;
  width: auto;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 17px;
  line-height: 1.0625rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 20px 0 0;
  text-decoration: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 267, resources/assets/styles/components/_button.scss */

.btn-more:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  width: 6px;
  height: 10px;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 277, resources/assets/styles/components/_button.scss */

.btn-more.blue {
  color: #172642;
}

/* line 280, resources/assets/styles/components/_button.scss */

.btn-more.blue:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 283, resources/assets/styles/components/_button.scss */

.btn-more.blue:hover {
  color: #A71F34;
  text-decoration: underline;
}

/* line 287, resources/assets/styles/components/_button.scss */

.btn-more.blue:hover:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjQTcxRjM0IiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 290, resources/assets/styles/components/_button.scss */

.btn-more.blue:hover span {
  text-decoration: underline;
}

/* line 295, resources/assets/styles/components/_button.scss */

.btn-more.red {
  color: #A71F34;
}

/* line 298, resources/assets/styles/components/_button.scss */

.btn-more.red:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjQTcxRjM0IiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 301, resources/assets/styles/components/_button.scss */

.btn-more.red:hover {
  color: #172642;
  text-decoration: underline;
}

/* line 305, resources/assets/styles/components/_button.scss */

.btn-more.red:hover:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 308, resources/assets/styles/components/_button.scss */

.btn-more.red:hover span {
  text-decoration: underline;
}

/* line 313, resources/assets/styles/components/_button.scss */

.btn-more.white {
  color: #fff;
}

/* line 316, resources/assets/styles/components/_button.scss */

.btn-more.white:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 319, resources/assets/styles/components/_button.scss */

.btn-more.white:hover {
  text-decoration: underline;
}

/* line 322, resources/assets/styles/components/_button.scss */

.btn-more.white:hover span {
  text-decoration: underline;
}

/* line 331, resources/assets/styles/components/_button.scss */

.btn-quicklink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 28px 75px 28px 35px;
  font-family: "Roboto-Bold";
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
  border: 3px solid transparent;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 346, resources/assets/styles/components/_button.scss */

.btn-quicklink.red {
  background: #A71F34;
}

/* line 349, resources/assets/styles/components/_button.scss */

.btn-quicklink.blue {
  background: #172642;
  border: 3px solid #CB9701;
}

/* line 353, resources/assets/styles/components/_button.scss */

.btn-quicklink span {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 34px;
  height: 34px;
  border: 1px solid #D3D7DD;
  background: #fff;
  border-radius: 100%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 365, resources/assets/styles/components/_button.scss */

.btn-quicklink span:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 377, resources/assets/styles/components/_button.scss */

.btn-quicklink:hover {
  color: #fff;
  background: #BD233B;
  border: 3px solid #172642;
  text-decoration: underline;
}

/* line 383, resources/assets/styles/components/_button.scss */

.btn-quicklink:hover span {
  background: #172642;
}

/* line 386, resources/assets/styles/components/_button.scss */

.btn-quicklink:hover span:before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 395, resources/assets/styles/components/_button.scss */

.btn-play,
.vjs-big-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 91px !important;
  height: 91px !important;
  border-radius: 100% !important;
  border: 2px solid #fff !important;
  background: #172642 !important;
  z-index: 9;
  margin: 0 !important;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 410, resources/assets/styles/components/_button.scss */

.btn-play span,
.vjs-big-play-button span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 416, resources/assets/styles/components/_button.scss */

.btn-play:before,
.vjs-big-play-button:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 29px;
  height: 35px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMzBweCIgaGVpZ2h0PSIzNXB4IiB2aWV3Qm94PSIwIDAgMzAgMzUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZyBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTAyMy4wMDAwMDAsIC02MDcuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiIgc3Ryb2tlPSIjRkZGRkZGIj4KICAgICAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc2LjAwMDAwMCwgNTU1LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTQ5LjUxNjY2NSw4Ni4wODQ3NzExIEw3NS41ODExNzQ3LDcwLjM1NjE4NzcgQzc2LjA1NDAzNDEsNzAuMDcwODQxNSA3Ni4yMDYwNDM2LDY5LjQ1NjE5NDQgNzUuOTIwNjk3NCw2OC45ODMzMzUgQzc1LjgzNjc3NjcsNjguODQ0MjY2NCA3NS43MjAyNDM0LDY4LjcyNzczMzEgNzUuNTgxMTc0Nyw2OC42NDM4MTIzIEw0OS41MTY2NjUsNTIuOTE1MjI4OSBDNDkuMDQzODA1Niw1Mi42Mjk4ODI3IDQ4LjQyOTE1ODUsNTIuNzgxODkyMiA0OC4xNDM4MTIzLDUzLjI1NDc1MTYgQzQ4LjA0OTcyNTgsNTMuNDEwNjY2MyA0OCw1My41ODkzMTMgNDgsNTMuNzcxNDE2NSBMNDgsODUuMjI4NTgzNSBDNDgsODUuNzgwODY4MiA0OC40NDc3MTUzLDg2LjIyODU4MzUgNDksODYuMjI4NTgzNSBDNDkuMTgyMTAzNSw4Ni4yMjg1ODM1IDQ5LjM2MDc1MDIsODYuMTc4ODU3NiA0OS41MTY2NjUsODYuMDg0NzcxMSBaIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) 50% no-repeat;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}

/* line 427, resources/assets/styles/components/_button.scss */

.btn-play:after,
.vjs-big-play-button:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  border: 5px solid #A71F34;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 440, resources/assets/styles/components/_button.scss */

.btn-play:hover,
.vjs-big-play-button:hover {
  background: #A71F34 !important;
}

/* line 443, resources/assets/styles/components/_button.scss */

.btn-play:hover:after,
.vjs-big-play-button:hover:after {
  border: 5px solid #172642;
}

/* line 447, resources/assets/styles/components/_button.scss */

.btn-play.large,
.vjs-big-play-button.large {
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
}

/* line 453, resources/assets/styles/components/_button.scss */

.btn-play.large:after,
.vjs-big-play-button.large:after {
  width: 108px;
  height: 108px;
}

/* line 457, resources/assets/styles/components/_button.scss */

.btn-play.large:before,
.vjs-big-play-button.large:before {
  top: 50px;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

/* line 461, resources/assets/styles/components/_button.scss */

.btn-play.large span,
.vjs-big-play-button.large span {
  top: 30px;
  left: 50%;
  text-indent: 0;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 17px;
  line-height: 1.0625rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

/* line 476, resources/assets/styles/components/_button.scss */

.bc-player-default_default .vjs-big-play-button:active,
.bc-player-default_default .vjs-big-play-button:focus,
.bc-player-default_default:active .vjs-big-play-button,
.bc-player-default_default:hover .vjs-big-play-button {
  background: #A71F34 !important;
}

/* line 482, resources/assets/styles/components/_button.scss */

.bc-player-default_default .vjs-big-play-button:active:after,
.bc-player-default_default .vjs-big-play-button:focus:after,
.bc-player-default_default:active .vjs-big-play-button:after,
.bc-player-default_default:hover .vjs-big-play-button:after {
  border: 5px solid #172642 !important;
}

/* line 487, resources/assets/styles/components/_button.scss */

.vjs-big-play-button:focus {
  outline: 2px solid #fff !important;
  outline-offset: 8px;
}

/* line 496, resources/assets/styles/components/_button.scss */

.btns-cnt a {
  margin-right: 20px;
  margin-bottom: 20px;
}

/* line 500, resources/assets/styles/components/_button.scss */

.btns-cnt a:last-child {
  margin-right: 0;
}

/* line 504, resources/assets/styles/components/_button.scss */

.btns-cnt br {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 494, resources/assets/styles/components/_button.scss */

  .btns-cnt {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    margin-bottom: 0 !important;
  }
}

/* line 516, resources/assets/styles/components/_button.scss */

.filters {
  list-style: none;
  padding: 0;
  margin: 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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 525, resources/assets/styles/components/_button.scss */

.filters li {
  display: inline-block;
  margin: 0 2px;
}

/* line 529, resources/assets/styles/components/_button.scss */

.filters li a {
  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;
  padding: 6px 12px;
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #1C232C;
  letter-spacing: 1px;
  border: 1px solid #C3C9D2;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 2px;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 544, resources/assets/styles/components/_button.scss */

.filters li a:hover {
  background: #fff;
}

/* line 547, resources/assets/styles/components/_button.scss */

.filters li a.active {
  background: #A71F34;
  color: #fff;
  border: 1px solid #A71F34;
}

/* line 552, resources/assets/styles/components/_button.scss */

.filters li a.active:hover {
  background: #A71F34;
}

/* line 562, resources/assets/styles/components/_button.scss */

.resource-btn {
  display: block;
  position: relative;
  width: 100%;
  height: 586px;
}

/* line 568, resources/assets/styles/components/_button.scss */

.resource-btn:after {
  position: absolute;
  content: '';
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background: linear-gradient(0deg, #172642 0%, #cb9701 100%);
  z-index: 1;
}

/* line 578, resources/assets/styles/components/_button.scss */

.resource-btn:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #172642;
  z-index: 2;
}

/* line 588, resources/assets/styles/components/_button.scss */

.resource-btn .vertical-title {
  position: absolute;
  top: 3px;
  left: 90px;
  -webkit-transform: rotate(-270deg);
       -o-transform: rotate(-270deg);
          transform: rotate(-270deg);
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  font-family: "Roboto-Bold";
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 100px;
  line-height: 6.25rem;
  color: rgba(11,19,33,0.62);
  -webkit-text-stroke: 1px rgba(255,255,255,0.27);
  -webkit-text-fill-color: rgba(11,19,33,0.62);
  letter-spacing: 0;
  z-index: 4;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 603, resources/assets/styles/components/_button.scss */

.resource-btn .image {
  position: relative;
  width: 100%;
  height: 580px;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 3;
  opacity: .6;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 616, resources/assets/styles/components/_button.scss */

.resource-btn .bottom-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 23px 15px;
  background: #172642;
  font-family: "Roboto-Bold";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 0;
  z-index: 5;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 630, resources/assets/styles/components/_button.scss */

.resource-btn .bottom-btn:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 20px;
  width: 6px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 641, resources/assets/styles/components/_button.scss */

.resource-btn:focus,
.resource-btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

/* line 646, resources/assets/styles/components/_button.scss */

.resource-btn:focus:before,
.resource-btn:hover:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#c7314d), to(#172b59));
  background: -webkit-linear-gradient(bottom, #c7314d 0%, #172b59 100%);
  background: -o-linear-gradient(bottom, #c7314d 0%, #172b59 100%);
  background: linear-gradient(0deg, #c7314d 0%, #172b59 100%);
}

/* line 649, resources/assets/styles/components/_button.scss */

.resource-btn:focus .vertical-title,
.resource-btn:hover .vertical-title {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: transparent;
}

/* line 654, resources/assets/styles/components/_button.scss */

.resource-btn:focus .image,
.resource-btn:hover .image {
  background-blend-mode: multiply;
  opacity: .6;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

/* line 659, resources/assets/styles/components/_button.scss */

.resource-btn:focus .bottom-btn,
.resource-btn:hover .bottom-btn {
  background: #B32F43;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 562, resources/assets/styles/components/_button.scss */

  .resource-btn {
    height: auto;
    margin-bottom: 20px;
    text-decoration: none;
  }

  /* line 668, resources/assets/styles/components/_button.scss */

  .resource-btn .vertical-title {
    display: none;
  }

  /* line 671, resources/assets/styles/components/_button.scss */

  .resource-btn .image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }

  /* line 677, resources/assets/styles/components/_button.scss */

  .resource-btn .bottom-btn {
    display: block;
    position: relative;
    background: transparent;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
    line-height: 1.875rem;
    letter-spacing: 0;
  }

  /* line 686, resources/assets/styles/components/_button.scss */

  .resource-btn:hover .bottom-btn {
    background: transparent;
  }
}

/* line 695, resources/assets/styles/components/_button.scss */

.additional-links {
  padding: 75px 120px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 695, resources/assets/styles/components/_button.scss */

  .additional-links {
    padding: 75px 50px 75px 50px;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 695, resources/assets/styles/components/_button.scss */

  .additional-links {
    padding: 35px 20px 35px 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 695, resources/assets/styles/components/_button.scss */

  .additional-links {
    padding: 35px 10px 35px 10px;
  }
}

/* line 707, resources/assets/styles/components/_button.scss */

.additional-links .wrapper {
  padding: 0 120px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 710, resources/assets/styles/components/_button.scss */

  .additional-links .col-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 717, resources/assets/styles/components/_button.scss */

.additional-links .col-xs-6 {
  margin-bottom: 15px;
}

/* line 720, resources/assets/styles/components/_button.scss */

.additional-links .link-box {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

/* line 726, resources/assets/styles/components/_button.scss */

.additional-links .link-box:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background-image: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: linear-gradient(0deg, #172642 0%, #cb9701 100%);
}

/* line 736, resources/assets/styles/components/_button.scss */

.additional-links .link-box .cnt {
  position: relative;
  margin: 4px;
  z-index: 5;
  height: calc(100% - 8px);
}

/* line 742, resources/assets/styles/components/_button.scss */

.additional-links .link-box .cnt:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  background: #172642;
}

/* line 752, resources/assets/styles/components/_button.scss */

.additional-links .link-box .cnt a {
  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: relative;
  z-index: 9;
  padding: 25px 25px;
  text-decoration: none;
  height: 100%;
}

/* line 763, resources/assets/styles/components/_button.scss */

.additional-links .link-box .cnt a .title {
  position: relative;
  z-index: 9;
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 36px;
  line-height: 2.25rem;
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
}

/* line 772, resources/assets/styles/components/_button.scss */

.additional-links .link-box .cnt a .button {
  position: relative;
  z-index: 9;
  background: #fff;
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 32px;
  line-height: 2rem;
  color: #1C232C;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 45px 7px 25px;
  text-decoration: none;
}

/* line 784, resources/assets/styles/components/_button.scss */

.additional-links .link-box .cnt a .button:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 5px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 795, resources/assets/styles/components/_button.scss */

.additional-links .link-box .cnt a .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 3;
  opacity: .6;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 813, resources/assets/styles/components/_button.scss */

.additional-links .link-box .cnt a:focus:before,
.additional-links .link-box .cnt a:hover:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#c7314d), to(#172b59));
  background: -webkit-linear-gradient(bottom, #c7314d 0%, #172b59 100%);
  background: -o-linear-gradient(bottom, #c7314d 0%, #172b59 100%);
  background: linear-gradient(0deg, #c7314d 0%, #172b59 100%);
}

/* line 816, resources/assets/styles/components/_button.scss */

.additional-links .link-box .cnt a:focus .image,
.additional-links .link-box .cnt a:hover .image {
  background-blend-mode: multiply;
  opacity: .6;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

/* line 827, resources/assets/styles/components/_button.scss */

.additional-links.two-cols .link-box {
  margin-bottom: 0;
  height: 100%;
}

/* line 836, resources/assets/styles/components/_button.scss */

.team-btn {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

/* line 842, resources/assets/styles/components/_button.scss */

.team-btn:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #172642;
  z-index: 2;
}

/* line 852, resources/assets/styles/components/_button.scss */

.team-btn .image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 458px;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 3;
  opacity: .6;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 866, resources/assets/styles/components/_button.scss */

.team-btn .bottom-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: #172642;
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 38px;
  line-height: 2.375rem;
  color: #fff;
  letter-spacing: 0;
  z-index: 5;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 882, resources/assets/styles/components/_button.scss */

.team-btn .bottom-btn span {
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}

/* line 889, resources/assets/styles/components/_button.scss */

.team-btn .bottom-btn:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 20px;
  width: 6px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 903, resources/assets/styles/components/_button.scss */

.team-btn:focus:before,
.team-btn:hover:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#c7314d), to(#172b59));
  background: -webkit-linear-gradient(bottom, #c7314d 0%, #172b59 100%);
  background: -o-linear-gradient(bottom, #c7314d 0%, #172b59 100%);
  background: linear-gradient(0deg, #c7314d 0%, #172b59 100%);
}

/* line 906, resources/assets/styles/components/_button.scss */

.team-btn:focus .vertical-title,
.team-btn:hover .vertical-title {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: transparent;
}

/* line 911, resources/assets/styles/components/_button.scss */

.team-btn:focus .image,
.team-btn:hover .image {
  background-blend-mode: multiply;
  opacity: .6;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

/* line 916, resources/assets/styles/components/_button.scss */

.team-btn:focus .bottom-btn,
.team-btn:hover .bottom-btn {
  background: #B32F43;
}

/* line 920, resources/assets/styles/components/_button.scss */

.team-btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 928, resources/assets/styles/components/_button.scss */

.scrollto-section {
  position: relative;
  width: calc(100% - 100px);
  max-width: 1780px;
  margin: 0;
  left: 50%;
  z-index: 9;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 928, resources/assets/styles/components/_button.scss */

  .scrollto-section {
    width: calc(100% - 50px);
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 928, resources/assets/styles/components/_button.scss */

  .scrollto-section {
    width: calc(100% - 20px);
  }
}

/* line 943, resources/assets/styles/components/_button.scss */

.scrollto-section .mobile-dd-toggle {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 943, resources/assets/styles/components/_button.scss */

  .scrollto-section .mobile-dd-toggle {
    display: inline-block;
    width: 100%;
    position: relative;
    font-family: "RobotoCondensed-Bold";
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
    color: #1C232C;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 20px;
    z-index: 91;
  }

  /* line 960, resources/assets/styles/components/_button.scss */

  .scrollto-section .mobile-dd-toggle:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    width: 14px;
    height: 7px;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSI3cHgiIHZpZXdCb3g9IjAgMCAxNCA3IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlBhdGggNSBDb3B5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iUmVzb3VyY2UtTGlicmFyeSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM3NS4wMDAwMDAsIC0yMDMwLjAwMDAwMCkiIGZpbGw9IiMxNzI2NDIiPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAtNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIwLjAwMDAwMCwgMTk3OC4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJQYXRoLTUtQ29weSIgcG9pbnRzPSIyNjguODk2MjgzIDUyIDI1NSA1MiAyNjEuOTQ4MTQxIDU4Ljk0ODE0MTQiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
    -webkit-transform: translate(0, -50%) rotate(0deg);
         -o-transform: translate(0, -50%) rotate(0deg);
            transform: translate(0, -50%) rotate(0deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }

  /* line 971, resources/assets/styles/components/_button.scss */

  .scrollto-section .mobile-dd-toggle.open:after {
    -webkit-transform: translate(0, -50%) rotate(180deg);
         -o-transform: translate(0, -50%) rotate(180deg);
            transform: translate(0, -50%) rotate(180deg);
  }
}

/* line 976, resources/assets/styles/components/_button.scss */

.scrollto-section.offset-top {
  margin-top: -54px;
}

/* line 979, resources/assets/styles/components/_button.scss */

.scrollto-section:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background-image: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background-image: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background-image: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
}

/* line 989, resources/assets/styles/components/_button.scss */

.scrollto-section:before {
  position: absolute;
  content: '';
  bottom: -8px;
  left: 20px;
  right: 20px;
  height: 84px;
  z-index: 2;
  background: #000;
  opacity: .4;
  -webkit-filter: blur(17px);
          filter: blur(17px);
}

/* line 1001, resources/assets/styles/components/_button.scss */

.scrollto-section nav {
  position: relative;
  margin: 4px 0;
  padding: 38px 20px 23px 20px;
  z-index: 6;
  text-align: center;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1001, resources/assets/styles/components/_button.scss */

  .scrollto-section nav {
    padding: 23px 20px 23px 20px;
  }
}

/* line 1011, resources/assets/styles/components/_button.scss */

.scrollto-section nav:after {
  position: absolute;
  content: '';
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: #fff;
  z-index: 5;
}

/* line 1021, resources/assets/styles/components/_button.scss */

.scrollto-section nav p {
  position: relative;
  z-index: 6;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1021, resources/assets/styles/components/_button.scss */

  .scrollto-section nav p {
    display: none;
  }
}

/* line 1029, resources/assets/styles/components/_button.scss */

.scrollto-section nav ul {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  position: relative;
  z-index: 6;
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1029, resources/assets/styles/components/_button.scss */

  .scrollto-section nav ul {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 1px solid #EAECEF;
    padding-top: 20px;
    margin-top: 10px;
  }
}

/* line 1048, resources/assets/styles/components/_button.scss */

.scrollto-section nav ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 15px 15px 15px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1048, resources/assets/styles/components/_button.scss */

  .scrollto-section nav ul li {
    margin: 0 0 10px 0;
    width: 100%;
  }
}

/* line 1056, resources/assets/styles/components/_button.scss */

.scrollto-section nav ul li a {
  position: relative;
  font-family: "RobotoCondensed-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #1C232C;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 1067, resources/assets/styles/components/_button.scss */

.scrollto-section nav ul li a:hover {
  color: #A71F34;
}

/* line 1070, resources/assets/styles/components/_button.scss */

.scrollto-section nav ul li a.active {
  color: #A71F34;
}

/* line 1081, resources/assets/styles/components/_button.scss */

.banner-page-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: auto;
  max-width: 1680px;
  margin: 0 auto;
  left: 50%;
  z-index: 95;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

/* line 1091, resources/assets/styles/components/_button.scss */

.banner-page-links+main>section {
  padding-top: 20px;
}

/* line 1094, resources/assets/styles/components/_button.scss */

.banner-page-links+main>section figure {
  margin-top: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1081, resources/assets/styles/components/_button.scss */

  .banner-page-links {
    width: calc(100% - 20px);
  }
}

/* line 1101, resources/assets/styles/components/_button.scss */

.banner-page-links.offset-top {
  top: -79px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1101, resources/assets/styles/components/_button.scss */

  .banner-page-links.offset-top {
    top: -63px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1101, resources/assets/styles/components/_button.scss */

  .banner-page-links.offset-top {
    top: -61px;
    margin-bottom: -61px;
  }
}

/* line 1112, resources/assets/styles/components/_button.scss */

.banner-page-links:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background-image: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background-image: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background-image: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
}

/* line 1122, resources/assets/styles/components/_button.scss */

.banner-page-links:before {
  position: absolute;
  content: '';
  bottom: -8px;
  left: 20px;
  right: 20px;
  height: 84px;
  z-index: 2;
  background: #000;
  opacity: .4;
  -webkit-filter: blur(17px);
          filter: blur(17px);
}

/* line 1134, resources/assets/styles/components/_button.scss */

.banner-page-links nav {
  position: relative;
  margin: 4px 0;
  padding: 40px 120px 40px 120px;
  z-index: 6;
  text-align: center;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1134, resources/assets/styles/components/_button.scss */

  .banner-page-links nav {
    padding: 20px 50px 20px 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1134, resources/assets/styles/components/_button.scss */

  .banner-page-links nav {
    padding: 20px;
    width: 100%;
  }
}

/* line 1148, resources/assets/styles/components/_button.scss */

.banner-page-links nav:after {
  position: absolute;
  content: '';
  top: 0;
  left: 4px;
  right: 4px;
  bottom: 0;
  background: #F3F4F6;
  z-index: 5;
}

/* line 1158, resources/assets/styles/components/_button.scss */

.banner-page-links nav ul {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  position: relative;
  z-index: 6;
  padding: 0;
  margin: 0;
}

/* line 1170, resources/assets/styles/components/_button.scss */

.banner-page-links nav ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 15px;
}

@media only screen and (max-width: 376px) and (min-width: 1px) {
  /* line 1170, resources/assets/styles/components/_button.scss */

  .banner-page-links nav ul li {
    margin: 0 5px;
  }
}

/* line 1177, resources/assets/styles/components/_button.scss */

.banner-page-links nav ul li a {
  position: relative;
  font-family: "RobotoCondensed-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #1C232C;
  letter-spacing: 1px;
  padding: 0 10px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 1189, resources/assets/styles/components/_button.scss */

.banner-page-links nav ul li a:hover {
  color: #A71F34;
}

@media only screen and (max-width: 376px) and (min-width: 1px) {
  /* line 1177, resources/assets/styles/components/_button.scss */

  .banner-page-links nav ul li a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
}

/* line 1195, resources/assets/styles/components/_button.scss */

.banner-page-links nav ul li a.active {
  color: #A71F34;
}

/* line 1206, resources/assets/styles/components/_button.scss */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
  font-family: "RobotoCondensed-Bold";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #fff;
  background: #A71F34;
  border: 2px solid #fff;
}

/* line 1223, resources/assets/styles/components/_button.scss */

.screen-reader-text:focus {
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  display: block;
  font-size: 18px;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  text-transform: uppercase;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* line 1241, resources/assets/styles/components/_button.scss */

.mobile-btn-row {
  margin-top: 25px;
}

/* line 1245, resources/assets/styles/components/_button.scss */

.mobile-btn {
  display: none;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1245, resources/assets/styles/components/_button.scss */

  .mobile-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

/* line 1256, resources/assets/styles/components/_button.scss */

.ie .resource-btn .image {
  opacity: .1 !important;
}

/* line 1259, resources/assets/styles/components/_button.scss */

.ie .resource-btn .vertical-title {
  color: #fff !important;
}

/* line 1262, resources/assets/styles/components/_button.scss */

.ie .banner-page-links:before,
.ie .scrollto-section:before {
  display: none;
}

/* line 14, resources/assets/styles/components/_modal.scss */

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 960px;
  z-index: 1001;
  right: auto;
  padding: 0;
  border: none;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 27, resources/assets/styles/components/_modal.scss */

.modal .modal__wrapper {
  border: none;
}

/* line 30, resources/assets/styles/components/_modal.scss */

.modal .modal-close {
  display: block;
  position: absolute;
  top: -30px;
  right: -30px;
  width: 24px;
  height: 24px;
  z-index: 999;
  border: none;
  margin: 0;
  padding: 0;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTQgMTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiBjb2xvcjwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cG9seWdvbiBpZD0icGF0aC0xIiBwb2ludHM9IjEzOTkgODQuNDEgMTM5Ny41OSA4MyAxMzkyIDg4LjU5IDEzODYuNDEgODMgMTM4NSA4NC40MSAxMzkwLjU5IDkwIDEzODUgOTUuNTkgMTM4Ni40MSA5NyAxMzkyIDkxLjQxIDEzOTcuNTkgOTcgMTM5OSA5NS41OSAxMzkzLjQxIDkwIj48L3BvbHlnb24+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iQWx0ZXJuYXRlcy0mYW1wOy1Ib3ZlcnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJTZWFyY2gtRHJvcGRvd24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMzg1LjAwMDAwMCwgLTgzLjAwMDAwMCkiPgogICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgIDx1c2UgaWQ9Ikljb24tY29sb3IiIGZpbGw9IiNBNzFGMzQiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  background-size: 100%;
  cursor: pointer;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 30, resources/assets/styles/components/_modal.scss */

  .modal .modal-close {
    right: 20px;
  }
}

/* line 48, resources/assets/styles/components/_modal.scss */

.modal .modal-close span {
  display: block;
  text-indent: -9999px;
}

/* line 53, resources/assets/styles/components/_modal.scss */

.modal .modal__content {
  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%;
}

/* line 59, resources/assets/styles/components/_modal.scss */

.modal #js-modal-content {
  width: 100%;
  max-width: 1024px;
  margin: auto;
}

/* line 64, resources/assets/styles/components/_modal.scss */

.modal #js-modal-content::-webkit-scrollbar {
  width: 5px;
}

/* line 67, resources/assets/styles/components/_modal.scss */

.modal #js-modal-content::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
}

/* line 70, resources/assets/styles/components/_modal.scss */

.modal #js-modal-content .video-cnt {
  display: block;
  position: relative;
  width: 100%;
  max-width: 960px;
  height: auto;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 70, resources/assets/styles/components/_modal.scss */

  .modal #js-modal-content .video-cnt {
    margin: 0 20px;
    width: calc(100% - 40px);
  }
}

/* line 81, resources/assets/styles/components/_modal.scss */

.modal #js-modal-content .video-cnt .video-holder {
  padding-top: 56.25%;
}

/* line 84, resources/assets/styles/components/_modal.scss */

.modal #js-modal-content .video-cnt .video-holder video-js,
.modal #js-modal-content .video-cnt .video-holder iframe {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

/* line 99, resources/assets/styles/components/_modal.scss */

#js-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  padding: 0;
  margin: 0;
  background: rgba(23,38,66,0.9);
}

/* line 13, resources/assets/styles/components/_form.scss */

.form-box {
  display: inline-block;
  position: relative;
  width: 100%;
  height: auto;
}

/* line 19, resources/assets/styles/components/_form.scss */

.form-box:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background-image: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: linear-gradient(0deg, #172642 0%, #cb9701 100%);
  z-index: 2;
}

/* line 29, resources/assets/styles/components/_form.scss */

.form-box:before {
  position: absolute;
  content: '';
  bottom: -8px;
  left: 20px;
  right: 20px;
  height: 84px;
  z-index: 2;
  background: #000;
  opacity: .4;
  -webkit-filter: blur(17px);
          filter: blur(17px);
}

/* line 43, resources/assets/styles/components/_form.scss */

.form-box.blue .cnt:after {
  background: #172642;
}

/* line 46, resources/assets/styles/components/_form.scss */

.form-box.blue label {
  color: #fff;
}

/* line 50, resources/assets/styles/components/_form.scss */

.form-box .cnt {
  position: relative;
  margin: 4px;
  z-index: 5;
  padding: 65px 165px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 50, resources/assets/styles/components/_form.scss */

  .form-box .cnt {
    padding: 35px 50px 65px 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 50, resources/assets/styles/components/_form.scss */

  .form-box .cnt {
    padding: 35px 20px 0 20px;
  }
}

/* line 62, resources/assets/styles/components/_form.scss */

.form-box .cnt:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
}

/* line 71, resources/assets/styles/components/_form.scss */

.form-box .cnt h3 {
  position: relative;
  z-index: 9;
  text-align: center;
  margin: 0 auto 50px auto;
}

/* line 77, resources/assets/styles/components/_form.scss */

.form-box .cnt .gform_wrapper {
  position: relative;
  z-index: 9;
}

/* line 81, resources/assets/styles/components/_form.scss */

.form-box .cnt .gform_footer {
  position: absolute;
  bottom: -115px;
  left: 0;
  width: 100%;
  z-index: 9;
  text-align: center;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 81, resources/assets/styles/components/_form.scss */

  .form-box .cnt .gform_footer {
    position: relative;
    bottom: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 99, resources/assets/styles/components/_form.scss */

  .basic-form .cnt {
    padding: 25px;
  }
}

/* line 109, resources/assets/styles/components/_form.scss */

.gform_body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 114, resources/assets/styles/components/_form.scss */

.gform_body ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 0;
}

/* line 122, resources/assets/styles/components/_form.scss */

.form-image {
  position: relative;
}

/* line 126, resources/assets/styles/components/_form.scss */

.form-bg {
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  height: 100%;
  min-height: 580px;
  max-height: 580px;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: linear-gradient(90deg, #172b59 0%, #c7314d 100%);
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 138, resources/assets/styles/components/_form.scss */

.form-bg .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 2;
  opacity: .6;
}

/* line 151, resources/assets/styles/components/_form.scss */

.form-bg:before {
  display: none;
  position: absolute;
  content: '';
  top: 0;
  left: 250px;
  height: 750px;
  width: 258px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iUGxheSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTExNDYuMDAwMDAwLCAtNzYzLjAwMDAwMCkiIHN0cm9rZT0iI0NCOTcwMSI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cC0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg3MzYuMDAwMDAwLCA3NjYuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNTM2LC0xLjU2ODgyNTYgTDU2Ni4wMTI5NzksODcuNjkwNjc4MSBMNjYwLjE3ODMzMiw4OC42NTIwMTQgTDU4NC41NjIwMiwxNDQuNzc4NzU3IEw2MTIuNzQ2NDMsMjM0LjYzMjM5OSBMNTM2LDE4MC4wNjExMyBMNDU5LjI1MzU3LDIzNC42MzIzOTkgTDQ4Ny40Mzc5OCwxNDQuNzc4NzU3IEw0MTEuODIxNjY4LDg4LjY1MjAxNCBMNTA1Ljk4NzAyMSw4Ny42OTA2NzgxIEw1MzYsLTEuNTY4ODI1NiBaIiBpZD0iU3Rhci1Db3B5LTkiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 0 0 space;
  z-index: 2;
}

/* line 165, resources/assets/styles/components/_form.scss */

label {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #1C232C;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* line 179, resources/assets/styles/components/_form.scss */

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="phone"],
input[type="search"] {
  font-family: "Roboto-Regular" !important;
  font-size: 18px;
  font-size: 1.125rem !important;
  line-height: 26px;
  line-height: 1.625rem !important;
  color: #1C232C;
  letter-spacing: 0 !important;
  width: 100% !important;
  min-height: 46px !important;
  padding: 10px 15px !important;
  background: #fff !important;
  border: 1px solid #C3C9D2 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  -webkit-appearance: none;
}

/* line 201, resources/assets/styles/components/_form.scss */

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder {
  opacity: .66;
}

/* line 204, resources/assets/styles/components/_form.scss */

input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="phone"]::-moz-placeholder,
input[type="search"]::-moz-placeholder {
  opacity: .66;
}

/* line 210, resources/assets/styles/components/_form.scss */

input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="phone"]:-moz-placeholder,
input[type="search"]:-moz-placeholder {
  opacity: .66;
}

/* line 215, resources/assets/styles/components/_form.scss */

.gform_wrapper .gfield_time_hour,
.gform_wrapper .gfield_time_minute,
.gform_wrapper .gfield_time_ampm {
  max-width: calc(33.3333% + .5rem) !important;
  width: calc(33.3333% + .5rem) !important;
  margin-right: .5rem !important;
}

/* line 222, resources/assets/styles/components/_form.scss */

.gform_wrapper .gfield_time_ampm select {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
}

/* line 238, resources/assets/styles/components/_form.scss */

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="phone"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
textarea:focus {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  outline: 3px solid #172642;
  outline-offset: 3px;
  -webkit-box-shadow: 0 0 0px 2px white;
          box-shadow: 0 0 0px 2px white;
}

/* line 244, resources/assets/styles/components/_form.scss */

input[type="text"]:focus:active,
input[type="text"]:focus.active-link,
input[type="password"]:focus:active,
input[type="password"]:focus.active-link,
input[type="email"]:focus:active,
input[type="email"]:focus.active-link,
input[type="tel"]:focus:active,
input[type="tel"]:focus.active-link,
input[type="phone"]:focus:active,
input[type="phone"]:focus.active-link,
input[type="search"]:focus:active,
input[type="search"]:focus.active-link,
input[type="submit"]:focus:active,
input[type="submit"]:focus.active-link,
input[type="reset"]:focus:active,
input[type="reset"]:focus.active-link,
textarea:focus:active,
textarea:focus.active-link {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 251, resources/assets/styles/components/_form.scss */

select {
  font-family: "Roboto-Regular";
  font-size: 18px;
  font-size: 1.125rem !important;
  line-height: 26px;
  line-height: 1.625rem !important;
  color: #1C232C;
  letter-spacing: 0 !important;
  width: 100% !important;
  min-height: 50px;
  padding: 10px 15px !important;
  background: #fff;
  border: 1px solid #C3C9D2;
  border-radius: 0 !important;
}

/* line 266, resources/assets/styles/components/_form.scss */

select:focus {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  outline: 3px solid #172642;
  outline-offset: 3px;
  -webkit-box-shadow: 0 0 0px 2px white;
          box-shadow: 0 0 0px 2px white;
}

/* line 272, resources/assets/styles/components/_form.scss */

select:focus:active,
select:focus.active-link {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 291, resources/assets/styles/components/_form.scss */

.form-box.blue input[type="text"]:focus,
.form-box.blue input[type="password"]:focus,
.form-box.blue input[type="email"]:focus,
.form-box.blue input[type="tel"]:focus,
.form-box.blue input[type="phone"]:focus,
.form-box.blue input[type="search"]:focus,
.form-box.blue input[type="submit"]:focus,
.form-box.blue select:focus,
.form-box.blue textarea:focus {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  outline: 3px solid #CB9701;
  outline-offset: 3px;
  -webkit-box-shadow: 0 0 0px 2px white;
          box-shadow: 0 0 0px 2px white;
}

/* line 297, resources/assets/styles/components/_form.scss */

.form-box.blue input[type="text"]:focus:active,
.form-box.blue input[type="text"]:focus.active-link,
.form-box.blue input[type="password"]:focus:active,
.form-box.blue input[type="password"]:focus.active-link,
.form-box.blue input[type="email"]:focus:active,
.form-box.blue input[type="email"]:focus.active-link,
.form-box.blue input[type="tel"]:focus:active,
.form-box.blue input[type="tel"]:focus.active-link,
.form-box.blue input[type="phone"]:focus:active,
.form-box.blue input[type="phone"]:focus.active-link,
.form-box.blue input[type="search"]:focus:active,
.form-box.blue input[type="search"]:focus.active-link,
.form-box.blue input[type="submit"]:focus:active,
.form-box.blue input[type="submit"]:focus.active-link,
.form-box.blue select:focus:active,
.form-box.blue select:focus.active-link,
.form-box.blue textarea:focus:active,
.form-box.blue textarea:focus.active-link {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 303, resources/assets/styles/components/_form.scss */

.form-box.blue .gfield_checkbox input[type="checkbox"]:focus+label:before {
  outline: 3px solid #CB9701;
}

/* line 306, resources/assets/styles/components/_form.scss */

.form-box.blue .gfield_radio input[type="radio"]:focus+label:before {
  outline: 3px solid #CB9701;
}

/* line 309, resources/assets/styles/components/_form.scss */

.form-box.blue .gfield_checkbox input[type="checkbox"].active-link:focus+label:before {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 313, resources/assets/styles/components/_form.scss */

.form-box.blue .gfield_radio input[type="radio"].active-link:focus+label:before {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 317, resources/assets/styles/components/_form.scss */

.form-box.blue .gfield_checkbox input[type="checkbox"]+label,
.form-box.blue .gfield_radio input[type="radio"]+label {
  color: #fff;
}

/* line 324, resources/assets/styles/components/_form.scss */

.combo-wrap {
  position: relative;
  width: calc(100% - 20px);
  margin-right: 20px;
  font-family: "Roboto-Regular";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
  color: #111111;
  letter-spacing: 0;
  background: #fff;
}

/* line 334, resources/assets/styles/components/_form.scss */

.combo-wrap:after {
  position: absolute;
  content: '';
  width: 48px;
  height: 48px;
  z-index: 1;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSI3cHgiIHZpZXdCb3g9IjAgMCAxNCA3IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlBhdGggNSBDb3B5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iUmVzb3VyY2UtTGlicmFyeSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM3NS4wMDAwMDAsIC0yMDMwLjAwMDAwMCkiIGZpbGw9IiMxNzI2NDIiPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAtNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIwLjAwMDAwMCwgMTk3OC4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJQYXRoLTUtQ29weSIgcG9pbnRzPSIyNjguODk2MjgzIDUyIDI1NSA1MiAyNjEuOTQ4MTQxIDU4Ljk0ODE0MTQiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  background-size: 14px 7px;
  top: 0;
  right: 0;
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: 50%;
       -o-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition: -webkit-transform 150ms;
  transition: -webkit-transform 150ms;
  -o-transition: -o-transform 150ms;
  transition: transform 150ms;
  transition: transform 150ms, -webkit-transform 150ms, -o-transform 150ms;
}

/* line 348, resources/assets/styles/components/_form.scss */

.combo-wrap.open:after {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 351, resources/assets/styles/components/_form.scss */

.combo-wrap .combobox {
  position: relative;
  z-index: 5;
  padding: 10px 35px 10px 15px !important;
  border: 1px solid #C3C9D2;
  background: transparent !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* line 363, resources/assets/styles/components/_form.scss */

.listbox {
  display: none;
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  z-index: 99;
  text-align: left;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.08);
          box-shadow: 0 0 6px rgba(0,0,0,0.08);
  border: 1px solid #C3C9D2;
}

/* line 379, resources/assets/styles/components/_form.scss */

.listbox::-webkit-scrollbar {
  width: 5px;
}

/* line 382, resources/assets/styles/components/_form.scss */

.listbox::-webkit-scrollbar-track {
  background: #efefef;
}

/* line 385, resources/assets/styles/components/_form.scss */

.listbox::-webkit-scrollbar-thumb {
  background: #C3C9D2;
}

/* line 388, resources/assets/styles/components/_form.scss */

.listbox.open {
  display: block;
}

/* line 391, resources/assets/styles/components/_form.scss */

.listbox .option {
  padding: 5px 15px;
  cursor: default;
  font-family: "Roboto-Regular";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
  color: #111111;
  letter-spacing: 0;
  border-bottom: 1px solid #C3C9D2;
}

/* line 400, resources/assets/styles/components/_form.scss */

.listbox .option:last-child {
  border-bottom: none;
}

/* line 404, resources/assets/styles/components/_form.scss */

.listbox .option.selected {
  color: #fff;
  background-color: #A71F34;
}

/* line 408, resources/assets/styles/components/_form.scss */

.listbox .option.active {
  color: #fff;
  background-color: #172642;
}

/* line 412, resources/assets/styles/components/_form.scss */

.listbox .underline {
  text-decoration: underline;
}

/* line 421, resources/assets/styles/components/_form.scss */

.gfield_radio li {
  position: relative !important;
  margin-bottom: 10px !important;
  overflow: visible !important;
}

/* line 426, resources/assets/styles/components/_form.scss */

.gfield_radio input[type="radio"] {
  position: absolute;
  display: block !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 22px;
  padding: 0;
  margin: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}

/* line 439, resources/assets/styles/components/_form.scss */

.gfield_radio input[type="radio"]+label {
  font-size: 16px;
  font-size: 1rem !important;
  line-height: 28px;
  line-height: 1.75rem !important;
  letter-spacing: 0 !important;
  padding-left: 30px !important;
  display: inline-block !important;
  vertical-align: top !important;
  text-transform: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  font-weight: normal !important;
}

/* line 453, resources/assets/styles/components/_form.scss */

.gfield_radio input[type="radio"]+label:before {
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  position: absolute;
  content: '';
  text-align: center;
  background: #fff;
  border: 1px solid #C3C9D2;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 466, resources/assets/styles/components/_form.scss */

.gfield_radio input[type="radio"]:focus+label:before {
  -webkit-transition: 0s !important;
  -o-transition: 0s !important;
  transition: 0s !important;
  outline: 2px solid #172642;
  outline-offset: 2px;
  -webkit-box-shadow: 0 0 0px 2px white;
          box-shadow: 0 0 0px 2px white;
}

/* line 472, resources/assets/styles/components/_form.scss */

.gfield_radio input[type="radio"]+label.active-link:before,
.gfield_radio input[type="radio"].active-link:focus+label:before {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 477, resources/assets/styles/components/_form.scss */

.gfield_radio input[type="radio"]:checked+label:before {
  content: '\B7';
  font-size: 60px;
  line-height: 20px;
  color: #A71F34;
}

/* line 486, resources/assets/styles/components/_form.scss */

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

/* line 491, resources/assets/styles/components/_form.scss */

.gfield_checkbox li {
  position: relative !important;
  margin-bottom: 10px !important;
  overflow: visible !important;
}

/* line 496, resources/assets/styles/components/_form.scss */

.gfield_checkbox input[type="checkbox"] {
  position: absolute;
  display: block !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  padding: 0;
  margin: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}

/* line 509, resources/assets/styles/components/_form.scss */

.gfield_checkbox input[type="checkbox"]+label {
  font-family: "Roboto-Regular" !important;
  font-size: 16px;
  font-size: 1rem !important;
  line-height: 28px;
  line-height: 1.75rem !important;
  letter-spacing: 0 !important;
  padding-left: 30px !important;
  display: inline-block !important;
  vertical-align: top !important;
  text-transform: none !important;
  max-width: 100% !important;
  font-weight: normal !important;
}

/* line 523, resources/assets/styles/components/_form.scss */

.gfield_checkbox input[type="checkbox"]+label:before {
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  content: '';
  text-align: center;
  background: #fff;
  border: 1px solid #C3C9D2;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 537, resources/assets/styles/components/_form.scss */

.gfield_checkbox input[type="checkbox"]:focus+label:before {
  -webkit-transition: 0s !important;
  -o-transition: 0s !important;
  transition: 0s !important;
  outline: 2px solid #172642;
  outline-offset: 2px;
  -webkit-box-shadow: 0 0 0px 2px white;
          box-shadow: 0 0 0px 2px white;
}

/* line 543, resources/assets/styles/components/_form.scss */

.gfield_checkbox input[type="checkbox"]+label.active-link:before,
.gfield_checkbox input[type="checkbox"].active-link:focus+label:before {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 548, resources/assets/styles/components/_form.scss */

.gfield_checkbox input[type="checkbox"]:checked+label:before {
  content: '\2713';
  color: #A71F34;
  line-height: 1.2;
}

/* line 555, resources/assets/styles/components/_form.scss */

.ginput_container_consent {
  position: relative !important;
  overflow: visible !important;
}

/* line 559, resources/assets/styles/components/_form.scss */

.ginput_container_consent input[type="checkbox"] {
  position: absolute;
  display: block !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 22px;
  padding: 0;
  margin: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}

/* line 572, resources/assets/styles/components/_form.scss */

.ginput_container_consent input[type="checkbox"]+label {
  font-family: "Roboto-Regular" !important;
  font-size: 16px;
  font-size: 1rem !important;
  line-height: 28px;
  line-height: 1.75rem !important;
  letter-spacing: 0 !important;
  padding-left: 30px !important;
  display: inline-block !important;
  vertical-align: top !important;
  text-transform: none !important;
  max-width: 100% !important;
  font-weight: normal !important;
}

/* line 586, resources/assets/styles/components/_form.scss */

.ginput_container_consent input[type="checkbox"]+label:before {
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  content: '';
  text-align: center;
  background: #fff;
  border: 1px solid #C3C9D2;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 598, resources/assets/styles/components/_form.scss */

.ginput_container_consent input[type="checkbox"]:focus+label:before {
  -webkit-transition: 0s !important;
  -o-transition: 0s !important;
  transition: 0s !important;
  outline: 2px solid #CB9701;
  outline-offset: 2px;
  -webkit-box-shadow: 0 0 0px 2px white;
          box-shadow: 0 0 0px 2px white;
}

/* line 604, resources/assets/styles/components/_form.scss */

.ginput_container_consent input[type="checkbox"]:checked+label:before {
  content: '\2713';
  color: #A71F34;
  line-height: 1.2;
}

/* line 614, resources/assets/styles/components/_form.scss */

#datepicker {
  margin: 0;
  padding: 0;
  height: 25px;
  vertical-align: bottom;
}

/* line 620, resources/assets/styles/components/_form.scss */

.ui-datepicker-trigger {
  margin: 2px;
  padding: 0;
  vertical-align: bottom;
}

/* line 625, resources/assets/styles/components/_form.scss */

.ui-datepicker-trigger img {
  width: 25px;
  height: 25px;
}

/* line 630, resources/assets/styles/components/_form.scss */

.ginput_container_date {
  position: relative;
}

/* line 633, resources/assets/styles/components/_form.scss */

.ginput_container_date .ui-datepicker-trigger {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 641, resources/assets/styles/components/_form.scss */

.ui-datepicker {
  z-index: 996 !important;
  background: #fff;
  border: 1px solid #C3C9D2;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.4);
          box-shadow: 0 0 10px rgba(0,0,0,0.4);
  width: 100% !important;
  max-width: 320px !important;
  margin: 0 !important;
}

/* line 650, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-header {
  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;
  position: relative;
  padding: 20px;
  border: none !important;
  background: #fff !important;
}

/* line 660, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 32px;
  height: 32px;
  border-radius: 100%;
  border: 2px solid #fff;
  background: #172642;
  cursor: pointer;
}

/* line 672, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 678, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-next:before,
.ui-datepicker .ui-datepicker-prev:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}

/* line 689, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-next:after,
.ui-datepicker .ui-datepicker-prev:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  border: 2px solid #A71F34;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

/* line 702, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-next {
  right: 10px;
}

/* line 705, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-prev {
  left: 10px;
  -webkit-transform: translate(0, -50%) rotate(180deg);
       -o-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

/* line 709, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 auto;
  font-family: "RobotoCondensed-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #181B22;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: none !important;
}

/* line 719, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar {
  margin: 0;
  width: 100%;
}

/* line 723, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar thead {
  background: #172642 !important;
  border-bottom: none !important;
}

/* line 727, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar thead tr th {
  text-shadow: none !important;
  padding: 0 !important;
}

/* line 731, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar thead tr th span {
  font-family: "RobotoCondensed-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* line 739, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar tbody tr td {
  padding: 0;
  text-align: center;
  border: none !important;
}

/* line 744, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-today {
  background: #A71F34 !important;
  color: #fff !important;
}

/* line 748, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-today a {
  color: #fff !important;
}

/* line 751, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-today a:after {
  border: 2px solid #fff;
}

/* line 754, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-today a:focus {
  outline: none !important;
}

/* line 757, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-today a:focus:after {
  display: block;
}

/* line 762, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar tbody tr td a {
  display: block !important;
  position: relative;
  text-decoration: none;
  padding: 10px;
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #A71F34 !important;
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  width: 100% !important;
  height: 100% !important;
  font-weight: normal !important;
  text-shadow: none !important;
  border: none !important;
}

/* line 778, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar tbody tr td a:after {
  display: none;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 2px solid #172642;
  z-index: 5;
}

/* line 791, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar tbody tr td a:focus {
  outline: none !important;
}

/* line 794, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar tbody tr td a:focus:after {
  display: block;
}

/* line 798, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-calendar tbody tr td span {
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* line 806, resources/assets/styles/components/_form.scss */

.ui-datepicker .ui-datepicker-buttonpane button {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  background: #A71F34;
  padding: 10px 15px;
  width: 100%;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
}

/* line 824, resources/assets/styles/components/_form.scss */

.offscreen {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* line 834, resources/assets/styles/components/_form.scss */

button.ui-datepicker-trigger {
  background-color: transparent !important;
  border: none !important;
  margin: auto !important;
}

/* line 846, resources/assets/styles/components/_form.scss */

.ginput_container_fileupload {
  position: relative;
  height: 40px;
  overflow: hidden;
}

/* line 851, resources/assets/styles/components/_form.scss */

.ginput_container_fileupload span[role="button"] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 0px;
  text-align: center;
  text-transform: none;
  background: #A71F34;
  padding: 2px 0;
  width: 87px;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 870, resources/assets/styles/components/_form.scss */

.ginput_container_fileupload span[role="button"]:hover {
  background: #BD233B;
  border: 2px solid #fff;
}

/* line 875, resources/assets/styles/components/_form.scss */

.ginput_container_fileupload input[type="file"] {
  position: absolute;
  top: -25px;
  left: 0;
  z-index: 9;
  opacity: 0;
  width: 100%;
  height: 75px;
  cursor: pointer;
}

/* line 885, resources/assets/styles/components/_form.scss */

.ginput_container_fileupload .file-name {
  position: absolute;
  top: 50%;
  left: 100px;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 898, resources/assets/styles/components/_form.scss */

textarea {
  font-family: "Roboto-Regular";
  font-size: 18px;
  font-size: 1.125rem !important;
  line-height: 26px;
  line-height: 1.625rem !important;
  color: #1C232C;
  letter-spacing: 0 !important;
  width: 100% !important;
  height: auto !important;
  max-height: 180px;
  padding: 10px 15px !important;
  background: #fff !important;
  border: 2px solid #999999 !important;
  border-radius: 0 !important;
}

/* line 914, resources/assets/styles/components/_form.scss */

textarea::-webkit-input-placeholder {
  opacity: .66;
}

/* line 917, resources/assets/styles/components/_form.scss */

textarea::-moz-placeholder {
  opacity: .66;
}

/* line 923, resources/assets/styles/components/_form.scss */

textarea:-moz-placeholder {
  opacity: .66;
}

/* line 931, resources/assets/styles/components/_form.scss */

.gform_footer input[type="submit"] {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  background: #A71F34;
  padding: 10px 15px !important;
  width: 100% !important;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0 !important;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 947, resources/assets/styles/components/_form.scss */

.gform_footer input[type="submit"]:hover {
  background: #BD233B;
  border: 2px solid #fff;
}

/* line 954, resources/assets/styles/components/_form.scss */

input[type="submit"] {
  -webkit-appearance: none !important;
  border-radius: 0 !important;
}

/* line 961, resources/assets/styles/components/_form.scss */

.validation_error {
  font-family: "Roboto-Bold" !important;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff !important;
  letter-spacing: 0px !important;
  margin-bottom: 25px;
  border-top: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  clear: both;
  width: 100%;
  text-align: center;
}

/* line 975, resources/assets/styles/components/_form.scss */

.gfield_required {
  color: #A71F34 !important;
}

/* line 979, resources/assets/styles/components/_form.scss */

.gfield_error {
  background-color: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

/* line 986, resources/assets/styles/components/_form.scss */

.gfield_error label {
  color: #fff !important;
}

/* line 991, resources/assets/styles/components/_form.scss */

.validation_message {
  font-family: "Roboto-Bold" !important;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff !important;
  background: #A71F34 !important;
  padding: 2px 5px !important;
}

/* line 1002, resources/assets/styles/components/_form.scss */

.ie .form-box:before {
  display: none;
}

/* line 1007, resources/assets/styles/components/_form.scss */

#gform_4 .gchoice {
  position: relative;
}

/* line 1010, resources/assets/styles/components/_form.scss */

#gform_4 .gfield_radio input[type="radio"]:checked+label:before {
  line-height: 16px;
}

/* line 1013, resources/assets/styles/components/_form.scss */

#gform_4 .gsection {
  margin-top: 40px;
}

/* line 13, resources/assets/styles/template-parts/_header.scss */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 991;
  border-bottom: 1px solid #EAECEF;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 24, resources/assets/styles/template-parts/_header.scss */

.header:after {
  position: absolute;
  content: '';
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 2;
  opacity: 0.1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 35, resources/assets/styles/template-parts/_header.scss */

  .header.nav-up {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

/* line 42, resources/assets/styles/template-parts/_header.scss */

.header.nav-down {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* line 45, resources/assets/styles/template-parts/_header.scss */

.header.show-announcement.nav-up {
  -webkit-transform: translate3d(0, -60px, 0);
          transform: translate3d(0, -60px, 0);
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 45, resources/assets/styles/template-parts/_header.scss */

  .header.show-announcement.nav-up {
    -webkit-transform: translate3d(0, -60px, 0);
            transform: translate3d(0, -60px, 0);
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 45, resources/assets/styles/template-parts/_header.scss */

  .header.show-announcement.nav-up {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

/* line 56, resources/assets/styles/template-parts/_header.scss */

.header .announcement-bar {
  display: none;
  -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;
  position: relative;
  background: #172642;
  padding: 10px 45px;
  z-index: 91;
  max-height: 60px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 56, resources/assets/styles/template-parts/_header.scss */

  .header .announcement-bar {
    display: none;
  }
}

/* line 70, resources/assets/styles/template-parts/_header.scss */

.header .announcement-bar .announcement {
  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;
  position: relative;
}

/* line 77, resources/assets/styles/template-parts/_header.scss */

.header .announcement-bar .copy {
  font-family: "Roboto-Bold";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #FEFEFE;
  letter-spacing: 0;
  text-align: center;
  margin-right: 35px;
}

/* line 85, resources/assets/styles/template-parts/_header.scss */

.header .announcement-bar .copy p {
  display: block;
  font-family: "Roboto-Bold";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #FEFEFE;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  text-overflow: ellipsis;
  height: 24px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 1080px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 100, resources/assets/styles/template-parts/_header.scss */

.header .announcement-bar .copy p img {
  margin-top: 0;
  margin-bottom: 0;
}

/* line 106, resources/assets/styles/template-parts/_header.scss */

.header .announcement-bar .btn-cta {
  padding: 0px 35px 0px 25px;
}

/* line 109, resources/assets/styles/template-parts/_header.scss */

.header .announcement-bar .close {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTQgMTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiBjb2xvcjwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cG9seWdvbiBpZD0icGF0aC0xIiBwb2ludHM9IjEzOTkgODQuNDEgMTM5Ny41OSA4MyAxMzkyIDg4LjU5IDEzODYuNDEgODMgMTM4NSA4NC40MSAxMzkwLjU5IDkwIDEzODUgOTUuNTkgMTM4Ni40MSA5NyAxMzkyIDkxLjQxIDEzOTcuNTkgOTcgMTM5OSA5NS41OSAxMzkzLjQxIDkwIj48L3BvbHlnb24+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iQWx0ZXJuYXRlcy0mYW1wOy1Ib3ZlcnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJTZWFyY2gtRHJvcGRvd24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMzg1LjAwMDAwMCwgLTgzLjAwMDAwMCkiPgogICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgIDx1c2UgaWQ9Ikljb24tY29sb3IiIGZpbGw9IiNGRUZFRkUiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  background-size: 100% !important;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 119, resources/assets/styles/template-parts/_header.scss */

.header .announcement-bar .close span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 127, resources/assets/styles/template-parts/_header.scss */

.header.show-announcement .announcement-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 130, resources/assets/styles/template-parts/_header.scss */

.header.show-announcement .announcement-bar.hidden {
  display: none !important;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 127, resources/assets/styles/template-parts/_header.scss */

  .header.show-announcement .announcement-bar {
    display: none;
  }
}

/* line 137, resources/assets/styles/template-parts/_header.scss */

.header.show-announcement .page-overlay {
  display: none;
}

/* line 140, resources/assets/styles/template-parts/_header.scss */

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  max-width: 1680px;
}

/* line 149, resources/assets/styles/template-parts/_header.scss */

.header .utility {
  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: relative;
  padding: 6px 45px;
  background: #EAECEF;
  min-height: 40px;
  max-height: 40px;
  z-index: 91;
}

/* line 161, resources/assets/styles/template-parts/_header.scss */

.header .utility .wrapper:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 91;
  background: #EAECEF;
}

/* line 171, resources/assets/styles/template-parts/_header.scss */

.header .utility .left {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  -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;
}

/* line 177, resources/assets/styles/template-parts/_header.scss */

.header .utility .left:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: 'Resources For:';
  font-family: "RobotoCondensed-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #A71F34;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 10px 0 0;
}

/* line 188, resources/assets/styles/template-parts/_header.scss */

.header .utility .left,
.header .utility .right {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  -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;
  position: relative;
  z-index: 99;
}

/* line 197, resources/assets/styles/template-parts/_header.scss */

.header .utility .left ul,
.header .utility .right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 202, resources/assets/styles/template-parts/_header.scss */

.header .utility .left ul li,
.header .utility .right ul li {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px;
}

/* line 208, resources/assets/styles/template-parts/_header.scss */

.header .utility .left ul li a,
.header .utility .right ul li a {
  position: relative;
  font-family: "RobotoCondensed-Regular";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #181B22;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 218, resources/assets/styles/template-parts/_header.scss */

.header .utility .left ul li a:after,
.header .utility .right ul li a:after {
  position: absolute;
  content: '';
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 5px;
  background: #A71F34;
  z-index: 5;
  opacity: 0;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 230, resources/assets/styles/template-parts/_header.scss */

.header .utility .left ul li a:hover:after,
.header .utility .right ul li a:hover:after {
  opacity: 1;
}

/* line 237, resources/assets/styles/template-parts/_header.scss */

.header .utility .right {
  margin: 0 0 0 auto;
}

/* line 241, resources/assets/styles/template-parts/_header.scss */

.header .brand {
  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: relative;
  width: 100%;
  padding: 0 40px;
  min-height: 100px;
  max-height: 100px;
  background: #fff;
  z-index: 90;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 241, resources/assets/styles/template-parts/_header.scss */

  .header .brand {
    min-height: 70px;
    max-height: 70px;
    padding: 0;
  }
}

/* line 259, resources/assets/styles/template-parts/_header.scss */

.header .brand .wrapper:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  background: #fff;
}

/* line 269, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 95;
  width: 68px;
  height: 70px;
  margin-right: 20px;
  -webkit-transition: background .3s;
  -o-transition: background .3s;
  transition: background .3s;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 269, resources/assets/styles/template-parts/_header.scss */

  .header .brand .hamburger {
    margin-right: 0;
  }
}

/* line 284, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger:hover {
  opacity: 1;
}

/* line 287, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger.is-active {
  background: #A71F34;
}

/* line 290, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger.is-active .icon .line:nth-child(2) {
  display: none;
}

/* line 293, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger.is-active .icon .line:nth-child(1) {
  background: #fff;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -o-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

/* line 301, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger.is-active .icon .line:nth-child(3) {
  background: #fff;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
       -o-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

/* line 310, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 9;
}

/* line 319, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger .icon {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  top: 0;
  left: 0;
  z-index: 5;
  width: 28px;
  height: 18px;
}

/* line 331, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger .line {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 2px;
  background: #172642;
}

/* line 336, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger .line:nth-child(1) {
  width: 28px;
}

/* line 339, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger .line:nth-child(2) {
  width: 16px;
}

/* line 342, resources/assets/styles/template-parts/_header.scss */

.header .brand .hamburger .line:nth-child(3) {
  width: 21px;
}

/* line 347, resources/assets/styles/template-parts/_header.scss */

.header .brand .left,
.header .brand .right {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  -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;
  position: relative;
  z-index: 91;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 356, resources/assets/styles/template-parts/_header.scss */

  .header .brand .left {
    width: calc(100% - 400px);
  }

  /* line 360, resources/assets/styles/template-parts/_header.scss */

  .header .brand .left a {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 356, resources/assets/styles/template-parts/_header.scss */

  .header .brand .left {
    width: calc(100% - 60px);
  }
}

/* line 368, resources/assets/styles/template-parts/_header.scss */

.header .brand .logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 201px;
  height: 44px;
  margin-right: 25px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 368, resources/assets/styles/template-parts/_header.scss */

  .header .brand .logo {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 368, resources/assets/styles/template-parts/_header.scss */

  .header .brand .logo {
    width: 140px;
    height: 31px;
  }

  /* line 381, resources/assets/styles/template-parts/_header.scss */

  .header .brand .logo img,
  .header .brand .logo svg {
    width: 140px;
    height: 31px;
  }
}

/* line 386, resources/assets/styles/template-parts/_header.scss */

.header .brand .logo span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 393, resources/assets/styles/template-parts/_header.scss */

.header .brand nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* line 396, resources/assets/styles/template-parts/_header.scss */

.header .brand nav>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 401, resources/assets/styles/template-parts/_header.scss */

.header .brand nav>ul>li {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

/* line 407, resources/assets/styles/template-parts/_header.scss */

.header .brand nav>ul>li.active>a:after,
.header .brand nav>ul>li:hover>a:after {
  position: absolute;
  content: '';
  bottom: -2px;
  left: 50%;
  width: calc(100% - 20px);
  height: 7px;
  background: #A71F34;
  z-index: 99;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 420, resources/assets/styles/template-parts/_header.scss */

.header .brand nav>ul>li>a {
  position: relative;
  z-index: 99;
  font-family: "RobotoCondensed-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #181B22;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 37px 10px;
}

/* line 434, resources/assets/styles/template-parts/_header.scss */

.header .brand .right {
  margin: 0 0 0 auto;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 434, resources/assets/styles/template-parts/_header.scss */

  .header .brand .right {
    width: auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 434, resources/assets/styles/template-parts/_header.scss */

  .header .brand .right {
    width: 60px;
  }
}

/* line 443, resources/assets/styles/template-parts/_header.scss */

.header .brand .right a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "RobotoCondensed-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #181B22;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

/* line 452, resources/assets/styles/template-parts/_header.scss */

.header .brand .right a:hover {
  color: #A71F34;
}

/* line 455, resources/assets/styles/template-parts/_header.scss */

.header .brand .right a span {
  color: #A71F34;
  padding-left: 4px;
}

/* line 459, resources/assets/styles/template-parts/_header.scss */

.header .brand .right a:first-child {
  padding: 15px;
  border-right: 1px solid #EAECEF;
}

/* line 464, resources/assets/styles/template-parts/_header.scss */

.header .brand .right .search-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: auto;
  height: auto;
  padding: 50px 30px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 464, resources/assets/styles/template-parts/_header.scss */

  .header .brand .right .search-toggle {
    padding: 35px 30px;
  }
}

/* line 474, resources/assets/styles/template-parts/_header.scss */

.header .brand .right .search-toggle:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 100%;
  z-index: 9;
  border: 3px solid transparent;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMThweCIgaGVpZ2h0PSIxOHB4IiB2aWV3Qm94PSIwIDAgMTggMTgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiAvIFNlYXJjaDwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBkPSJNMTIuNSwxMSBMMTEuNzEsMTEgTDExLjQzLDEwLjczIEMxMi40MSw5LjU5IDEzLDguMTEgMTMsNi41IEMxMywyLjkxIDEwLjA5LDAgNi41LDAgQzIuOTEsMCAwLDIuOTEgMCw2LjUgQzAsMTAuMDkgMi45MSwxMyA2LjUsMTMgQzguMTEsMTMgOS41OSwxMi40MSAxMC43MywxMS40MyBMMTEsMTEuNzEgTDExLDEyLjUgTDE2LDE3LjQ5IEwxNy40OSwxNiBMMTIuNSwxMSBaIE02LjUsMTEgQzQuMDEsMTEgMiw4Ljk5IDIsNi41IEMyLDQuMDEgNC4wMSwyIDYuNSwyIEM4Ljk5LDIgMTEsNC4wMSAxMSw2LjUgQzExLDguOTkgOC45OSwxMSA2LjUsMTEgWiIgaWQ9InBhdGgtMSI+PC9wYXRoPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IlN5bWJvbHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJEZXNpZ25OYXYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMzgyLjAwMDAwMCwgLTgxLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0iSWNvbi0vLVNlYXJjaCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTM4Mi4wMDAwMDAsIDgxLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPG1hc2sgaWQ9Im1hc2stMiIgZmlsbD0id2hpdGUiPgogICAgICAgICAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+CiAgICAgICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgICAgICA8dXNlIGlkPSJJY29uLWNvbG9yIiBmaWxsPSIjQTcxRjM0IiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  -webkit-transition: border .6s;
  -o-transition: border .6s;
  transition: border .6s;
}

/* line 488, resources/assets/styles/template-parts/_header.scss */

.header .brand .right .search-toggle:hover:before {
  border: 3px solid #A71F34;
}

/* line 491, resources/assets/styles/template-parts/_header.scss */

.header .brand .right .search-toggle:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #A71F34;
  z-index: 5;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  -webkit-transition-delay: .2s;
       -o-transition-delay: .2s;
          transition-delay: .2s;
}

/* line 503, resources/assets/styles/template-parts/_header.scss */

.header .brand .right .search-toggle span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 511, resources/assets/styles/template-parts/_header.scss */

.header .brand .right .search-toggle.active:before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTQgMTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiBjb2xvcjwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cG9seWdvbiBpZD0icGF0aC0xIiBwb2ludHM9IjEzOTkgODQuNDEgMTM5Ny41OSA4MyAxMzkyIDg4LjU5IDEzODYuNDEgODMgMTM4NSA4NC40MSAxMzkwLjU5IDkwIDEzODUgOTUuNTkgMTM4Ni40MSA5NyAxMzkyIDkxLjQxIDEzOTcuNTkgOTcgMTM5OSA5NS41OSAxMzkzLjQxIDkwIj48L3BvbHlnb24+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iQWx0ZXJuYXRlcy0mYW1wOy1Ib3ZlcnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJTZWFyY2gtRHJvcGRvd24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMzg1LjAwMDAwMCwgLTgzLjAwMDAwMCkiPgogICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgIDx1c2UgaWQ9Ikljb24tY29sb3IiIGZpbGw9IiNGRUZFRkUiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 514, resources/assets/styles/template-parts/_header.scss */

.header .brand .right .search-toggle.active:after {
  height: 100%;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

/* line 524, resources/assets/styles/template-parts/_header.scss */

.search-dd {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 89;
  width: 100%;
  height: auto;
  padding: 15px 0 25px;
  background: #A71F34;
  opacity: 0;
  -webkit-transform: translate3d(0, -200px, 0);
          transform: translate3d(0, -200px, 0);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: -o-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s, -o-transform .3s;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 524, resources/assets/styles/template-parts/_header.scss */

  .search-dd {
    top: 70px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 524, resources/assets/styles/template-parts/_header.scss */

  .search-dd {
    padding: 15px 20px 25px 20px;
  }
}

/* line 544, resources/assets/styles/template-parts/_header.scss */

.search-dd.show-search {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: .3s;
       -o-transition-delay: .3s;
          transition-delay: .3s;
}

/* line 549, resources/assets/styles/template-parts/_header.scss */

.search-dd .col-xs-6 {
  text-align: left;
}

/* line 552, resources/assets/styles/template-parts/_header.scss */

.search-dd .col-xs-6 label {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #FEFEFE;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

/* line 560, resources/assets/styles/template-parts/_header.scss */

.search-dd .col-xs-6 .cnt {
  position: relative;
}

/* line 563, resources/assets/styles/template-parts/_header.scss */

.search-dd .col-xs-6 input[type="submit"] {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 43px;
  height: 37px;
  z-index: 9;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTdweCIgaGVpZ2h0PSIxN3B4IiB2aWV3Qm94PSIwIDAgMTcgMTciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiBjb2xvcjwvdGl0bGU+CiAgICA8ZyBpZD0iQWx0ZXJuYXRlcy0mYW1wOy1Ib3ZlcnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJTZWFyY2gtRHJvcGRvd24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDM1LjAwMDAwMCwgLTIwMi4wMDAwMDApIiBmaWxsPSIjRkZGRkZGIj4KICAgICAgICAgICAgPHBhdGggZD0iTTEwNDcuMTQ5OCwyMTIuNjkxODI0IEwxMDQ2LjM4MTkzLDIxMi42OTE4MjQgTDEwNDYuMTA5NzgsMjEyLjQyOTM4OCBDMTA0Ny4wNjIzMiwyMTEuMzIxMzI2IDEwNDcuNjM1NzksMjA5Ljg4Mjc5IDEwNDcuNjM1NzksMjA4LjMxNzg5NiBDMTA0Ny42MzU3OSwyMDQuODI4NDczIDEwNDQuODA3MzIsMjAyIDEwNDEuMzE3OSwyMDIgQzEwMzcuODI4NDcsMjAyIDEwMzUsMjA0LjgyODQ3MyAxMDM1LDIwOC4zMTc4OTYgQzEwMzUsMjExLjgwNzMxOCAxMDM3LjgyODQ3LDIxNC42MzU3OTIgMTA0MS4zMTc5LDIxNC42MzU3OTIgQzEwNDIuODgyNzksMjE0LjYzNTc5MiAxMDQ0LjMyMTMzLDIxNC4wNjIzMjEgMTA0NS40MjkzOSwyMTMuMTA5Nzc3IEwxMDQ1LjY5MTgyLDIxMy4zODE5MzMgTDEwNDUuNjkxODIsMjE0LjE0OTggTDEwNTAuNTUxNzQsMjE5IEwxMDUyLDIxNy41NTE3NDQgTDEwNDcuMTQ5OCwyMTIuNjkxODI0IFogTTEwNDEuMzE3OSwyMTIuNjkxODI0IEMxMDM4Ljg5NzY2LDIxMi42OTE4MjQgMTAzNi45NDM5NywyMTAuNzM4MTM2IDEwMzYuOTQzOTcsMjA4LjMxNzg5NiBDMTAzNi45NDM5NywyMDUuODk3NjU2IDEwMzguODk3NjYsMjAzLjk0Mzk2OCAxMDQxLjMxNzksMjAzLjk0Mzk2OCBDMTA0My43MzgxNCwyMDMuOTQzOTY4IDEwNDUuNjkxODIsMjA1Ljg5NzY1NiAxMDQ1LjY5MTgyLDIwOC4zMTc4OTYgQzEwNDUuNjkxODIsMjEwLjczODEzNiAxMDQzLjczODE0LDIxMi42OTE4MjQgMTA0MS4zMTc5LDIxMi42OTE4MjQgWiIgaWQ9Ikljb24tY29sb3IiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) #A71F34 50% no-repeat;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 583, resources/assets/styles/template-parts/_header.scss */

.page-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh + 200px);
  background: rgba(23,38,66,0.9);
  z-index: 85;
  -webkit-transform: translate3d(0, calc(-100vh - 200px), 0);
          transform: translate3d(0, calc(-100vh - 200px), 0);
  -webkit-transition: -webkit-transform .6s;
  transition: -webkit-transform .6s;
  -o-transition: -o-transform .6s;
  transition: transform .6s;
  transition: transform .6s, -webkit-transform .6s, -o-transform .6s;
}

/* line 595, resources/assets/styles/template-parts/_header.scss */

.page-overlay.show-overlay {
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* line 601, resources/assets/styles/template-parts/_header.scss */

.mobile-announcement-bar {
  display: none;
  -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;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  height: auto;
  max-height: 85vh;
  background: #172642;
  border: 1px solid #fff;
  padding: 10px 20px;
  z-index: 999;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 640px;
  padding: 40px;
}

/* line 620, resources/assets/styles/template-parts/_header.scss */

.mobile-announcement-bar.hidden {
  display: none !important;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 601, resources/assets/styles/template-parts/_header.scss */

  .mobile-announcement-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 627, resources/assets/styles/template-parts/_header.scss */

.mobile-announcement-bar .copy {
  font-family: "Roboto-Bold";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #FEFEFE;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 627, resources/assets/styles/template-parts/_header.scss */

  .mobile-announcement-bar .copy {
    padding: 0 25px;
    width: 100%;
  }
}

/* line 639, resources/assets/styles/template-parts/_header.scss */

.mobile-announcement-bar .copy p {
  display: block;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  color: #FEFEFE;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  overflow: hidden;
  max-width: 100%;
}

/* line 651, resources/assets/styles/template-parts/_header.scss */

.mobile-announcement-bar .copy p a img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100px;
}

/* line 660, resources/assets/styles/template-parts/_header.scss */

.mobile-announcement-bar .close {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 14px;
  height: 14px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTQgMTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiBjb2xvcjwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cG9seWdvbiBpZD0icGF0aC0xIiBwb2ludHM9IjEzOTkgODQuNDEgMTM5Ny41OSA4MyAxMzkyIDg4LjU5IDEzODYuNDEgODMgMTM4NSA4NC40MSAxMzkwLjU5IDkwIDEzODUgOTUuNTkgMTM4Ni40MSA5NyAxMzkyIDkxLjQxIDEzOTcuNTkgOTcgMTM5OSA5NS41OSAxMzkzLjQxIDkwIj48L3BvbHlnb24+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iQWx0ZXJuYXRlcy0mYW1wOy1Ib3ZlcnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJTZWFyY2gtRHJvcGRvd24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMzg1LjAwMDAwMCwgLTgzLjAwMDAwMCkiPgogICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgIDx1c2UgaWQ9Ikljb24tY29sb3IiIGZpbGw9IiNGRUZFRkUiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  background-size: 100% !important;
}

/* line 669, resources/assets/styles/template-parts/_header.scss */

.mobile-announcement-bar .close span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 677, resources/assets/styles/template-parts/_header.scss */

.header .brand .right a.tablet {
  display: none;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 682, resources/assets/styles/template-parts/_header.scss */

  .header .utility,
  .header .brand nav,
  .header .brand .right a:first-child {
    display: none;
  }

  /* line 687, resources/assets/styles/template-parts/_header.scss */

  .header .brand .right a.tablet {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 25px;
  }

  /* line 691, resources/assets/styles/template-parts/_header.scss */

  .header .brand .hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 697, resources/assets/styles/template-parts/_header.scss */

  .header .brand .right a.tablet {
    display: none;
  }
}

/* line 702, resources/assets/styles/template-parts/_header.scss */

.header.show-announcement .announcement-bar {
  max-height: none;
}

/* line 706, resources/assets/styles/template-parts/_header.scss */

.header.show-announcement .announcement-bar p {
  height: auto;
  white-space: normal;
}

/* line 711, resources/assets/styles/template-parts/_header.scss */

.mobile-announcement-bar .aligncenter,
.header.show-announcement .announcement-bar img {
  max-height: 70px;
  margin-top: 5px;
  width: auto;
}

/* line 718, resources/assets/styles/template-parts/_header.scss */

.header .announcement-bar .close {
  top: 5px;
  right: -15px;
}

/* line 13, resources/assets/styles/template-parts/_nav.scss */

.mega-menu {
  display: none;
  position: absolute;
  top: 99px;
  left: -50px;
  z-index: 95;
  height: auto;
  -webkit-transform-origin: top left;
       -o-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: scale(0);
       -o-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity .2s ease-out;
  -o-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

/* line 24, resources/assets/styles/template-parts/_nav.scss */

.mega-menu:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background-image: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: linear-gradient(0deg, #172642 0%, #cb9701 100%);
}

/* line 34, resources/assets/styles/template-parts/_nav.scss */

.mega-menu .cnt {
  position: relative;
  margin: 4px;
  z-index: 5;
}

/* line 39, resources/assets/styles/template-parts/_nav.scss */

.mega-menu .cnt:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  background: #172642;
}

/* line 50, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu {
  width: 100%;
  min-width: 1080px;
}

/* line 54, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .cnt {
  padding: 25px;
}

/* line 57, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .title {
  position: relative;
  z-index: 9;
  font-family: "Roboto-Black";
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #FEFEFE;
  letter-spacing: 0;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  border-bottom: 1px solid rgba(234,236,239,0.2);
}

/* line 68, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .row {
  margin-top: 35px;
}

/* line 71, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .row:first-child {
  margin-top: 0;
}

/* line 75, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .cnt ul {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  list-style: none;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0;
  margin: 0 0 10px 0;
  width: 100%;
  position: relative;
  z-index: 9;
}

/* line 87, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .cnt ul>li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 25px;
}

/* line 91, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .cnt ul>li.label {
  font-family: "Roboto-Bold";
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 32px;
  line-height: 2rem;
  color: #FEFEFE;
  letter-spacing: 0;
  min-width: 60px;
  margin: 0 25px 0 0;
  padding: 0;
}

/* line 100, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .cnt ul>li>a {
  display: block;
  position: relative;
  width: 100%;
  font-family: "RobotoCondensed-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 32px;
  line-height: 2rem;
  color: #FEFEFE;
  letter-spacing: 1.78px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

/* line 112, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .cnt ul>li>a:after {
  position: absolute;
  content: '';
  top: 0;
  left: -5px;
  right: -5px;
  bottom: 0;
  background: rgba(255,255,255,0.04);
  opacity: 0;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 123, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .cnt ul>li>a:hover:after {
  opacity: 1;
}

/* line 128, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .cnt ul .list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 5px;
  margin: 0;
}

/* line 134, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.full-menu .cnt ul .list ul {
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* line 141, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.auto-menu {
  width: auto;
  min-width: 450px;
}

/* line 145, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.auto-menu .cnt {
  padding: 10px 25px 25px 25px;
}

/* line 148, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.auto-menu .cnt>ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 9;
}

/* line 155, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.auto-menu .cnt>ul>li {
  display: block;
  border-bottom: 1px solid rgba(234,236,239,0.2);
}

/* line 159, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.auto-menu .cnt>ul>li:last-child {
  border-bottom: none;
}

/* line 162, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.auto-menu .cnt>ul>li>a {
  display: block;
  width: 100%;
  font-family: "Roboto-Black";
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 48px;
  line-height: 3rem;
  color: #FEFEFE;
  letter-spacing: 0;
  text-decoration: none;
}

/* line 171, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.auto-menu .cnt>ul>li>ul {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
}

/* line 178, resources/assets/styles/template-parts/_nav.scss */

.mega-menu.auto-menu .cnt>ul>li>ul>li>a {
  display: block;
  width: 100%;
  font-family: "RobotoCondensed-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 32px;
  line-height: 2rem;
  color: #FEFEFE;
  letter-spacing: 1.78px;
  text-transform: uppercase;
  text-decoration: none;
}

/* line 195, resources/assets/styles/template-parts/_nav.scss */

.offsite>a {
  position: relative;
  padding-right: 25px;
}

/* line 199, resources/assets/styles/template-parts/_nav.scss */

.offsite>a:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTJweCIgaGVpZ2h0PSIxMnB4IiB2aWV3Qm94PSIwIDAgMTIgMTIiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U2hhcGU8L3RpdGxlPgogICAgPGcgaWQ9IkFsdGVybmF0ZXMtJmFtcDstSG92ZXJzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iQWJvdXQtRHJvcGRvd24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMTQxLjAwMDAwMCwgLTM1Ny4wMDAwMDApIiBmaWxsPSIjRkVGRUZFIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMTE0NywzNTcgTDExNDcsMzU4LjIgTDExNDIuMiwzNTguMiBMMTE0Mi4yLDM2Ny44IEwxMTUxLjgsMzY3LjggTDExNTEuOCwzNjMgTDExNTMsMzYzIEwxMTUzLDM2OSBMMTE0MSwzNjkgTDExNDEsMzU3IEwxMTQ3LDM1NyBaIE0xMTUzLDM1NyBMMTE1MywzNjEuNDQ4ODM4IEwxMTUxLjM5ODQyLDM1OS44NDcyNTcgTDExNDguMjQ1NjcsMzYzIEwxMTQ3LDM2MS43NTQzMjUgTDExNTAuMTUyNzQsMzU4LjYwMTU4MiBMMTE0OC41NTExNiwzNTcgTDExNTMsMzU3IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  background-size: 100% !important;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 212, resources/assets/styles/template-parts/_nav.scss */

.header .brand nav ul li.has-mega a.tabbed:before {
  position: absolute;
  content: '';
  left: 50%;
  width: 7px;
  height: 14px;
  z-index: 99;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjQTcxRjM0IiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  -webkit-transform: rotate(90deg) translate(-50%, 0);
       -o-transform: rotate(90deg) translate(-50%, 0);
          transform: rotate(90deg) translate(-50%, 0);
  -webkit-transform-origin: 0 50%;
       -o-transform-origin: 0 50%;
          transform-origin: 0 50%;
  bottom: 10px;
}

/* line 225, resources/assets/styles/template-parts/_nav.scss */

.header .brand nav ul li a.active-link.tabbed:before {
  display: none !important;
}

/* line 229, resources/assets/styles/template-parts/_nav.scss */

.header .brand nav ul li .mega-menu.open {
  display: block;
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

/* line 234, resources/assets/styles/template-parts/_nav.scss */

.header .brand nav ul li:hover .mega-menu {
  display: block;
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

/* line 241, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #EAECEF;
  -webkit-transform: translate3d(-200vw, 0, 0);
          transform: translate3d(-200vw, 0, 0);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 252, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer.open {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 241, resources/assets/styles/template-parts/_nav.scss */

  #slide-drawer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 258, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .overflow {
  display: block;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* line 266, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .overflow::-webkit-scrollbar {
  width: 5px;
}

/* line 269, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .overflow::-webkit-scrollbar-track {
  background: transparent;
}

/* line 272, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .overflow::-webkit-scrollbar-thumb {
  background: #A71F34;
}

/* line 276, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 281, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .top {
  position: relative;
  background: #172642;
  padding: 10px 20px 40px 20px;
}

/* line 286, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .top:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  opacity: 0.6;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

/* line 297, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .top:after {
  position: absolute;
  content: '';
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  opacity: 0.4;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

/* line 308, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .top li {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid rgba(234,236,239,0.2);
}

/* line 315, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .top li.parent>a {
  padding: 0 35px 0 0;
}

/* line 318, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .top li.parent>a:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  width: 5px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
  -webkit-transform: translate(0, -50%) rotate(0deg);
       -o-transform: translate(0, -50%) rotate(0deg);
          transform: translate(0, -50%) rotate(0deg);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 329, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .top li.parent>a.open:after {
  -webkit-transform: translate(0, -50%) rotate(90deg);
       -o-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}

/* line 333, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .top li>a {
  display: inline-block;
  width: 100%;
  position: relative;
  font-family: "RobotoCondensed-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

/* line 344, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .top li ul {
  display: none;
  padding-left: 20px;
}

/* line 348, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .top li ul li {
  border-bottom: none;
  padding: 5px 0;
}

/* line 352, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .top li ul li a {
  display: inline-block;
  width: 100%;
  position: relative;
  font-family: "RobotoCondensed-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

/* line 367, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom {
  padding: 0 20px 250px 20px;
}

/* line 370, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom .offset {
  margin-top: -25px;
  text-align: center;
  z-index: 9;
  padding: 0;
}

/* line 376, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom .offset a {
  font-family: "RobotoCondensed-Bold";
  width: auto;
  color: #fff;
  padding: 12px 25px;
}

/* line 383, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom p {
  font-family: "RobotoCondensed-Bold";
  margin: 25px 0 0 0;
}

/* line 387, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom nav:first-child li:first-child {
  border-bottom: none;
}

/* line 390, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom li {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23,38,66,0.1);
}

/* line 395, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom li a {
  display: inline-block;
  width: 100%;
  position: relative;
  font-family: "RobotoCondensed-Regular";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #181B22;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

/* line 407, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom .social {
  list-style: none;
  padding: 0;
  margin: 0 -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 9;
}

/* line 419, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom .social li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 54px;
  min-width: 54px;
  height: 54px;
  -ms-flex-preferred-size: 54px;
      flex-basis: 54px;
  max-width: 54px;
  margin: 10px;
  padding: 0;
  border: 4px solid #A71F34;
  border-radius: 100%;
  background: #172642;
}

/* line 433, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom .social li:before {
  position: absolute;
  content: '';
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 100%;
  border: 2px solid #fff;
  z-index: 2;
}

/* line 444, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom .social li a {
  display: block;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}

/* line 451, resources/assets/styles/template-parts/_nav.scss */

#slide-drawer .bottom .social li img,
#slide-drawer .bottom .social li svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}

/* line 13, resources/assets/styles/template-parts/_footer.scss */

footer {
  position: relative;
  z-index: 98;
  padding-top: 50px;
}

/* line 18, resources/assets/styles/template-parts/_footer.scss */

footer:before {
  position: absolute;
  content: '';
  top: -25px;
  left: -2px;
  width: calc(100% + 4px);
  height: 150px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZTwvdGl0bGU+CiAgICA8ZyBpZD0iRGVzaWducyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTAsMzUuNzIzMzIyMyBDMzc5LjcyNSw2My43OTcyOTM4IDEwNDUuNjQxNjcsLTE5LjM5MTY4NjkgMTQ2NCw0LjMwMjY3MzcgQzE0NjQsNC4zMDI2NzM3IDE0NjQsNTIuODY4NDQ5MSAxNDY0LDE1MCBMMCwxNTAgQzAsNzMuMzI4NDI4MSAwLDM1LjIzNjIwMjIgMCwzNS43MjMzMjIzIFoiIGlkPSJXYXZlIiBmaWxsPSIjRUFFQ0VGIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==) 0 0 no-repeat;
  background-size: 100% !important;
  z-index: 2;
}

/* line 29, resources/assets/styles/template-parts/_footer.scss */

footer .cnt-outside {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  z-index: 7;
  padding-top: 25px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 29, resources/assets/styles/template-parts/_footer.scss */

  footer .cnt-outside {
    padding-top: 20px;
    background: #172642;
  }
}

/* line 41, resources/assets/styles/template-parts/_footer.scss */

footer .cnt-outside:before {
  position: absolute;
  content: '';
  top: -50px;
  left: -2px;
  width: calc(100% + 4px);
  height: 150px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZTwvdGl0bGU+CiAgICA8ZyBpZD0iRGVzaWducyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTAsMzUuNzIzMzIyMyBDMzc5LjcyNSw2My43OTcyOTM4IDEwNDUuNjQxNjcsLTE5LjM5MTY4NjkgMTQ2NCw0LjMwMjY3MzcgQzE0NjQsNC4zMDI2NzM3IDE0NjQsNTIuODY4NDQ5MSAxNDY0LDE1MCBMMCwxNTAgQzAsNzMuMzI4NDI4MSAwLDM1LjIzNjIwMjIgMCwzNS43MjMzMjIzIFoiIGlkPSJXYXZlIiBmaWxsPSIjQTcxRjM0Ij48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==) 0 0 no-repeat;
  background-size: 100% !important;
  z-index: 2;
}

/* line 53, resources/assets/styles/template-parts/_footer.scss */

footer .cnt-inside {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 0 0 0;
  z-index: 8;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 53, resources/assets/styles/template-parts/_footer.scss */

  footer .cnt-inside {
    padding: 0;
  }
}

/* line 63, resources/assets/styles/template-parts/_footer.scss */

footer .cnt-inside:before {
  position: absolute;
  content: '';
  top: -50px;
  left: -2px;
  width: calc(100% + 4px);
  height: 150px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZTwvdGl0bGU+CiAgICA8ZyBpZD0iRGVzaWducyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTAsMzUuNzIzMzIyMyBDMzc5LjcyNSw2My43OTcyOTM4IDEwNDUuNjQxNjcsLTE5LjM5MTY4NjkgMTQ2NCw0LjMwMjY3MzcgQzE0NjQsNC4zMDI2NzM3IDE0NjQsNTIuODY4NDQ5MSAxNDY0LDE1MCBMMCwxNTAgQzAsNzMuMzI4NDI4MSAwLDM1LjIzNjIwMjIgMCwzNS43MjMzMjIzIFoiIGlkPSJXYXZlIiBmaWxsPSIjMTcyNjQyIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==) 0 0 no-repeat;
  background-size: 100% !important;
  z-index: 2;
}

/* line 75, resources/assets/styles/template-parts/_footer.scss */

footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 9;
  background: #172642;
  padding: 0 120px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 75, resources/assets/styles/template-parts/_footer.scss */

  footer .wrapper {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 75, resources/assets/styles/template-parts/_footer.scss */

  footer .wrapper {
    padding: 0 20px;
  }
}

/* line 90, resources/assets/styles/template-parts/_footer.scss */

footer .wrapper:after {
  position: absolute;
  content: '';
  bottom: 30px;
  left: 0;
  width: 100%;
  height: 258px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA0PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iQXRobGV0ZXMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zOC4wMDAwMDAsIC0yMjYuMDAwMDAwKSIgc3Ryb2tlPSIjRTRFOUYxIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE2NCwyMjcuNDMxMTc0IEwxOTQuMDEyOTc5LDMxNi42OTA2NzggTDI4OC4xNzgzMzIsMzE3LjY1MjAxNCBMMjEyLjU2MjAyLDM3My43Nzg3NTcgTDI0MC43NDY0Myw0NjMuNjMyMzk5IEwxNjQsNDA5LjA2MTEzIEw4Ny4yNTM1Njk5LDQ2My42MzIzOTkgTDExNS40Mzc5OCwzNzMuNzc4NzU3IEwzOS44MjE2Njc2LDMxNy42NTIwMTQgTDEzMy45ODcwMjEsMzE2LjY5MDY3OCBMMTY0LDIyNy40MzExNzQgWiIgaWQ9IlN0YXItQ29weS00Ij48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% space;
  z-index: 6;
  opacity: .1;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 90, resources/assets/styles/template-parts/_footer.scss */

  footer .wrapper:after {
    height: 158px;
    background-size: auto 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 90, resources/assets/styles/template-parts/_footer.scss */

  footer .wrapper:after {
    height: 60px;
    bottom: 0;
  }
}

/* line 111, resources/assets/styles/template-parts/_footer.scss */

footer .brand {
  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: relative;
  z-index: 9;
  padding: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 111, resources/assets/styles/template-parts/_footer.scss */

  footer .brand {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* line 125, resources/assets/styles/template-parts/_footer.scss */

footer .logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 300px;
  height: 67px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 125, resources/assets/styles/template-parts/_footer.scss */

  footer .logo {
    width: 200px;
    height: 45px;
  }

  /* line 134, resources/assets/styles/template-parts/_footer.scss */

  footer .logo img,
  footer .logo svg {
    width: 200px;
    height: 45px;
  }
}

/* line 140, resources/assets/styles/template-parts/_footer.scss */

footer .logo span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 125, resources/assets/styles/template-parts/_footer.scss */

  footer .logo {
    margin-bottom: 55px;
  }
}

/* line 150, resources/assets/styles/template-parts/_footer.scss */

footer .social {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 158, resources/assets/styles/template-parts/_footer.scss */

footer .social li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin: 0 5px;
}

/* line 163, resources/assets/styles/template-parts/_footer.scss */

footer .social li a {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 32px;
  padding: 23px;
  border-radius: 100%;
  border: 3px solid transparent;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 163, resources/assets/styles/template-parts/_footer.scss */

  footer .social li a {
    padding: 15px;
  }
}

/* line 176, resources/assets/styles/template-parts/_footer.scss */

footer .social li a:hover {
  border: 3px solid #fff;
}

/* line 179, resources/assets/styles/template-parts/_footer.scss */

footer .social li a span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 186, resources/assets/styles/template-parts/_footer.scss */

footer .social li a svg,
footer .social li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 195, resources/assets/styles/template-parts/_footer.scss */

footer .footer-nav {
  position: relative;
  z-index: 7;
  padding: 60px 0 150px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 195, resources/assets/styles/template-parts/_footer.scss */

  footer .footer-nav {
    padding: 60px 0;
  }
}

/* line 203, resources/assets/styles/template-parts/_footer.scss */

footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 208, resources/assets/styles/template-parts/_footer.scss */

footer .footer-nav ul li {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 208, resources/assets/styles/template-parts/_footer.scss */

  footer .footer-nav ul li {
    text-align: center;
  }
}

/* line 215, resources/assets/styles/template-parts/_footer.scss */

footer .footer-nav ul li a {
  font-family: "RobotoCondensed-Bold";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
}

/* line 222, resources/assets/styles/template-parts/_footer.scss */

footer .footer-nav ul li a:hover {
  text-decoration: underline;
}

/* line 229, resources/assets/styles/template-parts/_footer.scss */

footer .legal {
  position: relative;
  z-index: 91;
  padding: 10px 0;
  border-top: 1px solid rgba(199,201,199,0.2);
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 229, resources/assets/styles/template-parts/_footer.scss */

  footer .legal {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 229, resources/assets/styles/template-parts/_footer.scss */

  footer .legal {
    margin-bottom: 75px;
  }
}

/* line 241, resources/assets/styles/template-parts/_footer.scss */

footer .legal ul {
  list-style: none;
  padding: 0;
  margin: 0 -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 241, resources/assets/styles/template-parts/_footer.scss */

  footer .legal ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* line 253, resources/assets/styles/template-parts/_footer.scss */

footer .legal ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 10px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 253, resources/assets/styles/template-parts/_footer.scss */

  footer .legal ul li {
    margin: 0 10px 10px 10px;
  }
}

/* line 260, resources/assets/styles/template-parts/_footer.scss */

footer .legal ul li a {
  font-family: "Roboto-Thin";
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
}

/* line 268, resources/assets/styles/template-parts/_footer.scss */

footer .legal ul li a:hover {
  text-decoration: underline;
}

/* line 274, resources/assets/styles/template-parts/_footer.scss */

footer .legal p {
  font-family: "Roboto-Thin";
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 0;
  margin: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 274, resources/assets/styles/template-parts/_footer.scss */

  footer .legal p {
    margin-top: 50px;
  }
}

/* line 13, resources/assets/styles/template-parts/_layouts.scss */

main {
  position: relative;
  z-index: 91;
}

/* line 17, resources/assets/styles/template-parts/_layouts.scss */

main.top-level {
  z-index: 992;
}

/* line 22, resources/assets/styles/template-parts/_layouts.scss */

main section {
  padding: 75px 120px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 22, resources/assets/styles/template-parts/_layouts.scss */

  main section {
    padding: 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 22, resources/assets/styles/template-parts/_layouts.scss */

  main section {
    padding: 50px 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 22, resources/assets/styles/template-parts/_layouts.scss */

  main section {
    padding: 35px 10px;
  }
}

/* line 36, resources/assets/styles/template-parts/_layouts.scss */

main .full-section {
  padding: 75px 0;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 36, resources/assets/styles/template-parts/_layouts.scss */

  main .full-section {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 36, resources/assets/styles/template-parts/_layouts.scss */

  main .full-section {
    padding: 35px 0;
  }
}

/* line 47, resources/assets/styles/template-parts/_layouts.scss */

main .no-top-pad {
  padding-top: 0;
}

/* line 51, resources/assets/styles/template-parts/_layouts.scss */

main .no-bottom-pad {
  padding-bottom: 0;
}

/* line 57, resources/assets/styles/template-parts/_layouts.scss */

main .flex-page {
  margin-top: 45px;
}

/* line 60, resources/assets/styles/template-parts/_layouts.scss */

main .flex-page .col-xs-9 {
  text-align: left;
}

/* line 65, resources/assets/styles/template-parts/_layouts.scss */

main .flex-page .blue-section:last-child:after {
  position: absolute;
  content: '';
  bottom: -125px;
  left: 0;
  width: 100%;
  height: 125px;
  background: #172642;
  z-index: 1;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 82, resources/assets/styles/template-parts/_layouts.scss */

  main .flex-section .col-xs-9,
  main .flex-section .col-xs-10 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 88, resources/assets/styles/template-parts/_layouts.scss */

main .flex-section ul {
  overflow: hidden;
  padding-left: 40px;
}

/* line 92, resources/assets/styles/template-parts/_layouts.scss */

main .flex-section hr {
  bottom: -65px;
}

/* line 97, resources/assets/styles/template-parts/_layouts.scss */

main .flex-section.no-hrule hr {
  display: none;
}

/* line 101, resources/assets/styles/template-parts/_layouts.scss */

main .flex-section .btns-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 111, resources/assets/styles/template-parts/_layouts.scss */

  main .basic-section .col-xs-9 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 120, resources/assets/styles/template-parts/_layouts.scss */

main .team-section-header .col-xs-9 {
  text-align: left;
}

/* line 125, resources/assets/styles/template-parts/_layouts.scss */

main .story-flex-section {
  padding: 25px 120px;
}

/* line 130, resources/assets/styles/template-parts/_layouts.scss */

main .story-flex-section.no-hrule hr {
  display: none;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 125, resources/assets/styles/template-parts/_layouts.scss */

  main .story-flex-section {
    padding: 25px 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 125, resources/assets/styles/template-parts/_layouts.scss */

  main .story-flex-section {
    padding: 25px 20px;
  }

  /* line 140, resources/assets/styles/template-parts/_layouts.scss */

  main .story-flex-section .col-xs-9 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 125, resources/assets/styles/template-parts/_layouts.scss */

  main .story-flex-section {
    padding: 25px 10px;
  }
}

/* line 152, resources/assets/styles/template-parts/_layouts.scss */

main .blue-section {
  background: #172642;
}

/* line 155, resources/assets/styles/template-parts/_layouts.scss */

main .blue-section hr {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iRmxleC1UZW1wbGF0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMzMy4wMDAwMDAsIC02ODA4LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iIzE3MjY0MiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0zNDMsNjgwOS40MzExNyBMMzQ0Ljk2OTY1OCw2ODE1LjI4OSBMMzUxLjE0OTQzNyw2ODE1LjM1MjA5IEwzNDYuMTg2OTc0LDY4MTkuMDM1NTEgTDM0OC4wMzY2MjksNjgyNC45MzIzMyBMMzQzLDY4MjEuMzUwOTggTDMzNy45NjMzNzEsNjgyNC45MzIzMyBMMzM5LjgxMzAyNiw2ODE5LjAzNTUxIEwzMzQuODUwNTYzLDY4MTUuMzUyMDkgTDM0MS4wMzAzNDIsNjgxNS4yODkgTDM0Myw2ODA5LjQzMTE3IFoiIGlkPSJTdGFyLUNvcHkiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) 50% 0 no-repeat;
}

/* line 160, resources/assets/styles/template-parts/_layouts.scss */

main .blue-section.at-footer:after {
  position: absolute;
  content: '';
  bottom: -125px;
  left: 0;
  width: 100%;
  height: 125px;
  background: #172642;
  z-index: 1;
}

/* line 174, resources/assets/styles/template-parts/_layouts.scss */

main .timeline-section {
  position: relative;
}

/* line 177, resources/assets/styles/template-parts/_layouts.scss */

main .timeline-section:after {
  position: absolute;
  content: '';
  bottom: -120px;
  left: 0;
  width: 100%;
  height: 325px;
  background: #172642;
  z-index: 1;
}

/* line 191, resources/assets/styles/template-parts/_layouts.scss */

main .grey-section {
  position: relative;
  background: #EAECEF;
}

/* line 195, resources/assets/styles/template-parts/_layouts.scss */

main .grey-section.offset-bottom {
  background: transparent;
}

/* line 198, resources/assets/styles/template-parts/_layouts.scss */

main .grey-section.offset-bottom:after {
  position: absolute;
  content: '';
  bottom: 225px;
  top: 0;
  left: 0;
  right: 0;
  background: #EAECEF;
  z-index: 1;
}

/* line 208, resources/assets/styles/template-parts/_layouts.scss */

main .grey-section.offset-bottom .max-content-width {
  position: relative;
  z-index: 9;
}

/* line 215, resources/assets/styles/template-parts/_layouts.scss */

main .grey-section.at-footer:after {
  position: absolute;
  content: '';
  bottom: -125px;
  left: 0;
  width: 100%;
  height: 125px;
  background: #EAECEF;
  z-index: 1;
}

/* line 228, resources/assets/styles/template-parts/_layouts.scss */

main .wave-section.offset-bottom-section {
  padding-bottom: 175px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 228, resources/assets/styles/template-parts/_layouts.scss */

  main .wave-section.offset-bottom-section {
    padding-bottom: 0;
  }
}

/* line 238, resources/assets/styles/template-parts/_layouts.scss */

main .wave-section+.grey-section:before {
  position: absolute;
  content: '';
  top: -150px;
  left: 0;
  width: 100%;
  height: 150px;
  background: #EAECEF;
  z-index: 1;
}

/* line 251, resources/assets/styles/template-parts/_layouts.scss */

main .figure-section {
  padding: 75px 120px 150px 120px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 251, resources/assets/styles/template-parts/_layouts.scss */

  main .figure-section {
    padding: 50px 50px 50px 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 251, resources/assets/styles/template-parts/_layouts.scss */

  main .figure-section {
    padding: 50px 20px;
  }

  /* line 260, resources/assets/styles/template-parts/_layouts.scss */

  main .figure-section .col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 251, resources/assets/styles/template-parts/_layouts.scss */

  main .figure-section {
    padding: 50px 10px 50px 10px;
  }
}

/* line 268, resources/assets/styles/template-parts/_layouts.scss */

main .figure-section figure {
  margin-bottom: 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 268, resources/assets/styles/template-parts/_layouts.scss */

  main .figure-section figure {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 268, resources/assets/styles/template-parts/_layouts.scss */

  main .figure-section figure {
    margin-bottom: 50px;
    margin-top: 50px;
  }
}

/* line 279, resources/assets/styles/template-parts/_layouts.scss */

main .figure-section .sponsor-box {
  margin: 0 0 20px 0;
}

/* line 282, resources/assets/styles/template-parts/_layouts.scss */

main .figure-section .inline-video {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  z-index: 9;
}

/* line 290, resources/assets/styles/template-parts/_layouts.scss */

main .figure-section .inline-video .video-holder {
  padding-top: 56.25%;
}

/* line 293, resources/assets/styles/template-parts/_layouts.scss */

main .figure-section .inline-video .video-holder video-js {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

/* line 309, resources/assets/styles/template-parts/_layouts.scss */

main .home-video-section .btns-cnt {
  margin-top: 25px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 315, resources/assets/styles/template-parts/_layouts.scss */

  main .section-compete {
    padding: 75px 50px;
  }

  /* line 320, resources/assets/styles/template-parts/_layouts.scss */

  main .section-compete.related {
    padding: 0 50px 75px 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 315, resources/assets/styles/template-parts/_layouts.scss */

  main .section-compete {
    padding: 75px 20px;
  }

  /* line 327, resources/assets/styles/template-parts/_layouts.scss */

  main .section-compete.related {
    padding: 0 20px 75px 20px;
  }

  /* line 330, resources/assets/styles/template-parts/_layouts.scss */

  main .section-compete .col-xs-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 315, resources/assets/styles/template-parts/_layouts.scss */

  main .section-compete {
    padding: 75px 10px;
  }

  /* line 338, resources/assets/styles/template-parts/_layouts.scss */

  main .section-compete.related {
    padding: 0 10px 75px 10px;
  }

  /* line 341, resources/assets/styles/template-parts/_layouts.scss */

  main .section-compete .col-xs-3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 346, resources/assets/styles/template-parts/_layouts.scss */

main .section-compete .row:first-child {
  margin-bottom: 50px;
}

/* line 349, resources/assets/styles/template-parts/_layouts.scss */

main .section-compete .row img {
  width: 100%;
}

/* line 352, resources/assets/styles/template-parts/_layouts.scss */

main .section-compete .col-xs-3 {
  margin-bottom: 20px;
}

/* line 357, resources/assets/styles/template-parts/_layouts.scss */

main .section-compete .btns-cnt a:first-child {
  margin-right: 20px;
}

/* line 361, resources/assets/styles/template-parts/_layouts.scss */

main .section-compete hr {
  margin-bottom: -100px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 370, resources/assets/styles/template-parts/_layouts.scss */

  main .ceo-section .col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 380, resources/assets/styles/template-parts/_layouts.scss */

main .two-card-section .post .body {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

/* line 383, resources/assets/styles/template-parts/_layouts.scss */

main .two-card-section .col-xs-6 {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 387, resources/assets/styles/template-parts/_layouts.scss */

  main .two-card-section .col-xs-9 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 393, resources/assets/styles/template-parts/_layouts.scss */

  main .two-card-section .col-xs-6 {
    margin-bottom: 20px;
  }

  /* line 396, resources/assets/styles/template-parts/_layouts.scss */

  main .two-card-section .col-xs-6:last-child {
    margin-bottom: 0;
  }
}

/* line 406, resources/assets/styles/template-parts/_layouts.scss */

main .bio-section .col-xs-12 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}

/* line 415, resources/assets/styles/template-parts/_layouts.scss */

main .board-members-section .col-xs-3 {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1420px) and (min-width: 1px) {
  /* line 419, resources/assets/styles/template-parts/_layouts.scss */

  main .board-members-section .col-xs-3 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
    max-width: 33.333333%;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 425, resources/assets/styles/template-parts/_layouts.scss */

  main .board-members-section .col-xs-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 413, resources/assets/styles/template-parts/_layouts.scss */

  main .board-members-section {
    padding-top: 75px;
  }

  /* line 433, resources/assets/styles/template-parts/_layouts.scss */

  main .board-members-section .col-xs-3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 441, resources/assets/styles/template-parts/_layouts.scss */

main .featured-stories-section {
  position: relative;
  top: -180px;
  margin-bottom: -180px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 447, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section .col-xs-4 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  /* line 452, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section .post {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 455, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section .post .thumb {
    min-width: 120px;
    max-width: 120px;
    height: 120px;
  }

  /* line 460, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section .post .foot {
    display: none;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 441, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section {
    top: -50px;
    margin-bottom: -50px;
  }

  /* line 470, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section .post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 473, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section .title-button a {
    display: none;
  }
}

/* line 477, resources/assets/styles/template-parts/_layouts.scss */

main .featured-stories-section .blue-box {
  margin-bottom: 30px;
}

/* line 480, resources/assets/styles/template-parts/_layouts.scss */

main .featured-stories-section .blue-box .cnt {
  padding: 35px 70px 35px 70px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 480, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section .blue-box .cnt {
    padding: 35px 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 480, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section .blue-box .cnt {
    padding: 35px 20px;
  }

  /* line 489, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section .blue-box .cnt .col-xs-4 {
    margin-bottom: 20px;
  }

  /* line 495, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section .blue-box .cnt .col-xs-4:nth-child(2) .post .thumb,
  main .featured-stories-section .blue-box .cnt .col-xs-4:nth-child(2) .post .foot,
  main .featured-stories-section .blue-box .cnt .col-xs-4:nth-child(3) .post .thumb,
  main .featured-stories-section .blue-box .cnt .col-xs-4:nth-child(3) .post .foot {
    display: none;
  }
}

/* line 502, resources/assets/styles/template-parts/_layouts.scss */

main .featured-stories-section .blue-box .cnt .post {
  z-index: 9;
}

/* line 505, resources/assets/styles/template-parts/_layouts.scss */

main .featured-stories-section .blue-box .cnt .post .thumb {
  top: 0;
  left: 0;
  width: 100%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 505, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-stories-section .blue-box .cnt .post .thumb {
    min-width: 100%;
    max-width: 100%;
    height: 300px;
  }
}

/* line 516, resources/assets/styles/template-parts/_layouts.scss */

main .featured-stories-section .blue-box .cnt .post p {
  color: #1C232C;
}

/* line 525, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section {
  position: relative;
  top: -180px;
  margin-bottom: -180px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 525, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-story-section {
    top: -50px;
    margin-bottom: -50px;
  }
}

/* line 536, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section .blue-box .cnt {
  padding: 25px 75px 125px 75px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 536, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-story-section .blue-box .cnt {
    padding: 25px 50px 125px 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 536, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-story-section .blue-box .cnt {
    padding: 25px 20px 125px 20px;
  }
}

/* line 545, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section .blue-box .cnt .sponsor-box {
  margin-bottom: 45px;
}

/* line 548, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section .blue-box .cnt .photo-bordered {
  z-index: 9;
  margin: 40px 0 40px auto;
}

/* line 552, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section .blue-box .cnt .post {
  z-index: 99;
}

/* line 557, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section .red-box-offset-top {
  position: relative;
  z-index: 9;
  top: -100px;
  margin: 0 70px -75px 70px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 557, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-story-section .red-box-offset-top {
    margin: 0 50px -75px 50px;
  }

  /* line 566, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-story-section .red-box-offset-top .col-xs-4 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 557, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-story-section .red-box-offset-top {
    margin: 0 20px -75px 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 557, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-story-section .red-box-offset-top {
    margin: 0 10px -75px 10px;
  }

  /* line 578, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-story-section .red-box-offset-top .col-xs-4 {
    margin-bottom: 20px;
  }
}

/* line 582, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section .red-box-offset-top ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

/* line 587, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section .red-box-offset-top ul li {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid rgba(23,38,66,0.23);
}

/* line 592, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section .red-box-offset-top ul li:last-child {
  border-bottom: none;
}

/* line 595, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section .red-box-offset-top ul li a {
  display: inline-block;
  width: 100%;
  padding: 15px 0;
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
}

/* line 605, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section .red-box-offset-top ul li a:hover {
  text-decoration: underline;
}

/* line 612, resources/assets/styles/template-parts/_layouts.scss */

main .featured-story-section .featured-event {
  margin: 0 70px;
  width: calc(100% - 140px);
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 612, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-story-section .featured-event {
    margin: 0 50px;
    width: calc(100% - 100px);
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 612, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-story-section .featured-event {
    margin: 0 20px;
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 612, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-story-section .featured-event {
    margin: 0 10px;
    width: calc(100% - 20px);
  }
}

/* line 632, resources/assets/styles/template-parts/_layouts.scss */

main .featured-video-section {
  position: relative;
  top: -180px;
  margin-bottom: -180px;
  padding-bottom: 0;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 632, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-video-section {
    top: -120px;
    margin-bottom: -120px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 632, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-video-section {
    top: 0;
    margin-bottom: 0;
  }
}

/* line 648, resources/assets/styles/template-parts/_layouts.scss */

main .featured-video-section .blue-box .cnt {
  padding: 35px 75px 25px 75px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 648, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-video-section .blue-box .cnt {
    padding: 35px 50px 25px 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 648, resources/assets/styles/template-parts/_layouts.scss */

  main .featured-video-section .blue-box .cnt {
    padding: 35px 20px 25px 20px;
  }
}

/* line 657, resources/assets/styles/template-parts/_layouts.scss */

main .featured-video-section .blue-box .cnt .sponsor-box {
  margin-bottom: 45px;
}

/* line 662, resources/assets/styles/template-parts/_layouts.scss */

main .featured-video-section .featured-video {
  display: block;
  position: relative;
  width: 100%;
  max-width: 580px;
  height: auto;
  z-index: 9;
  margin: 22px 0 22px auto;
  background: -webkit-gradient(linear, left top, right top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: linear-gradient(90deg, #172b59 0%, #c7314d 100%);
}

/* line 672, resources/assets/styles/template-parts/_layouts.scss */

main .featured-video-section .featured-video:after {
  position: absolute;
  content: '';
  top: -11px;
  left: -11px;
  width: calc(100% + 22px);
  height: calc(100% + 22px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 682, resources/assets/styles/template-parts/_layouts.scss */

main .featured-video-section .featured-video a {
  position: absolute !important;
}

/* line 685, resources/assets/styles/template-parts/_layouts.scss */

main .featured-video-section .featured-video .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 6;
  opacity: .6;
}

/* line 702, resources/assets/styles/template-parts/_layouts.scss */

main .hof-featured-video {
  position: relative;
  padding: 0;
  margin: 75px 0;
}

/* line 707, resources/assets/styles/template-parts/_layouts.scss */

main .hof-featured-video:after {
  position: absolute;
  content: '';
  top: 60px;
  bottom: 120px;
  width: 100%;
  height: 450px;
  background: #172642;
  border-top: 2px solid #CB9701;
  z-index: 1;
}

/* line 718, resources/assets/styles/template-parts/_layouts.scss */

main .hof-featured-video .video-bordered {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1000px;
  z-index: 9;
  margin: 0 auto;
  background: #172642;
}

/* line 727, resources/assets/styles/template-parts/_layouts.scss */

main .hof-featured-video .video-bordered:after {
  position: absolute;
  content: '';
  top: -11px;
  left: -11px;
  width: calc(100% + 22px);
  height: calc(100% + 22px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background: linear-gradient(0deg, #172642 0%, #cb9701 100%);
  z-index: 5;
}

/* line 737, resources/assets/styles/template-parts/_layouts.scss */

main .hof-featured-video .video-bordered a {
  position: absolute !important;
}

/* line 740, resources/assets/styles/template-parts/_layouts.scss */

main .hof-featured-video .video-bordered .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 6;
}

/* line 752, resources/assets/styles/template-parts/_layouts.scss */

main .hof-featured-video figcaption {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 0 auto;
}

/* line 762, resources/assets/styles/template-parts/_layouts.scss */

main .contact-section {
  padding: 75px 120px 0 120px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 762, resources/assets/styles/template-parts/_layouts.scss */

  main .contact-section {
    padding: 75px 40px 0 40px;
  }
}

/* line 768, resources/assets/styles/template-parts/_layouts.scss */

main .contact-section .col-xs-6:last-child .contact-info:first-child {
  margin-top: 100px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 772, resources/assets/styles/template-parts/_layouts.scss */

  main .contact-section .col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  /* line 776, resources/assets/styles/template-parts/_layouts.scss */

  main .contact-section .col-xs-6:last-child .contact-info:first-child {
    margin-top: 0;
  }
}

/* line 780, resources/assets/styles/template-parts/_layouts.scss */

main .contact-section .contact-info {
  position: relative;
  z-index: 9;
  margin: 50px 0;
}

/* line 785, resources/assets/styles/template-parts/_layouts.scss */

main .contact-section .contact-info .title {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0;
}

/* line 792, resources/assets/styles/template-parts/_layouts.scss */

main .contact-section .contact-info ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

/* line 797, resources/assets/styles/template-parts/_layouts.scss */

main .contact-section .contact-info ul li {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #1C232C;
  letter-spacing: 0;
}

/* line 808, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section {
  position: relative;
  border-bottom: 14px solid #172642;
}

/* line 812, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section.foundation-officer {
  border-bottom: none;
}

/* line 815, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section.foundation-officer h2 {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  font-family: "Roboto-Black";
  font-size: 48px !important;
  line-height: 64px !important;
  margin: 0 0 20px 0;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 815, resources/assets/styles/template-parts/_layouts.scss */

  main .committee-officer-section.foundation-officer h2 {
    font-size: 30px !important;
    line-height: 36px !important;
  }
}

/* line 832, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section.foundation-officer h3 {
  color: #fff;
  font-family: "Roboto-Bold";
  font-size: 30px;
  line-height: 32px;
}

/* line 838, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section.foundation-officer:after {
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
}

/* line 843, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section:after {
  position: absolute;
  content: '';
  bottom: -42px;
  left: 0;
  width: 100%;
  height: 14px;
  background: #A71F34;
  z-index: 1;
}

/* line 853, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .offset-bottom {
  margin-bottom: -250px;
}

/* line 856, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .blue-box {
  margin-bottom: 20px;
}

/* line 859, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .blue-box .cnt {
  padding: 55px 75px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 859, resources/assets/styles/template-parts/_layouts.scss */

  main .committee-officer-section .blue-box .cnt {
    padding: 35px 20px;
  }
}

/* line 868, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .blue-box h3 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-family: "Roboto-Thin";
}

/* line 874, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .blue-box p {
  margin: 0;
}

/* line 877, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .blue-box .title {
  color: #fff;
  font-family: "Roboto-Bold";
  font-size: 24px;
  line-height: 28px;
  margin: 0;
}

/* line 884, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .blue-box .name {
  color: #fff;
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 24px 0;
}

/* line 890, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .blue-box hr.blue {
  height: 1px;
  opacity: 0.2;
  margin: 48px auto;
  background: #EAECEF;
}

/* line 896, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .blue-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 901, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .blue-box ul li {
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 24px 0;
}

/* line 910, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .committee p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
}

/* line 913, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section .committee p:last-child {
  margin: 0;
}

/* line 920, resources/assets/styles/template-parts/_layouts.scss */

main .committee-officer-section+.quicklinks {
  padding-top: 250px;
}

/* line 925, resources/assets/styles/template-parts/_layouts.scss */

main .awards-list-section {
  position: relative;
}

/* line 928, resources/assets/styles/template-parts/_layouts.scss */

main .awards-list-section .blue-box {
  margin-bottom: 20px;
}

/* line 931, resources/assets/styles/template-parts/_layouts.scss */

main .awards-list-section .blue-box .cnt {
  padding: 55px 75px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 931, resources/assets/styles/template-parts/_layouts.scss */

  main .awards-list-section .blue-box .cnt {
    padding: 35px 20px;
  }
}

/* line 938, resources/assets/styles/template-parts/_layouts.scss */

main .awards-list-section .blue-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 943, resources/assets/styles/template-parts/_layouts.scss */

main .awards-list-section .blue-box ul.pad-top {
  margin-top: 68px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 943, resources/assets/styles/template-parts/_layouts.scss */

  main .awards-list-section .blue-box ul.pad-top {
    margin-top: 20px;
  }
}

/* line 950, resources/assets/styles/template-parts/_layouts.scss */

main .awards-list-section .blue-box ul li {
  margin: 0 0 20px 0;
}

/* line 953, resources/assets/styles/template-parts/_layouts.scss */

main .awards-list-section .blue-box ul li:last-child {
  margin-bottom: 0;
}

/* line 956, resources/assets/styles/template-parts/_layouts.scss */

main .awards-list-section .blue-box ul li a {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
}

/* line 968, resources/assets/styles/template-parts/_layouts.scss */

main .inductees-section .col-xs-4 {
  margin-bottom: 20px;
}

/* line 971, resources/assets/styles/template-parts/_layouts.scss */

main .inductees-section .row:last-child {
  margin-top: 50px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 979, resources/assets/styles/template-parts/_layouts.scss */

  main .quote-section .col-xs-10 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 987, resources/assets/styles/template-parts/_layouts.scss */

main .accordion-section {
  padding: 75px 120px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 987, resources/assets/styles/template-parts/_layouts.scss */

  main .accordion-section {
    padding: 75px 50px 75px 50px;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 987, resources/assets/styles/template-parts/_layouts.scss */

  main .accordion-section {
    padding: 35px 20px 35px 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 987, resources/assets/styles/template-parts/_layouts.scss */

  main .accordion-section {
    padding: 35px 10px 75px 10px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 999, resources/assets/styles/template-parts/_layouts.scss */

  main .accordion-section .col-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 1011, resources/assets/styles/template-parts/_layouts.scss */

main .strategy-section figure {
  margin-top: 125px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1011, resources/assets/styles/template-parts/_layouts.scss */

  main .strategy-section figure {
    margin-bottom: 50px;
  }
}

/* line 1021, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq {
  position: relative;
  background: #EAECEF;
  border-top: 18px solid #A71F34;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1021, resources/assets/styles/template-parts/_layouts.scss */

  main .anchor-faq {
    margin-top: 75px;
  }

  /* line 1029, resources/assets/styles/template-parts/_layouts.scss */

  main .anchor-faq .col-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 1034, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq:before {
  position: absolute;
  content: '';
  top: -50px;
  left: 0;
  width: 100%;
  height: 18px;
  background: #172642;
}

/* line 1043, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .anchor-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

/* line 1048, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .anchor-list li {
  margin: 0 0 10px 0;
}

/* line 1051, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .anchor-list li a {
  font-family: "Roboto-Bold";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #131415;
  letter-spacing: 0;
  text-decoration: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 1059, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .anchor-list li a:hover {
  text-decoration: underline;
  color: #A71F34;
}

/* line 1066, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .faq-tip {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 50px 0 0 0;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1066, resources/assets/styles/template-parts/_layouts.scss */

  main .anchor-faq .faq-tip {
    margin: 50px 0;
  }
}

/* line 1076, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .faq-tip:after {
  position: absolute;
  content: '';
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 1086, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .faq-tip .cnt {
  position: relative;
  z-index: 9;
  background: #fff;
  padding: 25px 55px;
  margin: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1086, resources/assets/styles/template-parts/_layouts.scss */

  main .anchor-faq .faq-tip .cnt {
    padding: 25px;
  }
}

/* line 1096, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .faq-tip .cnt .title {
  font-family: "Roboto-Bold";
  color: #A71F34;
}

/* line 1100, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .faq-tip .cnt p {
  margin: 0;
}

/* line 1105, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .faq-item {
  padding: 50px 0;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1105, resources/assets/styles/template-parts/_layouts.scss */

  main .anchor-faq .faq-item {
    padding: 25px 0;
  }
}

/* line 1111, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .faq-item .q {
  position: relative;
  font-family: "Roboto-Bold";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #131415;
  letter-spacing: 0;
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1111, resources/assets/styles/template-parts/_layouts.scss */

  main .anchor-faq .faq-item .q {
    padding-left: 50px;
  }
}

/* line 1122, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .faq-item .q span {
  position: absolute;
  top: 0;
  left: -45px;
  color: #fff;
  -webkit-text-stroke: 1px #A71F34;
  -webkit-text-fill-color: #fff;
  font-family: "Roboto-Black";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #EAECEF;
  letter-spacing: 0;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1122, resources/assets/styles/template-parts/_layouts.scss */

  main .anchor-faq .faq-item .q span {
    left: 0;
  }
}

/* line 1139, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .faq-item .a {
  position: relative;
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1139, resources/assets/styles/template-parts/_layouts.scss */

  main .anchor-faq .faq-item .a {
    padding-left: 50px;
  }
}

/* line 1150, resources/assets/styles/template-parts/_layouts.scss */

main .anchor-faq .faq-item .a span {
  position: absolute;
  top: 0;
  left: -45px;
  color: #fff;
  -webkit-text-stroke: 1px #172642;
  -webkit-text-fill-color: #fff;
  font-family: "Roboto-Black";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #EAECEF;
  letter-spacing: 0;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1150, resources/assets/styles/template-parts/_layouts.scss */

  main .anchor-faq .faq-item .a span {
    left: 0;
  }
}

/* line 1171, resources/assets/styles/template-parts/_layouts.scss */

.athlete-meta+main .bio-section .col-xs-12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

/* line 1178, resources/assets/styles/template-parts/_layouts.scss */

#js-modal-page {
  overflow: hidden;
}

/* line 1184, resources/assets/styles/template-parts/_layouts.scss */

.hidden {
  display: none;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@-o-keyframes rotate {
  0% {
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(-360deg);
       transform: rotate(-360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
         -o-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

/* line 1199, resources/assets/styles/template-parts/_layouts.scss */

.loading {
  display: none;
  position: relative;
  width: 60px;
  height: 80px;
  top: 0;
  left: 50%;
  margin: 100px 0;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 9;
}

/* line 1210, resources/assets/styles/template-parts/_layouts.scss */

.loading span.icon {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjAwcHgiIGhlaWdodD0iMjAwcHgiIHZpZXdCb3g9IjAgMCAyMDAgMjAwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE0OS4wMDAwMDAsIC00Ny4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjQ5LjMxNzQ2LDQ3IEMzMDQuNTU1NTU2LDQ3IDM0OSw5Mi4wNzkzNjUxIDM0OSwxNDcuMzE3NDYgQzM0OSwyMDIuNTU1NTU2IDMwNC41NTU1NTYsMjQ3IDI0OS4zMTc0NiwyNDcgQzE5NC4wNzkzNjUsMjQ3IDE0OSwyMDIuNTU1NTU2IDE0OSwxNDcuMzE3NDYgQzE0OSw5Mi4wNzkzNjUxIDE5NC4wNzkzNjUsNDcgMjQ5LjMxNzQ2LDQ3IFogTTIzOC41MjM4MSw1Mi4wNzkzNjUxIEMyNjAuNzQ2MDMyLDUzLjk4NDEyNyAyODAuNDI4NTcxLDYwLjk2ODI1NCAyOTguODQxMjcsNzQuMzAxNTg3MyBDMjk3LjU3MTQyOSw2OS44NTcxNDI5IDI5NS4wMzE3NDYsNjYuMDQ3NjE5IDI5Mi40OTIwNjMsNjIuMjM4MDk1MiBDMjc1Ljk4NDEyNyw1My4zNDkyMDYzIDI1Ni45MzY1MDgsNTAuMTc0NjAzMiAyMzguNTIzODEsNTIuMDc5MzY1MSBaIE0zMDAuMTExMTExLDY2LjY4MjUzOTcgQzMxNi42MTkwNDgsOTkuNjk4NDEyNyAyODQuODczMDE2LDEzMi4wNzkzNjUgMjYwLjc0NjAzMiwxNTEuNzYxOTA1IEMyNTguMjA2MzQ5LDE3MC4xNzQ2MDMgMjU4LjIwNjM0OSwxODQuNzc3Nzc4IDI2MS4zODA5NTIsMTk3LjQ3NjE5IEMyOTYuMzAxNTg3LDE3Ny43OTM2NTEgMzI4LjY4MjU0LDE0OS4yMjIyMjIgMzM2LjMwMTU4NywxMDguNTg3MzAyIEMzMjguNjgyNTQsOTEuNDQ0NDQ0NCAzMTUuOTg0MTI3LDc2Ljg0MTI2OTggMzAwLjExMTExMSw2Ni42ODI1Mzk3IFogTTM0My4yODU3MTQsMTYzLjE5MDQ3NiBDMzI5LjMxNzQ2LDE5MC40OTIwNjMgMzA4LjM2NTA3OSwyMTAuMTc0NjAzIDI4MS42OTg0MTMsMjI0Ljc3Nzc3OCBDMjg1LjUwNzkzNywyMjcuMzE3NDYgMjg5Ljk1MjM4MSwyMjkuMjIyMjIyIDI5NS42NjY2NjcsMjMwLjQ5MjA2MyBDMzIwLjQyODU3MSwyMTYuNTIzODEgMzM4LjIwNjM0OSwxOTEuNzYxOTA1IDM0My4yODU3MTQsMTYzLjE5MDQ3NiBaIE0yODkuMzE3NDYsMjMzLjY2NjY2NyBDMjUzLjc2MTkwNSwyMjAuOTY4MjU0IDI1MS4yMjIyMjIsMTg0LjE0Mjg1NyAyNTYuMzAxNTg3LDE1MS43NjE5MDUgQzI0MS4wNjM0OTIsMTQyLjIzODA5NSAyMjcuMDk1MjM4LDEzNi41MjM4MSAyMTMuNzYxOTA1LDEzMy45ODQxMjcgQzIwMy42MDMxNzUsMTc3LjE1ODczIDIwOC4wNDc2MTksMjE3Ljc5MzY1MSAyNDguMDQ3NjE5LDI0Mi41NTU1NTYgQzI2Mi42NTA3OTQsMjQyLjU1NTU1NiAyNzYuNjE5MDQ4LDI0MC4wMTU4NzMgMjg5LjMxNzQ2LDIzMy42NjY2NjcgWiBNMTc0LjM5NjgyNSwyMDYuMzY1MDc5IEMxNjYuMTQyODU3LDE4Ni4wNDc2MTkgMTYzLjYwMzE3NSwxNjUuMDk1MjM4IDE2Ny40MTI2OTgsMTQyLjg3MzAxNiBDMTYyLjMzMzMzMywxNDYuMDQ3NjE5IDE1Ny44ODg4ODksMTQ5Ljg1NzE0MyAxNTQuMDc5MzY1LDE1NC4zMDE1ODcgQzE1NS4zNDkyMDYsMTczLjk4NDEyNyAxNjIuOTY4MjU0LDE5MS43NjE5MDUgMTc0LjM5NjgyNSwyMDYuMzY1MDc5IFogTTE1My40NDQ0NDQsMTQ3Ljk1MjM4MSBDMTg1LjE5MDQ3NiwxMTcuNDc2MTkgMjI0LjU1NTU1NiwxMjcgMjU4Ljg0MTI3LDE0Ny45NTIzODEgQzI3NC4wNzkzNjUsMTM1LjI1Mzk2OCAyODQuODczMDE2LDEyMy4xOTA0NzYgMjkxLjg1NzE0MywxMTEuNzYxOTA1IEMyNDcuNDEyNjk4LDg1LjA5NTIzODEgMjAxLjY5ODQxMyw3My4wMzE3NDYgMTYwLjQyODU3MSwxMTEuNzYxOTA1IEMxNTUuMzQ5MjA2LDEyMy44MjUzOTcgMTUzLjQ0NDQ0NCwxMzUuODg4ODg5IDE1My40NDQ0NDQsMTQ3Ljk1MjM4MSBaIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
  background-size: 100% !important;
  -webkit-animation: rotate 1s forwards infinite;
       -o-animation: rotate 1s forwards infinite;
          animation: rotate 1s forwards infinite;
}

/* line 1219, resources/assets/styles/template-parts/_layouts.scss */

.loading span.text {
  display: block;
  width: 100%;
  font-family: "RobotoCondensed-Regular";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 32px;
  line-height: 2rem;
  color: #1B232D;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* line 1232, resources/assets/styles/template-parts/_layouts.scss */

.row {
  position: relative;
  margin-left: -10px;
  margin-right: -10px;
}

/* line 1238, resources/assets/styles/template-parts/_layouts.scss */

[class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1238, resources/assets/styles/template-parts/_layouts.scss */

  [class*="col-"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 1250, resources/assets/styles/template-parts/_layouts.scss */

.large-column-spacing .row {
  margin-left: -30px;
  margin-right: -30px;
}

/* line 1255, resources/assets/styles/template-parts/_layouts.scss */

.large-column-spacing [class*="col-"] {
  padding-left: 30px;
  padding-right: 30px;
}

/* line 1261, resources/assets/styles/template-parts/_layouts.scss */

.col-xs-2-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%;
}

/* line 1271, resources/assets/styles/template-parts/_layouts.scss */

.left-text {
  text-align: left;
}

/* line 1275, resources/assets/styles/template-parts/_layouts.scss */

.right-text {
  text-align: right;
}

/* line 1279, resources/assets/styles/template-parts/_layouts.scss */

.video,
.podcast {
  text-align: center;
}

/* line 1284, resources/assets/styles/template-parts/_layouts.scss */

.video-right {
  margin-right: 50px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1284, resources/assets/styles/template-parts/_layouts.scss */

  .video-right {
    margin: 0 auto;
  }
}

/* line 1292, resources/assets/styles/template-parts/_layouts.scss */

.video-left {
  margin-left: 50px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1292, resources/assets/styles/template-parts/_layouts.scss */

  .video-left {
    margin: 0 auto;
  }
}

/* line 1302, resources/assets/styles/template-parts/_layouts.scss */

.story-detail-header,
.resource-detail-header {
  margin-top: -200px;
  position: relative;
  z-index: 9;
  padding-bottom: 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1310, resources/assets/styles/template-parts/_layouts.scss */

  .story-detail-header .col-xs-2,
  .story-detail-header .col-xs-8,
  .resource-detail-header .col-xs-2,
  .resource-detail-header .col-xs-8 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 1316, resources/assets/styles/template-parts/_layouts.scss */

.story-detail-header .no-banner-image,
.resource-detail-header .no-banner-image {
  padding-bottom: 100px;
}

/* line 1321, resources/assets/styles/template-parts/_layouts.scss */

.video-detail-header {
  position: relative;
  z-index: 9;
  padding-bottom: 0;
  min-height: 450px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1328, resources/assets/styles/template-parts/_layouts.scss */

  .video-detail-header .col-xs-6,
  .video-detail-header .col-xs-2 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  /* line 1333, resources/assets/styles/template-parts/_layouts.scss */

  .video-detail-header .col-xs-6 {
    margin: 35px 0;
  }
}

/* line 1337, resources/assets/styles/template-parts/_layouts.scss */

.video-detail-header .share-box {
  position: relative;
  top: 0;
  margin: 0 0 0 auto;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1337, resources/assets/styles/template-parts/_layouts.scss */

  .video-detail-header .share-box {
    width: 100%;
  }

  /* line 1347, resources/assets/styles/template-parts/_layouts.scss */

  .video-detail-header .share-box .cnt ul {
    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;
    padding: 0 20px 20px 20px;
  }

  /* line 1353, resources/assets/styles/template-parts/_layouts.scss */

  .video-detail-header .share-box .cnt ul li {
    margin: 0 10px;
  }
}

/* line 1360, resources/assets/styles/template-parts/_layouts.scss */

.video-detail-header .meta {
  margin: 0 0 15px 0;
}

/* line 1363, resources/assets/styles/template-parts/_layouts.scss */

.video-detail-header h1 {
  font-family: "Roboto-Bold";
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 48px;
  line-height: 3rem;
  color: #111111;
  letter-spacing: 0;
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1363, resources/assets/styles/template-parts/_layouts.scss */

  .video-detail-header h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 42px;
    line-height: 2.625rem;
  }
}

/* line 1374, resources/assets/styles/template-parts/_layouts.scss */

.video-detail-header .copy {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #111111;
  letter-spacing: 0;
}

/* line 1379, resources/assets/styles/template-parts/_layouts.scss */

.video-detail-header .copy p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #111111;
  letter-spacing: 0;
}

/* line 1387, resources/assets/styles/template-parts/_layouts.scss */

.story-intro {
  padding-top: 0;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1387, resources/assets/styles/template-parts/_layouts.scss */

  .story-intro {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1394, resources/assets/styles/template-parts/_layouts.scss */

  .story-intro .col-xs-9 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 1401, resources/assets/styles/template-parts/_layouts.scss */

.story-detail-body,
.resource-detail-body {
  position: relative;
  z-index: 9;
  padding: 0;
}

/* line 1407, resources/assets/styles/template-parts/_layouts.scss */

.story-detail-body .col-xs-9,
.resource-detail-body .col-xs-9 {
  text-align: left;
}

/* line 1412, resources/assets/styles/template-parts/_layouts.scss */

.story-detail-footer,
.resource-detail-footer {
  position: relative;
  z-index: 9;
  padding: 0;
}

/* line 1418, resources/assets/styles/template-parts/_layouts.scss */

.story-detail-footer .col-xs-6,
.resource-detail-footer .col-xs-6 {
  text-align: left;
}

/* line 1423, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview {
  position: relative;
  border-bottom: 18px solid #A71F34;
}

/* line 1427, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview:after {
  position: absolute;
  content: '';
  bottom: 20px;
  left: -120px;
  width: calc(100% + 240px);
  height: 18px;
  background: #172642;
}

/* line 1436, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .col-xs-7,
.resource-overview .col-xs-4 {
  text-align: left;
}

/* line 1440, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .row {
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1440, resources/assets/styles/template-parts/_layouts.scss */

  .resource-overview .row {
    border-bottom: none;
  }
}

/* line 1448, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .row:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  /* line 1453, resources/assets/styles/template-parts/_layouts.scss */

  .resource-overview .col-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 1458, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .blue-box {
  margin-top: 50px;
}

/* line 1461, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .blue-box .cnt {
  padding: 50px 45px 25px 45px;
}

/* line 1464, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .blue-box .row {
  z-index: 99;
  margin-left: -35px;
  margin-right: -35px;
}

/* line 1469, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .blue-box .col-xs-4 {
  padding-top: 25px;
  padding-left: 35px;
  padding-right: 35px;
  border-right: 1px solid rgba(255,255,255,0.2);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1469, resources/assets/styles/template-parts/_layouts.scss */

  .resource-overview .blue-box .col-xs-4 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    border-right: none;
  }
}

/* line 1481, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .blue-box .col-xs-4:last-child {
  border-right: none;
}

/* line 1486, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .step-cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

/* line 1491, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .step-cnt .step-title {
  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;
  font-family: "Roboto-Bold";
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: -0.3px;
}

/* line 1499, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .step-cnt .step-title .step {
  color: #172642;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #172642;
}

/* line 1504, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .step-cnt .step-title .title {
  display: inline-block;
  margin-left: 10px;
}

/* line 1509, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .step-cnt .copy {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* line 1512, resources/assets/styles/template-parts/_layouts.scss */

.resource-overview .step-cnt .btns-cnt a {
  margin: 0 auto 0 0;
}

/* line 1518, resources/assets/styles/template-parts/_layouts.scss */

.resource-buttons {
  position: relative;
  border-bottom: 14px solid #172642;
}

/* line 1522, resources/assets/styles/template-parts/_layouts.scss */

.resource-buttons:before {
  position: absolute;
  content: '';
  top: 160px;
  left: 0;
  background: #EAECEF;
  z-index: 1;
  width: 100%;
  height: calc(100% - 160px);
}

/* line 1532, resources/assets/styles/template-parts/_layouts.scss */

.resource-buttons:after {
  position: absolute;
  content: '';
  bottom: -42px;
  left: 0;
  width: 100%;
  height: 14px;
  background: #A71F34;
  z-index: 5;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 1543, resources/assets/styles/template-parts/_layouts.scss */

  .resource-buttons .col-xs-2-5 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 1552, resources/assets/styles/template-parts/_layouts.scss */

.related-articles {
  background: #EAECEF;
  border: 2px solid #D3DBE8;
  padding: 30px 45px;
  margin: 40px 0 60px 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1552, resources/assets/styles/template-parts/_layouts.scss */

  .related-articles {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1552, resources/assets/styles/template-parts/_layouts.scss */

  .related-articles {
    padding: 20px;
  }
}

/* line 1564, resources/assets/styles/template-parts/_layouts.scss */

.related-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/* line 1570, resources/assets/styles/template-parts/_layouts.scss */

.related-articles ul li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(151,151,151,0.23);
}

/* line 1574, resources/assets/styles/template-parts/_layouts.scss */

.related-articles ul li:last-child {
  border-bottom: none;
}

/* line 1583, resources/assets/styles/template-parts/_layouts.scss */

.related .related-row {
  margin-top: 80px;
}

/* line 1586, resources/assets/styles/template-parts/_layouts.scss */

.related .related-row:first-child {
  margin-top: 0;
}

/* line 1590, resources/assets/styles/template-parts/_layouts.scss */

.related .row:first-child {
  margin-top: 0;
}

/* line 1595, resources/assets/styles/template-parts/_layouts.scss */

.related .related-athletes .row {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

/* line 1599, resources/assets/styles/template-parts/_layouts.scss */

.related .related-athletes .col-xs-4 {
  margin-bottom: 15px;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1599, resources/assets/styles/template-parts/_layouts.scss */

  .related .related-athletes .col-xs-4 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1599, resources/assets/styles/template-parts/_layouts.scss */

  .related .related-athletes .col-xs-4 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1614, resources/assets/styles/template-parts/_layouts.scss */

  .related .related-athletes .post {
    -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;
  }

  /* line 1618, resources/assets/styles/template-parts/_layouts.scss */

  .related .related-athletes .post .thumb {
    width: 68px;
    height: 68px;
  }

  /* line 1622, resources/assets/styles/template-parts/_layouts.scss */

  .related .related-athletes .post .thumb div {
    width: 60px;
    height: 60px;
    margin: 4px;
  }

  /* line 1628, resources/assets/styles/template-parts/_layouts.scss */

  .related .related-athletes .post .body {
    padding: 0 10px;
  }

  /* line 1631, resources/assets/styles/template-parts/_layouts.scss */

  .related .related-athletes .post .body h3,
  .related .related-athletes .post .body p {
    text-align: left;
  }
}

/* line 1642, resources/assets/styles/template-parts/_layouts.scss */

.team-members {
  padding: 0 0 75px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1642, resources/assets/styles/template-parts/_layouts.scss */

  .team-members {
    padding: 0;
  }
}

/* line 1648, resources/assets/styles/template-parts/_layouts.scss */

.team-members .notice {
  padding: 35px 0;
}

/* line 1651, resources/assets/styles/template-parts/_layouts.scss */

.team-members .js-tabcontent {
  display: block;
  padding: 0 120px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#EAECEF), to(#fff));
  background-image: -webkit-linear-gradient(top, #EAECEF 0%, #fff 100%);
  background-image: -o-linear-gradient(top, #EAECEF 0%, #fff 100%);
  background-image: linear-gradient(180deg, #EAECEF 0%, #fff 100%);
}

/* line 1656, resources/assets/styles/template-parts/_layouts.scss */

.team-members .js-tabcontent[aria-hidden="true"] {
  display: none;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 1651, resources/assets/styles/template-parts/_layouts.scss */

  .team-members .js-tabcontent {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1651, resources/assets/styles/template-parts/_layouts.scss */

  .team-members .js-tabcontent {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1651, resources/assets/styles/template-parts/_layouts.scss */

  .team-members .js-tabcontent {
    padding: 0 10px;
  }
}

/* line 1668, resources/assets/styles/template-parts/_layouts.scss */

.team-members .js-tabcontent .row {
  margin-left: -10px;
  margin-right: -10px;
}

/* line 1672, resources/assets/styles/template-parts/_layouts.scss */

.team-members .js-tabcontent .col-xs-4 {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1672, resources/assets/styles/template-parts/_layouts.scss */

  .team-members .js-tabcontent .col-xs-4 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1672, resources/assets/styles/template-parts/_layouts.scss */

  .team-members .js-tabcontent .col-xs-4 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }

  /* line 1686, resources/assets/styles/template-parts/_layouts.scss */

  .team-members .js-tabcontent .col-xs-4 .post {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 1689, resources/assets/styles/template-parts/_layouts.scss */

  .team-members .js-tabcontent .col-xs-4 .post .thumb {
    width: 68px;
    max-width: 68px;
    min-width: 68px;
    height: 68px;
  }

  /* line 1695, resources/assets/styles/template-parts/_layouts.scss */

  .team-members .js-tabcontent .col-xs-4 .post .thumb div {
    width: 60px;
    max-width: 60px;
    min-width: 60px;
    height: 60px;
    margin: 4px;
  }

  /* line 1703, resources/assets/styles/template-parts/_layouts.scss */

  .team-members .js-tabcontent .col-xs-4 .post .thumb.athlete:after {
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
  }

  /* line 1709, resources/assets/styles/template-parts/_layouts.scss */

  .team-members .js-tabcontent .col-xs-4 .post .body {
    padding: 0 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  /* line 1714, resources/assets/styles/template-parts/_layouts.scss */

  .team-members .js-tabcontent .col-xs-4 .post .body .post-title {
    margin: 0 0 10px 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

/* line 1727, resources/assets/styles/template-parts/_layouts.scss */

.team-videos .featured-video {
  margin-bottom: 20px;
}

/* line 1730, resources/assets/styles/template-parts/_layouts.scss */

.team-videos .row:last-child {
  margin-top: 20px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1734, resources/assets/styles/template-parts/_layouts.scss */

  .team-videos .col-xs-4 {
    margin-bottom: 20px;
  }
}

/* line 1742, resources/assets/styles/template-parts/_layouts.scss */

.instagram-feed {
  text-align: center;
}

/* line 1745, resources/assets/styles/template-parts/_layouts.scss */

.instagram-feed iframe {
  margin: 0 auto 25px auto !important;
}

@media only screen and (max-width: 467px) and (min-width: 1px) {
  /* line 1745, resources/assets/styles/template-parts/_layouts.scss */

  .instagram-feed iframe {
    min-width: 100% !important;
  }
}

/* line 1756, resources/assets/styles/template-parts/_layouts.scss */

.filter-results {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#EAECEF), to(#fff));
  background-image: -webkit-linear-gradient(top, #EAECEF 0%, #fff 100%);
  background-image: -o-linear-gradient(top, #EAECEF 0%, #fff 100%);
  background-image: linear-gradient(180deg, #EAECEF 0%, #fff 100%);
  padding: 60px 120px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 1756, resources/assets/styles/template-parts/_layouts.scss */

  .filter-results {
    padding: 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1756, resources/assets/styles/template-parts/_layouts.scss */

  .filter-results {
    padding: 50px 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1756, resources/assets/styles/template-parts/_layouts.scss */

  .filter-results {
    padding: 35px 10px;
  }
}

/* line 1769, resources/assets/styles/template-parts/_layouts.scss */

.filter-results .col-xs-4 {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1769, resources/assets/styles/template-parts/_layouts.scss */

  .filter-results .col-xs-4 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1769, resources/assets/styles/template-parts/_layouts.scss */

  .filter-results .col-xs-4 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 1781, resources/assets/styles/template-parts/_layouts.scss */

.filter-results .page-pagination {
  margin-top: 50px;
}

/* line 1786, resources/assets/styles/template-parts/_layouts.scss */

.usalearn-section .filter-results {
  background: #fff;
}

/* line 1792, resources/assets/styles/template-parts/_layouts.scss */

.event-detail-header {
  margin-top: -175px;
  position: relative;
  z-index: 91;
  padding-bottom: 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1792, resources/assets/styles/template-parts/_layouts.scss */

  .event-detail-header {
    margin-top: -75px;
  }

  /* line 1801, resources/assets/styles/template-parts/_layouts.scss */

  .event-detail-header .col-xs-2,
  .event-detail-header .col-xs-8 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1792, resources/assets/styles/template-parts/_layouts.scss */

  .event-detail-header {
    margin-top: 0;
  }

  /* line 1810, resources/assets/styles/template-parts/_layouts.scss */

  .event-detail-header.complex-event {
    margin-top: -75px;
  }
}

/* line 1814, resources/assets/styles/template-parts/_layouts.scss */

.event-detail-header .share-box {
  position: absolute;
  top: 0;
  margin: 4px 0 0 20px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1814, resources/assets/styles/template-parts/_layouts.scss */

  .event-detail-header .share-box {
    position: relative;
    margin: 20px 4px 0 4px;
    width: calc(100% - 8px);
  }
}

/* line 1825, resources/assets/styles/template-parts/_layouts.scss */

.event-detail-header .btn-quicklink {
  position: relative;
  left: 50%;
  max-width: 800px;
  height: auto;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1825, resources/assets/styles/template-parts/_layouts.scss */

  .event-detail-header .btn-quicklink {
    max-width: 100%;
  }
}

/* line 1838, resources/assets/styles/template-parts/_layouts.scss */

.event-detail-body {
  position: relative;
  z-index: 9;
  padding: 35px 120px 75px 120px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 1838, resources/assets/styles/template-parts/_layouts.scss */

  .event-detail-body {
    padding: 35px 50px 75px 50px;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1838, resources/assets/styles/template-parts/_layouts.scss */

  .event-detail-body {
    padding: 35px 20px 35px 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1838, resources/assets/styles/template-parts/_layouts.scss */

  .event-detail-body {
    padding: 35px 10px 35px 10px;
  }
}

/* line 1852, resources/assets/styles/template-parts/_layouts.scss */

.event-detail-body .col-xs-7 {
  text-align: left;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1852, resources/assets/styles/template-parts/_layouts.scss */

  .event-detail-body .col-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1860, resources/assets/styles/template-parts/_layouts.scss */

  .event-detail-body .col-xs-10 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 1866, resources/assets/styles/template-parts/_layouts.scss */

.event-detail-body .btns-cnt {
  margin-bottom: 65px;
}

/* line 1873, resources/assets/styles/template-parts/_layouts.scss */

.upcoming-events .featured-event {
  margin-bottom: 20px;
}

/* line 1876, resources/assets/styles/template-parts/_layouts.scss */

.upcoming-events .ad-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1876, resources/assets/styles/template-parts/_layouts.scss */

  .upcoming-events .ad-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* line 1883, resources/assets/styles/template-parts/_layouts.scss */

.upcoming-events .ad-row .ad-stories {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1883, resources/assets/styles/template-parts/_layouts.scss */

  .upcoming-events .ad-row .ad-stories {
    display: block;
  }
}

/* line 1890, resources/assets/styles/template-parts/_layouts.scss */

.upcoming-events .ad-row .ad-stories .row {
  margin-top: 0;
  width: 100%;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1890, resources/assets/styles/template-parts/_layouts.scss */

  .upcoming-events .ad-row .ad-stories .row {
    width: auto;
  }
}

/* line 1899, resources/assets/styles/template-parts/_layouts.scss */

.upcoming-events .ad-row .ad {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 340px;
  min-width: 340px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1899, resources/assets/styles/template-parts/_layouts.scss */

  .upcoming-events .ad-row .ad {
    width: 100%;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1899, resources/assets/styles/template-parts/_layouts.scss */

  .upcoming-events .ad-row .ad {
    min-width: 270px;
  }
}

/* line 1911, resources/assets/styles/template-parts/_layouts.scss */

.upcoming-events .ad-row .ad img {
  width: 300px;
  height: 250px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1911, resources/assets/styles/template-parts/_layouts.scss */

  .upcoming-events .ad-row .ad img {
    width: 250px;
  }
}

/* line 1922, resources/assets/styles/template-parts/_layouts.scss */

.upcoming-events .row:last-child {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1926, resources/assets/styles/template-parts/_layouts.scss */

  .upcoming-events .col-xs-4 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  /* line 1931, resources/assets/styles/template-parts/_layouts.scss */

  .upcoming-events .col-xs-4:last-child {
    margin-bottom: 0;
  }

  /* line 1935, resources/assets/styles/template-parts/_layouts.scss */

  .upcoming-events .col-xs-12 {
    text-align: center;
  }
}

/* line 1943, resources/assets/styles/template-parts/_layouts.scss */

.partners {
  padding-top: 120px;
}

/* line 1946, resources/assets/styles/template-parts/_layouts.scss */

.partners .stars-supheader {
  margin-bottom: 65px;
}

/* line 1949, resources/assets/styles/template-parts/_layouts.scss */

.partners .premier-partner {
  margin-bottom: 75px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 1953, resources/assets/styles/template-parts/_layouts.scss */

  .partners .col-xs-3 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
    max-width: 33.333333%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1959, resources/assets/styles/template-parts/_layouts.scss */

  .partners .col-xs-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}

/* line 1970, resources/assets/styles/template-parts/_layouts.scss */

.quicklinks .col-xs-6 {
  margin-bottom: 20px;
}

/* line 1973, resources/assets/styles/template-parts/_layouts.scss */

.quicklinks.stripes-top {
  border-top: 14px solid #A71F34;
  margin-top: 75px;
}

/* line 1977, resources/assets/styles/template-parts/_layouts.scss */

.quicklinks.stripes-top:after {
  position: absolute;
  content: '';
  top: -42px;
  left: 0;
  width: 100%;
  height: 14px;
  background: #172642;
  z-index: 5;
}

/* line 1989, resources/assets/styles/template-parts/_layouts.scss */

.quicklinks.foundation-ql {
  background: #EAECEF;
}

/* line 1992, resources/assets/styles/template-parts/_layouts.scss */

.quicklinks.foundation-ql h2 {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  font-family: "Roboto-Black";
  font-size: 48px !important;
  line-height: 64px !important;
  margin: 0 0 20px 0;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1992, resources/assets/styles/template-parts/_layouts.scss */

  .quicklinks.foundation-ql h2 {
    font-size: 30px !important;
    line-height: 36px !important;
  }
}

/* line 2009, resources/assets/styles/template-parts/_layouts.scss */

.quicklinks.foundation-ql .btn-quicklink {
  border-radius: 100px;
}

/* line 2017, resources/assets/styles/template-parts/_layouts.scss */

.download-content {
  margin-top: 35px;
}

/* line 2020, resources/assets/styles/template-parts/_layouts.scss */

.download-content .btn-cnt {
  margin-top: 40px;
}

/* line 2027, resources/assets/styles/template-parts/_layouts.scss */

.medals-sponsor {
  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;
  background: #F3F4F6;
  padding: 35px 20px 25px 20px;
  border-top: 14px solid #A71F34;
  border-bottom: 14px solid #172642;
  position: relative;
  z-index: 9;
}

/* line 2039, resources/assets/styles/template-parts/_layouts.scss */

.medals-sponsor:before {
  position: absolute;
  content: '';
  bottom: -28px;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

/* line 2049, resources/assets/styles/template-parts/_layouts.scss */

.medals-sponsor .medal-labels {
  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;
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
}

/* line 2058, resources/assets/styles/template-parts/_layouts.scss */

.medals-sponsor .medal-labels li {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #172642;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 70px;
}

/* line 2067, resources/assets/styles/template-parts/_layouts.scss */

.medals-sponsor .medal-labels li:first-child {
  margin: 0 70px 0 0;
}

/* line 2070, resources/assets/styles/template-parts/_layouts.scss */

.medals-sponsor .medal-labels li:last-child {
  margin: 0 0 0 70px;
}

@media only screen and (max-width: 680px) and (min-width: 1px) {
  /* line 2058, resources/assets/styles/template-parts/_layouts.scss */

  .medals-sponsor .medal-labels li {
    margin: 0 30px;
  }

  /* line 2076, resources/assets/styles/template-parts/_layouts.scss */

  .medals-sponsor .medal-labels li:first-child {
    margin: 0 30px 0 0;
  }

  /* line 2079, resources/assets/styles/template-parts/_layouts.scss */

  .medals-sponsor .medal-labels li:last-child {
    margin: 0 0 0 30px;
  }
}

/* line 2087, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt {
  display: block;
  position: relative;
  background: #172642;
  width: 100%;
  min-height: 450px;
  z-index: 8;
}

/* line 2095, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .medals-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* line 2101, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .medals-cnt .medal {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}

/* line 2105, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .medals-cnt .medal.bronze {
  margin: 0 10px 0 auto;
  width: 164px;
  height: 226px;
}

/* line 2110, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .medals-cnt .medal.bronze span {
  position: absolute;
  top: 105px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 8;
  font-family: "Roboto-Bold";
  font-size: 64px;
  font-size: 4rem;
  line-height: 68px;
  line-height: 4.25rem;
  color: #131415;
  text-align: center;
}

@media only screen and (max-width: 680px) and (min-width: 1px) {
  /* line 2105, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .medals-cnt .medal.bronze {
    height: 125px;
    margin: 0 0 0 auto;
  }

  /* line 2125, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .medals-cnt .medal.bronze span {
    top: 52px;
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

/* line 2131, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .medals-cnt .medal.gold {
  margin: 0;
  width: 204px;
  height: 282px;
}

/* line 2136, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .medals-cnt .medal.gold span {
  position: absolute;
  top: 128px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 8;
  font-family: "Roboto-Black";
  font-size: 80px;
  font-size: 5rem;
  line-height: 84px;
  line-height: 5.25rem;
  color: #131415;
  text-align: center;
}

@media only screen and (max-width: 680px) and (min-width: 1px) {
  /* line 2131, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .medals-cnt .medal.gold {
    height: 145px;
  }

  /* line 2150, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .medals-cnt .medal.gold span {
    top: 65px;
    font-size: 44px;
    font-size: 2.75rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

/* line 2156, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .medals-cnt .medal.silver {
  margin: 0 auto 0 10px;
  width: 164px;
  height: 226px;
}

/* line 2161, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .medals-cnt .medal.silver span {
  position: absolute;
  top: 105px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 8;
  font-family: "Roboto-Bold";
  font-size: 64px;
  font-size: 4rem;
  line-height: 68px;
  line-height: 4.25rem;
  color: #131415;
  text-align: center;
}

@media only screen and (max-width: 680px) and (min-width: 1px) {
  /* line 2156, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .medals-cnt .medal.silver {
    height: 125px;
    margin: 0 auto 0 0;
  }

  /* line 2176, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .medals-cnt .medal.silver span {
    top: 52px;
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

/* line 2186, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  margin-top: 150px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2186, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper {
    margin-top: 50px;
  }
}

/* line 2195, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper #content {
  position: relative;
  top: 0;
  width: calc(100% - 295px);
  padding-right: 120px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 2195, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper #content {
    padding-right: 50px;
    width: calc(100% - 100px);
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2195, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper #content {
    padding-right: 20px;
    width: calc(100% - 70px);
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2195, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper #content {
    padding-right: 0;
    width: 100%;
  }
}

/* line 2214, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper #sidebar {
  position: relative;
  top: 0;
  z-index: 9;
  will-change: min-height;
  width: 120px;
  margin-right: 175px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 2214, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper #sidebar {
    margin-right: 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2214, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper #sidebar {
    display: none;
  }
}

/* line 2229, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .sidebar__inner {
  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;
  position: relative;
  -webkit-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: position, transform;
  width: 100%;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 2229, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper .sidebar__inner {
    margin-top: 25px;
  }
}

/* line 2243, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date {
  position: relative;
  width: auto;
  min-height: 14px;
}

/* line 2248, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
  font-family: "Roboto-Bold";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

/* line 2260, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 36px;
  height: 2px;
  background: #fff;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

/* line 2271, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date.hlight {
  margin: -7px 0;
}

/* line 2274, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date.hlight span {
  position: relative;
  text-indent: 0;
  left: 45px;
}

/* line 2282, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date.active span {
  left: 65px;
}

/* line 2285, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date.active:before {
  width: 60px;
  background: #CB9701;
}

/* line 2291, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2291, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper .date-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 10px;
  }
}

/* line 2299, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .year-cnt {
  font-family: "Roboto-Black";
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 48px;
  line-height: 3rem;
  letter-spacing: -4px;
  color: #172642;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #172642;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2299, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper .date-content .year-cnt {
    font-size: 42px;
    font-size: 2.625rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

/* line 2311, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .time-line {
  position: relative;
  margin: 0 50px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2311, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper .date-content .time-line {
    margin: 0 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2311, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper .date-content .time-line {
    display: none;
  }
}

/* line 2321, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .time-line img {
  position: relative;
  z-index: 8;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-width: 40px;
}

/* line 2329, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .time-line:after {
  position: absolute;
  content: '';
  top: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 1px;
  height: 100%;
  background: #CB9701;
  z-index: 7;
}

/* line 2341, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content {
  max-width: 550px;
  min-width: 550px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 2341, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper .date-content .content {
    min-width: auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2341, resources/assets/styles/template-parts/_layouts.scss */

  .timeline-cnt .timeline-wrapper .date-content .content {
    max-width: 100%;
  }
}

/* line 2351, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content h3 {
  color: #fff;
}

/* line 2354, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content .copy {
  color: #fff;
}

/* line 2357, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content .copy * {
  color: #fff;
}

/* line 2363, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content img+h3 {
  margin-top: 25px;
}

/* line 2366, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content img+.copy {
  margin-top: 25px;
}

/* line 2370, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content hr {
  margin: 50px 0;
}

/* line 2373, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content .title-cnt {
  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;
  margin-bottom: 25px;
}

/* line 2379, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content .title-cnt .timeline-logo {
  position: relative;
  widows: 100px;
  height: 100px;
  min-width: 100px;
  background: #fff;
  margin-right: 40px;
  padding: 10px 20px;
}

/* line 2388, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content .title-cnt .timeline-logo:after {
  position: absolute;
  content: '';
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #CB9701;
}

/* line 2397, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content .title-cnt .timeline-logo img {
  max-height: 75px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 2406, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content .photo {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

/* line 2413, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content .photo .medal {
  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;
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #fff;
  padding: 10px 15px;
  z-index: 8;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #172643;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* line 2429, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content .photo .medal:after {
  position: absolute;
  content: '';
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #CB9701;
}

/* line 2438, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content .photo .medal img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 10px;
  position: relative;
}

/* line 2446, resources/assets/styles/template-parts/_layouts.scss */

.timeline-cnt .timeline-wrapper .date-content .content .photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 5;
}

/* line 2463, resources/assets/styles/template-parts/_layouts.scss */

.olympic-timeline-cnt .timeline-wrapper .date.hlight {
  margin: 0;
}

/* line 2467, resources/assets/styles/template-parts/_layouts.scss */

.full-section .get-started .blue-box,
#compete .blue-box {
  height: 100%;
}

/* line 2471, resources/assets/styles/template-parts/_layouts.scss */

.full-section .get-started .blue-box .cnt,
#compete .blue-box .cnt {
  height: 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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* line 2477, resources/assets/styles/template-parts/_layouts.scss */

.full-section .get-started .blue-box .cnt .btns-cnt,
#compete .blue-box .cnt .btns-cnt {
  margin-top: auto;
  display: block;
}

/* line 2481, resources/assets/styles/template-parts/_layouts.scss */

.full-section .get-started .blue-box .cnt .btns-cnt a,
#compete .blue-box .cnt .btns-cnt a {
  margin-top: 20px;
  margin-bottom: 0;
}

/* line 2488, resources/assets/styles/template-parts/_layouts.scss */

.page-template-template-compete .scrollto-section.offset-top {
  margin-bottom: 100px;
}

/* line 2493, resources/assets/styles/template-parts/_layouts.scss */

.page-template-template-flex .countdown-timer-section {
  margin: 0 auto -75px;
  max-width: 600px;
  min-height: 165px;
}

/* line 2498, resources/assets/styles/template-parts/_layouts.scss */

.page-template-template-flex .countdown-timer-section .countdown-timer {
  height: 100%;
  pointer-events: none;
}

/* line 2508, resources/assets/styles/template-parts/_layouts.scss */

.single-resource .video-flex-section .row-btn,
.single-story .video-flex-section .row-btn {
  margin-top: 20px;
}

/* line 2520, resources/assets/styles/template-parts/_layouts.scss */

.page-template-template-resources-flex .main .figure-section.large-column-spacing:first-of-type,
.page-template-template-resources-flex .main .flex-section.blue-section:first-of-type,
.page-template-template-resources-flex .main .full-section.large-column-spacing:first-of-type,
.page-template-template-resources-flex .main .flex-section:first-of-type {
  margin-top: 200px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 2520, resources/assets/styles/template-parts/_layouts.scss */

  .page-template-template-resources-flex .main .figure-section.large-column-spacing:first-of-type,
  .page-template-template-resources-flex .main .flex-section.blue-section:first-of-type,
  .page-template-template-resources-flex .main .full-section.large-column-spacing:first-of-type,
  .page-template-template-resources-flex .main .flex-section:first-of-type {
    margin-top: 130px;
  }
}

/* line 2539, resources/assets/styles/template-parts/_layouts.scss */

.page-template-template-resources-flex .main>section+.figure-section.large-column-spacing:first-of-type,
.page-template-template-resources-flex .main>div+.figure-section.large-column-spacing:first-of-type,
.page-template-template-resources-flex .main>section+.flex-section.blue-section:first-of-type,
.page-template-template-resources-flex .main>div+.flex-section.blue-section:first-of-type,
.page-template-template-resources-flex .main>section+.full-section.large-column-spacing:first-of-type,
.page-template-template-resources-flex .main>div+.full-section.large-column-spacing:first-of-type,
.page-template-template-resources-flex .main>section+.flex-section:first-of-type,
.page-template-template-resources-flex .main>div+.flex-section:first-of-type {
  margin-top: 0;
}

/* line 2545, resources/assets/styles/template-parts/_layouts.scss */

.page-template-template-resources-flex .main>.banner-page-links.offset-top {
  top: 0;
  margin-top: 250px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 2545, resources/assets/styles/template-parts/_layouts.scss */

  .page-template-template-resources-flex .main>.banner-page-links.offset-top {
    margin-top: 150px;
  }
}

/* line 2556, resources/assets/styles/template-parts/_layouts.scss */

.page-template-template-resources-flex .main div+.banner-page-links.offset-top,
.page-template-template-resources-flex .main section+.banner-page-links.offset-top {
  margin-top: 0;
  top: -79px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 2556, resources/assets/styles/template-parts/_layouts.scss */

  .page-template-template-resources-flex .main div+.banner-page-links.offset-top,
  .page-template-template-resources-flex .main section+.banner-page-links.offset-top {
    top: -63px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2556, resources/assets/styles/template-parts/_layouts.scss */

  .page-template-template-resources-flex .main div+.banner-page-links.offset-top,
  .page-template-template-resources-flex .main section+.banner-page-links.offset-top {
    top: -61px;
    margin-bottom: -61px;
  }
}

/* line 2574, resources/assets/styles/template-parts/_layouts.scss */

.page-template-template-resources-flex .flex-section .max-content-width .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 2585, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about {
  background: #101F3A;
  padding: 75px 32px 530px 32px;
  border-bottom: none !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2585, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about {
    padding: 75px 20px 130px 20px;
  }
}

/* line 2593, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .max-content-width {
  position: relative;
  z-index: 5;
}

/* line 2597, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .offset-image {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: -625px;
  z-index: 5;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2597, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .offset-image {
    height: 300px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2597, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .offset-image {
    height: 200px;
    margin-top: -225px;
  }
}

/* line 2612, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .offset-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 2622, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .title-cnt {
  position: relative;
  margin-top: 130px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2622, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .title-cnt {
    margin-top: 70px;
  }
}

/* line 2629, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .title-cnt .superheader {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 15px;
  left: 0;
  margin-left: 70px;
  color: #DBB150;
  font-family: "Roboto-Bold";
  font-size: 14px;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 5;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2629, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .title-cnt .superheader {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2629, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .title-cnt .superheader {
    position: relative;
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0;
  }
}

/* line 2655, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .title-cnt .superheader span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 24px;
  height: 24px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjhweCIgaGVpZ2h0PSIyOHB4IiB2aWV3Qm94PSIwIDAgMjggMjgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+Vm9sbGV5YmFsbCBJY29uIENvcHkgMjwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8bGluZWFyR3JhZGllbnQgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSIgaWQ9ImxpbmVhckdyYWRpZW50LTEiPgogICAgICAgICAgICA8c3RvcCBzdG9wLWNvbG9yPSIjMTcyQjU5IiBvZmZzZXQ9IjAlIj48L3N0b3A+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiNDNzMxNEQiIG9mZnNldD0iMTAwJSI+PC9zdG9wPgogICAgICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICAgICAgPGNpcmNsZSBpZD0icGF0aC0yIiBjeD0iMTIiIGN5PSIxMiIgcj0iMTIiPjwvY2lyY2xlPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJBdGhsZXRlLVByb2ZpbGUtRGV0YWlsIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzIwLjAwMDAwMCwgLTIxNTEuMDAwMDAwKSI+CiAgICAgICAgICAgIDxnIGlkPSJWb2xsZXliYWxsLUljb24tQ29weS0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzMjIuMDAwMDAwLCAyMTUzLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPGcgaWQ9Ik92YWwiPgogICAgICAgICAgICAgICAgICAgIDx1c2UgZmlsbD0iIzE3MjY0MiIgZmlsbC1ydWxlPSJldmVub2RkIiB4bGluazpocmVmPSIjcGF0aC0yIj48L3VzZT4KICAgICAgICAgICAgICAgICAgICA8Y2lyY2xlIHN0cm9rZT0iI0NCOTcwMSIgc3Ryb2tlLXdpZHRoPSIxLjI2MzE1Nzg5IiBjeD0iMTIiIGN5PSIxMiIgcj0iMTIuNjMxNTc4OSI+PC9jaXJjbGU+CiAgICAgICAgICAgICAgICAgICAgPGNpcmNsZSBzdHJva2U9InVybCgjbGluZWFyR3JhZGllbnQtMSkiIHN0cm9rZS13aWR0aD0iMS4yNjMxNTc4OSIgc3Ryb2tlLWxpbmVqb2luPSJzcXVhcmUiIGN4PSIxMiIgY3k9IjEyIiByPSIxMS4zNjg0MjExIj48L2NpcmNsZT4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMy4wMjUyNjk4LDE5LjgzNjk1MzIgQzEyLjY1MTU1MzcsMTkuODg3MTgwOSAxMi4yNjk4ODU5LDE5LjkxMzEzNzUgMTEuODgxOTk2MiwxOS45MTMxMzc1IEM3LjkyNDUxNjY4LDE5LjkxMzEzNzUgNC42MTQ2OTA5MywxNy4yMTEyNDMgMy43ODk0NzM2OCwxMy41OTczNDggQzYuMzM0MTU3ODEsMTUuODcyMTM4NSA5Ljg3MzQyMTc2LDE2Ljk4NTQ3ODUgMTMuODk0NzM2OCwxNi41MjQxMjAyIEwxMy44OTQ3MzY4LDE2LjUyNDEyMDIgQzEzLjg5MTAwNDUsMTYuNjEyNzE2OCAxMy44ODU4MzkxLDE2LjcwMTQzOTMgMTMuODc5MjUzNiwxNi43OTAyNjM3IEMxMy43OTMwMDc4LDE3Ljk1MzUxNTcgMTMuNDU1MTI1MywxOS4wNzQ0NDY0IDEzLjAyNTI2ODgsMTkuODM2OTUzNSBMMTMuMDI1MjY5OCwxOS44MzY5NTMyIFogTTE0LjU0NTI4MTgsMTkuOTEzMTM3NSBDMTUuMDg3MTkyMiwxOS43NTg0MDkzIDE1LjYwNjc5MTQsMTkuNTUyOTA0MSAxNi4wOTgyNjksMTkuMzAyMjc2MSBDMTguNjA1NTY1NSwxNC45MjAwNzcgMTguMTAwNzc4MSwxMC40MDcxNDQ4IDE0Ljg2MTQ5NjksNy45MTMxMzc1MiBDMTQuMjQ4NjY5Miw5LjEwNjk5NDgyIDEzLjkxNjIyMTksMTAuNDMwMTE1NiAxMy44OTQ3MzY4LDExLjc4MTI0NDcgQzE0LjkzMDczNjQsMTMuNDA5MjY5NiAxNS4zMzU1NTY2LDE1LjI0MTQ0NiAxNS4xOTc1NzgxLDE3LjEwMDA3NDUgQzE1LjEyMjU2MTQsMTguMTEwNTgzNiAxNC44ODIwNTkyLDE5LjA5NjA5ODMgMTQuNTQ1MjgxOCwxOS45MTMxMzc1IFogTTE3LjQzNTEwOTMsMTguNjQ5OTc5NiBDMTkuMTM2MDc1NywxNy4wOTkwMDQgMjAuMjEwNTI2MywxNC44MTg5OTEzIDIwLjIxMDUyNjMsMTIuMjc3MjAwOCBDMjAuMjEwNTI2Myw5LjQzNTYxNjY3IDE4Ljg2NzY3NTEsNi45MjEyMDM0NyAxNi44MDc4MzIzLDUuMzg2ODIxNzMgQzE2LjE1OTAyMzEsNS45NTkwMTcxMSAxNS42MDY1OTA2LDYuNjIwMDQ3NDYgMTUuMTU3ODk0Nyw3LjM0Mzc4ODc3IEMxNS4xOTI0ODE2LDcuMzYwMDQ4NjkgMTUuMjI1NzUxOCw3LjM4MDkwMzg1IDE1LjI1NjkyMzEsNy40MDY0NTIyNSBDMTguMzYxMDIyNiw5Ljk1MDYwOTMyIDE5LjEzMTc5OTUsMTQuMjk3NTU0MiAxNy40MzUxMDkxLDE4LjY0OTk3OTYgTDE3LjQzNTEwOTMsMTguNjQ5OTc5NiBaIE0xNS43ODk0NzM3LDQuMzEwOTkyNjggQzE1LjExMTExMjUsMy45MzYyMjA5NSAxNC4zNzQyMjk1LDMuNjU3MzAyMDIgMTMuNTk2MzU1NywzLjQ5MjA4NDg4IEMxMS4xODgwNyw0LjU0NDE4MjQyIDguOTAwMDY5NjMsNy41NzIzODQ2OCA4Ljg0MjEwNTI2LDEwLjcwODg1MTkgQzkuOTgwNzgyNzIsMTAuOTkyMjExNiAxMS4yNDk4NjI0LDExLjExMTY2NzMgMTIuNjYxNjEyNSwxMS4wNTg4NjE1IEMxMi43ODgxNTc0LDguNTAxMTU0MDQgMTMuODg1NzA5NCw2LjA1OTM5MzYgMTUuNzg5NDczNyw0LjMxMDk5MzA3IEwxNS43ODk0NzM3LDQuMzEwOTkyNjggWiBNMTIsMy40OTIwODQ4OCBDMTEuOTkzNTU2OCwzLjQ5MjA4NDg4IDExLjk4NzExMiwzLjQ5MjA4NDg4IDExLjk4MDY2NTQsMy40OTIwODQ4OCBDOC41OTIxNDI0OCwzLjQ5MjA4NDg4IDUuNjgyMDQxMSw1LjQ5Njc4MzEyIDQuNDIxMDUyNjMsOC4zNjA0NDUxNCBDNS4zOTA4NTEyOCw5LjI4NTYwMDA1IDYuNTM1MTE3NTIsOS45ODM3ODcyMSA3Ljg3NzYwMjQsMTAuNDM5NDUzMyBDOC4wMzI2MjExNiw3LjYyMDI1NTUzIDkuODIzNDcyOTksNC45NTI3OTU0NSAxMiwzLjQ5MjA4NDg4IFogTTQuMTAwNDcxNjQsOS4xNzYyOTU0MSBDMy44OTc5MTc1Miw5LjkxMDk3NTU1IDMuNzg5NDczNjgsMTAuNjg2NjU2NiAzLjc4OTQ3MzY4LDExLjQ4ODUyMDkgQzMuNzg5NDczNjgsMTEuNTU5NzAzMyAzLjc5MDMyODMzLDExLjYzMDY3OTMgMy43OTIwMjczMywxMS43MDE0Mzg3IEM2LjEzMDc3MTI5LDE0LjQ5NTIwMzYgOS43MTAyODQzOSwxNS45MTc5NjY5IDEzLjg5NDczNjgsMTUuMzc5NzAzMyBDMTMuODA3MDI1NCwxNC4xODMxNzEgMTMuNDY4Njg0OSwxMy4wMjUwNDA1IDEyLjg1MjA5NjIsMTEuOTYyNDU4OCBDOS4xMjE5MjM1MSwxMi4xMzQwNTY5IDYuMjQ1NDQ4MjIsMTEuMTYyMjY5OSA0LjEwMDQ3MTY0LDkuMTc2Mjk1NDEgWiIgaWQ9IlNoYXBlIiBmaWxsPSIjRkZGRkZGIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) 50% no-repeat;
  background-size: contain;
  margin-right: 20px;
}

/* line 2664, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .title-cnt .superheader span:after {
  position: absolute;
  content: '';
  top: 50%;
  right: -16px;
  height: 1px;
  width: 16px;
  background: #B08C28;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 2676, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .title-cnt h2 {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  position: relative;
  font-family: "Roboto-Black";
  font-size: 64px !important;
  line-height: 84px !important;
  margin: 0 0 20px 0;
  max-width: 1024px;
  padding-left: 120px;
  background: -webkit-gradient(linear, left top, right top, from(#F5DA8E), to(#BD8107));
  background: -webkit-linear-gradient(left, #F5DA8E 0%, #BD8107 100%);
  background: -o-linear-gradient(left, #F5DA8E 0%, #BD8107 100%);
  background: linear-gradient(90deg, #F5DA8E 0%, #BD8107 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2676, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .title-cnt h2 {
    font-size: 42px !important;
    line-height: 48px !important;
    padding-left: 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2676, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .title-cnt h2 {
    font-size: 30px !important;
    line-height: 36px !important;
    padding-left: 0;
  }
}

/* line 2704, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 620px;
  right: 20px;
  width: 217px;
  height: 651px;
  z-index: 5;
  opacity: .5;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2704, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .stars {
    display: none;
  }
}

/* line 2721, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .stars img {
  width: 217px;
  height: 217px;
}

/* line 2727, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .blue-box .cnt {
  background: transparent;
  position: relative;
  z-index: 6;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2727, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .blue-box .cnt {
    padding: 55px 0 !important;
  }

  /* line 2735, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .blue-box .cnt>.row .col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2727, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .blue-box .cnt {
    padding: 0 !important;
  }
}

/* line 2744, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .blue-box .cnt h3 {
  font-family: "Roboto-Regular";
  font-size: 32px;
  line-height: 40px;
  padding-left: 120px;
  padding-right: 120px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2744, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .blue-box .cnt h3 {
    padding: 0;
  }
}

/* line 2755, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .blue-box .cnt p.large {
  font-size: 20px;
  line-height: 48px;
}

/* line 2759, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about .blue-box .cnt .btn-foundation {
  margin-top: 40px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2763, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .blue-box .cnt p.large,
  .foundation-about .blue-box .cnt .btn-foundation {
    margin-left: 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2769, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about .blue-box .cnt p.large,
  .foundation-about .blue-box .cnt .btn-foundation {
    margin-left: 0;
  }
}

/* line 2776, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about hr {
  height: 1px;
  margin: 0 120px;
  width: calc(100% - 240px);
  background: rgba(244,245,246,0.2);
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2776, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about hr {
    margin: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2776, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about hr {
    margin: 20px 0;
  }
}

/* line 2789, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about hr:before,
.foundation-about hr:after {
  display: none;
}

/* line 2795, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 970px;
  height: 646px;
  background: url(/wp-content/themes/usav-theme/dist/images/about-gold.svg) 50% no-repeat;
  background-size: contain;
  z-index: 1;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2795, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about:before {
    width: 670px;
    height: 346px;
    bottom: 200px;
    left: -32px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2795, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-about:before {
    display: none;
  }
}

/* line 2817, resources/assets/styles/template-parts/_layouts.scss */

.foundation-about:after {
  height: 24px !important;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C)) !important;
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%) !important;
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%) !important;
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%) !important;
}

/* line 2824, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact {
  position: relative;
  padding: 75px 32px 430px 32px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F9FAFA), to(#DFE0E2));
  background: -webkit-linear-gradient(top, #F9FAFA 0%, #DFE0E2 100%);
  background: -o-linear-gradient(top, #F9FAFA 0%, #DFE0E2 100%);
  background: linear-gradient(180deg, #F9FAFA 0%, #DFE0E2 100%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2824, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact {
    padding: 75px 20px 130px 20px;
  }
}

/* line 2832, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .offset-image {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: -425px;
  margin-bottom: 130px;
  z-index: 5;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2832, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .offset-image {
    height: 300px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2832, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .offset-image {
    height: 200px;
    margin-top: -155px;
    margin-bottom: 70px;
  }
}

/* line 2848, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .offset-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2859, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .col-xs-5,
  .foundation-impact .col-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    padding-right: 10px;
  }

  /* line 2865, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .col-xs-5 {
    margin-bottom: 50px;
  }
}

/* line 2870, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .title-cnt {
  position: relative;
}

/* line 2873, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .title-cnt .superheader {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 15px;
  left: 0;
  margin-left: 70px;
  color: #101F3A;
  font-family: "Roboto-Bold";
  font-size: 14px;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 5;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2873, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .title-cnt .superheader {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2873, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .title-cnt .superheader {
    position: relative;
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0;
  }
}

/* line 2899, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .title-cnt .superheader span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 24px;
  height: 24px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTMiIGN5PSIxMyIgcj0iMTIuNSIgc3Ryb2tlPSIjQjA4QzI4Ii8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTMuOTk5IDIwLjkyNThDMTMuNjM0OCAyMC45NzQ3IDEzLjI2MyAyMSAxMi44ODUgMjFDOS4wMjkwMiAyMSA1LjgwNDA2IDE4LjM2NzQgNSAxNC44NDYyQzcuNDc5NDQgMTcuMDYyNiAxMC45Mjc5IDE4LjE0NzQgMTQuODQ2MiAxNy42OTc5QzE0Ljg0MjUgMTcuNzg0MiAxNC44Mzc1IDE3Ljg3MDcgMTQuODMxMSAxNy45NTcyQzE0Ljc0NyAxOS4wOTA2IDE0LjQxNzggMjAuMTgyOCAxMy45OTkgMjAuOTI1OFpNMTUuNDggMjFDMTYuMDA4IDIwLjg0OTIgMTYuNTE0MyAyMC42NDkgMTYuOTkzMiAyMC40MDQ4QzE5LjQzNjIgMTYuMTM1IDE4Ljk0NDMgMTEuNzM3OCAxNS43ODgxIDkuMzA3NjlDMTUuMTkxIDEwLjQ3MDkgMTQuODY3MSAxMS43NjAxIDE0Ljg0NjIgMTMuMDc2NkMxNS44NTU2IDE0LjY2MjkgMTYuMjUgMTYuNDQ4MSAxNi4xMTU2IDE4LjI1OTFDMTYuMDQyNSAxOS4yNDM3IDE1LjgwODIgMjAuMjAzOSAxNS40OCAyMVpNMTguMjk1NyAxOS43NjkyQzE5Ljk1MzEgMTguMjU4IDIxIDE2LjAzNjUgMjEgMTMuNTU5OUMyMSAxMC43OTExIDE5LjY5MTYgOC4zNDExOSAxNy42ODQ2IDYuODQ2MTVDMTcuMDUyNCA3LjQwMzY4IDE2LjUxNDEgOC4wNDc3NiAxNi4wNzY5IDguNzUyOTRDMTYuMTEwNiA4Ljc2ODc5IDE2LjE0MyA4Ljc4OTExIDE2LjE3MzQgOC44MTRDMTkuMTk3OSAxMS4yOTI5IDE5Ljk0ODkgMTUuNTI4NCAxOC4yOTU3IDE5Ljc2OTJaTTE2LjY5MjMgNS43OTc5MUMxNi4wMzEzIDUuNDMyNzUgMTUuMzEzNCA1LjE2MDk4IDE0LjU1NTQgNUMxMi4yMDg5IDYuMDI1MTIgOS45Nzk1NiA4Ljk3NTY4IDkuOTIzMDggMTIuMDMxN0MxMS4wMzI2IDEyLjMwNzggMTIuMjY5MSAxMi40MjQyIDEzLjY0NDYgMTIuMzcyOEMxMy43Njc5IDkuODgwNjMgMTQuODM3NCA3LjUwMTQ4IDE2LjY5MjMgNS43OTc5MUwxNi42OTIzIDUuNzk3OTFaTTEzIDUuMDAwMDJDMTIuOTkzNyA1LjAwMDAxIDEyLjk4NzQgNSAxMi45ODEyIDVDOS42Nzk1MiA1IDYuODQ0MDQgNi45NTMzIDUuNjE1MzggOS43NDM1M0M2LjU2MDMyIDEwLjY0NSA3LjY3NTI0IDExLjMyNTIgOC45ODMzIDExLjc2OTJDOS4xMzQzNSA5LjAyMjMyIDEwLjg3OTMgNi40MjMyNiAxMyA1LjAwMDAyWk01LjMwMzAyIDEwLjUzODVDNS4xMDU2NiAxMS4yNTQzIDUgMTIuMDEwMSA1IDEyLjc5MTRDNSAxMi44NjA4IDUuMDAwODMgMTIuOTI5OSA1LjAwMjQ5IDEyLjk5ODlDNy4yODEyNiAxNS43MjEgMTAuNzY5IDE3LjEwNzMgMTQuODQ2MiAxNi41ODI4QzE0Ljc2MDcgMTUuNDE3IDE0LjQzMSAxNC4yODg1IDEzLjgzMDIgMTMuMjUzMkMxMC4xOTU3IDEzLjQyMDQgNy4zOTMgMTIuNDczNSA1LjMwMzAyIDEwLjUzODVaIiBmaWxsPSIjMTAxRjNBIi8+Cjwvc3ZnPgo=) 50% no-repeat;
  background-size: contain;
  margin-right: 20px;
}

/* line 2908, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .title-cnt .superheader span:after {
  position: absolute;
  content: '';
  top: 50%;
  right: -16px;
  height: 1px;
  width: 16px;
  background: #B08C28;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 2920, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .title-cnt h2 {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  position: relative;
  font-family: "Roboto-Black";
  font-size: 48px !important;
  line-height: 64px !important;
  margin: 0 0 20px 0;
  max-width: 510px;
  padding-left: 120px;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2920, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .title-cnt h2 {
    font-size: 36px !important;
    line-height: 42px !important;
    padding-left: 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2920, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .title-cnt h2 {
    font-size: 30px !important;
    line-height: 36px !important;
    padding-left: 0;
  }
}

/* line 2948, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .btn-anchor {
  margin: 30px auto 0 115px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2948, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .btn-anchor {
    margin: 30px auto 0 60px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2948, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .btn-anchor {
    margin: 30px auto 0 0;
  }
}

/* line 2959, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .large {
  font-size: 20px;
  line-height: 48px;
}

/* line 2964, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .italic {
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-style: italic;
  line-height: 36px;
}

/* line 2971, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .row:first-child {
  padding-right: 120px;
}

/* line 2974, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .row:first-child .col-xs-7 {
  padding-left: 60px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2971, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .row:first-child {
    padding-right: 0;
  }

  /* line 2980, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .row:first-child .col-xs-7 {
    padding-left: 10px;
  }
}

/* line 2986, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .row:last-child {
  padding-left: 120px;
  padding-right: 120px;
  margin-top: 75px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 2986, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .row:last-child {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 2986, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .row:last-child {
    margin-top: 0;
  }

  /* line 2997, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .row:last-child .col-xs-6:last-child {
    margin-top: 20px;
  }
}

/* line 3003, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 36px 48px 48px 48px;
  -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: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  background: #F4F5F6;
  border: 1px solid #DBB150;
}

/* line 3016, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .box .icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 16px;
}

/* line 3022, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .box .icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 3031, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .box h3 {
  color: #000;
  font-family: "Roboto-Regular";
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}

/* line 3038, resources/assets/styles/template-parts/_layouts.scss */

.foundation-impact .box p {
  margin: 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3003, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .box {
    padding: 24px 24px 24px 24px;
  }

  /* line 3044, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-impact .box h3 {
    font-size: 24px;
    line-height: 36px;
  }
}

/* line 3053, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments {
  position: relative;
  background: #101F3A;
  padding: 75px 32px 0 32px;
  margin-top: 24px;
  border-bottom: none !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3053, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments {
    padding: 75px 20px 0 20px;
  }
}

/* line 3063, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 446px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#0F1E39));
  background: -webkit-linear-gradient(bottom, #fff 0%, #0F1E39 100%);
  background: -o-linear-gradient(bottom, #fff 0%, #0F1E39 100%);
  background: linear-gradient(0deg, #fff 0%, #0F1E39 100%);
  z-index: 3;
}

/* line 3074, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  z-index: 2;
}

/* line 3085, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .max-content-width:after {
  position: absolute;
  content: '';
  bottom: 440px;
  right: -100px;
  width: 796px;
  height: 524px;
  background: url(/wp-content/themes/usav-theme/dist/images/hero-gold.svg) 50% no-repeat;
  background-size: contain;
  z-index: 2;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3085, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .max-content-width:after {
    width: 564px;
    height: 247px;
    right: -80px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3085, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .max-content-width:after {
    width: 464px;
    height: 147px;
    right: -110px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3109, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .offset-top>.row>.col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  /* line 3113, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .offset-top>.row>.col-xs-6:first-child {
    margin-bottom: 50px;
  }
}

/* line 3119, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 220px;
  left: 20px;
  width: 217px;
  height: 651px;
  z-index: 5;
  opacity: .5;
}

/* line 3133, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .stars img {
  width: 217px;
  height: 217px;
}

/* line 3139, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .offset-image {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: -425px;
  margin-bottom: 130px;
  z-index: 5;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3139, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .offset-image {
    height: 300px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3139, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .offset-image {
    height: 200px;
    margin-top: -155px;
    margin-bottom: 70px;
  }
}

/* line 3155, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .offset-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 3165, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .title-cnt {
  position: relative;
}

/* line 3168, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .title-cnt .superheader {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 15px;
  left: 0;
  margin-left: 70px;
  color: #DBB150;
  font-family: "Roboto-Bold";
  font-size: 14px;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 5;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3168, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .title-cnt .superheader {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3168, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .title-cnt .superheader {
    position: relative;
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0;
  }
}

/* line 3194, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .title-cnt .superheader span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 24px;
  height: 24px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjhweCIgaGVpZ2h0PSIyOHB4IiB2aWV3Qm94PSIwIDAgMjggMjgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+Vm9sbGV5YmFsbCBJY29uIENvcHkgMjwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8bGluZWFyR3JhZGllbnQgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSIgaWQ9ImxpbmVhckdyYWRpZW50LTEiPgogICAgICAgICAgICA8c3RvcCBzdG9wLWNvbG9yPSIjMTcyQjU5IiBvZmZzZXQ9IjAlIj48L3N0b3A+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiNDNzMxNEQiIG9mZnNldD0iMTAwJSI+PC9zdG9wPgogICAgICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICAgICAgPGNpcmNsZSBpZD0icGF0aC0yIiBjeD0iMTIiIGN5PSIxMiIgcj0iMTIiPjwvY2lyY2xlPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJBdGhsZXRlLVByb2ZpbGUtRGV0YWlsIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzIwLjAwMDAwMCwgLTIxNTEuMDAwMDAwKSI+CiAgICAgICAgICAgIDxnIGlkPSJWb2xsZXliYWxsLUljb24tQ29weS0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzMjIuMDAwMDAwLCAyMTUzLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPGcgaWQ9Ik92YWwiPgogICAgICAgICAgICAgICAgICAgIDx1c2UgZmlsbD0iIzE3MjY0MiIgZmlsbC1ydWxlPSJldmVub2RkIiB4bGluazpocmVmPSIjcGF0aC0yIj48L3VzZT4KICAgICAgICAgICAgICAgICAgICA8Y2lyY2xlIHN0cm9rZT0iI0NCOTcwMSIgc3Ryb2tlLXdpZHRoPSIxLjI2MzE1Nzg5IiBjeD0iMTIiIGN5PSIxMiIgcj0iMTIuNjMxNTc4OSI+PC9jaXJjbGU+CiAgICAgICAgICAgICAgICAgICAgPGNpcmNsZSBzdHJva2U9InVybCgjbGluZWFyR3JhZGllbnQtMSkiIHN0cm9rZS13aWR0aD0iMS4yNjMxNTc4OSIgc3Ryb2tlLWxpbmVqb2luPSJzcXVhcmUiIGN4PSIxMiIgY3k9IjEyIiByPSIxMS4zNjg0MjExIj48L2NpcmNsZT4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMy4wMjUyNjk4LDE5LjgzNjk1MzIgQzEyLjY1MTU1MzcsMTkuODg3MTgwOSAxMi4yNjk4ODU5LDE5LjkxMzEzNzUgMTEuODgxOTk2MiwxOS45MTMxMzc1IEM3LjkyNDUxNjY4LDE5LjkxMzEzNzUgNC42MTQ2OTA5MywxNy4yMTEyNDMgMy43ODk0NzM2OCwxMy41OTczNDggQzYuMzM0MTU3ODEsMTUuODcyMTM4NSA5Ljg3MzQyMTc2LDE2Ljk4NTQ3ODUgMTMuODk0NzM2OCwxNi41MjQxMjAyIEwxMy44OTQ3MzY4LDE2LjUyNDEyMDIgQzEzLjg5MTAwNDUsMTYuNjEyNzE2OCAxMy44ODU4MzkxLDE2LjcwMTQzOTMgMTMuODc5MjUzNiwxNi43OTAyNjM3IEMxMy43OTMwMDc4LDE3Ljk1MzUxNTcgMTMuNDU1MTI1MywxOS4wNzQ0NDY0IDEzLjAyNTI2ODgsMTkuODM2OTUzNSBMMTMuMDI1MjY5OCwxOS44MzY5NTMyIFogTTE0LjU0NTI4MTgsMTkuOTEzMTM3NSBDMTUuMDg3MTkyMiwxOS43NTg0MDkzIDE1LjYwNjc5MTQsMTkuNTUyOTA0MSAxNi4wOTgyNjksMTkuMzAyMjc2MSBDMTguNjA1NTY1NSwxNC45MjAwNzcgMTguMTAwNzc4MSwxMC40MDcxNDQ4IDE0Ljg2MTQ5NjksNy45MTMxMzc1MiBDMTQuMjQ4NjY5Miw5LjEwNjk5NDgyIDEzLjkxNjIyMTksMTAuNDMwMTE1NiAxMy44OTQ3MzY4LDExLjc4MTI0NDcgQzE0LjkzMDczNjQsMTMuNDA5MjY5NiAxNS4zMzU1NTY2LDE1LjI0MTQ0NiAxNS4xOTc1NzgxLDE3LjEwMDA3NDUgQzE1LjEyMjU2MTQsMTguMTEwNTgzNiAxNC44ODIwNTkyLDE5LjA5NjA5ODMgMTQuNTQ1MjgxOCwxOS45MTMxMzc1IFogTTE3LjQzNTEwOTMsMTguNjQ5OTc5NiBDMTkuMTM2MDc1NywxNy4wOTkwMDQgMjAuMjEwNTI2MywxNC44MTg5OTEzIDIwLjIxMDUyNjMsMTIuMjc3MjAwOCBDMjAuMjEwNTI2Myw5LjQzNTYxNjY3IDE4Ljg2NzY3NTEsNi45MjEyMDM0NyAxNi44MDc4MzIzLDUuMzg2ODIxNzMgQzE2LjE1OTAyMzEsNS45NTkwMTcxMSAxNS42MDY1OTA2LDYuNjIwMDQ3NDYgMTUuMTU3ODk0Nyw3LjM0Mzc4ODc3IEMxNS4xOTI0ODE2LDcuMzYwMDQ4NjkgMTUuMjI1NzUxOCw3LjM4MDkwMzg1IDE1LjI1NjkyMzEsNy40MDY0NTIyNSBDMTguMzYxMDIyNiw5Ljk1MDYwOTMyIDE5LjEzMTc5OTUsMTQuMjk3NTU0MiAxNy40MzUxMDkxLDE4LjY0OTk3OTYgTDE3LjQzNTEwOTMsMTguNjQ5OTc5NiBaIE0xNS43ODk0NzM3LDQuMzEwOTkyNjggQzE1LjExMTExMjUsMy45MzYyMjA5NSAxNC4zNzQyMjk1LDMuNjU3MzAyMDIgMTMuNTk2MzU1NywzLjQ5MjA4NDg4IEMxMS4xODgwNyw0LjU0NDE4MjQyIDguOTAwMDY5NjMsNy41NzIzODQ2OCA4Ljg0MjEwNTI2LDEwLjcwODg1MTkgQzkuOTgwNzgyNzIsMTAuOTkyMjExNiAxMS4yNDk4NjI0LDExLjExMTY2NzMgMTIuNjYxNjEyNSwxMS4wNTg4NjE1IEMxMi43ODgxNTc0LDguNTAxMTU0MDQgMTMuODg1NzA5NCw2LjA1OTM5MzYgMTUuNzg5NDczNyw0LjMxMDk5MzA3IEwxNS43ODk0NzM3LDQuMzEwOTkyNjggWiBNMTIsMy40OTIwODQ4OCBDMTEuOTkzNTU2OCwzLjQ5MjA4NDg4IDExLjk4NzExMiwzLjQ5MjA4NDg4IDExLjk4MDY2NTQsMy40OTIwODQ4OCBDOC41OTIxNDI0OCwzLjQ5MjA4NDg4IDUuNjgyMDQxMSw1LjQ5Njc4MzEyIDQuNDIxMDUyNjMsOC4zNjA0NDUxNCBDNS4zOTA4NTEyOCw5LjI4NTYwMDA1IDYuNTM1MTE3NTIsOS45ODM3ODcyMSA3Ljg3NzYwMjQsMTAuNDM5NDUzMyBDOC4wMzI2MjExNiw3LjYyMDI1NTUzIDkuODIzNDcyOTksNC45NTI3OTU0NSAxMiwzLjQ5MjA4NDg4IFogTTQuMTAwNDcxNjQsOS4xNzYyOTU0MSBDMy44OTc5MTc1Miw5LjkxMDk3NTU1IDMuNzg5NDczNjgsMTAuNjg2NjU2NiAzLjc4OTQ3MzY4LDExLjQ4ODUyMDkgQzMuNzg5NDczNjgsMTEuNTU5NzAzMyAzLjc5MDMyODMzLDExLjYzMDY3OTMgMy43OTIwMjczMywxMS43MDE0Mzg3IEM2LjEzMDc3MTI5LDE0LjQ5NTIwMzYgOS43MTAyODQzOSwxNS45MTc5NjY5IDEzLjg5NDczNjgsMTUuMzc5NzAzMyBDMTMuODA3MDI1NCwxNC4xODMxNzEgMTMuNDY4Njg0OSwxMy4wMjUwNDA1IDEyLjg1MjA5NjIsMTEuOTYyNDU4OCBDOS4xMjE5MjM1MSwxMi4xMzQwNTY5IDYuMjQ1NDQ4MjIsMTEuMTYyMjY5OSA0LjEwMDQ3MTY0LDkuMTc2Mjk1NDEgWiIgaWQ9IlNoYXBlIiBmaWxsPSIjRkZGRkZGIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) 50% no-repeat;
  background-size: contain;
  margin-right: 20px;
}

/* line 3203, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .title-cnt .superheader span:after {
  position: absolute;
  content: '';
  top: 50%;
  right: -16px;
  height: 1px;
  width: 16px;
  background: #B08C28;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 3215, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .title-cnt h2 {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  position: relative;
  font-family: "Roboto-Black";
  font-size: 48px !important;
  line-height: 64px !important;
  margin: 0 0 20px 0;
  padding-left: 120px;
  background: -webkit-gradient(linear, left top, right top, from(#F5DA8E), to(#BD8107));
  background: -webkit-linear-gradient(left, #F5DA8E 0%, #BD8107 100%);
  background: -o-linear-gradient(left, #F5DA8E 0%, #BD8107 100%);
  background: linear-gradient(90deg, #F5DA8E 0%, #BD8107 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3215, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .title-cnt h2 {
    font-size: 36px !important;
    line-height: 42px !important;
    padding-left: 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3215, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .title-cnt h2 {
    font-size: 30px !important;
    line-height: 36px !important;
    padding-left: 0;
  }
}

/* line 3242, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .btn-foundation {
  margin: 30px auto 0 115px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3242, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .btn-foundation {
    margin: 30px auto 0 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3242, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .btn-foundation {
    margin: 30px auto 0 0;
  }
}

/* line 3253, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .title {
  position: relative;
  color: #F6DA8E;
  font-size: 20px;
  line-height: 24px;
  padding-left: 25px;
  margin: 0 0 10px 0;
}

/* line 3261, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .title:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyNCAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuMjMyODUgMjAuMTMxNUw1Ljc4NzggMjEuNTUwNEw2Ljk5OTY4IDIwLjY4ODZMMTIgMTcuMTMzMUwxNy4wMDAzIDIwLjY4ODZMMTguMjEyMiAyMS41NTA0TDE3Ljc2NzEgMjAuMTMxNUwxNS45MzA4IDE0LjI3NzJMMjAuODU3NSAxMC42MjAzTDIyLjA1MTYgOS43MzQwNUwyMC41NjQ2IDkuNzE4ODdMMTQuNDI5NCA5LjY1NjI0TDEyLjQ3MzkgMy44NDA2NUwxMiAyLjQzMTE3TDExLjUyNjEgMy44NDA2NUw5LjU3MDYyIDkuNjU2MjRMMy40MzUzOSA5LjcxODg3TDEuOTQ4NDUgOS43MzQwNUwzLjE0MjQ4IDEwLjYyMDNMOC4wNjkxNyAxNC4yNzcyTDYuMjMyODUgMjAuMTMxNVoiIGZpbGw9IiNGNkRBOEUiIHN0cm9rZT0iIzUyM0EwOCIvPgo8L3N2Zz4K) 50% no-repeat;
  background-size: contain;
}

/* line 3273, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments p:not(.title) {
  color: #F4F5F6;
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 40px 0;
}

/* line 3280, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  padding: 16px;
  margin: 120px 120px 0 120px;
  width: calc(100% - 240px);
  z-index: 6;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3280, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box {
    margin: 50px 0;
    width: 100%;
  }
}

/* line 3292, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box {
  background: #E2E2E4;
  padding: 74px 120px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3297, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box .box .col-xs-5,
  .foundation-accomplishments .donate-box .box .col-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  /* line 3302, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box .box .col-xs-5 {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3292, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box .box {
    padding: 20px;
  }
}

/* line 3309, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .title-cnt {
  position: relative;
  margin-left: -130px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3309, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box .box .title-cnt {
    margin-left: 0;
  }
}

/* line 3316, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .title-cnt .superheader {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 15px;
  left: 0;
  margin-left: 70px;
  color: #845F10;
  font-family: "Roboto-Bold";
  font-size: 14px;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 5;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3316, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box .box .title-cnt .superheader {
    position: relative;
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0;
    top: 0;
  }
}

/* line 3340, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .title-cnt .superheader span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 24px;
  height: 24px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTMiIGN5PSIxMyIgcj0iMTIuNSIgc3Ryb2tlPSIjQjA4QzI4Ii8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTMuOTk5IDIwLjkyNThDMTMuNjM0OCAyMC45NzQ3IDEzLjI2MyAyMSAxMi44ODUgMjFDOS4wMjkwMiAyMSA1LjgwNDA2IDE4LjM2NzQgNSAxNC44NDYyQzcuNDc5NDQgMTcuMDYyNiAxMC45Mjc5IDE4LjE0NzQgMTQuODQ2MiAxNy42OTc5QzE0Ljg0MjUgMTcuNzg0MiAxNC44Mzc1IDE3Ljg3MDcgMTQuODMxMSAxNy45NTcyQzE0Ljc0NyAxOS4wOTA2IDE0LjQxNzggMjAuMTgyOCAxMy45OTkgMjAuOTI1OFpNMTUuNDggMjFDMTYuMDA4IDIwLjg0OTIgMTYuNTE0MyAyMC42NDkgMTYuOTkzMiAyMC40MDQ4QzE5LjQzNjIgMTYuMTM1IDE4Ljk0NDMgMTEuNzM3OCAxNS43ODgxIDkuMzA3NjlDMTUuMTkxIDEwLjQ3MDkgMTQuODY3MSAxMS43NjAxIDE0Ljg0NjIgMTMuMDc2NkMxNS44NTU2IDE0LjY2MjkgMTYuMjUgMTYuNDQ4MSAxNi4xMTU2IDE4LjI1OTFDMTYuMDQyNSAxOS4yNDM3IDE1LjgwODIgMjAuMjAzOSAxNS40OCAyMVpNMTguMjk1NyAxOS43NjkyQzE5Ljk1MzEgMTguMjU4IDIxIDE2LjAzNjUgMjEgMTMuNTU5OUMyMSAxMC43OTExIDE5LjY5MTYgOC4zNDExOSAxNy42ODQ2IDYuODQ2MTVDMTcuMDUyNCA3LjQwMzY4IDE2LjUxNDEgOC4wNDc3NiAxNi4wNzY5IDguNzUyOTRDMTYuMTEwNiA4Ljc2ODc5IDE2LjE0MyA4Ljc4OTExIDE2LjE3MzQgOC44MTRDMTkuMTk3OSAxMS4yOTI5IDE5Ljk0ODkgMTUuNTI4NCAxOC4yOTU3IDE5Ljc2OTJaTTE2LjY5MjMgNS43OTc5MUMxNi4wMzEzIDUuNDMyNzUgMTUuMzEzNCA1LjE2MDk4IDE0LjU1NTQgNUMxMi4yMDg5IDYuMDI1MTIgOS45Nzk1NiA4Ljk3NTY4IDkuOTIzMDggMTIuMDMxN0MxMS4wMzI2IDEyLjMwNzggMTIuMjY5MSAxMi40MjQyIDEzLjY0NDYgMTIuMzcyOEMxMy43Njc5IDkuODgwNjMgMTQuODM3NCA3LjUwMTQ4IDE2LjY5MjMgNS43OTc5MUwxNi42OTIzIDUuNzk3OTFaTTEzIDUuMDAwMDJDMTIuOTkzNyA1LjAwMDAxIDEyLjk4NzQgNSAxMi45ODEyIDVDOS42Nzk1MiA1IDYuODQ0MDQgNi45NTMzIDUuNjE1MzggOS43NDM1M0M2LjU2MDMyIDEwLjY0NSA3LjY3NTI0IDExLjMyNTIgOC45ODMzIDExLjc2OTJDOS4xMzQzNSA5LjAyMjMyIDEwLjg3OTMgNi40MjMyNiAxMyA1LjAwMDAyWk01LjMwMzAyIDEwLjUzODVDNS4xMDU2NiAxMS4yNTQzIDUgMTIuMDEwMSA1IDEyLjc5MTRDNSAxMi44NjA4IDUuMDAwODMgMTIuOTI5OSA1LjAwMjQ5IDEyLjk5ODlDNy4yODEyNiAxNS43MjEgMTAuNzY5IDE3LjEwNzMgMTQuODQ2MiAxNi41ODI4QzE0Ljc2MDcgMTUuNDE3IDE0LjQzMSAxNC4yODg1IDEzLjgzMDIgMTMuMjUzMkMxMC4xOTU3IDEzLjQyMDQgNy4zOTMgMTIuNDczNSA1LjMwMzAyIDEwLjUzODVaIiBmaWxsPSIjMTAxRjNBIi8+Cjwvc3ZnPgo=) 50% no-repeat;
  background-size: contain;
  margin-right: 20px;
}

/* line 3349, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .title-cnt .superheader span:after {
  position: absolute;
  content: '';
  top: 50%;
  right: -16px;
  height: 1px;
  width: 16px;
  background: #B08C28;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 3361, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .title-cnt h2 {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  position: relative;
  font-family: "Roboto-Black";
  font-size: 48px !important;
  line-height: 64px !important;
  margin: 0 0 20px 0;
  padding-left: 120px;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3361, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box .box .title-cnt h2 {
    font-size: 36px !important;
    line-height: 42px !important;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3361, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box .box .title-cnt h2 {
    font-size: 30px !important;
    line-height: 36px !important;
    padding-left: 0;
  }
}

/* line 3386, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box p {
  color: #000;
  font-size: 16px;
  line-height: 36px;
  margin: 0 0 14px 0;
}

/* line 3392, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box hr {
  height: 2px;
  background: #886312;
  margin: 54px 0 14px 0;
}

/* line 3397, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 332px;
  padding: 24px 40px;
  -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: 8px;
  border-radius: 8px;
  background: #F4F5F6;
  border-top: 4px solid #886312;
  border-right: 1px solid #886312;
  border-left: 1px solid #886312;
  border-bottom: 1px solid #886312;
  margin: 0 0 0 50px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3397, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box .box .donate-levels {
    margin: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3397, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box .box .donate-levels {
    padding: 20px 10px;
  }
}

/* line 3420, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels .title {
  font-family: "Roboto-Black";
  font-size: 24px;
  line-height: 36px;
  padding: 0;
  margin: 0;
  font-style: normal;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* line 3433, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels .title:before {
  display: none;
}

/* line 3437, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

/* line 3442, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels ul li {
  position: relative;
  padding-left: 30px;
  color: #101F3A;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3442, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box .box .donate-levels ul li {
    font-size: 16px;
  }
}

/* line 3453, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels ul li span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Roboto-Bold";
  width: 100px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3453, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-accomplishments .donate-box .box .donate-levels ul li span {
    width: 75px;
  }
}

/* line 3462, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels ul li:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-size: contain;
}

/* line 3471, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels ul li.Legacy:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyNCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjcyNDQgMTUuNjc0MUwxMiAxNS4xNTlMMTEuMjc1NiAxNS42NzQxTDcuMjUxOTEgMTguNTM1Mkw4LjcyOTU4IDEzLjgyNDNMOC45OTU2IDEyLjk3NjJMOC4yODE5IDEyLjQ0NjRMNC4zMTc0MyA5LjUwMzc4TDkuMjU0NCA5LjQ1MzM4TDEwLjE0MzIgOS40NDQzTDEwLjQyNjUgOC42MDE4M0wxMiAzLjkyMjA2TDEzLjU3MzUgOC42MDE4M0wxMy44NTY4IDkuNDQ0M0wxNC43NDU2IDkuNDUzMzhMMTkuNjgyNiA5LjUwMzc4TDE1LjcxODEgMTIuNDQ2NEwxNS4wMDQ0IDEyLjk3NjJMMTUuMjcwNCAxMy44MjQzTDE2Ljc0ODEgMTguNTM1MkwxMi43MjQ0IDE1LjY3NDFaIiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSJ1cmwoI3BhaW50MF9saW5lYXJfMTZfOTA1KSIgc3Ryb2tlLXdpZHRoPSIyLjUiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xNl85MDUiIHgxPSIyLjU1NjkiIHkxPSIwIiB4Mj0iMjEuNTU5MyIgeTI9IjAiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0I1OTAyQSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiM3RTU5MEMiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K) 50% no-repeat;
}

/* line 3474, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels ul li.Gold:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyNCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjI4OTcgMTYuMjg1M0wxMiAxNi4wNzkzTDExLjcxMDMgMTYuMjg1M0w1Ljg2ODcxIDIwLjQzOUw4LjAxMzk2IDEzLjU5OThMOC4xMjAzNyAxMy4yNjA2TDcuODM0ODkgMTMuMDQ4N0wyLjA3OTM2IDguNzc2NTlMOS4yNDY3NCA4LjcwMzQyTDkuNjAyMjYgOC42OTk3OUw5LjcxNTU3IDguMzYyOEwxMiAxLjU2ODgzTDE0LjI4NDQgOC4zNjI4TDE0LjM5NzcgOC42OTk3OUwxNC43NTMzIDguNzAzNDJMMjEuOTIwNiA4Ljc3NjU5TDE2LjE2NTEgMTMuMDQ4N0wxNS44Nzk2IDEzLjI2MDZMMTUuOTg2IDEzLjU5OThMMTguMTMxMyAyMC40MzlMMTIuMjg5NyAxNi4yODUzWiIgZmlsbD0iI0I1OTEyQiIgc3Ryb2tlPSJ1cmwoI3BhaW50MF9saW5lYXJfMTZfOTEwKSIvPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzE2XzkxMCIgeDE9IjIuNTU2OSIgeTE9IjAiIHgyPSIyMS41NTkzIiB5Mj0iMCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjQjU5MDJBIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzdFNTkwQyIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=) 50% no-repeat;
}

/* line 3477, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels ul li.Silver:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyNCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAxNi42OTI4TDQuOTQ2NTggMjEuNzA4Mkw3LjUzNjg4IDEzLjQ1MDJMMC41ODczMjIgOC4yOTE4TDkuMjQxNjQgOC4yMDM0NEwxMiAwTDE0Ljc1ODQgOC4yMDM0NEwyMy40MTI3IDguMjkxOEwxNi40NjMxIDEzLjQ1MDJMMTkuMDUzNCAyMS43MDgyTDEyIDE2LjY5MjhaIiBmaWxsPSIjQzBDMEM5Ii8+CjxwYXRoIGQ9Ik0xMi4yODk3IDE2LjI4NTNMMTIgMTYuMDc5M0wxMS43MTAzIDE2LjI4NTNMNS44Njg3MSAyMC40MzlMOC4wMTM5NiAxMy41OTk4TDguMTIwMzcgMTMuMjYwNkw3LjgzNDg5IDEzLjA0ODdMMi4wNzkzNiA4Ljc3NjU5TDkuMjQ2NzQgOC43MDM0Mkw5LjYwMjI2IDguNjk5NzlMOS43MTU1NyA4LjM2MjhMMTIgMS41Njg4M0wxNC4yODQ0IDguMzYyOEwxNC4zOTc3IDguNjk5NzlMMTQuNzUzMyA4LjcwMzQyTDIxLjkyMDYgOC43NzY1OUwxNi4xNjUxIDEzLjA0ODdMMTUuODc5NiAxMy4yNjA2TDE1Ljk4NiAxMy41OTk4TDE4LjEzMTMgMjAuNDM5TDEyLjI4OTcgMTYuMjg1M1oiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjUiLz4KPC9zdmc+Cg==) 50% no-repeat;
}

/* line 3480, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels ul li.Bronze:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyNCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAxNi42OTI4TDQuOTQ2NTggMjEuNzA4Mkw3LjUzNjg4IDEzLjQ1MDJMMC41ODczMjIgOC4yOTE4TDkuMjQxNjQgOC4yMDM0NEwxMiAwTDE0Ljc1ODQgOC4yMDM0NEwyMy40MTI3IDguMjkxOEwxNi40NjMxIDEzLjQ1MDJMMTkuMDUzNCAyMS43MDgyTDEyIDE2LjY5MjhaIiBmaWxsPSIjODI2MDAwIi8+CjxwYXRoIGQ9Ik0xMi4yODk3IDE2LjI4NTNMMTIgMTYuMDc5M0wxMS43MTAzIDE2LjI4NTNMNS44Njg3MSAyMC40MzlMOC4wMTM5NiAxMy41OTk4TDguMTIwMzcgMTMuMjYwNkw3LjgzNDg5IDEzLjA0ODdMMi4wNzkzNiA4Ljc3NjU5TDkuMjQ2NzQgOC43MDM0Mkw5LjYwMjI2IDguNjk5NzlMOS43MTU1NyA4LjM2MjhMMTIgMS41Njg4M0wxNC4yODQ0IDguMzYyOEwxNC4zOTc3IDguNjk5NzlMMTQuNzUzMyA4LjcwMzQyTDIxLjkyMDYgOC43NzY1OUwxNi4xNjUxIDEzLjA0ODdMMTUuODc5NiAxMy4yNjA2TDE1Ljk4NiAxMy41OTk4TDE4LjEzMTMgMjAuNDM5TDEyLjI4OTcgMTYuMjg1M1oiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjUiLz4KPC9zdmc+Cg==) 50% no-repeat;
}

/* line 3483, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels ul li.Blue:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyNCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAxNi42OTI4TDQuOTQ2NTggMjEuNzA4Mkw3LjUzNjg4IDEzLjQ1MDJMMC41ODczMjIgOC4yOTE4TDkuMjQxNjQgOC4yMDM0NEwxMiAwTDE0Ljc1ODQgOC4yMDM0NEwyMy40MTI3IDguMjkxOEwxNi40NjMxIDEzLjQ1MDJMMTkuMDUzNCAyMS43MDgyTDEyIDE2LjY5MjhaIiBmaWxsPSIjMEQ0MDlEIi8+CjxwYXRoIGQ9Ik0xMi4yODk3IDE2LjI4NTNMMTIgMTYuMDc5M0wxMS43MTAzIDE2LjI4NTNMNS44Njg3MSAyMC40MzlMOC4wMTM5NiAxMy41OTk4TDguMTIwMzcgMTMuMjYwNkw3LjgzNDg5IDEzLjA0ODdMMi4wNzkzNiA4Ljc3NjU5TDkuMjQ2NzQgOC43MDM0Mkw5LjYwMjI2IDguNjk5NzlMOS43MTU1NyA4LjM2MjhMMTIgMS41Njg4M0wxNC4yODQ0IDguMzYyOEwxNC4zOTc3IDguNjk5NzlMMTQuNzUzMyA4LjcwMzQyTDIxLjkyMDYgOC43NzY1OUwxNi4xNjUxIDEzLjA0ODdMMTUuODc5NiAxMy4yNjA2TDE1Ljk4NiAxMy41OTk4TDE4LjEzMTMgMjAuNDM5TDEyLjI4OTcgMTYuMjg1M1oiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjUiLz4KPC9zdmc+Cg==) 50% no-repeat;
}

/* line 3486, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels ul li.White:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyNCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAxNi42OTI4TDQuOTQ2NTggMjEuNzA4Mkw3LjUzNjg4IDEzLjQ1MDJMMC41ODczMjIgOC4yOTE4TDkuMjQxNjQgOC4yMDM0NEwxMiAwTDE0Ljc1ODQgOC4yMDM0NEwyMy40MTI3IDguMjkxOEwxNi40NjMxIDEzLjQ1MDJMMTkuMDUzNCAyMS43MDgyTDEyIDE2LjY5MjhaIiBmaWxsPSIjRjRGNUY2Ii8+CjxwYXRoIGQ9Ik0xMi4yODk3IDE2LjI4NTNMMTIgMTYuMDc5M0wxMS43MTAzIDE2LjI4NTNMNS44Njg3MSAyMC40MzlMOC4wMTM5NiAxMy41OTk4TDguMTIwMzcgMTMuMjYwNkw3LjgzNDg5IDEzLjA0ODdMMi4wNzkzNiA4Ljc3NjU5TDkuMjQ2NzQgOC43MDM0Mkw5LjYwMjI2IDguNjk5NzlMOS43MTU1NyA4LjM2MjhMMTIgMS41Njg4M0wxNC4yODQ0IDguMzYyOEwxNC4zOTc3IDguNjk5NzlMMTQuNzUzMyA4LjcwMzQyTDIxLjkyMDYgOC43NzY1OUwxNi4xNjUxIDEzLjA0ODdMMTUuODc5NiAxMy4yNjA2TDE1Ljk4NiAxMy41OTk4TDE4LjEzMTMgMjAuNDM5TDEyLjI4OTcgMTYuMjg1M1oiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjUiLz4KPC9zdmc+Cg==) 50% no-repeat;
}

/* line 3489, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels ul li.Red:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyNCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAxNi42OTI4TDQuOTQ2NTggMjEuNzA4Mkw3LjUzNjg4IDEzLjQ1MDJMMC41ODczMjIgOC4yOTE4TDkuMjQxNjQgOC4yMDM0NEwxMiAwTDE0Ljc1ODQgOC4yMDM0NEwyMy40MTI3IDguMjkxOEwxNi40NjMxIDEzLjQ1MDJMMTkuMDUzNCAyMS43MDgyTDEyIDE2LjY5MjhaIiBmaWxsPSIjQTcxRjM0Ii8+CjxwYXRoIGQ9Ik0xMi4yODk3IDE2LjI4NTNMMTIgMTYuMDc5M0wxMS43MTAzIDE2LjI4NTNMNS44Njg3MSAyMC40MzlMOC4wMTM5NiAxMy41OTk4TDguMTIwMzcgMTMuMjYwNkw3LjgzNDg5IDEzLjA0ODdMMi4wNzkzNiA4Ljc3NjU5TDkuMjQ2NzQgOC43MDM0Mkw5LjYwMjI2IDguNjk5NzlMOS43MTU1NyA4LjM2MjhMMTIgMS41Njg4M0wxNC4yODQ0IDguMzYyOEwxNC4zOTc3IDguNjk5NzlMMTQuNzUzMyA4LjcwMzQyTDIxLjkyMDYgOC43NzY1OUwxNi4xNjUxIDEzLjA0ODdMMTUuODc5NiAxMy4yNjA2TDE1Ljk4NiAxMy41OTk4TDE4LjEzMTMgMjAuNDM5TDEyLjI4OTcgMTYuMjg1M1oiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjUiLz4KPC9zdmc+Cg==) 50% no-repeat;
}

/* line 3494, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels p {
  color: #000;
  font-size: 14px;
  font-style: italic;
  line-height: 18px;
}

/* line 3500, resources/assets/styles/template-parts/_layouts.scss */

.foundation-accomplishments .donate-box .box .donate-levels .btn-donate {
  width: 100%;
}

/* line 3510, resources/assets/styles/template-parts/_layouts.scss */

.foundation-members {
  padding-bottom: 120px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3514, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-members .col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  /* line 3518, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-members .col-xs-6:last-child {
    margin-top: 50px;
  }

  /* line 3521, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-members .col-xs-6:last-child p {
    padding-left: 60px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3510, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-members {
    padding: 0 20px 50px 20px;
  }

  /* line 3534, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-members .col-xs-6:last-child p {
    padding-left: 0;
  }
}

/* line 3540, resources/assets/styles/template-parts/_layouts.scss */

.foundation-members .title-cnt {
  position: relative;
}

/* line 3543, resources/assets/styles/template-parts/_layouts.scss */

.foundation-members .title-cnt .superheader {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 15px;
  left: 0;
  margin-left: 70px;
  color: #101F3A;
  font-family: "Roboto-Bold";
  font-size: 14px;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 5;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3543, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-members .title-cnt .superheader {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3543, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-members .title-cnt .superheader {
    position: relative;
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0;
    top: 0;
  }
}

/* line 3570, resources/assets/styles/template-parts/_layouts.scss */

.foundation-members .title-cnt .superheader span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 24px;
  height: 24px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTMiIGN5PSIxMyIgcj0iMTIuNSIgc3Ryb2tlPSIjQjA4QzI4Ii8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTMuOTk5IDIwLjkyNThDMTMuNjM0OCAyMC45NzQ3IDEzLjI2MyAyMSAxMi44ODUgMjFDOS4wMjkwMiAyMSA1LjgwNDA2IDE4LjM2NzQgNSAxNC44NDYyQzcuNDc5NDQgMTcuMDYyNiAxMC45Mjc5IDE4LjE0NzQgMTQuODQ2MiAxNy42OTc5QzE0Ljg0MjUgMTcuNzg0MiAxNC44Mzc1IDE3Ljg3MDcgMTQuODMxMSAxNy45NTcyQzE0Ljc0NyAxOS4wOTA2IDE0LjQxNzggMjAuMTgyOCAxMy45OTkgMjAuOTI1OFpNMTUuNDggMjFDMTYuMDA4IDIwLjg0OTIgMTYuNTE0MyAyMC42NDkgMTYuOTkzMiAyMC40MDQ4QzE5LjQzNjIgMTYuMTM1IDE4Ljk0NDMgMTEuNzM3OCAxNS43ODgxIDkuMzA3NjlDMTUuMTkxIDEwLjQ3MDkgMTQuODY3MSAxMS43NjAxIDE0Ljg0NjIgMTMuMDc2NkMxNS44NTU2IDE0LjY2MjkgMTYuMjUgMTYuNDQ4MSAxNi4xMTU2IDE4LjI1OTFDMTYuMDQyNSAxOS4yNDM3IDE1LjgwODIgMjAuMjAzOSAxNS40OCAyMVpNMTguMjk1NyAxOS43NjkyQzE5Ljk1MzEgMTguMjU4IDIxIDE2LjAzNjUgMjEgMTMuNTU5OUMyMSAxMC43OTExIDE5LjY5MTYgOC4zNDExOSAxNy42ODQ2IDYuODQ2MTVDMTcuMDUyNCA3LjQwMzY4IDE2LjUxNDEgOC4wNDc3NiAxNi4wNzY5IDguNzUyOTRDMTYuMTEwNiA4Ljc2ODc5IDE2LjE0MyA4Ljc4OTExIDE2LjE3MzQgOC44MTRDMTkuMTk3OSAxMS4yOTI5IDE5Ljk0ODkgMTUuNTI4NCAxOC4yOTU3IDE5Ljc2OTJaTTE2LjY5MjMgNS43OTc5MUMxNi4wMzEzIDUuNDMyNzUgMTUuMzEzNCA1LjE2MDk4IDE0LjU1NTQgNUMxMi4yMDg5IDYuMDI1MTIgOS45Nzk1NiA4Ljk3NTY4IDkuOTIzMDggMTIuMDMxN0MxMS4wMzI2IDEyLjMwNzggMTIuMjY5MSAxMi40MjQyIDEzLjY0NDYgMTIuMzcyOEMxMy43Njc5IDkuODgwNjMgMTQuODM3NCA3LjUwMTQ4IDE2LjY5MjMgNS43OTc5MUwxNi42OTIzIDUuNzk3OTFaTTEzIDUuMDAwMDJDMTIuOTkzNyA1LjAwMDAxIDEyLjk4NzQgNSAxMi45ODEyIDVDOS42Nzk1MiA1IDYuODQ0MDQgNi45NTMzIDUuNjE1MzggOS43NDM1M0M2LjU2MDMyIDEwLjY0NSA3LjY3NTI0IDExLjMyNTIgOC45ODMzIDExLjc2OTJDOS4xMzQzNSA5LjAyMjMyIDEwLjg3OTMgNi40MjMyNiAxMyA1LjAwMDAyWk01LjMwMzAyIDEwLjUzODVDNS4xMDU2NiAxMS4yNTQzIDUgMTIuMDEwMSA1IDEyLjc5MTRDNSAxMi44NjA4IDUuMDAwODMgMTIuOTI5OSA1LjAwMjQ5IDEyLjk5ODlDNy4yODEyNiAxNS43MjEgMTAuNzY5IDE3LjEwNzMgMTQuODQ2MiAxNi41ODI4QzE0Ljc2MDcgMTUuNDE3IDE0LjQzMSAxNC4yODg1IDEzLjgzMDIgMTMuMjUzMkMxMC4xOTU3IDEzLjQyMDQgNy4zOTMgMTIuNDczNSA1LjMwMzAyIDEwLjUzODVaIiBmaWxsPSIjMTAxRjNBIi8+Cjwvc3ZnPgo=) 50% no-repeat;
  background-size: contain;
  margin-right: 20px;
}

/* line 3579, resources/assets/styles/template-parts/_layouts.scss */

.foundation-members .title-cnt .superheader span:after {
  position: absolute;
  content: '';
  top: 50%;
  right: -16px;
  height: 1px;
  width: 16px;
  background: #B08C28;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 3591, resources/assets/styles/template-parts/_layouts.scss */

.foundation-members .title-cnt h2 {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  position: relative;
  font-family: "Roboto-Black";
  font-size: 48px !important;
  line-height: 64px !important;
  margin: 0 0 20px 0;
  padding-left: 120px;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3591, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-members .title-cnt h2 {
    font-size: 36px !important;
    line-height: 42px !important;
    padding-left: 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3591, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-members .title-cnt h2 {
    font-size: 30px !important;
    line-height: 36px !important;
    padding-left: 0;
  }
}

/* line 3617, resources/assets/styles/template-parts/_layouts.scss */

.foundation-members .btn-anchor {
  margin: 30px 0 0 115px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 3617, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-members .btn-anchor {
    margin: 30px auto 0 60px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 3617, resources/assets/styles/template-parts/_layouts.scss */

  .foundation-members .btn-anchor {
    margin: 30px auto 0 0;
  }
}

/* line 3627, resources/assets/styles/template-parts/_layouts.scss */

.foundation-members p {
  font-size: 20px;
  line-height: 48px;
  margin: 0;
}

/* line 13, resources/assets/styles/template-parts/_accordion.scss */

.accordion {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* line 18, resources/assets/styles/template-parts/_accordion.scss */

.accordion .accordion-item {
  margin: 0 0 10px 0;
  background: #F3F4F5;
  border: 2px solid #DCE0E5;
}

/* line 23, resources/assets/styles/template-parts/_accordion.scss */

.accordion .accordion-item .accordion-trigger {
  display: block;
  position: relative;
  width: 100%;
  outline: none;
  background: transparent;
  border: none;
  margin: 0;
  padding: 30px 60px 30px 35px;
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #1C232C;
  letter-spacing: 0;
  text-align: left;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 23, resources/assets/styles/template-parts/_accordion.scss */

  .accordion .accordion-item .accordion-trigger {
    padding: 10px 60px 10px 20px;
  }
}

/* line 44, resources/assets/styles/template-parts/_accordion.scss */

.accordion .accordion-item .accordion-trigger[aria-expanded="true"] {
  background: #fff;
}

/* line 47, resources/assets/styles/template-parts/_accordion.scss */

.accordion .accordion-item .accordion-trigger[aria-expanded="true"] .accordion-icon {
  -webkit-transform: translate(0, -50%) rotate(180deg);
       -o-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

/* line 50, resources/assets/styles/template-parts/_accordion.scss */

.accordion .accordion-item .accordion-trigger:focus,
.accordion .accordion-item .accordion-trigger:hover {
  background: #fff;
  text-decoration: underline;
}

/* line 55, resources/assets/styles/template-parts/_accordion.scss */

.accordion .accordion-item .accordion-trigger:focus .accordion-icon,
.accordion .accordion-item .accordion-trigger:hover .accordion-icon {
  border: 1px solid #172642;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.15);
          box-shadow: 0 2px 4px 0 rgba(0,0,0,0.15);
}

/* line 60, resources/assets/styles/template-parts/_accordion.scss */

.accordion .accordion-item .accordion-trigger:focus {
  outline: 2px solid #CB9701;
  outline-offset: 2px;
}

/* line 65, resources/assets/styles/template-parts/_accordion.scss */

.accordion .accordion-item .accordion-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background: #fff;
  border: 1px solid #DCE0E5;
  -webkit-transform: translate(0, -50%) rotate(0deg);
       -o-transform: translate(0, -50%) rotate(0deg);
          transform: translate(0, -50%) rotate(0deg);
  z-index: -1;
  pointer-events: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 79, resources/assets/styles/template-parts/_accordion.scss */

.accordion .accordion-item .accordion-icon:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 10px;
  height: 6px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTJweCIgaGVpZ2h0PSI4cHgiIHZpZXdCb3g9IjAgMCAxMiA4IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlBhdGggMiBDb3B5IDY8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJFdmVudC1EZXRhaWwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDc2LjAwMDAwMCwgLTQ1NzIuMDAwMDAwKSIgc3Ryb2tlPSIjQTcxRjM0IiBzdHJva2Utd2lkdGg9IjIiPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAtOC1Db3B5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMDgyLjAwMDAwMCwgNDU3NS4wMDAwMDApIHJvdGF0ZSgtMjcwLjAwMDAwMCkgdHJhbnNsYXRlKC0xMDgyLjAwMDAwMCwgLTQ1NzUuMDAwMDAwKSB0cmFuc2xhdGUoMTA2NS4wMDAwMDAsIDQ1NTguMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWxpbmUgaWQ9IlBhdGgtMi1Db3B5LTYiIHBvaW50cz0iMTUgMTIgMjAgMTcgMTUgMjIiPjwvcG9seWxpbmU+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) 50% no-repeat;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 93, resources/assets/styles/template-parts/_accordion.scss */

.accordion-panel {
  padding: 25px 35px 25px 35px;
  background: #fff;
  border-top: 1px solid rgba(23,38,66,0.1);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 93, resources/assets/styles/template-parts/_accordion.scss */

  .accordion-panel {
    padding: 10px 0 10px 0;
  }
}

/* line 101, resources/assets/styles/template-parts/_accordion.scss */

.accordion-panel p {
  text-align: left;
}

/* line 106, resources/assets/styles/template-parts/_accordion.scss */

.accordion-panel[hidden] {
  display: none;
}

/* line 111, resources/assets/styles/template-parts/_accordion.scss */

.single-event .accordion .accordion-item {
  text-align: left;
}

/* line 13, resources/assets/styles/template-parts/_ads.scss */

.ad-box {
  padding: 35px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#E1E5EA), color-stop(99%, #F4F5F7));
  background-image: -webkit-linear-gradient(top, #E1E5EA 0%, #F4F5F7 99%);
  background-image: -o-linear-gradient(top, #E1E5EA 0%, #F4F5F7 99%);
  background-image: linear-gradient(180deg, #E1E5EA 0%, #F4F5F7 99%);
  text-align: center;
}

/* line 18, resources/assets/styles/template-parts/_ads.scss */

.ad-box a.desktop {
  display: block;
}

/* line 21, resources/assets/styles/template-parts/_ads.scss */

.ad-box a.tablet,
.ad-box a.mobile {
  display: none;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 13, resources/assets/styles/template-parts/_ads.scss */

  .ad-box {
    padding: 20px;
  }

  /* line 28, resources/assets/styles/template-parts/_ads.scss */

  .ad-box a.desktop {
    display: none;
  }

  /* line 31, resources/assets/styles/template-parts/_ads.scss */

  .ad-box a.tablet {
    display: block;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 13, resources/assets/styles/template-parts/_ads.scss */

  .ad-box {
    padding: 10px;
  }

  /* line 38, resources/assets/styles/template-parts/_ads.scss */

  .ad-box a.tablet {
    display: none;
  }

  /* line 41, resources/assets/styles/template-parts/_ads.scss */

  .ad-box a.mobile {
    display: block;
  }
}

/* line 47, resources/assets/styles/template-parts/_ads.scss */

.ad.square {
  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;
  min-width: 320px;
  padding: 20px 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#E1E5EA), color-stop(99%, #F4F5F7));
  background-image: -webkit-linear-gradient(top, #E1E5EA 0%, #F4F5F7 99%);
  background-image: -o-linear-gradient(top, #E1E5EA 0%, #F4F5F7 99%);
  background-image: linear-gradient(180deg, #E1E5EA 0%, #F4F5F7 99%);
}

/* line 55, resources/assets/styles/template-parts/_ads.scss */

.ad.square a.desktop {
  display: block;
}

/* line 58, resources/assets/styles/template-parts/_ads.scss */

.ad.square a.tablet,
.ad.square a.mobile {
  display: none;
}

/* line 62, resources/assets/styles/template-parts/_ads.scss */

.ad.square img {
  width: 300px;
  height: 250px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 67, resources/assets/styles/template-parts/_ads.scss */

  .ad.square a.desktop {
    display: none;
  }

  /* line 70, resources/assets/styles/template-parts/_ads.scss */

  .ad.square a.tablet {
    display: block;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 47, resources/assets/styles/template-parts/_ads.scss */

  .ad.square {
    padding: 10px;
    min-width: 270px;
  }

  /* line 78, resources/assets/styles/template-parts/_ads.scss */

  .ad.square a.tablet {
    display: none;
  }

  /* line 81, resources/assets/styles/template-parts/_ads.scss */

  .ad.square a.mobile {
    display: block;
  }

  /* line 84, resources/assets/styles/template-parts/_ads.scss */

  .ad.square img {
    width: 250px;
    height: 250px;
  }
}

/* line 14, resources/assets/styles/template-parts/_banners.scss */

.hero {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 75vh;
  padding: 0 120px;
  background: -webkit-gradient(linear, left top, right top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: linear-gradient(90deg, #172b59 0%, #c7314d 100%);
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 14, resources/assets/styles/template-parts/_banners.scss */

  .hero {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 14, resources/assets/styles/template-parts/_banners.scss */

  .hero {
    height: 500px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 14, resources/assets/styles/template-parts/_banners.scss */

  .hero {
    height: 300px;
    padding: 0 20px;
  }
}

/* line 35, resources/assets/styles/template-parts/_banners.scss */

.hero:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

/* line 45, resources/assets/styles/template-parts/_banners.scss */

.hero .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 2;
  opacity: .6;
}

/* line 58, resources/assets/styles/template-parts/_banners.scss */

.hero h1 {
  position: relative;
  z-index: 9;
}

/* line 62, resources/assets/styles/template-parts/_banners.scss */

.hero h1 span {
  display: block;
  width: 100%;
  color: #172642;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #172642;
}

/* line 74, resources/assets/styles/template-parts/_banners.scss */

.secondary {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 75vh;
  padding: 0 120px;
  background: -webkit-gradient(linear, left top, right top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: linear-gradient(90deg, #172b59 0%, #c7314d 100%);
}

/* line 85, resources/assets/styles/template-parts/_banners.scss */

.secondary.hof {
  background: #172642;
}

/* line 88, resources/assets/styles/template-parts/_banners.scss */

.secondary.hof .max-content-width {
  height: 100%;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 74, resources/assets/styles/template-parts/_banners.scss */

  .secondary {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 74, resources/assets/styles/template-parts/_banners.scss */

  .secondary {
    height: 500px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 74, resources/assets/styles/template-parts/_banners.scss */

  .secondary {
    height: 300px;
    padding: 0 20px;
  }
}

/* line 102, resources/assets/styles/template-parts/_banners.scss */

.secondary .max-content-width {
  position: relative;
  z-index: 5;
}

/* line 106, resources/assets/styles/template-parts/_banners.scss */

.secondary .breadcrumbs {
  background: rgba(23,38,66,0.6);
}

/* line 109, resources/assets/styles/template-parts/_banners.scss */

.secondary .breadcrumbs:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

/* line 119, resources/assets/styles/template-parts/_banners.scss */

.secondary .breadcrumbs li {
  color: #fff;
}

/* line 122, resources/assets/styles/template-parts/_banners.scss */

.secondary .breadcrumbs li:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 126, resources/assets/styles/template-parts/_banners.scss */

.secondary .breadcrumbs a {
  color: #fff;
}

/* line 130, resources/assets/styles/template-parts/_banners.scss */

.secondary.hof .breadcrumbs {
  background: rgba(15,24,40,0.6);
}

/* line 133, resources/assets/styles/template-parts/_banners.scss */

.secondary .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 2;
  opacity: .6;
}

/* line 146, resources/assets/styles/template-parts/_banners.scss */

.secondary .gold-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 2;
  opacity: .2;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

/* line 160, resources/assets/styles/template-parts/_banners.scss */

.secondary .gold-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 1;
  opacity: 1;
}

/* line 172, resources/assets/styles/template-parts/_banners.scss */

.secondary .back {
  position: absolute;
  top: 70px;
  left: 0;
  z-index: 91;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 172, resources/assets/styles/template-parts/_banners.scss */

  .secondary .back {
    top: 70px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 172, resources/assets/styles/template-parts/_banners.scss */

  .secondary .back {
    top: 20px;
  }
}

/* line 185, resources/assets/styles/template-parts/_banners.scss */

.secondary h1 {
  position: relative;
  z-index: 9;
}

/* line 189, resources/assets/styles/template-parts/_banners.scss */

.secondary h1 span {
  display: block;
  width: 100%;
  color: #172642;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #172642;
}

/* line 197, resources/assets/styles/template-parts/_banners.scss */

.secondary .hof-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  z-index: 8;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 197, resources/assets/styles/template-parts/_banners.scss */

  .secondary .hof-logo {
    position: relative;
    top: unset;
    left: unset;
    display: block;
    margin: 75px auto;
    width: 180px;
    height: 180px;
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

/* line 217, resources/assets/styles/template-parts/_banners.scss */

.secondary .btn-play:focus {
  outline: 2px solid #fff;
  outline-offset: 8px;
}

/* line 221, resources/assets/styles/template-parts/_banners.scss */

.secondary .title-cnt {
  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;
}

/* line 226, resources/assets/styles/template-parts/_banners.scss */

.secondary .title-cnt a {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
  margin-top: 85px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 226, resources/assets/styles/template-parts/_banners.scss */

  .secondary .title-cnt a {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    top: 20px;
  }

  /* line 242, resources/assets/styles/template-parts/_banners.scss */

  .secondary .title-cnt a span {
    display: none;
  }

  /* line 245, resources/assets/styles/template-parts/_banners.scss */

  .secondary .title-cnt a:after {
    width: 54px;
    height: 54px;
    border: 2px solid #A71F34;
  }

  /* line 250, resources/assets/styles/template-parts/_banners.scss */

  .secondary .title-cnt a:before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-size: 100%;
    width: 14px;
    height: 16px;
  }
}

/* line 262, resources/assets/styles/template-parts/_banners.scss */

.secondary-alt {
  max-height: 550px;
  background: #101F3A;
  overflow: hidden;
}

/* line 267, resources/assets/styles/template-parts/_banners.scss */

.secondary-alt .max-content-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 272, resources/assets/styles/template-parts/_banners.scss */

.secondary-alt .max-content-width p {
  color: #fff;
  text-align: center;
  font-family: "Roboto-Bold";
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}

/* line 282, resources/assets/styles/template-parts/_banners.scss */

.secondary-alt .max-content-width h1 {
  font-size: 72px !important;
  line-height: 72px !important;
  text-align: center;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 282, resources/assets/styles/template-parts/_banners.scss */

  .secondary-alt .max-content-width h1 {
    font-size: 40px !important;
    line-height: 48px !important;
  }
}

/* line 293, resources/assets/styles/template-parts/_banners.scss */

.secondary-alt .image {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  mix-blend-mode: overlay;
  background-blend-mode: normal;
}

/* line 298, resources/assets/styles/template-parts/_banners.scss */

.secondary-alt:after {
  position: absolute;
  content: '';
  bottom: -20px;
  right: 0;
  width: 764px;
  height: 447px;
  background: url(/wp-content/themes/usav-theme/dist/images/banner-gold.svg) 50% no-repeat;
  background-size: contain;
  z-index: 2;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 298, resources/assets/styles/template-parts/_banners.scss */

  .secondary-alt:after {
    width: 564px;
    height: 247px;
    right: -80px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 298, resources/assets/styles/template-parts/_banners.scss */

  .secondary-alt:after {
    width: 464px;
    height: 147px;
    right: -110px;
  }
}

/* line 325, resources/assets/styles/template-parts/_banners.scss */

.tertiary {
  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;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 40px;
  border-bottom: 14px solid #A71F34;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 325, resources/assets/styles/template-parts/_banners.scss */

  .tertiary {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 325, resources/assets/styles/template-parts/_banners.scss */

  .tertiary {
    padding: 0 10px;
  }
}

/* line 342, resources/assets/styles/template-parts/_banners.scss */

.tertiary .breadcrumbs {
  background: rgba(23,38,66,0.04);
}

/* line 345, resources/assets/styles/template-parts/_banners.scss */

.tertiary .breadcrumbs li {
  color: #1C232C;
}

/* line 348, resources/assets/styles/template-parts/_banners.scss */

.tertiary .breadcrumbs li:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 352, resources/assets/styles/template-parts/_banners.scss */

.tertiary .breadcrumbs a {
  color: #1C232C;
}

/* line 356, resources/assets/styles/template-parts/_banners.scss */

.tertiary .back {
  position: absolute;
  top: 70px;
  left: 0;
  z-index: 91;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 356, resources/assets/styles/template-parts/_banners.scss */

  .tertiary .back {
    position: relative;
    top: 70px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 356, resources/assets/styles/template-parts/_banners.scss */

  .tertiary .back {
    top: 20px;
  }
}

/* line 370, resources/assets/styles/template-parts/_banners.scss */

.tertiary .title-wrapper {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9;
  padding: 75px 0 125px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 370, resources/assets/styles/template-parts/_banners.scss */

  .tertiary .title-wrapper {
    padding: 35px 0 75px 0;
  }
}

/* line 381, resources/assets/styles/template-parts/_banners.scss */

.tertiary .title-wrapper .supheader {
  margin: 0;
}

/* line 384, resources/assets/styles/template-parts/_banners.scss */

.tertiary .title-wrapper .sponsor-box {
  margin-bottom: 25px;
}

/* line 387, resources/assets/styles/template-parts/_banners.scss */

.tertiary .title-wrapper h1 {
  display: block;
  margin: 0 auto;
  color: #1C232C;
  text-align: center;
  max-width: 950px;
}

/* line 395, resources/assets/styles/template-parts/_banners.scss */

.tertiary:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 258px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA0PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iQXRobGV0ZXMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zOC4wMDAwMDAsIC0yMjYuMDAwMDAwKSIgc3Ryb2tlPSIjRTRFOUYxIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE2NCwyMjcuNDMxMTc0IEwxOTQuMDEyOTc5LDMxNi42OTA2NzggTDI4OC4xNzgzMzIsMzE3LjY1MjAxNCBMMjEyLjU2MjAyLDM3My43Nzg3NTcgTDI0MC43NDY0Myw0NjMuNjMyMzk5IEwxNjQsNDA5LjA2MTEzIEw4Ny4yNTM1Njk5LDQ2My42MzIzOTkgTDExNS40Mzc5OCwzNzMuNzc4NzU3IEwzOS44MjE2Njc2LDMxNy42NTIwMTQgTDEzMy45ODcwMjEsMzE2LjY5MDY3OCBMMTY0LDIyNy40MzExNzQgWiIgaWQ9IlN0YXItQ29weS00Ij48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% space;
  z-index: 2;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 395, resources/assets/styles/template-parts/_banners.scss */

  .tertiary:before {
    height: 158px;
    background-size: auto 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 395, resources/assets/styles/template-parts/_banners.scss */

  .tertiary:before {
    height: 60px;
    bottom: 40px;
  }
}

/* line 414, resources/assets/styles/template-parts/_banners.scss */

.tertiary:after {
  position: absolute;
  content: '';
  bottom: 24px;
  left: 0;
  width: 100%;
  height: 14px;
  background: #172642;
  z-index: 5;
}

/* line 426, resources/assets/styles/template-parts/_banners.scss */

.tertiary.timeline-styles .title-wrapper {
  padding: 90px 0 102px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 426, resources/assets/styles/template-parts/_banners.scss */

  .tertiary.timeline-styles .title-wrapper {
    padding: 35px 0 75px;
  }
}

/* line 433, resources/assets/styles/template-parts/_banners.scss */

.tertiary.timeline-styles .supheader {
  color: #a9112b;
}

/* line 437, resources/assets/styles/template-parts/_banners.scss */

.tertiary.timeline-styles h1 {
  color: #1b232d;
}

/* line 441, resources/assets/styles/template-parts/_banners.scss */

.tertiary.timeline-styles:after {
  bottom: 15px;
}

/* line 449, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image {
  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;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 40px;
  background: -webkit-gradient(linear, left top, right top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: linear-gradient(90deg, #172b59 0%, #c7314d 100%);
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 449, resources/assets/styles/template-parts/_banners.scss */

  .tertiary-image {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 449, resources/assets/styles/template-parts/_banners.scss */

  .tertiary-image {
    padding: 0 10px;
  }
}

/* line 466, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .breadcrumbs {
  background: rgba(23,38,66,0.6);
}

/* line 469, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .breadcrumbs:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

/* line 479, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .breadcrumbs li {
  color: #fff;
}

/* line 482, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .breadcrumbs li:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 486, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .breadcrumbs a {
  color: #fff;
}

/* line 490, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .back {
  position: absolute;
  top: 70px;
  left: 0;
  z-index: 91;
}

/* line 496, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .back:focus {
  outline: 3px solid #CB9701;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 490, resources/assets/styles/template-parts/_banners.scss */

  .tertiary-image .back {
    position: relative;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 490, resources/assets/styles/template-parts/_banners.scss */

  .tertiary-image .back {
    top: 20px;
  }
}

/* line 506, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .title-wrapper {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9;
  padding: 75px 0 125px 0;
}

/* line 514, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .title-wrapper .supheader {
  margin: 0;
}

/* line 517, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .title-wrapper .sponsor-box {
  margin-bottom: 25px;
}

/* line 520, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .title-wrapper h1 {
  display: block;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  max-width: 950px;
  font-family: "Roboto-Bold";
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 80px;
  line-height: 5rem;
  letter-spacing: 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 520, resources/assets/styles/template-parts/_banners.scss */

  .tertiary-image .title-wrapper h1 {
    font-size: 42px;
    font-size: 2.625rem;
    line-height: 50px;
    line-height: 3.125rem;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 520, resources/assets/styles/template-parts/_banners.scss */

  .tertiary-image .title-wrapper h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 40px;
    line-height: 2.5rem;
  }
}

/* line 538, resources/assets/styles/template-parts/_banners.scss */

.tertiary-image .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 2;
  opacity: .6;
}

/* line 555, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video {
  position: relative;
  width: 100%;
  height: auto;
}

/* line 560, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .top-banner {
  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;
  position: relative;
  width: 100%;
  height: 425px;
  padding: 0 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#10182A), color-stop(77%, #172B59));
  background-image: -webkit-linear-gradient(top, #10182A 0%, #172B59 77%);
  background-image: -o-linear-gradient(top, #10182A 0%, #172B59 77%);
  background-image: linear-gradient(180deg, #10182A 0%, #172B59 77%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 560, resources/assets/styles/template-parts/_banners.scss */

  .tertiary-video .top-banner {
    height: auto;
    padding: 40px 10px;
  }
}

/* line 575, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .top-banner:before {
  position: absolute;
  content: '';
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 258px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA0PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iQXRobGV0ZXMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zOC4wMDAwMDAsIC0yMjYuMDAwMDAwKSIgc3Ryb2tlPSIjRTRFOUYxIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE2NCwyMjcuNDMxMTc0IEwxOTQuMDEyOTc5LDMxNi42OTA2NzggTDI4OC4xNzgzMzIsMzE3LjY1MjAxNCBMMjEyLjU2MjAyLDM3My43Nzg3NTcgTDI0MC43NDY0Myw0NjMuNjMyMzk5IEwxNjQsNDA5LjA2MTEzIEw4Ny4yNTM1Njk5LDQ2My42MzIzOTkgTDExNS40Mzc5OCwzNzMuNzc4NzU3IEwzOS44MjE2Njc2LDMxNy42NTIwMTQgTDEzMy45ODcwMjEsMzE2LjY5MDY3OCBMMTY0LDIyNy40MzExNzQgWiIgaWQ9IlN0YXItQ29weS00Ij48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% space;
  z-index: 2;
  opacity: .2;
}

/* line 587, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .breadcrumbs {
  background: rgba(23,38,66,0.6);
}

/* line 590, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .breadcrumbs:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

/* line 600, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .breadcrumbs li {
  color: #fff;
}

/* line 603, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .breadcrumbs li:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 607, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .breadcrumbs a {
  color: #fff;
}

/* line 612, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .featured-video {
  position: relative;
  top: -345px;
  left: 50%;
  width: calc(100% - 22px);
  max-width: 1200px;
  height: auto;
  z-index: 99;
  margin-bottom: -345px;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 612, resources/assets/styles/template-parts/_banners.scss */

  .tertiary-video .featured-video {
    display: none;
  }
}

/* line 626, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .featured-video:after {
  position: absolute;
  content: '';
  top: -11px;
  left: 0;
  width: 100%;
  height: calc(100% + 22px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 636, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .featured-video .inline-video {
  display: block;
  position: relative;
  margin: 0 auto;
  width: calc(100% - 22px);
  max-width: 100%;
  height: auto;
  z-index: 9;
}

/* line 645, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .featured-video .inline-video .video-holder {
  padding-top: 56.25%;
}

/* line 648, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .featured-video .inline-video .video-holder video-js {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

/* line 660, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .mobile-featured-video {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  width: calc(100% - 22px);
  max-width: 1200px;
  height: auto;
  z-index: 99;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 660, resources/assets/styles/template-parts/_banners.scss */

  .tertiary-video .mobile-featured-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 673, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .mobile-featured-video:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 683, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .mobile-featured-video .inline-video {
  display: block;
  position: relative;
  margin: 11px auto;
  width: calc(100% - 22px);
  max-width: 100%;
  height: auto;
  z-index: 9;
}

/* line 692, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .mobile-featured-video .inline-video .video-holder {
  padding-top: 56.25%;
}

/* line 695, resources/assets/styles/template-parts/_banners.scss */

.tertiary-video .mobile-featured-video .inline-video .video-holder video-js {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

/* line 711, resources/assets/styles/template-parts/_banners.scss */

.post-header {
  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;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 435px;
  padding: 0 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#10182A), color-stop(77%, #172B59));
  background-image: -webkit-linear-gradient(top, #10182A 0%, #172B59 77%);
  background-image: -o-linear-gradient(top, #10182A 0%, #172B59 77%);
  background-image: linear-gradient(180deg, #10182A 0%, #172B59 77%);
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 711, resources/assets/styles/template-parts/_banners.scss */

  .post-header {
    padding: 70px 10px 0 10px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 711, resources/assets/styles/template-parts/_banners.scss */

  .post-header {
    padding: 20px 10px 0 10px;
  }
}

/* line 729, resources/assets/styles/template-parts/_banners.scss */

.post-header .breadcrumbs {
  background: rgba(23,38,66,0.6);
}

/* line 732, resources/assets/styles/template-parts/_banners.scss */

.post-header .breadcrumbs:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

/* line 742, resources/assets/styles/template-parts/_banners.scss */

.post-header .breadcrumbs li {
  color: #fff;
}

/* line 745, resources/assets/styles/template-parts/_banners.scss */

.post-header .breadcrumbs li:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 749, resources/assets/styles/template-parts/_banners.scss */

.post-header .breadcrumbs a {
  color: #fff;
}

/* line 753, resources/assets/styles/template-parts/_banners.scss */

.post-header .back {
  position: absolute;
  top: 70px;
  left: 40px;
  z-index: 91;
}

/* line 759, resources/assets/styles/template-parts/_banners.scss */

.post-header .back:focus {
  outline: 3px solid #CB9701;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 753, resources/assets/styles/template-parts/_banners.scss */

  .post-header .back {
    position: relative;
    top: unset;
    left: unset;
    margin: 0 auto 20px 0;
  }
}

/* line 769, resources/assets/styles/template-parts/_banners.scss */

.post-header .title-wrapper {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9;
  padding: 75px 150px 120px 150px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 769, resources/assets/styles/template-parts/_banners.scss */

  .post-header .title-wrapper {
    padding: 0 50px 150px 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 769, resources/assets/styles/template-parts/_banners.scss */

  .post-header .title-wrapper {
    padding: 0 10px 150px 10px;
    text-align: center;
  }
}

/* line 785, resources/assets/styles/template-parts/_banners.scss */

.post-header .title-wrapper .supheader {
  color: #fff;
}

/* line 788, resources/assets/styles/template-parts/_banners.scss */

.post-header .title-wrapper h1 {
  text-align: center;
}

/* line 792, resources/assets/styles/template-parts/_banners.scss */

.post-header:before {
  position: absolute;
  content: '';
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 258px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA0PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iQXRobGV0ZXMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zOC4wMDAwMDAsIC0yMjYuMDAwMDAwKSIgc3Ryb2tlPSIjRTRFOUYxIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE2NCwyMjcuNDMxMTc0IEwxOTQuMDEyOTc5LDMxNi42OTA2NzggTDI4OC4xNzgzMzIsMzE3LjY1MjAxNCBMMjEyLjU2MjAyLDM3My43Nzg3NTcgTDI0MC43NDY0Myw0NjMuNjMyMzk5IEwxNjQsNDA5LjA2MTEzIEw4Ny4yNTM1Njk5LDQ2My42MzIzOTkgTDExNS40Mzc5OCwzNzMuNzc4NzU3IEwzOS44MjE2Njc2LDMxNy42NTIwMTQgTDEzMy45ODcwMjEsMzE2LjY5MDY3OCBMMTY0LDIyNy40MzExNzQgWiIgaWQ9IlN0YXItQ29weS00Ij48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% space;
  z-index: 2;
  opacity: .2;
}

/* line 807, resources/assets/styles/template-parts/_banners.scss */

.athlete-header {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 435px;
  padding: 0 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#10182A), color-stop(77%, #172B59));
  background-image: -webkit-linear-gradient(top, #10182A 0%, #172B59 77%);
  background-image: -o-linear-gradient(top, #10182A 0%, #172B59 77%);
  background-image: linear-gradient(180deg, #10182A 0%, #172B59 77%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 807, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header {
    padding: 0 10px;
  }
}

/* line 819, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .breadcrumbs {
  background: rgba(23,38,66,0.6);
}

/* line 822, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .breadcrumbs:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

/* line 832, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .breadcrumbs li {
  color: #fff;
}

/* line 835, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .breadcrumbs li:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 839, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .breadcrumbs a {
  color: #fff;
}

/* line 843, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .row {
  min-height: 435px;
}

/* line 846, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .row .col-xs-6 {
  position: relative;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 846, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .row .col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 855, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info {
  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;
  margin: 70px 0 0 0;
  height: calc(100% - 70px);
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 855, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-info {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 30px 0 0 0;
    height: auto;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 855, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-info {
    margin: 75px 0 0 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 855, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-info {
    margin: 35px 0 0 0;
  }
}

/* line 875, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .back {
  position: relative;
  max-width: 105px;
  z-index: 91;
  margin-bottom: 25px;
}

/* line 881, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .back:focus {
  outline: 3px solid #CB9701;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 875, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-info .back {
    margin: 0 auto 25px 0;
  }
}

/* line 888, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .title-wrapper {
  position: relative;
  z-index: 9;
}

/* line 892, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .title-wrapper .supheader {
  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;
  color: #fff;
  margin: 0;
}

/* line 899, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .title-wrapper .supheader img,
.athlete-header .athlete-info .title-wrapper .supheader svg {
  margin-right: 15px;
  max-width: 50px;
}

/* line 904, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .title-wrapper h1 {
  font-family: "Roboto-Bold";
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 80px;
  line-height: 5rem;
  color: #FEFEFE;
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 904, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-info .title-wrapper h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 43px;
    line-height: 2.6875rem;
    margin: 20px 0 0 0;
  }
}

/* line 914, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .title-wrapper h1 span {
  font-family: "Roboto-Thin";
}

/* line 919, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .social {
  list-style: none;
  padding: 0;
  margin: 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;
  position: relative;
  bottom: -25px;
  z-index: 9;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 919, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-info .social {
    bottom: 0;
    margin-top: 20px;
  }
}

/* line 934, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .social li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 54px;
  height: 54px;
  -ms-flex-preferred-size: 54px;
      flex-basis: 54px;
  max-width: 54px;
  margin-right: 20px;
  border: 4px solid #A71F34;
  border-radius: 100%;
  background: #172642;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 947, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .social li:last-child {
  margin-right: 0;
}

/* line 950, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .social li:before {
  position: absolute;
  content: '';
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 100%;
  border: 2px solid #fff;
  z-index: 2;
}

/* line 961, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .social li:hover {
  background: #A71F34;
  border: 4px solid #172642;
}

/* line 965, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .social li a {
  display: block;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}

/* line 972, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .social li a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 3px solid #CB9701;
}

/* line 977, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-info .social li img,
.athlete-header .athlete-info .social li svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}

/* line 987, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt {
  position: absolute;
  top: 105px;
  left: 50%;
  z-index: 9;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 987, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-cnt {
    position: relative;
    top: 0;
    margin-top: 50px;
  }
}

/* line 999, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .athlete-photo {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 550px;
  height: 550px;
  border-radius: 100%;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 999, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-cnt .athlete-photo {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 999, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-cnt .athlete-photo {
    width: 250px;
    height: 250px;
  }
}

/* line 1014, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .athlete-photo:before {
  position: absolute;
  content: '';
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background-image: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background-image: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background-image: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  border-radius: 100%;
  z-index: 2;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1014, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-cnt .athlete-photo:before {
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }
}

/* line 1032, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .athlete-photo .photo {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
}

/* line 1041, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .athlete-photo .photo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

/* line 1048, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .medals {
  position: relative;
  top: -30px;
  z-index: 99;
  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;
  padding: 4px;
  margin: 0 80px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1048, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-cnt .medals {
    margin: 0 auto;
  }
}

/* line 1062, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .medals:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background-image: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background-image: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background-image: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 2;
}

/* line 1072, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .medals:before {
  position: absolute;
  content: '';
  bottom: -8px;
  left: 20px;
  right: 20px;
  height: 84px;
  z-index: 2;
  background: #000;
  opacity: .4;
  -webkit-filter: blur(17px);
          filter: blur(17px);
}

/* line 1084, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .medals .cnt {
  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;
  position: relative;
  z-index: 5;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 30px 60px 10px 60px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1084, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-cnt .medals .cnt {
    padding: 30px 20px 10px 20px;
  }
}

/* line 1099, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .medals .cnt>div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 68px;
  height: auto;
  margin-right: 50px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1099, resources/assets/styles/template-parts/_banners.scss */

  .athlete-header .athlete-cnt .medals .cnt>div {
    margin-right: 20px;
  }
}

/* line 1111, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .medals .cnt>div:last-child {
  margin-right: 0;
}

/* line 1114, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .medals .cnt>div .medal {
  display: block;
  width: 68px;
  height: 68px;
  font-family: "Roboto-Bold";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 60px;
  line-height: 3.75rem;
  letter-spacing: 0;
  text-align: center;
  border-radius: 100%;
}

/* line 1124, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .medals .cnt>div.gold .medal {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#C08D2D), to(#F8E697));
  background-image: -webkit-linear-gradient(top, #C08D2D 0%, #F8E697 100%);
  background-image: -o-linear-gradient(top, #C08D2D 0%, #F8E697 100%);
  background-image: linear-gradient(180deg, #C08D2D 0%, #F8E697 100%);
  border: 5px solid #CDA637;
  color: #1C232C;
}

/* line 1129, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .medals .cnt>div.silver .medal {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(1%, #FAF9FA), color-stop(54%, #C1C1C1), to(#8A8A8A));
  background-image: -webkit-linear-gradient(bottom, #FAF9FA 1%, #C1C1C1 54%, #8A8A8A 100%);
  background-image: -o-linear-gradient(bottom, #FAF9FA 1%, #C1C1C1 54%, #8A8A8A 100%);
  background-image: linear-gradient(0deg, #FAF9FA 1%, #C1C1C1 54%, #8A8A8A 100%);
  border: 5px solid #8F8F8F;
  color: #1C232C;
}

/* line 1134, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .medals .cnt>div.bronze .medal {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#D09455), to(#935D25));
  background-image: -webkit-linear-gradient(bottom, #D09455 0%, #935D25 100%);
  background-image: -o-linear-gradient(bottom, #D09455 0%, #935D25 100%);
  background-image: linear-gradient(0deg, #D09455 0%, #935D25 100%);
  border: 5px solid #8F581D;
  color: #fff;
}

/* line 1139, resources/assets/styles/template-parts/_banners.scss */

.athlete-header .athlete-cnt .medals .cnt>div p {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #172642;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

/* line 1152, resources/assets/styles/template-parts/_banners.scss */

.athlete-header:before {
  position: absolute;
  content: '';
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 258px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA0PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iQXRobGV0ZXMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zOC4wMDAwMDAsIC0yMjYuMDAwMDAwKSIgc3Ryb2tlPSIjRTRFOUYxIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE2NCwyMjcuNDMxMTc0IEwxOTQuMDEyOTc5LDMxNi42OTA2NzggTDI4OC4xNzgzMzIsMzE3LjY1MjAxNCBMMjEyLjU2MjAyLDM3My43Nzg3NTcgTDI0MC43NDY0Myw0NjMuNjMyMzk5IEwxNjQsNDA5LjA2MTEzIEw4Ny4yNTM1Njk5LDQ2My42MzIzOTkgTDExNS40Mzc5OCwzNzMuNzc4NzU3IEwzOS44MjE2Njc2LDMxNy42NTIwMTQgTDEzMy45ODcwMjEsMzE2LjY5MDY3OCBMMTY0LDIyNy40MzExNzQgWiIgaWQ9IlN0YXItQ29weS00Ij48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% space;
  z-index: 2;
  opacity: .2;
}

/* line 1165, resources/assets/styles/template-parts/_banners.scss */

.athlete-meta {
  padding: 60px 120px;
  min-height: 380px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 1165, resources/assets/styles/template-parts/_banners.scss */

  .athlete-meta {
    padding: 60px 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1165, resources/assets/styles/template-parts/_banners.scss */

  .athlete-meta {
    padding: 60px 20px;
  }

  /* line 1175, resources/assets/styles/template-parts/_banners.scss */

  .athlete-meta .max-content-width>.row>.col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1165, resources/assets/styles/template-parts/_banners.scss */

  .athlete-meta {
    padding: 35px 10px;
  }
}

/* line 1183, resources/assets/styles/template-parts/_banners.scss */

.athlete-meta .meta-label {
  font-family: "RobotoCondensed-Regular";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #1C232C;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* line 1191, resources/assets/styles/template-parts/_banners.scss */

.athlete-meta .meta-data {
  font-family: "Roboto-Bold";
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0 0 25px 0;
}

/* line 1201, resources/assets/styles/template-parts/_banners.scss */

.banner-announcement {
  position: relative;
  margin-top: -50px;
  width: calc(100% - 240px);
  max-width: 1680px;
  left: 50%;
  padding: 30px 60px 30px 25px;
  background: #A71F34;
  border: 2px solid rgba(255,255,255,0.25);
  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;
  z-index: 95;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 1201, resources/assets/styles/template-parts/_banners.scss */

  .banner-announcement {
    width: calc(100% - 50px);
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  /* line 1201, resources/assets/styles/template-parts/_banners.scss */

  .banner-announcement {
    width: calc(100% - 20px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  /* line 1225, resources/assets/styles/template-parts/_banners.scss */

  .banner-announcement a {
    margin-top: 25px;
  }
}

/* line 1229, resources/assets/styles/template-parts/_banners.scss */

.banner-announcement .close {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 14px;
  height: 14px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTQgMTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiBjb2xvcjwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cG9seWdvbiBpZD0icGF0aC0xIiBwb2ludHM9IjEzOTkgODQuNDEgMTM5Ny41OSA4MyAxMzkyIDg4LjU5IDEzODYuNDEgODMgMTM4NSA4NC40MSAxMzkwLjU5IDkwIDEzODUgOTUuNTkgMTM4Ni40MSA5NyAxMzkyIDkxLjQxIDEzOTcuNTkgOTcgMTM5OSA5NS41OSAxMzkzLjQxIDkwIj48L3BvbHlnb24+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iQWx0ZXJuYXRlcy0mYW1wOy1Ib3ZlcnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJTZWFyY2gtRHJvcGRvd24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMzg1LjAwMDAwMCwgLTgzLjAwMDAwMCkiPgogICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgIDx1c2UgaWQ9Ikljb24tY29sb3IiIGZpbGw9IiNGRUZFRkUiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  /* line 1229, resources/assets/styles/template-parts/_banners.scss */

  .banner-announcement .close {
    top: 0;
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

/* line 1242, resources/assets/styles/template-parts/_banners.scss */

.banner-announcement .close span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 1249, resources/assets/styles/template-parts/_banners.scss */

.banner-announcement p {
  font-family: "Roboto-Regular";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #FEFEFE;
  letter-spacing: 0;
  margin: 0;
}

/* line 1256, resources/assets/styles/template-parts/_banners.scss */

.banner-announcement p strong {
  font-family: "Roboto-Bold";
}

/* line 1262, resources/assets/styles/template-parts/_banners.scss */

.search-banner {
  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: relative;
  width: 100%;
  background: #172642;
  padding: 20px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1272, resources/assets/styles/template-parts/_banners.scss */

  .search-banner .col-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 1277, resources/assets/styles/template-parts/_banners.scss */

.search-banner:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

/* line 1287, resources/assets/styles/template-parts/_banners.scss */

.search-banner:after {
  position: absolute;
  content: '';
  bottom: -28px;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 2;
  background: #A71F34;
}

/* line 1297, resources/assets/styles/template-parts/_banners.scss */

.search-banner form {
  text-align: left;
}

/* line 1300, resources/assets/styles/template-parts/_banners.scss */

.search-banner form label,
.search-banner form p {
  color: #fff;
  margin: 0;
}

/* line 1305, resources/assets/styles/template-parts/_banners.scss */

.search-banner form .cnt {
  position: relative;
  margin: 0 0 10px 0;
}

/* line 1309, resources/assets/styles/template-parts/_banners.scss */

.search-banner form .cnt input[type="search"] {
  background: transparent !important;
  font-family: "Roboto-Bold" !important;
  font-size: 36px !important;
  font-size: 2.25rem !important;
  line-height: 40px !important;
  line-height: 2.5rem !important;
  color: #fff;
  letter-spacing: 0 !important;
  border: none !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid #fff !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1309, resources/assets/styles/template-parts/_banners.scss */

  .search-banner form .cnt input[type="search"] {
    font-size: 20px !important;
    font-size: 1.25rem !important;
    line-height: 24px !important;
    line-height: 1.5rem !important;
  }
}

/* line 1329, resources/assets/styles/template-parts/_banners.scss */

.search-banner form .cnt input[type="submit"] {
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  text-indent: -9999px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTdweCIgaGVpZ2h0PSIxN3B4IiB2aWV3Qm94PSIwIDAgMTcgMTciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiBjb2xvcjwvdGl0bGU+CiAgICA8ZyBpZD0iQWx0ZXJuYXRlcy0mYW1wOy1Ib3ZlcnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJTZWFyY2gtRHJvcGRvd24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDM1LjAwMDAwMCwgLTIwMi4wMDAwMDApIiBmaWxsPSIjRkZGRkZGIj4KICAgICAgICAgICAgPHBhdGggZD0iTTEwNDcuMTQ5OCwyMTIuNjkxODI0IEwxMDQ2LjM4MTkzLDIxMi42OTE4MjQgTDEwNDYuMTA5NzgsMjEyLjQyOTM4OCBDMTA0Ny4wNjIzMiwyMTEuMzIxMzI2IDEwNDcuNjM1NzksMjA5Ljg4Mjc5IDEwNDcuNjM1NzksMjA4LjMxNzg5NiBDMTA0Ny42MzU3OSwyMDQuODI4NDczIDEwNDQuODA3MzIsMjAyIDEwNDEuMzE3OSwyMDIgQzEwMzcuODI4NDcsMjAyIDEwMzUsMjA0LjgyODQ3MyAxMDM1LDIwOC4zMTc4OTYgQzEwMzUsMjExLjgwNzMxOCAxMDM3LjgyODQ3LDIxNC42MzU3OTIgMTA0MS4zMTc5LDIxNC42MzU3OTIgQzEwNDIuODgyNzksMjE0LjYzNTc5MiAxMDQ0LjMyMTMzLDIxNC4wNjIzMjEgMTA0NS40MjkzOSwyMTMuMTA5Nzc3IEwxMDQ1LjY5MTgyLDIxMy4zODE5MzMgTDEwNDUuNjkxODIsMjE0LjE0OTggTDEwNTAuNTUxNzQsMjE5IEwxMDUyLDIxNy41NTE3NDQgTDEwNDcuMTQ5OCwyMTIuNjkxODI0IFogTTEwNDEuMzE3OSwyMTIuNjkxODI0IEMxMDM4Ljg5NzY2LDIxMi42OTE4MjQgMTAzNi45NDM5NywyMTAuNzM4MTM2IDEwMzYuOTQzOTcsMjA4LjMxNzg5NiBDMTAzNi45NDM5NywyMDUuODk3NjU2IDEwMzguODk3NjYsMjAzLjk0Mzk2OCAxMDQxLjMxNzksMjAzLjk0Mzk2OCBDMTA0My43MzgxNCwyMDMuOTQzOTY4IDEwNDUuNjkxODIsMjA1Ljg5NzY1NiAxMDQ1LjY5MTgyLDIwOC4zMTc4OTYgQzEwNDUuNjkxODIsMjEwLjczODEzNiAxMDQzLjczODE0LDIxMi42OTE4MjQgMTA0MS4zMTc5LDIxMi42OTE4MjQgWiIgaWQ9Ikljb24tY29sb3IiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) 50% no-repeat;
  background-size: 100%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  cursor: pointer;
  z-index: 9;
}

/* line 1349, resources/assets/styles/template-parts/_banners.scss */

.contact-banner {
  padding: 50px 120px 0 120px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 1349, resources/assets/styles/template-parts/_banners.scss */

  .contact-banner {
    padding: 50px 40px 0 40px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1349, resources/assets/styles/template-parts/_banners.scss */

  .contact-banner {
    padding: 50px 20px 0 20px;
  }
}

/* line 1358, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .contact-cnt {
  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;
}

/* line 1363, resources/assets/styles/template-parts/_banners.scss */

.contact-banner p {
  position: relative;
  z-index: 9;
}

/* line 1367, resources/assets/styles/template-parts/_banners.scss */

.contact-banner h1 {
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 80px;
  line-height: 5rem;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1367, resources/assets/styles/template-parts/_banners.scss */

  .contact-banner h1 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

/* line 1375, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .contact-info {
  position: relative;
  z-index: 9;
  margin: 50px 0;
}

/* line 1380, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .contact-info .title {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0;
}

/* line 1387, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .contact-info ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

/* line 1392, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .contact-info ul li {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #1C232C;
  letter-spacing: 0;
}

/* line 1400, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .social {
  list-style: none;
  padding: 0;
  margin: 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;
  position: relative;
  z-index: 9;
  padding-bottom: 50px;
}

/* line 1411, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .social li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 54px;
  height: 54px;
  -ms-flex-preferred-size: 54px;
      flex-basis: 54px;
  max-width: 54px;
  margin-right: 20px;
  border: 4px solid #A71F34;
  border-radius: 100%;
  background: #172642;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 1424, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .social li:last-child {
  margin-right: 0;
}

/* line 1427, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .social li:before {
  position: absolute;
  content: '';
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 100%;
  border: 2px solid #fff;
  z-index: 2;
}

/* line 1438, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .social li:hover {
  background: #A71F34;
  border: 4px solid #172642;
}

/* line 1442, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .social li a {
  display: block;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}

/* line 1449, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .social li a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 1453, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .social li img,
.contact-banner .social li svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}

/* line 1462, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .form-box {
  max-width: 680px;
  margin-bottom: -100px;
  z-index: 92;
}

/* line 1468, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .form-box .gform_confirmation_wrapper .gform_confirmation_message {
  color: #fff;
  position: relative;
  z-index: 9;
}

/* line 1475, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .form-box .cnt {
  padding: 50px 110px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 1475, resources/assets/styles/template-parts/_banners.scss */

  .contact-banner .form-box .cnt {
    padding: 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1475, resources/assets/styles/template-parts/_banners.scss */

  .contact-banner .form-box .cnt {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1475, resources/assets/styles/template-parts/_banners.scss */

  .contact-banner .form-box .cnt {
    padding: 20px 10px;
  }
}

/* line 1487, resources/assets/styles/template-parts/_banners.scss */

.contact-banner .form-box .cnt .edd-root {
  width: 100%;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1349, resources/assets/styles/template-parts/_banners.scss */

  .contact-banner {
    margin-bottom: 75px;
  }

  /* line 1494, resources/assets/styles/template-parts/_banners.scss */

  .contact-banner .col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  /* line 1498, resources/assets/styles/template-parts/_banners.scss */

  .contact-banner .form-box {
    margin-top: 50px;
    max-width: 100%;
  }
}

/* line 1507, resources/assets/styles/template-parts/_banners.scss */

.error-banner {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 750px;
  padding: 0 120px;
  background: -webkit-gradient(linear, left top, right top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: linear-gradient(90deg, #172b59 0%, #c7314d 100%);
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 1507, resources/assets/styles/template-parts/_banners.scss */

  .error-banner {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1507, resources/assets/styles/template-parts/_banners.scss */

  .error-banner {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1507, resources/assets/styles/template-parts/_banners.scss */

  .error-banner {
    padding: 75px 10px 175px 10px;
    height: auto;
  }
}

/* line 1529, resources/assets/styles/template-parts/_banners.scss */

.error-banner:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0A1425), to(rgba(14,23,40,0)));
  background-image: -webkit-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: -o-linear-gradient(top, #0A1425 0%, rgba(14,23,40,0) 100%);
  background-image: linear-gradient(180deg, #0A1425 0%, rgba(14,23,40,0) 100%);
}

/* line 1539, resources/assets/styles/template-parts/_banners.scss */

.error-banner .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 2;
  opacity: .6;
}

/* line 1552, resources/assets/styles/template-parts/_banners.scss */

.error-banner p {
  position: relative;
  z-index: 9;
  color: #fff;
}

/* line 1557, resources/assets/styles/template-parts/_banners.scss */

.error-banner h1 {
  position: relative;
  z-index: 9;
  font-family: "Roboto-Black";
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 120px;
  line-height: 7.5rem;
  color: #fff;
  letter-spacing: -1px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1557, resources/assets/styles/template-parts/_banners.scss */

  .error-banner h1 {
    font-size: 72px;
    font-size: 4.5rem;
    line-height: 80px;
    line-height: 5rem;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1557, resources/assets/styles/template-parts/_banners.scss */

  .error-banner h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 40px;
    line-height: 2.5rem;
  }
}

/* line 1571, resources/assets/styles/template-parts/_banners.scss */

.error-banner h1 span {
  display: block;
  width: 100%;
  color: #172642;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #172642;
}

/* line 1579, resources/assets/styles/template-parts/_banners.scss */

.error-banner .btns-cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 9;
  margin-top: 50px;
}

/* line 1586, resources/assets/styles/template-parts/_banners.scss */

.error-banner .btns-cnt a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: auto;
}

/* line 1592, resources/assets/styles/template-parts/_banners.scss */

.error-banner .btns-cnt a:last-child {
  margin-bottom: 0;
}

/* line 1602, resources/assets/styles/template-parts/_banners.scss */

.ie .hero .image,
.ie #banner .image {
  opacity: .1;
}

/* line 1608, resources/assets/styles/template-parts/_banners.scss */

.back-btn-wrap {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 100%;
  max-width: 1680px;
  z-index: 91;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 0 40px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1608, resources/assets/styles/template-parts/_banners.scss */

  .back-btn-wrap {
    top: 70px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1608, resources/assets/styles/template-parts/_banners.scss */

  .back-btn-wrap {
    top: 20px;
    padding: 0 20px;
  }
}

/* line 1629, resources/assets/styles/template-parts/_banners.scss */

.foundation-banner {
  background: #101F3A;
  border-bottom: none;
  padding-top: 44px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1629, resources/assets/styles/template-parts/_banners.scss */

  .foundation-banner {
    padding-top: 0;
  }
}

/* line 1639, resources/assets/styles/template-parts/_banners.scss */

.foundation-banner:before {
  display: none;
}

/* line 1643, resources/assets/styles/template-parts/_banners.scss */

.foundation-banner:after {
  position: absolute;
  content: '';
  bottom: -170px;
  right: -143px;
  width: 764px;
  height: 524px;
  background: url(/wp-content/themes/usav-theme/dist/images/hero-gold.svg) 50% no-repeat;
  background-size: contain;
  z-index: 2;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  left: unset;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 1643, resources/assets/styles/template-parts/_banners.scss */

  .foundation-banner:after {
    bottom: -200px;
    right: -70px;
    width: 400px;
  }
}

/* line 1663, resources/assets/styles/template-parts/_banners.scss */

.foundation-banner .breadcrumbs {
  background-color: #fff;
}

/* line 1666, resources/assets/styles/template-parts/_banners.scss */

.foundation-banner .title-wrapper {
  padding: 36px 200px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1666, resources/assets/styles/template-parts/_banners.scss */

  .foundation-banner .title-wrapper {
    padding: 36px 40px;
  }
}

/* line 1672, resources/assets/styles/template-parts/_banners.scss */

.foundation-banner .title-wrapper img {
  display: block;
  margin: 0 auto 16px auto;
  width: 240px;
  height: 123px;
}

/* line 1678, resources/assets/styles/template-parts/_banners.scss */

.foundation-banner .title-wrapper h1 {
  color: #fff !important;
}

/* line 1686, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero {
  background: #fff;
  border-bottom: none;
  height: auto;
  padding-bottom: 574px;
  padding-left: 0;
  padding-right: 0;
}

/* line 1694, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .banner-wrapper,
.foundation-hero .callout-wrapper {
  padding-left: 120px;
  padding-right: 120px;
  position: relative;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 1694, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .banner-wrapper,
  .foundation-hero .callout-wrapper {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1694, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .banner-wrapper,
  .foundation-hero .callout-wrapper {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1686, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero {
    padding-bottom: 174px;
  }
}

/* line 1711, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 774px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), to(#0F1E39));
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, #0F1E39 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, #0F1E39 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #0F1E39 100%);
  z-index: 1;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1711, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero:before {
    height: 274px;
  }
}

/* line 1725, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 40px;
  left: 20px;
  width: 217px;
  height: 651px;
  z-index: 2;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1725, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .stars {
    display: none;
  }
}

/* line 1741, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .stars img {
  width: 217px;
  height: 217px;
}

/* line 1746, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .banner-wrapper:after {
  position: absolute;
  content: '';
  bottom: -280px;
  right: -32px;
  width: 796px;
  height: 524px;
  background: url(/wp-content/themes/usav-theme/dist/images/hero-gold.svg) 50% no-repeat;
  background-size: contain;
  z-index: 2;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1746, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .banner-wrapper:after {
    width: 696px;
    height: 424px;
    right: -110px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1746, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .banner-wrapper:after {
    width: 396px;
    height: 124px;
    right: -110px;
    bottom: 80px;
  }
}

/* line 1769, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 36px 120px;
  z-index: 6;
  margin: 0 auto;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1769, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .title-wrapper {
    padding: 36px 60px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1769, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .title-wrapper {
    padding: 36px 0;
  }
}

/* line 1784, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .title-wrapper img {
  display: block;
  margin: 0 auto 16px auto;
  width: 240px;
  height: 123px;
}

/* line 1790, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .title-wrapper h1 {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  font-family: "Roboto-Black";
  font-size: 128px !important;
  line-height: 141px !important;
  margin: 0 0 20px 0;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1790, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .title-wrapper h1 {
    font-size: 72px !important;
    line-height: 86px !important;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1790, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .title-wrapper h1 {
    font-size: 48px !important;
    line-height: 52px !important;
  }
}

/* line 1812, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .title-wrapper p {
  color: #101F3A;
  text-align: center;
  font-size: 36px;
  line-height: 56px;
  padding: 0 120px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1812, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .title-wrapper p {
    font-size: 24px !important;
    line-height: 32px !important;
    padding: 0;
  }
}

/* line 1825, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .title-wrapper .btn-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1825, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .title-wrapper .btn-cnt {
    width: 100%;
  }

  /* line 1833, resources/assets/styles/template-parts/_banners.scss */

  .foundation-hero .title-wrapper .btn-cnt a {
    width: 100%;
  }
}

/* line 1838, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .title-wrapper .btn-cnt a {
  margin: 0 auto;
}

/* line 1841, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .title-wrapper .btn-cnt a:last-child {
  margin-top: 20px;
}

/* line 1846, resources/assets/styles/template-parts/_banners.scss */

.foundation-hero .foundation-callout {
  margin: 0 auto;
}

/* line 1853, resources/assets/styles/template-parts/_banners.scss */

.foundation-callout-box {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  padding: 16px;
  margin: 0 0 50px 0;
  width: 100%;
  z-index: 6;
}

/* line 1862, resources/assets/styles/template-parts/_banners.scss */

.foundation-callout-box .box {
  background: #fff;
  padding: 60px 100px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1862, resources/assets/styles/template-parts/_banners.scss */

  .foundation-callout-box .box {
    padding: 50px;
  }

  /* line 1869, resources/assets/styles/template-parts/_banners.scss */

  .foundation-callout-box .box .col-xs-6,
  .foundation-callout-box .box .col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  /* line 1874, resources/assets/styles/template-parts/_banners.scss */

  .foundation-callout-box .box .col-xs-6:first-child {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1862, resources/assets/styles/template-parts/_banners.scss */

  .foundation-callout-box .box {
    padding: 20px;
  }
}

/* line 1881, resources/assets/styles/template-parts/_banners.scss */

.foundation-callout-box .box .title-cnt {
  position: relative;
  margin-left: -110px;
  padding-right: 50px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1881, resources/assets/styles/template-parts/_banners.scss */

  .foundation-callout-box .box .title-cnt {
    padding-right: 0;
    margin-left: -60px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1881, resources/assets/styles/template-parts/_banners.scss */

  .foundation-callout-box .box .title-cnt {
    margin-left: 0;
  }
}

/* line 1893, resources/assets/styles/template-parts/_banners.scss */

.foundation-callout-box .box .title-cnt .superheader {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 15px;
  left: 0;
  margin-left: 70px;
  color: #845F10;
  font-family: "Roboto-Bold";
  font-size: 14px;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 5;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1893, resources/assets/styles/template-parts/_banners.scss */

  .foundation-callout-box .box .title-cnt .superheader {
    position: relative;
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0;
    top: 0;
  }
}

/* line 1917, resources/assets/styles/template-parts/_banners.scss */

.foundation-callout-box .box .title-cnt .superheader span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 24px;
  height: 24px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTMiIGN5PSIxMyIgcj0iMTIuNSIgc3Ryb2tlPSIjQjA4QzI4Ii8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTMuOTk5IDIwLjkyNThDMTMuNjM0OCAyMC45NzQ3IDEzLjI2MyAyMSAxMi44ODUgMjFDOS4wMjkwMiAyMSA1LjgwNDA2IDE4LjM2NzQgNSAxNC44NDYyQzcuNDc5NDQgMTcuMDYyNiAxMC45Mjc5IDE4LjE0NzQgMTQuODQ2MiAxNy42OTc5QzE0Ljg0MjUgMTcuNzg0MiAxNC44Mzc1IDE3Ljg3MDcgMTQuODMxMSAxNy45NTcyQzE0Ljc0NyAxOS4wOTA2IDE0LjQxNzggMjAuMTgyOCAxMy45OTkgMjAuOTI1OFpNMTUuNDggMjFDMTYuMDA4IDIwLjg0OTIgMTYuNTE0MyAyMC42NDkgMTYuOTkzMiAyMC40MDQ4QzE5LjQzNjIgMTYuMTM1IDE4Ljk0NDMgMTEuNzM3OCAxNS43ODgxIDkuMzA3NjlDMTUuMTkxIDEwLjQ3MDkgMTQuODY3MSAxMS43NjAxIDE0Ljg0NjIgMTMuMDc2NkMxNS44NTU2IDE0LjY2MjkgMTYuMjUgMTYuNDQ4MSAxNi4xMTU2IDE4LjI1OTFDMTYuMDQyNSAxOS4yNDM3IDE1LjgwODIgMjAuMjAzOSAxNS40OCAyMVpNMTguMjk1NyAxOS43NjkyQzE5Ljk1MzEgMTguMjU4IDIxIDE2LjAzNjUgMjEgMTMuNTU5OUMyMSAxMC43OTExIDE5LjY5MTYgOC4zNDExOSAxNy42ODQ2IDYuODQ2MTVDMTcuMDUyNCA3LjQwMzY4IDE2LjUxNDEgOC4wNDc3NiAxNi4wNzY5IDguNzUyOTRDMTYuMTEwNiA4Ljc2ODc5IDE2LjE0MyA4Ljc4OTExIDE2LjE3MzQgOC44MTRDMTkuMTk3OSAxMS4yOTI5IDE5Ljk0ODkgMTUuNTI4NCAxOC4yOTU3IDE5Ljc2OTJaTTE2LjY5MjMgNS43OTc5MUMxNi4wMzEzIDUuNDMyNzUgMTUuMzEzNCA1LjE2MDk4IDE0LjU1NTQgNUMxMi4yMDg5IDYuMDI1MTIgOS45Nzk1NiA4Ljk3NTY4IDkuOTIzMDggMTIuMDMxN0MxMS4wMzI2IDEyLjMwNzggMTIuMjY5MSAxMi40MjQyIDEzLjY0NDYgMTIuMzcyOEMxMy43Njc5IDkuODgwNjMgMTQuODM3NCA3LjUwMTQ4IDE2LjY5MjMgNS43OTc5MUwxNi42OTIzIDUuNzk3OTFaTTEzIDUuMDAwMDJDMTIuOTkzNyA1LjAwMDAxIDEyLjk4NzQgNSAxMi45ODEyIDVDOS42Nzk1MiA1IDYuODQ0MDQgNi45NTMzIDUuNjE1MzggOS43NDM1M0M2LjU2MDMyIDEwLjY0NSA3LjY3NTI0IDExLjMyNTIgOC45ODMzIDExLjc2OTJDOS4xMzQzNSA5LjAyMjMyIDEwLjg3OTMgNi40MjMyNiAxMyA1LjAwMDAyWk01LjMwMzAyIDEwLjUzODVDNS4xMDU2NiAxMS4yNTQzIDUgMTIuMDEwMSA1IDEyLjc5MTRDNSAxMi44NjA4IDUuMDAwODMgMTIuOTI5OSA1LjAwMjQ5IDEyLjk5ODlDNy4yODEyNiAxNS43MjEgMTAuNzY5IDE3LjEwNzMgMTQuODQ2MiAxNi41ODI4QzE0Ljc2MDcgMTUuNDE3IDE0LjQzMSAxNC4yODg1IDEzLjgzMDIgMTMuMjUzMkMxMC4xOTU3IDEzLjQyMDQgNy4zOTMgMTIuNDczNSA1LjMwMzAyIDEwLjUzODVaIiBmaWxsPSIjMTAxRjNBIi8+Cjwvc3ZnPgo=) 50% no-repeat;
  background-size: contain;
  margin-right: 20px;
}

/* line 1926, resources/assets/styles/template-parts/_banners.scss */

.foundation-callout-box .box .title-cnt .superheader span:after {
  position: absolute;
  content: '';
  top: 50%;
  right: -16px;
  height: 1px;
  width: 16px;
  background: #B08C28;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 1938, resources/assets/styles/template-parts/_banners.scss */

.foundation-callout-box .box .title-cnt h2 {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  position: relative;
  font-family: "Roboto-Black";
  font-size: 36px !important;
  line-height: 48px !important;
  margin: 0 0 20px 0;
  padding-left: 120px;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1938, resources/assets/styles/template-parts/_banners.scss */

  .foundation-callout-box .box .title-cnt h2 {
    font-size: 30px !important;
    line-height: 36px !important;
    padding: 0;
  }
}

/* line 1959, resources/assets/styles/template-parts/_banners.scss */

.foundation-callout-box .box p {
  color: #000;
  font-size: 16px;
  line-height: 36px;
  margin: 0 0 14px 0;
}

/* line 1965, resources/assets/styles/template-parts/_banners.scss */

.foundation-callout-box .box .photo {
  position: relative;
  width: 100%;
  height: 330px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1965, resources/assets/styles/template-parts/_banners.scss */

  .foundation-callout-box .box .photo {
    height: 200px;
  }
}

/* line 1973, resources/assets/styles/template-parts/_banners.scss */

.foundation-callout-box .box .photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1983, resources/assets/styles/template-parts/_banners.scss */

  .foundation-callout-box .box p,
  .foundation-callout-box .box .btn-anchor {
    margin-left: 60px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1989, resources/assets/styles/template-parts/_banners.scss */

  .foundation-callout-box .box p,
  .foundation-callout-box .box .btn-anchor {
    margin-left: 0;
  }
}

/* line 2000, resources/assets/styles/template-parts/_banners.scss */

.btn-donate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 24px 16px 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-radius: 100px;
  background: #AB1A2D;
  border: 3px solid transparent;
  color: #fff;
  font-family: "Roboto-Bold";
  font-size: 14px;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

/* line 2019, resources/assets/styles/template-parts/_banners.scss */

.btn-donate:hover {
  color: #fff;
  background: #BD233B;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 2025, resources/assets/styles/template-parts/_banners.scss */

.btn-donate span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 15px 16px;
  -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: 100px;
  background: rgba(0,0,0,0.4);
}

/* line 2037, resources/assets/styles/template-parts/_banners.scss */

.btn-donate span:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  width: 6px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 2050, resources/assets/styles/template-parts/_banners.scss */

.btn-anchor {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 16px 8px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-radius: 100px;
  background: #D1D5DC;
  border: 3px solid transparent;
  color: #000;
  font-family: "Roboto-Bold";
  font-size: 14px;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

/* line 2069, resources/assets/styles/template-parts/_banners.scss */

.btn-anchor:hover {
  background: #172642;
  color: #fff;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 2075, resources/assets/styles/template-parts/_banners.scss */

.btn-anchor span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 32px;
  height: 32px;
  padding: 15px 16px;
  -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: 100px;
  background: #F4F5F6;
}

/* line 2087, resources/assets/styles/template-parts/_banners.scss */

.btn-anchor span:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 7px;
  width: 20px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjUgNC4xNjY1VjE1LjgzMzIiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xNi4zMzM1IDEwTDEwLjUwMDIgMTUuODMzM0w0LjY2Njg3IDEwIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K) 50% no-repeat;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 2100, resources/assets/styles/template-parts/_banners.scss */

.btn-anchor.btn-right span:after {
  -webkit-transform: translate(0, -50%) rotate(-90deg);
       -o-transform: translate(0, -50%) rotate(-90deg);
          transform: translate(0, -50%) rotate(-90deg);
}

/* line 2107, resources/assets/styles/template-parts/_banners.scss */

.btn-foundation {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 16px 8px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.15);
  border: 3px solid transparent;
  color: #fff;
  font-family: "Roboto-Bold";
  font-size: 14px;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

/* line 2126, resources/assets/styles/template-parts/_banners.scss */

.btn-foundation:hover {
  background: #fff;
  color: #172642;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
          box-shadow: 0 4px 12px 0 rgba(0,0,0,0.3);
}

/* line 2132, resources/assets/styles/template-parts/_banners.scss */

.btn-foundation:hover span {
  background: #172642;
}

/* line 2140, resources/assets/styles/template-parts/_banners.scss */

.btn-foundation span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 15px 16px;
  -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: 100px;
  background: rgba(255,255,255,0.09);
}

/* line 2152, resources/assets/styles/template-parts/_banners.scss */

.btn-foundation span:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  width: 6px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 13, resources/assets/styles/template-parts/_boxes.scss */

.blue-box {
  display: inline-block;
  position: relative;
  width: 100%;
  height: auto;
}

/* line 19, resources/assets/styles/template-parts/_boxes.scss */

.blue-box:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

/* line 29, resources/assets/styles/template-parts/_boxes.scss */

.blue-box.gold-border:after {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background-image: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: linear-gradient(0deg, #172642 0%, #cb9701 100%);
}

/* line 33, resources/assets/styles/template-parts/_boxes.scss */

.blue-box a:focus {
  outline: 3px solid #CB9701;
}

/* line 37, resources/assets/styles/template-parts/_boxes.scss */

.blue-box .cnt {
  position: relative;
  margin: 4px;
  z-index: 5;
  padding: 25px;
  background: #172642;
}

/* line 44, resources/assets/styles/template-parts/_boxes.scss */

.blue-box .cnt h2,
.blue-box .cnt h3,
.blue-box .cnt p,
.blue-box .cnt li,
.blue-box .cnt hr {
  position: relative;
  z-index: 9;
  color: #fff;
}

/* line 50, resources/assets/styles/template-parts/_boxes.scss */

.blue-box .cnt a,
.blue-box .cnt .sponsor-box {
  position: relative;
  z-index: 9;
}

/* line 55, resources/assets/styles/template-parts/_boxes.scss */

.blue-box .cnt p a:hover {
  color: #fff;
  text-decoration: none;
}

/* line 60, resources/assets/styles/template-parts/_boxes.scss */

.blue-box .cnt .thumb {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: 9;
}

/* line 68, resources/assets/styles/template-parts/_boxes.scss */

.blue-box .cnt .thumb.stretch {
  top: -18px;
  left: -18px;
  width: calc(100% + 36px);
  margin-bottom: -18px;
}

/* line 75, resources/assets/styles/template-parts/_boxes.scss */

.blue-box .cnt .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 85, resources/assets/styles/template-parts/_boxes.scss */

.blue-box .cnt .body {
  padding: 20px 10px 0 10px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 85, resources/assets/styles/template-parts/_boxes.scss */

  .blue-box .cnt .body {
    padding: 20px 0 0 0;
  }
}

/* line 92, resources/assets/styles/template-parts/_boxes.scss */

.blue-box .cnt .body .btn-cta {
  margin-right: 20px;
}

/* line 97, resources/assets/styles/template-parts/_boxes.scss */

.blue-box .cnt .btns-cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 101, resources/assets/styles/template-parts/_boxes.scss */

.blue-box .cnt .btns-cnt .btn-more {
  margin-right: auto;
  margin-left: 0;
  margin-bottom: 20px;
}

/* line 112, resources/assets/styles/template-parts/_boxes.scss */

.blue-boxes-cnt .col-xs-6 {
  margin-bottom: 20px;
}

/* line 116, resources/assets/styles/template-parts/_boxes.scss */

.blue-boxes-cnt .blue-box {
  height: 100%;
}

/* line 119, resources/assets/styles/template-parts/_boxes.scss */

.blue-boxes-cnt .blue-box .cnt {
  height: calc(100% - 8px);
}

/* line 126, resources/assets/styles/template-parts/_boxes.scss */

.red-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #A71F34;
  padding: 40px 35px;
  -webkit-box-shadow: 0 4px 24px 0 rgba(0,0,0,0.44);
          box-shadow: 0 4px 24px 0 rgba(0,0,0,0.44);
  height: 100%;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 126, resources/assets/styles/template-parts/_boxes.scss */

  .red-box {
    padding: 20px;
  }
}

/* line 138, resources/assets/styles/template-parts/_boxes.scss */

.red-box .copy {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* line 141, resources/assets/styles/template-parts/_boxes.scss */

.red-box .copy a:hover {
  color: #fff;
  text-decoration: none;
}

/* line 147, resources/assets/styles/template-parts/_boxes.scss */

.red-box h2,
.red-box h3,
.red-box p,
.red-box li {
  color: #fff;
}

/* line 151, resources/assets/styles/template-parts/_boxes.scss */

.red-box a {
  margin-right: auto;
}

/* line 157, resources/assets/styles/template-parts/_boxes.scss */

.quote-box {
  position: relative;
}

/* line 160, resources/assets/styles/template-parts/_boxes.scss */

.quote-box:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background-image: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: linear-gradient(0deg, #172642 0%, #cb9701 100%);
  z-index: 2;
}

/* line 171, resources/assets/styles/template-parts/_boxes.scss */

.quote-box:before {
  position: absolute;
  content: '';
  bottom: -8px;
  left: 20px;
  right: 20px;
  height: 84px;
  z-index: 2;
  background: #000;
  opacity: .4;
  -webkit-filter: blur(17px);
          filter: blur(17px);
}

/* line 184, resources/assets/styles/template-parts/_boxes.scss */

.quote-box .cnt {
  position: relative;
  margin: 4px;
  z-index: 5;
  padding: 35px 25px 25px 25px;
}

/* line 190, resources/assets/styles/template-parts/_boxes.scss */

.quote-box .cnt:after {
  position: absolute;
  content: '';
  top: 4px;
  left: 0;
  width: 100%;
  height: calc(100% - 8px);
  z-index: 6;
  background: #172642;
}

/* line 201, resources/assets/styles/template-parts/_boxes.scss */

.quote-box .cnt h2 {
  position: relative;
  z-index: 9;
  text-align: center;
}

/* line 207, resources/assets/styles/template-parts/_boxes.scss */

.quote-box .cnt .btn-cta {
  position: relative;
  z-index: 9;
  bottom: -44px;
}

/* line 216, resources/assets/styles/template-parts/_boxes.scss */

.pull-content {
  display: inline-block;
  position: relative;
  max-width: 330px;
  height: auto;
}

/* line 222, resources/assets/styles/template-parts/_boxes.scss */

.pull-content:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background-image: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: linear-gradient(0deg, #172642 0%, #cb9701 100%);
  z-index: 2;
}

/* line 235, resources/assets/styles/template-parts/_boxes.scss */

.pull-content.blue h3,
.pull-content.blue p {
  color: #fff;
}

/* line 240, resources/assets/styles/template-parts/_boxes.scss */

.pull-content.blue .cnt:after {
  background: #172642;
}

/* line 244, resources/assets/styles/template-parts/_boxes.scss */

.pull-content.right-align {
  float: right;
  margin: 0 0 25px 25px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 244, resources/assets/styles/template-parts/_boxes.scss */

  .pull-content.right-align {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 25px 0;
  }
}

/* line 256, resources/assets/styles/template-parts/_boxes.scss */

.pull-content.left-align {
  float: left;
  margin: 0 25px 25px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 256, resources/assets/styles/template-parts/_boxes.scss */

  .pull-content.left-align {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 25px 0;
  }
}

/* line 268, resources/assets/styles/template-parts/_boxes.scss */

.pull-content .cnt {
  position: relative;
  margin: 4px;
  z-index: 5;
  padding: 25px;
}

/* line 274, resources/assets/styles/template-parts/_boxes.scss */

.pull-content .cnt:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
}

/* line 284, resources/assets/styles/template-parts/_boxes.scss */

.pull-content .cnt h3 {
  text-align: center;
}

/* line 288, resources/assets/styles/template-parts/_boxes.scss */

.pull-content .cnt h3,
.pull-content .cnt p {
  position: relative;
  z-index: 9;
}

/* line 293, resources/assets/styles/template-parts/_boxes.scss */

.pull-content .cnt p {
  margin: 0;
}

/* line 300, resources/assets/styles/template-parts/_boxes.scss */

.resource-wave {
  padding-bottom: 200px;
}

/* line 303, resources/assets/styles/template-parts/_boxes.scss */

.resource-wave .wave-box.blue .content {
  padding-bottom: 150px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 303, resources/assets/styles/template-parts/_boxes.scss */

  .resource-wave .wave-box.blue .content {
    padding-bottom: 200px;
  }
}

/* line 311, resources/assets/styles/template-parts/_boxes.scss */

.resource-wave .ctas-offset {
  position: relative;
  z-index: 99;
  margin-top: -200px;
  padding: 0 120px;
}

/* line 317, resources/assets/styles/template-parts/_boxes.scss */

.resource-wave .ctas-offset .red-box {
  height: 100%;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 311, resources/assets/styles/template-parts/_boxes.scss */

  .resource-wave .ctas-offset {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 311, resources/assets/styles/template-parts/_boxes.scss */

  .resource-wave .ctas-offset {
    padding: 0 10px;
  }

  /* line 327, resources/assets/styles/template-parts/_boxes.scss */

  .resource-wave .ctas-offset .col-xs-6 {
    margin-bottom: 20px;
  }

  /* line 330, resources/assets/styles/template-parts/_boxes.scss */

  .resource-wave .ctas-offset .col-xs-6:last-child {
    margin-bottom: 0;
  }
}

/* line 339, resources/assets/styles/template-parts/_boxes.scss */

.values-wave {
  padding-bottom: 200px;
}

/* line 342, resources/assets/styles/template-parts/_boxes.scss */

.values-wave .wave-box.blue .content {
  padding-bottom: 350px;
}

/* line 346, resources/assets/styles/template-parts/_boxes.scss */

.values-wave .ctas-offset {
  position: relative;
  z-index: 99;
  margin-top: -450px;
  padding: 0 120px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 346, resources/assets/styles/template-parts/_boxes.scss */

  .values-wave .ctas-offset {
    padding: 0 40px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 346, resources/assets/styles/template-parts/_boxes.scss */

  .values-wave .ctas-offset {
    padding: 0 20px;
    margin-top: -400px;
  }
}

/* line 360, resources/assets/styles/template-parts/_boxes.scss */

.values-wave .ctas-offset .red-box {
  height: 100%;
}

/* line 364, resources/assets/styles/template-parts/_boxes.scss */

.values-wave .ctas-offset .col-xs-6 {
  margin-bottom: 20px;
}

/* line 371, resources/assets/styles/template-parts/_boxes.scss */

.wave-box {
  position: relative;
  width: 100%;
  height: auto;
  padding: 57px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 371, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box {
    padding: 45px 0;
  }
}

/* line 383, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.blue:before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZSBDb3B5PC90aXRsZT4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCB4MT0iMTAwJSIgeTE9IjUwJSIgeDI9IjAlIiB5Mj0iNTAlIiBpZD0ibGluZWFyR3JhZGllbnQtMSI+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiNDNzMxNEQiIG9mZnNldD0iMCUiPjwvc3RvcD4KICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iIzE3MkI1OSIgb2Zmc2V0PSIxMDAlIj48L3N0b3A+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8cGF0aCBkPSJNMCwzNS43MjMzMjIzIEMzNzkuNzI1LDYzLjc5NzI5MzggMTA0NS42NDE2NywtMTkuMzkxNjg2OSAxNDY0LDQuMzAyNjczNyBDMTQ2NCw0LjMwMjY3MzcgMTQ2NCw1Mi44Njg0NDkxIDE0NjQsMTUwIEwwLDE1MCBDMCw3My4zMjg0MjgxIDAsMzUuMjM2MjAyMiAwLDM1LjcyMzMyMjMgWiIgaWQ9IldhdmUtQ29weSIgZmlsbD0idXJsKCNsaW5lYXJHcmFkaWVudC0xKSI+PC9wYXRoPgogICAgPC9nPgo8L3N2Zz4=) 0 0 no-repeat;
}

/* line 387, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.blue:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZSBDb3B5PC90aXRsZT4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCB4MT0iMTAwJSIgeTE9IjUwJSIgeDI9IjAlIiB5Mj0iNTAlIiBpZD0ibGluZWFyR3JhZGllbnQtMSI+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiMxNzJCNTkiIG9mZnNldD0iMCUiPjwvc3RvcD4KICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iI0M3MzE0RCIgb2Zmc2V0PSIxMDAlIj48L3N0b3A+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8cGF0aCBkPSJNMCwzNS43MjMzMjIzIEMzNzkuNzI1LDYzLjc5NzI5MzggMTA0NS42NDE2NywtMTkuMzkxNjg2OSAxNDY0LDQuMzAyNjczNyBDMTQ2NCw0LjMwMjY3MzcgMTQ2NCw1Mi44Njg0NDkxIDE0NjQsMTUwIEwwLDE1MCBDMCw3My4zMjg0MjgxIDAsMzUuMjM2MjAyMiAwLDM1LjcyMzMyMjMgWiIgaWQ9IldhdmUtQ29weSIgZmlsbD0idXJsKCNsaW5lYXJHcmFkaWVudC0xKSI+PC9wYXRoPgogICAgPC9nPgo8L3N2Zz4=) 0 0 no-repeat;
}

/* line 391, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.blue .content {
  background: #172642;
}

/* line 397, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.blue .cnt:before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZTwvdGl0bGU+CiAgICA8ZyBpZD0iRGVzaWducyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTAsMzUuNzIzMzIyMyBDMzc5LjcyNSw2My43OTcyOTM4IDEwNDUuNjQxNjcsLTE5LjM5MTY4NjkgMTQ2NCw0LjMwMjY3MzcgQzE0NjQsNC4zMDI2NzM3IDE0NjQsNTIuODY4NDQ5MSAxNDY0LDE1MCBMMCwxNTAgQzAsNzMuMzI4NDI4MSAwLDM1LjIzNjIwMjIgMCwzNS43MjMzMjIzIFoiIGlkPSJXYXZlIiBmaWxsPSIjMTcyNjQyIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==) 0 0 no-repeat;
}

/* line 401, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.blue .cnt:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZTwvdGl0bGU+CiAgICA8ZyBpZD0iRGVzaWducyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTAsMzUuNzIzMzIyMyBDMzc5LjcyNSw2My43OTcyOTM4IDEwNDUuNjQxNjcsLTE5LjM5MTY4NjkgMTQ2NCw0LjMwMjY3MzcgQzE0NjQsNC4zMDI2NzM3IDE0NjQsNTIuODY4NDQ5MSAxNDY0LDE1MCBMMCwxNTAgQzAsNzMuMzI4NDI4MSAwLDM1LjIzNjIwMjIgMCwzNS43MjMzMjIzIFoiIGlkPSJXYXZlIiBmaWxsPSIjMTcyNjQyIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==) 0 0 no-repeat;
}

/* line 406, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.blue a:focus {
  outline: 3px solid #CB9701;
}

/* line 412, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.blue.gold-border:before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZSBDb3B5PC90aXRsZT4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCB4MT0iMTAwJSIgeTE9IjUwJSIgeDI9IjAlIiB5Mj0iNTAlIiBpZD0ibGluZWFyR3JhZGllbnQtMSI+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiM4NTY0MDMiIG9mZnNldD0iMCUiPjwvc3RvcD4KICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iI0ZCRTk2QyIgb2Zmc2V0PSIxMDAlIj48L3N0b3A+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8cGF0aCBkPSJNMCwzNS43MjMzMjIzIEMzNzkuNzI1LDYzLjc5NzI5MzggMTA0NS42NDE2NywtMTkuMzkxNjg2OSAxNDY0LDQuMzAyNjczNyBDMTQ2NCw0LjMwMjY3MzcgMTQ2NCw1Mi44Njg0NDkxIDE0NjQsMTUwIEwwLDE1MCBDMCw3My4zMjg0MjgxIDAsMzUuMjM2MjAyMiAwLDM1LjcyMzMyMjMgWiIgaWQ9IldhdmUtQ29weSIgZmlsbD0idXJsKCNsaW5lYXJHcmFkaWVudC0xKSI+PC9wYXRoPgogICAgPC9nPgo8L3N2Zz4=) 0 0 no-repeat;
}

/* line 416, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.blue.gold-border:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZSBDb3B5PC90aXRsZT4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCB4MT0iMTAwJSIgeTE9IjUwJSIgeDI9IjAlIiB5Mj0iNTAlIiBpZD0ibGluZWFyR3JhZGllbnQtMSI+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiM4NTY0MDMiIG9mZnNldD0iMCUiPjwvc3RvcD4KICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iI0ZCRTk2QyIgb2Zmc2V0PSIxMDAlIj48L3N0b3A+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8cGF0aCBkPSJNMCwzNS43MjMzMjIzIEMzNzkuNzI1LDYzLjc5NzI5MzggMTA0NS42NDE2NywtMTkuMzkxNjg2OSAxNDY0LDQuMzAyNjczNyBDMTQ2NCw0LjMwMjY3MzcgMTQ2NCw1Mi44Njg0NDkxIDE0NjQsMTUwIEwwLDE1MCBDMCw3My4zMjg0MjgxIDAsMzUuMjM2MjAyMiAwLDM1LjcyMzMyMjMgWiIgaWQ9IldhdmUtQ29weSIgZmlsbD0idXJsKCNsaW5lYXJHcmFkaWVudC0xKSI+PC9wYXRoPgogICAgPC9nPgo8L3N2Zz4=) 0 0 no-repeat;
}

/* line 424, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.red:before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZTwvdGl0bGU+CiAgICA8ZyBpZD0iRGVzaWducyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTAsMzUuNzIzMzIyMyBDMzc5LjcyNSw2My43OTcyOTM4IDEwNDUuNjQxNjcsLTE5LjM5MTY4NjkgMTQ2NCw0LjMwMjY3MzcgQzE0NjQsNC4zMDI2NzM3IDE0NjQsNTIuODY4NDQ5MSAxNDY0LDE1MCBMMCwxNTAgQzAsNzMuMzI4NDI4MSAwLDM1LjIzNjIwMjIgMCwzNS43MjMzMjIzIFoiIGlkPSJXYXZlIiBmaWxsPSIjRUFFQ0VGIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==) 0 0 no-repeat;
}

/* line 428, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.red:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZTwvdGl0bGU+CiAgICA8ZyBpZD0iRGVzaWducyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTAsMzUuNzIzMzIyMyBDMzc5LjcyNSw2My43OTcyOTM4IDEwNDUuNjQxNjcsLTE5LjM5MTY4NjkgMTQ2NCw0LjMwMjY3MzcgQzE0NjQsNC4zMDI2NzM3IDE0NjQsNTIuODY4NDQ5MSAxNDY0LDE1MCBMMCwxNTAgQzAsNzMuMzI4NDI4MSAwLDM1LjIzNjIwMjIgMCwzNS43MjMzMjIzIFoiIGlkPSJXYXZlIiBmaWxsPSIjRUFFQ0VGIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==) 0 0 no-repeat;
}

/* line 432, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.red .content {
  background: #A71F34;
}

/* line 438, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.red .cnt:before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZTwvdGl0bGU+CiAgICA8ZyBpZD0iRGVzaWducyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTAsMzUuNzIzMzIyMyBDMzc5LjcyNSw2My43OTcyOTM4IDEwNDUuNjQxNjcsLTE5LjM5MTY4NjkgMTQ2NCw0LjMwMjY3MzcgQzE0NjQsNC4zMDI2NzM3IDE0NjQsNTIuODY4NDQ5MSAxNDY0LDE1MCBMMCwxNTAgQzAsNzMuMzI4NDI4MSAwLDM1LjIzNjIwMjIgMCwzNS43MjMzMjIzIFoiIGlkPSJXYXZlIiBmaWxsPSIjQTcxRjM0Ij48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==) 0 0 no-repeat;
}

/* line 442, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.red .cnt:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTQ2NHB4IiBoZWlnaHQ9IjE1MHB4IiB2aWV3Qm94PSIwIDAgMTQ2NCAxNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+V2F2ZTwvdGl0bGU+CiAgICA8ZyBpZD0iRGVzaWducyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTAsMzUuNzIzMzIyMyBDMzc5LjcyNSw2My43OTcyOTM4IDEwNDUuNjQxNjcsLTE5LjM5MTY4NjkgMTQ2NCw0LjMwMjY3MzcgQzE0NjQsNC4zMDI2NzM3IDE0NjQsNTIuODY4NDQ5MSAxNDY0LDE1MCBMMCwxNTAgQzAsNzMuMzI4NDI4MSAwLDM1LjIzNjIwMjIgMCwzNS43MjMzMjIzIFoiIGlkPSJXYXZlIiBmaWxsPSIjQTcxRjM0Ij48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==) 0 0 no-repeat;
}

/* line 447, resources/assets/styles/template-parts/_boxes.scss */

.wave-box.red .instagram-post {
  display: block;
  position: relative;
  top: -150px;
  margin: 0 auto -150px auto;
  width: 100%;
  max-width: 450px;
}

/* line 457, resources/assets/styles/template-parts/_boxes.scss */

.wave-box:before {
  position: absolute;
  content: '';
  top: -15px;
  left: -2px;
  width: calc(100% + 4px);
  height: 150px;
  background-size: 100% !important;
  z-index: 2;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 457, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box:before {
    top: 0;
  }
}

/* line 472, resources/assets/styles/template-parts/_boxes.scss */

.wave-box:after {
  position: absolute;
  content: '';
  bottom: -15px;
  left: -2px;
  width: calc(100% + 4px);
  height: 150px;
  background-size: 100% !important;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 2;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 472, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box:after {
    bottom: 0;
  }
}

/* line 488, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .sponsor-box {
  margin-bottom: 20px;
}

/* line 492, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .photo-figure-3 {
  margin: 75px 0;
}

/* line 496, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 0;
  z-index: 5;
  background: transparent;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 496, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt {
    padding: 25px 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 496, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt {
    padding: 0;
  }
}

/* line 511, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt:before {
  position: absolute;
  content: '';
  top: -50px;
  left: -2px;
  width: calc(100% + 4px);
  height: 150px;
  background-size: 100% !important;
  z-index: 2;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 511, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt:before {
    top: -25px;
  }
}

/* line 526, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt:after {
  position: absolute;
  content: '';
  bottom: -50px;
  left: -2px;
  width: calc(100% + 4px);
  height: 150px;
  background-size: 100% !important;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 2;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 526, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt:after {
    bottom: -25px;
  }
}

/* line 542, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt .content {
  padding: 0 120px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 542, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt .content {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 542, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt .content {
    padding: 0 20px;
  }

  /* line 551, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt .content .col-xs-7,
  .wave-box .cnt .content .col-xs-8 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 542, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt .content {
    padding: 0 10px;
  }

  /* line 560, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt .content .col-xs-6 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* line 564, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt .content .col-xs-6:first-child {
    padding-bottom: 0;
  }

  /* line 568, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt .content .col-xs-6 figure {
    margin: 50px auto 0 auto;
  }

  /* line 571, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .cnt .content .col-xs-6 figure.video-bordered {
    margin: 0 auto;
  }
}

/* line 577, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt .row {
  z-index: 9;
}

/* line 581, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt .left-text {
  text-align: left;
}

/* line 585, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt .instagram-feed iframe {
  margin: 0 auto !important;
}

/* line 589, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt .supheader {
  margin-top: 30px;
}

/* line 593, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt h3 {
  margin-top: 50px;
}

/* line 597, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt h2,
.wave-box .cnt h3,
.wave-box .cnt p,
.wave-box .cnt li {
  color: #fff;
}

/* line 601, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt h2 a,
.wave-box .cnt h3 a,
.wave-box .cnt p a,
.wave-box .cnt li a {
  color: #fff;
}

/* line 606, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt .author .avatar {
  margin: 0 30px 0 0;
}

/* line 610, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt a {
  font-family: "Roboto-Bold";
}

/* line 614, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt .photo-bordered {
  margin: 0 auto;
  width: 100%;
  max-width: 590px;
  max-height: 445px;
}

/* line 620, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt .photo-bordered div:after {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 625, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .cnt .ctas-offset {
  position: absolute;
}

/* line 630, resources/assets/styles/template-parts/_boxes.scss */

.wave-box .offset-bottom {
  position: relative;
  bottom: -175px;
  margin-top: -115px !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 630, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .offset-bottom {
    bottom: 0;
    margin-top: 0 !important;
  }

  /* line 639, resources/assets/styles/template-parts/_boxes.scss */

  .wave-box .offset-bottom .col-xs-4 {
    margin-bottom: 20px;
  }
}

/* line 647, resources/assets/styles/template-parts/_boxes.scss */

.share-box {
  position: relative;
  width: 80px;
  margin: 33px 0 0 20px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 647, resources/assets/styles/template-parts/_boxes.scss */

  .share-box {
    width: 100%;
    margin: 0 auto;
  }
}

/* line 657, resources/assets/styles/template-parts/_boxes.scss */

.share-box:after {
  position: absolute;
  content: '';
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 668, resources/assets/styles/template-parts/_boxes.scss */

.share-box .cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 6;
  background: #F3F4F6;
}

/* line 677, resources/assets/styles/template-parts/_boxes.scss */

.share-box .cnt p {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #A71F34;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 15px 0;
}

/* line 687, resources/assets/styles/template-parts/_boxes.scss */

.share-box .cnt .at-share-btn-elements {
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 687, resources/assets/styles/template-parts/_boxes.scss */

  .share-box .cnt .at-share-btn-elements {
    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;
    padding-bottom: 20px;
  }
}

/* line 698, resources/assets/styles/template-parts/_boxes.scss */

.share-box .cnt .at-share-btn-elements a {
  display: block;
  margin: 0 auto 5px auto;
  position: relative;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  padding: 5px;
  border-radius: 100% !important;
  border: 3px solid transparent;
  background: transparent !important;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 712, resources/assets/styles/template-parts/_boxes.scss */

.share-box .cnt .at-share-btn-elements a .at-icon-wrapper {
  float: none !important;
  width: auto !important;
  height: auto !important;
}

/* line 718, resources/assets/styles/template-parts/_boxes.scss */

.share-box .cnt .at-share-btn-elements a img,
.share-box .cnt .at-share-btn-elements a svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 32px;
  max-width: 32px;
  fill: #172642 !important;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 731, resources/assets/styles/template-parts/_boxes.scss */

.share-box .cnt .at-share-btn-elements a .at-label {
  display: none;
}

/* line 735, resources/assets/styles/template-parts/_boxes.scss */

.share-box .cnt .at-share-btn-elements a:hover {
  border: 3px solid #A71F34;
}

/* line 746, resources/assets/styles/template-parts/_boxes.scss */

.resource-boxes .col-xs-4 {
  margin-bottom: 20px;
}

/* line 749, resources/assets/styles/template-parts/_boxes.scss */

.resource-boxes .col-xs-4 .blue-box {
  height: 100%;
}

/* line 752, resources/assets/styles/template-parts/_boxes.scss */

.resource-boxes .col-xs-4 .blue-box .cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100% - 8px);
}

/* line 757, resources/assets/styles/template-parts/_boxes.scss */

.resource-boxes .col-xs-4 .blue-box .cnt .copy {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 746, resources/assets/styles/template-parts/_boxes.scss */

  .resource-boxes .col-xs-4 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 746, resources/assets/styles/template-parts/_boxes.scss */

  .resource-boxes .col-xs-4 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 773, resources/assets/styles/template-parts/_boxes.scss */

.resource-boxes .title {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #fff;
  letter-spacing: 0;
  margin: 0;
}

/* line 781, resources/assets/styles/template-parts/_boxes.scss */

.resource-boxes hr,
.resource-boxes a {
  z-index: 99;
}

/* line 785, resources/assets/styles/template-parts/_boxes.scss */

.resource-boxes .btn-cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 789, resources/assets/styles/template-parts/_boxes.scss */

.resource-boxes .btn-cnt a:nth-child(2) {
  margin-top: 20px;
}

/* line 793, resources/assets/styles/template-parts/_boxes.scss */

.resource-boxes .btn-cnt a {
  margin-right: auto;
}

/* line 800, resources/assets/styles/template-parts/_boxes.scss */

.performance-box {
  position: relative;
  z-index: 9;
  top: -400px;
  margin: 0 130px -400px 130px;
  width: calc(100% - 260px);
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 800, resources/assets/styles/template-parts/_boxes.scss */

  .performance-box {
    margin: 0 50px -400px 50px;
    width: calc(100% - 100px);
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 800, resources/assets/styles/template-parts/_boxes.scss */

  .performance-box {
    margin: 0 20px -400px 20px;
    width: calc(100% - 40px);
  }

  /* line 815, resources/assets/styles/template-parts/_boxes.scss */

  .performance-box .col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 800, resources/assets/styles/template-parts/_boxes.scss */

  .performance-box {
    margin: 0 10px -400px 10px;
    width: calc(100% - 20px);
  }
}

/* line 825, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .usav-section-header .blue {
  color: #172642;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #172642;
}

/* line 831, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .performance-section-header {
  position: relative;
  z-index: 9;
  font-family: "Roboto-Black";
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 100px;
  line-height: 6.25rem;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 45px 0;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 831, resources/assets/styles/template-parts/_boxes.scss */

  .performance-box .performance-section-header {
    font-size: 72px;
    font-size: 4.5rem;
    line-height: 70px;
    line-height: 4.375rem;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 831, resources/assets/styles/template-parts/_boxes.scss */

  .performance-box .performance-section-header {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

/* line 847, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .performance-section-header span.blue {
  display: block;
  width: 100%;
  color: #172642;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #172642;
}

/* line 856, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .box {
  position: relative;
}

/* line 859, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .box:after {
  position: absolute;
  content: '';
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 870, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .box .cnt {
  position: relative;
  background: #F3F4F6;
  z-index: 9;
  padding: 50px 0 50px 65px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 870, resources/assets/styles/template-parts/_boxes.scss */

  .performance-box .box .cnt {
    padding: 35px 20px;
  }
}

/* line 881, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .box .btns-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 885, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .box .btns-cnt a {
  margin: 0 auto 20px 0;
}

/* line 890, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .box .red-box {
  position: relative;
  right: -60px;
  text-align: left;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 890, resources/assets/styles/template-parts/_boxes.scss */

  .performance-box .box .red-box {
    right: 0;
  }
}

/* line 899, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .box .red-box .quote {
  text-align: left;
  padding: 0;
}

/* line 904, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .box .red-box .author {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 907, resources/assets/styles/template-parts/_boxes.scss */

.performance-box .box .red-box .author .avatar {
  margin: 0 30px 0 0;
  background-size: cover !important;
}

/* line 917, resources/assets/styles/template-parts/_boxes.scss */

.sponsor-box {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 10px 20px 10px 10px;
  background: #fff;
}

/* line 925, resources/assets/styles/template-parts/_boxes.scss */

.sponsor-box:before {
  position: absolute;
  content: '';
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 2px solid #CB9701;
}

/* line 935, resources/assets/styles/template-parts/_boxes.scss */

.sponsor-box img {
  max-height: 32px;
}

/* line 939, resources/assets/styles/template-parts/_boxes.scss */

.sponsor-box p {
  position: relative;
  margin: 0 0 0 15px !important;
  color: #A71F34 !important;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 14px;
  line-height: 0.875rem;
}

/* line 945, resources/assets/styles/template-parts/_boxes.scss */

.sponsor-box p sup {
  display: inline-block;
  margin-top: -5px;
}

/* line 953, resources/assets/styles/template-parts/_boxes.scss */

.staff-cnt {
  position: relative;
  z-index: 9;
  margin: 40px 0 80px 0;
}

/* line 958, resources/assets/styles/template-parts/_boxes.scss */

.staff-cnt:last-child {
  margin: 40px 0 0 0;
}

/* line 962, resources/assets/styles/template-parts/_boxes.scss */

.staff-cnt .col-xs-3 {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 962, resources/assets/styles/template-parts/_boxes.scss */

  .staff-cnt .col-xs-3 {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
    max-width: 33.333333%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 962, resources/assets/styles/template-parts/_boxes.scss */

  .staff-cnt .col-xs-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 567px) and (min-width: 1px) {
  /* line 962, resources/assets/styles/template-parts/_boxes.scss */

  .staff-cnt .col-xs-3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 979, resources/assets/styles/template-parts/_boxes.scss */

.staff-cnt p {
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 0;
}

/* line 986, resources/assets/styles/template-parts/_boxes.scss */

.staff-cnt .staff-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  padding: 20px;
  background: #fff;
  height: 100%;
}

/* line 996, resources/assets/styles/template-parts/_boxes.scss */

.staff-cnt .staff-box:before {
  position: absolute;
  content: '';
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #A71F34;
  z-index: 2;
}

/* line 1007, resources/assets/styles/template-parts/_boxes.scss */

.staff-cnt .staff-box .name {
  position: relative;
  z-index: 9;
  font-family: "Roboto-Bold";
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #000;
  letter-spacing: 0;
  margin: 0;
}

/* line 1016, resources/assets/styles/template-parts/_boxes.scss */

.staff-cnt .staff-box .name span {
  font-family: "Roboto-Regular";
}

/* line 1021, resources/assets/styles/template-parts/_boxes.scss */

.staff-cnt .staff-box .title {
  position: relative;
  z-index: 9;
  margin: 0;
  color: #000;
}

/* line 1031, resources/assets/styles/template-parts/_boxes.scss */

.past-board {
  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;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#10182A), color-stop(77%, #172B59));
  background-image: -webkit-linear-gradient(top, #10182A 0%, #172B59 77%);
  background-image: -o-linear-gradient(top, #10182A 0%, #172B59 77%);
  background-image: linear-gradient(180deg, #10182A 0%, #172B59 77%);
}

/* line 1038, resources/assets/styles/template-parts/_boxes.scss */

.past-board img {
  margin: 65px auto;
  width: 82px;
  opacity: .2;
}

/* line 1044, resources/assets/styles/template-parts/_boxes.scss */

.past-board p {
  font-family: "Roboto-Bold";
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 0;
  text-align: center;
  padding: 0 20px;
}

/* line 1053, resources/assets/styles/template-parts/_boxes.scss */

.past-board .btn-more {
  padding: 23px 15px;
  background: #172642;
  text-transform: none;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 20px;
  line-height: 1.25rem;
}

/* line 1059, resources/assets/styles/template-parts/_boxes.scss */

.past-board .btn-more:after {
  right: 15px;
}

/* line 1066, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes {
  position: relative;
}

/* line 1071, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .wave-box .cnt {
  padding: 25px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1071, resources/assets/styles/template-parts/_boxes.scss */

  .home-featured-athletes .wave-box .cnt {
    padding: 0;
  }
}

/* line 1078, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .wave-box .cnt .sponsor-box {
  margin-bottom: 15px;
}

/* line 1082, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .wave-box .cnt h2 {
  margin: 0 0 5px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1082, resources/assets/styles/template-parts/_boxes.scss */

  .home-featured-athletes .wave-box .cnt h2 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

/* line 1090, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .wave-box .cnt h2 span {
  font-family: "Roboto-Thin";
}

/* line 1094, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .wave-box .cnt .team {
  font-family: "Roboto-Regular";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 0;
  margin: 0 0 35px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1094, resources/assets/styles/template-parts/_boxes.scss */

  .home-featured-athletes .wave-box .cnt .team {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}

/* line 1106, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .wave-box .cnt .quote {
  text-align: left;
  padding: 0;
  margin: 0;
}

/* line 1114, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .featured-athlete-thumb {
  position: relative;
  width: 525px;
  height: 525px;
  margin: -100px auto 50px auto;
  border-radius: 100%;
  overflow: hidden;
  z-index: 95;
}

/* line 1123, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .featured-athlete-thumb div {
  position: relative;
  z-index: 9;
  width: 503px;
  height: 503px;
  margin: 10px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
}

/* line 1133, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .featured-athlete-thumb div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 1143, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .featured-athlete-thumb:after {
  position: absolute;
  content: '';
  top: -11px;
  left: -11px;
  width: calc(100% + 22px);
  height: calc(100% + 22px);
  background: #fff;
  border-radius: 100%;
  z-index: 5;
}

/* line 1156, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  max-width: 1680px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 9;
}

/* line 1170, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 15px;
  width: 100%;
}

/* line 1175, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li:last-child {
  margin-right: 0;
}

/* line 1179, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a {
  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;
  position: relative;
  width: 100%;
  padding: 20px;
  background: #fff;
  border: 1px solid #DCE0E5;
  cursor: pointer;
}

/* line 1190, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a .thumb {
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  border-radius: 100%;
  background: #fff;
  border: 3px solid #D3DBE8;
  overflow: hidden;
  position: relative;
  margin-right: 40px;
}

/* line 1204, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 1214, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a .athlete {
  width: 100%;
}

/* line 1217, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a .athlete .name {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 2rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0 0 10px 0;
}

/* line 1224, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a .athlete .name span {
  font-family: "Roboto-Regular";
}

/* line 1229, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a .athlete .team {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0;
}

/* line 1238, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a[aria-selected="true"] {
  border: 1px solid #172642;
}

/* line 1241, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a[aria-selected="true"] .athlete:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #CB9701;
  z-index: 6;
}

/* line 1252, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a[aria-selected="true"] .name,
.home-featured-athletes .js-tablist li a[aria-selected="true"] .team {
  position: relative;
  z-index: 9;
  color: #fff;
}

/* line 1258, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a[aria-selected="true"] .thumb {
  position: relative;
  z-index: 9;
  border: 3px solid #fff;
}

/* line 1264, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a[aria-selected="true"]:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: #172642;
}

/* line 1275, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .js-tablist li a[aria-selected="true"]:after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 10px;
  right: 10px;
  height: 84px;
  z-index: 2;
  background: #000;
  opacity: .7;
  -webkit-filter: blur(17px);
          filter: blur(17px);
}

/* line 1292, resources/assets/styles/template-parts/_boxes.scss */

.home-featured-athletes .button-row {
  position: relative;
  z-index: 9;
  left: 50%;
  max-width: 1680px;
  margin: 40px 0 0 0;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1292, resources/assets/styles/template-parts/_boxes.scss */

  .home-featured-athletes .button-row {
    text-align: center;
  }
}

/* line 1306, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section {
  position: relative;
  top: -180px;
  margin-bottom: -180px;
}

/* line 1313, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .blue-box .cnt {
  padding: 25px 75px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1313, resources/assets/styles/template-parts/_boxes.scss */

  .featured-athletes-section .blue-box .cnt {
    padding: 25px;
  }
}

/* line 1320, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .blue-box .cnt .sponsor-box {
  margin-bottom: 45px;
}

/* line 1324, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .blue-box .cnt h2 {
  margin: 0 0 15px 0;
}

/* line 1327, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .blue-box .cnt h2 a {
  color: #fff;
  text-decoration: none;
}

/* line 1331, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .blue-box .cnt h2 a:hover {
  text-decoration: underline;
}

/* line 1337, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .blue-box .cnt h2 span {
  font-family: "Roboto-Thin";
}

/* line 1341, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .blue-box .cnt .team {
  font-family: "Roboto-Regular";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 0;
  margin: 0 0 35px 0;
}

/* line 1349, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .blue-box .cnt .quote {
  text-align: left;
  padding: 0;
  margin: 0;
}

/* line 1357, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .featured-athlete-thumb {
  position: relative;
  width: 525px;
  height: 525px;
  margin: -50px auto -50px auto;
  border-radius: 100%;
  overflow: hidden;
  z-index: 95;
}

/* line 1366, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .featured-athlete-thumb div {
  position: relative;
  z-index: 9;
  width: 503px;
  height: 503px;
  margin: 10px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
}

/* line 1376, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .featured-athlete-thumb div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 1386, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .featured-athlete-thumb:after {
  position: absolute;
  content: '';
  top: -11px;
  left: -11px;
  width: calc(100% + 22px);
  height: calc(100% + 22px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  border-radius: 100%;
  z-index: 5;
}

/* line 1399, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1680px;
  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;
  position: relative;
  bottom: -90px;
  left: 0;
  z-index: 9;
}

/* line 1413, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 15px;
  width: 100%;
}

/* line 1418, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li:last-child {
  margin-right: 0;
}

/* line 1422, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a {
  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;
  width: 100%;
  padding: 20px;
  background: #fff;
  border: 1px solid #DCE0E5;
  position: relative;
  cursor: pointer;
}

/* line 1433, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a .thumb {
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  border-radius: 100%;
  background: #fff;
  border: 3px solid #D3DBE8;
  overflow: hidden;
  position: relative;
  margin-right: 40px;
}

/* line 1447, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 1457, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a .athlete {
  width: 100%;
}

/* line 1460, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a .athlete .name {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 2rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0 0 10px 0;
}

/* line 1467, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a .athlete .name span {
  font-family: "Roboto-Regular";
}

/* line 1472, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a .athlete .team {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0;
}

/* line 1481, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a[aria-selected="true"] {
  border: 1px solid #A71F34;
}

/* line 1484, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a[aria-selected="true"] .athlete:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #CB9701;
  z-index: 6;
}

/* line 1495, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a[aria-selected="true"] .name,
.featured-athletes-section .js-tablist li a[aria-selected="true"] .team {
  position: relative;
  z-index: 9;
  color: #fff;
}

/* line 1501, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a[aria-selected="true"] .thumb {
  position: relative;
  z-index: 9;
  border: 3px solid #fff;
}

/* line 1507, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a[aria-selected="true"]:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: #A71F34;
}

/* line 1518, resources/assets/styles/template-parts/_boxes.scss */

.featured-athletes-section .js-tablist li a[aria-selected="true"]:after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 10px;
  right: 10px;
  height: 84px;
  z-index: 2;
  background: #000;
  opacity: .7;
  -webkit-filter: blur(17px);
          filter: blur(17px);
}

/* line 1537, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header {
  padding: 75px 50px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1537, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header {
    padding: 35px 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1537, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header {
    padding: 35px 10px;
  }
}

/* line 1547, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats {
  margin-bottom: 20px;
}

/* line 1550, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .cnt {
  padding: 25px 70px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1550, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stats .cnt {
    padding: 25px 10px;
  }
}

/* line 1558, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .row {
  z-index: 9;
}

/* line 1562, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .col-xs-2-5 {
  border-right: 1px solid rgba(195,201,210,0.2);
}

/* line 1565, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .col-xs-2-5:last-child {
  border-right: none;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1562, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stats .col-xs-2-5 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid rgba(195,201,210,0.2);
  }

  /* line 1577, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stats .col-xs-2-5:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* line 1584, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .label {
  font-family: "RobotoCondensed-Regular";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 20px 0;
}

/* line 1594, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .record {
  font-family: "Roboto-Bold";
  font-size: 64px;
  font-size: 4rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: -0.89px;
  text-align: center;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1594, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stats .record {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 32px;
    line-height: 2rem;
  }
}

/* line 1606, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .match {
  text-align: center;
}

/* line 1609, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .match .team {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: -0.33px;
  text-align: center;
  margin: 0;
}

/* line 1618, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .match .date,
.team-section-header .team-stats .match .result {
  font-family: "Roboto-Bold";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  text-align: center;
  margin: 0 0 20px 0;
}

/* line 1628, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .rank {
  font-family: "Roboto-Bold";
  font-size: 64px;
  font-size: 4rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: -0.89px;
  text-align: center;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1628, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stats .rank {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 32px;
    line-height: 2rem;
  }
}

/* line 1640, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .rank sub {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 22px;
  line-height: 1.375rem;
  position: relative;
  bottom: 14px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1640, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stats .rank sub {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}

/* line 1652, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .social {
  padding: 0 50px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1652, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stats .social {
    padding: 0 20px;
  }
}

/* line 1659, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .social ul {
  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;
  margin: 30px 0 0 0;
  list-style: none;
  padding: 0;
}

/* line 1668, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .social ul li {
  margin: 0 25px;
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
}

/* line 1675, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .social ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

/* line 1680, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stats .social ul li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 1694, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stories .cnt {
  padding: 25px 70px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1694, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stories .cnt {
    padding: 25px 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1694, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stories .cnt {
    padding: 25px 10px;
  }
}

/* line 1705, resources/assets/styles/template-parts/_boxes.scss */

.team-section-header .team-stories .title-button,
.team-section-header .team-stories .row {
  position: relative;
  z-index: 9;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1712, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stories .col-xs-4 {
    margin-bottom: 20px;
  }

  /* line 1715, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stories .col-xs-4:last-child {
    margin-bottom: 0;
  }

  /* line 1722, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stories .col-xs-4:nth-child(2) .post,
  .team-section-header .team-stories .col-xs-4:nth-child(3) .post {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 1725, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stories .col-xs-4:nth-child(2) .post .thumb,
  .team-section-header .team-stories .col-xs-4:nth-child(3) .post .thumb {
    width: 60px;
    max-width: 60px;
    min-width: 60px;
    height: 60px;
  }

  /* line 1732, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stories .col-xs-4:nth-child(2) .post .body,
  .team-section-header .team-stories .col-xs-4:nth-child(3) .post .body {
    padding: 0 10px;
  }

  /* line 1736, resources/assets/styles/template-parts/_boxes.scss */

  .team-section-header .team-stories .col-xs-4:nth-child(2) .post .foot,
  .team-section-header .team-stories .col-xs-4:nth-child(3) .post .foot {
    display: none;
  }
}

/* line 1747, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset {
  display: block;
  position: relative;
  z-index: 9;
  margin: -50px auto 0 auto;
  width: calc(100% - 240px);
  max-width: 1680px;
  padding: 0;
}

/* line 1756, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.tertiary-offset {
  margin: -100px auto 0 auto;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 1747, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset {
    width: calc(100% - 102px);
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1747, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset {
    width: calc(100% - 48px);
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1747, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset {
    width: calc(100% - 28px);
  }

  /* line 1769, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset.tertiary-offset {
    margin: 20px auto 0 auto;
  }

  /* line 1772, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset.gold-border {
    margin: -20px auto 25px auto !important;
  }
}

/* line 1777, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset:after {
  position: absolute;
  content: '';
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 1788, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset .cnt {
  position: relative;
  z-index: 9;
  background: #F3F4F5;
  padding: 55px 225px;
  margin: 0;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1788, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset .cnt {
    padding: 55px 120px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1788, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset .cnt {
    padding: 35px 20px;
  }
}

/* line 1802, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset .cnt .supheader {
  margin: 0 0 10px 0;
}

/* line 1807, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.blue-box {
  margin-bottom: 75px;
}

/* line 1810, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.blue-box .cnt {
  padding: 55px;
  background: #172642;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1810, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset.blue-box .cnt {
    padding: 35px 20px;
  }
}

/* line 1819, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.blue-box h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 9;
  font-family: "Roboto-Black";
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 120px;
  line-height: 7.5rem;
  color: #fff;
  letter-spacing: -1px;
  text-align: center;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 1819, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset.blue-box h1 {
    font-size: 52px;
    font-size: 3.25rem;
    line-height: 50px;
    line-height: 3.125rem;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1819, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset.blue-box h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 38px;
    line-height: 2.375rem;
  }
}

/* line 1838, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.blue-box h1 span {
  color: #172642;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #172642;
}

/* line 1845, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.blue-box .title {
  font-family: "Roboto-Regular";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 36px;
  line-height: 2.25rem;
  color: #fff;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 30px 0;
}

/* line 1854, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.blue-box .col-xs-6:first-child {
  border-right: 1px solid rgba(255,255,255,0.1);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1854, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset.blue-box .col-xs-6:first-child {
    border-right: none;
    margin-bottom: 35px;
  }
}

/* line 1863, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.blue-box .row {
  margin-left: -30px;
  margin-right: -30px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1863, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset.blue-box .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}

/* line 1873, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.blue-box .col-xs-6 {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  z-index: 9;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1873, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset.blue-box .col-xs-6 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* line 1885, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.blue-box .col-xs-6 p {
  margin: 0;
}

/* line 1890, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.blue-box .col-xs-12 {
  padding-left: 30px;
  padding-right: 30px;
}

/* line 1896, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.medium-content {
  max-width: 1200px;
  margin-top: -89px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1896, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset.medium-content {
    margin: 20px auto 0 auto;
  }
}

/* line 1904, resources/assets/styles/template-parts/_boxes.scss */

.overview-offset.medium-content .cnt {
  padding: 51px 220px 36px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1904, resources/assets/styles/template-parts/_boxes.scss */

  .overview-offset.medium-content .cnt {
    padding: 35px 20px;
  }
}

/* line 1915, resources/assets/styles/template-parts/_boxes.scss */

.main-border::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60px;
  background: #E4E9F1;
  width: 100%;
  height: 15px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1915, resources/assets/styles/template-parts/_boxes.scss */

  .main-border::before {
    top: -49px;
  }
}

/* line 1931, resources/assets/styles/template-parts/_boxes.scss */

.content-box h2 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 38px;
  line-height: 2.375rem;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

/* line 1938, resources/assets/styles/template-parts/_boxes.scss */

.medium-content-width {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

/* line 1944, resources/assets/styles/template-parts/_boxes.scss */

#ad-unit {
  padding: 25px 0 35px;
}

/* line 1947, resources/assets/styles/template-parts/_boxes.scss */

#ad-unit .medium-content-width {
  max-width: 1200px;
  margin: auto;
}

/* line 1952, resources/assets/styles/template-parts/_boxes.scss */

#ad-unit .cnt {
  position: relative;
  z-index: 9;
  background: -webkit-gradient(linear, left top, left bottom, from(#e1e5ea), to(#f4f5f7));
  background: -webkit-linear-gradient(top, #e1e5ea 0%, #f4f5f7 100%);
  background: -o-linear-gradient(top, #e1e5ea 0%, #f4f5f7 100%);
  background: linear-gradient(180deg, #e1e5ea 0%, #f4f5f7 100%);
  padding: 35px 106px;
  margin: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1952, resources/assets/styles/template-parts/_boxes.scss */

  #ad-unit .cnt {
    padding: 10px;
  }
}

/* line 1965, resources/assets/styles/template-parts/_boxes.scss */

.get-started {
  position: relative;
  z-index: 9;
  top: -400px;
  margin: 0 130px -400px 130px;
  width: calc(100% - 260px);
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 1965, resources/assets/styles/template-parts/_boxes.scss */

  .get-started {
    margin: 0 50px -400px 50px;
    width: calc(100% - 100px);
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1965, resources/assets/styles/template-parts/_boxes.scss */

  .get-started {
    margin: 0 20px -400px 20px;
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1965, resources/assets/styles/template-parts/_boxes.scss */

  .get-started {
    margin: 0 10px -400px 10px;
    width: calc(100% - 20px);
  }
}

/* line 1985, resources/assets/styles/template-parts/_boxes.scss */

.get-started .usav-section-header .blue {
  color: #172642;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #172642;
}

/* line 1991, resources/assets/styles/template-parts/_boxes.scss */

.get-started .col-xs-6,
.get-started .col-xs-4 {
  margin-bottom: 20px;
}

/* line 1996, resources/assets/styles/template-parts/_boxes.scss */

.get-started a {
  color: #fff;
  font-family: "Roboto-Bold";
}

/* line 2005, resources/assets/styles/template-parts/_boxes.scss */

.ie .featured-event .image {
  opacity: .1;
}

/* line 2009, resources/assets/styles/template-parts/_boxes.scss */

.ie .quote-box:before {
  display: none;
}

/* line 2013, resources/assets/styles/template-parts/_boxes.scss */

.ie .get-started .usav-section-header span,
.ie .performance-box .usav-section-header span {
  color: #fff;
}

/* line 2019, resources/assets/styles/template-parts/_boxes.scss */

.page-template-template-membership .get-started .blue-box {
  height: 100%;
  overflow: hidden;
}

/* line 2024, resources/assets/styles/template-parts/_boxes.scss */

.page-template-template-membership .get-started .blue-box .cnt {
  height: 100%;
}

/* line 2028, resources/assets/styles/template-parts/_boxes.scss */

.page-template-template-membership .get-started .blue-box .cnt .btns-cnt {
  display: block;
  margin-top: auto;
}

/* line 2033, resources/assets/styles/template-parts/_boxes.scss */

.page-template-template-membership .get-started .blue-box .cnt .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100% - 300px);
}

/* line 2039, resources/assets/styles/template-parts/_boxes.scss */

.page-template-template-membership .get-started .blue-box .cnt .body .copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

@media (min-width: 768px) {
  /* line 2046, resources/assets/styles/template-parts/_boxes.scss */

  .page-template-template-membership .wave-section.map-offset {
    padding-top: 0;
  }

  /* line 2049, resources/assets/styles/template-parts/_boxes.scss */

  .page-template-template-membership .wave-section.map-offset .cnt {
    padding-top: 0;
  }
}

/* line 14, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 91;
}

/* line 22, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  left: 50%;
  width: 100%;
  max-width: calc(1680px + 70px);
  height: auto;
  padding: 10px 35px;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 92;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 22, resources/assets/styles/template-parts/_breadcrumbs.scss */

  .breadcrumbs ul {
    display: none;
  }
}

/* line 42, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  padding: 0 12px;
  z-index: 9;
}

/* line 48, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li span {
  font-family: "Roboto-Regular";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 10px;
}

/* line 55, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li:first-child {
  padding: 0 12px 0 0;
}

/* line 58, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li:last-child {
  padding: 0 0 0 12px;
}

/* line 61, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li.current {
  display: inline-block;
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 24px;
  max-width: 350px;
}

/* line 73, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li.current:after {
  display: none;
}

/* line 77, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li a {
  font-family: "Roboto-Regular";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

/* line 84, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li a:hover {
  text-decoration: underline;
}

/* line 88, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li:after {
  position: absolute;
  content: '';
  top: 50%;
  right: -2px;
  width: 6px;
  height: 10px;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 97, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li:last-child:after {
  display: none;
}

/* line 100, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li.login {
  margin-left: auto;
  margin-right: 0;
}

/* line 104, resources/assets/styles/template-parts/_breadcrumbs.scss */

.breadcrumbs ul li.login a {
  font-family: "Roboto-Bold";
}

/* line 18, resources/assets/styles/template-parts/_carousels.scss */

.carousel-posts .swiper-slide,
.carousel-events .swiper-slide,
.carousel-videos .swiper-slide,
.carousel-results .swiper-slide {
  height: auto !important;
}

/* line 23, resources/assets/styles/template-parts/_carousels.scss */

.carousel-posts {
  padding: 0 2px;
}

/* line 29, resources/assets/styles/template-parts/_carousels.scss */

.carousel-cnt-posts .mobile-button-row {
  margin: 35px auto;
}

/* line 35, resources/assets/styles/template-parts/_carousels.scss */

.gallery-cnt {
  position: relative;
  padding: 10px;
}

/* line 39, resources/assets/styles/template-parts/_carousels.scss */

.gallery-cnt:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 695px;
  z-index: 5;
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 39, resources/assets/styles/template-parts/_carousels.scss */

  .gallery-cnt:after {
    height: 375px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 39, resources/assets/styles/template-parts/_carousels.scss */

  .gallery-cnt:after {
    height: 275px;
  }
}

/* line 58, resources/assets/styles/template-parts/_carousels.scss */

.gallery {
  position: relative;
  z-index: 9;
}

/* line 62, resources/assets/styles/template-parts/_carousels.scss */

.gallery .swiper-slide {
  height: 675px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 62, resources/assets/styles/template-parts/_carousels.scss */

  .gallery .swiper-slide {
    height: 355px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 62, resources/assets/styles/template-parts/_carousels.scss */

  .gallery .swiper-slide {
    height: 255px;
  }
}

/* line 71, resources/assets/styles/template-parts/_carousels.scss */

.gallery .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}

/* line 81, resources/assets/styles/template-parts/_carousels.scss */

.gallery .swiper-slide .download {
  position: absolute;
  right: 20px;
  bottom: 85px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #172642;
  z-index: 91;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 92, resources/assets/styles/template-parts/_carousels.scss */

.gallery .swiper-slide .download span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 98, resources/assets/styles/template-parts/_carousels.scss */

.gallery .swiper-slide .download:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 25px;
  height: 21px;
  z-index: 9;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjVweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjUgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+RG93bmxvYWQgSWNvbjwvdGl0bGU+CiAgICA8ZyBpZD0iRGVzaWducyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IkF0aGxldGUtUHJvZmlsZS1EZXRhaWwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMjYxLjAwMDAwMCwgLTE2MDQuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgPHBhdGggZD0iTTEyNjMuMzcyNjIsMTYxNS44NDgwMiBMMTI2My4zNzI2MiwxNjIyLjE3MzA3IEwxMjgzLjU4NzM4LDE2MjIuMTczMDcgTDEyODMuNTg3MzgsMTYxNS44NDgwMiBMMTI4NS40OCwxNjE1Ljg0ODAyIEwxMjg1LjQ4LDE2MjQuMDY1NjggTDEyNjEuNDgsMTYyNC4wNjU2OCBMMTI2MS40OCwxNjE1Ljg0ODAyIEwxMjYzLjM3MjYyLDE2MTUuODQ4MDIgWiBNMTI3NC40MjY1MywxNjA0LjQ2MSBMMTI3NC40MjY1MywxNjE3LjY3MjU0IEwxMjc3Ljk0MzgxLDE2MTQuMTU1MjYgTDEyNzkuMjgxODEsMTYxNS40OTMyNyBMMTI3My40NzkzMywxNjIxLjI5MzUzIEwxMjY3LjY3OTA4LDE2MTUuNDkzMjcgTDEyNjkuMDE3NTMsMTYxNC4xNTUyNiBMMTI3Mi41MzM5MSwxNjE3LjY3MjU0IEwxMjcyLjUzMzkxLDE2MDQuNDYxIEwxMjc0LjQyNjUzLDE2MDQuNDYxIFoiIGlkPSJEb3dubG9hZC1JY29uIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 109, resources/assets/styles/template-parts/_carousels.scss */

.gallery .swiper-slide .download:hover {
  background: #A71F34;
}

/* line 113, resources/assets/styles/template-parts/_carousels.scss */

.gallery .swiper-slide .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 15px 20px;
  z-index: 9;
  font-family: "Roboto-Italic";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  background: rgba(23,38,66,0.95);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 113, resources/assets/styles/template-parts/_carousels.scss */

  .gallery .swiper-slide .gallery-caption {
    display: none;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 134, resources/assets/styles/template-parts/_carousels.scss */

  .gallery .swiper-button-prev,
  .gallery .swiper-button-next {
    display: none;
  }
}

/* line 141, resources/assets/styles/template-parts/_carousels.scss */

.mobile-captions {
  display: none;
}

/* line 144, resources/assets/styles/template-parts/_carousels.scss */

.mobile-captions div {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 141, resources/assets/styles/template-parts/_carousels.scss */

  .mobile-captions {
    display: block;
  }

  /* line 150, resources/assets/styles/template-parts/_carousels.scss */

  .mobile-captions div {
    font-family: "Roboto-Italic";
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 30px;
    line-height: 1.875rem;
    color: #1C232C;
    letter-spacing: 0;
    opacity: 0.7;
    padding: 8px 0;
    margin: 20px 0;
    width: 100%;
    border-bottom: 1px solid #E4E9F1;
  }
}

/* line 164, resources/assets/styles/template-parts/_carousels.scss */

.post-gallery-cnt {
  position: relative;
  padding: 10px;
}

/* line 168, resources/assets/styles/template-parts/_carousels.scss */

.post-gallery-cnt:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 655px;
  z-index: 5;
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
}

@media only screen and (max-width: 1440px) and (min-width: 1px) {
  /* line 168, resources/assets/styles/template-parts/_carousels.scss */

  .post-gallery-cnt:after {
    height: 555px;
  }
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 168, resources/assets/styles/template-parts/_carousels.scss */

  .post-gallery-cnt:after {
    height: 455px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 168, resources/assets/styles/template-parts/_carousels.scss */

  .post-gallery-cnt:after {
    height: 255px;
  }
}

/* line 188, resources/assets/styles/template-parts/_carousels.scss */

.post-gallery-cnt .swiper-controls {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 193, resources/assets/styles/template-parts/_carousels.scss */

.post-gallery,
.post-gallery-caption {
  position: relative;
  z-index: 9;
}

/* line 198, resources/assets/styles/template-parts/_carousels.scss */

.post-gallery .swiper-slide,
.post-gallery-caption .swiper-slide {
  height: 635px;
}

@media only screen and (max-width: 1440px) and (min-width: 1px) {
  /* line 198, resources/assets/styles/template-parts/_carousels.scss */

  .post-gallery .swiper-slide,
  .post-gallery-caption .swiper-slide {
    height: 535px;
  }
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 198, resources/assets/styles/template-parts/_carousels.scss */

  .post-gallery .swiper-slide,
  .post-gallery-caption .swiper-slide {
    height: 435px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 198, resources/assets/styles/template-parts/_carousels.scss */

  .post-gallery .swiper-slide,
  .post-gallery-caption .swiper-slide {
    height: 235px;
  }
}

/* line 210, resources/assets/styles/template-parts/_carousels.scss */

.post-gallery .swiper-slide img,
.post-gallery-caption .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}

/* line 223, resources/assets/styles/template-parts/_carousels.scss */

.swiper-controls {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 20px 0 0 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 223, resources/assets/styles/template-parts/_carousels.scss */

  .swiper-controls {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* line 233, resources/assets/styles/template-parts/_carousels.scss */

.swiper-controls .swiper-prev,
.swiper-controls .swiper-next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border: 1px solid #D3D7DD;
  background: #fff;
  border-radius: 100%;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 246, resources/assets/styles/template-parts/_carousels.scss */

.swiper-controls .swiper-prev span,
.swiper-controls .swiper-next span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 252, resources/assets/styles/template-parts/_carousels.scss */

.swiper-controls .swiper-prev:before,
.swiper-controls .swiper-next:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 262, resources/assets/styles/template-parts/_carousels.scss */

.swiper-controls .swiper-prev:hover,
.swiper-controls .swiper-next:hover {
  background: #fff;
  border: 1px solid #172642;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.15);
          box-shadow: 0 2px 4px 0 rgba(0,0,0,0.15);
}

/* line 268, resources/assets/styles/template-parts/_carousels.scss */

.swiper-controls .swiper-prev:before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
       -o-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

/* line 271, resources/assets/styles/template-parts/_carousels.scss */

.swiper-controls .swiper-pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin: auto 10px;
}

/* line 276, resources/assets/styles/template-parts/_carousels.scss */

.swiper-controls .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: rgba(23,38,66,0.3);
  margin: auto 3px;
  opacity: 1;
  cursor: pointer;
}

/* line 285, resources/assets/styles/template-parts/_carousels.scss */

.swiper-controls .swiper-pagination .swiper-pagination-bullet:hover,
.swiper-controls .swiper-pagination .swiper-pagination-bullet-active {
  background: #A71F34;
}

/* line 295, resources/assets/styles/template-parts/_carousels.scss */

.blue-section .swiper-controls .swiper-next:hover,
.blue-section .swiper-controls .swiper-prev:hover {
  border: 1px solid #CB9701;
  background: #A71F34;
}

/* line 300, resources/assets/styles/template-parts/_carousels.scss */

.blue-section .swiper-controls .swiper-next:hover:before,
.blue-section .swiper-controls .swiper-prev:hover:before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 304, resources/assets/styles/template-parts/_carousels.scss */

.blue-section .swiper-controls .swiper-next:focus,
.blue-section .swiper-controls .swiper-prev:focus {
  outline: 3px solid #CB9701;
}

/* line 308, resources/assets/styles/template-parts/_carousels.scss */

.blue-section .swiper-controls .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}

/* line 311, resources/assets/styles/template-parts/_carousels.scss */

.blue-section .swiper-controls .swiper-pagination .swiper-pagination-bullet:hover,
.blue-section .swiper-controls .swiper-pagination .swiper-pagination-bullet-active {
  background: #A71F34;
}

/* line 315, resources/assets/styles/template-parts/_carousels.scss */

.blue-section .swiper-controls .swiper-pagination .swiper-pagination-bullet:focus {
  outline: 2px solid #CB9701;
}

/* line 321, resources/assets/styles/template-parts/_carousels.scss */

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 2px solid #fff;
  background: #172642;
  z-index: 99;
}

/* line 333, resources/assets/styles/template-parts/_carousels.scss */

.swiper-button-prev span,
.swiper-button-next span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 339, resources/assets/styles/template-parts/_carousels.scss */

.swiper-button-prev:before,
.swiper-button-next:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNi4wMDAwMDAsIC0xODk3LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNi4wMDAwMDAsIDE4OTcuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWdvbiBwb2ludHM9IjAgMS4yMzg5OTM0MyAxLjE5MTUzMjA0IDAgNiA1IDEuMTkxNTMyMDQgMTAgMCA4Ljc2MTAwNjU3IDMuNjE2MjczMzEgNSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}

/* line 350, resources/assets/styles/template-parts/_carousels.scss */

.swiper-button-prev:after,
.swiper-button-next:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 5px solid #A71F34;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

/* line 364, resources/assets/styles/template-parts/_carousels.scss */

.swiper-button-prev {
  left: 20px;
}

/* line 367, resources/assets/styles/template-parts/_carousels.scss */

.swiper-button-prev:before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
       -o-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

/* line 372, resources/assets/styles/template-parts/_carousels.scss */

.swiper-button-next {
  right: 20px;
}

/* line 376, resources/assets/styles/template-parts/_carousels.scss */

.swiper-gallery-pagination {
  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;
  margin: 20px auto 0 auto;
  padding-bottom: 5px;
}

/* line 384, resources/assets/styles/template-parts/_carousels.scss */

.swiper-gallery-pagination .swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  margin: auto 5px;
  border-radius: 100%;
  background: rgba(23,38,66,0.3);
  opacity: 1;
  cursor: pointer;
}

/* line 393, resources/assets/styles/template-parts/_carousels.scss */

.swiper-gallery-pagination .swiper-pagination-bullet-active {
  background: #A71F34;
}

/* line 401, resources/assets/styles/template-parts/_carousels.scss */

.swiper-pagination-bullet:focus {
  -webkit-transition: 0s !important;
  -o-transition: 0s !important;
  transition: 0s !important;
  outline: 2px solid #172642;
  outline-offset: 2px;
  -webkit-box-shadow: 0 0 0px 2px white;
          box-shadow: 0 0 0px 2px white;
}

/* line 409, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider {
  position: relative;
  z-index: 9;
  top: -150px;
  margin-bottom: -150px;
}

/* line 415, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .swiper-container {
  padding-top: 150px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 419, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .swiper-container .col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 425, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .featured-athlete-thumb {
  position: relative;
  width: 525px;
  height: 525px;
  margin: -100px auto 50px auto;
  border-radius: 100%;
  overflow: hidden;
  z-index: 95;
}

@media only screen and (max-width: 1480px) and (min-width: 1px) {
  /* line 425, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .featured-athlete-thumb {
    width: 425px;
    height: 425px;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 425, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .featured-athlete-thumb {
    width: 325px;
    height: 325px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 425, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .featured-athlete-thumb {
    width: 225px;
    height: 225px;
  }
}

/* line 446, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .featured-athlete-thumb div {
  position: relative;
  z-index: 9;
  width: 503px;
  height: 503px;
  margin: 10px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 1480px) and (min-width: 1px) {
  /* line 446, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .featured-athlete-thumb div {
    width: 403px;
    height: 403px;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 446, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .featured-athlete-thumb div {
    width: 303px;
    height: 303px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 446, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .featured-athlete-thumb div {
    width: 203px;
    height: 203px;
  }
}

/* line 468, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .featured-athlete-thumb div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 477, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .featured-athlete-thumb:after {
  position: absolute;
  content: '';
  top: -11px;
  left: -11px;
  width: calc(100% + 22px);
  height: calc(100% + 22px);
  background: #fff;
  border-radius: 100%;
  z-index: 5;
}

/* line 489, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .swiper-controls {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 492, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .swiper-controls .swiper-prev,
.tab-slider .swiper-controls .swiper-next {
  display: none;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 492, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .swiper-controls .swiper-prev,
  .tab-slider .swiper-controls .swiper-next {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

/* line 501, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination {
  list-style: none;
  padding: 0;
  margin: 50px 0 20px 0;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: column;
  -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;
  position: relative;
  width: 100%;
  max-width: 1680px;
  z-index: 9;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 501, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-gap: 0;
    margin: 0;
  }
}

/* line 523, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a {
  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;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #fff;
  border: 1px solid #DCE0E5;
  opacity: 1;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
}

/* line 540, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a:hover p {
  color: #A71F34 !important;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 523, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .pagination a {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #DCDEE2;
    border: none;
    padding: 0;
    margin: 0 3px;
  }

  /* line 553, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .pagination a:before,
  .tab-slider .pagination a:after,
  .tab-slider .pagination a .thumb,
  .tab-slider .pagination a .athlete {
    display: none;
  }
}

/* line 560, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a:last-child {
  margin-right: 0;
}

/* line 563, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a .thumb {
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  border-radius: 100%;
  background: #fff;
  border: 3px solid #D3DBE8;
  overflow: hidden;
  position: relative;
  margin-right: 40px;
}

/* line 577, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 586, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a .athlete {
  width: 100%;
}

/* line 589, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a .athlete .name {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 2rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0 0 10px 0;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 597, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a .athlete .name span {
  font-family: "Roboto-Regular";
}

/* line 601, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a .athlete .team {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 610, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a.swiper-pagination-bullet-active {
  border: 1px solid #172642;
}

/* line 615, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a.swiper-pagination-bullet-active:hover p {
  color: #fff !important;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 610, resources/assets/styles/template-parts/_carousels.scss */

  .tab-slider .pagination a.swiper-pagination-bullet-active {
    border: none;
    background: #172642;
  }
}

/* line 623, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a.swiper-pagination-bullet-active .athlete:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #CB9701;
  z-index: 6;
}

/* line 633, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a.swiper-pagination-bullet-active .name,
.tab-slider .pagination a.swiper-pagination-bullet-active .team {
  position: relative;
  z-index: 9;
  color: #fff;
}

/* line 638, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a.swiper-pagination-bullet-active .thumb {
  position: relative;
  z-index: 9;
  border: 3px solid #fff;
}

/* line 643, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a.swiper-pagination-bullet-active:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: #172642;
}

/* line 653, resources/assets/styles/template-parts/_carousels.scss */

.tab-slider .pagination a.swiper-pagination-bullet-active:after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 10px;
  right: 10px;
  height: 84px;
  z-index: 2;
  background: #000;
  opacity: .7;
  -webkit-filter: blur(17px);
          filter: blur(17px);
}

/* line 670, resources/assets/styles/template-parts/_carousels.scss */

.blue-box .tab-slider .pagination a:focus {
  outline: 3px solid #CB9701;
}

/* line 677, resources/assets/styles/template-parts/_carousels.scss */

.featured-athletes-section .tab-slider {
  top: -50px;
  margin-bottom: -50px;
}

/* line 681, resources/assets/styles/template-parts/_carousels.scss */

.featured-athletes-section .tab-slider .swiper-container {
  padding-top: 50px;
}

/* line 684, resources/assets/styles/template-parts/_carousels.scss */

.featured-athletes-section .tab-slider .featured-athlete-thumb {
  margin: -50px auto 50px auto;
}

/* line 687, resources/assets/styles/template-parts/_carousels.scss */

.featured-athletes-section .tab-slider .featured-athlete-thumb:after {
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
}

/* line 690, resources/assets/styles/template-parts/_carousels.scss */

.featured-athletes-section .tab-slider .pagination a.swiper-pagination-bullet-active {
  border: 1px solid #A71F34;
}

/* line 694, resources/assets/styles/template-parts/_carousels.scss */

.featured-athletes-section .tab-slider .pagination a.swiper-pagination-bullet-active:before {
  background: #A71F34;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 675, resources/assets/styles/template-parts/_carousels.scss */

  .featured-athletes-section {
    top: -120px;
    margin-bottom: -120px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 675, resources/assets/styles/template-parts/_carousels.scss */

  .featured-athletes-section {
    top: 0;
    margin-bottom: 0;
  }
}

/* line 710, resources/assets/styles/template-parts/_carousels.scss */

.safari .tab-slider .pagination a.swiper-pagination-bullet-active:after {
  display: none;
}

/* line 717, resources/assets/styles/template-parts/_carousels.scss */

.ie .tab-slider .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 720, resources/assets/styles/template-parts/_carousels.scss */

.ie .tab-slider .pagination a {
  margin: 0 5px;
}

/* line 723, resources/assets/styles/template-parts/_carousels.scss */

.ie .tab-slider .pagination a.swiper-pagination-bullet-active::after {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 730, resources/assets/styles/template-parts/_carousels.scss */

  .single-athlete .gallery .swiper-slide .gallery-caption {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

/* line 13, resources/assets/styles/template-parts/_events.scss */

.events-table {
  margin: 0 auto 50px auto;
  overflow: hidden;
  width: 100%;
}

/* line 18, resources/assets/styles/template-parts/_events.scss */

.events-table:last-child {
  margin: 0 auto;
}

/* line 21, resources/assets/styles/template-parts/_events.scss */

.events-table .events-header {
  background: #172642;
}

/* line 24, resources/assets/styles/template-parts/_events.scss */

.events-table .events-header h2 {
  padding: 26px 25px;
  margin: 0;
  text-transform: none;
}

/* line 29, resources/assets/styles/template-parts/_events.scss */

.events-table .events-header .headings {
  background: #0F192C;
  padding: 0 25px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 29, resources/assets/styles/template-parts/_events.scss */

  .events-table .events-header .headings {
    display: none;
  }
}

/* line 36, resources/assets/styles/template-parts/_events.scss */

.events-table .events-header .headings div:last-child p {
  text-align: right;
}

/* line 40, resources/assets/styles/template-parts/_events.scss */

.events-table .events-header p {
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: left;
  padding: 10px 0;
  text-transform: uppercase;
  margin: 0;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 40, resources/assets/styles/template-parts/_events.scss */

  .events-table .events-header p {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}

/* line 56, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 61, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li:nth-child(odd) {
  background: rgba(228,233,241,0.8);
}

/* line 64, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li:nth-child(even) {
  background: rgba(228,233,241,0.4);
}

/* line 67, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: left;
  padding: 25px 25px;
  border-right: 1px solid rgba(15,25,44,0.1);
}

/* line 74, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li:last-child {
  border-right: none;
}

/* line 77, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li.red {
  background: #A71F34;
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: left;
  padding: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* line 88, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .date {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #0C0C0C;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

/* line 96, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .date span {
  display: block;
  width: 100%;
  font-family: "Roboto-Regular";
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 96, resources/assets/styles/template-parts/_events.scss */

  .events-table .events-list li .date span {
    display: inline-block;
    width: auto;
  }
}

/* line 107, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .location {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #0B0B0B;
  letter-spacing: 0;
  margin: 0;
}

/* line 114, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .location a {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #0B0B0B;
  letter-spacing: 0;
  margin: 0;
  text-decoration: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 123, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .location a:hover {
  color: #A71F34;
  text-decoration: underline;
}

/* line 128, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .location span {
  display: block;
  width: 100%;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #0B0B0B;
  letter-spacing: 0;
  margin-top: 15px;
}

/* line 138, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .type {
  font-family: "Roboto-Regular";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #0B0B0B;
  letter-spacing: 0;
  margin: 0;
}

/* line 145, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .btns-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 145, resources/assets/styles/template-parts/_events.scss */

  .events-table .events-list li .btns-cnt {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    margin-top: 20px;
  }
}

/* line 157, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .btns-cnt a:first-child {
  margin-bottom: 10px;
  margin-right: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 157, resources/assets/styles/template-parts/_events.scss */

  .events-table .events-list li .btns-cnt a:first-child {
    border-bottom: none;
    margin: 0 40px 0 0;
    padding: 0;
  }
}

/* line 167, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .btns-cnt a:last-child {
  margin-top: 5px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 167, resources/assets/styles/template-parts/_events.scss */

  .events-table .events-list li .btns-cnt a:last-child {
    margin: 0;
  }
}

/* line 174, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .btns-cnt a+a {
  padding-top: 10px;
  border-top: 1px solid #C7C9C7;
}

/* line 179, resources/assets/styles/template-parts/_events.scss */

.events-table .events-list li .link {
  display: inline-block;
  width: 100%;
  text-align: right;
  font-family: "Roboto-Bold";
  text-decoration: none;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 179, resources/assets/styles/template-parts/_events.scss */

  .events-table .events-list li .link {
    text-align: left;
    margin-top: 20px;
  }
}

/* line 197, resources/assets/styles/template-parts/_events.scss */

.event-details {
  position: relative;
  max-width: 800px;
  text-align: center;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 197, resources/assets/styles/template-parts/_events.scss */

  .event-details {
    max-width: 100%;
  }
}

/* line 207, resources/assets/styles/template-parts/_events.scss */

.event-details .date {
  font-family: "Roboto-Bold";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 32px;
  line-height: 2rem;
  font-size: 36px;
  letter-spacing: -0.5px;
  text-align: center;
  margin: 0;
}

/* line 215, resources/assets/styles/template-parts/_events.scss */

.event-details .location {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 1.5rem;
  letter-spacing: 0;
  text-align: center;
  margin: 25px 0;
}

/* line 222, resources/assets/styles/template-parts/_events.scss */

.event-details .venue {
  font-family: "Roboto-Regular";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-size: 18px;
  letter-spacing: 0;
  text-align: center;
  line-height: 24px;
  margin: 0;
}

/* line 231, resources/assets/styles/template-parts/_events.scss */

.event-details+a {
  margin-top: 10px;
}

/* line 234, resources/assets/styles/template-parts/_events.scss */

.event-details+a+a {
  margin-top: 10px;
}

/* line 239, resources/assets/styles/template-parts/_events.scss */

.events-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

/* line 243, resources/assets/styles/template-parts/_events.scss */

.events-row aside {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 320px;
  margin-right: 20px;
}

@media (max-width: 1400px) and (min-width: 1024px) {
  /* line 243, resources/assets/styles/template-parts/_events.scss */

  .events-row aside {
    min-width: 280px;
  }
}

/* line 253, resources/assets/styles/template-parts/_events.scss */

.events-row .events-main {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: relative;
}

/* line 260, resources/assets/styles/template-parts/_events.scss */

.events-row .events-main.show-calendar #event-calendar {
  display: block;
}

/* line 263, resources/assets/styles/template-parts/_events.scss */

.events-row .events-main.show-calendar .filter-wrapper {
  display: none !important;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 269, resources/assets/styles/template-parts/_events.scss */

  .events-row .events-main .header-filter,
  .events-row .events-main #event-calendar {
    display: none !important;
  }

  /* line 273, resources/assets/styles/template-parts/_events.scss */

  .events-row .events-main .filter-wrapper {
    display: block !important;
  }
}

/* line 280, resources/assets/styles/template-parts/_events.scss */

.events-landing-section {
  padding-top: 25px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 286, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section .events-row>.col-xs-3,
  .events-landing-section .events-row>.col-xs-9 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 293, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .link-box {
  display: inline-block;
  position: relative;
  width: calc(100% + 8px);
  left: -4px;
  height: auto;
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 293, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section .link-box {
    left: 0;
    width: 100%;
  }
}

/* line 305, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .link-box:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background-image: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: linear-gradient(0deg, #172642 0%, #cb9701 100%);
}

/* line 315, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .link-box .cnt {
  position: relative;
  margin: 4px;
  z-index: 5;
}

/* line 320, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .link-box .cnt:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  background: #172642;
}

/* line 330, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .link-box .cnt a {
  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: relative;
  z-index: 9;
  padding: 55px 60px;
  text-decoration: none;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 330, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section .link-box .cnt a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 35px 20px;
  }
}

/* line 344, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .link-box .cnt a .title {
  position: relative;
  z-index: 9;
  font-family: "Roboto-Bold";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 48px;
  line-height: 3rem;
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 344, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section .link-box .cnt a .title {
    margin-bottom: 10px;
  }
}

/* line 357, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .link-box .cnt a .button {
  position: relative;
  z-index: 9;
  background: #fff;
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 32px;
  line-height: 2rem;
  color: #1C232C;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 45px 7px 25px;
  text-decoration: none;
  margin: 0 0 0 auto;
}

/* line 370, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .link-box .cnt a .button:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 5px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 381, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .link-box .cnt a .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 3;
  opacity: .6;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 399, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .link-box .cnt a:focus:before,
.events-landing-section .link-box .cnt a:hover:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#c7314d), to(#172b59));
  background: -webkit-linear-gradient(bottom, #c7314d 0%, #172b59 100%);
  background: -o-linear-gradient(bottom, #c7314d 0%, #172b59 100%);
  background: linear-gradient(0deg, #c7314d 0%, #172b59 100%);
}

/* line 402, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .link-box .cnt a:focus .image,
.events-landing-section .link-box .cnt a:hover .image {
  background-blend-mode: multiply;
  opacity: .6;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

/* line 411, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside {
  margin-top: 4px;
}

/* line 414, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .mobile-header {
  display: none;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 411, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 992;
    margin: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: -o-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s, -o-transform .6s;
  }

  /* line 432, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section aside.open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  /* line 437, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section aside .mobile-header {
    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;
    position: relative;
    z-index: 995;
    background-image: -webkit-gradient(linear, right top, left top, from(#EAECEF), color-stop(32%, #fff), color-stop(49%, #fff), color-stop(64%, #fff), to(#EAECEF));
    background-image: -webkit-linear-gradient(right, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
    background-image: -o-linear-gradient(right, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
    background-image: linear-gradient(270deg, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.4);
            box-shadow: 0 0 20px rgba(0,0,0,0.4);
    border-bottom: 2px solid #172642;
  }

  /* line 448, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section aside h3 {
    margin: 0;
    padding: 0 0 0 20px;
  }

  /* line 452, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section aside .close {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    width: auto;
    height: auto;
    padding: 35px 30px;
    background: #A71F34;
  }

  /* line 460, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section aside .close:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 9;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTQgMTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiBjb2xvcjwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cG9seWdvbiBpZD0icGF0aC0xIiBwb2ludHM9IjEzOTkgODQuNDEgMTM5Ny41OSA4MyAxMzkyIDg4LjU5IDEzODYuNDEgODMgMTM4NSA4NC40MSAxMzkwLjU5IDkwIDEzODUgOTUuNTkgMTM4Ni40MSA5NyAxMzkyIDkxLjQxIDEzOTcuNTkgOTcgMTM5OSA5NS41OSAxMzkzLjQxIDkwIj48L3BvbHlnb24+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iQWx0ZXJuYXRlcy0mYW1wOy1Ib3ZlcnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJTZWFyY2gtRHJvcGRvd24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMzg1LjAwMDAwMCwgLTgzLjAwMDAwMCkiPgogICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgIDx1c2UgaWQ9Ikljb24tY29sb3IiIGZpbGw9IiNGRUZFRkUiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  }

  /* line 471, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section aside .close span {
    position: absolute;
    top: 0;
    left: 0;
    text-indent: -9999px;
  }

  /* line 478, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section aside .ad {
    display: none;
  }
}

/* line 482, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .grey-box {
  position: relative;
  z-index: 9;
  width: 100%;
  padding: 0;
}

/* line 488, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .grey-box:after {
  position: absolute;
  content: '';
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 498, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .grey-box .cnt {
  position: relative;
  z-index: 9;
  background: #F3F4F5;
  padding: 30px 25px;
  margin: 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 506, resources/assets/styles/template-parts/_events.scss */

  .events-landing-section aside .grey-box .cnt h3 {
    display: none;
  }
}

/* line 512, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .ad {
  background: none;
}

/* line 517, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .events-form>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 522, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .events-form>ul>li {
  margin-bottom: 30px;
}

/* line 525, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .events-form>ul>li:last-child {
  margin-bottom: 0;
}

/* line 530, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .events-form input[type="text"] {
  border: 1px solid #C3C9D2;
}

/* line 533, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .events-form input[type="submit"] {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  background: #A71F34;
  padding: 10px 15px;
  margin: 10px 0;
  width: 100%;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 548, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .events-form input[type="submit"]:hover {
  background: #BD233B;
  border: 2px solid #fff;
}

/* line 553, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .events-form .reset-btn {
  display: inline-block;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  background: none;
  border: none;
  padding: 0;
  color: #172642;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

/* line 565, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .events-form .reset-btn:hover {
  text-decoration: underline;
}

/* line 570, resources/assets/styles/template-parts/_events.scss */

.events-landing-section aside .combo-wrap {
  width: 100%;
  margin-right: 0;
}

/* line 576, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown {
  position: relative;
  border: 1px solid #C3C9D2;
}

/* line 580, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown>a {
  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;
  background: #fff;
  text-decoration: none;
  position: relative;
}

/* line 589, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown>a .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 38px;
  min-width: 38px;
  height: 38px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMThweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMTggMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiAvIEV2ZW50PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iQ2FsZW5kYXItJmFtcDstRXZlbnRzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTA5Ny4wMDAwMDAsIC0xMTcyLjAwMDAwMCkiIGZpbGw9IiNBNzFGMzQiPgogICAgICAgICAgICA8ZyBpZD0iSWNvbi0vLUV2ZW50IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMDk3LjAwMDAwMCwgMTE3Mi4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xNS40MTY2NjY3LDIuNzUgTDE0LjUsMi43NSBMMTQuNSwwLjkxNjY2NjY2NyBMMTIuNjY2NjY2NywwLjkxNjY2NjY2NyBMMTIuNjY2NjY2NywyLjc1IEw1LjMzMzMzMzMzLDIuNzUgTDUuMzMzMzMzMzMsMC45MTY2NjY2NjcgTDMuNSwwLjkxNjY2NjY2NyBMMy41LDIuNzUgTDIuNTgzMzMzMzMsMi43NSBDMS41NjU4MzMzMywyLjc1IDAuNzU5MTY2NjY3LDMuNTc1IDAuNzU5MTY2NjY3LDQuNTgzMzMzMzMgTDAuNzUsMTcuNDE2NjY2NyBDMC43NSwxOC40MjUgMS41NjU4MzMzMywxOS4yNSAyLjU4MzMzMzMzLDE5LjI1IEwxNS40MTY2NjY3LDE5LjI1IEMxNi40MjUsMTkuMjUgMTcuMjUsMTguNDI1IDE3LjI1LDE3LjQxNjY2NjcgTDE3LjI1LDQuNTgzMzMzMzMgQzE3LjI1LDMuNTc1IDE2LjQyNSwyLjc1IDE1LjQxNjY2NjcsMi43NSBaIE0xNS40MTY2NjY3LDE3LjQxNjY2NjcgTDIuNTgzMzMzMzMsMTcuNDE2NjY2NyBMMi41ODMzMzMzMyw3LjMzMzMzMzMzIEwxNS40MTY2NjY3LDcuMzMzMzMzMzMgTDE1LjQxNjY2NjcsMTcuNDE2NjY2NyBaIE00LjQxNjY2NjY3LDkuMTY2NjY2NjcgTDksOS4xNjY2NjY2NyBMOSwxMy43NSBMNC40MTY2NjY2NywxMy43NSBMNC40MTY2NjY2Nyw5LjE2NjY2NjY3IFoiIGlkPSJJY29uLWNvbG9yIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) 50% no-repeat;
  position: relative;
}

/* line 597, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown>a .icon:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 32px;
  background: #d3d3d3;
  right: 0;
  top: 3px;
}

/* line 607, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown>a .current {
  width: 100%;
  text-align: left;
  padding: 5px 12px;
  font-family: "Roboto-Regular";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
  color: #111111;
  letter-spacing: 0;
}

/* line 616, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown>a:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 12px;
  width: 14px;
  height: 7px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSI3cHgiIHZpZXdCb3g9IjAgMCAxNCA3IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlBhdGggNSBDb3B5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iUmVzb3VyY2UtTGlicmFyeSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM3NS4wMDAwMDAsIC0yMDMwLjAwMDAwMCkiIGZpbGw9IiMxNzI2NDIiPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAtNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIwLjAwMDAwMCwgMTk3OC4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJQYXRoLTUtQ29weSIgcG9pbnRzPSIyNjguODk2MjgzIDUyIDI1NSA1MiAyNjEuOTQ4MTQxIDU4Ljk0ODE0MTQiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 627, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown>a.active:after {
  -webkit-transform: translate(0, -50%) rotate(180deg);
       -o-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

/* line 631, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown .dd {
  display: none;
  position: absolute;
  top: 38px;
  left: -1px;
  width: calc(100% + 2px);
  height: auto;
  background: #fff;
  border: 1px solid #C3C9D2;
  z-index: 9;
  list-style: none;
  padding: 20px;
  margin: 0;
}

/* line 645, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown .dd li {
  display: inline-block;
  width: 100%;
  margin: 0 0 10px 0;
}

/* line 650, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown .dd li:last-child {
  margin: 0;
}

/* line 653, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown .dd li a {
  display: inline-block;
  width: 100%;
}

/* line 657, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown .dd li .cnt {
  position: relative;
  padding: 0;
  background: transparent;
}

/* line 662, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown .dd li input {
  font-family: "Roboto-Regular";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
  color: #1C232C;
  letter-spacing: 0;
  width: 100%;
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #C3C9D2;
}

/* line 672, resources/assets/styles/template-parts/_events.scss */

.events-landing-section .date-dropdown .dd li button {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 38px;
  min-width: 38px;
  height: 38px;
  z-index: 9;
  border-right: 1px solid #C3C9D2;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 691, resources/assets/styles/template-parts/_events.scss */

  .related-events .col-xs-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 698, resources/assets/styles/template-parts/_events.scss */

  .related-events .col-xs-3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 705, resources/assets/styles/template-parts/_events.scss */

.mobile-filters {
  display: none;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 705, resources/assets/styles/template-parts/_events.scss */

  .mobile-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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 23px 25px;
    background-image: -webkit-gradient(linear, right top, left top, from(#EAECEF), color-stop(32%, #fff), color-stop(49%, #fff), color-stop(64%, #fff), to(#EAECEF));
    background-image: -webkit-linear-gradient(right, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
    background-image: -o-linear-gradient(right, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
    background-image: linear-gradient(270deg, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
    border-top: 4px solid #A71F34;
  }

  /* line 717, resources/assets/styles/template-parts/_events.scss */

  .mobile-filters h3 {
    margin: 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 30px;
    line-height: 1.875rem;
  }

  /* line 721, resources/assets/styles/template-parts/_events.scss */

  .mobile-filters a {
    font-family: "Roboto-Bold";
    text-transform: uppercase;
    text-decoration: none;
  }
}

/* line 731, resources/assets/styles/template-parts/_events.scss */

.ie .events-landing-section .link-box .cnt a .image {
  opacity: .1;
}

/* line 736, resources/assets/styles/template-parts/_events.scss */

#events-section .show-calendar #event-calendar {
  display: block;
}

/* line 739, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar {
  display: none;
}

/* line 742, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-toolbar {
  max-width: 100% !important;
  margin-bottom: 0 !important;
}

/* line 746, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-left {
  background: #172642;
  width: 100%;
}

/* line 750, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-left h2 {
  padding: 26px 25px;
  margin: 0;
  text-transform: none;
  color: #fff;
  line-height: 3rem;
  font-size: 2.25rem;
}

@media only screen and (max-width: 1400px) and (min-width: 1160px) {
  /* line 750, resources/assets/styles/template-parts/_events.scss */

  #events-section #event-calendar .fc-left h2 {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 1159px) and (min-width: 1px) {
  /* line 750, resources/assets/styles/template-parts/_events.scss */

  #events-section #event-calendar .fc-left h2 {
    font-size: 30px;
  }
}

/* line 768, resources/assets/styles/template-parts/_events.scss */

#events-section .header-filter {
  position: absolute;
  top: 32px;
  right: 30px;
  z-index: 10;
}

@media only screen and (max-width: 1159px) and (min-width: 1px) {
  /* line 768, resources/assets/styles/template-parts/_events.scss */

  #events-section .header-filter {
    padding-left: 50%;
  }
}

/* line 777, resources/assets/styles/template-parts/_events.scss */

#events-section #date-dropdown {
  float: right;
  position: relative;
  width: 203px;
  border: none;
  margin-left: 15px;
}

/* line 785, resources/assets/styles/template-parts/_events.scss */

#events-section .events-form #date-dropdown {
  float: none;
  position: relative;
  width: 100%;
  border: none;
  margin-left: 0;
}

/* line 793, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-day-header {
  background: #0F192C;
  padding: 16px 15px;
}

/* line 797, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-day-header span {
  color: #fff;
  font-family: "Roboto-Regular";
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 1px;
}

/* line 805, resources/assets/styles/template-parts/_events.scss */

#events-section table tbody td {
  padding: 0;
}

/* line 808, resources/assets/styles/template-parts/_events.scss */

#events-section table tbody td .fc-row td {
  padding: 0;
  border-right: none;
}

/* line 812, resources/assets/styles/template-parts/_events.scss */

#events-section table tbody td .fc-row td:last-child {
  padding: 0;
  border-right: none;
}

/* line 816, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-scroller::before {
  display: none;
}

/* line 819, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-head .fc-row.fc-widget-header {
  margin: 0;
}

/* line 822, resources/assets/styles/template-parts/_events.scss */

#events-section table tbody tr:nth-child(even),
#events-section table tbody tr:nth-child(odd),
#events-section #event-calendar .fc-bg table .fc-past,
#events-section #event-calendar .fc-bg table .fc-future,
#events-section #event-calendar .fc-bg table .fc-today,
#events-section table thead,
#events-section table tbody tr:nth-child(odd) {
  background: none;
}

/* line 830, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-week:not(:last-child):after {
  background: #979797;
}

/* line 833, resources/assets/styles/template-parts/_events.scss */

#events-section .fc-head-container.fc-widget-header {
  padding: 0;
}

/* line 836, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-week .fc-day-top {
  padding: 12px 14px;
  color: #0F192C;
  font-size: 24px;
  opacity: 1;
}

/* line 842, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-content-skeleton .fc-other-month.fc-past,
#events-section #event-calendar .fc-content-skeleton .fc-other-month.fc-future {
  opacity: 1;
}

/* line 845, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-week:nth-child(odd) {
  background: #fff;
}

/* line 849, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-week:nth-child(even) {
  background: #fff;
}

/* line 853, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-week .fc-event-container .fc-content {
  padding: 10px;
  margin: 0 10px 10px;
}

/* line 857, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-week tr:nth-child(odd) .fc-event-container .fc-content {
  background: #e9edf4;
}

/* line 860, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-week tr:nth-child(even) .fc-event-container .fc-content {
  background: #f4f6f9;
}

/* line 864, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-today .fc-day-number::before {
  background: #172642;
}

/* line 867, resources/assets/styles/template-parts/_events.scss */

#events-section #events-section table tbody td:last-child {
  border-right: none;
}

/* line 870, resources/assets/styles/template-parts/_events.scss */

#events-section .fc-event-container a {
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-weight: 700;
  color: #0B0B0B !important;
  text-decoration: none;
  line-height: 135%;
}

/* line 879, resources/assets/styles/template-parts/_events.scss */

#events-section .fc-time {
  display: none;
  font-family: "Roboto-Regular";
  font-weight: 400;
  text-transform: uppercase;
}

/* line 886, resources/assets/styles/template-parts/_events.scss */

#events-section .js-person,
#events-section .js-fc-time {
  display: block;
  font-size: 12px;
  font-family: "Roboto-Regular";
  font-weight: 400;
  text-transform: none;
  padding-top: 5px;
  line-height: 130%;
}

/* line 897, resources/assets/styles/template-parts/_events.scss */

#events-section #event-calendar .fc-week .fc-content {
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 1600px) {
  /* line 903, resources/assets/styles/template-parts/_events.scss */

  #events-section #event-calendar .fc-week .fc-content {
    font-size: 14px;
    padding: 0 7%;
  }
}

@media (max-width: 1400px) and (min-width: 1024px) {
  /* line 910, resources/assets/styles/template-parts/_events.scss */

  #events-section #event-calendar .fc-week .fc-content {
    font-size: 12px;
    line-height: 140%;
  }
}

/* line 916, resources/assets/styles/template-parts/_events.scss */

.view-types {
  position: relative;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
}

/* line 922, resources/assets/styles/template-parts/_events.scss */

.view-types a {
  font-size: 16px;
  vertical-align: middle;
  color: #fff;
  margin: auto 5px;
  text-decoration: none;
  font-family: "Roboto-Regular";
}

/* line 930, resources/assets/styles/template-parts/_events.scss */

.view-types a.active {
  text-decoration: underline;
}

/* line 933, resources/assets/styles/template-parts/_events.scss */

.view-types a:hover {
  color: #fff;
}

/* line 1, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar {
  min-height: 1283px;
}

/* line 7, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-head .fc-row.fc-widget-header {
  margin-bottom: 10px;
}

/* line 11, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-toolbar {
  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;
  -ms-flex-wrap: no-wrap;
      flex-wrap: no-wrap;
  margin-bottom: 42px;
  position: relative;
  max-width: 70%;
}

@media only screen and (min-width: 768px) {
  /* line 11, resources/assets/styles/template-parts/_events-calendar.scss */

  #event-calendar .fc-toolbar {
    max-width: 50%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  /* line 22, resources/assets/styles/template-parts/_events-calendar.scss */

  #event-calendar .fc-toolbar .fc-right .fc-today-button {
    display: none;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 11, resources/assets/styles/template-parts/_events-calendar.scss */

  #event-calendar .fc-toolbar {
    margin-bottom: 20px;
  }
}

/* line 30, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-toolbar h2 {
  font-size: 50px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 30, resources/assets/styles/template-parts/_events-calendar.scss */

  #event-calendar .fc-toolbar h2 {
    font-size: 35px;
  }
}

/* line 37, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-body {
  background-color: #f4f2eb;
}

/* line 41, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar table {
  border-spacing: 0;
}

/* line 44, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-scroller {
  overflow-y: hidden !important;
  height: auto !important;
  position: relative;
  border: 1px solid #979797;
  border-top: none;
}

/* line 50, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-scroller::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 19px;
  z-index: 5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #f4f2eb;
  border-top: 3px solid brown;
}

/* line 66, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-view-container>.fc-view table {
  width: 100%;
  display: table;
  table-layout: fixed;
}

/* line 73, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-week {
  background-color: #f4f2eb;
  position: relative;
  min-height: 249px;
}

/* line 79, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-week:not(:last-child) {
  border-bottom: 1px solid #979797;
}

/* line 82, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-week:not(:last-child):after {
  content: '';
  height: 1px;
  width: 100%;
  background-position: top left;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}

/* line 98, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-week .fc-event-container {
  vertical-align: top;
}

/* line 101, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-week .fc-day-top {
  padding: 23px 14px;
  font-size: 24px;
  color: #5F4E4A;
  letter-spacing: 0;
}

/* line 107, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-week .fc-content {
  font-size: 16px;
  letter-spacing: 0;
  padding: 0px 14.5px;
  margin-bottom: 1em;
}

/* line 114, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-week .fc-content .fc-time:after {
  content: ' - ';
}

/* line 123, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-bg {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 100%;
  min-height: 249px;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 132, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-bg table {
  height: 100%;
}

/* line 135, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-bg table td:not(:last-child) {
  position: relative;
}

/* line 137, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-bg table td:not(:last-child)::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background-position: top right;
  background-repeat: repeat-x;
  background-color: #979797;
}

/* line 150, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-bg table .fc-past {
  background-color: #f4f2eb;
}

/* line 153, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-bg table .fc-future,
#event-calendar .fc-bg table .fc-today {
  background-color: #fff;
  opacity: 1;
}

/* line 159, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-content-skeleton {
  z-index: 2;
  position: relative;
}

/* line 162, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-content-skeleton .fc-past {
  opacity: 0.75;
}

/* line 165, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-content-skeleton .fc-other-month.fc-past,
#event-calendar .fc-content-skeleton .fc-other-month.fc-future {
  opacity: 0.3;
}

/* line 169, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-day-header {
  text-align: left;
  position: relative;
  padding: 2px 14px;
}

/* line 173, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-day-header span {
  font-size: 20px;
  color: orange;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

/* line 180, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-day-header:not(:first-child)::before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: -3px;
  top: 0;
  background-position: top right;
  background-repeat: repeat-x;
}

/* line 193, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-today .fc-day-number {
  position: relative;
  color: #fff;
  z-index: 1;
  width: 24px;
  text-align: center;
  display: inline-block;
}

/* line 200, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-today .fc-day-number::before {
  content: '';
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  position: absolute;
  top: -.125em;
  left: -.25em;
  background-color: orange;
  z-index: -1;
}

/* line 213, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-right {
  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;
  z-index: 999;
}

@media only screen and (min-width: 1400px) {
  /* line 221, resources/assets/styles/template-parts/_events-calendar.scss */

  #event-calendar .fc-right:not(.archive) {
    position: absolute;
    left: 320px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
         -o-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@media only screen and (max-width: 1399px) and (min-width: 1160px) {
  /* line 229, resources/assets/styles/template-parts/_events-calendar.scss */

  #event-calendar .fc-right:not(.archive) {
    position: absolute;
    left: 275px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
         -o-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@media only screen and (max-width: 1159px) and (min-width: 1025px) {
  /* line 237, resources/assets/styles/template-parts/_events-calendar.scss */

  #event-calendar .fc-right:not(.archive) {
    position: absolute;
    left: 255px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
         -o-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

/* line 244, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-right .fc-today-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 15px;
}

/* line 254, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-right .fc-button-group {
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 84px;
}

@media only screen and (max-width: 1400px) and (min-width: 1px) {
  /* line 254, resources/assets/styles/template-parts/_events-calendar.scss */

  #event-calendar .fc-right .fc-button-group {
    min-width: 65px;
  }
}

/* line 266, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-right .fc-button-group .fc-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  height: 36px;
  width: 36px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

@media only screen and (max-width: 1400px) and (min-width: 1px) {
  /* line 266, resources/assets/styles/template-parts/_events-calendar.scss */

  #event-calendar .fc-right .fc-button-group .fc-button {
    height: 26px;
    width: 26px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 266, resources/assets/styles/template-parts/_events-calendar.scss */

  #event-calendar .fc-right .fc-button-group .fc-button {
    height: 34px;
    width: 34px;
  }
}

/* line 284, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-right .fc-button-group .fc-button.fc-prev-button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjM4IiB2aWV3Qm94PSIwIDAgMjIgMzgiIHdpZHRoPSIyMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNTcuOTcwNTYyNyAyMDgydjI0aDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSI0IiB0cmFuc2Zvcm09Im1hdHJpeCguNzA3MTA2NzggLjcwNzEwNjc4IC0uNzA3MTA2NzggLjcwNzEwNjc4IDE0NTEuMTc1NTAzIC0xNTExLjE1ODI1OSkiLz48L3N2Zz4=);
}

/* line 287, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-right .fc-button-group .fc-button.fc-next-button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjM4IiB2aWV3Qm94PSIwIDAgMjMgMzgiIHdpZHRoPSIyMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMTM1Ny45NDExMyAyMDgydjI0aDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgtLjcwNzEwNjc4IC0uNzA3MTA2NzggLjcwNzEwNjc4IC0uNzA3MTA2NzggLTUwOS4wNDU4MTUgMjQ2OC4zNzYyNTkpIi8+PC9zdmc+);
}

/* line 294, resources/assets/styles/template-parts/_events-calendar.scss */

#event-calendar .fc-other-month {
  opacity: .75;
}

/* line 13, resources/assets/styles/template-parts/_figures.scss */

.photo-bordered {
  display: table;
  position: relative;
  margin: 40px auto;
}

/* line 18, resources/assets/styles/template-parts/_figures.scss */

.photo-bordered>div {
  position: relative;
}

/* line 21, resources/assets/styles/template-parts/_figures.scss */

.photo-bordered>div img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 8;
}

/* line 26, resources/assets/styles/template-parts/_figures.scss */

.photo-bordered>div:after {
  position: absolute;
  content: '';
  top: -11px;
  left: -11px;
  width: calc(100% + 22px);
  height: calc(100% + 22px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 39, resources/assets/styles/template-parts/_figures.scss */

.photo-bordered.gold>div:after {
  background: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background: linear-gradient(0deg, #172642 0%, #cb9701 100%);
  -webkit-transform: rotate(0deg) !important;
       -o-transform: rotate(0deg) !important;
          transform: rotate(0deg) !important;
}

/* line 44, resources/assets/styles/template-parts/_figures.scss */

.photo-bordered figcaption {
  display: table-caption;
  caption-side: bottom;
}

/* line 51, resources/assets/styles/template-parts/_figures.scss */

.video-bordered {
  display: table;
  position: relative;
  margin: 40px 11px;
  width: calc(100% - 22px);
}

/* line 57, resources/assets/styles/template-parts/_figures.scss */

.video-bordered>div {
  position: relative;
}

/* line 60, resources/assets/styles/template-parts/_figures.scss */

.video-bordered>div img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 8;
}

/* line 65, resources/assets/styles/template-parts/_figures.scss */

.video-bordered>div:after {
  position: absolute;
  content: '';
  top: -11px;
  left: -11px;
  width: calc(100% + 22px);
  height: calc(100% + 22px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 78, resources/assets/styles/template-parts/_figures.scss */

.video-bordered.gold>div:after {
  background: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background: linear-gradient(0deg, #172642 0%, #cb9701 100%);
  -webkit-transform: rotate(0deg) !important;
       -o-transform: rotate(0deg) !important;
          transform: rotate(0deg) !important;
}

/* line 83, resources/assets/styles/template-parts/_figures.scss */

.video-bordered figcaption {
  display: table-caption;
  caption-side: bottom;
}

/* line 87, resources/assets/styles/template-parts/_figures.scss */

.video-bordered .video-js,
.video-bordered .video-cnt {
  position: relative;
  z-index: 6;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background: -webkit-gradient(linear, left top, right top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: linear-gradient(90deg, #172b59 0%, #c7314d 100%);
}

/* line 96, resources/assets/styles/template-parts/_figures.scss */

.video-bordered .video-js .vjs-big-play-button,
.video-bordered .video-cnt .vjs-big-play-button {
  z-index: 99;
}

/* line 99, resources/assets/styles/template-parts/_figures.scss */

.video-bordered .video-js .thumb,
.video-bordered .video-cnt .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 9;
  opacity: 1;
}

/* line 113, resources/assets/styles/template-parts/_figures.scss */

.video-bordered .video-js .image,
.video-bordered .video-cnt .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 9;
  opacity: .6;
}

/* line 131, resources/assets/styles/template-parts/_figures.scss */

.video-js .vjs-dock-text {
  display: none !important;
}

/* line 136, resources/assets/styles/template-parts/_figures.scss */

.featured-video {
  position: relative;
  width: 100%;
  height: auto;
}

/* line 141, resources/assets/styles/template-parts/_figures.scss */

.featured-video .video-info {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  padding: 15px 20px;
  background: rgba(13,18,38,0.9);
  z-index: 9;
}

@media only screen and (max-width: 467px) and (min-width: 1px) {
  /* line 141, resources/assets/styles/template-parts/_figures.scss */

  .featured-video .video-info {
    position: relative;
    bottom: 0;
    left: 0;
  }
}

/* line 155, resources/assets/styles/template-parts/_figures.scss */

.featured-video .video-info h3 {
  margin: 0 0 15px 0;
}

/* line 158, resources/assets/styles/template-parts/_figures.scss */

.featured-video .video-info p {
  margin: 0;
}

/* line 161, resources/assets/styles/template-parts/_figures.scss */

.featured-video .video-info h3,
.featured-video .video-info h3 a,
.featured-video .video-info p {
  color: #fff;
}

/* line 166, resources/assets/styles/template-parts/_figures.scss */

.featured-video .video-info .time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: "Roboto-Regular";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-size: 15px;
  letter-spacing: 1px;
}

/* line 176, resources/assets/styles/template-parts/_figures.scss */

.featured-video .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 2;
  opacity: .6;
}

/* line 189, resources/assets/styles/template-parts/_figures.scss */

.featured-video .inline-video {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  z-index: 9;
}

/* line 197, resources/assets/styles/template-parts/_figures.scss */

.featured-video .inline-video .video-holder {
  padding-top: 56.25%;
}

/* line 200, resources/assets/styles/template-parts/_figures.scss */

.featured-video .inline-video .video-holder video-js {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

/* line 214, resources/assets/styles/template-parts/_figures.scss */

.featured-photo {
  position: relative;
  width: calc(100% - 80px);
  height: 700px;
  margin: 0 40px;
  background: -webkit-gradient(linear, left top, right top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: linear-gradient(90deg, #172b59 0%, #c7314d 100%);
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 214, resources/assets/styles/template-parts/_figures.scss */

  .featured-photo {
    margin: 0;
    width: 100%;
  }
}

/* line 225, resources/assets/styles/template-parts/_figures.scss */

.featured-photo .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 2;
  opacity: .6;
}

/* line 240, resources/assets/styles/template-parts/_figures.scss */

.featured-photo+div .usav-section-header .stars span:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxM3B4IiB2aWV3Qm94PSIwIDAgMTQgMTMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhclNhbnNCb3JkZXI8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJQbGF5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtODA2LjAwMDAwMCwgLTM2MTYuMDAwMDAwKSIgZmlsbD0iI0JGOUUzRiI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cC01IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg3MzUuMDAwMDAwLCAzNjU5LjAwMDAwMCkgc2NhbGUoLTEsIDEpIHRyYW5zbGF0ZSgtNzM1LjAwMDAwMCwgLTM2NTkuMDAwMDAwKSB0cmFuc2xhdGUoNjUwLjAwMDAwMCwgMzYxNi4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJTdGFyU2Fuc0JvcmRlciIgcG9pbnRzPSI3IDkuNzM3NDY3NDUgMi44ODU1MDMyMyAxMi42NjMxMTkgNC4zOTY1MTM3NSA3Ljg0NTkyMzk2IDAuMzQyNjA0Mzg2IDQuODM2ODgxMDQgNS4zOTA5NTcwMSA0Ljc4NTM0MjMxIDcgMCA4LjYwOTA0Mjk5IDQuNzg1MzQyMzEgMTMuNjU3Mzk1NiA0LjgzNjg4MTA0IDkuNjAzNDg2MjUgNy44NDU5MjM5NiAxMS4xMTQ0OTY4IDEyLjY2MzExOSI+PC9wb2x5Z29uPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% no-repeat;
}

/* line 245, resources/assets/styles/template-parts/_figures.scss */

.featured-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  min-height: 280px;
  padding: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: linear-gradient(90deg, #172b59 0%, #c7314d 100%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 245, resources/assets/styles/template-parts/_figures.scss */

  .featured-event {
    padding: 0;
  }
}

/* line 256, resources/assets/styles/template-parts/_figures.scss */

.featured-event .event-info {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  width: auto;
  padding: 18px 45px;
  background: #fff;
  border: 5px solid #D3DBE8;
  z-index: 9;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 256, resources/assets/styles/template-parts/_figures.scss */

  .featured-event .event-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-top: 150px;
    padding: 15px;
  }
}

/* line 274, resources/assets/styles/template-parts/_figures.scss */

.featured-event .event-info .logo {
  margin-right: 50px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 274, resources/assets/styles/template-parts/_figures.scss */

  .featured-event .event-info .logo {
    margin: 0 0 20px 0;
  }
}

/* line 281, resources/assets/styles/template-parts/_figures.scss */

.featured-event .event-info .content {
  width: 100%;
}

/* line 284, resources/assets/styles/template-parts/_figures.scss */

.featured-event .event-info .event-sponsor {
  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;
  margin-bottom: 10px;
}

/* line 290, resources/assets/styles/template-parts/_figures.scss */

.featured-event .event-info .event-sponsor img {
  margin-right: 20px;
}

/* line 293, resources/assets/styles/template-parts/_figures.scss */

.featured-event .event-info .event-sponsor p {
  margin: 0;
}

/* line 297, resources/assets/styles/template-parts/_figures.scss */

.featured-event .event-info .post-title a {
  font-family: "Roboto-Bold";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 30px;
  line-height: 1.875rem;
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 297, resources/assets/styles/template-parts/_figures.scss */

  .featured-event .event-info .post-title a {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
}

/* line 306, resources/assets/styles/template-parts/_figures.scss */

.featured-event .event-info .location {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  letter-spacing: 0;
  margin: 0;
}

/* line 312, resources/assets/styles/template-parts/_figures.scss */

.featured-event .event-info .event-type {
  font-family: "Roboto-Regular";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  letter-spacing: 0;
  margin: 0;
}

/* line 319, resources/assets/styles/template-parts/_figures.scss */

.featured-event .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 2;
  opacity: .6;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 319, resources/assets/styles/template-parts/_figures.scss */

  .featured-event .image {
    height: 150px;
  }
}

/* line 339, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure {
  position: relative;
  margin-bottom: 175px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 339, resources/assets/styles/template-parts/_figures.scss */

  .ceo-figure {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

/* line 347, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .ceo-photo {
  display: block;
  position: relative;
  width: 430px;
  height: 430px;
  border-radius: 100%;
  margin: 0 auto;
  z-index: 9;
}

@media only screen and (max-width: 567px) and (min-width: 1px) {
  /* line 347, resources/assets/styles/template-parts/_figures.scss */

  .ceo-figure .ceo-photo {
    width: 230px;
    height: 230px;
  }
}

/* line 360, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .ceo-photo:before {
  position: absolute;
  content: '';
  top: -12px;
  left: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background-image: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background-image: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background-image: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  border-radius: 100%;
  z-index: 2;
}

/* line 371, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .ceo-photo .photo {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
}

/* line 380, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .ceo-photo .photo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* line 389, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure.right .stars {
  top: 50%;
  right: 0;
}

/* line 393, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure.right .stripes {
  -webkit-transform: rotate(135deg);
       -o-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 175px;
  right: 100px;
}

@media only screen and (max-width: 567px) and (min-width: 1px) {
  /* line 393, resources/assets/styles/template-parts/_figures.scss */

  .ceo-figure.right .stripes {
    top: 100px;
  }
}

/* line 403, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .stars {
  position: absolute;
  top: 50%;
  height: 100%;
  width: 150px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iUGxheSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTExNDYuMDAwMDAwLCAtNzYzLjAwMDAwMCkiIHN0cm9rZT0iI0NCOTcwMSI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cC0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg3MzYuMDAwMDAwLCA3NjYuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNTM2LC0xLjU2ODgyNTYgTDU2Ni4wMTI5NzksODcuNjkwNjc4MSBMNjYwLjE3ODMzMiw4OC42NTIwMTQgTDU4NC41NjIwMiwxNDQuNzc4NzU3IEw2MTIuNzQ2NDMsMjM0LjYzMjM5OSBMNTM2LDE4MC4wNjExMyBMNDU5LjI1MzU3LDIzNC42MzIzOTkgTDQ4Ny40Mzc5OCwxNDQuNzc4NzU3IEw0MTEuODIxNjY4LDg4LjY1MjAxNCBMNTA1Ljk4NzAyMSw4Ny42OTA2NzgxIEw1MzYsLTEuNTY4ODI1NiBaIiBpZD0iU3Rhci1Db3B5LTkiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 0 0 space;
  z-index: 3;
  background-size: 100%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 403, resources/assets/styles/template-parts/_figures.scss */

  .ceo-figure .stars {
    height: 100%;
    width: 75px;
  }
}

/* line 418, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .stripes {
  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;
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 3;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 418, resources/assets/styles/template-parts/_figures.scss */

  .ceo-figure .stripes {
    width: 75%;
    height: 60px;
  }
}

/* line 431, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .stripes span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 1px;
  background: #172642;
}

/* line 437, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .stripes .stripe-1 {
  margin: auto 0 auto 80px;
}

/* line 440, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .stripes .stripe-2 {
  margin: auto 20px auto 60px;
}

/* line 443, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .stripes .stripe-3 {
  margin: auto 40px auto 40px;
}

/* line 446, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .stripes .stripe-4 {
  margin: auto 60px auto 20px;
}

/* line 449, resources/assets/styles/template-parts/_figures.scss */

.ceo-figure .stripes .stripe-5 {
  margin: auto 80px auto 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 453, resources/assets/styles/template-parts/_figures.scss */

  .ceo-figure .stripes .stripe-1 {
    margin: auto 0 auto 40px;
  }

  /* line 456, resources/assets/styles/template-parts/_figures.scss */

  .ceo-figure .stripes .stripe-2 {
    margin: auto 10px auto 30px;
  }

  /* line 459, resources/assets/styles/template-parts/_figures.scss */

  .ceo-figure .stripes .stripe-3 {
    margin: auto 20px auto 20px;
  }

  /* line 462, resources/assets/styles/template-parts/_figures.scss */

  .ceo-figure .stripes .stripe-4 {
    margin: auto 30px auto 10px;
  }

  /* line 465, resources/assets/styles/template-parts/_figures.scss */

  .ceo-figure .stripes .stripe-5 {
    margin: auto 40px auto 0;
  }
}

/* line 473, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1 {
  position: relative;
  margin-bottom: 175px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 473, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1 {
    margin-top: 75px;
  }
}

/* line 482, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1.right img {
  display: block;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 9;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 482, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1.right img {
    margin: 0 auto;
    width: 100%;
  }
}

/* line 493, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1.right .stars {
  top: -125px;
  left: -125px;
}

@media only screen and (max-width: 1420px) and (min-width: 1px) {
  /* line 493, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1.right .stars {
    left: 0;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 493, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1.right .stars {
    top: -75px;
  }
}

/* line 504, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1.right .stripes {
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 50% 0;
       -o-transform-origin: 50% 0;
          transform-origin: 50% 0;
  bottom: 150px;
  right: -30%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 504, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1.right .stripes {
    bottom: 15px;
    right: -20%;
  }
}

/* line 518, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1.left img {
  display: block;
  margin: 0 auto 0 0;
  position: relative;
  z-index: 9;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 518, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1.left img {
    margin: 0 auto;
    width: 100%;
  }
}

/* line 529, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1.left .stars {
  top: -125px;
  left: -125px;
}

@media only screen and (max-width: 1420px) and (min-width: 1px) {
  /* line 529, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1.left .stars {
    left: 0;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 529, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1.left .stars {
    top: -75px;
  }
}

/* line 540, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1.left .stripes {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 50% 0;
       -o-transform-origin: 50% 0;
          transform-origin: 50% 0;
  bottom: 150px;
  left: -30%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 540, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1.left .stripes {
    bottom: 15px;
    left: -20%;
  }
}

/* line 552, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1 .stars {
  position: absolute;
  width: 100%;
  height: 210px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA0PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iQXRobGV0ZXMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zOC4wMDAwMDAsIC0yMjYuMDAwMDAwKSIgc3Ryb2tlPSIjRTRFOUYxIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE2NCwyMjcuNDMxMTc0IEwxOTQuMDEyOTc5LDMxNi42OTA2NzggTDI4OC4xNzgzMzIsMzE3LjY1MjAxNCBMMjEyLjU2MjAyLDM3My43Nzg3NTcgTDI0MC43NDY0Myw0NjMuNjMyMzk5IEwxNjQsNDA5LjA2MTEzIEw4Ny4yNTM1Njk5LDQ2My42MzIzOTkgTDExNS40Mzc5OCwzNzMuNzc4NzU3IEwzOS44MjE2Njc2LDMxNy42NTIwMTQgTDEzMy45ODcwMjEsMzE2LjY5MDY3OCBMMTY0LDIyNy40MzExNzQgWiIgaWQ9IlN0YXItQ29weS00Ij48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 0 0 space;
  background-size: auto 100%;
  z-index: 2;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 552, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1 .stars {
    height: 135px;
  }
}

/* line 564, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1 .stripes {
  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;
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 3;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 564, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1 .stripes {
    width: 75%;
    height: 60px;
  }
}

/* line 577, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1 .stripes span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 1px;
  background: #172642;
}

/* line 583, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1 .stripes .stripe-1 {
  margin: auto 0 auto 80px;
}

/* line 586, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1 .stripes .stripe-2 {
  margin: auto 20px auto 60px;
}

/* line 589, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1 .stripes .stripe-3 {
  margin: auto 40px auto 40px;
}

/* line 592, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1 .stripes .stripe-4 {
  margin: auto 60px auto 20px;
}

/* line 595, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-1 .stripes .stripe-5 {
  margin: auto 80px auto 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 599, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1 .stripes .stripe-1 {
    margin: auto 0 auto 40px;
  }

  /* line 602, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1 .stripes .stripe-2 {
    margin: auto 10px auto 30px;
  }

  /* line 605, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1 .stripes .stripe-3 {
    margin: auto 20px auto 20px;
  }

  /* line 608, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1 .stripes .stripe-4 {
    margin: auto 30px auto 10px;
  }

  /* line 611, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-1 .stripes .stripe-5 {
    margin: auto 40px auto 0;
  }
}

/* line 618, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2 {
  position: relative;
  margin-bottom: 175px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 618, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2 {
    margin-top: 75px;
  }
}

/* line 627, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2.right img {
  display: block;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 9;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 627, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2.right img {
    margin: 0 auto;
    width: 100%;
  }
}

/* line 638, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2.right .stars {
  top: -125px;
  left: -125px;
}

@media only screen and (max-width: 1420px) and (min-width: 1px) {
  /* line 638, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2.right .stars {
    left: 0;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 638, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2.right .stars {
    top: -75px;
  }
}

/* line 649, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2.right .stripes {
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 50% 0;
       -o-transform-origin: 50% 0;
          transform-origin: 50% 0;
  bottom: 150px;
  right: -30%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 649, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2.right .stripes {
    bottom: 15px;
    right: -20%;
  }
}

/* line 663, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2.left img {
  display: block;
  margin: 0 auto 0 0;
  position: relative;
  z-index: 9;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 663, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2.left img {
    margin: 0 auto;
    width: 100%;
  }
}

/* line 674, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2.left .stars {
  top: -125px;
  left: -125px;
}

@media only screen and (max-width: 1420px) and (min-width: 1px) {
  /* line 674, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2.left .stars {
    left: 0;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 674, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2.left .stars {
    top: -75px;
  }
}

/* line 685, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2.left .stripes {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 50% 0;
       -o-transform-origin: 50% 0;
          transform-origin: 50% 0;
  bottom: 150px;
  left: -30%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 685, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2.left .stripes {
    bottom: 15px;
    left: -20%;
  }
}

/* line 697, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2 .stars {
  position: absolute;
  width: 100%;
  height: 210px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iUGxheSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYwNS4wMDAwMDAsIC01NzAyLjAwMDAwMCkiIHN0cm9rZT0iI0E3MUYzNCI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik03MzEsNTcwMy40MzExNyBMNzYxLjAxMjk3OSw1NzkyLjY5MDY4IEw4NTUuMTc4MzMyLDU3OTMuNjUyMDEgTDc3OS41NjIwMiw1ODQ5Ljc3ODc2IEw4MDcuNzQ2NDMsNTkzOS42MzI0IEw3MzEsNTg4NS4wNjExMyBMNjU0LjI1MzU3LDU5MzkuNjMyNCBMNjgyLjQzNzk4LDU4NDkuNzc4NzYgTDYwNi44MjE2NjgsNTc5My42NTIwMSBMNzAwLjk4NzAyMSw1NzkyLjY5MDY4IEw3MzEsNTcwMy40MzExNyBaIiBpZD0iU3Rhci1Db3B5LTkiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) 0 0 space;
  background-size: auto 100%;
  z-index: 2;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 697, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2 .stars {
    height: 135px;
  }
}

/* line 709, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2 .stripes {
  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;
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 3;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 709, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2 .stripes {
    width: 75%;
    height: 60px;
  }
}

/* line 722, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2 .stripes span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 1px;
  background: #172642;
}

/* line 728, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2 .stripes .stripe-1 {
  margin: auto 0 auto 80px;
}

/* line 731, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2 .stripes .stripe-2 {
  margin: auto 20px auto 60px;
}

/* line 734, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2 .stripes .stripe-3 {
  margin: auto 40px auto 40px;
}

/* line 737, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2 .stripes .stripe-4 {
  margin: auto 60px auto 20px;
}

/* line 740, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-2 .stripes .stripe-5 {
  margin: auto 80px auto 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 744, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2 .stripes .stripe-1 {
    margin: auto 0 auto 40px;
  }

  /* line 747, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2 .stripes .stripe-2 {
    margin: auto 10px auto 30px;
  }

  /* line 750, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2 .stripes .stripe-3 {
    margin: auto 20px auto 20px;
  }

  /* line 753, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2 .stripes .stripe-4 {
    margin: auto 30px auto 10px;
  }

  /* line 756, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-2 .stripes .stripe-5 {
    margin: auto 40px auto 0;
  }
}

/* line 763, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3 {
  position: relative;
  margin-bottom: 175px;
}

/* line 769, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3.right img {
  display: block;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 9;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 769, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3.right img {
    margin: 0 auto;
    width: 100%;
  }
}

/* line 780, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3.right .stars {
  top: -125px;
  right: -125px;
}

@media only screen and (max-width: 1420px) and (min-width: 1px) {
  /* line 780, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3.right .stars {
    right: 0;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 780, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3.right .stars {
    top: -75px;
  }
}

/* line 791, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3.right .stripes {
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 50% 0;
       -o-transform-origin: 50% 0;
          transform-origin: 50% 0;
  bottom: 150px;
  right: -30%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 791, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3.right .stripes {
    bottom: 15px;
    right: -20%;
  }
}

/* line 805, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3.left img {
  display: block;
  margin: 0 auto 0 0;
  position: relative;
  z-index: 9;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 805, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3.left img {
    margin: 0 auto;
    width: 100%;
  }
}

/* line 816, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3.left .stars {
  top: -125px;
  left: -25px;
}

@media only screen and (max-width: 1420px) and (min-width: 1px) {
  /* line 816, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3.left .stars {
    left: 0;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 816, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3.left .stars {
    top: -75px;
  }
}

/* line 827, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3.left .stripes {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  bottom: 150px;
  left: -30%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 827, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3.left .stripes {
    bottom: 15px;
    left: -20%;
  }
}

/* line 839, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3 .stars {
  position: absolute;
  height: calc(100% + 135px);
  width: 210px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iUGxheSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTExNDYuMDAwMDAwLCAtNzYzLjAwMDAwMCkiIHN0cm9rZT0iI0NCOTcwMSI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cC0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg3MzYuMDAwMDAwLCA3NjYuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNTM2LC0xLjU2ODgyNTYgTDU2Ni4wMTI5NzksODcuNjkwNjc4MSBMNjYwLjE3ODMzMiw4OC42NTIwMTQgTDU4NC41NjIwMiwxNDQuNzc4NzU3IEw2MTIuNzQ2NDMsMjM0LjYzMjM5OSBMNTM2LDE4MC4wNjExMyBMNDU5LjI1MzU3LDIzNC42MzIzOTkgTDQ4Ny40Mzc5OCwxNDQuNzc4NzU3IEw0MTEuODIxNjY4LDg4LjY1MjAxNCBMNTA1Ljk4NzAyMSw4Ny42OTA2NzgxIEw1MzYsLTEuNTY4ODI1NiBaIiBpZD0iU3Rhci1Db3B5LTkiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 0 0 space;
  background-size: 100% auto;
  z-index: 2;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 839, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3 .stars {
    width: 125px;
  }
}

/* line 851, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3 .stripes {
  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;
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 3;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 851, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3 .stripes {
    width: 75%;
    height: 60px;
  }
}

/* line 864, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3 .stripes span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 1px;
  background: #172642;
}

/* line 870, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3 .stripes .stripe-1 {
  margin: auto 0 auto 80px;
}

/* line 873, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3 .stripes .stripe-2 {
  margin: auto 20px auto 60px;
}

/* line 876, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3 .stripes .stripe-3 {
  margin: auto 40px auto 40px;
}

/* line 879, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3 .stripes .stripe-4 {
  margin: auto 60px auto 20px;
}

/* line 882, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-3 .stripes .stripe-5 {
  margin: auto 80px auto 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 886, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3 .stripes .stripe-1 {
    margin: auto 0 auto 40px;
  }

  /* line 889, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3 .stripes .stripe-2 {
    margin: auto 10px auto 30px;
  }

  /* line 892, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3 .stripes .stripe-3 {
    margin: auto 20px auto 20px;
  }

  /* line 895, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3 .stripes .stripe-4 {
    margin: auto 30px auto 10px;
  }

  /* line 898, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-3 .stripes .stripe-5 {
    margin: auto 40px auto 0;
  }
}

/* line 906, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-about {
  position: relative;
  margin-top: 50px;
}

/* line 910, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-about img {
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 9;
  max-height: 625px;
}

/* line 917, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-about .stars {
  position: absolute;
  height: 100%;
  width: 25%;
  top: 0;
  left: 0;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iUGxheSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTExNDYuMDAwMDAwLCAtNzYzLjAwMDAwMCkiIHN0cm9rZT0iI0NCOTcwMSI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cC0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg3MzYuMDAwMDAwLCA3NjYuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNTM2LC0xLjU2ODgyNTYgTDU2Ni4wMTI5NzksODcuNjkwNjc4MSBMNjYwLjE3ODMzMiw4OC42NTIwMTQgTDU4NC41NjIwMiwxNDQuNzc4NzU3IEw2MTIuNzQ2NDMsMjM0LjYzMjM5OSBMNTM2LDE4MC4wNjExMyBMNDU5LjI1MzU3LDIzNC42MzIzOTkgTDQ4Ny40Mzc5OCwxNDQuNzc4NzU3IEw0MTEuODIxNjY4LDg4LjY1MjAxNCBMNTA1Ljk4NzAyMSw4Ny42OTA2NzgxIEw1MzYsLTEuNTY4ODI1NiBaIiBpZD0iU3Rhci1Db3B5LTkiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 0 0 space;
  background-size: 100%;
  z-index: 3;
}

/* line 927, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-about .stripes {
  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;
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 3;
  -webkit-transform: rotate(-135deg);
       -o-transform: rotate(-135deg);
          transform: rotate(-135deg);
  bottom: 120px;
  left: 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 927, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-about .stripes {
    bottom: 0;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 927, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-about .stripes {
    bottom: 150px;
  }
}

/* line 945, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-about .stripes span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 1px;
  background: #172642;
}

/* line 951, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-about .stripes .stripe-1 {
  margin: auto 0 auto 80px;
}

/* line 954, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-about .stripes .stripe-2 {
  margin: auto 20px auto 60px;
}

/* line 957, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-about .stripes .stripe-3 {
  margin: auto 40px auto 40px;
}

/* line 960, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-about .stripes .stripe-4 {
  margin: auto 60px auto 20px;
}

/* line 963, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-about .stripes .stripe-5 {
  margin: auto 80px auto 0;
}

/* line 970, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-home {
  position: relative;
  margin-top: 50px;
}

/* line 974, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-home img {
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 9;
  max-height: 625px;
}

/* line 981, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-home .stars {
  position: absolute;
  height: 100%;
  width: 25%;
  top: 0;
  right: 0;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iUGxheSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTExNDYuMDAwMDAwLCAtNzYzLjAwMDAwMCkiIHN0cm9rZT0iI0NCOTcwMSI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cC0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg3MzYuMDAwMDAwLCA3NjYuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNTM2LC0xLjU2ODgyNTYgTDU2Ni4wMTI5NzksODcuNjkwNjc4MSBMNjYwLjE3ODMzMiw4OC42NTIwMTQgTDU4NC41NjIwMiwxNDQuNzc4NzU3IEw2MTIuNzQ2NDMsMjM0LjYzMjM5OSBMNTM2LDE4MC4wNjExMyBMNDU5LjI1MzU3LDIzNC42MzIzOTkgTDQ4Ny40Mzc5OCwxNDQuNzc4NzU3IEw0MTEuODIxNjY4LDg4LjY1MjAxNCBMNTA1Ljk4NzAyMSw4Ny42OTA2NzgxIEw1MzYsLTEuNTY4ODI1NiBaIiBpZD0iU3Rhci1Db3B5LTkiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 0 0 space;
  background-size: 100%;
  z-index: 3;
}

/* line 991, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-home .stripes {
  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;
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 3;
  -webkit-transform: rotate(-135deg);
       -o-transform: rotate(-135deg);
          transform: rotate(-135deg);
  bottom: 120px;
  left: 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 991, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-home .stripes {
    bottom: 0;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 991, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-home .stripes {
    bottom: 50px;
  }
}

/* line 1009, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-home .stripes span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 1px;
  background: #172642;
}

/* line 1015, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-home .stripes .stripe-1 {
  margin: auto 0 auto 80px;
}

/* line 1018, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-home .stripes .stripe-2 {
  margin: auto 20px auto 60px;
}

/* line 1021, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-home .stripes .stripe-3 {
  margin: auto 40px auto 40px;
}

/* line 1024, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-home .stripes .stripe-4 {
  margin: auto 60px auto 20px;
}

/* line 1027, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-home .stripes .stripe-5 {
  margin: auto 80px auto 0;
}

/* line 1034, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-membership {
  position: relative;
  margin-top: 50px;
}

/* line 1038, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-membership img {
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 9;
  max-height: 625px;
}

/* line 1045, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-membership .stars {
  position: absolute;
  height: 100%;
  width: 25%;
  top: 0;
  right: 0;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iUGxheSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTExNDYuMDAwMDAwLCAtNzYzLjAwMDAwMCkiIHN0cm9rZT0iI0NCOTcwMSI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cC0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg3MzYuMDAwMDAwLCA3NjYuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNTM2LC0xLjU2ODgyNTYgTDU2Ni4wMTI5NzksODcuNjkwNjc4MSBMNjYwLjE3ODMzMiw4OC42NTIwMTQgTDU4NC41NjIwMiwxNDQuNzc4NzU3IEw2MTIuNzQ2NDMsMjM0LjYzMjM5OSBMNTM2LDE4MC4wNjExMyBMNDU5LjI1MzU3LDIzNC42MzIzOTkgTDQ4Ny40Mzc5OCwxNDQuNzc4NzU3IEw0MTEuODIxNjY4LDg4LjY1MjAxNCBMNTA1Ljk4NzAyMSw4Ny42OTA2NzgxIEw1MzYsLTEuNTY4ODI1NiBaIiBpZD0iU3Rhci1Db3B5LTkiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 0 0 space;
  background-size: 100%;
  z-index: 3;
}

/* line 1055, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-membership .stripes {
  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;
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 3;
  -webkit-transform: rotate(-135deg);
       -o-transform: rotate(-135deg);
          transform: rotate(-135deg);
  bottom: 120px;
  left: 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1055, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-membership .stripes {
    bottom: 0;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1055, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-membership .stripes {
    bottom: 50px;
  }
}

/* line 1073, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-membership .stripes span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 1px;
  background: #172642;
}

/* line 1079, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-membership .stripes .stripe-1 {
  margin: auto 0 auto 80px;
}

/* line 1082, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-membership .stripes .stripe-2 {
  margin: auto 20px auto 60px;
}

/* line 1085, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-membership .stripes .stripe-3 {
  margin: auto 40px auto 40px;
}

/* line 1088, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-membership .stripes .stripe-4 {
  margin: auto 60px auto 20px;
}

/* line 1091, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-membership .stripes .stripe-5 {
  margin: auto 80px auto 0;
}

/* line 1098, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-play {
  position: relative;
  margin-top: 50px;
}

/* line 1102, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-play img {
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 9;
  max-height: 625px;
}

/* line 1109, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-play .stars {
  position: absolute;
  height: 100%;
  width: 25%;
  top: 0;
  right: 0;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjUycHgiIGhlaWdodD0iMjM5cHgiIHZpZXdCb3g9IjAgMCAyNTIgMjM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPlN0YXIgQ29weSA5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iUGxheSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTExNDYuMDAwMDAwLCAtNzYzLjAwMDAwMCkiIHN0cm9rZT0iI0NCOTcwMSI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cC0yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg3MzYuMDAwMDAwLCA3NjYuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNTM2LC0xLjU2ODgyNTYgTDU2Ni4wMTI5NzksODcuNjkwNjc4MSBMNjYwLjE3ODMzMiw4OC42NTIwMTQgTDU4NC41NjIwMiwxNDQuNzc4NzU3IEw2MTIuNzQ2NDMsMjM0LjYzMjM5OSBMNTM2LDE4MC4wNjExMyBMNDU5LjI1MzU3LDIzNC42MzIzOTkgTDQ4Ny40Mzc5OCwxNDQuNzc4NzU3IEw0MTEuODIxNjY4LDg4LjY1MjAxNCBMNTA1Ljk4NzAyMSw4Ny42OTA2NzgxIEw1MzYsLTEuNTY4ODI1NiBaIiBpZD0iU3Rhci1Db3B5LTkiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 0 0 space;
  background-size: 100%;
  z-index: 3;
}

/* line 1119, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-play .stripes {
  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;
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 3;
  -webkit-transform: rotate(-135deg);
       -o-transform: rotate(-135deg);
          transform: rotate(-135deg);
  bottom: 120px;
  left: 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1119, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-play .stripes {
    bottom: 0;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 1119, resources/assets/styles/template-parts/_figures.scss */

  .photo-figure-play .stripes {
    bottom: 50px;
  }
}

/* line 1137, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-play .stripes span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 1px;
  background: #172642;
}

/* line 1143, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-play .stripes .stripe-1 {
  margin: auto 0 auto 80px;
}

/* line 1146, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-play .stripes .stripe-2 {
  margin: auto 20px auto 60px;
}

/* line 1149, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-play .stripes .stripe-3 {
  margin: auto 40px auto 40px;
}

/* line 1152, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-play .stripes .stripe-4 {
  margin: auto 60px auto 20px;
}

/* line 1155, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-play .stripes .stripe-5 {
  margin: auto 80px auto 0;
}

/* line 1162, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-usavlearn {
  position: relative;
  margin-top: 50px;
}

/* line 1166, resources/assets/styles/template-parts/_figures.scss */

.photo-figure-usavlearn img {
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 9;
  max-height: 625px;
}

/* line 1178, resources/assets/styles/template-parts/_figures.scss */

.ie .featured-photo .image {
  opacity: .1;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 1186, resources/assets/styles/template-parts/_figures.scss */

  .home .featured-event .event-info {
    margin-top: 0;
  }

  /* line 1190, resources/assets/styles/template-parts/_figures.scss */

  .home .featured-event .image {
    opacity: 0;
  }
}

/* line 13, resources/assets/styles/template-parts/_filters.scss */

.team-filter {
  border-top: 4px solid #A71F34;
  border-bottom: 4px solid #172642;
  padding: 30px 0 0 0;
  background: #EAECEF;
}

/* line 19, resources/assets/styles/template-parts/_filters.scss */

.team-filter ul {
  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;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 28, resources/assets/styles/template-parts/_filters.scss */

.team-filter ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 25px;
}

/* line 32, resources/assets/styles/template-parts/_filters.scss */

.team-filter ul li a {
  position: relative;
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 32px;
  line-height: 2rem;
  color: #172642;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  padding: 20px 10px;
  cursor: pointer;
}

/* line 43, resources/assets/styles/template-parts/_filters.scss */

.team-filter ul li a:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #A71F34;
  opacity: 0;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 54, resources/assets/styles/template-parts/_filters.scss */

.team-filter ul li a[aria-selected="true"] {
  color: #A71F34;
}

/* line 57, resources/assets/styles/template-parts/_filters.scss */

.team-filter ul li a[aria-selected="true"]:after {
  opacity: 1;
}

/* line 67, resources/assets/styles/template-parts/_filters.scss */

.filter-bar {
  background-image: -webkit-gradient(linear, right top, left top, from(#EAECEF), color-stop(32%, #fff), color-stop(49%, #fff), color-stop(64%, #fff), to(#EAECEF));
  background-image: -webkit-linear-gradient(right, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
  background-image: -o-linear-gradient(right, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
  background-image: linear-gradient(270deg, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
  padding: 45px 120px;
  border-top: 4px solid #A71F34;
  border-bottom: 4px solid #172642;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 67, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar {
    padding: 45px 50px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 67, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar {
    padding: 35px 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 67, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar {
    padding: 35px 10px;
  }
}

/* line 82, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-header {
  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;
}

/* line 88, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-header .section-title-left {
  width: 100%;
  margin: 0;
}

/* line 92, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-header .mobile-btn {
  display: none;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 92, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-header .mobile-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

/* line 100, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-body {
  margin-top: 50px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 104, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-body .col-xs-9,
  .filter-bar .filter-body .col-xs-3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 110, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-body .filters-row {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 116, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-body .mobile-header {
  display: none;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 100, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 992;
    margin: 0;
    background: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: -o-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s, -o-transform .6s;
  }

  /* line 135, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-body .filters-row {
    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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 20px;
  }

  /* line 142, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-body .col-xs-9,
  .filter-bar .filter-body .col-xs-3 {
    padding: 0;
  }

  /* line 146, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-body.open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  /* line 151, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-body .mobile-header {
    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;
    position: relative;
    z-index: 995;
    background-image: -webkit-gradient(linear, right top, left top, from(#EAECEF), color-stop(32%, #fff), color-stop(49%, #fff), color-stop(64%, #fff), to(#EAECEF));
    background-image: -webkit-linear-gradient(right, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
    background-image: -o-linear-gradient(right, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
    background-image: linear-gradient(270deg, #EAECEF 0%, #fff 32%, #fff 49%, #fff 64%, #EAECEF 100%);
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.4);
            box-shadow: 0 0 20px rgba(0,0,0,0.4);
    border-bottom: 2px solid #172642;
  }

  /* line 162, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-body h3 {
    margin: 0;
    padding: 0 0 0 20px;
  }

  /* line 166, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-body .close {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    width: auto;
    height: auto;
    padding: 35px 30px;
    background: #A71F34;
  }

  /* line 174, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-body .close:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 9;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTQgMTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiBjb2xvcjwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cG9seWdvbiBpZD0icGF0aC0xIiBwb2ludHM9IjEzOTkgODQuNDEgMTM5Ny41OSA4MyAxMzkyIDg4LjU5IDEzODYuNDEgODMgMTM4NSA4NC40MSAxMzkwLjU5IDkwIDEzODUgOTUuNTkgMTM4Ni40MSA5NyAxMzkyIDkxLjQxIDEzOTcuNTkgOTcgMTM5OSA5NS41OSAxMzkzLjQxIDkwIj48L3BvbHlnb24+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iQWx0ZXJuYXRlcy0mYW1wOy1Ib3ZlcnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJTZWFyY2gtRHJvcGRvd24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMzg1LjAwMDAwMCwgLTgzLjAwMDAwMCkiPgogICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgIDx1c2UgaWQ9Ikljb24tY29sb3IiIGZpbGw9IiNGRUZFRkUiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  }

  /* line 185, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-body .close span {
    position: absolute;
    top: 0;
    left: 0;
    text-indent: -9999px;
  }

  /* line 192, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-body .ad {
    display: none;
  }
}

/* line 198, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-dd {
  position: relative;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 198, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd {
    padding: 50px 20px 0 20px;
  }

  /* line 204, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd h3 {
    padding: 0;
  }
}

/* line 208, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-dd:after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #C3C9D2;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 208, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd:after {
    display: none;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 222, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd .col-xs-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }

  /* line 227, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd .col-xs-3:nth-child(3),
  .filter-bar .filter-dd .col-xs-3:nth-child(4) {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 198, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd {
    margin-top: 20px;
  }

  /* line 236, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd .col-xs-3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  /* line 240, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd .col-xs-3:nth-child(3) {
    margin-bottom: 20px;
  }
}

/* line 245, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-dd .filter-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 245, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd .filter-item {
    margin-bottom: 20px;
  }
}

/* line 253, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-dd .filter-item label {
  margin: 0 0 5px 0;
}

/* line 256, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-dd .filter-item .edd-root {
  width: calc(100% - 20px);
  margin-right: 20px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 256, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd .filter-item .edd-root {
    width: 100%;
    margin-right: 0;
  }
}

/* line 265, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-dd .filter-item:last-child .edd-root {
  margin-right: 0;
  width: 100%;
}

/* line 270, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-dd .filter-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 0;
  margin-right: 20px;
  width: 100px;
  min-width: 100px;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 270, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd .filter-button {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 270, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd .filter-button {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

/* line 284, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-dd .filter-button input[type="submit"] {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  background: #A71F34;
  padding: 6px 15px;
  width: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 299, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-dd .filter-button input[type="submit"]:hover {
  background: #BD233B;
  border: 2px solid #fff;
}

/* line 305, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-dd .reset-page,
.filter-bar .filter-dd input[type="reset"] {
  display: inline-block;
  text-align: center;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #1C232C;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 10px 20px 0 auto;
  width: 100px;
  border: none;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 323, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-dd .reset-page:hover,
.filter-bar .filter-dd input[type="reset"]:hover {
  color: #A71F34;
  text-decoration: underline;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 305, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-dd .reset-page,
  .filter-bar .filter-dd input[type="reset"] {
    margin: 10px 0 0 auto;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 333, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-search {
    padding: 0 20px 50px 20px;
  }

  /* line 338, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-search h3 {
    padding: 0;
  }
}

/* line 342, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-search form {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 342, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-search form {
    width: 100%;
    margin-top: 35px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 342, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-search form {
    -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;
  }
}

/* line 355, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-search form label {
  margin-right: 20px;
  margin-bottom: 5px;
  white-space: nowrap;
}

/* line 360, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-search form .cnt {
  position: relative;
}

/* line 363, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-search form .cnt:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 15px;
  width: 18px;
  height: 18px;
  z-index: 5;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMThweCIgaGVpZ2h0PSIxOHB4IiB2aWV3Qm94PSIwIDAgMTggMTgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbiAvIFNlYXJjaDwvdGl0bGU+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBkPSJNMTIuNSwxMSBMMTEuNzEsMTEgTDExLjQzLDEwLjczIEMxMi40MSw5LjU5IDEzLDguMTEgMTMsNi41IEMxMywyLjkxIDEwLjA5LDAgNi41LDAgQzIuOTEsMCAwLDIuOTEgMCw2LjUgQzAsMTAuMDkgMi45MSwxMyA2LjUsMTMgQzguMTEsMTMgOS41OSwxMi40MSAxMC43MywxMS40MyBMMTEsMTEuNzEgTDExLDEyLjUgTDE2LDE3LjQ5IEwxNy40OSwxNiBMMTIuNSwxMSBaIE02LjUsMTEgQzQuMDEsMTEgMiw4Ljk5IDIsNi41IEMyLDQuMDEgNC4wMSwyIDYuNSwyIEM4Ljk5LDIgMTEsNC4wMSAxMSw2LjUgQzExLDguOTkgOC45OSwxMSA2LjUsMTEgWiIgaWQ9InBhdGgtMSI+PC9wYXRoPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IlN5bWJvbHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJEZXNpZ25OYXYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMzgyLjAwMDAwMCwgLTgxLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0iSWNvbi0vLVNlYXJjaCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTM4Mi4wMDAwMDAsIDgxLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPG1hc2sgaWQ9Im1hc2stMiIgZmlsbD0id2hpdGUiPgogICAgICAgICAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+CiAgICAgICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgICAgICA8dXNlIGlkPSJJY29uLWNvbG9yIiBmaWxsPSIjQTcxRjM0IiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 360, resources/assets/styles/template-parts/_filters.scss */

  .filter-bar .filter-search form .cnt {
    width: 100%;
    min-width: 100%;
  }
}

/* line 379, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-search form input[type="search"] {
  padding: 10px 110px 10px 40px !important;
  border: 1px solid #C3C9D2;
}

/* line 383, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-search form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  background: #A71F34;
  padding: 6px 15px;
  width: 100px;
  border: 2px solid transparent;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 403, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-search form input[type="submit"]:hover {
  background: #BD233B;
  border: 2px solid #C3C9D2;
}

/* line 409, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-search .filter-reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 414, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-search .filter-reset .reset-page,
.filter-bar .filter-search .filter-reset input[type="reset"] {
  display: inline-block;
  text-align: center;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #1C232C;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 10px 0 0 auto;
  width: 100px;
  border: none;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 432, resources/assets/styles/template-parts/_filters.scss */

.filter-bar .filter-search .filter-reset .reset-page:hover,
.filter-bar .filter-search .filter-reset input[type="reset"]:hover {
  color: #A71F34;
  text-decoration: underline;
}

/* line 15, resources/assets/styles/template-parts/_lists.scss */

.numbered-list .list-item {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
}

/* line 21, resources/assets/styles/template-parts/_lists.scss */

.numbered-list .list-item .num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #172642;
  font-family: "Roboto-Bold";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #fff;
  letter-spacing: 0;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 100%;
}

/* line 39, resources/assets/styles/template-parts/_lists.scss */

.numbered-list .list-item .num:after {
  position: absolute;
  content: '';
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 100%;
  border: 2px solid #A71F34;
}

/* line 50, resources/assets/styles/template-parts/_lists.scss */

.numbered-list .list-item .content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 35px;
}

/* line 55, resources/assets/styles/template-parts/_lists.scss */

.numbered-list .list-item .content p {
  margin: 0;
}

/* line 65, resources/assets/styles/template-parts/_lists.scss */

.staff-list .content {
  padding: 0 120px 100px 120px !important;
}

@media only screen and (max-width: 1380px) and (min-width: 1px) {
  /* line 69, resources/assets/styles/template-parts/_lists.scss */

  .staff-list .wave-box .cnt {
    padding: 25px 0;
  }
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 74, resources/assets/styles/template-parts/_lists.scss */

  .staff-list .content {
    padding: 0 50px 100px 50px !important;
  }

  /* line 77, resources/assets/styles/template-parts/_lists.scss */

  .staff-list .wave-box .cnt {
    padding: 5px 0;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 82, resources/assets/styles/template-parts/_lists.scss */

  .staff-list .content {
    padding: 0 20px 100px 20px !important;
  }

  /* line 85, resources/assets/styles/template-parts/_lists.scss */

  .staff-list .wave-box .cnt {
    padding: 1px 0;
    background: #172642;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 91, resources/assets/styles/template-parts/_lists.scss */

  .staff-list .content {
    padding: 0 10px 100px 10px !important;
  }
}

/* line 100, resources/assets/styles/template-parts/_lists.scss */

.links-list .row {
  margin-left: -10px;
  margin-right: -10px;
}

/* line 104, resources/assets/styles/template-parts/_lists.scss */

.links-list .col-xs-4 {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

/* line 109, resources/assets/styles/template-parts/_lists.scss */

.links-list .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 25px;
  background: #fff;
  border: 1px solid #DCE0E5;
  height: 100%;
}

/* line 117, resources/assets/styles/template-parts/_lists.scss */

.links-list .link-box a {
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #111111;
  letter-spacing: 0;
  text-decoration: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 125, resources/assets/styles/template-parts/_lists.scss */

.links-list .link-box a:hover {
  color: #A71F34;
  text-decoration: underline;
}

/* line 135, resources/assets/styles/template-parts/_lists.scss */

.career-timeline {
  position: relative;
  z-index: 9;
  padding: 70px 200px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 135, resources/assets/styles/template-parts/_lists.scss */

  .career-timeline {
    padding: 70px 120px;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 135, resources/assets/styles/template-parts/_lists.scss */

  .career-timeline {
    padding: 70px 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 135, resources/assets/styles/template-parts/_lists.scss */

  .career-timeline {
    padding: 30px 0;
  }
}

/* line 149, resources/assets/styles/template-parts/_lists.scss */

.career-timeline .career-item {
  margin: 0 0 55px 0;
}

/* line 152, resources/assets/styles/template-parts/_lists.scss */

.career-timeline .career-item h2 {
  margin: 0 0 35px 0;
}

/* line 155, resources/assets/styles/template-parts/_lists.scss */

.career-timeline .career-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 160, resources/assets/styles/template-parts/_lists.scss */

.career-timeline .career-item ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #fff;
  letter-spacing: 0;
  margin: 0 0 30px 0;
}

/* line 171, resources/assets/styles/template-parts/_lists.scss */

.career-timeline .career-item ul li span {
  padding-left: 45px;
}

/* line 174, resources/assets/styles/template-parts/_lists.scss */

.career-timeline .career-item ul li img,
.career-timeline .career-item ul li svg {
  position: absolute;
  top: 50%;
  left: 0;
  max-width: 30px;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 187, resources/assets/styles/template-parts/_lists.scss */

.fun-facts {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  min-height: 325px;
}

/* line 193, resources/assets/styles/template-parts/_lists.scss */

.fun-facts li {
  display: block;
  width: 100%;
  margin: 0 0 40px 0;
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #fff;
  letter-spacing: 0;
  text-align: left;
  line-height: 28px;
}

/* line 204, resources/assets/styles/template-parts/_lists.scss */

.fun-facts li span {
  display: block;
  width: 100%;
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #fff;
  letter-spacing: 0;
}

/* line 13, resources/assets/styles/template-parts/_map.scss */

.map-cnt {
  position: relative;
  z-index: 95;
  margin-bottom: -350px;
}

/* line 19, resources/assets/styles/template-parts/_map.scss */

.map-offset {
  padding-bottom: 250px !important;
}

/* line 23, resources/assets/styles/template-parts/_map.scss */

.map-title {
  margin: 50px 0 30px 0;
}

/* line 27, resources/assets/styles/template-parts/_map.scss */

.map {
  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;
  position: relative;
  width: 100%;
  margin: 20px 0 45px 0;
}

/* line 36, resources/assets/styles/template-parts/_map.scss */

.map .modal {
  display: none !important;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 27, resources/assets/styles/template-parts/_map.scss */

  .map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* line 42, resources/assets/styles/template-parts/_map.scss */

.map .region-box {
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 9;
  width: calc(100% - 20px);
  max-width: 425px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#EAECEF), to(#fff));
  background-image: -webkit-linear-gradient(top, #EAECEF 0%, #fff 100%);
  background-image: -o-linear-gradient(top, #EAECEF 0%, #fff 100%);
  background-image: linear-gradient(180deg, #EAECEF 0%, #fff 100%);
  z-index: 95;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 42, resources/assets/styles/template-parts/_map.scss */

  .map .region-box {
    position: relative;
    top: unset;
    left: 0;
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
    max-width: 100%;
  }
}

/* line 60, resources/assets/styles/template-parts/_map.scss */

.map .region-box:after {
  position: absolute;
  content: '';
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 82, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt {
  position: relative;
  z-index: 9;
  background: #F3F4F5;
  padding: 40px 25px 0 25px;
  margin: 0;
}

/* line 89, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt:before {
  display: none;
}

/* line 92, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 78px;
  opacity: 0.8;
  z-index: 5;
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(252,252,253,0)), to(#FEFEFE));
  background-image: -webkit-linear-gradient(top, rgba(252,252,253,0) 0%, #FEFEFE 100%);
  background-image: -o-linear-gradient(top, rgba(252,252,253,0) 0%, #FEFEFE 100%);
  background-image: linear-gradient(180deg, rgba(252,252,253,0) 0%, #FEFEFE 100%);
}

/* line 104, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt h3 {
  color: #1C232C;
  margin: 0 0 20px 0;
}

/* line 108, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt form {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* line 113, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt form .zip-cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 20px;
  width: 100%;
}

/* line 119, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt form input[type="submit"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  background: #A71F34;
  padding: 10px 15px;
  height: 50px;
  border: none;
  cursor: pointer;
}

/* line 134, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt {
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-bottom: 100px;
}

/* line 140, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt::-webkit-scrollbar {
  width: 4px;
}

/* line 143, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt::-webkit-scrollbar-thumb {
  background-color: rgba(23,38,66,0.3);
  border-radius: 2px;
}

/* line 147, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 15px 0;
  border-bottom: 1px solid #C7C9C7;
}

/* line 153, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region .logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 64px;
  height: 64px;
  max-width: 64px;
  max-height: 64px;
  min-width: 64px;
  min-height: 64px;
}

/* line 162, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region .logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 166, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region .region-content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 30px;
  width: 100%;
}

/* line 172, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region .region-content .title {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0 0 10px 0;
}

/* line 179, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region .region-content a+.title {
  margin-top: 20px;
}

/* line 182, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region .region-content .contact {
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #0B0B0B;
  letter-spacing: 0;
  margin: 0;
}

/* line 189, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region .region-content .address {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #0B0B0B;
  letter-spacing: 0;
  margin: 0;
}

/* line 196, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region .region-content .phone {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #0B0B0B;
  letter-spacing: 0;
  margin: 0;
}

/* line 203, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region .region-content a {
  font-family: "Roboto-Bold";
  color: #A71F34;
  margin: 5px auto 5px 0;
}

/* line 208, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region .region-content .btns-cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 212, resources/assets/styles/template-parts/_map.scss */

.map .region-box .cnt .region-cnt .region .region-content .btns-cnt a {
  color: #A71F34;
  margin: 5px auto 5px 0;
}

/* line 222, resources/assets/styles/template-parts/_map.scss */

.map .regionsmaptwo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: auto;
  min-height: 645px;
  z-index: 5;
  margin-left: 285px;
}

@media only screen and (max-width: 1340px) and (min-width: 1px) {
  /* line 222, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo {
    margin-left: 50px;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 222, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo {
    margin-left: 0;
    margin-top: 25px;
  }
}

@media only screen and (max-width: 980px) and (min-width: 1px) {
  /* line 222, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo {
    left: 0;
    width: calc(100% + 100px);
  }

  /* line 243, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo:after {
    display: none;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 222, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo {
    display: none;
  }
}

/* line 250, resources/assets/styles/template-parts/_map.scss */

.map .regionsmaptwo:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background-image: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: linear-gradient(0deg, #172642 0%, #cb9701 100%);
}

/* line 260, resources/assets/styles/template-parts/_map.scss */

.map .regionsmaptwo .cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 4px;
  z-index: 5;
  padding: 25px;
  width: 100%;
}

@media only screen and (max-width: 1520px) and (min-width: 1px) {
  /* line 260, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo .cnt {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 260, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo .cnt {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 980px) and (min-width: 1px) {
  /* line 260, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo .cnt {
    margin: 0;
  }
}

/* line 278, resources/assets/styles/template-parts/_map.scss */

.map .regionsmaptwo .cnt:before {
  display: none;
}

/* line 281, resources/assets/styles/template-parts/_map.scss */

.map .regionsmaptwo .cnt:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  background: #172642;
}

/* line 291, resources/assets/styles/template-parts/_map.scss */

.map .regionsmaptwo .cnt .map-image {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 9;
  min-width: 750px;
}

@media only screen and (max-width: 1640px) and (min-width: 1px) {
  /* line 291, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo .cnt .map-image {
    -webkit-transform: scale(0.8);
         -o-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@media only screen and (max-width: 1420px) and (min-width: 1px) {
  /* line 291, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo .cnt .map-image {
    -webkit-transform: scale(0.7);
         -o-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: 100% 50%;
         -o-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}

@media only screen and (max-width: 1340px) and (min-width: 1px) {
  /* line 291, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo .cnt .map-image {
    -webkit-transform: scale(0.6);
         -o-transform: scale(0.6);
            transform: scale(0.6);
    -webkit-transform-origin: 100% 50%;
         -o-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 291, resources/assets/styles/template-parts/_map.scss */

  .map .regionsmaptwo .cnt .map-image {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50%;
         -o-transform-origin: 50%;
            transform-origin: 50%;
  }
}

/* line 312, resources/assets/styles/template-parts/_map.scss */

.map .regionsmaptwo .cnt .map-image img {
  min-width: 750px;
}

/* line 316, resources/assets/styles/template-parts/_map.scss */

.map .regionsmaptwo .cnt #Map {
  position: relative;
  z-index: 95;
  width: 100%;
}

/* line 320, resources/assets/styles/template-parts/_map.scss */

.map .regionsmaptwo .cnt #Map area {
  outline: 2px solid #A71F34;
}

/* line 323, resources/assets/styles/template-parts/_map.scss */

.map .regionsmaptwo .cnt #Map area:hover {
  outline: 2px solid #A71F34;
}

/* line 334, resources/assets/styles/template-parts/_map.scss */

.ie .map .regionsmaptwo .cnt .map-image img {
  width: 100%;
}

/* line 16, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination-label {
  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;
  position: relative;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #1C232C;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* line 28, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination-label .label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  margin: auto 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 34, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination-label .left-star {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(203,151,1,0)), to(#cb9701));
  background: -webkit-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: -o-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: linear-gradient(90deg, rgba(203,151,1,0) 0%, #cb9701 100%);
}

/* line 41, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination-label .left-star:after {
  position: absolute;
  content: '';
  top: -8px;
  right: -10px;
  width: 15px;
  height: 15px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5IDM8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJIb21lcGFnZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3NS4wMDAwMDAsIC02Mzc5LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik01ODUsNjM4MC40MzExNyBMNTg2Ljk2OTY1OCw2Mzg2LjI4OSBMNTkzLjE0OTQzNyw2Mzg2LjM1MjA5IEw1ODguMTg2OTc0LDYzOTAuMDM1NTEgTDU5MC4wMzY2MjksNjM5NS45MzIzMyBMNTg1LDYzOTIuMzUwOTggTDU3OS45NjMzNzEsNjM5NS45MzIzMyBMNTgxLjgxMzAyNiw2MzkwLjAzNTUxIEw1NzYuODUwNTYzLDYzODYuMzUyMDkgTDU4My4wMzAzNDIsNjM4Ni4yODkgTDU4NSw2MzgwLjQzMTE3IFoiIGlkPSJTdGFyLUNvcHktMyI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 51, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination-label .right-star {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(203,151,1,0)), to(#cb9701));
  background: -webkit-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: -o-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: linear-gradient(90deg, rgba(203,151,1,0) 0%, #cb9701 100%);
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 59, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination-label .right-star:after {
  position: absolute;
  content: '';
  top: -6px;
  right: -10px;
  width: 15px;
  height: 15px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5IDM8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJIb21lcGFnZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3NS4wMDAwMDAsIC02Mzc5LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik01ODUsNjM4MC40MzExNyBMNTg2Ljk2OTY1OCw2Mzg2LjI4OSBMNTkzLjE0OTQzNyw2Mzg2LjM1MjA5IEw1ODguMTg2OTc0LDYzOTAuMDM1NTEgTDU5MC4wMzY2MjksNjM5NS45MzIzMyBMNTg1LDYzOTIuMzUwOTggTDU3OS45NjMzNzEsNjM5NS45MzIzMyBMNTgxLjgxMzAyNiw2MzkwLjAzNTUxIEw1NzYuODUwNTYzLDYzODYuMzUyMDkgTDU4My4wMzAzNDIsNjM4Ni4yODkgTDU4NSw2MzgwLjQzMTE3IFoiIGlkPSJTdGFyLUNvcHktMyI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 71, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination {
  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;
  margin: 20px auto 0 auto;
}

/* line 78, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .prev-page,
.page-pagination .pagination .next-page {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 1px solid #D3D7DD;
  background: #F3F4F5;
  border-radius: 100%;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

/* line 90, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .prev-page:hover,
.page-pagination .pagination .next-page:hover {
  background: #fff;
  border: 1px solid #172642;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.15);
          box-shadow: 0 2px 4px 0 rgba(0,0,0,0.15);
}

/* line 95, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .prev-page span,
.page-pagination .pagination .next-page span {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

/* line 101, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .prev-page:before,
.page-pagination .pagination .next-page:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgY2xhc3M9ImZpbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODguMDAwMDAwLCAtMTY2OS4wMDAwMDApIiBmaWxsPSIjMTcyNjQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxODguMDAwMDAwLCAxNjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBvbHlnb24gcG9pbnRzPSIwIDEuMjM4OTkzNDMgMS4xOTE1MzIwNCAwIDYgNSAxLjE5MTUzMjA0IDEwIDAgOC43NjEwMDY1NyAzLjYxNjI3MzMxIDUiPjwvcG9seWdvbj4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 112, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .prev-page:before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
       -o-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

/* line 115, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin: auto 30px;
  padding: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 115, resources/assets/styles/template-parts/_pagination.scss */

  .page-pagination .pagination .page-numbers {
    margin: auto 15px;
  }
}

/* line 124, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .page-numbers li {
  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: 42px;
  height: 42px;
  border-radius: 100%;
  margin: auto 3px;
  opacity: 1;
  font-family: "RobotoCondensed-Regular";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #fff;
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 124, resources/assets/styles/template-parts/_pagination.scss */

  .page-pagination .pagination .page-numbers li {
    width: 33px;
    height: 33px;
    margin: auto 0;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}

/* line 144, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .page-numbers li a {
  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: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 100%;
  margin: auto 3px;
  border-radius: 100%;
  font-family: "RobotoCondensed-Regular";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #1C232C;
  letter-spacing: 0;
  text-decoration: none;
  opacity: 1;
  cursor: pointer;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 144, resources/assets/styles/template-parts/_pagination.scss */

  .page-pagination .pagination .page-numbers li a {
    width: 33px;
    height: 33px;
    margin: auto 0;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}

/* line 168, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .page-numbers li a:hover {
  text-decoration: underline;
}

/* line 172, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .page-numbers li .dots {
  font-family: "RobotoCondensed-Regular";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #1C232C;
  letter-spacing: 0;
}

/* line 178, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .page-numbers li .current {
  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: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 100%;
  background: #A71F34;
  border: 1px solid #172642;
  font-family: "RobotoCondensed-Regular";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #fff;
  letter-spacing: 0;
  pointer-events: none;
}

/* line 194, resources/assets/styles/template-parts/_pagination.scss */

.page-pagination .pagination .page-numbers li .current:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

/* line 207, resources/assets/styles/template-parts/_pagination.scss */

.ie .page-pagination .pagination-label .label {
  width: 100%;
}

/* line 13, resources/assets/styles/template-parts/_posts.scss */

.post {
  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;
  height: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #DCE0E5;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 23, resources/assets/styles/template-parts/_posts.scss */

  .post.board {
    -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;
  }

  /* line 27, resources/assets/styles/template-parts/_posts.scss */

  .post.board .body {
    padding: 0 10px;
  }

  /* line 30, resources/assets/styles/template-parts/_posts.scss */

  .post.board .body h3,
  .post.board .body p {
    text-align: left;
  }
}

/* line 36, resources/assets/styles/template-parts/_posts.scss */

.post .thumb {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 240px;
  background: #000;
}

/* line 43, resources/assets/styles/template-parts/_posts.scss */

.post .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 53, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.video img {
  opacity: .5;
}

/* line 56, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.video .btn-play:focus {
  outline: 2px solid #CB9701;
  outline-offset: 8px;
}

/* line 61, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.video-modal {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: none;
  z-index: 9;
}

/* line 70, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.video-modal .video-holder {
  padding-top: 56.25%;
}

/* line 73, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.video-modal .video-holder video-js {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* line 84, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.video-modal figure {
  top: 11px;
  margin-bottom: 31px;
}

/* line 90, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.video-modal .video-js video,
.post .thumb.video-modal .video-js div {
  display: none !important;
}

/* line 94, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.video-modal .video-js .vjs-poster {
  display: block !important;
}

/* line 97, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.video-modal .video-js .vjs-big-play-button {
  z-index: 99;
}

/* line 102, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.board {
  width: 252px;
  height: 252px;
  margin: 10px auto;
  border-radius: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 102, resources/assets/styles/template-parts/_posts.scss */

  .post .thumb.board {
    width: 68px;
    height: 68px;
  }
}

/* line 113, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.board div {
  position: relative;
  z-index: 9;
  width: 230px;
  height: 230px;
  margin: 10px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 113, resources/assets/styles/template-parts/_posts.scss */

  .post .thumb.board div {
    width: 60px;
    height: 60px;
    margin: 4px;
  }
}

/* line 128, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.board div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center top !important;
}

/* line 138, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.board:after {
  position: absolute;
  content: '';
  top: -11px;
  left: -11px;
  width: calc(100% + 22px);
  height: calc(100% + 22px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  border-radius: 100%;
  z-index: 5;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 138, resources/assets/styles/template-parts/_posts.scss */

  .post .thumb.board:after {
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
  }
}

/* line 158, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.athlete {
  width: 321px;
  height: 321px;
  margin: 10px auto;
  border-radius: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 360px) and (min-width: 1px) {
  /* line 158, resources/assets/styles/template-parts/_posts.scss */

  .post .thumb.athlete {
    width: 271px;
    height: 271px;
  }
}

/* line 169, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.athlete div {
  position: relative;
  z-index: 9;
  width: 300px;
  height: 300px;
  margin: 10px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 360px) and (min-width: 1px) {
  /* line 169, resources/assets/styles/template-parts/_posts.scss */

  .post .thumb.athlete div {
    width: 250px;
    height: 250px;
  }
}

/* line 183, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.athlete div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 192, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.athlete:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  border-radius: 100%;
  z-index: 5;
}

/* line 207, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.default div {
  background: #172642;
}

/* line 210, resources/assets/styles/template-parts/_posts.scss */

.post .thumb.default div img {
  top: 50%;
  left: 50%;
  width: 150px;
  height: 125px;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 219, resources/assets/styles/template-parts/_posts.scss */

.post .thumb .video {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 6;
  padding: 4px 8px 4px 30px;
  background: #A71F34;
  font-family: "Roboto-Regular";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22px;
  line-height: 1.375rem;
  color: #fff;
  letter-spacing: 0;
}

/* line 231, resources/assets/styles/template-parts/_posts.scss */

.post .thumb .video:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 10px;
  width: 12px;
  height: 13px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTFweCIgaGVpZ2h0PSIxM3B4IiB2aWV3Qm94PSIwIDAgMTEgMTMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+UGF0aCAzIENvcHk8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJUZWFtIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTUwLjAwMDAwMCwgLTgyMjAuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cC04IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNDAuMDAwMDAwLCA4MjExLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjQ3NjI4MzEsMjEuMjAwMzQ2NiBMMjAuMzc2NjkxOCwxNi4zNzkyOTIgQzIwLjg2MjMxMTMsMTYuMTE2MjQ4IDIxLjA0Mjc0NDUsMTUuNTA5MzM2NCAyMC43Nzk3MDA2LDE1LjAyMzcxNjkgQzIwLjY4NzMwMDYsMTQuODUzMTMyMyAyMC41NDcyNzYzLDE0LjcxMzEwOCAyMC4zNzY2OTE4LDE0LjYyMDcwOCBMMTEuNDc2MjgzMSw5Ljc5OTY1MzM3IEMxMC45OTA2NjM2LDkuNTM2NjA5NDUgMTAuMzgzNzUyLDkuNzE3MDQyNjUgMTAuMTIwNzA4LDEwLjIwMjY2MjIgQzEwLjA0MTQ4ODMsMTAuMzQ4OTE0IDEwLDEwLjUxMjYxNjMgMTAsMTAuNjc4OTQ1MyBMMTAsMjAuMzIxMDU0NyBDMTAsMjAuODczMzM5NCAxMC40NDc3MTUzLDIxLjMyMTA1NDcgMTEsMjEuMzIxMDU0NyBDMTEuMTY2MzI5MSwyMS4zMjEwNTQ3IDExLjMzMDAzMTMsMjEuMjc5NTY2NCAxMS40NzYyODMxLDIxLjIwMDM0NjYgWiIgaWQ9IlBhdGgtMy1Db3B5Ij48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) 50% no-repeat;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 242, resources/assets/styles/template-parts/_posts.scss */

.post .thumb .time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 6;
  padding: 4px 8px;
  background: #000;
  font-family: "Roboto-Regular";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22px;
  line-height: 1.375rem;
  color: #fff;
  letter-spacing: 0;
}

/* line 255, resources/assets/styles/template-parts/_posts.scss */

.post .body {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 15px 10px;
  text-align: left;
}

/* line 262, resources/assets/styles/template-parts/_posts.scss */

.post .body h3 {
  margin-top: 0;
}

/* line 265, resources/assets/styles/template-parts/_posts.scss */

.post .body p {
  color: #1C232C;
}

/* line 268, resources/assets/styles/template-parts/_posts.scss */

.post .body .date {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #1C232C;
  letter-spacing: 0;
  text-align: center;
  margin: -15px 0 0 0;
}

/* line 276, resources/assets/styles/template-parts/_posts.scss */

.post .body .position {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #1C232C;
  letter-spacing: 0;
  text-align: center;
  margin: -15px 0 0 0;
}

/* line 284, resources/assets/styles/template-parts/_posts.scss */

.post .body .date+.position {
  margin: 0;
}

/* line 287, resources/assets/styles/template-parts/_posts.scss */

.post .body .result {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0 0 15px 0;
}

/* line 294, resources/assets/styles/template-parts/_posts.scss */

.post .body .score-line {
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0;
}

/* line 302, resources/assets/styles/template-parts/_posts.scss */

.post .foot {
  padding: 15px 10px 0 10px;
  text-align: left;
}

/* line 306, resources/assets/styles/template-parts/_posts.scss */

.post .foot .location {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  letter-spacing: 0;
  margin: 0;
}

/* line 312, resources/assets/styles/template-parts/_posts.scss */

.post .foot .event-type {
  font-family: "Roboto-Regular";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  letter-spacing: 0;
  margin: 0;
}

/* line 319, resources/assets/styles/template-parts/_posts.scss */

.post.board {
  background: #EAECEF;
  border: 2px solid #D3DBE8;
}

/* line 323, resources/assets/styles/template-parts/_posts.scss */

.post.red {
  background: #A71F34;
  border: 2px solid #fff;
}

/* line 327, resources/assets/styles/template-parts/_posts.scss */

.post.red h3,
.post.red h3 a,
.post.red p {
  color: #fff;
}

/* line 332, resources/assets/styles/template-parts/_posts.scss */

.post.red .excerpt {
  color: #fff;
}

/* line 335, resources/assets/styles/template-parts/_posts.scss */

.post.red .excerpt a {
  color: #fff;
}

/* line 340, resources/assets/styles/template-parts/_posts.scss */

.post.blue {
  background: #172642;
}

/* line 343, resources/assets/styles/template-parts/_posts.scss */

.post.blue:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: #A71F34;
  z-index: 9;
}

/* line 353, resources/assets/styles/template-parts/_posts.scss */

.post.blue h3,
.post.blue h3 a,
.post.blue p {
  color: #fff;
}

/* line 359, resources/assets/styles/template-parts/_posts.scss */

.post.gold-border {
  padding: 0;
}

/* line 362, resources/assets/styles/template-parts/_posts.scss */

.post.gold-border:before {
  display: none;
}

/* line 365, resources/assets/styles/template-parts/_posts.scss */

.post.gold-border:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

/* line 374, resources/assets/styles/template-parts/_posts.scss */

.post.gold-border.gold-border:after {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172642), to(#cb9701));
  background-image: -webkit-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: -o-linear-gradient(bottom, #172642 0%, #cb9701 100%);
  background-image: linear-gradient(0deg, #172642 0%, #cb9701 100%);
}

/* line 377, resources/assets/styles/template-parts/_posts.scss */

.post.gold-border .cnt {
  position: relative;
  margin: 4px;
  z-index: 5;
  padding: 10px;
}

/* line 383, resources/assets/styles/template-parts/_posts.scss */

.post.gold-border .cnt:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  background: #172642;
}

/* line 393, resources/assets/styles/template-parts/_posts.scss */

.post.gold-border .cnt .body,
.post.gold-border .cnt .foot,
.post.gold-border .cnt .thumb {
  position: relative;
  z-index: 9;
}

/* line 397, resources/assets/styles/template-parts/_posts.scss */

.post.gold-border .cnt h3,
.post.gold-border .cnt p {
  margin: 0;
}

/* line 401, resources/assets/styles/template-parts/_posts.scss */

.post.gold-border .cnt hr {
  margin: 15px 0;
}

/* line 406, resources/assets/styles/template-parts/_posts.scss */

.post.grey {
  background: #F3F4F5;
}

/* line 409, resources/assets/styles/template-parts/_posts.scss */

.post.grey.red-top-border:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: #A71F34;
  z-index: 9;
}

/* line 422, resources/assets/styles/template-parts/_posts.scss */

.post-tags {
  margin-bottom: 120px;
}

/* line 425, resources/assets/styles/template-parts/_posts.scss */

.post-tags .tags {
  text-align: center;
}

/* line 434, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section h2 {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  font-family: "Roboto-Black";
  font-size: 48px !important;
  line-height: 64px !important;
  margin: 0 0 20px 0;
  background: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 434, resources/assets/styles/template-parts/_posts.scss */

  .foundation-board-members-section h2 {
    font-size: 30px !important;
    line-height: 36px !important;
  }
}

/* line 452, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .row {
  border-bottom: 1px solid #EAECEF;
  padding-top: 36px;
  padding-bottom: 36px;
}

/* line 458, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .info-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-right: 150px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 458, resources/assets/styles/template-parts/_posts.scss */

  .foundation-board-members-section .info-wrapper {
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 24px;
  }
}

/* line 468, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .info-wrapper .thumb-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 8px;
  background-image: -webkit-gradient(linear, left top, right top, from(#B5902A), to(#7E590C));
  background-image: -webkit-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background-image: -o-linear-gradient(left, #B5902A 0%, #7E590C 100%);
  background-image: linear-gradient(90deg, #B5902A 0%, #7E590C 100%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 468, resources/assets/styles/template-parts/_posts.scss */

  .foundation-board-members-section .info-wrapper .thumb-wrapper {
    margin-bottom: 16px;
  }
}

/* line 477, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .info-wrapper .thumb-wrapper .thumb {
  margin-right: 16px;
  position: relative;
  width: 214px;
  height: 214px;
  margin: 4px;
  border-radius: 6px;
  overflow: hidden;
}

/* line 486, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .info-wrapper .thumb-wrapper .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 496, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .info-wrapper .info {
  padding-left: 16px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 496, resources/assets/styles/template-parts/_posts.scss */

  .foundation-board-members-section .info-wrapper .info {
    padding-left: 0;
  }
}

/* line 502, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .info-wrapper .info h3 {
  font-family: "Roboto-Regular";
  color: #172642;
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 11px 0;
}

/* line 509, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .info-wrapper .info p {
  color: #000;
  font-size: 16px;
  line-height: normal;
  margin: 0;
}

/* line 522, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .bio-wrapper .bio p {
  color: #000;
  font-size: 16px;
  line-height: 28px;
}

/* line 528, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .bio-wrapper .read-more__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  padding: 8px 42px 8px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 100px;
  background: rgba(209,213,220,0.2);
  color: #101F3A;
  font-family: "Roboto-Bold";
  font-size: 14px;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* line 544, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .bio-wrapper .read-more__link:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMy4zMzMyNVYxMi42NjY2IiBzdHJva2U9IiMxMDFGM0EiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xMi42NjY3IDhMOC4wMDAwNCAxMi42NjY3TDMuMzMzMzcgOCIgc3Ryb2tlPSIjMTAxRjNBIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K) 50% no-repeat;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 555, resources/assets/styles/template-parts/_posts.scss */

.foundation-board-members-section .bio-wrapper .is-expanded+.read-more__link-wrap a:after {
  -webkit-transform: translate(0, -50%) rotate(180deg);
       -o-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 16, resources/assets/styles/template-parts/_search.scss */

  .search-results .col-xs-3,
  .search-results .col-xs-9 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* line 22, resources/assets/styles/template-parts/_search.scss */

.search-results .mobile-result-filters {
  display: none;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 26, resources/assets/styles/template-parts/_search.scss */

  .search-results .mobile-result-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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #A71F34;
    padding: 20px;
    text-decoration: none;
  }

  /* line 35, resources/assets/styles/template-parts/_search.scss */

  .search-results .mobile-result-filters h3 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
    color: #fff;
    margin: 0;
  }

  /* line 40, resources/assets/styles/template-parts/_search.scss */

  .search-results .mobile-result-filters span {
    font-family: "Roboto-Bold";
    color: #fff;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 32px;
    line-height: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 50, resources/assets/styles/template-parts/_search.scss */

  .search-results .mobile-result-filters {
    margin-top: 15px;
  }
}

/* line 59, resources/assets/styles/template-parts/_search.scss */

.search-results aside .red-box {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 30px 25px;
  margin: 0 0 15px 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 59, resources/assets/styles/template-parts/_search.scss */

  .search-results aside .red-box {
    display: block;
    height: auto;
    padding: 0 20px 20px 20px;
  }

  /* line 69, resources/assets/styles/template-parts/_search.scss */

  .search-results aside .red-box h3 {
    display: none;
  }
}

/* line 73, resources/assets/styles/template-parts/_search.scss */

.search-results aside .red-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 78, resources/assets/styles/template-parts/_search.scss */

.search-results aside .red-box ul li a {
  color: #fff;
  text-decoration: none;
  font-family: "Roboto-Regular";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  letter-spacing: 0;
}

/* line 85, resources/assets/styles/template-parts/_search.scss */

.search-results aside .red-box ul li a.active {
  font-family: "Roboto-Bold";
}

/* line 88, resources/assets/styles/template-parts/_search.scss */

.search-results aside .red-box ul li a:hover {
  text-decoration: underline;
}

/* line 94, resources/assets/styles/template-parts/_search.scss */

.search-results aside .grey-box {
  position: relative;
  z-index: 9;
  width: 100%;
  padding: 0;
}

/* line 100, resources/assets/styles/template-parts/_search.scss */

.search-results aside .grey-box:after {
  position: absolute;
  content: '';
  top: -4px;
  left: 0;
  width: 100%;
  height: calc(100% + 8px);
  background: -webkit-gradient(linear, left bottom, left top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(bottom, #172b59 0%, #c7314d 100%);
  background: linear-gradient(0deg, #172b59 0%, #c7314d 100%);
  z-index: 5;
}

/* line 110, resources/assets/styles/template-parts/_search.scss */

.search-results aside .grey-box .cnt {
  position: relative;
  z-index: 9;
  background: #F3F4F5;
  padding: 30px 25px;
  margin: 4px;
}

/* line 117, resources/assets/styles/template-parts/_search.scss */

.search-results aside .grey-box .cnt p {
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #A71F34;
  letter-spacing: 0;
  margin: 0 0 20px 0;
}

/* line 124, resources/assets/styles/template-parts/_search.scss */

.search-results aside .grey-box .cnt ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 129, resources/assets/styles/template-parts/_search.scss */

.search-results aside .grey-box .cnt ul li a {
  color: #1C232C;
  text-decoration: none;
  font-family: "Roboto-Regular";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  letter-spacing: 0;
}

/* line 136, resources/assets/styles/template-parts/_search.scss */

.search-results aside .grey-box .cnt ul li a:hover {
  text-decoration: underline;
}

/* line 144, resources/assets/styles/template-parts/_search.scss */

.search-results .result-list {
  padding-left: 30px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 144, resources/assets/styles/template-parts/_search.scss */

  .search-results .result-list {
    padding-left: 0;
    margin-top: 25px;
  }
}

/* line 151, resources/assets/styles/template-parts/_search.scss */

.search-results .result-list .mobile-result-filters {
  display: none;
}

/* line 155, resources/assets/styles/template-parts/_search.scss */

.search-results .result {
  padding: 25px;
  border-bottom: 1px solid #D3DBE8;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 155, resources/assets/styles/template-parts/_search.scss */

  .search-results .result {
    padding: 25px 0;
  }
}

/* line 162, resources/assets/styles/template-parts/_search.scss */

.search-results .result:first-child {
  padding: 0 25px 25px 25px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 162, resources/assets/styles/template-parts/_search.scss */

  .search-results .result:first-child {
    padding: 0 0 25px 0;
  }
}

/* line 169, resources/assets/styles/template-parts/_search.scss */

.search-results .result:last-child {
  border-bottom: none;
  margin-bottom: 55px;
}

/* line 173, resources/assets/styles/template-parts/_search.scss */

.search-results .result h3 {
  margin: 0 0 10px 0;
}

/* line 176, resources/assets/styles/template-parts/_search.scss */

.search-results .result p {
  margin: 0;
}

/* line 181, resources/assets/styles/template-parts/_search.scss */

.search-results .result .tag-link a {
  text-decoration: none;
  color: #1C232C;
}

/* line 185, resources/assets/styles/template-parts/_search.scss */

.search-results .result .tag-link .tag {
  font-family: "Roboto-Bold";
  color: #A71F34;
}

/* line 13, resources/assets/styles/template-parts/_tables.scss */

table {
  margin: 0 auto 50px auto;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 100%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 13, resources/assets/styles/template-parts/_tables.scss */

  table {
    display: block;
  }
}

/* line 22, resources/assets/styles/template-parts/_tables.scss */

table:last-child {
  margin: 0 auto;
}

/* line 25, resources/assets/styles/template-parts/_tables.scss */

table thead {
  background: #172642;
}

/* line 28, resources/assets/styles/template-parts/_tables.scss */

table thead h2 {
  padding: 35px 25px;
  margin: 0;
  text-transform: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 28, resources/assets/styles/template-parts/_tables.scss */

  table thead h2 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 28px;
    line-height: 1.75rem;
    padding: 0;
  }
}

/* line 38, resources/assets/styles/template-parts/_tables.scss */

table thead .headings th {
  background: #0F192C;
}

/* line 41, resources/assets/styles/template-parts/_tables.scss */

table thead th {
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
}

/* line 50, resources/assets/styles/template-parts/_tables.scss */

table thead th img {
  display: block;
  margin: 0 auto;
}

/* line 56, resources/assets/styles/template-parts/_tables.scss */

table.complex thead .headings th:first-child {
  background: none;
}

/* line 61, resources/assets/styles/template-parts/_tables.scss */

table tbody tr:nth-child(odd) {
  background: rgba(228,233,241,0.8);
}

/* line 64, resources/assets/styles/template-parts/_tables.scss */

table tbody tr:nth-child(even) {
  background: rgba(228,233,241,0.4);
}

/* line 67, resources/assets/styles/template-parts/_tables.scss */

table tbody th {
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  background: #0F192C;
}

/* line 77, resources/assets/styles/template-parts/_tables.scss */

table tbody th img {
  display: block;
  margin: 0 auto;
}

/* line 82, resources/assets/styles/template-parts/_tables.scss */

table tbody td {
  text-align: left;
  padding: 35px 25px;
  border-right: 1px solid rgba(15,25,44,0.1);
}

/* line 87, resources/assets/styles/template-parts/_tables.scss */

table tbody td:last-child {
  border-right: none;
}

/* line 90, resources/assets/styles/template-parts/_tables.scss */

table tbody td.red {
  background: #A71F34;
  font-family: "Roboto-Bold";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: left;
  padding: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* line 101, resources/assets/styles/template-parts/_tables.scss */

table tbody td .date {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #0C0C0C;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

/* line 110, resources/assets/styles/template-parts/_tables.scss */

table tbody td .date span {
  display: block;
  width: 100%;
  font-family: "Roboto-Regular";
}

/* line 116, resources/assets/styles/template-parts/_tables.scss */

table tbody td .location {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #0B0B0B;
  letter-spacing: 0;
  margin: 0;
}

/* line 123, resources/assets/styles/template-parts/_tables.scss */

table tbody td .location span {
  display: block;
  width: 100%;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #0B0B0B;
  letter-spacing: 0;
  margin-top: 15px;
}

/* line 133, resources/assets/styles/template-parts/_tables.scss */

table tbody td .type {
  font-family: "Roboto-Regular";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #0B0B0B;
  letter-spacing: 0;
  margin: 0;
}

/* line 140, resources/assets/styles/template-parts/_tables.scss */

table tbody td .btns-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* line 146, resources/assets/styles/template-parts/_tables.scss */

table tbody td .btns-cnt a:first-child {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #C7C9C7;
}

/* line 151, resources/assets/styles/template-parts/_tables.scss */

table tbody td .btns-cnt a:last-child {
  margin-top: 5px;
}

/* line 155, resources/assets/styles/template-parts/_tables.scss */

table tbody td .link {
  display: inline-block;
  width: 100%;
  text-align: right;
  font-family: "Roboto-Bold";
  text-decoration: none;
  text-transform: uppercase;
}

/* line 163, resources/assets/styles/template-parts/_tables.scss */

table tbody td img {
  display: block;
  margin: 0 auto;
}

/* line 168, resources/assets/styles/template-parts/_tables.scss */

table tbody tr:last-child .red {
  border-bottom: none;
}

/* line 15, resources/assets/styles/template-parts/_type.scss */

h1 {
  font-family: "Roboto-Black";
  margin: 0;
  font-weight: normal !important;
}

/* line 21, resources/assets/styles/template-parts/_type.scss */

h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto-Bold";
  color: #1C232C;
  letter-spacing: 0;
  font-weight: normal !important;
}

/* line 27, resources/assets/styles/template-parts/_type.scss */

h2.white,
h3.white,
h4.white,
h5.white,
h6.white {
  color: #fff;
}

/* line 30, resources/assets/styles/template-parts/_type.scss */

h2.center,
h2.center a,
h3.center,
h3.center a,
h4.center,
h4.center a,
h5.center,
h5.center a,
h6.center,
h6.center a {
  text-align: center;
}

/* line 36, resources/assets/styles/template-parts/_type.scss */

.hero h1 {
  font-size: 140px;
  font-size: 8.75rem;
  line-height: 120px;
  line-height: 7.5rem;
  letter-spacing: -4px;
  color: #fff;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 36, resources/assets/styles/template-parts/_type.scss */

  .hero h1 {
    font-size: 100px;
    font-size: 6.25rem;
    line-height: 80px;
    line-height: 5rem;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 36, resources/assets/styles/template-parts/_type.scss */

  .hero h1 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

/* line 49, resources/assets/styles/template-parts/_type.scss */

.banner.secondary h1 {
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 100px;
  line-height: 6.25rem;
  letter-spacing: -1px;
  color: #fff;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 49, resources/assets/styles/template-parts/_type.scss */

  .banner.secondary h1 {
    font-size: 72px;
    font-size: 4.5rem;
    line-height: 70px;
    line-height: 4.375rem;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 49, resources/assets/styles/template-parts/_type.scss */

  .banner.secondary h1 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

/* line 62, resources/assets/styles/template-parts/_type.scss */

.banner.tertiary h1 {
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 92px;
  line-height: 5.75rem;
  letter-spacing: 0;
  color: #172642;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 62, resources/assets/styles/template-parts/_type.scss */

  .banner.tertiary h1 {
    font-size: 52px;
    font-size: 3.25rem;
    line-height: 50px;
    line-height: 3.125rem;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 62, resources/assets/styles/template-parts/_type.scss */

  .banner.tertiary h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 38px;
    line-height: 2.375rem;
  }
}

/* line 75, resources/assets/styles/template-parts/_type.scss */

.banner.post-header h1 {
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 86px;
  line-height: 5.375rem;
  letter-spacing: 0;
  color: #fff;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 75, resources/assets/styles/template-parts/_type.scss */

  .banner.post-header h1 {
    font-size: 52px;
    font-size: 3.25rem;
    line-height: 50px;
    line-height: 3.125rem;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 75, resources/assets/styles/template-parts/_type.scss */

  .banner.post-header h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 38px;
    line-height: 2.375rem;
  }
}

/* line 88, resources/assets/styles/template-parts/_type.scss */

h2 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 48px;
  line-height: 3rem;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 88, resources/assets/styles/template-parts/_type.scss */

  h2 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 36px;
    line-height: 2.25rem;
  }
}

/* line 95, resources/assets/styles/template-parts/_type.scss */

h2.section-title-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 32px;
  line-height: 2rem;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 95, resources/assets/styles/template-parts/_type.scss */

  h2.section-title-left {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
  }
}

/* line 105, resources/assets/styles/template-parts/_type.scss */

h2.section-title-left .title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  margin: auto 60px auto 0;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 105, resources/assets/styles/template-parts/_type.scss */

  h2.section-title-left .title {
    margin: auto 35px auto 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 105, resources/assets/styles/template-parts/_type.scss */

  h2.section-title-left .title {
    margin: auto 25px auto 0;
  }
}

/* line 117, resources/assets/styles/template-parts/_type.scss */

h2.section-title-left .total {
  white-space: nowrap;
  font-family: "RobotoCondensed-Regular";
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 32px;
  line-height: 2rem;
  color: #1B232D;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: -35px;
  margin-right: 35px;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 117, resources/assets/styles/template-parts/_type.scss */

  h2.section-title-left .total {
    margin-left: 0;
  }
}

/* line 131, resources/assets/styles/template-parts/_type.scss */

h2.section-title-left .right-star {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(203,151,1,0)), to(#cb9701));
  background: -webkit-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: -o-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: linear-gradient(90deg, rgba(203,151,1,0) 0%, #cb9701 100%);
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 139, resources/assets/styles/template-parts/_type.scss */

h2.section-title-left .right-star:after {
  position: absolute;
  content: '';
  top: -6px;
  right: -10px;
  width: 15px;
  height: 15px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5IDM8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJIb21lcGFnZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3NS4wMDAwMDAsIC02Mzc5LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik01ODUsNjM4MC40MzExNyBMNTg2Ljk2OTY1OCw2Mzg2LjI4OSBMNTkzLjE0OTQzNyw2Mzg2LjM1MjA5IEw1ODguMTg2OTc0LDYzOTAuMDM1NTEgTDU5MC4wMzY2MjksNjM5NS45MzIzMyBMNTg1LDYzOTIuMzUwOTggTDU3OS45NjMzNzEsNjM5NS45MzIzMyBMNTgxLjgxMzAyNiw2MzkwLjAzNTUxIEw1NzYuODUwNTYzLDYzODYuMzUyMDkgTDU4My4wMzAzNDIsNjM4Ni4yODkgTDU4NSw2MzgwLjQzMTE3IFoiIGlkPSJTdGFyLUNvcHktMyI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 150, resources/assets/styles/template-parts/_type.scss */

h2.section-title-left.white .right-star:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5PC90aXRsZT4KICAgIDxnIGlkPSJEZXNpZ25zIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iRmxleC1UZW1wbGF0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMzMy4wMDAwMDAsIC02ODA4LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iIzE3MjY0MiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0zNDMsNjgwOS40MzExNyBMMzQ0Ljk2OTY1OCw2ODE1LjI4OSBMMzUxLjE0OTQzNyw2ODE1LjM1MjA5IEwzNDYuMTg2OTc0LDY4MTkuMDM1NTEgTDM0OC4wMzY2MjksNjgyNC45MzIzMyBMMzQzLDY4MjEuMzUwOTggTDMzNy45NjMzNzEsNjgyNC45MzIzMyBMMzM5LjgxMzAyNiw2ODE5LjAzNTUxIEwzMzQuODUwNTYzLDY4MTUuMzUyMDkgTDM0MS4wMzAzNDIsNjgxNS4yODkgTDM0Myw2ODA5LjQzMTE3IFoiIGlkPSJTdGFyLUNvcHkiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) 50% no-repeat;
}

/* line 154, resources/assets/styles/template-parts/_type.scss */

h2.section-title-center {
  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;
  position: relative;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 32px;
  line-height: 2rem;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 154, resources/assets/styles/template-parts/_type.scss */

  h2.section-title-center {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
  }
}

/* line 165, resources/assets/styles/template-parts/_type.scss */

h2.section-title-center .title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  margin: auto 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 165, resources/assets/styles/template-parts/_type.scss */

  h2.section-title-center .title {
    margin: auto 25px;
    white-space: normal;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 165, resources/assets/styles/template-parts/_type.scss */

  h2.section-title-center .title {
    margin: auto 25px;
  }
}

/* line 181, resources/assets/styles/template-parts/_type.scss */

h2.section-title-center .left-star {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(203,151,1,0)), to(#cb9701));
  background: -webkit-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: -o-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: linear-gradient(90deg, rgba(203,151,1,0) 0%, #cb9701 100%);
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 181, resources/assets/styles/template-parts/_type.scss */

  h2.section-title-center .left-star {
    width: 15%;
  }
}

/* line 192, resources/assets/styles/template-parts/_type.scss */

h2.section-title-center .left-star:after {
  position: absolute;
  content: '';
  top: -8px;
  right: -10px;
  width: 15px;
  height: 15px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5IDM8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJIb21lcGFnZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3NS4wMDAwMDAsIC02Mzc5LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik01ODUsNjM4MC40MzExNyBMNTg2Ljk2OTY1OCw2Mzg2LjI4OSBMNTkzLjE0OTQzNyw2Mzg2LjM1MjA5IEw1ODguMTg2OTc0LDYzOTAuMDM1NTEgTDU5MC4wMzY2MjksNjM5NS45MzIzMyBMNTg1LDYzOTIuMzUwOTggTDU3OS45NjMzNzEsNjM5NS45MzIzMyBMNTgxLjgxMzAyNiw2MzkwLjAzNTUxIEw1NzYuODUwNTYzLDYzODYuMzUyMDkgTDU4My4wMzAzNDIsNjM4Ni4yODkgTDU4NSw2MzgwLjQzMTE3IFoiIGlkPSJTdGFyLUNvcHktMyI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 202, resources/assets/styles/template-parts/_type.scss */

h2.section-title-center .right-star {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(203,151,1,0)), to(#cb9701));
  background: -webkit-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: -o-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: linear-gradient(90deg, rgba(203,151,1,0) 0%, #cb9701 100%);
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  /* line 202, resources/assets/styles/template-parts/_type.scss */

  h2.section-title-center .right-star {
    width: 15%;
  }
}

/* line 214, resources/assets/styles/template-parts/_type.scss */

h2.section-title-center .right-star:after {
  position: absolute;
  content: '';
  top: -6px;
  right: -10px;
  width: 15px;
  height: 15px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5IDM8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJIb21lcGFnZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3NS4wMDAwMDAsIC02Mzc5LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik01ODUsNjM4MC40MzExNyBMNTg2Ljk2OTY1OCw2Mzg2LjI4OSBMNTkzLjE0OTQzNyw2Mzg2LjM1MjA5IEw1ODguMTg2OTc0LDYzOTAuMDM1NTEgTDU5MC4wMzY2MjksNjM5NS45MzIzMyBMNTg1LDYzOTIuMzUwOTggTDU3OS45NjMzNzEsNjM5NS45MzIzMyBMNTgxLjgxMzAyNiw2MzkwLjAzNTUxIEw1NzYuODUwNTYzLDYzODYuMzUyMDkgTDU4My4wMzAzNDIsNjM4Ni4yODkgTDU4NSw2MzgwLjQzMTE3IFoiIGlkPSJTdGFyLUNvcHktMyI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 228, resources/assets/styles/template-parts/_type.scss */

h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  margin: 0 0 20px 0;
}

/* line 232, resources/assets/styles/template-parts/_type.scss */

h3.post-title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 232, resources/assets/styles/template-parts/_type.scss */

  h3.post-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}

/* line 239, resources/assets/styles/template-parts/_type.scss */

h3.post-title a {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #1C232C;
  letter-spacing: 0;
  text-decoration: none;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 239, resources/assets/styles/template-parts/_type.scss */

  h3.post-title a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}

/* line 250, resources/assets/styles/template-parts/_type.scss */

h3.post-title a span {
  font-family: "Roboto-Thin";
}

/* line 254, resources/assets/styles/template-parts/_type.scss */

h3.post-title.white a {
  color: #fff;
}

/* line 257, resources/assets/styles/template-parts/_type.scss */

h3:hover a {
  color: #A71F34;
  text-decoration: underline;
}

/* line 263, resources/assets/styles/template-parts/_type.scss */

h4 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  line-height: 1.75rem;
  margin: 0 0 20px 0;
}

/* line 268, resources/assets/styles/template-parts/_type.scss */

h5 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 26px;
  line-height: 1.625rem;
  margin: 0 0 20px 0;
}

/* line 273, resources/assets/styles/template-parts/_type.scss */

h6 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  margin: 0 0 20px 0;
}

/* line 278, resources/assets/styles/template-parts/_type.scss */

.title-button {
  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;
  margin: 0 0 35px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 278, resources/assets/styles/template-parts/_type.scss */

  .title-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 288, resources/assets/styles/template-parts/_type.scss */

  .title-button a {
    margin-top: 25px;
  }
}

/* line 292, resources/assets/styles/template-parts/_type.scss */

.title-button h2,
.title-button h3 {
  width: 100%;
  margin: 0;
}

/* line 296, resources/assets/styles/template-parts/_type.scss */

.title-button a {
  white-space: nowrap;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 296, resources/assets/styles/template-parts/_type.scss */

  .title-button a {
    display: none;
  }
}

/* line 306, resources/assets/styles/template-parts/_type.scss */

.usav-section-header {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-family: "Roboto-Black";
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 90px;
  line-height: 5.625rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0 0 45px 0;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 306, resources/assets/styles/template-parts/_type.scss */

  .usav-section-header {
    font-size: 72px;
    font-size: 4.5rem;
    line-height: 70px;
    line-height: 4.375rem;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 306, resources/assets/styles/template-parts/_type.scss */

  .usav-section-header {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 40px;
    line-height: 2.5rem;
  }
}

/* line 323, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .words-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: auto 30px auto 0;
  white-space: nowrap;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 323, resources/assets/styles/template-parts/_type.scss */

  .usav-section-header .words-wrap {
    margin: auto 10px auto 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 323, resources/assets/styles/template-parts/_type.scss */

  .usav-section-header .words-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* line 335, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .white,
.usav-section-header .blue,
.usav-section-header .red {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: auto 10px auto 0;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 335, resources/assets/styles/template-parts/_type.scss */

  .usav-section-header .white,
  .usav-section-header .blue,
  .usav-section-header .red {
    width: 100%;
    margin: 0;
  }
}

/* line 348, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .white {
  color: #fff;
  -webkit-text-stroke: 1px #172642;
  -webkit-text-fill-color: #fff;
}

/* line 353, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .blue {
  color: #172642;
}

/* line 356, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .red {
  color: #A71F34;
}

/* line 359, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .stars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  width: 170px;
  height: 86px;
}

/* line 366, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .stars span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(203,151,1,0)), to(#cb9701));
  background: -webkit-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: -o-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: linear-gradient(90deg, rgba(203,151,1,0) 0%, #cb9701 100%);
}

/* line 372, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .stars span:after {
  position: absolute;
  content: '';
  top: -8px;
  right: -10px;
  width: 15px;
  height: 15px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5IDM8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJIb21lcGFnZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3NS4wMDAwMDAsIC02Mzc5LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik01ODUsNjM4MC40MzExNyBMNTg2Ljk2OTY1OCw2Mzg2LjI4OSBMNTkzLjE0OTQzNyw2Mzg2LjM1MjA5IEw1ODguMTg2OTc0LDYzOTAuMDM1NTEgTDU5MC4wMzY2MjksNjM5NS45MzIzMyBMNTg1LDYzOTIuMzUwOTggTDU3OS45NjMzNzEsNjM5NS45MzIzMyBMNTgxLjgxMzAyNiw2MzkwLjAzNTUxIEw1NzYuODUwNTYzLDYzODYuMzUyMDkgTDU4My4wMzAzNDIsNjM4Ni4yODkgTDU4NSw2MzgwLjQzMTE3IFoiIGlkPSJTdGFyLUNvcHktMyI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 382, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .stars .star-1 {
  margin: auto 0 auto 0;
}

/* line 385, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .stars .star-2 {
  margin: auto 20px auto 0;
}

/* line 388, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .stars .star-3 {
  margin: auto 40px auto 0;
}

/* line 391, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .stars .star-4 {
  margin: auto 60px auto 0;
}

/* line 394, resources/assets/styles/template-parts/_type.scss */

.usav-section-header .stars .star-5 {
  margin: auto 80px auto 0;
}

/* line 401, resources/assets/styles/template-parts/_type.scss */

.stars-supheader {
  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;
  position: relative;
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  line-height: 2rem;
  color: #1C232C;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* line 413, resources/assets/styles/template-parts/_type.scss */

.stars-supheader .title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  margin: auto 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 419, resources/assets/styles/template-parts/_type.scss */

.stars-supheader .left-star {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(203,151,1,0)), to(#cb9701));
  background: -webkit-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: -o-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: linear-gradient(90deg, rgba(203,151,1,0) 0%, #cb9701 100%);
}

/* line 426, resources/assets/styles/template-parts/_type.scss */

.stars-supheader .left-star:after {
  position: absolute;
  content: '';
  top: -8px;
  right: -10px;
  width: 15px;
  height: 15px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5IDM8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJIb21lcGFnZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3NS4wMDAwMDAsIC02Mzc5LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik01ODUsNjM4MC40MzExNyBMNTg2Ljk2OTY1OCw2Mzg2LjI4OSBMNTkzLjE0OTQzNyw2Mzg2LjM1MjA5IEw1ODguMTg2OTc0LDYzOTAuMDM1NTEgTDU5MC4wMzY2MjksNjM5NS45MzIzMyBMNTg1LDYzOTIuMzUwOTggTDU3OS45NjMzNzEsNjM5NS45MzIzMyBMNTgxLjgxMzAyNiw2MzkwLjAzNTUxIEw1NzYuODUwNTYzLDYzODYuMzUyMDkgTDU4My4wMzAzNDIsNjM4Ni4yODkgTDU4NSw2MzgwLjQzMTE3IFoiIGlkPSJTdGFyLUNvcHktMyI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
}

/* line 436, resources/assets/styles/template-parts/_type.scss */

.stars-supheader .right-star {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(203,151,1,0)), to(#cb9701));
  background: -webkit-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: -o-linear-gradient(left, rgba(203,151,1,0) 0%, #cb9701 100%);
  background: linear-gradient(90deg, rgba(203,151,1,0) 0%, #cb9701 100%);
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 444, resources/assets/styles/template-parts/_type.scss */

.stars-supheader .right-star:after {
  position: absolute;
  content: '';
  top: -6px;
  right: -10px;
  width: 15px;
  height: 15px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjAgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+U3RhciBDb3B5IDM8L3RpdGxlPgogICAgPGcgaWQ9IkRlc2lnbnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJIb21lcGFnZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3NS4wMDAwMDAsIC02Mzc5LjAwMDAwMCkiIGZpbGw9IiNCRjlFM0YiIHN0cm9rZT0iI0ZGRkZGRiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik01ODUsNjM4MC40MzExNyBMNTg2Ljk2OTY1OCw2Mzg2LjI4OSBMNTkzLjE0OTQzNyw2Mzg2LjM1MjA5IEw1ODguMTg2OTc0LDYzOTAuMDM1NTEgTDU5MC4wMzY2MjksNjM5NS45MzIzMyBMNTg1LDYzOTIuMzUwOTggTDU3OS45NjMzNzEsNjM5NS45MzIzMyBMNTgxLjgxMzAyNiw2MzkwLjAzNTUxIEw1NzYuODUwNTYzLDYzODYuMzUyMDkgTDU4My4wMzAzNDIsNjM4Ni4yODkgTDU4NSw2MzgwLjQzMTE3IFoiIGlkPSJTdGFyLUNvcHktMyI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) 50% no-repeat;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 459, resources/assets/styles/template-parts/_type.scss */

.supheader {
  font-family: "Roboto-Bold";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22px;
  line-height: 1.375rem;
  color: #A71F34;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 459, resources/assets/styles/template-parts/_type.scss */

  .supheader {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 22px;
    line-height: 1.375rem;
    letter-spacing: 1.44px;
  }
}

/* line 473, resources/assets/styles/template-parts/_type.scss */

.meta-header {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 18px;
  line-height: 1.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 473, resources/assets/styles/template-parts/_type.scss */

  .meta-header {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 14px;
    line-height: 0.875rem;
  }
}

/* line 482, resources/assets/styles/template-parts/_type.scss */

.meta-header.white {
  color: #fff;
}

/* line 485, resources/assets/styles/template-parts/_type.scss */

.meta-header.global {
  color: #1C232C;
}

/* line 490, resources/assets/styles/template-parts/_type.scss */

p {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0 0 35px 0;
}

/* line 497, resources/assets/styles/template-parts/_type.scss */

p b,
p strong {
  font-family: "Roboto-Bold";
  font-weight: normal !important;
}

/* line 503, resources/assets/styles/template-parts/_type.scss */

ul,
ol {
  margin: 10px 0 35px 0;
  padding-left: 20px;
}

/* line 507, resources/assets/styles/template-parts/_type.scss */

ul li,
ol li {
  font-family: "Roboto-Regular";
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #1C232C;
  letter-spacing: 0;
}

/* line 515, resources/assets/styles/template-parts/_type.scss */

p+ul,
p+ol {
  margin-top: -25px;
}

/* line 520, resources/assets/styles/template-parts/_type.scss */

a {
  color: #A71F34;
}

/* line 523, resources/assets/styles/template-parts/_type.scss */

a:hover {
  color: #172642;
}

/* line 526, resources/assets/styles/template-parts/_type.scss */

a:focus {
  -webkit-transition: 0s !important;
  -o-transition: 0s !important;
  transition: 0s !important;
  outline: 3px solid #172642;
  outline-offset: 3px;
  -webkit-box-shadow: 0 0 0px 2px white;
          box-shadow: 0 0 0px 2px white;
}

/* line 532, resources/assets/styles/template-parts/_type.scss */

a button:focus,
a:focus:active,
a:focus.active-link {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 543, resources/assets/styles/template-parts/_type.scss */

input:focus,
button:focus {
  -webkit-transition: 0s !important;
  -o-transition: 0s !important;
  transition: 0s !important;
  outline: 3px solid #172642;
  outline-offset: 3px;
  -webkit-box-shadow: 0 0 0px 2px white;
          box-shadow: 0 0 0px 2px white;
}

/* line 549, resources/assets/styles/template-parts/_type.scss */

input:focus:active,
input:focus.active-link,
button:focus:active,
button:focus.active-link {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* line 556, resources/assets/styles/template-parts/_type.scss */

.notice {
  font-family: "Roboto-Italic";
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #1C232C;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
}

/* line 565, resources/assets/styles/template-parts/_type.scss */

figcaption,
.caption {
  font-family: "Roboto-Italic";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #1C232C;
  letter-spacing: 0;
  opacity: 0.7;
  padding: 8px 25px;
  margin: 20px 0;
  width: 100%;
  border-bottom: 1px solid #E4E9F1;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 565, resources/assets/styles/template-parts/_type.scss */

  figcaption,
  .caption {
    padding: 8px 0;
  }
}

/* line 582, resources/assets/styles/template-parts/_type.scss */

blockquote {
  position: relative;
  font-family: "Roboto-Italic";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 40px;
  line-height: 2.5rem;
  color: #1C232C;
  letter-spacing: 0;
  padding: 25px;
  margin: 25px 0 55px 0;
  border-left: 6px solid #A71F34;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 582, resources/assets/styles/template-parts/_type.scss */

  blockquote {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
}

/* line 595, resources/assets/styles/template-parts/_type.scss */

blockquote p {
  font-family: "Roboto-Italic";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 40px;
  line-height: 2.5rem;
  color: #1C232C;
  letter-spacing: 0;
  margin: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 595, resources/assets/styles/template-parts/_type.scss */

  blockquote p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
}

/* line 608, resources/assets/styles/template-parts/_type.scss */

.quote {
  position: relative;
  z-index: 9;
  font-family: "Roboto-Regular";
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 40px;
  line-height: 2.5rem;
  font-style: italic;
  color: #fff;
  letter-spacing: 0;
  text-align: center;
  padding: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 608, resources/assets/styles/template-parts/_type.scss */

  .quote {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 40px;
    line-height: 2.5rem;
  }
}

/* line 624, resources/assets/styles/template-parts/_type.scss */

.author {
  position: relative;
  z-index: 9;
  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;
}

/* line 632, resources/assets/styles/template-parts/_type.scss */

.author .avatar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 3px solid #D3DBE8;
  background-size: cover !important;
  margin-left: 30px;
  margin-right: 30px;
}

/* line 643, resources/assets/styles/template-parts/_type.scss */

.author .info {
  text-align: left;
}

/* line 646, resources/assets/styles/template-parts/_type.scss */

.author .info .name {
  font-family: "Roboto-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
  margin: 0;
}

/* line 654, resources/assets/styles/template-parts/_type.scss */

.author .info .name span {
  font-family: "Roboto-Thin";
}

/* line 658, resources/assets/styles/template-parts/_type.scss */

.author .info .title {
  font-family: "Roboto-Bold";
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #fff;
  letter-spacing: 0;
  margin: 0;
}

/* line 665, resources/assets/styles/template-parts/_type.scss */

.author .info.center {
  text-align: center;
}

/* line 671, resources/assets/styles/template-parts/_type.scss */

.author+.btn {
  margin-top: 50px;
}

/* line 675, resources/assets/styles/template-parts/_type.scss */

.signature-cnt {
  position: relative;
  padding: 22px 35px;
  border-left: 6px solid #A71F34;
}

/* line 680, resources/assets/styles/template-parts/_type.scss */

.signature-cnt .name {
  font-family: "Roboto-Bold";
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #000;
  letter-spacing: 0;
  margin: 25px 0 0 0;
}

/* line 687, resources/assets/styles/template-parts/_type.scss */

.signature-cnt .name span {
  font-family: "Roboto-Regular";
}

/* line 691, resources/assets/styles/template-parts/_type.scss */

.signature-cnt .title {
  margin: 0;
}

/* line 698, resources/assets/styles/template-parts/_type.scss */

.ie .stars-supheader .title,
.ie .section-title-left .title,
.ie .section-title-center .title {
  width: 100%;
}

/* line 703, resources/assets/styles/template-parts/_type.scss */

.ie .usav-section-header .white {
  color: #A71F34;
}

/* line 708, resources/assets/styles/template-parts/_type.scss */

.page-template-template-about .quote-section .author .avatar {
  margin-right: 30px;
}

/* line 13, resources/assets/styles/template-parts/_guide.scss */

.guide {
  padding: 50px 150px;
}

/* line 16, resources/assets/styles/template-parts/_guide.scss */

.guide .guide-item,
.guide .guide-item-content {
  padding: 25px;
  background: #f5f5f5;
  border-top: 1px solid #ddd;
}

/* line 22, resources/assets/styles/template-parts/_guide.scss */

.guide .guide-item.inverse,
.guide .guide-item-content.inverse {
  background: #172642;
}

/* line 25, resources/assets/styles/template-parts/_guide.scss */

.guide .guide-item.inverse label.guide-label,
.guide .guide-item-content.inverse label.guide-label {
  color: #fff;
}

/* line 29, resources/assets/styles/template-parts/_guide.scss */

.guide .guide-item .guide-content,
.guide .guide-item-content .guide-content {
  padding: 150px 20px;
}

/* line 32, resources/assets/styles/template-parts/_guide.scss */

.guide .guide-item label.guide-label,
.guide .guide-item-content label.guide-label {
  display: inline-block;
  width: 100%;
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #888;
  letter-spacing: 2px;
  line-height: 22px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

/* line 43, resources/assets/styles/template-parts/_guide.scss */

.guide .guide-item code,
.guide .guide-item-content code {
  display: block;
  width: 100%;
  background: #ddd;
  padding: 20px;
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #1C232C;
  letter-spacing: 0;
  line-height: 22px;
}

/* line 54, resources/assets/styles/template-parts/_guide.scss */

.guide .guide-item #guide-carousel .swiper-slide,
.guide .guide-item #guide-gallery .swiper-slide,
.guide .guide-item-content #guide-carousel .swiper-slide,
.guide .guide-item-content #guide-gallery .swiper-slide {
  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;
  height: 550px;
  background: #bbb;
  text-transform: uppercase;
}

/* line 63, resources/assets/styles/template-parts/_guide.scss */

.guide .guide-item .guide-video,
.guide .guide-item-content .guide-video {
  position: relative;
  width: 580px;
  height: 320px;
  background: -webkit-gradient(linear, left top, right top, from(#172b59), to(#c7314d));
  background: -webkit-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: -o-linear-gradient(left, #172b59 0%, #c7314d 100%);
  background: linear-gradient(90deg, #172b59 0%, #c7314d 100%);
}

/* line 69, resources/assets/styles/template-parts/_guide.scss */

.guide .guide-item .guide-video .image,
.guide .guide-item-content .guide-video .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 2;
  opacity: .6;
}

/* line 84, resources/assets/styles/template-parts/_guide.scss */

.guide .guide-item-content {
  padding: 0;
  background: #fff;
}

/* line 90, resources/assets/styles/template-parts/_guide.scss */

.guide-banner {
  padding: 25px 0 0 0;
  background: #f5f5f5;
  border-top: 1px solid #ddd;
}

/* line 95, resources/assets/styles/template-parts/_guide.scss */

.guide-banner label.guide-label {
  display: inline-block;
  width: 100%;
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #888;
  letter-spacing: 2px;
  line-height: 22px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  padding: 0 25px;
}

/* line 12, resources/assets/styles/template-parts/_timeline.scss */

.full-section.timeline-medium {
  padding-top: 23px;
}

/* line 17, resources/assets/styles/template-parts/_timeline.scss */

.medals-sponsor.medium-medals {
  padding-top: 26px;
  padding-bottom: 1px;
}

/* line 21, resources/assets/styles/template-parts/_timeline.scss */

.medals-sponsor.medium-medals .medal-labels {
  max-width: 628px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 650px) and (min-width: 1px) {
  /* line 21, resources/assets/styles/template-parts/_timeline.scss */

  .medals-sponsor.medium-medals .medal-labels {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 483px;
  }
}

/* line 31, resources/assets/styles/template-parts/_timeline.scss */

.medals-sponsor.medium-medals .medal-labels li {
  margin: 0;
  width: 33.33%;
}

/* line 35, resources/assets/styles/template-parts/_timeline.scss */

.medals-sponsor.medium-medals .medal-labels li:first-child,
.medals-sponsor.medium-medals .medal-labels li:last-child {
  margin: 0;
}

@media only screen and (max-width: 650px) and (min-width: 1px) {
  /* line 35, resources/assets/styles/template-parts/_timeline.scss */

  .medals-sponsor.medium-medals .medal-labels li:first-child,
  .medals-sponsor.medium-medals .medal-labels li:last-child {
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
  }
}

@media only screen and (max-width: 480px) and (min-width: 1px) {
  /* line 35, resources/assets/styles/template-parts/_timeline.scss */

  .medals-sponsor.medium-medals .medal-labels li:first-child,
  .medals-sponsor.medium-medals .medal-labels li:last-child {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* line 53, resources/assets/styles/template-parts/_timeline.scss */

.medals-sponsor.medium-medals .sponsor-box {
  padding: 13px 20px 13px 16px;
  min-width: 300px;
}

@media only screen and (max-width: 374px) and (min-width: 1px) {
  /* line 53, resources/assets/styles/template-parts/_timeline.scss */

  .medals-sponsor.medium-medals .sponsor-box {
    min-width: auto;
  }
}

/* line 61, resources/assets/styles/template-parts/_timeline.scss */

.medals-sponsor.medium-medals .sponsor-box p {
  margin-left: 27px !important;
}

@media only screen and (max-width: 374px) and (min-width: 1px) {
  /* line 61, resources/assets/styles/template-parts/_timeline.scss */

  .medals-sponsor.medium-medals .sponsor-box p {
    margin-left: 17px !important;
  }
}

/* line 76, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .medals-cnt.medals-medium .medal img {
  width: 100%;
}

/* line 80, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .medals-cnt.medals-medium .medal.silver,
.timeline-cnt .medals-cnt.medals-medium .medal.bronze {
  height: 238px;
  width: 178px;
}

/* line 85, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .medals-cnt.medals-medium .medal.silver span,
.timeline-cnt .medals-cnt.medals-medium .medal.bronze span {
  top: 113px;
  font-family: "Roboto-Black";
}

@media only screen and (max-width: 680px) and (min-width: 1px) {
  /* line 85, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .medals-cnt.medals-medium .medal.silver span,
  .timeline-cnt .medals-cnt.medals-medium .medal.bronze span {
    top: 52px;
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

@media only screen and (max-width: 680px) and (min-width: 1px) {
  /* line 80, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .medals-cnt.medals-medium .medal.silver,
  .timeline-cnt .medals-cnt.medals-medium .medal.bronze {
    height: 125px;
    margin: 0;
  }
}

/* line 101, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .medals-cnt.medals-medium .medal.gold {
  height: 297px;
  width: 224px;
}

@media only screen and (max-width: 680px) and (min-width: 1px) {
  /* line 101, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .medals-cnt.medals-medium .medal.gold {
    height: 145px;
    margin: 0;
  }
}

/* line 110, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .medals-cnt.medals-medium .medal.gold span {
  top: 139px;
}

@media only screen and (max-width: 680px) and (min-width: 1px) {
  /* line 110, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .medals-cnt.medals-medium .medal.gold span {
    top: 65px;
    font-size: 44px;
    font-size: 2.75rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

/* line 124, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-olympic .timeline-wrapper {
  padding-top: 150px;
  margin-top: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 124, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-olympic .timeline-wrapper {
    padding-top: 50px;
  }
}

/* line 132, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-olympic .timeline-wrapper .content {
  margin: auto;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 132, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-olympic .timeline-wrapper .content {
    width: 100%;
  }
}

/* line 140, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-olympic .timeline-wrapper>.content {
  position: relative;
}

@media only screen and (max-width: 1080px) and (min-width: 1px) {
  /* line 140, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-olympic .timeline-wrapper>.content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* line 148, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-olympic .timeline-wrapper>.content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 22;
  height: 695px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(23,38,66,0)), to(#172642));
  background-image: -webkit-linear-gradient(top, rgba(23,38,66,0) 0%, #172642 100%);
  background-image: -o-linear-gradient(top, rgba(23,38,66,0) 0%, #172642 100%);
  background-image: linear-gradient(180deg, rgba(23,38,66,0) 0%, #172642 100%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 148, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-olympic .timeline-wrapper>.content::before {
    height: 195px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 164, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content {
    max-width: 505px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 172, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content .year-cnt {
  margin-top: 9px;
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 71px;
  line-height: 4.4375rem;
}

@media only screen and (max-width: 1023px) and (min-width: 1px) {
  /* line 172, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content .year-cnt {
    font-size: 42px;
    font-size: 2.625rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

/* line 183, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content .content .title-cnt {
  margin-bottom: 27px;
}

/* line 186, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content .content .title-cnt h3 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 48px;
  line-height: 3rem;
  margin: auto 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 186, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content .content .title-cnt h3 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
}

/* line 196, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content .content .content {
  max-width: 505px;
  min-width: 505px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 196, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content .content .content {
    min-width: auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 196, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content .content .content {
    max-width: 100%;
  }
}

/* line 207, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content .content .content h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
}

/* line 213, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content .time-line {
  margin: 28px 29px -28px 46px;
}

/* line 219, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-olympic .timeline-wrapper .date-content:last-child .time-line {
  margin-bottom: 0;
}

/* line 229, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-section .timeline-wrapper #sidebar {
  margin-right: 0;
}

/* line 233, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-section .timeline-wrapper #content {
  width: calc(100% - 120px);
  padding-right: 120px;
  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;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 233, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-section .timeline-wrapper #content {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}

/* line 246, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-section .timeline-wrapper #content .date-content {
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 246, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-section .timeline-wrapper #content .date-content {
    max-width: 505px;
  }
}

/* line 254, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-section .timeline-wrapper #content .date-content .content hr {
  margin: 44px 0 51px;
}

/* line 259, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-section .timeline-wrapper #content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 114px;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(23,38,66,0)), to(#172642));
  background-image: -webkit-linear-gradient(top, rgba(23,38,66,0) 0%, #172642 100%);
  background-image: -o-linear-gradient(top, rgba(23,38,66,0) 0%, #172642 100%);
  background-image: linear-gradient(180deg, rgba(23,38,66,0) 0%, #172642 100%);
  z-index: 5;
}

/* line 272, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-section h3 {
  margin-bottom: 16px;
}

/* line 276, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-section p {
  color: #fff;
  letter-spacing: normal;
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
}

/* line 284, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-section .date-content .time-line {
  margin: 0 37px 0 48px;
}

/* line 289, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-section .date-content.media-date .year-cnt {
  padding-top: 14%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 289, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-section .date-content.media-date .year-cnt {
    padding-top: 0;
  }
}

/* line 297, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-section .date-content.media-date .time-line {
  padding-top: 14%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  /* line 297, resources/assets/styles/template-parts/_timeline.scss */

  .timeline-cnt .timeline-about-section .date-content.media-date .time-line {
    padding-top: 0;
  }
}

/* line 307, resources/assets/styles/template-parts/_timeline.scss */

.timeline-cnt .timeline-about-section .date-content.media-date:first-child .time-line::after {
  top: 26%;
  height: calc(100% - 26%);
}

/* line 318, resources/assets/styles/template-parts/_timeline.scss */

.timeline-list {
  color: #fff;
  position: relative;
}

/* line 322, resources/assets/styles/template-parts/_timeline.scss */

.timeline-list .time-line-nav {
  position: absolute;
  left: 0;
  top: 0;
}

/* line 327, resources/assets/styles/template-parts/_timeline.scss */

.timeline-list .time-line-nav .item {
  color: #fff;
  display: block;
  line-height: 100%;
  padding: 0 0 0 42px;
  position: relative;
  font-family: "Roboto-Black";
  font-weight: normal;
  font-style: normal;
  text-align: left;
  text-decoration: none;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 16px;
  line-height: 1rem;
}

/* line 341, resources/assets/styles/template-parts/_timeline.scss */

.timeline-list .time-line-nav .item::before {
  background-color: #fff;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  left: 0;
  width: 36px;
}

/* line 352, resources/assets/styles/template-parts/_timeline.scss */

.timeline-list .time-line-nav .item.active {
  padding-left: 66px;
}

/* line 355, resources/assets/styles/template-parts/_timeline.scss */

.timeline-list .time-line-nav .item.active::before {
  background-color: #CB9701;
  width: 60px;
}

/* line 363, resources/assets/styles/template-parts/_timeline.scss */

.timeline-list .timeline-wrap {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* line 371, resources/assets/styles/template-parts/_timeline.scss */

.template-timeline .timeline-cnt .timeline-wrapper .date {
  height: 14px;
}

/* line 374, resources/assets/styles/template-parts/_timeline.scss */

.template-timeline .timeline-cnt .timeline-wrapper .date span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* line 384, resources/assets/styles/template-parts/_timeline.scss */

body #main.main-top-timeline {
  margin-top: 140px;
}

@media only screen and (max-width: 1280px) and (min-width: 1px) {
  /* line 384, resources/assets/styles/template-parts/_timeline.scss */

  body #main.main-top-timeline {
    margin-top: 70px;
  }
}

/* line 391, resources/assets/styles/template-parts/_timeline.scss */

body #main.main-top-timeline #banner {
  margin-top: 0;
}


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