/**
 * Swiper 4.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 14, 2018
 */
.swiper-container {
  margin: 0 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;
}

.cc-window{opacity:1;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{transition:transform 1s ease}.cc-animate.cc-revoke.cc-top{transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;transition:max-height 1s}
.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}
.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{-ms-flex:1 0 auto;flex:1 0 auto}.cc-window.cc-banner{-ms-flex-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{display:block;-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%;margin-right:1em}.cc-compliance{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-floating .cc-compliance>.cc-btn{-ms-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}
@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-floating,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1 1 auto;flex:1 1 auto}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-ms-flex-align:unset;align-items:unset}.cc-window.cc-banner .cc-message{margin-right:0}}
.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}
.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em 2em 1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-modal-dialog, .vjs-modal-dialog .vjs-modal-dialog-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before {
  text-align: center; }

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
  font-weight: normal;
  font-style: normal; }

.vjs-icon-play, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-play:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before {
    content: "\F101"; }

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-play-circle:before {
    content: "\F102"; }

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
    content: "\F103"; }

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
    content: "\F104"; }

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
    content: "\F105"; }

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
    content: "\F106"; }

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
    content: "\F107"; }

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
    content: "\F108"; }

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
    content: "\F109"; }

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-square:before {
    content: "\F10A"; }

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-spinner:before {
    content: "\F10B"; }

.vjs-icon-subtitles, .video-js .vjs-subtitles-button .vjs-icon-placeholder, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-subtitles:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
  .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
  .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
  .video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
  .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before {
    content: "\F10C"; }

.vjs-icon-captions, .video-js .vjs-captions-button .vjs-icon-placeholder, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-captions:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
  .video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before {
    content: "\F10D"; }

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
    content: "\F10E"; }

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-share:before {
    content: "\F10F"; }

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-cog:before {
    content: "\F110"; }

.vjs-icon-circle, .video-js .vjs-play-progress, .video-js .vjs-volume-level {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-circle:before, .video-js .vjs-play-progress:before, .video-js .vjs-volume-level:before {
    content: "\F111"; }

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-circle-outline:before {
    content: "\F112"; }

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-circle-inner-circle:before {
    content: "\F113"; }

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-hd:before {
    content: "\F114"; }

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
    content: "\F115"; }

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
    content: "\F116"; }

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-facebook:before {
    content: "\F117"; }

.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-gplus:before {
    content: "\F118"; }

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-linkedin:before {
    content: "\F119"; }

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-twitter:before {
    content: "\F11A"; }

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-tumblr:before {
    content: "\F11B"; }

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-pinterest:before {
    content: "\F11C"; }

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
    content: "\F11D"; }

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
    content: "\F11E"; }

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-next-item:before {
    content: "\F11F"; }

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-previous-item:before {
    content: "\F120"; }

.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial; }
  .video-js:-moz-full-screen {
    position: absolute; }
  .video-js:-webkit-full-screen {
    width: 100% !important;
    height: 100% !important; }

.video-js[tabindex="-1"] {
  outline: none; }

.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit; }

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0; }

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3 {
  width: 100%;
  max-width: 100%;
  height: 0; }

.video-js.vjs-16-9 {
  padding-top: 56.25%; }

.video-js.vjs-4-3 {
  padding-top: 75%; }

.video-js.vjs-fill {
  width: 100%;
  height: 100%; }

.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%; }

.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0; }

.video-js.vjs-fullscreen {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important; }

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none; }

.vjs-hidden {
  display: none !important; }

.vjs-disabled {
  opacity: 0.5;
  cursor: default; }

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px; }

.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible; }

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto; }

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC; }

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.5em;
  width: 3em;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s; }

.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.75em;
  margin-left: -1.5em; }

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s; }

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none; }

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block; }

.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.vjs-control .vjs-button {
  width: 100%;
  height: 100%; }

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2; }

.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto; }

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box; }

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1; }

.vjs-menu-button {
  cursor: pointer; }

.vjs-menu-button.vjs-disabled {
  cursor: default; }

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none; }

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto; }

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box; }

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none; }

.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase; }

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5); }

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2B333F; }

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default; }

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7); }

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em; }

.vjs-workinghover .vjs-menu-button-popup:hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block; }

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden; }

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em; }

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em; }

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s; }

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1; }

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto; }

.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  width: auto; }

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden; }

.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.0em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7); }

.vjs-has-started .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s; }

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  transition: visibility 1s, opacity 1s; }

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important; }

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible; }

.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table; }

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none; }

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67; }

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white; }

.video-js .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle; }

.video-js .vjs-custom-control-spacer {
  display: none; }

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none; }

.video-js .vjs-progress-control.disabled {
  cursor: default; }

.vjs-live .vjs-progress-control {
  display: none; }

.vjs-no-flex .vjs-progress-control {
  width: auto; }

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em; }

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px; }

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.666666666666666666em; }

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em; }

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0; }

.video-js .vjs-play-progress {
  background-color: #fff; }
  .video-js .vjs-play-progress:before {
    font-size: 0.9em;
    position: absolute;
    right: -0.5em;
    top: -0.333333333333333em;
    z-index: 1; }

.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5); }

.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75); }

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1; }

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none; }

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible; }

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em; }

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1; }

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0; }

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block; }

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s; }

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none; }

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8); }

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  -webkit-user-select: none;
  /* Konqueror HTML */
  /* Firefox */
  -moz-user-select: none;
  /* Internet Explorer/Edge */
  -ms-user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5); }

.video-js .vjs-slider.disabled {
  cursor: default; }

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff; }

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none; }

.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex; }

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em; }

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px; }

.video-js .vjs-volume-panel {
  transition: width 1s; }
  .video-js .vjs-volume-panel:hover .vjs-volume-control,
  .video-js .vjs-volume-panel:active .vjs-volume-control,
  .video-js .vjs-volume-panel:focus .vjs-volume-control,
  .video-js .vjs-volume-panel .vjs-volume-control:hover,
  .video-js .vjs-volume-panel .vjs-volume-control:active,
  .video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control,
  .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
    visibility: visible;
    opacity: 1;
    position: relative;
    transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s; }
    .video-js .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-horizontal,
    .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,
    .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal,
    .video-js .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-horizontal,
    .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,
    .video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control.vjs-volume-horizontal,
    .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
      width: 5em;
      height: 3em; }
  .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
    width: 9em;
    transition: width 0.1s; }
  .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
    width: 4em; }

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3.5em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s; }

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s; }

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none; }

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: 0.5em; }

.video-js .vjs-volume-panel {
  display: flex; }

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em; }

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em; }

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto; }

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff; }
  .video-js .vjs-volume-level:before {
    position: absolute;
    font-size: 0.9em; }

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em; }
  .vjs-slider-vertical .vjs-volume-level:before {
    top: -0.5em;
    left: -0.3em; }

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em; }
  .vjs-slider-horizontal .vjs-volume-level:before {
    top: -0.3em;
    right: -0.5em; }

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em; }

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%; }

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%; }

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7); }

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em; }

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%; }

.vjs-has-started .vjs-poster {
  display: none; }

.vjs-audio.vjs-has-started .vjs-poster {
  display: block; }

.vjs-using-native-controls .vjs-poster {
  display: none; }

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em; }

.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left; }

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em; }

.vjs-live .vjs-time-control {
  display: none; }

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
  display: none; }

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
  display: none; }

.vjs-time-divider {
  display: none;
  line-height: 3em; }

.vjs-live .vjs-time-divider {
  display: none; }

.video-js .vjs-play-control .vjs-icon-placeholder {
  cursor: pointer;
  flex: none; }

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none; }

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em; }

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em; }

.vjs-subtitles {
  color: #fff; }

.vjs-captions {
  color: #fc6; }

.vjs-tt-cue {
  display: block; }

video::-webkit-media-text-track-display {
  -webkit-transform: translateY(-3em);
  transform: translateY(-3em); }

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  -webkit-transform: translateY(-1.5em);
  transform: translateY(-1.5em); }

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none; }

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center; }

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em; }

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center; }

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: 'X';
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%; }

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden; }

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  -webkit-animation: 0s linear 0.3s forwards vjs-spinner-show;
          animation: 0s linear 0.3s forwards vjs-spinner-show; }

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white; }

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite; }

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: white; }

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: white;
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s; }

@keyframes vjs-spinner-show {
  to {
    visibility: visible; } }

@-webkit-keyframes vjs-spinner-show {
  to {
    visibility: visible; } }

@keyframes vjs-spinner-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes vjs-spinner-spin {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f; }
  20% {
    border-top-color: #73859f; }
  35% {
    border-top-color: white; }
  60% {
    border-top-color: #73859f; }
  100% {
    border-top-color: #73859f; } }

@-webkit-keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f; }
  20% {
    border-top-color: #73859f; }
  35% {
    border-top-color: white; }
  60% {
    border-top-color: #73859f; }
  100% {
    border-top-color: #73859f; } }

.vjs-chapters-button .vjs-menu ul {
  width: 24em; }

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em; }

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\F10D";
  font-size: 1.5em;
  line-height: inherit; }

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em; }

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \F11D";
  font-size: 1.5em;
  line-height: inherit; }

.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-custom-control-spacer {
  flex: auto; }

.video-js.vjs-layout-tiny:not(.vjs-fullscreen).vjs-no-flex .vjs-custom-control-spacer {
  width: auto; }

.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-playback-rate, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-progress-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-mute-control, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-subtitles-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-audio-button {
  display: none; }

.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-mute-control, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-subtitles-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-audio-button {
  display: none; }

.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-mute-control, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-subtitles-button .vjs-audio-button {
  display: none; }

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%; }

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table; }

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell; }

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom; }

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto; }
  .vjs-text-track-settings .vjs-track-settings-colors {
    display: block;
    grid-column: 1;
    grid-row: 1; }
  .vjs-text-track-settings .vjs-track-settings-font {
    grid-column: 2;
    grid-row: 1; }
  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 2;
    grid-row: 2; } }

.vjs-track-setting > select {
  margin-right: 5px; }

.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none; }

.vjs-text-track-settings fieldset span {
  display: inline-block; }

.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px 0; }

.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f 100%); }

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75); }

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px; }

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em; }

@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden; } }

.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  visibility: hidden; }

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

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

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

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

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

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

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

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

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

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

body {
  color: #58595b;
  font-family: "mr-eaves-modern", sans-serif;
  font-size: 100%;
  text-rendering: geometricPrecision; }

p {
  font-family: "mr-eaves-modern", sans-serif;
  font-size: 1.4rem;
  font-weight: 200;
  line-height: 1.2;
  text-rendering: geometricPrecision; }

a {
  text-decoration: none; }

img {
  display: block;
  max-width: 100%; }

.Header {
  border-bottom: 1px solid #E6E7E8; }
  @media all and (max-width: 1023px) {
    .Header {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 80% 20%;
          grid-template-columns: 80% 20%; } }
  @media all and (max-width: 1023px) {
    .Header.Desktop {
      display: none; } }

.Page {
  padding-bottom: 2rem; }

@media all and (max-width: 1023px) {
  .Page.Contact .Type-subheading, .Page.Contact .Blogroll .BlogCard-header, .Blogroll .Page.Contact .BlogCard-header {
    display: block !important; } }

.U-center {
  text-align: center; }

.Page-heading {
  margin: 2rem 0;
  text-align: center; }
  @media all and (min-width: 1024px) {
    .Page-heading {
      margin: 5rem auto; } }

@media all and (min-width: 1024px) {
  .ContentSection {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important; } }

@media all and (min-width: 1024px) {
  .DesktopMenu {
    -ms-flex-positive: 2;
        flex-grow: 2; } }

.Page-heading .Type-heading {
  color: #0386be; }

.Section {
  padding: 2rem 0;
  position: relative;
  width: 100%; }

@media all and (min-width: 1024px) {
  #Header-mobile {
    display: none; } }

@media all and (max-width: 1023px) {
  #Header-mobile {
    display: -ms-flexbox;
    display: flex; } }

.Section--no-padding {
  padding: 0 !important; }

.Footer {
  background-color: #58595B; }

.Section--transparent {
  background-color: transparent; }

.Section--gray {
  background-color: #f2f2f2; }
  @media all and (max-width: 1023px) {
    .Section--gray {
      padding: 5rem 0; } }

.Section--blue {
  background-color: #33B6DF;
  color: white !important; }

.Section--dark {
  background-color: #58595B;
  color: white !important; }

.About-heading,
.Advancement-heading {
  margin: 2rem 0;
  text-align: center; }

.About-content {
  font-family: 'Arial', sans-serif;
  line-height: 1.35rem;
  text-align: center; }

.Type {
  line-height: 2.6rem; }
  @media all and (max-width: 1023px) {
    .Type {
      line-height: 1.6rem; } }

.Type-heading {
  font-size: 4rem;
  font-weight: 200;
  line-height: 2.4rem;
  margin: 0;
  text-transform: lowercase; }

.Type-subheading, .Blogroll .BlogCard-header {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block; }

.Section--dark .Type-heading,
.Section--dark .Type-subheading,
.Section--dark .Blogroll .BlogCard-header,
.Blogroll .Section--dark .BlogCard-header {
  color: white; }

.Section--transparent .Type-heading,
.Section--gray .Type-heading {
  color: #0386be; }

.Content-header {
  padding: 2rem 0; }

.video-js .vjs-control-bar {
  background-color: #b6bbbc; }

.video-js .vjs-slider {
  background-color: rgba(0, 0, 0, 0.4); }

.video-js .vjs-play-progress {
  background-color: #33B6DF; }

.video-js .vjs-play-progress:before {
  color: white; }

.video-js .vjs-big-play-button {
  background-color: #0386be; }

.Content-header-text {
  color: #0386be;
  font-size: 4rem;
  font-weight: 400;
  margin: 0;
  text-transform: lowercase; }

.Advancement {
  padding-bottom: 10rem; }

.Centurion {
  padding-top: 10rem; }

.Section--no-bottom-padding {
  padding-bottom: 0 !important; }

.Gallery img {
  display: block;
  max-width: 100%; }

.Footer {
  padding: 2rem 0; }

.Footer-social {
  min-height: 75px; }

.Footer-copyright {
  color: white;
  font-size: 1rem;
  text-align: center; }

.Social-links {
  -ms-flex-align: center;
      align-items: center;
  color: white;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-pack: center;
      justify-content: center;
  list-style: none;
  margin: 0 auto;
  width: 50vw; }
  .Social-links a {
    display: block;
    width: 50px; }

.Social-links svg {
  color: white;
  width: 100%;
  fill: white;
  display: block; }

.highlight {
  color: #33B6DF;
  font-weight: 400; }

@media all and (max-width: 1023px) {
  .CompanyVideo {
    margin-bottom: 2rem; } }

.container {
  margin: 0 auto;
  box-sizing: border-box; }
  @media all and (min-width: 1024px) {
    .container {
      width: 980px; } }
  @media all and (max-width: 1023px) {
    .container {
      width: 90vw; } }
  @media all and (min-width: 1200px) {
    .container {
      width: 1200px !important; } }

.Contact .HeroImage {
  overflow: hidden; }
  @media all and (min-width: 1024px) {
    .Contact .HeroImage {
      height: 575px; } }

.Contact .HeroImage img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; }

@media all and (min-width: 1024px) {
  .HeaderGrid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
        justify-content: flex-start;
    margin: 0 auto;
    width: 980px; } }

.flex-container {
  box-sizing: border-box; }
  @media all and (min-width: 1024px) {
    .flex-container {
      width: 980px; } }
  @media all and (max-width: 1023px) {
    .flex-container {
      width: 100%; } }

.Header--transparent .Header .Menu-item,
.Header--transparent .Menu-item:visited {
  color: white; }

.Header--transparent .Header {
  border-bottom: none;
  position: absolute;
  width: 100%;
  z-index: 4; }

.Header--transparent .Menu-item.Menu-item-active {
  background-color: transparent;
  font-weight: 400; }

.Header--transparent .Menu svg path {
  fill: white; }

@media all and (min-width: 1024px) {
  .FindDealerContent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    margin: 5rem auto; } }

@media all and (max-width: 1023px) {
  .FindDealerContent {
    padding: 4rem; } }

@media all and (min-width: 1024px) {
  .FindDealer-copy {
    -ms-flex: 1;
        flex: 1; } }

@media all and (min-width: 1024px) {
  .FindDealer-form {
    -ms-flex: 1;
        flex: 1; } }

@media all and (min-width: 1024px) {
  .FindDealer .Slider {
    height: 400px; } }

@media all and (min-width: 1024px) {
  .FindDealer-disclaimer {
    margin: 0 auto; } }

@media all and (max-width: 1023px) {
  .FindDealer-disclaimer {
    padding: 4rem; } }

.FindDealer-disclaimer p {
  font-size: 0.8rem; }

@media all and (min-width: 1024px) {
  .Social-links {
    width: 150px !important; } }

@media all and (min-width: 1024px) {
  .Footer-social {
    min-height: auto !important; } }

@media all and (min-width: 1024px) {
  a.Menu-item.Menu-item-active::after,
  .Menu-item:hover::after,
  .Menu-item:focus::after {
    background-color: #0386be;
    bottom: -2px;
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%; } }

@media all and (min-width: 1024px) {
  .MobileGallery {
    display: none; } }

@media all and (min-width: 1024px) {
  .MobileOnly {
    display: none; } }

@media all and (min-width: 1024px) {
  .Menu-item.Menu-item-active {
    background-color: #33B6DF !important;
    color: white !important; } }

@media all and (max-width: 1023px) {
  .Menu {
    margin-left: auto; } }

@media all and (min-width: 1024px) {
  .Menu-section {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-pack: end;
        justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0; } }

@media all and (min-width: 1024px) {
  .Menu-item, .Menu-item:visited {
    color: #58595b;
    display: block;
    font-size: 1rem;
    font-weight: 300;
    padding: 18px 16px;
    position: relative;
    text-transform: uppercase; } }

@media all and (min-width: 1024px) {
  .Menu-item:hover, .Menu-item:focus {
    background-color: #58595B;
    color: white; } }

@media all and (min-width: 1024px) {
  .Centurion.Content {
    display: -ms-flexbox;
    display: flex; } }

@media all and (min-width: 1024px) {
  .Centurion {
    padding: 10rem 0 !important; } }

@media all and (min-width: 1024px) {
  .Centurion-logo {
    text-align: center;
    width: 100%; } }

.Centurion-logo img {
  display: inline-block; }
  @media all and (min-width: 1024px) {
    .Centurion-logo img {
      border-style: none;
      margin: 0 auto;
      width: 70%; } }
  @media all and (max-width: 1023px) {
    .Centurion-logo img {
      position: absolute;
      width: 340px;
      margin: -21em 0 auto -10.5em; } }

@media all and (min-width: 1024px) {
  .Centurion-copy {
    text-align: center; } }

@media all and (min-width: 1024px) {
  .Centurion-heading {
    text-align: center; } }

@media all and (max-width: 1023px) {
  .DesktopOnly {
    display: none; } }

@media all and (min-width: 1024px) {
  .About.Content {
    padding: 5rem 0; } }

.Block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  justify-items: center;
  -ms-flex-align: center;
      align-items: center; }

@media all and (min-width: 1024px) {
  .DesktopGallery {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto; }
    .DesktopGallery .gallery-image {
      margin: 1px;
      width: 33%; } }

@media all and (min-width: 1024px) {
  .CalloutBlocks {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 0 auto; } }

@media all and (min-width: 1024px) {
  .About-copy {
    -ms-flex-negative: 2;
        flex-shrink: 2; } }

@media all and (min-width: 1024px) {
  .About-video {
    background-color: #efefef;
    -ms-flex-positive: 2;
        flex-grow: 2;
    margin-right: 2rem;
    padding: 0.5rem;
    width: 100%; } }

@media all and (min-width: 1024px) {
  .About-grid {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; } }

@media all and (min-width: 1024px) {
  .LeaderCopy {
    padding: 5rem 0 0 0; } }

@media all and (max-width: 1023px) {
  .LeaderCopy .Type-heading {
    margin-bottom: 15px;
    line-height: 3.4rem; } }

@media all and (min-width: 1024px) {
  .Leader-heading {
    text-align: center; } }

@media all and (min-width: 1024px) {
  .Leader-heading .Type-heading {
    color: #58595B !important;
    text-transform: capitalize; } }

@media all and (min-width: 1024px) {
  .Leader-heading .Type-subheading, .Leader-heading .Blogroll .BlogCard-header, .Blogroll .Leader-heading .BlogCard-header {
    color: #0386be !important; } }

@media all and (min-width: 1024px) {
  .Leader-content {
    text-align: center; } }

.Footer {
  color: white; }
  .Footer .footer-flex {
    display: -ms-flexbox;
    display: flex; }
    @media all and (min-width: 1024px) {
      .Footer .footer-flex {
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap; } }
    @media all and (max-width: 1023px) {
      .Footer .footer-flex {
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
        -ms-flex-pack: center;
            justify-content: center;
        -ms-flex-align: center;
            align-items: center; } }
  .Footer .footer-flex .flex-widget {
    -ms-flex: 1;
        flex: 1; }
  .Footer .footer-flex .flex-widget.flex--grow {
    -ms-flex: 2;
        flex: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
  .Footer .Footer--menu {
    padding: 1.4rem 0;
    line-height: 1.5; }
    @media all and (max-width: 1023px) {
      .Footer .Footer--menu {
        text-align: center; } }
  .Footer .Free-Quote--button {
    margin: 2rem 0;
    text-align: center; }
  .Footer .Footer--social-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    padding-right: 1rem; }
    @media all and (min-width: 1024px) {
      .Footer .Footer--social-items {
        -ms-flex-pack: start;
            justify-content: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; } }
    @media all and (max-width: 1023px) {
      .Footer .Footer--social-items {
        padding: 1rem 0;
        -ms-flex-pack: center;
            justify-content: center;
        -ms-flex-align: center;
            align-items: center; } }
    .Footer .Footer--social-items a {
      display: block;
      width: 50px;
      margin-right: 10px; }
    .Footer .Footer--social-items svg {
      border-radius: 12px;
      background-color: white;
      fill: #58595B; }
  .Footer .Footer--copyright a {
    color: rgba(255, 255, 255, 0.6); }
  @media all and (min-width: 1024px) {
    .Footer .Footer--free-quote-desktop {
      display: block; } }
  @media all and (max-width: 1023px) {
    .Footer .Footer--free-quote-desktop {
      display: none; } }
  @media all and (min-width: 1024px) {
    .Footer .Footer--free-quote-mobile {
      display: none; } }
  @media all and (max-width: 1023px) {
    .Footer .Footer--free-quote-mobile {
      display: block; } }
  .Footer .Copyright--separator {
    display: inline-block;
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.4); }
  .Footer .Footer--menu-items {
    list-style: none;
    margin: 0;
    padding: 0; }
    .Footer .Footer--menu-items .Footer--menu-item {
      color: white;
      text-decoration: none;
      font-weight: 300;
      font-size: 1.2rem; }
      .Footer .Footer--menu-items .Footer--menu-item:hover {
        color: #33B6DF; }

.AboutPage .About-feature-section {
  -ms-flex-align: center;
      align-items: center;
  background-color: #58595B;
  display: -ms-grid;
  display: grid;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr; }
  @media all and (min-width: 1024px) {
    .AboutPage .About-feature-section {
      min-height: 1200px;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-flow: column nowrap !important;
          flex-flow: column nowrap !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important; } }
  @media all and (max-width: 1023px) {
    .AboutPage .About-feature-section {
      min-height: 815px; } }

.AboutPage .About-feature-section .AboutHeader .Type-subheading, .AboutPage .About-feature-section .AboutHeader .Blogroll .BlogCard-header, .Blogroll .AboutPage .About-feature-section .AboutHeader .BlogCard-header,
.AboutPage .About-feature-section .AboutHeader .Type-heading,
.AboutPage .About-copy p {
  color: white; }

.AboutPage .About-feature-content {
  margin: 0 auto;
  position: relative;
  z-index: 4; }
  @media all and (max-width: 1023px) {
    .AboutPage .About-feature-content {
      -ms-flex-item-align: end;
          -ms-grid-row-align: end;
          align-self: end;
      -ms-grid-column-align: center;
          justify-self: center; } }

.AboutPage .About-copy {
  margin: 0 auto; }
  @media all and (min-width: 1024px) {
    .AboutPage .About-copy {
      width: 60%; } }
  @media all and (max-width: 1023px) {
    .AboutPage .About-copy {
      text-align: center;
      width: 80%; } }

@media all and (min-width: 1024px) {
  .AboutPage .About-copy p {
    text-align: center; } }

@media all and (max-width: 1023px) {
  .AboutPage .About-copy p {
    font-size: 1.25rem;
    line-height: 1.4; } }

.AboutPage .About-feature-video {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.4);
  margin: 0 auto -120px auto;
  position: relative;
  z-index: 4; }
  @media all and (min-width: 1024px) {
    .AboutPage .About-feature-video {
      border: 10px solid white;
      width: 800px; } }
  @media all and (max-width: 1023px) {
    .AboutPage .About-feature-video {
      margin: 0 auto -120px auto;
      width: 100%; } }

.AboutPage .About-feature-section img {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0)); }

@media all and (min-width: 1024px) {
  .AboutPage .About-descriptions-wrap {
    background: url(/dist/img/Water_Splash.jpg) 0px 25px no-repeat;
    padding-bottom: 16rem; } }

@media all and (min-width: 1024px) {
  .AboutPage .About-descriptions {
    display: -ms-flexbox;
    display: flex;
    margin: 16rem auto; } }

@media all and (max-width: 1023px) {
  .AboutPage .About-descriptions {
    display: -ms-grid;
    display: grid;
    margin: 16rem auto 5rem auto;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    grid-gap: 2rem; } }

@media all and (min-width: 1024px) {
  .AboutPage .About-description {
    margin: 4rem; }
    .AboutPage .About-description:last-child {
      margin: 4rem 0 4rem 4rem; }
    .AboutPage .About-description:first-child {
      margin: 4rem 4rem 4rem 0; } }

.AboutPage .About-description-header {
  text-align: center; }

.AboutPage .About-description-content p {
  text-align: center; }

.AboutPage .About-distribution-list .Type-heading {
  color: #0386be;
  margin-bottom: 1rem; }
  @media all and (max-width: 1023px) {
    .AboutPage .About-distribution-list .Type-heading {
      font-size: 2.4rem; } }

@media all and (min-width: 1024px) {
  .AboutPage .About-distribution-centers {
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto; } }

@media all and (max-width: 1023px) {
  .AboutPage .About-distribution-centers {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    grid-gap: 25px; } }

@media all and (min-width: 1024px) {
  .AboutPage .About-disitrbution-map {
    -ms-flex: 1;
        flex: 1;
    padding-right: 4rem; } }

.AboutPage .About-distribution-list {
  line-height: 2; }
  @media all and (min-width: 1024px) {
    .AboutPage .About-distribution-list {
      -ms-flex-item-align: center;
          -ms-grid-row-align: center;
          align-self: center;
      -ms-flex: 1;
          flex: 1; } }
  @media all and (max-width: 1023px) {
    .AboutPage .About-distribution-list {
      -ms-flex-item-align: center;
          -ms-grid-row-align: center;
          align-self: center;
      -ms-flex-pack: center;
          justify-content: center;
      margin: 0 auto;
      text-align: center;
      width: 70%; } }

.AboutPage .About-distribution-center-names {
  list-style: none;
  margin: 0;
  padding: 0; }

.AboutPage .About-distribution-center-names h3 {
  margin: 0; }
  @media all and (max-width: 1023px) {
    .AboutPage .About-distribution-center-names h3 {
      font-size: 1.2rem; } }

.AboutPage .About-disclaimer {
  margin: 0 auto; }

@media all and (max-width: 1023px) {
  .AboutPage .About-disclaimer p {
    font-size: 1.25rem; } }

@media all and (max-width: 1023px) {
  .AboutPage .AboutHeader .Type-subheading, .AboutPage .AboutHeader .Blogroll .BlogCard-header, .Blogroll .AboutPage .AboutHeader .BlogCard-header {
    display: block; } }

.Button {
  width: 100%; }

.Button-find-dealer {
  background-color: #33B6DF;
  color: white;
  display: block;
  max-width: 100%;
  padding: 15px 0;
  text-align: center;
  text-decoration: none; }

.Button-find-dealer:hover {
  background-color: #58595B; }

.Button-find-dealer-text {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase; }

#BrochureFormCta {
  display: none; }
  #BrochureFormCta .Type-heading {
    font-weight: 200 !important; }
  @media all and (max-width: 1023px) {
    #BrochureFormCta {
      width: 95%;
      position: fixed;
      height: auto;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      top: 20px;
      background-color: white;
      z-index: 600;
      padding: 2rem 2rem;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
      box-sizing: border-box; }
      #BrochureFormCta .BrochureFormCta-header {
        background-image: none !important; }
      #BrochureFormCta .Form-field label {
        -ms-flex-item-align: center;
            -ms-grid-row-align: center;
            align-self: center;
        font-size: 1rem; } }
  @media all and (min-width: 1024px) {
    #BrochureFormCta {
      z-index: 600;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      height: 450px;
      width: 960px;
      top: 20%;
      background-color: white;
      position: fixed; }
      #BrochureFormCta .Type-subheading, #BrochureFormCta .Blogroll .BlogCard-header, .Blogroll #BrochureFormCta .BlogCard-header {
        color: white !important; }
      #BrochureFormCta .BrochureFormCta-form {
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
        height: 100%;
        padding: 0 4rem; }
        #BrochureFormCta .BrochureFormCta-form .Form-fields {
          padding: 2rem; }
        #BrochureFormCta .BrochureFormCta-form .Form-field {
          margin-bottom: 10px;
          width: 100%; }
        #BrochureFormCta .BrochureFormCta-form .Form-input {
          border: 1px solid rgba(112, 112, 112, 0.5);
          box-sizing: border-box;
          font-size: 1.4rem;
          padding: 6px 4px;
          -ms-flex: 2;
              flex: 2;
          width: 100%; }
        #BrochureFormCta .BrochureFormCta-form .Form-field label {
          font-size: 1.4rem;
          font-weight: 300;
          letter-spacing: 2px;
          -ms-flex: 1;
              flex: 1;
          -ms-flex-negative: 2;
              flex-shrink: 2; }
      #BrochureFormCta .BrochureFormCta-header {
        width: 50%;
        -ms-flex: 2 0 auto;
            flex: 2 0 auto;
        height: 100%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
        -ms-flex-pack: center;
            justify-content: center;
        -ms-flex-align: center;
            align-items: center;
        background-size: cover;
        background-position: center; } }
  #BrochureFormCta.BrochureCta--visible {
    display: -ms-flexbox;
    display: flex; }

.BrochureCallout {
  background-color: white;
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 45;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 0 10px 10px 0;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  transition: all 100ms linear;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: none; }
  @media all and (min-width: 1024px) {
    .BrochureCallout {
      top: 40%; } }
  @media all and (max-width: 1023px) {
    .BrochureCallout {
      top: 20%; } }
  .BrochureCallout-svgWrap {
    position: relative;
    width: 100%;
    height: 100%; }
  .BrochureCallout svg {
    display: block;
    width: calc(50px * 0.60);
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  .BrochureCallout:hover {
    box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.4);
    transition: all 100ms linear;
    width: 85px; }

.Tab {
  background-color: transparent;
  border-bottom: 2px solid white;
  border-top: 2px solid white;
  color: white;
  display: inline-block;
  padding: 8px 4px;
  text-align: center;
  text-decoration: none;
  width: 100%; }

.Tab--active {
  background-color: white;
  color: #58595B;
  font-weight: 400; }

.Advancement-heading-text {
  color: white !important; }

@media all and (max-width: 1023px) {
  .Advancement-tab-titles {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30% 30% 30%;
        grid-template-columns: 30% 30% 30%;
    grid-gap: 1rem;
    -ms-flex-line-pack: distribute;
        align-content: space-around;
    -ms-flex-pack: center;
        justify-content: center;
    margin: 0 auto 2.5rem auto;
    width: 90vw; } }

.Advancement-tab-title {
  font-weight: 300;
  text-transform: uppercase; }

.Advancement-content {
  margin: 0 auto;
  text-align: center;
  width: 90vw; }

@media all and (min-width: 1024px) {
  .Advancement-item {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    display: flex; } }

@media all and (min-width: 1024px) {
  .Advancement-item .Advancement-figure img {
    display: block;
    max-width: 100%;
    width: 100%; } }

@media all and (min-width: 1024px) {
  .Advancement-item .Advancement-body {
    margin: 0 auto;
    width: 100%; } }

@media all and (min-width: 1024px) {
  .Advancement-item .Advancement-header {
    line-height: 1;
    margin-bottom: 1rem; } }

@media all and (min-width: 1024px) {
  .Advancement-item .Advancement-section {
    padding: 0 3rem; } }

@media all and (min-width: 1024px) {
  .Advancement-item:nth-child(even) .Advancement-section {
    width: 50%;
    -ms-flex-order: 1;
        order: 1; } }

@media all and (min-width: 1024px) {
  .Advancement-item:nth-child(even) .Advancement-figure {
    width: 50%;
    -ms-flex-order: 2;
        order: 2; } }

@media all and (min-width: 1024px) {
  .Advancement-item:nth-child(odd) .Advancement-section {
    width: 50%;
    -ms-flex-order: 2;
        order: 2; } }

@media all and (min-width: 1024px) {
  .Advancement-item:nth-child(odd) .Advancement-figure {
    width: 50%;
    -ms-flex-order: 1;
        order: 1; } }

@media all and (min-width: 1024px) {
  .Advancement-section {
    -ms-flex: 1;
        flex: 1;
    text-align: center; } }

@media all and (min-width: 1024px) {
  .Advancement-section .Type-heading {
    color: #33B6DF !important; } }

@media all and (min-width: 1024px) {
  .Advancements-grid {
    margin: 0 auto; } }

.Block-icon {
  margin: 16px 0; }

.Block-subheading {
  color: #58595b;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 3.4px;
  text-transform: uppercase; }

.Block-heading {
  margin: 0 0 1rem 0;
  text-align: center; }

.Block-heading-text {
  color: #0386be;
  font-size: 4rem;
  font-weight: 200;
  line-height: 3rem;
  text-transform: lowercase; }

.Block-icon svg {
  display: block;
  margin: 0 auto;
  width: 50%; }

.Block-button {
  background-color: #b6bbbc;
  color: white;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  padding: 7px 25px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase; }

.Block-button:hover {
  background-color: #33B6DF; }

@media all and (min-width: 1024px) {
  .ColorGrid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

@media all and (max-width: 1023px) {
  .ColorGrid {
    display: none; } }

.Colors {
  margin: 4rem auto; }

.ColorNames {
  margin: 2rem auto;
  text-align: center; }
  .ColorNames .active .ColorNames-name {
    font-weight: 500; }
  @media all and (max-width: 1023px) {
    .ColorNames {
      display: none; } }

.Color-ColorSwatch {
  height: 354px; }

@media all and (min-width: 1024px) {
  .ColorPanels {
    display: none; } }

@media all and (max-width: 1023px) {
  .ColorPanels {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    margin: 0 auto;
    width: 80%; } }

.InstallationExamples {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto; }
  @media all and (max-width: 1023px) {
    .InstallationExamples {
      margin-top: 1rem; } }
  .InstallationExamples .InstallationExample {
    width: 100%; }
    @media all and (min-width: 1024px) {
      .InstallationExamples .InstallationExample {
        margin: 1%;
        width: 47%; } }
    @media all and (max-width: 1023px) {
      .InstallationExamples .InstallationExample {
        margin-bottom: 1%; } }

.ColorPanel {
  -ms-flex-align: center;
      align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 2px 0;
  width: 100%; }
  .ColorPanel-feature {
    height: 100px; }

.MobileColorView {
  margin: 4rem auto;
  width: 85vw; }
  @media all and (min-width: 1024px) {
    .MobileColorView {
      display: none; } }

.ColorPanel-name {
  color: white;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 2rem 0;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase; }

@media all and (max-width: 1023px) {
  .ColorHeader {
    display: none; } }

.Color {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative; }
  @media all and (min-width: 1024px) {
    .Color {
      margin: 5px;
      width: 48%; } }
  @media all and (max-width: 1023px) {
    .Color {
      max-height: 150px;
      text-align: center; } }

.ColorName {
  color: white;
  font-size: 1.8rem;
  font-weight: 300;
  left: 50%;
  letter-spacing: 4px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }

.Color-ColorSwatch img {
  display: block;
  height: 100%;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; }

.Color .Color-ColorSwatch img.Color-SurfaceImage {
  display: none; }

.Color .Color-ColorSwatch img.Color-SwatchImage {
  display: block; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.ColorNames-name {
  color: #58595b;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 200;
  padding: 0 24px;
  text-transform: lowercase; }

.Color-ColorSwatch {
  background-color: #b6bbbc;
  max-height: 354px;
  overflow: hidden; }

.ColorBanner {
  background-position: center;
  background-size: cover;
  height: 250px;
  position: relative; }

.ColorHero {
  background-position: center;
  background-size: cover;
  border: 4px solid white;
  bottom: -20px;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
  height: 150px;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 150px; }

.ColorView .ColorNames {
  margin: 6rem auto 2rem auto; }

@media all and (max-width: 1023px) {
  .Construction-leader {
    width: 80vw;
    margin: 0 auto; } }

.Construction-leader h2 {
  color: #0386be;
  font-size: 2.4rem;
  font-weight: 200;
  text-align: center; }

.Construction-diagram img {
  display: block;
  margin: 0 auto;
  width: 50%; }

.Construction-bodyCopy {
  margin: 4rem auto;
  width: 75%; }

.ConstructionComponent-copy {
  margin: 0 auto;
  text-align: center;
  width: 75%; }

.ConstructionComponent-details {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center; }

.ConstructionComponent-figure img {
  display: block;
  max-width: 100%; }

@media all and (min-width: 1024px) {
  .Construction {
    margin: 6rem auto; } }

@media all and (min-width: 1024px) {
  .ConstructionComponents {
    margin: 0 auto; } }

@media all and (min-width: 1024px) {
  .ConstructionComponent {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10rem;
    padding: 1rem; }
    .ConstructionComponent-details .Type {
      line-height: 1.4; }
    .ConstructionComponent-details .Page-heading {
      margin: 1rem 0; } }

@media all and (max-width: 1023px) {
  .ConstructionComponent {
    margin: 10rem 0; } }

@media all and (min-width: 1024px) {
  .ConstructionComponent:nth-child(odd) .ConstructionComponent-details {
    -ms-flex: 1;
        flex: 1;
    -ms-flex-order: 1;
        order: 1; } }

@media all and (min-width: 1024px) {
  .ConstructionComponent:nth-child(odd) .ConstructionComponent-figure {
    -ms-flex: 1;
        flex: 1;
    -ms-flex-order: 2;
        order: 2; } }

@media all and (min-width: 1024px) {
  .ConstructionComponent:nth-child(even) .ConstructionComponent-details {
    -ms-flex: 1;
        flex: 1;
    -ms-flex-order: 2;
        order: 2; } }

@media all and (min-width: 1024px) {
  .ConstructionComponent:nth-child(even) .ConstructionComponent-figure {
    -ms-flex: 1;
        flex: 1;
    -ms-flex-order: 1;
        order: 1; } }

.Form {
  padding-bottom: 4rem; }

.Form-input {
  border: 1px solid rgba(112, 112, 112, 0.5);
  box-sizing: border-box;
  font-size: 1.4rem;
  padding: 6px 4px; }
  @media all and (max-width: 1023px) {
    .Form-input {
      -ms-flex-item-align: end;
          -ms-grid-row-align: end;
          align-self: end;
      display: block;
      width: 100%;
      -ms-grid-column-align: end;
          justify-self: end; } }

.Form-button:disabled {
  cursor: not-allowed;
  opacity: 0.4; }

.MessageBox {
  margin-bottom: 1rem;
  padding: 4px 0; }
  .MessageBox.MessageBox--success {
    background-color: #33B6DF; }

.Form-button.Form-button--processing {
  background-color: #0386be; }

.Form-button.Form-button--processed {
  background-color: #33B6DF; }
  .Form-button.Form-button--processed:disabled {
    opacity: 1; }

@media all and (max-width: 1023px) {
  .Form-fields {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
    grid-gap: 15px; }
    .Form-fields .Form-field {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 100%;
          grid-template-columns: 100%;
      grid-gap: 10%; } }

.Form-button {
  background-color: #b6bbbc;
  border: 0;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 3px;
  padding: 0.5rem 3rem;
  text-align: center;
  text-transform: uppercase; }

.Form-field:last-child {
  display: block;
  text-align: center; }

.Form-field label {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2px; }
  @media all and (max-width: 1023px) {
    .Form-field label {
      -ms-flex-item-align: start;
          -ms-grid-row-align: start;
          align-self: start;
      -ms-grid-column-align: start;
          justify-self: start; } }

.Form-field select {
  border: 1px solid #f2f2f2;
  color: black;
  font-size: 1.2rem;
  letter-spacing: 3px;
  opacity: 0.75;
  padding: 6px 4px;
  text-transform: uppercase;
  width: 100%; }

.Dealer-Form-Layout {
  display: -ms-grid;
  display: grid;
  grid-gap: 15px;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr; }
  @media all and (min-width: 1024px) {
    .Dealer-Form-Layout {
      padding: 2rem;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-flow: column nowrap !important;
          flex-flow: column nowrap !important; } }
  @media all and (max-width: 1023px) {
    .Dealer-Form-Layout {
      margin: 4rem 0 0 0; } }

.Dealer-Form-Layout .Find-Dealer-input {
  border-color: #f2f2f2; }

.Dealer-Form-Layout .Find-Dealer-inputWrap > input[type=text],
.Dealer-Form-Layout .Find-Dealer-inputWrap > input[type=email] {
  color: black;
  font-size: 1.2rem;
  padding: 6px 12px;
  width: 100%; }

.Dealer-Form-Layout .Find-Dealer-inputWrap {
  margin-bottom: 10px; }

.Dealer-Form-Layout .Find-Dealer-inputWrap > input::-webkit-input-placeholder,
.Form-field input::-webkit-input-placeholder {
  color: black;
  font-size: 1.2rem;
  letter-spacing: 3px;
  opacity: 0.75;
  text-transform: uppercase; }

.Dealer-Form-Layout .Find-Dealer-inputWrap > input:-ms-input-placeholder,
.Form-field input:-ms-input-placeholder {
  color: black;
  font-size: 1.2rem;
  letter-spacing: 3px;
  opacity: 0.75;
  text-transform: uppercase; }

.Dealer-Form-Layout .Find-Dealer-inputWrap > input::-ms-input-placeholder,
.Form-field input::-ms-input-placeholder {
  color: black;
  font-size: 1.2rem;
  letter-spacing: 3px;
  opacity: 0.75;
  text-transform: uppercase; }

.Dealer-Form-Layout .Find-Dealer-inputWrap > input::placeholder,
.Form-field input::placeholder {
  color: black;
  font-size: 1.2rem;
  letter-spacing: 3px;
  opacity: 0.75;
  text-transform: uppercase; }

.Form-field input::-webkit-input-placeholder {
  font-size: 1rem !important; }

.Form-field input:-ms-input-placeholder {
  font-size: 1rem !important; }

.Form-field input::-ms-input-placeholder {
  font-size: 1rem !important; }

.Form-field input::placeholder {
  font-size: 1rem !important; }

.Dealer-Form-Layout select {
  border: 1px solid #f2f2f2;
  color: black;
  font-size: 1.2rem;
  letter-spacing: 3px;
  opacity: 0.75;
  padding: 6px 4px;
  text-transform: uppercase;
  width: 100%; }

.Dealer-Form-Layout .Find-Dealer-inputWrap:last-child {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 2rem;
  -ms-grid-column-align: center;
      justify-self: center; }

.Dealer-Form-Layout select > option:first-child {
  color: black;
  font-size: 1.2rem;
  letter-spacing: 3px;
  opacity: 0.75;
  text-transform: uppercase; }

.Form .Type {
  line-height: 1rem; }

.Form .Type .Type-subheading:first-child, .Form .Type .Blogroll .BlogCard-header:first-child, .Blogroll .Form .Type .BlogCard-header:first-child {
  line-height: 2rem; }

.Form .Type .Type-subheading:last-child, .Form .Type .Blogroll .BlogCard-header:last-child, .Blogroll .Form .Type .BlogCard-header:last-child {
  line-height: 3rem; }

@media all and (min-width: 1024px) {
  .ContactForm .Dealer-Form-Layout {
    padding: 4rem 14rem; } }

@media all and (max-width: 1023px) {
  .ContactForm .Dealer-Form-Layout {
    padding: 4rem; } }

@media all and (min-width: 1024px) {
  .QuoteForm .Form {
    -ms-flex-line-pack: start;
        align-content: start;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    -ms-flex-pack: start;
        justify-content: start;
    position: relative;
    z-index: 2;
    -ms-grid-columns: 40% 60%;
        grid-template-columns: 40% 60%; } }

@media all and (min-width: 1024px) {
  .QuoteForm .Form .Form-heading {
    text-align: center;
    -ms-grid-column-align: center;
        justify-self: center;
    width: 40%; } }

@media all and (min-width: 1024px) {
  .QuoteForm .Form .Form-content {
    text-align: center;
    width: 40%; } }

@media all and (min-width: 1024px) {
  .QuoteForm.Section {
    padding: 5rem 0; } }

@media all and (min-width: 1024px) {
  .QuoteForm .Form-field {
    margin-bottom: 1rem;
    text-align: left; } }

@media all and (min-width: 1024px) {
  .QuoteForm .Form-field label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase; } }

@media all and (min-width: 1024px) {
  .QuoteForm .Form-field:last-child {
    margin-top: 2rem; } }

#BrochureFormCta .Form-field:last-child {
  text-align: right; }

@media all and (min-width: 1024px) {
  .QuoteForm .Form-input {
    border: 1px solid #0386be;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    padding: 10px 14px;
    width: 100%; } }

@media all and (min-width: 1024px) {
  .Form-button:hover {
    background-color: #33B6DF;
    cursor: pointer; } }

@media all and (min-width: 1024px) {
  #BrochureFormCta .BrochureFormCta-form .Form-fields {
    padding: 0 !important; }
    #BrochureFormCta .BrochureFormCta-form .Form-fields select {
      font-size: 1rem !important; } }

@media all and (min-width: 1024px) {
  .QuoteForm {
    background-color: #58595B !important;
    background-position: center center;
    background-size: cover;
    color: white;
    position: relative; }
    .QuoteForm .Type-heading, .QuoteForm .Type-subheading, .QuoteForm .Blogroll .BlogCard-header, .Blogroll .QuoteForm .BlogCard-header {
      color: white !important; }
    .QuoteForm label {
      color: white; } }

@media all and (max-width: 1023px) {
  .QuoteForm {
    background-image: none !important; } }

.lazyload,
.lazyloading {
  opacity: 0; }

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms; }

.blur-up {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  transition: filter 400ms, -webkit-filter 400ms; }

.blur-up.lazyloaded {
  filter: blur(0);
  -webkit-filter: blur(0); }

.lum-lightbox.lum-open {
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99; }

.lum-lightbox-inner {
  display: block;
  margin: 0 auto;
  width: 50vw; }

.lum-lightbox-inner img {
  border: 5px solid white;
  border-radius: 5px;
  box-sizing: border-box;
  max-height: 100%;
  max-width: 100%;
  width: 100%; }

.BlogMeta {
  color: #000000;
  font-size: 1.2rem;
  font-weight: 200;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: capitalize;
  width: 100%; }

.BlogMeta-item {
  border-right: 1px solid rgba(3, 134, 190, 0.2);
  display: inline-block;
  margin: 0 1rem 0 0;
  padding: 0 1rem 0 0; }
  .BlogMeta-item:last-child {
    border-right: 0; }

.BlogFeature {
  background-color: #58595B;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 340px;
  width: 100%; }

.Blogroll {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap; }
  .Blogroll .BlogCard {
    border: 1px solid #efefef;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap; }
    @media all and (min-width: 1024px) {
      .Blogroll .BlogCard {
        margin: 1%;
        width: 47%; } }
    @media all and (max-width: 1023px) {
      .Blogroll .BlogCard {
        margin-bottom: 1rem; } }
    .Blogroll .BlogCard .Block-button {
      margin-top: auto;
      padding-left: 0;
      padding-right: 0;
      width: 100%; }
  .Blogroll .BlogCard-meta {
    color: rgba(88, 89, 91, 0.5);
    display: block;
    font-size: 1.8rem;
    font-weight: 200;
    margin: 1rem 0;
    text-align: center; }
  .Blogroll .BlogCard-header {
    margin-bottom: 0;
    text-align: center; }
  .Blogroll .BlogCard-summary {
    padding: 1rem; }
    .Blogroll .BlogCard-summary p {
      color: rgba(88, 89, 91, 0.8);
      font-size: 1.2rem;
      font-weight: 300; }

.Pagination-link {
  background-color: #efefef;
  color: black;
  display: block;
  font-size: 1.2rem;
  font-weight: 200;
  letter-spacing: 3px;
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
  transition: all 100ms linear;
  width: 50%; }
  .Pagination-link:hover {
    background-color: #0386be;
    color: white;
    transition: all 100ms linear; }
  .Pagination-link.Pagination-disabled {
    opacity: 0.2; }
    .Pagination-link.Pagination-disabled:hover {
      cursor: not-allowed !important;
      background-color: #efefef;
      color: inherit; }

.Pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  margin: 1rem 0; }

.Logo {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-left: 24px;
  -ms-grid-column-align: center;
      justify-self: center; }

@media all and (min-width: 1024px) {
  .Logo a {
    display: block;
    width: 340px; } }

.Logo img {
  display: block;
  width: 60%; }

.Menu {
  padding: 20px 20px 15px 30px;
  z-index: 550; }

.Menu--open svg path {
  fill: #fff; }

.Menu-icon {
  display: block;
  height: 25px;
  width: 25px; }

.Flyout {
  background-color: #ffffff;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.5);
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  -webkit-transition: all 0.15s ease-out 0s;
  width: 40%;
  z-index: 501; }

@media screen and (max-width: 768px) {
  .Flyout {
    width: 75%; } }

.Flyout--visible {
  display: block; }

.Flyout-menu-logo {
  display: block; }

.Flyout-menu-logo svg path.a {
  fill: #58595B; }

.Flyout-menu-logo svg {
  display: block;
  margin: 0 auto;
  width: 35%; }

.Flyout-menu {
  display: block;
  margin: 0;
  padding: 0; }

.Flyout-menu li {
  display: block; }

.Flyout-menu-item.Flyout-menu-logo {
  background-color: #ffffff;
  padding: 20px 0; }

.Flyout-menu-item {
  /*border-bottom: 1px solid hsla(0, 0%, 0%, .1);*/
  color: #58595b;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1;
  padding: 12px 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  text-rendering: geometricPrecision; }

.Flyout-menu-item--active {
  border-left: 4px solid var(--ip-primary); }

.Overlay, .ModalOverlay {
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500; }

.Overlay--visible, .ModalOverlay--visible {
  display: block; }

.Model {
  margin: 0;
  width: 100%; }

.Model-hero-image {
  display: inline-block;
  max-width: 100%; }

.Model-heading {
  margin: 2rem 0; }

@media all and (max-width: 1023px) {
  .Model-sizes {
    margin: 4rem 0; } }

@media all and (min-width: 1024px) {
  .Model-features {
    display: -ms-flexbox;
    display: flex; } }

@media all and (min-width: 1024px) {
  .Model-sizes-section {
    display: -ms-flexbox;
    display: flex;
    margin: 4rem auto; }
    .Model-sizes-section .Model-sizes {
      width: 50%; } }

.Model-measurements-table {
  width: 100%; }
  .Model-measurements-table th span {
    color: #0386be;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 200;
    padding: 10px; }

@media all and (min-width: 1024px) {
  .Model-linechart {
    padding: 2rem 5rem;
    text-align: center; }
    .Model-linechart img {
      display: block;
      height: 275px;
      margin: 0 auto;
      max-width: 100%;
      width: 326px; } }

@media all and (max-width: 1023px) {
  .Model-linechart {
    padding: 3rem;
    text-align: center; }
    .Model-linechart img {
      display: block;
      height: 275px;
      margin: 0 auto;
      max-width: 100%;
      width: 326px; } }

.PoolCategories {
  margin-bottom: 2rem;
  margin-top: 2rem; }

.PoolCategories-box {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%; }
  @media all and (min-width: 1024px) {
    .PoolCategories-box {
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
      margin: 0.5rem 0; } }
  @media all and (max-width: 1023px) {
    .PoolCategories-box {
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
      margin: 1rem 0; } }
  .PoolCategories-box .PoolCategories-box--title {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block; }
    @media all and (min-width: 1024px) {
      .PoolCategories-box .PoolCategories-box--title {
        margin-right: 2rem; } }
    @media all and (max-width: 1023px) {
      .PoolCategories-box .PoolCategories-box--title {
        margin-bottom: 1rem; } }
  .PoolCategories-box .PoolCategories-box--category {
    color: rgba(0, 0, 0, 0.4);
    display: block;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    font-size: 1.2rem;
    font-weight: 300;
    padding: 8px 24px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.01);
    margin-right: 4px;
    margin-bottom: 8px;
    margin-left: 4px;
    border-radius: 24px;
    transition: all 100ms linear; }
    .PoolCategories-box .PoolCategories-box--category:hover {
      color: white;
      background-color: rgba(3, 134, 190, 0.75);
      transition: all 100ms linear; }
    .PoolCategories-box .PoolCategories-box--category--selected {
      color: white;
      background-color: #0386be;
      font-weight: 300; }

@media all and (max-width: 1023px) {
  .DesktopGallery {
    display: none; } }

@media all and (min-width: 1024px) {
  .Model-hero-slider {
    display: none; } }

@media all and (max-width: 1023px) {
  .Model-hero-slider {
    display: block;
    overflow: hidden;
    width: 100%; } }

@media all and (min-width: 1024px) {
  .Model-hero {
    display: -ms-grid;
    display: grid;
    margin-bottom: 5rem;
    width: 100%;
    -ms-grid-columns: 2fr 1fr;
        grid-template-columns: 2fr 1fr;
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
    grid-gap: 3px; }
    .Model-hero .Hero-grid-item:nth-child(1) {
      display: block;
      -ms-grid-column: 1;
      grid-column: 1;
      -ms-grid-row: 1;
      grid-row: 1; }
    .Model-hero .Hero-grid-item:nth-child(2) img {
      margin-bottom: 3px;
      max-height: 49.8%; }
    .Model-hero .Hero-grid-item:nth-child(2) {
      -ms-grid-column: 2;
      grid-column: 2;
      -ms-grid-row: 1;
      grid-row: 1; }
    .Model-hero img {
      display: block;
      width: 100%; } }

@media all and (max-width: 1023px) {
  .Model-hero {
    display: none; } }

.Model-gallery {
  background-color: #fefefe;
  padding: 1rem; }

@media all and (min-width: 1024px) {
  .Pool-gallery-section {
    overflow: hidden;
    position: relative; }
    .Pool-gallery-section .swiper-slide {
      opacity: 1;
      transition: opacity 150ms linear; } }

@media all and (min-width: 1024px) {
  .Model-measurement-cell-data {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 5px; } }

@media all and (min-width: 1024px) {
  .Pool-gallery-anchor {
    display: block; }
    .Pool-gallery-anchor img {
      display: block;
      max-width: 100%;
      width: 100%; } }

@media all and (min-width: 1024px) {
  .Model-heading .Type-heading {
    line-height: 3.4rem;
    text-transform: capitalize; } }

.Model-heading {
  text-align: center; }

.Model-heading h2 {
  color: #0386be; }

@media all and (min-width: 1024px) {
  .Model-features header {
    margin: 2rem 0; } }

@media all and (min-width: 1024px) {
  .Pools {
    -ms-flex-align: stretch;
        align-items: stretch;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: start;
        justify-content: flex-start; } }

@media all and (max-width: 1023px) {
  .Pools {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center; } }

.Pools-entry {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  margin: 0 auto 2rem auto;
  width: 100%; }
  @media all and (max-width: 1023px) {
    .Pools-entry {
      margin-bottom: 4rem !important; } }
  @media all and (min-width: 1024px) {
    .Pools-entry {
      border: 1px solid #b6bbbc;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
      margin: 1%;
      width: 47%; } }
  .Pools-entry .Block-button {
    margin-top: auto !important; }

.Pools-entry-title {
  line-height: 2.4rem;
  margin: 2rem auto 0 auto;
  text-align: center;
  width: 75%;
  word-wrap: break-word; }

.Pools-entry-title-text {
  margin: 0; }

.Pools-entry-title-text a {
  color: #0386be;
  font-size: 2.4rem;
  font-weight: 200; }

.Pools-viewAll {
  text-align: center; }

.Pools-entry-featureText {
  margin: 0 auto;
  max-width: 75%;
  width: 75%; }

.Pools-entry-featureText ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: left; }

.Pools-entry-featureText ul li {
  font-size: 1rem;
  list-style-image: url("/dist/svg/plus.svg"); }

.Pools-entry-render img {
  display: inline-block;
  max-width: 100%; }

.swiper-container {
  width: 100%; }

.swiper-button-prev {
  background-color: rgba(0, 0, 0, 0.6);
  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") !important;
  color: white;
  height: 100%;
  left: 0;
  padding: 0 1rem;
  right: auto;
  top: 22px; }

.swiper-button-next {
  background-color: rgba(0, 0, 0, 0.6);
  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") !important;
  color: white;
  height: 100%;
  left: auto;
  padding: 0 1rem;
  right: 0;
  top: 22px; }

.swiper-container .swiper-slide img {
  max-width: 100%; }

.swiper-pagination-bullet {
  background: white;
  opacity: 0.5; }

.swiper-pagination-bullet-active {
  background: white;
  opacity: 1; }

@media all and (min-width: 1024px) {
  .Slider {
    height: 800px; } }

@media all and (min-width: 1024px) {
  .Slider-slide {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; } }

@media all and (min-width: 1024px) {
  .Slider-slide {
    height: auto !important; } }

@media all and (min-width: 1024px) {
  .Testimonials {
    padding: 5rem 0; } }

@media all and (max-width: 1023px) {
  .Testimonials {
    width: 70vw !important; } }

@media all and (max-width: 1023px) {
  .Testimonials .Type-heading {
    margin-bottom: 1rem; } }

.Testimonials header {
  text-align: center; }

.Testimonial {
  background-color: white;
  border: 2px solid #e6e7e8;
  margin: 6rem auto;
  width: 650px; }
  @media all and (min-width: 1024px) {
    .Testimonial {
      display: -ms-flexbox !important;
      display: flex !important;
      box-sizing: border-box; } }
  @media all and (max-width: 1023px) {
    .Testimonial {
      width: 100%;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: none;
          grid-template-columns: none;
      -ms-grid-rows: 1fr;
          grid-template-rows: 1fr; } }

.Testimonial-image img {
  border: 8px solid white;
  border-radius: 50%;
  box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.1);
  display: inline-block;
  left: -81px;
  max-width: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 180px; }
  @media all and (max-width: 1023px) {
    .Testimonial-image img {
      border: none;
      border-radius: 0;
      display: block;
      left: 0;
      margin: 0 auto;
      max-width: 100%;
      position: relative;
      top: 0;
      -webkit-transform: none;
              transform: none;
      width: 100%; } }

.Testimonial-image {
  position: relative; }
  @media all and (min-width: 1024px) {
    .Testimonial-image {
      -ms-flex-negative: 1;
          flex-shrink: 1; } }
  @media all and (max-width: 1023px) {
    .Testimonial-image {
      -ms-flex-item-align: start;
          -ms-grid-row-align: start;
          align-self: start;
      width: 100%;
      -ms-grid-column-align: center;
          justify-self: center; } }

.Testimonial-content {
  padding: 12px 24px; }
  @media all and (min-width: 1024px) {
    .Testimonial-content {
      padding-left: 8rem; } }

.Testimonial-customer-information {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: start;
      justify-self: start;
  -ms-flex: 1;
      flex: 1; }

.Testimonial-customer,
.Testimonial-location {
  text-transform: uppercase; }

.Testimonial-pool-info,
.Testimonial-customer-information {
  font-size: 1rem;
  font-weight: 400;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto; }
  @media all and (max-width: 1023px) {
    .Testimonial-pool-info,
    .Testimonial-customer-information {
      line-height: 1; } }

.Testimonial-pool-info {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: black;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  -ms-flex: 1;
      flex: 1;
  text-align: right;
  -ms-grid-column-align: end;
      justify-self: end; }
  @media all and (max-width: 1023px) {
    .Testimonial-pool-info {
      text-align: right; } }

@media all and (max-width: 1023px) {
  .Testimonial-copy {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -ms-grid-column-align: center;
        justify-self: center; } }

.Testimonial-text {
  margin: 0 auto;
  text-align: center;
  width: 90%; }

.Testimonial-text p {
  color: black; }
  @media all and (max-width: 1023px) {
    .Testimonial-text p {
      font-size: 1.2rem; } }

.Testimonial-meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around; }

.Testimonial-customer,
.Testimonial-location {
  color: #33B6DF; }

@media all and (max-width: 1023px) {
  .Warranty .Type {
    padding: 2rem 4rem 0 4rem; } }

@media all and (max-width: 1023px) {
  .Warranty .Type-subheading, .Warranty .Blogroll .BlogCard-header, .Blogroll .Warranty .BlogCard-header {
    line-height: 1; } }

.WarrantyBox {
  width: 100%;
  -ms-grid-column-align: center;
      justify-self: center;
  margin: 1rem; }
  @media all and (max-width: 1023px) {
    .WarrantyBox {
      margin: 4rem 0; } }

.WarrantyBox-download-link a {
  -ms-flex-align: center;
      align-items: center;
  color: #58595b;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  margin-bottom: 2rem;
  margin-top: 14rem;
  padding: 1rem 0;
  text-align: left;
  width: 100%;
  justify-items: center; }
  @media all and (max-width: 1023px) {
    .WarrantyBox-download-link a {
      margin-top: 5rem; } }

.WarrantyBox-download-link a:hover {
  background-color: #efefef;
  transition: background-color 150ms ease-in; }

.WarrantyBox-download-link svg {
  display: inline-block;
  -ms-flex: 1;
      flex: 1;
  height: 50px; }

.WarrantyBox-download-link span {
  display: inline-block;
  -ms-flex: 2;
      flex: 2;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: left; }

.WarrantyBox-logo svg {
  display: block;
  max-width: 100%; }

.WarrantyBox-logo {
  height: 250px;
  left: 50%;
  position: absolute;
  top: -40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 250px; }

.WarrantyBox-header {
  position: relative; }

.WarrantyBox-header {
  background-color: transparent;
  height: 125px; }

@media all and (max-width: 1023px) {
  .WarrantyContent {
    padding: 4rem; } }

@media all and (min-width: 1024px) {
  .WarrantyDocuments {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    display: flex; } }

@media all and (max-width: 1023px) {
  .WarrantyDocuments {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    grid-gap: 1rem; } }

