/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.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;
}

@-webkit-keyframes passing-through{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%,70%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}}@keyframes passing-through{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%,70%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}}@-webkit-keyframes slide-in{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slide-in{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}10%{-webkit-transform:scale(1.1);transform:scale(1.1)}20%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}10%{-webkit-transform:scale(1.1);transform:scale(1.1)}20%{-webkit-transform:scale(1);transform:scale(1)}}.dropzone,.dropzone *{-webkit-box-sizing:border-box;box-sizing:border-box}.dropzone{min-height:150px;border:2px solid rgba(0,0,0,.3);background:#fff;padding:20px}.dropzone.dz-clickable{cursor:pointer}.dropzone.dz-clickable *{cursor:default}.dropzone.dz-clickable .dz-message,.dropzone.dz-clickable .dz-message *{cursor:pointer}.dropzone.dz-started .dz-message{display:none}.dropzone.dz-drag-hover{border-style:solid}.dropzone.dz-drag-hover .dz-message{opacity:.5}.dropzone .dz-message{text-align:center;margin:2em 0}.dropzone .dz-preview{position:relative;display:inline-block;vertical-align:top;margin:16px;min-height:100px}.dropzone .dz-preview:hover{z-index:1000}.dropzone .dz-preview.dz-file-preview .dz-image{border-radius:20px;background:#999;background:-webkit-gradient(linear,left top,left bottom,from(#eee),to(#ddd));background:linear-gradient(180deg,#eee,#ddd)}.dropzone .dz-preview.dz-file-preview .dz-details{opacity:1}.dropzone .dz-preview.dz-image-preview{background:#fff}.dropzone .dz-preview.dz-image-preview .dz-details{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.dropzone .dz-preview .dz-remove{font-size:14px;text-align:center;border:none}.dropzone .dz-preview .dz-remove:hover{text-decoration:underline}.dropzone .dz-preview:hover .dz-details{opacity:1}.dropzone .dz-preview .dz-details{z-index:20;position:absolute;top:0;left:0;opacity:0;font-size:13px;min-width:100%;max-width:100%;padding:2em 1em;text-align:center;color:rgba(0,0,0,.9);line-height:150%}.dropzone .dz-preview .dz-details .dz-size{margin-bottom:1em;font-size:16px}.dropzone .dz-preview .dz-details .dz-filename{white-space:nowrap}.dropzone .dz-preview .dz-details .dz-filename:hover span{border:1px solid hsla(0,0%,78.4%,.8);background-color:hsla(0,0%,100%,.8)}.dropzone .dz-preview .dz-details .dz-filename:not(:hover){overflow:hidden;text-overflow:ellipsis}.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span{border:1px solid transparent}.dropzone .dz-preview .dz-details .dz-filename span,.dropzone .dz-preview .dz-details .dz-size span{background-color:hsla(0,0%,100%,.4);padding:0 .4em;border-radius:3px}.dropzone .dz-preview:hover .dz-image img{-webkit-transform:scale(1.05);transform:scale(1.05);-webkit-filter:blur(8px);filter:blur(8px)}.dropzone .dz-preview .dz-image{border-radius:20px;overflow:hidden;width:120px;height:120px;position:relative;display:block;z-index:10}.dropzone .dz-preview .dz-image img{display:block}.dropzone .dz-preview.dz-success .dz-success-mark{-webkit-animation:passing-through 3s cubic-bezier(.77,0,.175,1);animation:passing-through 3s cubic-bezier(.77,0,.175,1)}.dropzone .dz-preview.dz-error .dz-error-mark{opacity:1;-webkit-animation:slide-in 3s cubic-bezier(.77,0,.175,1);animation:slide-in 3s cubic-bezier(.77,0,.175,1)}.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-success-mark{pointer-events:none;opacity:0;z-index:500;position:absolute;display:block;top:50%;left:50%;margin-left:-27px;margin-top:-27px}.dropzone .dz-preview .dz-error-mark svg,.dropzone .dz-preview .dz-success-mark svg{display:block;width:54px;height:54px}.dropzone .dz-preview.dz-processing .dz-progress{opacity:1;-webkit-transition:all .2s linear;transition:all .2s linear}.dropzone .dz-preview.dz-complete .dz-progress{opacity:0;-webkit-transition:opacity .4s ease-in;transition:opacity .4s ease-in}.dropzone .dz-preview:not(.dz-processing) .dz-progress{-webkit-animation:pulse 6s ease infinite;animation:pulse 6s ease infinite}.dropzone .dz-preview .dz-progress{opacity:1;z-index:1000;pointer-events:none;position:absolute;height:16px;left:50%;top:50%;margin-top:-8px;width:80px;margin-left:-40px;background:hsla(0,0%,100%,.9);-webkit-transform:scale(1);border-radius:8px;overflow:hidden}.dropzone .dz-preview .dz-progress .dz-upload{background:#333;background:-webkit-gradient(linear,left top,left bottom,from(#666),to(#444));background:linear-gradient(180deg,#666,#444);position:absolute;top:0;left:0;bottom:0;width:0;-webkit-transition:width .3s ease-in-out;transition:width .3s ease-in-out}.dropzone .dz-preview.dz-error .dz-error-message{display:block}.dropzone .dz-preview.dz-error:hover .dz-error-message{opacity:1;pointer-events:auto}.dropzone .dz-preview .dz-error-message{pointer-events:none;z-index:1000;position:absolute;display:block;display:none;opacity:0;-webkit-transition:opacity .3s ease;transition:opacity .3s ease;border-radius:8px;font-size:13px;top:130px;left:-10px;width:140px;background:#be2626;background:-webkit-gradient(linear,left top,left bottom,from(#be2626),to(#a92222));background:linear-gradient(180deg,#be2626,#a92222);padding:.5em 1.2em;color:#fff}.dropzone .dz-preview .dz-error-message:after{content:"";position:absolute;top:-6px;left:64px;width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #be2626}html{height:100%}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,textarea,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;-webkit-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}table{border-collapse:collapse;border-spacing:0}strong{font-weight:700}@font-face{font-family:Poppins Regular;font-style:normal;font-weight:400;src:url(public/assets/fonts/Poppins-Regular.woff) format("woff")}@font-face{font-family:Poppins Bold;font-style:normal;font-weight:400;src:url(public/assets/fonts/Poppins-Bold.woff) format("woff")}@font-face{font-family:Open Sans;font-style:normal;font-weight:400;src:local("Open Sans Regular"),local("OpenSans-Regular"),url(public/assets/fonts/open-sans-v17-latin-regular.ttf) format("truetype"),url(public/assets/fonts/open-sans-v17-latin-regular.woff2) format("woff2"),url(public/assets/fonts/open-sans-v17-latin-regular.woff) format("woff")}.c-teaser-text__icons{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:770px){.c-teaser-text__icons{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.c-teaser-text__icons__icon{text-align:center}@media screen and (max-width:770px){.c-teaser-text__icons__icon{margin-bottom:42px}}.c-teaser-text__icons__icon-image{padding-bottom:25px}.c-teaser-text__icons__icon-text{font-size:16px;line-height:23px;font-family:Open Sans;color:#7c7c7c}.u-icon-arrow{background-image:url(/dist/public/assets/images/Icons/down-arrow.svg);display:inline-block;position:relative;-webkit-transition:all .3s ease;transition:all .3s ease;background-size:cover;background-repeat:no-repeat;background-position:50%;position:absolute;right:30px;width:8px;height:6px}@media screen and (max-width:1024px){.u-icon-arrow{right:46px}}.u-icon-arrow--down{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.u-icon-arrow--up{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.c-testimonial__group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}@media screen and (max-width:770px){.c-testimonial__group{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.c-testimonial__group-img{width:25%;padding-right:35px}@media screen and (max-width:770px){.c-testimonial__group-img{width:100%;padding-right:0}}.c-testimonial__group-img h3{display:none;font-family:Poppins Bold;font-size:28px;line-height:23px;text-align:left;text-transform:uppercase;padding-bottom:42px;color:#fff;text-align:center}@media screen and (max-width:770px){.c-testimonial__group-img h3{display:block}}@media screen and (max-width:770px){.c-testimonial__group-img-text{width:100%;margin-bottom:43px}}.c-testimonial__group-img img{max-width:212px;max-height:212px;height:auto;width:100%;display:block;margin-bottom:40px}@media screen and (max-width:770px){.c-testimonial__group-img img{max-width:212px;max-height:212px;margin:0 auto 40px}}.c-testimonial__group-img h4{font-family:Poppins Bold;color:#fff;font-size:16px;line-height:25px;text-align:left;border-bottom:2px solid #7c7c7c;padding:10px 0}@media screen and (max-width:770px){.c-testimonial__group-img h4{text-align:center}}.c-testimonial__group-img h4:last-of-type{border-bottom:none}.c-testimonial__group-text{width:75%;border:2px solid #7c7c7c;padding:45px 60px;position:relative}@media screen and (max-width:770px){.c-testimonial__group-text{border:none;width:100%;padding:0}}.c-testimonial__group-text--hidden{font-size:16px;line-height:23px;text-align:left;color:#f2f2f2;font-family:Open Sans}@media screen and (max-width:770px){.c-testimonial__group-text--hidden{max-height:120px;overflow:hidden;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(transparent));background-image:linear-gradient(180deg,#fff,transparent);-webkit-background-clip:text;-webkit-text-fill-color:transparent}}.c-testimonial__group-text-readmore{display:none}@media screen and (max-width:770px){.c-testimonial__group-text-readmore{display:block;position:absolute;bottom:0;left:0;width:100%;text-align:center;margin:0}.c-testimonial__group-text-readmore a{font-size:16px;line-height:22px;color:#f5a802;font-family:Poppins Bold;text-decoration:none;text-transform:uppercase}}.c-testimonial__group-text h3{font-family:Poppins Bold;font-size:28px;line-height:23px;text-align:left;text-transform:uppercase;padding-bottom:42px;color:#fff}@media screen and (max-width:770px){.c-testimonial__group-text h3{display:none}}.c-find-textandimage{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-bottom:80px}.c-find-textandimage__text{width:35%;background-color:#00002d;padding:50px 40px}@media screen and (max-width:770px){.c-find-textandimage__text{width:100%;background-image:url(/dist/public/assets/images/Icons/Bg__Img.jpg);background-color:unset;background-position:50%;background-size:cover;background-repeat:no-repeat}}.c-find-textandimage__text-title{font-family:Poppins Bold;font-size:28px;line-height:23px;text-align:left;text-transform:uppercase;padding-bottom:25px;color:#fff}.c-find-textandimage__text-text{font-size:16px;line-height:23px;text-align:left;color:#f2f2f2;font-family:Open Sans;padding-bottom:22px}.c-find-textandimage__text-text-links{font-size:16px;line-height:30px;text-align:left;color:#f2f2f2;font-family:Open Sans;display:block;text-decoration:none;white-space:nowrap}.c-find-textandimage__text-text-links span{color:#f55c02}.c-find-textandimage__image{width:65%}@media screen and (max-width:770px){.c-find-textandimage__image{display:none}}.c-find-textandimage__image-img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.c-slider{padding:0}.c-slider .o-row{position:relative}.c-slider__content{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:1}@media screen and (max-width:770px){.c-slider__content{width:65%}}@media screen and (max-width:480px){.c-slider__content{width:80%}}.c-slider__content-image{width:100%;height:auto;-o-object-fit:cover;object-fit:cover}.c-slider__content-button{text-align:center;margin-top:60px}.c-slider__content-button a{display:inline-block;font-size:16px;line-height:25px;font-family:Poppins Bold;color:#f2f2f2;padding:20px 40px;text-transform:uppercase;text-decoration:none;background-color:#f5a802;text-align:center}@media screen and (max-width:770px){.c-slider__content-button a{padding:20px 29px}}.c-slider__content-button a:hover{background-color:#fff;color:#f5a802}.c-slider .swiper-wrapper{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.c-slider .swiper-container{width:100%;overflow:hidden;height:100vh}.c-slider .swiper-container .swiper-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;bottom:54px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.c-slider .swiper-container .swiper-pagination-bullet{width:8px;height:8px;background-color:#fff;display:inline-block;margin-right:22px;cursor:pointer}.c-slider .swiper-container .swiper-pagination-bullet-active{width:16px;height:16px;background-color:#f55c02}.c-slider .swiper-container .swiper-pagination-bullet:last-of-type{margin-right:0}.c-slider__slide{min-width:100%}.c-slider__slide--holder{height:100%;display:none}.c-slider .no-slider{-ms-flex-wrap:wrap;flex-wrap:wrap}.c-slider .no-slider .c-slider__slide{margin:0 auto}.c-slider .no-slider .c-slider__slide--holder{display:block;margin:0 auto}.c-slider__image-wrapper{position:relative;overflow:hidden;width:100%;height:100%}.c-slider__image-wrapper:after{content:"";background:rgba(0,0,45,.64);position:absolute;top:0;left:0;right:0;bottom:0;z-index:1}.c-slider__image{display:block;height:100%;position:relative;width:100%;-o-object-fit:cover;object-fit:cover;-webkit-transform:scale(1);transform:scale(1);font-family:"object-fit: cover;";-webkit-transition:all .3s ease;transition:all .3s ease}#not_human,#secretHoneypotParamName{position:absolute;left:-9000px}.c-contact-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.c-contact-group__image{width:50%;padding-right:76px}@media screen and (max-width:770px){.c-contact-group__image{display:none}}.c-contact-group__image img{max-width:550px;width:100%;max-height:537px;height:auto}.c-contact-group__form{width:50%}@media screen and (max-width:770px){.c-contact-group__form{width:100%}}.c-contact-group__form #form{max-width:592px;width:100%}@media screen and (max-width:770px){.c-contact-group__form #form{max-width:100%}}.c-contact-group__form #form .error{color:#f50202}.c-contact-group__form #form .error,.c-contact-group__form #form .success-msg{font-size:16px;line-height:26px;letter-spacing:.03px;font-family:Poppins Regular}.c-contact-group__form #form .success-msg{color:#4f8a10;margin-top:10px}.c-contact-group__form input:focus,.c-contact-group__form textarea:focus{outline:none}.c-contact-group__form .email{width:49%}.c-contact-group__form .email,.c-contact-group__form .fullname{display:inline-block}@media screen and (max-width:1250px){.c-contact-group__form .email,.c-contact-group__form .fullname{width:100%;display:block}}.c-contact-group__form .email input,.c-contact-group__form .fullname input{width:288px;max-width:100%;height:64px;margin-bottom:16px;padding-left:30px;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid #7c7c7c;font-size:16px;line-height:22px;font-family:Open Sans;color:#00002d}@media screen and (max-width:1250px){.c-contact-group__form .email input,.c-contact-group__form .fullname input{width:100%}}.c-contact-group__form .email input:hover,.c-contact-group__form .fullname input:hover{border-color:#00002d}.c-contact-group__form .email input:active,.c-contact-group__form .email input:focus,.c-contact-group__form .fullname input:active,.c-contact-group__form .fullname input:focus{border-color:#f5a802}.c-contact-group__form .email input#fromName,.c-contact-group__form .fullname input#fromName{margin-right:9.4px}@media screen and (max-width:1250px){.c-contact-group__form .email input#fromName,.c-contact-group__form .fullname input#fromName{margin-right:0}}.c-contact-group__form .subject{padding-bottom:16px}.c-contact-group__form .subject #subject{width:100%;height:64px;border:2px solid #7c7c7c;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:16px;line-height:22px;font-family:Open Sans;color:#00002d;padding-left:30px}.c-contact-group__form .subject #subject:hover{border-color:#00002d}.c-contact-group__form .subject #subject:active,.c-contact-group__form .subject #subject:focus{border-color:#f5a802}@media screen and (max-width:770px){.c-contact-group__form .message{width:100%}}.c-contact-group__form .message:hover{border-color:#00002d}.c-contact-group__form .message:active,.c-contact-group__form .message:focus{border-color:#f5a802}.c-contact-group__form .message #message{border:2px solid #7c7c7c;height:100%;width:100%;font-size:16px;line-height:22px;font-family:Open Sans;color:#00002d;padding-left:30px;padding-top:21px}.c-contact-group__form .message #message:active,.c-contact-group__form .message #message:focus{border-color:#f5a802}@media screen and (max-width:770px){.c-contact-group__form .submit{text-align:center}}.c-contact-group__form .submit-button{margin-top:27px;height:64px;width:122px;background-color:#f5a802;color:#f2f2f2;font-size:16px;line-height:25px;font-family:Poppins Bold;cursor:pointer;border:none}.c-contact-group__form .submit-button:hover{color:#f5a802;border:2px solid #f5a802;background-color:#fff}.c-about-intro{width:100%;margin-bottom:100px}@media screen and (max-width:770px){.c-about-intro{margin-bottom:80px}}.c-about-intro strong{font-weight:700}.c-about-intro p{font-size:16px;line-height:23px;color:#252525;font-family:Poppins Regular}.c-about-article{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.c-about-article.margin{margin-bottom:100px}@media screen and (max-width:770px){.c-about-article.margin{margin-bottom:80px}}@media screen and (max-width:770px){.c-about-article{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:0}}.c-about-article__image{width:25%;margin-top:10px}@media screen and (max-width:770px){.c-about-article__image{width:100%;margin-top:0;margin-bottom:40px;text-align:center}}.c-about-article__image img{max-width:287px;max-height:287px;width:100%;height:auto;border:2px solid #7c7c7c}@media screen and (max-width:770px){.c-about-article__image img{max-width:256px;max-height:256px}}.c-about-article__image.order{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}@media screen and (max-width:770px){.c-about-article__image.order{-webkit-box-ordinal-group:unset;-ms-flex-order:unset;order:unset}}.c-about-article__text{width:71.3%}@media screen and (max-width:770px){.c-about-article__text{width:100%}}.c-about-article__text h3{font-size:28px;line-height:42px;font-family:Poppins Bold;letter-spacing:.35px;color:#252525;text-transform:uppercase;padding-bottom:38px}@media screen and (max-width:770px){.c-about-article__text h3{text-align:center}}.c-about-article__text p{font-size:16px;line-height:23px;color:#252525;font-family:Poppins Regular}.c-filter{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.c-filter__tab-item{cursor:pointer;border:2px solid #f5a802;-webkit-transition:all .3s ease;transition:all .3s ease;max-width:33.333333%;width:253px;margin-left:20px}@media screen and (max-width:770px){.c-filter__tab-item{margin-left:0;max-width:100%;width:100%;margin-top:20px}}.c-filter__link{width:100%;text-align:center;cursor:pointer}.c-filter__dropdown{width:100%;height:100%;position:relative;cursor:pointer}.c-filter__dropdown-content{position:absolute;top:64px;display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;text-align:center;background-color:#fff;z-index:9;margin-left:-2px;width:253px;border:2px solid #f5a802;border-top:none}@media screen and (max-width:770px){.c-filter__dropdown-content{width:100%}}.c-filter__dropdown-content--show,.c-filter__dropdown-item{display:-webkit-box;display:-ms-flexbox;display:flex}.c-filter__dropdown-item{cursor:pointer;text-transform:none;height:64px;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:16px;line-height:26px;color:#252525;font-family:Poppins Bold;text-align:left;padding:0 0 0 29px}.c-filter__dropdown-item:hover{background-color:#f2f2f2}.c-filter__dropdown-title{text-align:center;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:64px;font-size:16px;line-height:26px;color:#252525;background-color:transparent;font-family:Poppins Bold;margin:0;width:253px;text-align:left;padding:0 0 0 29px}@media screen and (max-width:770px){.c-filter__dropdown-title{width:100%}}.c-filter__dropdown-title p{text-transform:uppercase;margin:auto 0!important}.c-filter__item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.is-full{width:100%;height:rem(57)}@media screen and (min-width:1024px){.is-full{height:auto}}.is-full .c-filter__dropdown-content{opacity:1;visibility:visible}.c-movement{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}@media screen and (max-width:1024px){.c-movement{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.c-movement-bars{width:100%}@media screen and (max-width:1024px){.c-movement-bars{width:100%}}.c-movement-bars__bar{margin-bottom:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;list-style:none}@media screen and (max-width:1024px){.c-movement-bars__bar{overflow:auto}}.c-movement-bars__bar-item{width:100%;height:64px;display:inline-block;background-color:#f2f2f2;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}@media screen and (max-width:1024px){.c-movement-bars__bar-item{min-width:126px}}.c-movement-bars__bar-item:last-of-type:after{content:unset}.c-movement-bars__bar-item:after{content:"";position:absolute;width:2px;height:32px;right:0;background-image:url(/dist/public/assets/images/Icons/Line.svg)}.c-movement-bars__bar-item a,.c-movement-bars__bar-item span{font-family:Poppins Regular;font-size:16px;line-height:26px;color:#7c7c7c;text-decoration:none;width:100%;display:block;text-align:center;outline:0 none}.c-movement-bars__bar-item a:focus,.c-movement-bars__bar-item span:focus{outline:0 none}.c-movement-bars__bar-item--active{border:2px solid #f5a802;background-color:#f5a802;position:relative}.c-movement-bars__bar-item--active:after{content:"";position:absolute;width:0;height:0;border-top:32px solid transparent;border-left:11px solid #f5a802;border-bottom:32px solid transparent;margin-right:-13px;right:0;z-index:1}.c-movement-bars__bar-item--active a,.c-movement-bars__bar-item--active span{color:#fff;font-family:Poppins Bold;outline:0 none}.c-movement-bars__bar-item--done{border:2px solid #f5a802;background-color:transparent}.c-movement-bars__bar-item--done:after{content:unset}.c-movement-bars__bar-item--done span{color:#252525}.c-movement-bars #body-sides{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:40px}.c-movement-bars #body-sides .e-bodyleft,.c-movement-bars #body-sides .e-bodyright{width:50%;border:2px solid #f5a802}.c-movement-bars #body-sides .e-bodyleft a,.c-movement-bars #body-sides .e-bodyright a{padding:10px 50px;display:block;text-align:center;color:#f5a802;font-family:Poppins Bold;outline:0 none;font-size:16px;line-height:26px;text-decoration:none}.c-movement-bars #body-sides .e-bodyleft a.active,.c-movement-bars #body-sides .e-bodyright a.active{background:#f5a802;color:#fff}.c-movement-bars__filter{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap}@media screen and (max-width:1024px){.c-movement-bars__filter{max-width:516px;margin:0 auto;width:100%}}.c-movement-bars__filter .movement-range-wrapper.not-active{display:none}.c-movement-bars__filter .movement-range-wrapper.active{display:block}.c-movement-bars__filter-button{width:135px;height:64px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:auto;background-color:#f5a802;border:2px solid #f5a802;cursor:pointer}@media screen and (max-width:1024px){.c-movement-bars__filter-button{margin:32px auto 0}}.c-movement-bars__filter-button:hover{background-color:transparent}.c-movement-bars__filter-button:hover span{color:#f5a802}.c-movement-bars__filter-button span{font-size:16px;line-height:22px;color:#f2f2f2;font-family:Poppins Bold;text-transform:uppercase}.c-movement-bars__filter-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;margin-bottom:28px;height:66px}@media screen and (max-width:1024px){.c-movement-bars__filter-items{-ms-flex-wrap:wrap;flex-wrap:wrap;height:auto}}.c-movement-bars__filter-item-text{width:20%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:1024px){.c-movement-bars__filter-item-text{width:90%;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;margin-bottom:17px}}.c-movement-bars__filter-item-text span{color:#252525;font-family:Poppins Bold;line-height:22px;font-size:16px;margin-right:14px}.c-movement-bars__filter-item-slider{width:70%;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;background-image:url(/dist/public/assets/images/Icons/Slider.svg);background-position:50%;background-repeat:no-repeat;background-size:cover;background-color:#f2f2f2}@media screen and (max-width:1024px){.c-movement-bars__filter-item-slider{width:100%;height:64px;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}}.c-movement-bars__filter-item-slider .slide{position:absolute;top:23px;width:100%}.c-movement-bars__filter-item-slider span{font-family:Poppins Regular;font-size:16px;line-height:22px;color:#7c7c7c}.c-movement-bars__filter-item-slider--left{margin-left:7px}.c-movement-bars__filter-item-slider--right{margin-right:7px}.c-movement-bars__filter-item-slider--drag{height:100%;width:16px;margin-left:-9px;-webkit-transform:translateY(-50%);transform:translateY(-50%);top:50%;height:80%;width:20px;border:2px solid #7c7c7c;border-radius:50px;background-color:#f5a802}.c-movement-bars__filter-item-slider--drag,.c-movement-bars__filter-item-slider--glz{position:absolute;left:0;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.c-movement-bars__filter-item-slider--glz{opacity:.36;background:#f5a802;background:-webkit-gradient(linear,left top,right top,from(rgba(245,168,2,0)),color-stop(25%,#f5a802),color-stop(75%,#f5a802),to(rgba(245,168,2,0)));background:linear-gradient(90deg,rgba(245,168,2,0),#f5a802 25%,#f5a802 75%,rgba(245,168,2,0));width:0;height:100%;top:0;pointer-events:none}.c-movement-bars__filter-item-number{width:10%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#f2f2f2}@media screen and (max-width:1024px){.c-movement-bars__filter-item-number{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-bottom:10px;height:36px}}.c-movement-bars__filter-item-number span{color:#252525;font-family:Poppins Bold;line-height:22px;font-size:16px}.c-movement-messages{width:35%;margin-left:30px;border:2px solid #7c7c7c}@media screen and (max-width:1024px){.c-movement-messages{width:100%;margin-top:70px;margin-left:0}}.c-movement-messages-tab{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;height:64px}.c-movement-messages-tab span{font-size:16px;line-height:26px;color:#252525;font-family:Poppins Regular}.c-movement-messages-tab span.active{color:#f5a802;font-family:Poppins Bold}.c-movement-messages-tab__note{width:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}.c-movement-messages-tab__note:after{content:"";position:absolute;width:2px;height:32px;right:50%;background-image:url(/dist/public/assets/images/Icons/Line.svg)}.c-movement-messages-tab__msg{width:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}.c-movement-messages-input{padding:28px 30px;height:100%}.c-movement-messages-input .text-form{height:100%}.c-movement-messages-input #message,.c-movement-messages-input #note{height:88%;outline:none;width:100%;font-size:16px;line-height:26px;font-family:Poppins Regular;color:#7c7c7c}.c-movement-messages-input #message.not-active,.c-movement-messages-input #note.not-active{display:none}.is-in-glz .c-movement-bars__filter-item-number span{color:#f5a802}.c-modal,[hidden]{display:none}.c-modal{width:100%;height:100%;background-color:rgba(0,0,45,.6);position:fixed;top:0;left:0;overflow:auto;z-index:999;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.c-modal .js-lightbox{margin:0 auto;display:block;width:100%;height:auto;max-height:70%;max-width:90%;-o-object-fit:contain;object-fit:contain}@media screen and (min-width:1024px){.c-modal .js-lightbox{max-height:90%;max-width:90%}}.c-modal__close{position:absolute;top:10px;right:20px;-webkit-transition:all .2s;transition:all .2s;font-size:41px;font-weight:200;text-decoration:none;color:#fff;cursor:pointer}.c-modal__close:hover{color:#f5a802}@-webkit-keyframes zoom{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes zoom{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}.modal-animation{-webkit-animation-name:zoom;animation-name:zoom;-webkit-animation-duration:.6s;animation-duration:.6s}.l-footer__nav .l-footer__nav-items .l-footer__nav-item{color:#fff;font-family:Poppins Bold;font-size:16px;line-height:28px;text-decoration:none;text-transform:uppercase;margin-left:6.5%}@media screen and (max-width:1250px){.l-footer__nav .l-footer__nav-items .l-footer__nav-item{margin-left:2.5%}}@media screen and (max-width:1024px){.l-footer__nav .l-footer__nav-items .l-footer__nav-item{font-size:14px;margin-left:2.1%}}.l-footer__nav .l-footer__nav-items .l-footer__nav-item:first-of-type{margin-left:0}.l-footer__nav .l-footer__nav-items .l-footer__nav-item.active-menu,.l-footer__nav .l-footer__nav-items .l-footer__nav-item:active,.l-footer__nav .l-footer__nav-items .l-footer__nav-item:hover{color:#f5a802}.l-footer__social-icon{height:100%;background-size:100% 100%;background-size:cover;display:inline-block;height:24px;width:24px;margin-left:50px;position:relative}.l-footer__social-icon:first-of-type{margin-left:0}.l-footer__social-icon:first-of-type:before{content:"";display:block;width:31px;height:2px;background-color:#7c7c7c;left:-84px;top:12px;position:absolute;pointer-events:none;cursor:none}@media screen and (max-width:770px){.l-footer__social-icon:first-of-type:before{display:none}}.l-footer__social-icon.icon-twitter{background-image:url(/dist/public/assets/images/Icons/Logo-Twitter-24px.svg);height:20px}.l-footer__social-icon.icon-facebook{background-image:url(/dist/public/assets/images/Icons/Logo-Facebook-24px.svg)}.l-footer__social-icon.icon-mail{background-image:url(/dist/public/assets/images/Icons/Mail-24px.svg);height:20px}.l-footer__social-icon.icon-instagram{background-image:url(/dist/public/assets/images/Icons/Logo-Instagram-24px.svg)}.c-title-text__wrapper .e-headline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:97px}@media screen and (max-width:770px){.c-title-text__wrapper .e-headline{margin-bottom:70px}}.c-title-text__wrapper .e-headline-line{content:"";display:inline-block;width:30px;height:2px;background-color:#f55c02}.c-title-text__headline{font-family:Poppins Bold;text-align:center;font-size:35px;line-height:53px;letter-spacing:1.09px;margin:0 40px}@media screen and (max-width:770px){.c-title-text__headline{font-size:26px;line-height:34px}}.c-title-text__headline--white{color:#fff}.e-find-button{-webkit-box-sizing:border-box;box-sizing:border-box;width:261px;height:auto;margin:0 auto}.e-find-button,.e-find-button a{background-color:#f5a802;display:block}.e-find-button a{font-family:Poppins Bold;font-size:16px;line-height:25px;color:#f2f2f2;text-decoration:none;text-transform:uppercase;padding:20px 0;border:2px solid #f5a802;text-align:center}.e-find-button a:hover{border:2px solid #f5a802;background-color:#fff;color:#f5a802}.e-logout a{display:block;font-family:Poppins Bold;font-size:16px;line-height:21px;color:#f2f2f2;text-decoration:none;text-transform:uppercase;padding:0 5px;background-color:#f5a802;border:2px solid #f5a802;text-align:center}@media screen and (max-width:1024px){.e-logout a{font-size:14px}}@media screen and (max-width:770px){.e-logout a{font-size:16px}}.e-logout a:hover{border:2px solid #f5a802;background-color:#fff;color:#f5a802!important}.red-colored{color:#f50202}.green-colored{color:#f5a802}.e-modal{z-index:5}.e-modal-overlay{position:fixed;top:0;bottom:0;left:0;right:0;background:rgba(0,0,45,.7);-webkit-transition:opacity .5s;transition:opacity .5s;visibility:hidden;opacity:0}.e-modal-overlay:target{visibility:visible;opacity:1}.e-modal-overlay:target .text-message,.e-modal-overlay:target .video-full{left:50%;-webkit-transform:translate(-50%);transform:translate(-50%)}.e-modal-popup{max-width:80%;max-height:70%;margin:11% auto;padding:80px 76px;background:#fff;border:1px solid #979797;width:100%;height:100%;position:absolute;left:-9999px;overflow-Y:scroll;-webkit-transition:all 1s ease-in-out;transition:all 1s ease-in-out}@media screen and (max-width:770px){.e-modal-popup{max-width:80%;max-height:80%;padding:40px 36px}}.e-modal-popup h2{font-size:28px;line-height:42px;font-family:Poppins Bold;letter-spacing:.35px;text-align:left;color:#252525;text-transform:uppercase}.e-modal-popup.video-full{max-width:100%;max-height:80%;width:90%;height:80%;margin:10% auto;left:-9999px;position:absolute}@media screen and (max-width:770px){.e-modal-popup.video-full{height:90%}}.e-modal-close{position:absolute;top:75px;right:75px;-webkit-transition:all .2s;transition:all .2s;font-size:45px;font-weight:300;text-decoration:none;color:#252525}@media screen and (max-width:770px){.e-modal-close{top:5px;right:15px}}.e-modal-close:hover{color:#f5a802}.e-modal-content{margin-top:40px;overflow:auto;font-family:Poppins Regular;font-size:16px;line-height:23px;color:#252525;text-align:left}.e-modal-content.is-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}@media screen and (max-width:1024px){.e-modal-content.is-flex{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}#popup-score.active{display:block!important;opacity:1!important}#popup-score.e-modal-overlay-score{position:fixed;top:0;bottom:0;left:0;right:0;background:rgba(0,0,45,.7);-webkit-transition:opacity .5s;transition:opacity .5s;display:none;-webkit-transition:opacity 1s ease-out;transition:opacity 1s ease-out;opacity:0}#popup-score .e-modal-popup-score{max-width:80%;max-height:80%;margin:7% auto;padding:30px 46px;background:#fff;border:1px solid #979797;width:100%;height:100%;position:absolute;left:50%;-webkit-transform:translate(-50%);transform:translate(-50%);overflow-Y:scroll;-webkit-transition:all 1s ease-in-out;transition:all 1s ease-in-out}@media screen and (max-width:770px){#popup-score .e-modal-popup-score{max-width:80%;max-height:80%;padding:40px 36px}}#popup-score .e-modal-popup-score h2{font-size:38px;line-height:54px;font-family:Poppins Bold;letter-spacing:.35px;text-align:center;color:#252525;text-transform:uppercase}@media screen and (max-width:1024px){#popup-score .e-modal-popup-score h2{font-size:28px;line-height:42px}}#popup-score .e-modal-close-score{position:absolute;top:25px;right:45px;-webkit-transition:all .2s;transition:all .2s;font-size:45px;font-weight:300;text-decoration:none;color:#252525}@media screen and (max-width:770px){#popup-score .e-modal-close-score{top:5px;right:15px}}#popup-score .e-modal-close-score:hover{color:#f5a802}.e-history{border:1px solid #000;padding:15px;width:45%;margin-top:30px}@media screen and (max-width:1250px){.e-history{width:100%}}.e-history h4{font-size:23px;line-height:37px;font-family:Poppins Bold;letter-spacing:.35px;text-align:left;color:#252525;text-transform:uppercase}.e-history ul li{padding:10px 0}.e-history ul li a{font-size:16px;line-height:23px;font-family:Poppins Regular;text-align:left;color:#252525;text-decoration:none}.c-scorecontent h4{font-size:23px;line-height:37px;font-family:Poppins Bold;letter-spacing:.35px;text-align:left;color:#252525;text-transform:uppercase}.c-scorecontent-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.c-scorecontent-wrap_ul{border:1px solid #000;padding:15px;margin-bottom:20px;width:45%}@media screen and (max-width:770px){.c-scorecontent-wrap_ul{width:100%}}.c-scorecontent-wrap_ul li{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.c-scorecontent-wrap_ul li span{font-weight:700}.l-footer .o-container-lg{max-width:1200px;width:100%;height:auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 auto;padding:60px 0}@media screen and (max-width:1250px){.l-footer .o-container-lg{max-width:900px}}@media screen and (max-width:1024px){.l-footer .o-container-lg{max-width:700px}}@media screen and (max-width:770px){.l-footer .o-container-lg{padding:60px 40px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.l-footer .o-row-footer{width:50%}@media screen and (max-width:770px){.l-footer .o-row-footer{width:100%;text-align:center}}.l-footer .l-footer__nav{text-align:right;padding-bottom:60px}.l-footer .l-footer__nav-items{display:block}@media screen and (max-width:770px){.l-footer .l-footer__nav-items{display:none}}.l-footer .l-footer__nav-mobile{display:none}@media screen and (max-width:770px){.l-footer .l-footer__nav-mobile{display:block;text-align:center}}.l-footer .l-footer__nav-mobile a{font-size:20px;line-height:28px;color:#f5a802;text-transform:uppercase;font-family:Poppins Bold;text-decoration:none}.l-footer .l-footer__social-icons{text-align:right}@media screen and (max-width:770px){.l-footer .l-footer__social-icons{text-align:center}}@media screen and (max-width:770px){.l-footer .l-footer__wrapper{padding-bottom:60px}}.l-footer .l-footer__wrapper-text p{color:#fff;font-family:Poppins Bold;font-size:16px;line-height:25px}.l-footer .l-footer__wrapper-text p:first-of-type{padding-bottom:15px}.l-header{border-bottom:2px solid #00002d;position:relative;z-index:10}@media screen and (max-width:770px){.l-header{border-bottom:none}}.l-header .o-container-lg{max-width:1200px;width:100%;height:auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 auto}@media screen and (max-width:1250px){.l-header .o-container-lg{max-width:900px}}@media screen and (max-width:1024px){.l-header .o-container-lg{max-width:700px}}@media screen and (max-width:770px){.l-header .o-container-lg{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.l-header .o-container-lg.center-nav{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;top:25px;z-index:1;max-width:100%}.l-header .o-container-lg.center-nav .c-navigation__items-wrapper{text-align:center}.l-header .o-container-lg.center-nav .c-navigation__items-wrapper ul li a{color:#fff}@media screen and (max-width:770px){.l-header .o-container-lg.center-nav .c-navigation__items-wrapper ul li a{color:#252525}}.l-header .o-container-lg .c-navigation__logo__wrapper{width:50%}@media screen and (max-width:770px){.l-header .o-container-lg .c-navigation__logo__wrapper{width:100%;text-align:center}}.l-header .o-container-lg .c-navigation__logo__wrapper .c-navigation__inner{margin:15px 0}@media screen and (max-width:770px){.l-header .o-container-lg .c-navigation__logo__wrapper .c-navigation__inner{margin:70px 0 15px}}.l-header .o-container-lg .c-navigation__logo__wrapper .c-navigation__logo-image{max-width:335px;max-height:60px;width:100%;height:auto;-o-object-fit:cover;object-fit:cover;vertical-align:-webkit-baseline-middle;margin-left:-7px}.l-header .o-container-lg .c-navigation__items{-ms-flex-item-align:center;align-self:center;width:50%}@media screen and (max-width:770px){.l-header .o-container-lg .c-navigation__items{width:100%}}.l-header .o-container-lg .c-navigation__items-wrapper{text-align:right}.l-header .o-container-lg .c-navigation__items-wrapper #e-menu-icon{display:none;width:48px;height:30px;background-image:url(/dist/public/assets/images/Icons/Hamburger-48px.png);background-position:50%;background-repeat:no-repeat;background-size:cover;margin:0 auto}@media screen and (max-width:770px){.l-header .o-container-lg .c-navigation__items-wrapper #e-menu-icon{display:block}}.l-header .o-container-lg .c-navigation__items-wrapper .e-mobile-text{font-family:Poppins Bold;color:#252525;position:fixed;top:57px;left:38px;z-index:5;font-size:35px;line-height:45px;letter-spacing:1.09px}.l-header .o-container-lg .c-navigation__items-wrapper .e-mobile-close{z-index:5;content:"";background-image:url(/dist/public/assets/images/Icons/Close-30px.svg);background-size:cover;background-position:50%;height:30px;width:30px;position:fixed;top:68px;right:38px}.l-header .o-container-lg .c-navigation__items-wrapper .e-mobile-logo{display:none}@media screen and (max-width:770px){.l-header .o-container-lg .c-navigation__items-wrapper .e-mobile-logo{display:block;position:absolute;bottom:60px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}}.l-header .o-container-lg .c-navigation__items-wrapper .e-mobile-logo img{width:256px;height:38px}.l-header .o-container-lg .c-navigation__items-wrapper ul{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:770px){.l-header .o-container-lg .c-navigation__items-wrapper ul{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:fixed;background:#fff;right:0;top:0;width:100%;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translateX(100%);transform:translateX(100%);-webkit-transition:-webkit-transform .5s ease-in;transition:-webkit-transform .5s ease-in;transition:transform .5s ease-in;transition:transform .5s ease-in,-webkit-transform .5s ease-in}.l-header .o-container-lg .c-navigation__items-wrapper ul.open{margin:0;overflow-x:auto;z-index:3;-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:transform .5s ease-in;transition:transform .5s ease-in}}@media screen and (max-width:770px){.l-header .o-container-lg .c-navigation__items-wrapper ul li{margin-bottom:7%}.l-header .o-container-lg .c-navigation__items-wrapper ul li:last-of-type{margin-bottom:0}}.l-header .o-container-lg .c-navigation__items-wrapper .c-navigation__item{color:#252525;font-family:Poppins Bold;font-size:16px;line-height:28px;text-decoration:none;text-transform:uppercase;margin-left:8.9%}@media screen and (max-width:1024px){.l-header .o-container-lg .c-navigation__items-wrapper .c-navigation__item{font-size:14px}}@media screen and (max-width:770px){.l-header .o-container-lg .c-navigation__items-wrapper .c-navigation__item{font-size:16px}}.l-header .o-container-lg .c-navigation__items-wrapper .c-navigation__item:first-of-type{margin-left:0}.l-header .o-container-lg .c-navigation__items-wrapper .c-navigation__item.active-menu,.l-header .o-container-lg .c-navigation__items-wrapper .c-navigation__item:active,.l-header .o-container-lg .c-navigation__items-wrapper .c-navigation__item:hover{color:#f5a802}.l-header .c-navigation.c-mobile-nav{display:none}@media screen and (max-width:770px){.l-header .c-navigation.c-mobile-nav{display:-webkit-box;display:-ms-flexbox;display:flex}}.l-header .c-navigation.c-desktop-nav{display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (max-width:770px){.l-header .c-navigation.c-desktop-nav{display:none}}.grecaptcha-badge{left:-9000px}.o-row--padding{padding:120px 0}@media screen and (max-width:770px){.o-row--padding{padding:70px 0 120px}}.o-row--padding-top{padding:120px 0 0}@media screen and (max-width:770px){.o-row--padding-top{padding:70px 0 0}}.o-container-lg{max-width:1200px;width:100%;height:auto;margin:0 auto}@media screen and (max-width:1250px){.o-container-lg{max-width:900px}}@media screen and (max-width:1024px){.o-container-lg{max-width:700px}}@media screen and (max-width:770px){.o-container-lg{padding:0 40px}}.s-section--blue{background-color:#00002d}.c-athlete-info{margin-bottom:40px}.c-athlete-info__wrapper{border:2px solid #7c7c7c;padding:40px}.c-athlete-info__details{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;border-bottom:1px solid #979797;padding-bottom:10px}@media screen and (max-width:1024px){.c-athlete-info__details-name{width:100%;padding-bottom:40px}}.c-athlete-info__details-box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media screen and (max-width:1024px){.c-athlete-info__details-box{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}.c-athlete-info__details-box-button{content:"";background-position:50%!important;background-repeat:no-repeat!important;background-size:cover!important;width:48px;height:48px;display:inline-block;vertical-align:middle;margin-left:9px;position:relative;z-index:1}.c-athlete-info__details-box-button:after{content:"";background-image:url(/dist/public/assets/images/Icons/Number.svg);background-position:50%;background-repeat:no-repeat;background-size:cover;width:12px;height:12px;position:absolute;right:7px;top:10px;opacity:0}.c-athlete-info__details-box-button-library{content:"";background-position:50%!important;background-repeat:no-repeat!important;background-size:cover!important;width:48px;height:48px;display:inline-block;vertical-align:middle;margin-left:9px;position:relative;z-index:1}.c-athlete-info__details-box-button-library:after{content:"";background-image:url(/dist/public/assets/images/Icons/Number.svg);background-position:50%;background-repeat:no-repeat;background-size:cover;width:12px;height:12px;position:absolute;right:7px;top:10px;opacity:0}.c-athlete-info__details-box-button-library.changed:after{opacity:1}.c-athlete-info__details-box-button-schedule{content:"";background-position:50%!important;background-repeat:no-repeat!important;background-size:cover!important;width:48px;height:48px;display:inline-block;vertical-align:middle;margin-left:9px;position:relative;z-index:1}.c-athlete-info__details-box-button-schedule:after{content:"";background-image:url(/dist/public/assets/images/Icons/Number.svg);background-position:50%;background-repeat:no-repeat;background-size:cover;width:12px;height:12px;position:absolute;right:7px;top:10px;opacity:0}.c-athlete-info__details-box-button--off:after,.c-athlete-info__details-box-button-schedule.changed:after{opacity:1}.c-athlete-info__details h5{font-size:16px;line-height:25px;padding-bottom:17px}.c-athlete-info__details h4,.c-athlete-info__details h5{font-family:Poppins Bold;color:#252525;text-align:center}.c-athlete-info__details h4{font-size:48px;line-height:72px}@media screen and (max-width:770px){.c-athlete-info__details h4{font-size:28px;line-height:40px}}.c-athlete-info__details h4 span{font-size:24px}.c-athlete-info__details h6{font-size:28px;line-height:42px;font-family:Poppins Bold;letter-spacing:.35px;color:#252525}.c-athlete-info__details a,.c-athlete-info__details p{font-family:Poppins Regular;font-size:16px;line-height:25px;color:#7c7c7c;letter-spacing:.2px;text-decoration:none}.c-athlete-info__images{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;padding:35px 0;text-align:center;position:relative}@media screen and (max-width:1250px){.c-athlete-info__images{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:770px){.c-athlete-info__images{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.c-athlete-info__images img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%;border-radius:10px}.c-athlete-info__images-image{width:100%;height:auto;max-width:228px;max-height:228px;cursor:pointer;opacity:1;-webkit-transition:.5s ease;transition:.5s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;position:relative;margin-right:68px}.c-athlete-info__images-image:last-of-type{margin-right:0}@media screen and (max-width:1250px){.c-athlete-info__images-image{margin-right:0;margin-bottom:20px}}@media screen and (max-width:770px){.c-athlete-info__images-image{margin-right:0}}.c-athlete-info__images-image:hover .c-athlete-info__images-image__overlay{opacity:1}.c-athlete-info__images-image__overlay{-webkit-transition:.5s ease;transition:.5s ease;opacity:0;position:absolute;top:0;left:0;text-align:center;background-color:rgba(0,0,45,.6);width:100%;height:100%;border-radius:10px}.c-athlete-info__images-image__overlay-text{color:#fff;font-size:16px;line-height:26px;font-family:Poppins Regular;padding:16px 32px;position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.c-athlete-info__images-image__overlay-text:before{content:"";background-image:url(/dist/assets/public/images/Icons/View-24px.svg);background-position:50%;background-size:cover;background-repeat:no-repeat;width:24px;height:14px;display:block;margin:0 auto 30px}.c-athlete-info__download{text-align:center}.c-athlete-info__download a{font-family:Poppins Bold;font-size:16px;line-height:25px;color:#f5a802;text-decoration:none;text-transform:uppercase}.c-athlete-info__download a:hover{color:#00002d}.athlete-bodyscore{margin-bottom:30px}.athlete-bodyscore .o-container-lg .c-score--bx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:20px 25px;background-color:#00002d;width:50%;margin-left:auto}@media screen and (max-width:1250px){.athlete-bodyscore .o-container-lg .c-score--bx{width:60%}}@media screen and (max-width:1024px){.athlete-bodyscore .o-container-lg .c-score--bx{width:80%}}@media screen and (max-width:770px){.athlete-bodyscore .o-container-lg .c-score--bx{width:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.athlete-bodyscore .o-container-lg .c-score--bx h6{font-family:Poppins Bold;font-size:28px;line-height:46px;letter-spacing:.35px;text-align:left;color:#fff;-ms-flex-item-align:center;align-self:center}@media screen and (max-width:770px){.athlete-bodyscore .o-container-lg .c-score--bx h6{margin-bottom:10px;text-align:center;font-size:22px;line-height:35px}}.athlete-bodyscore .e-btn-score{display:inline-block;padding:10px 30px;background-color:#f5a802;color:#fff;text-decoration:none;text-transform:uppercase;font-family:Poppins Bold;font-size:28px;line-height:46px;letter-spacing:.35px;text-align:center}@media screen and (max-width:770px){.athlete-bodyscore .e-btn-score{max-width:250px;margin:0 auto}}.athlete-bodyscore .e-btn-score:hover{background-color:#fff;color:#00002d}.athlete-bodyscore .e-btn-score--text{text-decoration:none;width:auto;height:100%}.c-video-title__wrapper h3{font-family:Poppins Bold;font-size:28px;text-transform:uppercase;line-height:46px;letter-spacing:.35px;text-align:left;color:#252525;padding-bottom:41px}.c-videos-buttons{border-bottom:2px solid #c6c6c6;padding-bottom:20px}.c-videos-buttons__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.c-videos-buttons-both{border:2px solid #f5a802}@media screen and (max-width:770px){.c-videos-buttons-both{width:50%}}.c-videos-buttons-both button{-webkit-box-sizing:border-box;box-sizing:border-box;width:213px;height:64px;display:block;font-family:Poppins Regular;font-size:16px;line-height:25px;color:#252525;text-align:center;outline:none;cursor:pointer;border:none;background:transparent}@media screen and (max-width:770px){.c-videos-buttons-both button{width:100%}}.c-videos-buttons-both button:hover{border:2px solid #f5a802}.c-videos-buttons--active button,.c-videos-buttons-both button:hover{background-color:#f5a802;color:#f2f2f2}.c-videos{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;flex-wrap:wrap;margin-top:40px;margin-bottom:100px}.c-videos.js-stretch{display:none}.c-videos.js-stretch.active{display:-webkit-box;display:-ms-flexbox;display:flex}.c-videos.js-strenghten{display:none}.c-videos.js-strenghten.active{display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (max-width:1024px){.c-videos{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.c-videos-box{border:2px solid #7c7c7c;border-radius:10px;max-width:100%;max-height:100%;width:364px;height:205px;margin-bottom:40px;display:none}.c-videos-box.is-active,.c-videos-box.is-customactive{display:block}.c-videos-box--hide{opacity:0;height:0}.c-videos-box_video-upload video{border-radius:10px;outline:none;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.c-videos-box iframe{border-radius:8px;width:100%;height:100%;-o-object-fit:fill;object-fit:fill}.c-videos-box[hidden]{display:none!important}.youtube{background-color:#000;position:relative;overflow:hidden;cursor:pointer}.youtube[hidden]{display:none!important}.youtube img{position:absolute;width:100%;top:-16.84%;left:0;cursor:pointer}@media screen and (max-width:770px){.youtube img{top:0;height:100%;-o-object-fit:cover;object-fit:cover}}.youtube .play-button{width:90px;height:60px;background-color:#333;-webkit-box-shadow:0 0 30px rgba(0,0,0,.6);box-shadow:0 0 30px rgba(0,0,0,.6);z-index:1;opacity:.8;border-radius:6px;cursor:pointer}.youtube .play-button,.youtube .play-button:before{position:absolute;top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.youtube .play-button:before{content:"";border-color:transparent transparent transparent #fff;border-style:solid;border-width:15px 0 15px 26px}.youtube iframe{height:100%;width:100%}.analysis .basic-info,.analysis .client-photos,.analysis .movement-analysis{margin-bottom:90px}.analysis .publish{margin-bottom:140px}.analysis .c-title-text__wrapper h3{font-family:Poppins Bold;font-size:28px;line-height:42px;color:#252525;padding-bottom:40px;letter-spacing:.32px;text-transform:uppercase}.analysis .c-input-analysis__form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}@media screen and (max-width:1024px){.analysis .c-input-analysis__form{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.analysis .c-input-analysis__input1 fieldset{display:inline-block}@media screen and (max-width:1024px){.analysis .c-input-analysis__input1 fieldset{display:block}}.analysis .c-input-analysis__input1 input{width:288px;max-width:100%;height:64px;margin-bottom:16px;padding-left:30px;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid #7c7c7c;font-size:16px;line-height:22px;font-family:Open Sans;color:#00002d}@media screen and (max-width:1024px){.analysis .c-input-analysis__input1 input{width:100%}}.analysis .c-input-analysis__input1 input:hover{border-color:#00002d}.analysis .c-input-analysis__input1 input:active,.analysis .c-input-analysis__input1 input:focus{border-color:#f5a802}.analysis .c-input-analysis__input1 input:focus{outline:none}.analysis .c-input-analysis__input2 fieldset{display:inline-block}@media screen and (max-width:1024px){.analysis .c-input-analysis__input2 fieldset{display:block}}.analysis .c-input-analysis__input2 input{width:288px;max-width:100%;height:64px;margin-bottom:16px;padding-left:30px;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid #7c7c7c;font-size:16px;line-height:22px;font-family:Open Sans;color:#00002d}@media screen and (max-width:1024px){.analysis .c-input-analysis__input2 input{width:100%}}.analysis .c-input-analysis__input2 input:hover{border-color:#00002d}.analysis .c-input-analysis__input2 input:active,.analysis .c-input-analysis__input2 input:focus{border-color:#f5a802}.analysis .c-input-analysis__input2 input:focus{outline:none}.analysis .c-input-analysis__input2 option{width:288px!important;max-width:100%;height:64px;margin-bottom:16px;padding-left:30px;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid #7c7c7c;font-size:16px;line-height:22px;font-family:Open Sans;color:#00002d}@media screen and (max-width:1024px){.analysis .c-input-analysis__input2 option{width:100%}}.analysis .c-input-analysis__input2 option:hover{border-color:#00002d}.analysis .c-input-analysis__input2 option:active,.analysis .c-input-analysis__input2 option:focus{border-color:#f5a802}.analysis .c-input-analysis__input2 option:focus{outline:none}.analysis .c-input-analysis__subtitle p{font-family:Open Sans!important;padding-bottom:10px}.analysis .c-publish-text{max-width:896px;width:100%;background-color:#00002d;margin:0 auto;height:auto}.analysis .c-publish-text__wrap{padding:60px 0;text-align:center}.analysis .c-publish-text__wrap p{font-family:Poppins Regular;font-size:16px;line-height:26px;color:#fff;text-align:center;padding:0 50px 30px}.analysis .c-publish-text__wrap a input[type=submit]{font-family:Poppins Bold;font-size:16px;line-height:26px;color:#fff;text-align:center;text-decoration:none;text-transform:uppercase;padding:24px 20px;background-color:#f5a802;border:2px solid #f5a802;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;cursor:pointer}.analysis .c-publish-text__wrap a input[type=submit]:hover{color:#f5a802;background-color:#fff}.c-client-photos{border:2px solid #7c7c7c}.c-client-photos__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.c-client-photos__img{height:228px;width:228px}.body-image-upload.dropzone.dz-clickable.dz-started{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}@media screen and (max-width:1250px){.body-image-upload.dropzone.dz-clickable.dz-started{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media screen and (max-width:770px){.body-image-upload.dropzone.dz-clickable.dz-started{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.dropzone .dz-preview{margin-right:54px}@media screen and (max-width:1250px){.dropzone .dz-preview{margin-right:16px}}.dropzone .dz-preview:last-of-type{margin-right:16px}.dropzone .dz-preview:hover .dz-image img{-webkit-transform:unset;transform:unset;-webkit-filter:unset;filter:unset}.dropzone .dz-preview .dz-image{width:228px;height:228px;border-radius:10px}.dropzone .dz-preview:hover .dz-image:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,45,.6)}.dz-default.dz-message{content:"";background:url(/dist/public/assets/images/Icons/Upload.png);background-repeat:no-repeat;background-position:50%;background-size:cover;width:228px;height:228px;position:relative;margin:16px}.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-error-mark svg,.dz-default.dz-message span{display:none}.dropzone .dz-preview .dz-remove{display:block;position:absolute;z-index:500;opacity:0;top:-9px;left:95%;margin-left:0;margin-top:0;cursor:pointer;content:"";background-position:50%;background:url(/dist/public/assets/images/Icons/Delete.svg);background-repeat:no-repeat;background-size:cover;width:24px;height:24px;font-size:0}.dropzone .dz-preview:hover .dz-remove{opacity:1}.btn-file span,.file-footer-caption,.file-thumb-progress,.file-thumbnail-footer,.fileinput-remove{display:none}.file-preview{position:relative}.file-preview-thumbnails .file-preview-frame{margin-top:16px}.file-preview-thumbnails{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:770px){.file-preview-thumbnails{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.file-preview-frame .file-preview-image{border-radius:10px;-o-object-fit:cover;object-fit:cover}.fileinput-remove{display:none;position:absolute;z-index:500;top:-9px;right:0;margin-left:0;margin-top:0;cursor:pointer;content:"";background-position:50%;background:url(/dist/public/assets/images/Icons/Delete.svg);background-repeat:no-repeat;background-size:cover;width:24px;height:24px;font-size:0;border:none}.file-preview-frame:hover .kv-preview-thumb:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,45,.6)}.filepond{content:"";background:url(/dist/public/assets/images/Icons/Upload.png);background-repeat:no-repeat;background-position:50%;background-size:cover;width:228px;height:228px;position:relative;margin:16px;padding:228px 0 0;cursor:pointer}.filepond:active,.filepond:focus{outline:none}#kvFileinputModal{display:none}.c-form p{text-align:center;padding-bottom:36px;font-size:16px;line-height:26px;color:#252525;letter-spacing:.2px;font-family:Poppins Regular}.c-form__form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.c-form__form-forgot{padding-top:36px}.c-form__form-forgot a{text-decoration:none;color:#252525}.c-form__form-forgot a:hover{color:#f5a802}.c-form__form input{width:288px;max-width:100%;height:64px;margin-bottom:16px;padding-left:30px;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid #7c7c7c;font-size:16px;line-height:22px;font-family:Open Sans;color:#00002d}@media screen and (max-width:770px){.c-form__form input{width:100%}}.c-form__form input:hover{border-color:#00002d}.c-form__form input:active,.c-form__form input:focus{border-color:#f5a802}.c-form__form input:focus{outline:none}.c-form__form .error{font-size:16px;line-height:26px;color:#252525;letter-spacing:.2px;font-family:Poppins Regular;color:#f50202}.c-form__form .submit{padding-left:0;margin-bottom:0;background-color:#f5a802;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;width:199px;height:64px;margin-top:50px;font-size:16px;line-height:26px;font-family:Poppins Bold;text-transform:uppercase;color:#f2f2f2;border:2px solid #f5a802;cursor:pointer}.c-form__form .submit:hover{border:2px solid #f5a802;background-color:#fff;color:#f5a802}body{font-family:Helvetica,sans-serif}.rangeslider-wrap{padding-top:100px}.rangeslider{position:relative;height:4px;border-radius:5px;width:100%;background-color:grey}.rangeslider__handle{-webkit-transition:background-color .2s;transition:background-color .2s;width:20px;height:20px;border-radius:100%;-ms-touch-action:pan-y;touch-action:pan-y;cursor:pointer;display:inline-block;z-index:3;top:-8px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.5),inset 0 0 0 2px #fff;box-shadow:0 1px 3px rgba(0,0,0,.5),inset 0 0 0 2px #fff}.rangeslider__handle,.rangeslider__handle__value{-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#09f;position:absolute}.rangeslider__handle__value{-webkit-transition:background-color .2s,-webkit-box-shadow .1s,-webkit-transform .1s;transition:background-color .2s,-webkit-box-shadow .1s,-webkit-transform .1s;transition:background-color .2s,box-shadow .1s,transform .1s;transition:background-color .2s,box-shadow .1s,transform .1s,-webkit-box-shadow .1s,-webkit-transform .1s;width:90px;text-align:center;padding:10px;border-radius:5px;color:#fff;left:-35px;top:-55px;white-space:nowrap;border-top:1px solid #007acc;-webkit-box-shadow:0 -4px 1px rgba(0,0,0,.07),0 -5px 20px rgba(0,0,0,.3);box-shadow:0 -4px 1px rgba(0,0,0,.07),0 -5px 20px rgba(0,0,0,.3)}.rangeslider__handle__value:before{-webkit-transition:border-top-color .2s;transition:border-top-color .2s;position:absolute;bottom:-10px;left:calc(50% - 10px);content:"";width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #09f}.rangeslider__handle__value:after{content:" cm"}.rangeslider__fill{position:absolute;top:0;z-index:1;height:100%;background-color:#09f;border-radius:5px}.rangeslider__labels{position:absolute;width:100%;z-index:2;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.rangeslider__labels__label{font-size:.75em;position:relative;padding-top:15px;color:grey}.rangeslider__labels__label:before{position:absolute;top:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);content:"";width:1px;height:9px;border-radius:1px;background-color:hsla(0,0%,50.2%,.5)}.rangeslider__labels__label:first-child:before,.rangeslider__labels__label:last-child:before{height:12px;width:2px}.rangeslider__labels__label:first-child:before{background-color:#09f}.rangeslider__labels__label:last-child:before{background-color:grey}.rangeslider__labels__label:first-child{-webkit-transform:translateX(-48%);transform:translateX(-48%)}.rangeslider__labels__label:last-child{-webkit-transform:translateX(48%);transform:translateX(48%)}.rangeslider.rangeslider--active .rangeslider__handle,.rangeslider.rangeslider--active .rangeslider__handle *{background-color:#33adff}.rangeslider.rangeslider--active .rangeslider__handle :before{border-top-color:#33adff}.rangeslider.rangeslider--active .rangeslider__handle__value{-webkit-transform:translateY(-5px);transform:translateY(-5px);-webkit-box-shadow:0 -3px 2px rgba(0,0,0,.04),0 -9px 25px rgba(0,0,0,.15);box-shadow:0 -3px 2px rgba(0,0,0,.04),0 -9px 25px rgba(0,0,0,.15)}
