/**
* Swiper 4.3.3
* Most modern mobile touch slider and framework with hardware accelerated transitions
* http://www.idangero.us/swiper/
*
* Copyright 2014-2018 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: June 5, 2018
*/
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-invisible-blank-slide {
  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: url(../../images/icons/arrow-achievement.svg);
  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: url(../../images/icons/arrow-achievement.svg); }

.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: url(../../images/icons/arrow-achievement.svg); }

.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; }

.swiper-button-next, .swiper-button-prev {
  top: 50%;
  width: 46px;
  height: 53px;
  background-size: cover !important; }
  @media (max-width: 1200px) {
    .swiper-button-next, .swiper-button-prev {
      width: 20px;
      height: 24px; } }

.achievement_display .swiper-button-next, .achievement_display .swiper-button-prev {
  width: 26px;
  height: 24px; }

.swiper-button-prev {
  left: -1.5%;
  z-index: 50;
  background: url(../../images/icons/arrow-slider.svg); }
  .swiper-button-prev.project {
    left: -56px; }
    @media (max-width: 1200px) {
      .swiper-button-prev.project {
        left: -27px; } }

.achievement_display .swiper-button-prev,
.achievement_display .swiper-button-next {
  background-size: 26px 24px !important;
  top: unset;
  bottom: 0; }

.achievement_display .swiper-button-prev {
  left: 0; }

.achievement_display .swiper-button-next {
  right: 0; }

.swiper-button-next {
  right: -1.5%;
  z-index: 50;
  background: url(../../images/icons/arrow-slider.svg);
  transform: rotate(180deg); }
  .swiper-button-next.project {
    right: -56px; }
    @media (max-width: 1200px) {
      .swiper-button-next.project {
        right: -27px; } }

.swiper-container-bijoux {
  margin: 0; }

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

#ppup_car_main .swiper-slide {
  width: 100% !important; }

.overhidden {
  overflow: hidden; }

body, html {
  border: 0;
  font: inherit;
  vertical-align: baseline; }

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, 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, 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, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, img, menu, nav, section {
  display: block; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  margin: 0;
  padding: 0; }

a {
  text-decoration: none; }

img {
  width: 100%; }

img, svg {
  max-width: 100%; }

.brd-none, button {
  border-style: none; }

.brd {
  border: solid 1px #000; }

.brd-bot {
  border-bottom: solid 1px #000; }

.brd-top {
  border-top: solid 1px #000; }

.brd-right {
  border-right: solid 1px #000; }

.brd-left {
  border-left: solid 1px #000; }

.brd-w-1 {
  border-width: 1px; }

.brd-w-2 {
  border-width: 2px; }

.brd-w-3 {
  border-width: 3px; }

.brd-w-4 {
  border-width: 4px; }

.brd-w-5 {
  border-width: 5px; }

.brd-w-6 {
  border-width: 6px; }

.brd-w-7 {
  border-width: 7px; }

.brd-w-8 {
  border-width: 8px; }

.brd-w-9 {
  border-width: 9px; }

.brd-w-10 {
  border-width: 10px; }

.brd-clr-black {
  border-color: #000; }

.brd-clr-white {
  border-color: #fff; }

.brd-clr-darkgrey, .brd-clr-lightgrey {
  border-color: #eee; }

.brd-clr-grey {
  border-color: #666; }

.brd-radius-50 {
  border-radius: 50%; }

.brd-radius-100 {
  border-radius: 100%; }

.clr-white {
  color: #fff; }

.clr-lightgrey {
  color: #eee; }

.clr-grey {
  color: #666; }

.clr-darkgrey {
  color: #333; }

.clr-black {
  color: #000; }

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

.bg-lightgrey {
  background-color: #eee; }

.bg-grey {
  background-color: #666; }

.bg-darkgrey {
  background-color: #333; }

.bg-black {
  background-color: #000; }

.pointer {
  cursor: pointer; }

.grab {
  cursor: grab; }

.not-allowed {
  cursor: not-allowed; }

.fit-cover {
  object-fit: cover; }

.fit-contain {
  object-fit: contain; }

.fit-none {
  object-fit: none; }

.fit-top-left {
  object-position: left top; }

.fit-top-right {
  object-position: right top; }

.fit-top-center {
  object-position: center top; }

.fit-bottom-left {
  object-position: left bottom; }

.fit-bottom-right {
  object-position: right bottom; }

.fit-bottom-center {
  object-position: center bottom; }

.fit-center-center {
  object-position: center center; }

.bg-cover {
  background-size: cover; }

.bg-no-repeat {
  background-repeat: no-repeat; }

.bg-fixed {
  background-attachment: fixed; }

.sctn-container {
  max-width: calc(100% - 6.5em); }

@media only screen and (max-width: 768px) {
  .sctn-container {
    max-width: calc(100% - 4.5em); } }

.flx {
  display: flex; }

.inline-flx {
  display: inline-flex; }

.block {
  display: block; }

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

.none {
  display: none; }

.flx-col {
  flex-direction: column; }

.flx-col-rev {
  flex-direction: column-reverse; }

.flx-row {
  flex-direction: row; }

.flx-row-rev {
  flex-direction: row-reverse; }

.flx-wrap {
  flex-wrap: wrap; }

.flx-no-wrap {
  flex-wrap: nowrap; }

.flx-wrap-rev {
  flex-wrap: wrap-reverse; }

.just-center {
  justify-content: center; }

.just-start {
  justify-content: flex-start; }

.just-end {
  justify-content: flex-end; }

.just-bet {
  justify-content: space-between; }

.just-aro {
  justify-content: space-around; }

.ali-center {
  align-items: center; }

.ali-start {
  align-items: flex-start; }

.ali-end {
  align-items: flex-end; }

.self-mid {
  margin-left: auto;
  margin-right: auto; }

.self-center {
  margin: auto; }

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

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

.self-bot {
  margin-top: auto; }

.self-top {
  margin-bottom: auto; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.o-100 {
  opacity: 1; }

.o-90 {
  opacity: .9; }

.o-80 {
  opacity: .8; }

.o-70 {
  opacity: .7; }

.o-60 {
  opacity: .6; }

.o-50 {
  opacity: .5; }

.o-40 {
  opacity: .4; }

.o-30 {
  opacity: .3; }

.o-20 {
  opacity: .2; }

.o-10 {
  opacity: .1; }

.o-0 {
  opacity: 0; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.fixed {
  position: fixed; }

.top-0 {
  top: 0; }

.top-5 {
  top: 5%; }

.top-10 {
  top: 10%; }

.top-20 {
  top: 20%; }

.top-30 {
  top: 30%; }

.top-40 {
  top: 40%; }

.top-50 {
  top: 50%; }

.top-60 {
  top: 60%; }

.top-70 {
  top: 70%; }

.top-80 {
  top: 80%; }

.top-90 {
  top: 90%; }

.top-100 {
  top: 100%; }

.bottom-0 {
  bottom: 0; }

.bottom-5 {
  bottom: 5%; }

.bottom-10 {
  bottom: 10%; }

.bottom-20 {
  bottom: 20%; }

.bottom-30 {
  bottom: 30%; }

.bottom-40 {
  bottom: 40%; }

.bottom-50 {
  bottom: 50%; }

.bottom-60 {
  bottom: 60%; }

.bottom-70 {
  bottom: 70%; }

.bottom-80 {
  bottom: 80%; }

.bottom-90 {
  bottom: 90%; }

.bottom-100 {
  bottom: 100%; }

.left-0 {
  left: 0; }

.left-5 {
  left: 5%; }

.left-10 {
  left: 10%; }

.left-20 {
  left: 20%; }

.left-30 {
  left: 30%; }

.left-40 {
  left: 40%; }

.left-50 {
  left: 50%; }

.left-60 {
  left: 60%; }

.left-70 {
  left: 70%; }

.left-80 {
  left: 80%; }

.left-90 {
  left: 90%; }

.left-100 {
  left: 100%; }

.right-0 {
  right: 0; }

.right-5 {
  right: 5%; }

.right-10 {
  right: 10%; }

.right-20 {
  right: 20%; }

.right-30 {
  right: 30%; }

.right-40 {
  right: 40%; }

.right-50 {
  right: 50%; }

.right-60 {
  right: 60%; }

.right-70 {
  right: 70%; }

.right-80 {
  right: 80%; }

.right-90 {
  right: 90%; }

.right-100 {
  right: 100%; }

.z-0 {
  z-index: 0; }

.z-1 {
  z-index: 1; }

.z-2 {
  z-index: 2; }

.z-3 {
  z-index: 3; }

.z-4 {
  z-index: 4; }

.z-5 {
  z-index: 5; }

.z-6 {
  z-index: 6; }

.z-7 {
  z-index: 7; }

.z-8 {
  z-index: 8; }

.z-9 {
  z-index: 9; }

.z-10 {
  z-index: 10; }

.z-999 {
  z-index: 999; }

.z-9999 {
  z-index: 9999; }

.w-5 {
  width: 5%; }

.w-10 {
  width: 10%; }

.w-15 {
  width: 15%; }

.w-20 {
  width: 20%; }

.w-25, .w-quarter {
  width: 25%; }

.w-30 {
  width: 30%; }

.w-35 {
  width: 35%; }

.w-40 {
  width: 40%; }

.w-45 {
  width: 45%; }

.w-50, .w-half {
  width: 50%; }

.w-55 {
  width: 55%; }

.w-60 {
  width: 60%; }

.w-65 {
  width: 65%; }

.w-70 {
  width: 70%; }

.w-75, .w-three-quarters {
  width: 75%; }

.w-80 {
  width: 80%; }

.w-85 {
  width: 85%; }

.w-90 {
  width: 90%; }

.w-95 {
  width: 95%; }

.w-100 {
  width: 100%; }

.w-third {
  width: calc(100%/3); }

.w-two-thirds {
  width: calc(100%/1.5); }

.w-auto {
  width: auto; }

.w-max-5 {
  max-width: 5%; }

.w-max-10 {
  max-width: 10%; }

.w-max-15 {
  max-width: 15%; }

.w-max-20 {
  max-width: 20%; }

.w-max-25 {
  max-width: 25%; }

.w-max-30 {
  max-width: 30%; }

.w-max-35 {
  max-width: 35%; }

.w-max-40 {
  max-width: 40%; }

.w-max-45 {
  max-width: 45%; }

.w-max-50 {
  max-width: 50%; }

.w-max-55 {
  max-width: 55%; }

.w-max-60 {
  max-width: 60%; }

.w-max-65 {
  max-width: 65%; }

.w-max-70 {
  max-width: 70%; }

.w-max-75 {
  max-width: 75%; }

.w-max-80 {
  max-width: 80%; }

.w-max-85 {
  max-width: 85%; }

.w-max-90 {
  max-width: 90%; }

.w-max-95 {
  max-width: 95%; }

.w-max-100 {
  max-width: 100%; }

.h-25 {
  height: 25%; }

.h-50 {
  height: 50%; }

.h-75 {
  height: 75%; }

.h-100, body, html {
  height: 100%; }

.vh-25 {
  height: 25vh; }

.vh-50 {
  height: 50vh; }

.vh-75 {
  height: 75vh; }

.vh-100 {
  height: 100vh; }

.h-auto {
  height: auto; }

.h-min-vh-25 {
  min-height: 25vh; }

.h-min-vh-50 {
  min-height: 50vh; }

.h-min-vh-75 {
  min-height: 75vh; }

.h-min-vh-100 {
  min-height: 100vh; }

.w-px-10 {
  width: 10px; }

.w-px-20 {
  width: 20px; }

.w-px-30 {
  width: 30px; }

.w-px-40 {
  width: 40px; }

.w-px-50 {
  width: 50px; }

.w-px-60 {
  width: 60px; }

.w-px-70 {
  width: 70px; }

.w-px-80 {
  width: 80px; }

.w-px-90 {
  width: 90px; }

.w-px-100 {
  width: 100px; }

.w-px-200 {
  width: 200px; }

.w-px-300 {
  width: 300px; }

.w-px-400 {
  width: 400px; }

.w-px-500 {
  width: 500px; }

.w-px-600 {
  width: 600px; }

.w-px-700 {
  width: 700px; }

.w-px-800 {
  width: 800px; }

.w-px-900 {
  width: 900px; }

.w-px-1000 {
  width: 1000px; }

.h-px-10 {
  height: 10px; }

.h-px-20 {
  height: 20px; }

.h-px-30 {
  height: 30px; }

.h-px-40 {
  height: 40px; }

.h-px-50 {
  height: 50px; }

.h-px-60 {
  height: 60px; }

.h-px-70 {
  height: 70px; }

.h-px-80 {
  height: 80px; }

.h-px-90 {
  height: 90px; }

.h-px-100 {
  height: 100px; }

.h-px-200 {
  height: 200px; }

.h-px-300 {
  height: 300px; }

.h-px-400 {
  height: 400px; }

.h-px-500 {
  height: 500px; }

.h-px-600 {
  height: 600px; }

.h-px-700 {
  height: 700px; }

.h-px-800 {
  height: 800px; }

.h-px-900 {
  height: 900px; }

.h-px-1000 {
  height: 1000px; }

.m-none {
  margin: 0; }

.m-auto {
  margin: auto; }

.m-xxs {
  margin: .25rem; }

.m-xs {
  margin: .5rem; }

.m-sml {
  margin: 1rem; }

.m-mdm {
  margin: 2rem; }

.m-lrg {
  margin: 4rem; }

.m-xl {
  margin: 6rem; }

.m-xxl {
  margin: 8rem; }

.m-xxxl {
  margin: 10rem; }

.mt-none {
  margin-top: 0; }

.mt-auto {
  margin-top: auto; }

.mt-xxs {
  margin-top: .25rem; }

.mt-xs {
  margin-top: .5rem; }

.mt-sml {
  margin-top: 1rem; }

.mt-mdm {
  margin-top: 2rem; }

.mt-lrg {
  margin-top: 4rem; }

.mt-xl {
  margin-top: 6rem; }

.mt-xxl {
  margin-top: 8rem; }

.mt-xxxl {
  margin-top: 10rem; }

.mb-none {
  margin-bottom: 0; }

.mb-auto {
  margin-bottom: auto; }

.mb-xxs {
  margin-bottom: .25rem; }

.mb-xs {
  margin-bottom: .5rem; }

.mb-sml {
  margin-bottom: 1rem; }

.mb-mdm {
  margin-bottom: 2rem; }

.mb-lrg {
  margin-bottom: 4rem; }

.mb-xl {
  margin-bottom: 6rem; }

.mb-xxl {
  margin-bottom: 8rem; }

.mb-xxxl {
  margin-bottom: 10rem; }

.ml-none {
  margin-left: 0; }

.ml-auto {
  margin-left: auto; }

.ml-xxs {
  margin-left: .25rem; }

.ml-xs {
  margin-left: .5rem; }

.ml-sml {
  margin-left: 1rem; }

.ml-mdm {
  margin-left: 2rem; }

.ml-lrg {
  margin-left: 4rem; }

.ml-xl {
  margin-left: 6rem; }

.ml-xxl {
  margin-left: 8rem; }

.ml-xxxl {
  margin-left: 10rem; }

.mr-none {
  margin-right: 0; }

.mr-auto {
  margin-right: auto; }

.mr-xxs {
  margin-right: .25rem; }

.mr-xs {
  margin-right: .5rem; }

.mr-sml {
  margin-right: 1rem; }

.mr-mdm {
  margin-right: 2rem; }

.mr-lrg {
  margin-right: 4rem; }

.mr-xl {
  margin-right: 6rem; }

.mr-xxl {
  margin-right: 8rem; }

.mr-xxxl {
  margin-right: 10rem; }

.p-none {
  padding: 0; }

.p-auto {
  padding: auto; }

.p-xxs {
  padding: .25rem; }

.p-xs {
  padding: .5rem; }

.p-sml {
  padding: 1rem; }

.p-mdm {
  padding: 2rem; }

.p-lrg {
  padding: 4rem; }

.p-xl {
  padding: 6rem; }

.p-xxl {
  padding: 8rem; }

.p-xlxx {
  padding: 10rem; }

.pt-none {
  padding-top: 0; }

.pt-auto {
  padding-top: auto; }

.pt-xxs {
  padding-top: .25rem; }

.pt-xs {
  padding-top: .5rem; }

.pt-sml {
  padding-top: 1rem; }

.pt-mdm {
  padding-top: 2rem; }

.pt-lrg {
  padding-top: 4rem; }

.pt-xl {
  padding-top: 6rem; }

.pt-xxl {
  padding-top: 8rem; }

.pt-xxxl {
  padding-top: 10rem; }

.pb-none {
  padding-bottom: 0; }

.pb-auto {
  padding-bottom: auto; }

.pb-xxs {
  padding-bottom: .25rem; }

.pb-xs {
  padding-bottom: .5rem; }

.pb-sml {
  padding-bottom: 1rem; }

.pb-mdm {
  padding-bottom: 2rem; }

.pb-lrg {
  padding-bottom: 4rem; }

.pb-xl {
  padding-bottom: 6rem; }

.pb-xxl {
  padding-bottom: 8rem; }

.pb-xxxl {
  padding-bottom: 10rem; }

.pl-none {
  padding-left: 0; }

.pl-auto {
  padding-left: auto; }

.pl-xxs {
  padding-left: .25rem; }

.pl-xs {
  padding-left: .5rem; }

.pl-sml {
  padding-left: 1rem; }

.pl-mdm {
  padding-left: 2rem; }

.pl-lrg {
  padding-left: 4rem; }

.pl-xl {
  padding-left: 6rem; }

.pl-xxl {
  padding-left: 8rem; }

.pl-xxxl {
  padding-left: 10rem; }

.pr-none {
  padding-right: 0; }

.pr-auto {
  padding-right: auto; }

.pr-xxs {
  padding-right: .25rem; }

.pr-xs {
  padding-right: .5rem; }

.pr-sml {
  padding-right: 1rem; }

.pr-mdm {
  padding-right: 2rem; }

.pr-lrg {
  padding-right: 4rem; }

.pr-xl {
  padding-right: 6rem; }

.pr-xxl {
  padding-right: 8rem; }

.pr-xxxl {
  padding-right: 10rem; }

.fs-sml {
  font-size: .85em; }

.fs-reg {
  font-size: 1em; }

.fs-mdm {
  font-size: 1.5em; }

.fs-lrg {
  font-size: 2em; }

.fs-xl {
  font-size: 3.5em; }

.fs-xxl {
  font-size: 7em; }

.fw-light {
  font-weight: 300; }

.fw-reg {
  font-weight: 400; }

.fw-mdm {
  font-weight: 500; }

.fw-sb {
  font-weight: 600; }

.fw-bold {
  font-weight: 700; }

.txt-caps {
  text-transform: uppercase; }

.txt-underline {
  text-decoration: underline; }

.txt-left {
  text-align: left; }

.txt-right {
  text-align: right; }

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

.lh-sml {
  line-height: .5; }

.lh-reg {
  line-height: 1; }

.lh-mdm {
  line-height: 1.25; }

.lh-lrg {
  line-height: 1.5; }

.lh-xl {
  line-height: 2; }

.over-hidden {
  overflow: hidden; }

.hidden {
  visibility: hidden; }

.visible {
  visibility: visible; }

body, html {
  width: 100%;
  margin: 0;
  padding: 0; }

body {
  font-size: 16px;
  font-family: "Roboto Condensed",sans-serif;
  font-weight: 400;
  line-height: 1.25; }

.page-container, .sctn-container {
  width: 2000px;
  max-width: 100%;
  margin: 0 auto; }

.sctn-container {
  width: 1500px; }

@media (max-width: 1200px) {
  .tv-clr-white {
    color: #fff; }
  .tv-clr-lightgrey {
    color: #eee; }
  .tv-clr-grey {
    color: #666; }
  .tv-clr-darkgrey {
    color: #333; }
  .tv-clr-black {
    color: #000; }
  .tv-bg-white {
    background-color: #fff; }
  .tv-bg-lightgrey {
    background-color: #eee; }
  .tv-bg-grey {
    background-color: #666; }
  .tv-bg-darkgrey {
    background-color: #333; }
  .tv-bg-black {
    background-color: #000; }
  .tv-pointer {
    cursor: pointer; }
  .tv-grab {
    cursor: grab; }
  .tv-not-allowed {
    cursor: not-allowed; }
  .tv-fit-cover {
    object-fit: cover; }
  .tv-fit-contain {
    object-fit: contain; }
  .tv-fit-none {
    object-fit: none; }
  .tv-fit-top-left {
    object-position: left top; }
  .tv-fit-top-right {
    object-position: right top; }
  .tv-fit-top-center {
    object-position: center top; }
  .tv-fit-bottom-left {
    object-position: left bottom; }
  .tv-fit-bottom-right {
    object-position: right bottom; }
  .tv-fit-bottom-center {
    object-position: center bottom; }
  .tv-fit-center-center {
    object-position: center center; }
  .tv-bg-cover {
    background-size: cover; }
  .tv-bg-no-repeat {
    background-repeat: no-repeat; }
  .tv-bg-fixed {
    background-attachment: fixed; }
  .tv-page-container {
    width: 2000px;
    max-width: 100%;
    margin: 0 auto; }
  .tv-sctn-container {
    width: 1500px;
    max-width: calc(100% - 6.5em);
    margin: 0 auto; } }

@media only screen and (max-width: 1200px) and (max-width: 768px) {
  .tv-sctn-container {
    max-width: calc(100% - 4.5em); } }

@media (max-width: 1200px) {
  .tv-flx {
    display: flex; }
  .tv-inline-flx {
    display: inline-flex; }
  .tv-block {
    display: block; }
  .tv-inline-block {
    display: inline-block; }
  .tv-none {
    display: none; }
  .tv-flx-col {
    flex-direction: column; }
  .tv-flx-col-rev {
    flex-direction: column-reverse; }
  .tv-flx-row {
    flex-direction: row; }
  .tv-flx-row-rev {
    flex-direction: row-reverse; }
  .tv-flx-wrap {
    flex-wrap: wrap; }
  .tv-flx-no-wrap {
    flex-wrap: nowrap; }
  .tv-flx-wrap-rev {
    flex-wrap: wrap-reverse; }
  .tv-just-center {
    justify-content: center; }
  .tv-just-start {
    justify-content: flex-start; }
  .tv-just-end {
    justify-content: flex-end; }
  .tv-just-bet {
    justify-content: space-between; }
  .tv-just-aro {
    justify-content: space-around; }
  .tv-ali-center {
    align-items: center; }
  .tv-ali-start {
    align-items: flex-start; }
  .tv-ali-end {
    align-items: flex-end; }
  .tv-self-mid {
    margin-left: auto;
    margin-right: auto; }
  .tv-self-center {
    margin: auto; }
  .tv-self-left {
    margin-right: auto; }
  .tv-self-right {
    margin-left: auto; }
  .tv-self-bot {
    margin-top: auto; }
  .tv-self-top {
    margin-bottom: auto; }
  .tv-order-0 {
    order: 0; }
  .tv-order-1 {
    order: 1; }
  .tv-order-2 {
    order: 2; }
  .tv-order-3 {
    order: 3; }
  .tv-order-4 {
    order: 4; }
  .tv-order-5 {
    order: 5; }
  .tv-order-6 {
    order: 6; }
  .tv-order-7 {
    order: 7; }
  .tv-order-8 {
    order: 8; }
  .tv-order-9 {
    order: 9; }
  .tv-order-10 {
    order: 10; }
  .tv-o-100 {
    opacity: 1; }
  .tv-o-90 {
    opacity: .9; }
  .tv-o-80 {
    opacity: .8; }
  .tv-o-70 {
    opacity: .7; }
  .tv-o-60 {
    opacity: .6; }
  .tv-o-50 {
    opacity: .5; }
  .tv-o-40 {
    opacity: .4; }
  .tv-o-30 {
    opacity: .3; }
  .tv-o-20 {
    opacity: .2; }
  .tv-o-10 {
    opacity: .1; }
  .tv-o-0 {
    opacity: 0; }
  .tv-relative {
    position: relative; }
  .tv-absolute {
    position: absolute; }
  .tv-fixed {
    position: fixed; }
  .tv-top-0 {
    top: 0; }
  .tv-top-5 {
    top: 5%; }
  .tv-top-10 {
    top: 10%; }
  .tv-top-20 {
    top: 20%; }
  .tv-top-30 {
    top: 30%; }
  .tv-top-40 {
    top: 40%; }
  .tv-top-50 {
    top: 50%; }
  .tv-top-60 {
    top: 60%; }
  .tv-top-70 {
    top: 70%; }
  .tv-top-80 {
    top: 80%; }
  .tv-top-90 {
    top: 90%; }
  .tv-top-100 {
    top: 100%; }
  .tv-bottom-0 {
    bottom: 0; }
  .tv-bottom-5 {
    bottom: 5%; }
  .tv-bottom-10 {
    bottom: 10%; }
  .tv-bottom-20 {
    bottom: 20%; }
  .tv-bottom-30 {
    bottom: 30%; }
  .tv-bottom-40 {
    bottom: 40%; }
  .tv-bottom-50 {
    bottom: 50%; }
  .tv-bottom-60 {
    bottom: 60%; }
  .tv-bottom-70 {
    bottom: 70%; }
  .tv-bottom-80 {
    bottom: 80%; }
  .tv-bottom-90 {
    bottom: 90%; }
  .tv-bottom-100 {
    bottom: 100%; }
  .tv-left-0 {
    left: 0; }
  .tv-left-5 {
    left: 5%; }
  .tv-left-10 {
    left: 10%; }
  .tv-left-20 {
    left: 20%; }
  .tv-left-30 {
    left: 30%; }
  .tv-left-40 {
    left: 40%; }
  .tv-left-50 {
    left: 50%; }
  .tv-left-60 {
    left: 60%; }
  .tv-left-70 {
    left: 70%; }
  .tv-left-80 {
    left: 80%; }
  .tv-left-90 {
    left: 90%; }
  .tv-left-100 {
    left: 100%; }
  .tv-right-0 {
    right: 0; }
  .tv-right-5 {
    right: 5%; }
  .tv-right-10 {
    right: 10%; }
  .tv-right-20 {
    right: 20%; }
  .tv-right-30 {
    right: 30%; }
  .tv-right-40 {
    right: 40%; }
  .tv-right-50 {
    right: 50%; }
  .tv-right-60 {
    right: 60%; }
  .tv-right-70 {
    right: 70%; }
  .tv-right-80 {
    right: 80%; }
  .tv-right-90 {
    right: 90%; }
  .tv-right-100 {
    right: 100%; }
  .tv-z-0 {
    z-index: 0; }
  .tv-z-1 {
    z-index: 1; }
  .tv-z-2 {
    z-index: 2; }
  .tv-z-3 {
    z-index: 3; }
  .tv-z-4 {
    z-index: 4; }
  .tv-z-5 {
    z-index: 5; }
  .tv-z-6 {
    z-index: 6; }
  .tv-z-7 {
    z-index: 7; }
  .tv-z-8 {
    z-index: 8; }
  .tv-z-9 {
    z-index: 9; }
  .tv-z-10 {
    z-index: 10; }
  .tv-z-999 {
    z-index: 999; }
  .tv-z-9999 {
    z-index: 9999; }
  .tv-w-5 {
    width: 5%; }
  .tv-w-10 {
    width: 10%; }
  .tv-w-15 {
    width: 15%; }
  .tv-w-20 {
    width: 20%; }
  .tv-w-25, .tv-w-quarter {
    width: 25%; }
  .tv-w-30 {
    width: 30%; }
  .tv-w-35 {
    width: 35%; }
  .tv-w-40 {
    width: 40%; }
  .tv-w-45 {
    width: 45%; }
  .tv-w-50, .tv-w-half {
    width: 50%; }
  .tv-w-55 {
    width: 55%; }
  .tv-w-60 {
    width: 60%; }
  .tv-w-65 {
    width: 65%; }
  .tv-w-70 {
    width: 70%; }
  .tv-w-75, .tv-w-three-quarters {
    width: 75%; }
  .tv-w-80 {
    width: 80%; }
  .tv-w-85 {
    width: 85%; }
  .tv-w-90 {
    width: 90%; }
  .tv-w-95 {
    width: 95%; }
  .tv-w-100 {
    width: 100%; }
  .tv-w-third {
    width: calc(100%/3); }
  .tv-w-two-thirds {
    width: calc(100%/1.5); }
  .tv-w-auto {
    width: auto; }
  .tv-w-max-5 {
    max-width: 5%; }
  .tv-w-max-10 {
    max-width: 10%; }
  .tv-w-max-15 {
    max-width: 15%; }
  .tv-w-max-20 {
    max-width: 20%; }
  .tv-w-max-25 {
    max-width: 25%; }
  .tv-w-max-30 {
    max-width: 30%; }
  .tv-w-max-35 {
    max-width: 35%; }
  .tv-w-max-40 {
    max-width: 40%; }
  .tv-w-max-45 {
    max-width: 45%; }
  .tv-w-max-50 {
    max-width: 50%; }
  .tv-w-max-55 {
    max-width: 55%; }
  .tv-w-max-60 {
    max-width: 60%; }
  .tv-w-max-65 {
    max-width: 65%; }
  .tv-w-max-70 {
    max-width: 70%; }
  .tv-w-max-75 {
    max-width: 75%; }
  .tv-w-max-80 {
    max-width: 80%; }
  .tv-w-max-85 {
    max-width: 85%; }
  .tv-w-max-90 {
    max-width: 90%; }
  .tv-w-max-95 {
    max-width: 95%; }
  .tv-w-max-100 {
    max-width: 100%; }
  .tv-h-25 {
    height: 25%; }
  .tv-h-50 {
    height: 50%; }
  .tv-h-75 {
    height: 75%; }
  .tv-h-100 {
    height: 100%; }
  .tv-vh-25 {
    height: 25vh; }
  .tv-vh-50 {
    height: 50vh; }
  .tv-vh-75 {
    height: 75vh; }
  .tv-vh-100 {
    height: 100vh; }
  .tv-h-auto {
    height: auto; }
  .tv-h-min-vh-25 {
    min-height: 25vh; }
  .tv-h-min-vh-50 {
    min-height: 50vh; }
  .tv-h-min-vh-75 {
    min-height: 75vh; }
  .tv-h-min-vh-100 {
    min-height: 100vh; }
  .tv-w-px-10 {
    width: 10px; }
  .tv-w-px-20 {
    width: 20px; }
  .tv-w-px-30 {
    width: 30px; }
  .tv-w-px-40 {
    width: 40px; }
  .tv-w-px-50 {
    width: 50px; }
  .tv-w-px-60 {
    width: 60px; }
  .tv-w-px-70 {
    width: 70px; }
  .tv-w-px-80 {
    width: 80px; }
  .tv-w-px-90 {
    width: 90px; }
  .tv-w-px-100 {
    width: 100px; }
  .tv-w-px-200 {
    width: 200px; }
  .tv-w-px-300 {
    width: 300px; }
  .tv-w-px-400 {
    width: 400px; }
  .tv-w-px-500 {
    width: 500px; }
  .tv-w-px-600 {
    width: 600px; }
  .tv-w-px-700 {
    width: 700px; }
  .tv-w-px-800 {
    width: 800px; }
  .tv-w-px-900 {
    width: 900px; }
  .tv-w-px-1000 {
    width: 1000px; }
  .tv-h-px-10 {
    height: 10px; }
  .tv-h-px-20 {
    height: 20px; }
  .tv-h-px-30 {
    height: 30px; }
  .tv-h-px-40 {
    height: 40px; }
  .tv-h-px-50 {
    height: 50px; }
  .tv-h-px-60 {
    height: 60px; }
  .tv-h-px-70 {
    height: 70px; }
  .tv-h-px-80 {
    height: 80px; }
  .tv-h-px-90 {
    height: 90px; }
  .tv-h-px-100 {
    height: 100px; }
  .tv-h-px-200 {
    height: 200px; }
  .tv-h-px-300 {
    height: 300px; }
  .tv-h-px-400 {
    height: 400px; }
  .tv-h-px-500 {
    height: 500px; }
  .tv-h-px-600 {
    height: 600px; }
  .tv-h-px-700 {
    height: 700px; }
  .tv-h-px-800 {
    height: 800px; }
  .tv-h-px-900 {
    height: 900px; }
  .tv-h-px-1000 {
    height: 1000px; }
  .tv-m-none {
    margin: 0; }
  .tv-m-auto {
    margin: auto; }
  .tv-m-xxs {
    margin: .25rem; }
  .tv-m-xs {
    margin: .5rem; }
  .tv-m-sml {
    margin: 1rem; }
  .tv-m-mdm {
    margin: 2rem; }
  .tv-m-lrg {
    margin: 4rem; }
  .tv-m-xl {
    margin: 6rem; }
  .tv-m-xxl {
    margin: 8rem; }
  .tv-m-xxxl {
    margin: 10rem; }
  .tv-mt-none {
    margin-top: 0; }
  .tv-mt-auto {
    margin-top: auto; }
  .tv-mt-xxs {
    margin-top: .25rem; }
  .tv-mt-xs {
    margin-top: .5rem; }
  .tv-mt-sml {
    margin-top: 1rem; }
  .tv-mt-mdm {
    margin-top: 2rem; }
  .tv-mt-lrg {
    margin-top: 4rem; }
  .tv-mt-xl {
    margin-top: 6rem; }
  .tv-mt-xxl {
    margin-top: 8rem; }
  .tv-mt-xxxl {
    margin-top: 10rem; }
  .tv-mb-none {
    margin-bottom: 0; }
  .tv-mb-auto {
    margin-bottom: auto; }
  .tv-mb-xxs {
    margin-bottom: .25rem; }
  .tv-mb-xs {
    margin-bottom: .5rem; }
  .tv-mb-sml {
    margin-bottom: 1rem; }
  .tv-mb-mdm {
    margin-bottom: 2rem; }
  .tv-mb-lrg {
    margin-bottom: 4rem; }
  .tv-mb-xl {
    margin-bottom: 6rem; }
  .tv-mb-xxl {
    margin-bottom: 8rem; }
  .tv-mb-xxxl {
    margin-bottom: 10rem; }
  .tv-ml-none {
    margin-left: 0; }
  .tv-ml-auto {
    margin-left: auto; }
  .tv-ml-xxs {
    margin-left: .25rem; }
  .tv-ml-xs {
    margin-left: .5rem; }
  .tv-ml-sml {
    margin-left: 1rem; }
  .tv-ml-mdm {
    margin-left: 2rem; }
  .tv-ml-lrg {
    margin-left: 4rem; }
  .tv-ml-xl {
    margin-left: 6rem; }
  .tv-ml-xxl {
    margin-left: 8rem; }
  .tv-ml-xxxl {
    margin-left: 10rem; }
  .tv-mr-none {
    margin-right: 0; }
  .tv-mr-auto {
    margin-right: auto; }
  .tv-mr-xxs {
    margin-right: .25rem; }
  .tv-mr-xs {
    margin-right: .5rem; }
  .tv-mr-sml {
    margin-right: 1rem; }
  .tv-mr-mdm {
    margin-right: 2rem; }
  .tv-mr-lrg {
    margin-right: 4rem; }
  .tv-mr-xl {
    margin-right: 6rem; }
  .tv-mr-xxl {
    margin-right: 8rem; }
  .tv-mr-xxxl {
    margin-right: 10rem; }
  .tv-p-none {
    padding: 0; }
  .tv-p-auto {
    padding: auto; }
  .tv-p-xxs {
    padding: .25rem; }
  .tv-p-xs {
    padding: .5rem; }
  .tv-p-sml {
    padding: 1rem; }
  .tv-p-mdm {
    padding: 2rem; }
  .tv-p-lrg {
    padding: 4rem; }
  .tv-p-xl {
    padding: 6rem; }
  .tv-p-xxl {
    padding: 8rem; }
  .tv-p-xlxx {
    padding: 10rem; }
  .tv-pt-none {
    padding-top: 0; }
  .tv-pt-auto {
    padding-top: auto; }
  .tv-pt-xxs {
    padding-top: .25rem; }
  .tv-pt-xs {
    padding-top: .5rem; }
  .tv-pt-sml {
    padding-top: 1rem; }
  .tv-pt-mdm {
    padding-top: 2rem; }
  .tv-pt-lrg {
    padding-top: 4rem; }
  .tv-pt-xl {
    padding-top: 6rem; }
  .tv-pt-xxl {
    padding-top: 8rem; }
  .tv-pt-xxxl {
    padding-top: 10rem; }
  .tv-pb-none {
    padding-bottom: 0; }
  .tv-pb-auto {
    padding-bottom: auto; }
  .tv-pb-xxs {
    padding-bottom: .25rem; }
  .tv-pb-xs {
    padding-bottom: .5rem; }
  .tv-pb-sml {
    padding-bottom: 1rem; }
  .tv-pb-mdm {
    padding-bottom: 2rem; }
  .tv-pb-lrg {
    padding-bottom: 4rem; }
  .tv-pb-xl {
    padding-bottom: 6rem; }
  .tv-pb-xxl {
    padding-bottom: 8rem; }
  .tv-pb-xxxl {
    padding-bottom: 10rem; }
  .tv-pl-none {
    padding-left: 0; }
  .tv-pl-auto {
    padding-left: auto; }
  .tv-pl-xxs {
    padding-left: .25rem; }
  .tv-pl-xs {
    padding-left: .5rem; }
  .tv-pl-sml {
    padding-left: 1rem; }
  .tv-pl-mdm {
    padding-left: 2rem; }
  .tv-pl-lrg {
    padding-left: 4rem; }
  .tv-pl-xl {
    padding-left: 6rem; }
  .tv-pl-xxl {
    padding-left: 8rem; }
  .tv-pl-xxxl {
    padding-left: 10rem; }
  .tv-pr-none {
    padding-right: 0; }
  .tv-pr-auto {
    padding-right: auto; }
  .tv-pr-xxs {
    padding-right: .25rem; }
  .tv-pr-xs {
    padding-right: .5rem; }
  .tv-pr-sml {
    padding-right: 1rem; }
  .tv-pr-mdm {
    padding-right: 2rem; }
  .tv-pr-lrg {
    padding-right: 4rem; }
  .tv-pr-xl {
    padding-right: 6rem; }
  .tv-pr-xxl {
    padding-right: 8rem; }
  .tv-pr-xxxl {
    padding-right: 10rem; }
  .tv-fs-sml {
    font-size: .85em; }
  .tv-fs-reg {
    font-size: 1em; }
  .tv-fs-mdm {
    font-size: 1.5em; }
  .tv-fs-lrg {
    font-size: 2em; }
  .tv-fs-xl {
    font-size: 3.5em; }
  .tv-fs-xxl {
    font-size: 7em; }
  .tv-fw-light {
    font-weight: 300; }
  .tv-fw-reg {
    font-weight: 400; }
  .tv-fw-mdm {
    font-weight: 500; }
  .tv-fw-sb {
    font-weight: 600; }
  .tv-fw-bold {
    font-weight: 700; }
  .tv-txt-caps {
    text-transform: uppercase; }
  .tv-txt-underline {
    text-decoration: underline; }
  .tv-txt-left {
    text-align: left; }
  .tv-txt-right {
    text-align: right; }
  .tv-txt-center {
    text-align: center; }
  .tv-lh-sml {
    line-height: .5; }
  .tv-lh-reg {
    line-height: 1; }
  .tv-lh-mdm {
    line-height: 1.25; }
  .tv-lh-lrg {
    line-height: 1.5; }
  .tv-lh-xl {
    line-height: 2; }
  .tv-over-hidden {
    overflow: hidden; }
  .tv-hidden {
    visibility: hidden; }
  .tv-visible {
    visibility: visible; } }

@media (max-width: 950px) {
  .desk-brd-none {
    border-style: none; }
  .desk-brd {
    border: solid 1px #000; }
  .desk-brd-bot {
    border-bottom: solid 1px #000; }
  .desk-brd-top {
    border-top: solid 1px #000; }
  .desk-brd-right {
    border-right: solid 1px #000; }
  .desk-brd-left {
    border-left: solid 1px #000; }
  .desk-brd-w-1 {
    border-width: 1px; }
  .desk-brd-w-2 {
    border-width: 2px; }
  .desk-brd-w-3 {
    border-width: 3px; }
  .desk-brd-w-4 {
    border-width: 4px; }
  .desk-brd-w-5 {
    border-width: 5px; }
  .desk-brd-w-6 {
    border-width: 6px; }
  .desk-brd-w-7 {
    border-width: 7px; }
  .desk-brd-w-8 {
    border-width: 8px; }
  .desk-brd-w-9 {
    border-width: 9px; }
  .desk-brd-w-10 {
    border-width: 10px; }
  .desk-brd-clr-black {
    border-color: #000; }
  .desk-brd-clr-white {
    border-color: #fff; }
  .desk-brd-clr-darkgrey, .desk-brd-clr-lightgrey {
    border-color: #eee; }
  .desk-brd-clr-grey {
    border-color: #666; }
  .desk-brd-radius-50 {
    border-radius: 50%; }
  .desk-brd-radius-100 {
    border-radius: 100%; }
  .desk-clr-white {
    color: #fff; }
  .desk-clr-lightgrey {
    color: #eee; }
  .desk-clr-grey {
    color: #666; }
  .desk-clr-darkgrey {
    color: #333; }
  .desk-clr-black {
    color: #000; }
  .desk-bg-white {
    background-color: #fff; }
  .desk-bg-lightgrey {
    background-color: #eee; }
  .desk-bg-grey {
    background-color: #666; }
  .desk-bg-darkgrey {
    background-color: #333; }
  .desk-bg-black {
    background-color: #000; }
  .desk-pointer {
    cursor: pointer; }
  .desk-grab {
    cursor: grab; }
  .desk-not-allowed {
    cursor: not-allowed; }
  .desk-fit-cover {
    object-fit: cover; }
  .desk-fit-contain {
    object-fit: contain; }
  .desk-fit-none {
    object-fit: none; }
  .desk-fit-top-left {
    object-position: left top; }
  .desk-fit-top-right {
    object-position: right top; }
  .desk-fit-top-center {
    object-position: center top; }
  .desk-fit-bottom-left {
    object-position: left bottom; }
  .desk-fit-bottom-right {
    object-position: right bottom; }
  .desk-fit-bottom-center {
    object-position: center bottom; }
  .desk-fit-center-center {
    object-position: center center; }
  .desk-bg-cover {
    background-size: cover; }
  .desk-bg-no-repeat {
    background-repeat: no-repeat; }
  .desk-bg-fixed {
    background-attachment: fixed; }
  .desk-page-container {
    width: 2000px;
    max-width: 100%;
    margin: 0 auto; }
  .desk-sctn-container {
    width: 1500px;
    max-width: calc(100% - 6.5em);
    margin: 0 auto; } }

@media only screen and (max-width: 950px) and (max-width: 768px) {
  .desk-sctn-container {
    max-width: calc(100% - 4.5em); } }

@media (max-width: 950px) {
  .desk-flx {
    display: flex; }
  .desk-inline-flx {
    display: inline-flex; }
  .desk-block {
    display: block; }
  .desk-inline-block {
    display: inline-block; }
  .desk-none {
    display: none; }
  .desk-flx-col {
    flex-direction: column; }
  .desk-flx-col-rev {
    flex-direction: column-reverse; }
  .desk-flx-row {
    flex-direction: row; }
  .desk-flx-row-rev {
    flex-direction: row-reverse; }
  .desk-flx-wrap {
    flex-wrap: wrap; }
  .desk-flx-no-wrap {
    flex-wrap: nowrap; }
  .desk-flx-wrap-rev {
    flex-wrap: wrap-reverse; }
  .desk-just-center {
    justify-content: center; }
  .desk-just-start {
    justify-content: flex-start; }
  .desk-just-end {
    justify-content: flex-end; }
  .desk-just-bet {
    justify-content: space-between; }
  .desk-just-aro {
    justify-content: space-around; }
  .desk-ali-center {
    align-items: center; }
  .desk-ali-start {
    align-items: flex-start; }
  .desk-ali-end {
    align-items: flex-end; }
  .desk-self-mid {
    margin-left: auto;
    margin-right: auto; }
  .desk-self-center {
    margin: auto; }
  .desk-self-left {
    margin-right: auto; }
  .desk-self-right {
    margin-left: auto; }
  .desk-self-bot {
    margin-top: auto; }
  .desk-self-top {
    margin-bottom: auto; }
  .desk-order-0 {
    order: 0; }
  .desk-order-1 {
    order: 1; }
  .desk-order-2 {
    order: 2; }
  .desk-order-3 {
    order: 3; }
  .desk-order-4 {
    order: 4; }
  .desk-order-5 {
    order: 5; }
  .desk-order-6 {
    order: 6; }
  .desk-order-7 {
    order: 7; }
  .desk-order-8 {
    order: 8; }
  .desk-order-9 {
    order: 9; }
  .desk-order-10 {
    order: 10; }
  .desk-o-100 {
    opacity: 1; }
  .desk-o-90 {
    opacity: .9; }
  .desk-o-80 {
    opacity: .8; }
  .desk-o-70 {
    opacity: .7; }
  .desk-o-60 {
    opacity: .6; }
  .desk-o-50 {
    opacity: .5; }
  .desk-o-40 {
    opacity: .4; }
  .desk-o-30 {
    opacity: .3; }
  .desk-o-20 {
    opacity: .2; }
  .desk-o-10 {
    opacity: .1; }
  .desk-o-0 {
    opacity: 0; }
  .desk-relative {
    position: relative; }
  .desk-absolute {
    position: absolute; }
  .desk-fixed {
    position: fixed; }
  .desk-top-0 {
    top: 0; }
  .desk-top-5 {
    top: 5%; }
  .desk-top-10 {
    top: 10%; }
  .desk-top-20 {
    top: 20%; }
  .desk-top-30 {
    top: 30%; }
  .desk-top-40 {
    top: 40%; }
  .desk-top-50 {
    top: 50%; }
  .desk-top-60 {
    top: 60%; }
  .desk-top-70 {
    top: 70%; }
  .desk-top-80 {
    top: 80%; }
  .desk-top-90 {
    top: 90%; }
  .desk-top-100 {
    top: 100%; }
  .desk-bottom-0 {
    bottom: 0; }
  .desk-bottom-5 {
    bottom: 5%; }
  .desk-bottom-10 {
    bottom: 10%; }
  .desk-bottom-20 {
    bottom: 20%; }
  .desk-bottom-30 {
    bottom: 30%; }
  .desk-bottom-40 {
    bottom: 40%; }
  .desk-bottom-50 {
    bottom: 50%; }
  .desk-bottom-60 {
    bottom: 60%; }
  .desk-bottom-70 {
    bottom: 70%; }
  .desk-bottom-80 {
    bottom: 80%; }
  .desk-bottom-90 {
    bottom: 90%; }
  .desk-bottom-100 {
    bottom: 100%; }
  .desk-left-0 {
    left: 0; }
  .desk-left-5 {
    left: 5%; }
  .desk-left-10 {
    left: 10%; }
  .desk-left-20 {
    left: 20%; }
  .desk-left-30 {
    left: 30%; }
  .desk-left-40 {
    left: 40%; }
  .desk-left-50 {
    left: 50%; }
  .desk-left-60 {
    left: 60%; }
  .desk-left-70 {
    left: 70%; }
  .desk-left-80 {
    left: 80%; }
  .desk-left-90 {
    left: 90%; }
  .desk-left-100 {
    left: 100%; }
  .desk-right-0 {
    right: 0; }
  .desk-right-5 {
    right: 5%; }
  .desk-right-10 {
    right: 10%; }
  .desk-right-20 {
    right: 20%; }
  .desk-right-30 {
    right: 30%; }
  .desk-right-40 {
    right: 40%; }
  .desk-right-50 {
    right: 50%; }
  .desk-right-60 {
    right: 60%; }
  .desk-right-70 {
    right: 70%; }
  .desk-right-80 {
    right: 80%; }
  .desk-right-90 {
    right: 90%; }
  .desk-right-100 {
    right: 100%; }
  .desk-z-0 {
    z-index: 0; }
  .desk-z-1 {
    z-index: 1; }
  .desk-z-2 {
    z-index: 2; }
  .desk-z-3 {
    z-index: 3; }
  .desk-z-4 {
    z-index: 4; }
  .desk-z-5 {
    z-index: 5; }
  .desk-z-6 {
    z-index: 6; }
  .desk-z-7 {
    z-index: 7; }
  .desk-z-8 {
    z-index: 8; }
  .desk-z-9 {
    z-index: 9; }
  .desk-z-10 {
    z-index: 10; }
  .desk-z-999 {
    z-index: 999; }
  .desk-z-9999 {
    z-index: 9999; }
  .desk-w-5 {
    width: 5%; }
  .desk-w-10 {
    width: 10%; }
  .desk-w-15 {
    width: 15%; }
  .desk-w-20 {
    width: 20%; }
  .desk-w-25, .desk-w-quarter {
    width: 25%; }
  .desk-w-30 {
    width: 30%; }
  .desk-w-35 {
    width: 35%; }
  .desk-w-40 {
    width: 40%; }
  .desk-w-45 {
    width: 45%; }
  .desk-w-50, .desk-w-half {
    width: 50%; }
  .desk-w-55 {
    width: 55%; }
  .desk-w-60 {
    width: 60%; }
  .desk-w-65 {
    width: 65%; }
  .desk-w-70 {
    width: 70%; }
  .desk-w-75, .desk-w-three-quarters {
    width: 75%; }
  .desk-w-80 {
    width: 80%; }
  .desk-w-85 {
    width: 85%; }
  .desk-w-90 {
    width: 90%; }
  .desk-w-95 {
    width: 95%; }
  .desk-w-100 {
    width: 100%; }
  .desk-w-third {
    width: calc(100%/3); }
  .desk-w-two-thirds {
    width: calc(100%/1.5); }
  .desk-w-auto {
    width: auto; }
  .desk-w-max-5 {
    max-width: 5%; }
  .desk-w-max-10 {
    max-width: 10%; }
  .desk-w-max-15 {
    max-width: 15%; }
  .desk-w-max-20 {
    max-width: 20%; }
  .desk-w-max-25 {
    max-width: 25%; }
  .desk-w-max-30 {
    max-width: 30%; }
  .desk-w-max-35 {
    max-width: 35%; }
  .desk-w-max-40 {
    max-width: 40%; }
  .desk-w-max-45 {
    max-width: 45%; }
  .desk-w-max-50 {
    max-width: 50%; }
  .desk-w-max-55 {
    max-width: 55%; }
  .desk-w-max-60 {
    max-width: 60%; }
  .desk-w-max-65 {
    max-width: 65%; }
  .desk-w-max-70 {
    max-width: 70%; }
  .desk-w-max-75 {
    max-width: 75%; }
  .desk-w-max-80 {
    max-width: 80%; }
  .desk-w-max-85 {
    max-width: 85%; }
  .desk-w-max-90 {
    max-width: 90%; }
  .desk-w-max-95 {
    max-width: 95%; }
  .desk-w-max-100 {
    max-width: 100%; }
  .desk-h-25 {
    height: 25%; }
  .desk-h-50 {
    height: 50%; }
  .desk-h-75 {
    height: 75%; }
  .desk-h-100 {
    height: 100%; }
  .desk-vh-25 {
    height: 25vh; }
  .desk-vh-50 {
    height: 50vh; }
  .desk-vh-75 {
    height: 75vh; }
  .desk-vh-100 {
    height: 100vh; }
  .desk-h-auto {
    height: auto; }
  .desk-h-min-vh-25 {
    min-height: 25vh; }
  .desk-h-min-vh-50 {
    min-height: 50vh; }
  .desk-h-min-vh-75 {
    min-height: 75vh; }
  .desk-h-min-vh-100 {
    min-height: 100vh; }
  .desk-w-px-10 {
    width: 10px; }
  .desk-w-px-20 {
    width: 20px; }
  .desk-w-px-30 {
    width: 30px; }
  .desk-w-px-40 {
    width: 40px; }
  .desk-w-px-50 {
    width: 50px; }
  .desk-w-px-60 {
    width: 60px; }
  .desk-w-px-70 {
    width: 70px; }
  .desk-w-px-80 {
    width: 80px; }
  .desk-w-px-90 {
    width: 90px; }
  .desk-w-px-100 {
    width: 100px; }
  .desk-w-px-200 {
    width: 200px; }
  .desk-w-px-300 {
    width: 300px; }
  .desk-w-px-400 {
    width: 400px; }
  .desk-w-px-500 {
    width: 500px; }
  .desk-w-px-600 {
    width: 600px; }
  .desk-w-px-700 {
    width: 700px; }
  .desk-w-px-800 {
    width: 800px; }
  .desk-w-px-900 {
    width: 900px; }
  .desk-w-px-1000 {
    width: 1000px; }
  .desk-h-px-10 {
    height: 10px; }
  .desk-h-px-20 {
    height: 20px; }
  .desk-h-px-30 {
    height: 30px; }
  .desk-h-px-40 {
    height: 40px; }
  .desk-h-px-50 {
    height: 50px; }
  .desk-h-px-60 {
    height: 60px; }
  .desk-h-px-70 {
    height: 70px; }
  .desk-h-px-80 {
    height: 80px; }
  .desk-h-px-90 {
    height: 90px; }
  .desk-h-px-100 {
    height: 100px; }
  .desk-h-px-200 {
    height: 200px; }
  .desk-h-px-300 {
    height: 300px; }
  .desk-h-px-400 {
    height: 400px; }
  .desk-h-px-500 {
    height: 500px; }
  .desk-h-px-600 {
    height: 600px; }
  .desk-h-px-700 {
    height: 700px; }
  .desk-h-px-800 {
    height: 800px; }
  .desk-h-px-900 {
    height: 900px; }
  .desk-h-px-1000 {
    height: 1000px; }
  .desk-m-none {
    margin: 0; }
  .desk-m-auto {
    margin: auto; }
  .desk-m-xxs {
    margin: .25rem; }
  .desk-m-xs {
    margin: .5rem; }
  .desk-m-sml {
    margin: 1rem; }
  .desk-m-mdm {
    margin: 2rem; }
  .desk-m-lrg {
    margin: 4rem; }
  .desk-m-xl {
    margin: 6rem; }
  .desk-m-xxl {
    margin: 8rem; }
  .desk-m-xxxl {
    margin: 10rem; }
  .desk-mt-none {
    margin-top: 0; }
  .desk-mt-auto {
    margin-top: auto; }
  .desk-mt-xxs {
    margin-top: .25rem; }
  .desk-mt-xs {
    margin-top: .5rem; }
  .desk-mt-sml {
    margin-top: 1rem; }
  .desk-mt-mdm {
    margin-top: 2rem; }
  .desk-mt-lrg {
    margin-top: 4rem; }
  .desk-mt-xl {
    margin-top: 6rem; }
  .desk-mt-xxl {
    margin-top: 8rem; }
  .desk-mt-xxxl {
    margin-top: 10rem; }
  .desk-mb-none {
    margin-bottom: 0; }
  .desk-mb-auto {
    margin-bottom: auto; }
  .desk-mb-xxs {
    margin-bottom: .25rem; }
  .desk-mb-xs {
    margin-bottom: .5rem; }
  .desk-mb-sml {
    margin-bottom: 1rem; }
  .desk-mb-mdm {
    margin-bottom: 2rem; }
  .desk-mb-lrg {
    margin-bottom: 4rem; }
  .desk-mb-xl {
    margin-bottom: 6rem; }
  .desk-mb-xxl {
    margin-bottom: 8rem; }
  .desk-mb-xxxl {
    margin-bottom: 10rem; }
  .desk-ml-none {
    margin-left: 0; }
  .desk-ml-auto {
    margin-left: auto; }
  .desk-ml-xxs {
    margin-left: .25rem; }
  .desk-ml-xs {
    margin-left: .5rem; }
  .desk-ml-sml {
    margin-left: 1rem; }
  .desk-ml-mdm {
    margin-left: 2rem; }
  .desk-ml-lrg {
    margin-left: 4rem; }
  .desk-ml-xl {
    margin-left: 6rem; }
  .desk-ml-xxl {
    margin-left: 8rem; }
  .desk-ml-xxxl {
    margin-left: 10rem; }
  .desk-mr-none {
    margin-right: 0; }
  .desk-mr-auto {
    margin-right: auto; }
  .desk-mr-xxs {
    margin-right: .25rem; }
  .desk-mr-xs {
    margin-right: .5rem; }
  .desk-mr-sml {
    margin-right: 1rem; }
  .desk-mr-mdm {
    margin-right: 2rem; }
  .desk-mr-lrg {
    margin-right: 4rem; }
  .desk-mr-xl {
    margin-right: 6rem; }
  .desk-mr-xxl {
    margin-right: 8rem; }
  .desk-mr-xxxl {
    margin-right: 10rem; }
  .desk-p-none {
    padding: 0; }
  .desk-p-auto {
    padding: auto; }
  .desk-p-xxs {
    padding: .25rem; }
  .desk-p-xs {
    padding: .5rem; }
  .desk-p-sml {
    padding: 1rem; }
  .desk-p-mdm {
    padding: 2rem; }
  .desk-p-lrg {
    padding: 4rem; }
  .desk-p-xl {
    padding: 6rem; }
  .desk-p-xxl {
    padding: 8rem; }
  .desk-p-xlxx {
    padding: 10rem; }
  .desk-pt-none {
    padding-top: 0; }
  .desk-pt-auto {
    padding-top: auto; }
  .desk-pt-xxs {
    padding-top: .25rem; }
  .desk-pt-xs {
    padding-top: .5rem; }
  .desk-pt-sml {
    padding-top: 1rem; }
  .desk-pt-mdm {
    padding-top: 2rem; }
  .desk-pt-lrg {
    padding-top: 4rem; }
  .desk-pt-xl {
    padding-top: 6rem; }
  .desk-pt-xxl {
    padding-top: 8rem; }
  .desk-pt-xxxl {
    padding-top: 10rem; }
  .desk-pb-none {
    padding-bottom: 0; }
  .desk-pb-auto {
    padding-bottom: auto; }
  .desk-pb-xxs {
    padding-bottom: .25rem; }
  .desk-pb-xs {
    padding-bottom: .5rem; }
  .desk-pb-sml {
    padding-bottom: 1rem; }
  .desk-pb-mdm {
    padding-bottom: 2rem; }
  .desk-pb-lrg {
    padding-bottom: 4rem; }
  .desk-pb-xl {
    padding-bottom: 6rem; }
  .desk-pb-xxl {
    padding-bottom: 8rem; }
  .desk-pb-xxxl {
    padding-bottom: 10rem; }
  .desk-pl-none {
    padding-left: 0; }
  .desk-pl-auto {
    padding-left: auto; }
  .desk-pl-xxs {
    padding-left: .25rem; }
  .desk-pl-xs {
    padding-left: .5rem; }
  .desk-pl-sml {
    padding-left: 1rem; }
  .desk-pl-mdm {
    padding-left: 2rem; }
  .desk-pl-lrg {
    padding-left: 4rem; }
  .desk-pl-xl {
    padding-left: 6rem; }
  .desk-pl-xxl {
    padding-left: 8rem; }
  .desk-pl-xxxl {
    padding-left: 10rem; }
  .desk-pr-none {
    padding-right: 0; }
  .desk-pr-auto {
    padding-right: auto; }
  .desk-pr-xxs {
    padding-right: .25rem; }
  .desk-pr-xs {
    padding-right: .5rem; }
  .desk-pr-sml {
    padding-right: 1rem; }
  .desk-pr-mdm {
    padding-right: 2rem; }
  .desk-pr-lrg {
    padding-right: 4rem; }
  .desk-pr-xl {
    padding-right: 6rem; }
  .desk-pr-xxl {
    padding-right: 8rem; }
  .desk-pr-xxxl {
    padding-right: 10rem; }
  .desk-fs-sml {
    font-size: .85em; }
  .desk-fs-reg {
    font-size: 1em; }
  .desk-fs-mdm {
    font-size: 1.5em; }
  .desk-fs-lrg {
    font-size: 2em; }
  .desk-fs-xl {
    font-size: 3.5em; }
  .desk-fs-xxl {
    font-size: 7em; }
  .desk-fw-light {
    font-weight: 300; }
  .desk-fw-reg {
    font-weight: 400; }
  .desk-fw-mdm {
    font-weight: 500; }
  .desk-fw-sb {
    font-weight: 600; }
  .desk-fw-bold {
    font-weight: 700; }
  .desk-txt-caps {
    text-transform: uppercase; }
  .desk-txt-underline {
    text-decoration: underline; }
  .desk-txt-left {
    text-align: left; }
  .desk-txt-right {
    text-align: right; }
  .desk-txt-center {
    text-align: center; }
  .desk-lh-sml {
    line-height: .5; }
  .desk-lh-reg {
    line-height: 1; }
  .desk-lh-mdm {
    line-height: 1.25; }
  .desk-lh-lrg {
    line-height: 1.5; }
  .desk-lh-xl {
    line-height: 2; }
  .desk-over-hidden {
    overflow: hidden; }
  .desk-hidden {
    visibility: hidden; }
  .desk-visible {
    visibility: visible; } }

@media (max-width: 768px) {
  .tab-brd-none {
    border-style: none; }
  .tab-brd {
    border: solid 1px #000; }
  .tab-brd-bot {
    border-bottom: solid 1px #000; }
  .tab-brd-top {
    border-top: solid 1px #000; }
  .tab-brd-right {
    border-right: solid 1px #000; }
  .tab-brd-left {
    border-left: solid 1px #000; }
  .tab-brd-w-1 {
    border-width: 1px; }
  .tab-brd-w-2 {
    border-width: 2px; }
  .tab-brd-w-3 {
    border-width: 3px; }
  .tab-brd-w-4 {
    border-width: 4px; }
  .tab-brd-w-5 {
    border-width: 5px; }
  .tab-brd-w-6 {
    border-width: 6px; }
  .tab-brd-w-7 {
    border-width: 7px; }
  .tab-brd-w-8 {
    border-width: 8px; }
  .tab-brd-w-9 {
    border-width: 9px; }
  .tab-brd-w-10 {
    border-width: 10px; }
  .tab-brd-clr-black {
    border-color: #000; }
  .tab-brd-clr-white {
    border-color: #fff; }
  .tab-brd-clr-darkgrey, .tab-brd-clr-lightgrey {
    border-color: #eee; }
  .tab-brd-clr-grey {
    border-color: #666; }
  .tab-brd-radius-50 {
    border-radius: 50%; }
  .tab-brd-radius-100 {
    border-radius: 100%; }
  .tab-clr-white {
    color: #fff; }
  .tab-clr-lightgrey {
    color: #eee; }
  .tab-clr-grey {
    color: #666; }
  .tab-clr-darkgrey {
    color: #333; }
  .tab-clr-black {
    color: #000; }
  .tab-bg-white {
    background-color: #fff; }
  .tab-bg-lightgrey {
    background-color: #eee; }
  .tab-bg-grey {
    background-color: #666; }
  .tab-bg-darkgrey {
    background-color: #333; }
  .tab-bg-black {
    background-color: #000; }
  .tab-pointer {
    cursor: pointer; }
  .tab-grab {
    cursor: grab; }
  .tab-not-allowed {
    cursor: not-allowed; }
  .tab-fit-cover {
    object-fit: cover; }
  .tab-fit-contain {
    object-fit: contain; }
  .tab-fit-none {
    object-fit: none; }
  .tab-fit-top-left {
    object-position: left top; }
  .tab-fit-top-right {
    object-position: right top; }
  .tab-fit-top-center {
    object-position: center top; }
  .tab-fit-bottom-left {
    object-position: left bottom; }
  .tab-fit-bottom-right {
    object-position: right bottom; }
  .tab-fit-bottom-center {
    object-position: center bottom; }
  .tab-fit-center-center {
    object-position: center center; }
  .tab-bg-cover {
    background-size: cover; }
  .tab-bg-no-repeat {
    background-repeat: no-repeat; }
  .tab-bg-fixed {
    background-attachment: fixed; }
  .tab-page-container {
    width: 2000px;
    max-width: 100%;
    margin: 0 auto; }
  .tab-sctn-container {
    width: 1500px;
    max-width: calc(100% - 6.5em);
    margin: 0 auto; } }

@media only screen and (max-width: 768px) and (max-width: 768px) {
  .tab-sctn-container {
    max-width: calc(100% - 4.5em); } }

@media (max-width: 768px) {
  .tab-flx {
    display: flex; }
  .tab-inline-flx {
    display: inline-flex; }
  .tab-block {
    display: block; }
  .tab-inline-block {
    display: inline-block; }
  .tab-none {
    display: none; }
  .tab-flx-col {
    flex-direction: column; }
  .tab-flx-col-rev {
    flex-direction: column-reverse; }
  .tab-flx-row {
    flex-direction: row; }
  .tab-flx-row-rev {
    flex-direction: row-reverse; }
  .tab-flx-wrap {
    flex-wrap: wrap; }
  .tab-flx-no-wrap {
    flex-wrap: nowrap; }
  .tab-flx-wrap-rev {
    flex-wrap: wrap-reverse; }
  .tab-just-center {
    justify-content: center; }
  .tab-just-start {
    justify-content: flex-start; }
  .tab-just-end {
    justify-content: flex-end; }
  .tab-just-bet {
    justify-content: space-between; }
  .tab-just-aro {
    justify-content: space-around; }
  .tab-ali-center {
    align-items: center; }
  .tab-ali-start {
    align-items: flex-start; }
  .tab-ali-end {
    align-items: flex-end; }
  .tab-self-mid {
    margin-left: auto;
    margin-right: auto; }
  .tab-self-center {
    margin: auto; }
  .tab-self-left {
    margin-right: auto; }
  .tab-self-right {
    margin-left: auto; }
  .tab-self-bot {
    margin-top: auto; }
  .tab-self-top {
    margin-bottom: auto; }
  .tab-order-0 {
    order: 0; }
  .tab-order-1 {
    order: 1; }
  .tab-order-2 {
    order: 2; }
  .tab-order-3 {
    order: 3; }
  .tab-order-4 {
    order: 4; }
  .tab-order-5 {
    order: 5; }
  .tab-order-6 {
    order: 6; }
  .tab-order-7 {
    order: 7; }
  .tab-order-8 {
    order: 8; }
  .tab-order-9 {
    order: 9; }
  .tab-order-10 {
    order: 10; }
  .tab-o-100 {
    opacity: 1; }
  .tab-o-90 {
    opacity: .9; }
  .tab-o-80 {
    opacity: .8; }
  .tab-o-70 {
    opacity: .7; }
  .tab-o-60 {
    opacity: .6; }
  .tab-o-50 {
    opacity: .5; }
  .tab-o-40 {
    opacity: .4; }
  .tab-o-30 {
    opacity: .3; }
  .tab-o-20 {
    opacity: .2; }
  .tab-o-10 {
    opacity: .1; }
  .tab-o-0 {
    opacity: 0; }
  .tab-relative {
    position: relative; }
  .tab-absolute {
    position: absolute; }
  .tab-fixed {
    position: fixed; }
  .tab-top-0 {
    top: 0; }
  .tab-top-5 {
    top: 5%; }
  .tab-top-10 {
    top: 10%; }
  .tab-top-20 {
    top: 20%; }
  .tab-top-30 {
    top: 30%; }
  .tab-top-40 {
    top: 40%; }
  .tab-top-50 {
    top: 50%; }
  .tab-top-60 {
    top: 60%; }
  .tab-top-70 {
    top: 70%; }
  .tab-top-80 {
    top: 80%; }
  .tab-top-90 {
    top: 90%; }
  .tab-top-100 {
    top: 100%; }
  .tab-bottom-0 {
    bottom: 0; }
  .tab-bottom-5 {
    bottom: 5%; }
  .tab-bottom-10 {
    bottom: 10%; }
  .tab-bottom-20 {
    bottom: 20%; }
  .tab-bottom-30 {
    bottom: 30%; }
  .tab-bottom-40 {
    bottom: 40%; }
  .tab-bottom-50 {
    bottom: 50%; }
  .tab-bottom-60 {
    bottom: 60%; }
  .tab-bottom-70 {
    bottom: 70%; }
  .tab-bottom-80 {
    bottom: 80%; }
  .tab-bottom-90 {
    bottom: 90%; }
  .tab-bottom-100 {
    bottom: 100%; }
  .tab-left-0 {
    left: 0; }
  .tab-left-5 {
    left: 5%; }
  .tab-left-10 {
    left: 10%; }
  .tab-left-20 {
    left: 20%; }
  .tab-left-30 {
    left: 30%; }
  .tab-left-40 {
    left: 40%; }
  .tab-left-50 {
    left: 50%; }
  .tab-left-60 {
    left: 60%; }
  .tab-left-70 {
    left: 70%; }
  .tab-left-80 {
    left: 80%; }
  .tab-left-90 {
    left: 90%; }
  .tab-left-100 {
    left: 100%; }
  .tab-right-0 {
    right: 0; }
  .tab-right-5 {
    right: 5%; }
  .tab-right-10 {
    right: 10%; }
  .tab-right-20 {
    right: 20%; }
  .tab-right-30 {
    right: 30%; }
  .tab-right-40 {
    right: 40%; }
  .tab-right-50 {
    right: 50%; }
  .tab-right-60 {
    right: 60%; }
  .tab-right-70 {
    right: 70%; }
  .tab-right-80 {
    right: 80%; }
  .tab-right-90 {
    right: 90%; }
  .tab-right-100 {
    right: 100%; }
  .tab-z-0 {
    z-index: 0; }
  .tab-z-1 {
    z-index: 1; }
  .tab-z-2 {
    z-index: 2; }
  .tab-z-3 {
    z-index: 3; }
  .tab-z-4 {
    z-index: 4; }
  .tab-z-5 {
    z-index: 5; }
  .tab-z-6 {
    z-index: 6; }
  .tab-z-7 {
    z-index: 7; }
  .tab-z-8 {
    z-index: 8; }
  .tab-z-9 {
    z-index: 9; }
  .tab-z-10 {
    z-index: 10; }
  .tab-z-999 {
    z-index: 999; }
  .tab-z-9999 {
    z-index: 9999; }
  .tab-w-5 {
    width: 5%; }
  .tab-w-10 {
    width: 10%; }
  .tab-w-15 {
    width: 15%; }
  .tab-w-20 {
    width: 20%; }
  .tab-w-25, .tab-w-quarter {
    width: 25%; }
  .tab-w-30 {
    width: 30%; }
  .tab-w-35 {
    width: 35%; }
  .tab-w-40 {
    width: 40%; }
  .tab-w-45 {
    width: 45%; }
  .tab-w-50, .tab-w-half {
    width: 50%; }
  .tab-w-55 {
    width: 55%; }
  .tab-w-60 {
    width: 60%; }
  .tab-w-65 {
    width: 65%; }
  .tab-w-70 {
    width: 70%; }
  .tab-w-75, .tab-w-three-quarters {
    width: 75%; }
  .tab-w-80 {
    width: 80%; }
  .tab-w-85 {
    width: 85%; }
  .tab-w-90 {
    width: 90%; }
  .tab-w-95 {
    width: 95%; }
  .tab-w-100 {
    width: 100%; }
  .tab-w-third {
    width: calc(100%/3); }
  .tab-w-two-thirds {
    width: calc(100%/1.5); }
  .tab-w-auto {
    width: auto; }
  .tab-w-max-5 {
    max-width: 5%; }
  .tab-w-max-10 {
    max-width: 10%; }
  .tab-w-max-15 {
    max-width: 15%; }
  .tab-w-max-20 {
    max-width: 20%; }
  .tab-w-max-25 {
    max-width: 25%; }
  .tab-w-max-30 {
    max-width: 30%; }
  .tab-w-max-35 {
    max-width: 35%; }
  .tab-w-max-40 {
    max-width: 40%; }
  .tab-w-max-45 {
    max-width: 45%; }
  .tab-w-max-50 {
    max-width: 50%; }
  .tab-w-max-55 {
    max-width: 55%; }
  .tab-w-max-60 {
    max-width: 60%; }
  .tab-w-max-65 {
    max-width: 65%; }
  .tab-w-max-70 {
    max-width: 70%; }
  .tab-w-max-75 {
    max-width: 75%; }
  .tab-w-max-80 {
    max-width: 80%; }
  .tab-w-max-85 {
    max-width: 85%; }
  .tab-w-max-90 {
    max-width: 90%; }
  .tab-w-max-95 {
    max-width: 95%; }
  .tab-w-max-100 {
    max-width: 100%; }
  .tab-h-25 {
    height: 25%; }
  .tab-h-50 {
    height: 50%; }
  .tab-h-75 {
    height: 75%; }
  .tab-h-100 {
    height: 100%; }
  .tab-vh-25 {
    height: 25vh; }
  .tab-vh-50 {
    height: 50vh; }
  .tab-vh-75 {
    height: 75vh; }
  .tab-vh-100 {
    height: 100vh; }
  .tab-h-auto {
    height: auto; }
  .tab-h-min-vh-25 {
    min-height: 25vh; }
  .tab-h-min-vh-50 {
    min-height: 50vh; }
  .tab-h-min-vh-75 {
    min-height: 75vh; }
  .tab-h-min-vh-100 {
    min-height: 100vh; }
  .tab-w-px-10 {
    width: 10px; }
  .tab-w-px-20 {
    width: 20px; }
  .tab-w-px-30 {
    width: 30px; }
  .tab-w-px-40 {
    width: 40px; }
  .tab-w-px-50 {
    width: 50px; }
  .tab-w-px-60 {
    width: 60px; }
  .tab-w-px-70 {
    width: 70px; }
  .tab-w-px-80 {
    width: 80px; }
  .tab-w-px-90 {
    width: 90px; }
  .tab-w-px-100 {
    width: 100px; }
  .tab-w-px-200 {
    width: 200px; }
  .tab-w-px-300 {
    width: 300px; }
  .tab-w-px-400 {
    width: 400px; }
  .tab-w-px-500 {
    width: 500px; }
  .tab-w-px-600 {
    width: 600px; }
  .tab-w-px-700 {
    width: 700px; }
  .tab-w-px-800 {
    width: 800px; }
  .tab-w-px-900 {
    width: 900px; }
  .tab-w-px-1000 {
    width: 1000px; }
  .tab-h-px-10 {
    height: 10px; }
  .tab-h-px-20 {
    height: 20px; }
  .tab-h-px-30 {
    height: 30px; }
  .tab-h-px-40 {
    height: 40px; }
  .tab-h-px-50 {
    height: 50px; }
  .tab-h-px-60 {
    height: 60px; }
  .tab-h-px-70 {
    height: 70px; }
  .tab-h-px-80 {
    height: 80px; }
  .tab-h-px-90 {
    height: 90px; }
  .tab-h-px-100 {
    height: 100px; }
  .tab-h-px-200 {
    height: 200px; }
  .tab-h-px-300 {
    height: 300px; }
  .tab-h-px-400 {
    height: 400px; }
  .tab-h-px-500 {
    height: 500px; }
  .tab-h-px-600 {
    height: 600px; }
  .tab-h-px-700 {
    height: 700px; }
  .tab-h-px-800 {
    height: 800px; }
  .tab-h-px-900 {
    height: 900px; }
  .tab-h-px-1000 {
    height: 1000px; }
  .tab-m-none {
    margin: 0; }
  .tab-m-auto {
    margin: auto; }
  .tab-m-xxs {
    margin: .25rem; }
  .tab-m-xs {
    margin: .5rem; }
  .tab-m-sml {
    margin: 1rem; }
  .tab-m-mdm {
    margin: 2rem; }
  .tab-m-lrg {
    margin: 4rem; }
  .tab-m-xl {
    margin: 6rem; }
  .tab-m-xxl {
    margin: 8rem; }
  .tab-m-xxxl {
    margin: 10rem; }
  .tab-mt-none {
    margin-top: 0; }
  .tab-mt-auto {
    margin-top: auto; }
  .tab-mt-xxs {
    margin-top: .25rem; }
  .tab-mt-xs {
    margin-top: .5rem; }
  .tab-mt-sml {
    margin-top: 1rem; }
  .tab-mt-mdm {
    margin-top: 2rem; }
  .tab-mt-lrg {
    margin-top: 4rem; }
  .tab-mt-xl {
    margin-top: 6rem; }
  .tab-mt-xxl {
    margin-top: 8rem; }
  .tab-mt-xxxl {
    margin-top: 10rem; }
  .tab-mb-none {
    margin-bottom: 0; }
  .tab-mb-auto {
    margin-bottom: auto; }
  .tab-mb-xxs {
    margin-bottom: .25rem; }
  .tab-mb-xs {
    margin-bottom: .5rem; }
  .tab-mb-sml {
    margin-bottom: 1rem; }
  .tab-mb-mdm {
    margin-bottom: 2rem; }
  .tab-mb-lrg {
    margin-bottom: 4rem; }
  .tab-mb-xl {
    margin-bottom: 6rem; }
  .tab-mb-xxl {
    margin-bottom: 8rem; }
  .tab-mb-xxxl {
    margin-bottom: 10rem; }
  .tab-ml-none {
    margin-left: 0; }
  .tab-ml-auto {
    margin-left: auto; }
  .tab-ml-xxs {
    margin-left: .25rem; }
  .tab-ml-xs {
    margin-left: .5rem; }
  .tab-ml-sml {
    margin-left: 1rem; }
  .tab-ml-mdm {
    margin-left: 2rem; }
  .tab-ml-lrg {
    margin-left: 4rem; }
  .tab-ml-xl {
    margin-left: 6rem; }
  .tab-ml-xxl {
    margin-left: 8rem; }
  .tab-ml-xxxl {
    margin-left: 10rem; }
  .tab-mr-none {
    margin-right: 0; }
  .tab-mr-auto {
    margin-right: auto; }
  .tab-mr-xxs {
    margin-right: .25rem; }
  .tab-mr-xs {
    margin-right: .5rem; }
  .tab-mr-sml {
    margin-right: 1rem; }
  .tab-mr-mdm {
    margin-right: 2rem; }
  .tab-mr-lrg {
    margin-right: 4rem; }
  .tab-mr-xl {
    margin-right: 6rem; }
  .tab-mr-xxl {
    margin-right: 8rem; }
  .tab-mr-xxxl {
    margin-right: 10rem; }
  .tab-p-none {
    padding: 0; }
  .tab-p-auto {
    padding: auto; }
  .tab-p-xxs {
    padding: .25rem; }
  .tab-p-xs {
    padding: .5rem; }
  .tab-p-sml {
    padding: 1rem; }
  .tab-p-mdm {
    padding: 2rem; }
  .tab-p-lrg {
    padding: 4rem; }
  .tab-p-xl {
    padding: 6rem; }
  .tab-p-xxl {
    padding: 8rem; }
  .tab-p-xlxx {
    padding: 10rem; }
  .tab-pt-none {
    padding-top: 0; }
  .tab-pt-auto {
    padding-top: auto; }
  .tab-pt-xxs {
    padding-top: .25rem; }
  .tab-pt-xs {
    padding-top: .5rem; }
  .tab-pt-sml {
    padding-top: 1rem; }
  .tab-pt-mdm {
    padding-top: 2rem; }
  .tab-pt-lrg {
    padding-top: 4rem; }
  .tab-pt-xl {
    padding-top: 6rem; }
  .tab-pt-xxl {
    padding-top: 8rem; }
  .tab-pt-xxxl {
    padding-top: 10rem; }
  .tab-pb-none {
    padding-bottom: 0; }
  .tab-pb-auto {
    padding-bottom: auto; }
  .tab-pb-xxs {
    padding-bottom: .25rem; }
  .tab-pb-xs {
    padding-bottom: .5rem; }
  .tab-pb-sml {
    padding-bottom: 1rem; }
  .tab-pb-mdm {
    padding-bottom: 2rem; }
  .tab-pb-lrg {
    padding-bottom: 4rem; }
  .tab-pb-xl {
    padding-bottom: 6rem; }
  .tab-pb-xxl {
    padding-bottom: 8rem; }
  .tab-pb-xxxl {
    padding-bottom: 10rem; }
  .tab-pl-none {
    padding-left: 0; }
  .tab-pl-auto {
    padding-left: auto; }
  .tab-pl-xxs {
    padding-left: .25rem; }
  .tab-pl-xs {
    padding-left: .5rem; }
  .tab-pl-sml {
    padding-left: 1rem; }
  .tab-pl-mdm {
    padding-left: 2rem; }
  .tab-pl-lrg {
    padding-left: 4rem; }
  .tab-pl-xl {
    padding-left: 6rem; }
  .tab-pl-xxl {
    padding-left: 8rem; }
  .tab-pl-xxxl {
    padding-left: 10rem; }
  .tab-pr-none {
    padding-right: 0; }
  .tab-pr-auto {
    padding-right: auto; }
  .tab-pr-xxs {
    padding-right: .25rem; }
  .tab-pr-xs {
    padding-right: .5rem; }
  .tab-pr-sml {
    padding-right: 1rem; }
  .tab-pr-mdm {
    padding-right: 2rem; }
  .tab-pr-lrg {
    padding-right: 4rem; }
  .tab-pr-xl {
    padding-right: 6rem; }
  .tab-pr-xxl {
    padding-right: 8rem; }
  .tab-pr-xxxl {
    padding-right: 10rem; }
  .tab-fs-sml {
    font-size: .85em; }
  .tab-fs-reg {
    font-size: 1em; }
  .tab-fs-mdm {
    font-size: 1.5em; }
  .tab-fs-lrg {
    font-size: 2em; }
  .tab-fs-xl {
    font-size: 3.5em; }
  .tab-fs-xxl {
    font-size: 7em; }
  .tab-fw-light {
    font-weight: 300; }
  .tab-fw-reg {
    font-weight: 400; }
  .tab-fw-mdm {
    font-weight: 500; }
  .tab-fw-sb {
    font-weight: 600; }
  .tab-fw-bold {
    font-weight: 700; }
  .tab-txt-caps {
    text-transform: uppercase; }
  .tab-txt-underline {
    text-decoration: underline; }
  .tab-txt-left {
    text-align: left; }
  .tab-txt-right {
    text-align: right; }
  .tab-txt-center {
    text-align: center; }
  .tab-lh-sml {
    line-height: .5; }
  .tab-lh-reg {
    line-height: 1; }
  .tab-lh-mdm {
    line-height: 1.25; }
  .tab-lh-lrg {
    line-height: 1.5; }
  .tab-lh-xl {
    line-height: 2; }
  .tab-over-hidden {
    overflow: hidden; }
  .tab-hidden {
    visibility: hidden; }
  .tab-visible {
    visibility: visible; } }

@media (max-width: 550px) {
  .mob-brd-none {
    border-style: none; }
  .mob-brd {
    border: solid 1px #000; }
  .mob-brd-bot {
    border-bottom: solid 1px #000; }
  .mob-brd-top {
    border-top: solid 1px #000; }
  .mob-brd-right {
    border-right: solid 1px #000; }
  .mob-brd-left {
    border-left: solid 1px #000; }
  .mob-brd-w-1 {
    border-width: 1px; }
  .mob-brd-w-2 {
    border-width: 2px; }
  .mob-brd-w-3 {
    border-width: 3px; }
  .mob-brd-w-4 {
    border-width: 4px; }
  .mob-brd-w-5 {
    border-width: 5px; }
  .mob-brd-w-6 {
    border-width: 6px; }
  .mob-brd-w-7 {
    border-width: 7px; }
  .mob-brd-w-8 {
    border-width: 8px; }
  .mob-brd-w-9 {
    border-width: 9px; }
  .mob-brd-w-10 {
    border-width: 10px; }
  .mob-brd-clr-black {
    border-color: #000; }
  .mob-brd-clr-white {
    border-color: #fff; }
  .mob-brd-clr-darkgrey, .mob-brd-clr-lightgrey {
    border-color: #eee; }
  .mob-brd-clr-grey {
    border-color: #666; }
  .mob-brd-radius-50 {
    border-radius: 50%; }
  .mob-brd-radius-100 {
    border-radius: 100%; }
  .mob-clr-white {
    color: #fff; }
  .mob-clr-lightgrey {
    color: #eee; }
  .mob-clr-grey {
    color: #666; }
  .mob-clr-darkgrey {
    color: #333; }
  .mob-clr-black {
    color: #000; }
  .mob-bg-white {
    background-color: #fff; }
  .mob-bg-lightgrey {
    background-color: #eee; }
  .mob-bg-grey {
    background-color: #666; }
  .mob-bg-darkgrey {
    background-color: #333; }
  .mob-bg-black {
    background-color: #000; }
  .mob-pointer {
    cursor: pointer; }
  .mob-grab {
    cursor: grab; }
  .mob-not-allowed {
    cursor: not-allowed; }
  .mob-fit-cover {
    object-fit: cover; }
  .mob-fit-contain {
    object-fit: contain; }
  .mob-fit-none {
    object-fit: none; }
  .mob-fit-top-left {
    object-position: left top; }
  .mob-fit-top-right {
    object-position: right top; }
  .mob-fit-top-center {
    object-position: center top; }
  .mob-fit-bottom-left {
    object-position: left bottom; }
  .mob-fit-bottom-right {
    object-position: right bottom; }
  .mob-fit-bottom-center {
    object-position: center bottom; }
  .mob-fit-center-center {
    object-position: center center; }
  .mob-bg-cover {
    background-size: cover; }
  .mob-bg-no-repeat {
    background-repeat: no-repeat; }
  .mob-bg-fixed {
    background-attachment: fixed; }
  .mob-page-container {
    width: 2000px;
    max-width: 100%;
    margin: 0 auto; }
  .mob-sctn-container {
    width: 1500px;
    max-width: calc(100% - 6.5em);
    margin: 0 auto; } }

@media only screen and (max-width: 550px) and (max-width: 768px) {
  .mob-sctn-container {
    max-width: calc(100% - 4.5em); } }

@media (max-width: 550px) {
  .mob-flx {
    display: flex; }
  .mob-inline-flx {
    display: inline-flex; }
  .mob-block {
    display: block; }
  .mob-inline-block {
    display: inline-block; }
  .mob-none {
    display: none; }
  .mob-flx-col {
    flex-direction: column; }
  .mob-flx-col-rev {
    flex-direction: column-reverse; }
  .mob-flx-row {
    flex-direction: row; }
  .mob-flx-row-rev {
    flex-direction: row-reverse; }
  .mob-flx-wrap {
    flex-wrap: wrap; }
  .mob-flx-no-wrap {
    flex-wrap: nowrap; }
  .mob-flx-wrap-rev {
    flex-wrap: wrap-reverse; }
  .mob-just-center {
    justify-content: center; }
  .mob-just-start {
    justify-content: flex-start; }
  .mob-just-end {
    justify-content: flex-end; }
  .mob-just-bet {
    justify-content: space-between; }
  .mob-just-aro {
    justify-content: space-around; }
  .mob-ali-center {
    align-items: center; }
  .mob-ali-start {
    align-items: flex-start; }
  .mob-ali-end {
    align-items: flex-end; }
  .mob-self-mid {
    margin-left: auto;
    margin-right: auto; }
  .mob-self-center {
    margin: auto; }
  .mob-self-left {
    margin-right: auto; }
  .mob-self-right {
    margin-left: auto; }
  .mob-self-bot {
    margin-top: auto; }
  .mob-self-top {
    margin-bottom: auto; }
  .mob-order-0 {
    order: 0; }
  .mob-order-1 {
    order: 1; }
  .mob-order-2 {
    order: 2; }
  .mob-order-3 {
    order: 3; }
  .mob-order-4 {
    order: 4; }
  .mob-order-5 {
    order: 5; }
  .mob-order-6 {
    order: 6; }
  .mob-order-7 {
    order: 7; }
  .mob-order-8 {
    order: 8; }
  .mob-order-9 {
    order: 9; }
  .mob-order-10 {
    order: 10; }
  .mob-o-100 {
    opacity: 1; }
  .mob-o-90 {
    opacity: .9; }
  .mob-o-80 {
    opacity: .8; }
  .mob-o-70 {
    opacity: .7; }
  .mob-o-60 {
    opacity: .6; }
  .mob-o-50 {
    opacity: .5; }
  .mob-o-40 {
    opacity: .4; }
  .mob-o-30 {
    opacity: .3; }
  .mob-o-20 {
    opacity: .2; }
  .mob-o-10 {
    opacity: .1; }
  .mob-o-0 {
    opacity: 0; }
  .mob-relative {
    position: relative; }
  .mob-absolute {
    position: absolute; }
  .mob-fixed {
    position: fixed; }
  .mob-top-0 {
    top: 0; }
  .mob-top-5 {
    top: 5%; }
  .mob-top-10 {
    top: 10%; }
  .mob-top-20 {
    top: 20%; }
  .mob-top-30 {
    top: 30%; }
  .mob-top-40 {
    top: 40%; }
  .mob-top-50 {
    top: 50%; }
  .mob-top-60 {
    top: 60%; }
  .mob-top-70 {
    top: 70%; }
  .mob-top-80 {
    top: 80%; }
  .mob-top-90 {
    top: 90%; }
  .mob-top-100 {
    top: 100%; }
  .mob-bottom-0 {
    bottom: 0; }
  .mob-bottom-5 {
    bottom: 5%; }
  .mob-bottom-10 {
    bottom: 10%; }
  .mob-bottom-20 {
    bottom: 20%; }
  .mob-bottom-30 {
    bottom: 30%; }
  .mob-bottom-40 {
    bottom: 40%; }
  .mob-bottom-50 {
    bottom: 50%; }
  .mob-bottom-60 {
    bottom: 60%; }
  .mob-bottom-70 {
    bottom: 70%; }
  .mob-bottom-80 {
    bottom: 80%; }
  .mob-bottom-90 {
    bottom: 90%; }
  .mob-bottom-100 {
    bottom: 100%; }
  .mob-left-0 {
    left: 0; }
  .mob-left-5 {
    left: 5%; }
  .mob-left-10 {
    left: 10%; }
  .mob-left-20 {
    left: 20%; }
  .mob-left-30 {
    left: 30%; }
  .mob-left-40 {
    left: 40%; }
  .mob-left-50 {
    left: 50%; }
  .mob-left-60 {
    left: 60%; }
  .mob-left-70 {
    left: 70%; }
  .mob-left-80 {
    left: 80%; }
  .mob-left-90 {
    left: 90%; }
  .mob-left-100 {
    left: 100%; }
  .mob-right-0 {
    right: 0; }
  .mob-right-5 {
    right: 5%; }
  .mob-right-10 {
    right: 10%; }
  .mob-right-20 {
    right: 20%; }
  .mob-right-30 {
    right: 30%; }
  .mob-right-40 {
    right: 40%; }
  .mob-right-50 {
    right: 50%; }
  .mob-right-60 {
    right: 60%; }
  .mob-right-70 {
    right: 70%; }
  .mob-right-80 {
    right: 80%; }
  .mob-right-90 {
    right: 90%; }
  .mob-right-100 {
    right: 100%; }
  .mob-z-0 {
    z-index: 0; }
  .mob-z-1 {
    z-index: 1; }
  .mob-z-2 {
    z-index: 2; }
  .mob-z-3 {
    z-index: 3; }
  .mob-z-4 {
    z-index: 4; }
  .mob-z-5 {
    z-index: 5; }
  .mob-z-6 {
    z-index: 6; }
  .mob-z-7 {
    z-index: 7; }
  .mob-z-8 {
    z-index: 8; }
  .mob-z-9 {
    z-index: 9; }
  .mob-z-10 {
    z-index: 10; }
  .mob-z-999 {
    z-index: 999; }
  .mob-z-9999 {
    z-index: 9999; }
  .mob-w-5 {
    width: 5%; }
  .mob-w-10 {
    width: 10%; }
  .mob-w-15 {
    width: 15%; }
  .mob-w-20 {
    width: 20%; }
  .mob-w-25, .mob-w-quarter {
    width: 25%; }
  .mob-w-30 {
    width: 30%; }
  .mob-w-35 {
    width: 35%; }
  .mob-w-40 {
    width: 40%; }
  .mob-w-45 {
    width: 45%; }
  .mob-w-50, .mob-w-half {
    width: 50%; }
  .mob-w-55 {
    width: 55%; }
  .mob-w-60 {
    width: 60%; }
  .mob-w-65 {
    width: 65%; }
  .mob-w-70 {
    width: 70%; }
  .mob-w-75, .mob-w-three-quarters {
    width: 75%; }
  .mob-w-80 {
    width: 80%; }
  .mob-w-85 {
    width: 85%; }
  .mob-w-90 {
    width: 90%; }
  .mob-w-95 {
    width: 95%; }
  .mob-w-100 {
    width: 100%; }
  .mob-w-third {
    width: calc(100%/3); }
  .mob-w-two-thirds {
    width: calc(100%/1.5); }
  .mob-w-auto {
    width: auto; }
  .mob-w-max-5 {
    max-width: 5%; }
  .mob-w-max-10 {
    max-width: 10%; }
  .mob-w-max-15 {
    max-width: 15%; }
  .mob-w-max-20 {
    max-width: 20%; }
  .mob-w-max-25 {
    max-width: 25%; }
  .mob-w-max-30 {
    max-width: 30%; }
  .mob-w-max-35 {
    max-width: 35%; }
  .mob-w-max-40 {
    max-width: 40%; }
  .mob-w-max-45 {
    max-width: 45%; }
  .mob-w-max-50 {
    max-width: 50%; }
  .mob-w-max-55 {
    max-width: 55%; }
  .mob-w-max-60 {
    max-width: 60%; }
  .mob-w-max-65 {
    max-width: 65%; }
  .mob-w-max-70 {
    max-width: 70%; }
  .mob-w-max-75 {
    max-width: 75%; }
  .mob-w-max-80 {
    max-width: 80%; }
  .mob-w-max-85 {
    max-width: 85%; }
  .mob-w-max-90 {
    max-width: 90%; }
  .mob-w-max-95 {
    max-width: 95%; }
  .mob-w-max-100 {
    max-width: 100%; }
  .mob-h-25 {
    height: 25%; }
  .mob-h-50 {
    height: 50%; }
  .mob-h-75 {
    height: 75%; }
  .mob-h-100 {
    height: 100%; }
  .mob-vh-25 {
    height: 25vh; }
  .mob-vh-50 {
    height: 50vh; }
  .mob-vh-75 {
    height: 75vh; }
  .mob-vh-100 {
    height: 100vh; }
  .mob-h-auto {
    height: auto; }
  .mob-h-min-vh-25 {
    min-height: 25vh; }
  .mob-h-min-vh-50 {
    min-height: 50vh; }
  .mob-h-min-vh-75 {
    min-height: 75vh; }
  .mob-h-min-vh-100 {
    min-height: 100vh; }
  .mob-w-px-10 {
    width: 10px; }
  .mob-w-px-20 {
    width: 20px; }
  .mob-w-px-30 {
    width: 30px; }
  .mob-w-px-40 {
    width: 40px; }
  .mob-w-px-50 {
    width: 50px; }
  .mob-w-px-60 {
    width: 60px; }
  .mob-w-px-70 {
    width: 70px; }
  .mob-w-px-80 {
    width: 80px; }
  .mob-w-px-90 {
    width: 90px; }
  .mob-w-px-100 {
    width: 100px; }
  .mob-w-px-200 {
    width: 200px; }
  .mob-w-px-300 {
    width: 300px; }
  .mob-w-px-400 {
    width: 400px; }
  .mob-w-px-500 {
    width: 500px; }
  .mob-w-px-600 {
    width: 600px; }
  .mob-w-px-700 {
    width: 700px; }
  .mob-w-px-800 {
    width: 800px; }
  .mob-w-px-900 {
    width: 900px; }
  .mob-w-px-1000 {
    width: 1000px; }
  .mob-h-px-10 {
    height: 10px; }
  .mob-h-px-20 {
    height: 20px; }
  .mob-h-px-30 {
    height: 30px; }
  .mob-h-px-40 {
    height: 40px; }
  .mob-h-px-50 {
    height: 50px; }
  .mob-h-px-60 {
    height: 60px; }
  .mob-h-px-70 {
    height: 70px; }
  .mob-h-px-80 {
    height: 80px; }
  .mob-h-px-90 {
    height: 90px; }
  .mob-h-px-100 {
    height: 100px; }
  .mob-h-px-200 {
    height: 200px; }
  .mob-h-px-300 {
    height: 300px; }
  .mob-h-px-400 {
    height: 400px; }
  .mob-h-px-500 {
    height: 500px; }
  .mob-h-px-600 {
    height: 600px; }
  .mob-h-px-700 {
    height: 700px; }
  .mob-h-px-800 {
    height: 800px; }
  .mob-h-px-900 {
    height: 900px; }
  .mob-h-px-1000 {
    height: 1000px; }
  .mob-m-none {
    margin: 0; }
  .mob-m-auto {
    margin: auto; }
  .mob-m-xxs {
    margin: .25rem; }
  .mob-m-xs {
    margin: .5rem; }
  .mob-m-sml {
    margin: 1rem; }
  .mob-m-mdm {
    margin: 2rem; }
  .mob-m-lrg {
    margin: 4rem; }
  .mob-m-xl {
    margin: 6rem; }
  .mob-m-xxl {
    margin: 8rem; }
  .mob-m-xxxl {
    margin: 10rem; }
  .mob-mt-none {
    margin-top: 0; }
  .mob-mt-auto {
    margin-top: auto; }
  .mob-mt-xxs {
    margin-top: .25rem; }
  .mob-mt-xs {
    margin-top: .5rem; }
  .mob-mt-sml {
    margin-top: 1rem; }
  .mob-mt-mdm {
    margin-top: 2rem; }
  .mob-mt-lrg {
    margin-top: 4rem; }
  .mob-mt-xl {
    margin-top: 6rem; }
  .mob-mt-xxl {
    margin-top: 8rem; }
  .mob-mt-xxxl {
    margin-top: 10rem; }
  .mob-mb-none {
    margin-bottom: 0; }
  .mob-mb-auto {
    margin-bottom: auto; }
  .mob-mb-xxs {
    margin-bottom: .25rem; }
  .mob-mb-xs {
    margin-bottom: .5rem; }
  .mob-mb-sml {
    margin-bottom: 1rem; }
  .mob-mb-mdm {
    margin-bottom: 2rem; }
  .mob-mb-lrg {
    margin-bottom: 4rem; }
  .mob-mb-xl {
    margin-bottom: 6rem; }
  .mob-mb-xxl {
    margin-bottom: 8rem; }
  .mob-mb-xxxl {
    margin-bottom: 10rem; }
  .mob-ml-none {
    margin-left: 0; }
  .mob-ml-auto {
    margin-left: auto; }
  .mob-ml-xxs {
    margin-left: .25rem; }
  .mob-ml-xs {
    margin-left: .5rem; }
  .mob-ml-sml {
    margin-left: 1rem; }
  .mob-ml-mdm {
    margin-left: 2rem; }
  .mob-ml-lrg {
    margin-left: 4rem; }
  .mob-ml-xl {
    margin-left: 6rem; }
  .mob-ml-xxl {
    margin-left: 8rem; }
  .mob-ml-xxxl {
    margin-left: 10rem; }
  .mob-mr-none {
    margin-right: 0; }
  .mob-mr-auto {
    margin-right: auto; }
  .mob-mr-xxs {
    margin-right: .25rem; }
  .mob-mr-xs {
    margin-right: .5rem; }
  .mob-mr-sml {
    margin-right: 1rem; }
  .mob-mr-mdm {
    margin-right: 2rem; }
  .mob-mr-lrg {
    margin-right: 4rem; }
  .mob-mr-xl {
    margin-right: 6rem; }
  .mob-mr-xxl {
    margin-right: 8rem; }
  .mob-mr-xxxl {
    margin-right: 10rem; }
  .mob-p-none {
    padding: 0; }
  .mob-p-auto {
    padding: auto; }
  .mob-p-xxs {
    padding: .25rem; }
  .mob-p-xs {
    padding: .5rem; }
  .mob-p-sml {
    padding: 1rem; }
  .mob-p-mdm {
    padding: 2rem; }
  .mob-p-lrg {
    padding: 4rem; }
  .mob-p-xl {
    padding: 6rem; }
  .mob-p-xxl {
    padding: 8rem; }
  .mob-p-xlxx {
    padding: 10rem; }
  .mob-pt-none {
    padding-top: 0; }
  .mob-pt-auto {
    padding-top: auto; }
  .mob-pt-xxs {
    padding-top: .25rem; }
  .mob-pt-xs {
    padding-top: .5rem; }
  .mob-pt-sml {
    padding-top: 1rem; }
  .mob-pt-mdm {
    padding-top: 2rem; }
  .mob-pt-lrg {
    padding-top: 4rem; }
  .mob-pt-xl {
    padding-top: 6rem; }
  .mob-pt-xxl {
    padding-top: 8rem; }
  .mob-pt-xxxl {
    padding-top: 10rem; }
  .mob-pb-none {
    padding-bottom: 0; }
  .mob-pb-auto {
    padding-bottom: auto; }
  .mob-pb-xxs {
    padding-bottom: .25rem; }
  .mob-pb-xs {
    padding-bottom: .5rem; }
  .mob-pb-sml {
    padding-bottom: 1rem; }
  .mob-pb-mdm {
    padding-bottom: 2rem; }
  .mob-pb-lrg {
    padding-bottom: 4rem; }
  .mob-pb-xl {
    padding-bottom: 6rem; }
  .mob-pb-xxl {
    padding-bottom: 8rem; }
  .mob-pb-xxxl {
    padding-bottom: 10rem; }
  .mob-pl-none {
    padding-left: 0; }
  .mob-pl-auto {
    padding-left: auto; }
  .mob-pl-xxs {
    padding-left: .25rem; }
  .mob-pl-xs {
    padding-left: .5rem; }
  .mob-pl-sml {
    padding-left: 1rem; }
  .mob-pl-mdm {
    padding-left: 2rem; }
  .mob-pl-lrg {
    padding-left: 4rem; }
  .mob-pl-xl {
    padding-left: 6rem; }
  .mob-pl-xxl {
    padding-left: 8rem; }
  .mob-pl-xxxl {
    padding-left: 10rem; }
  .mob-pr-none {
    padding-right: 0; }
  .mob-pr-auto {
    padding-right: auto; }
  .mob-pr-xxs {
    padding-right: .25rem; }
  .mob-pr-xs {
    padding-right: .5rem; }
  .mob-pr-sml {
    padding-right: 1rem; }
  .mob-pr-mdm {
    padding-right: 2rem; }
  .mob-pr-lrg {
    padding-right: 4rem; }
  .mob-pr-xl {
    padding-right: 6rem; }
  .mob-pr-xxl {
    padding-right: 8rem; }
  .mob-pr-xxxl {
    padding-right: 10rem; }
  .mob-fs-sml {
    font-size: .85em; }
  .mob-fs-reg {
    font-size: 1em; }
  .mob-fs-mdm {
    font-size: 1.5em; }
  .mob-fs-lrg {
    font-size: 2em; }
  .mob-fs-xl {
    font-size: 3.5em; }
  .mob-fs-xxl {
    font-size: 7em; }
  .mob-fw-light {
    font-weight: 300; }
  .mob-fw-reg {
    font-weight: 400; }
  .mob-fw-mdm {
    font-weight: 500; }
  .mob-fw-sb {
    font-weight: 600; }
  .mob-fw-bold {
    font-weight: 700; }
  .mob-txt-caps {
    text-transform: uppercase; }
  .mob-txt-underline {
    text-decoration: underline; }
  .mob-txt-left {
    text-align: left; }
  .mob-txt-right {
    text-align: right; }
  .mob-txt-center {
    text-align: center; }
  .mob-lh-sml {
    line-height: .5; }
  .mob-lh-reg {
    line-height: 1; }
  .mob-lh-mdm {
    line-height: 1.25; }
  .mob-lh-lrg {
    line-height: 1.5; }
  .mob-lh-xl {
    line-height: 2; }
  .mob-over-hidden {
    overflow: hidden; }
  .mob-hidden {
    visibility: hidden; }
  .mob-visible {
    visibility: visible; } }

@media (max-width: 400px) {
  .watch-brd-none {
    border-style: none; }
  .watch-brd {
    border: solid 1px #000; }
  .watch-brd-bot {
    border-bottom: solid 1px #000; }
  .watch-brd-top {
    border-top: solid 1px #000; }
  .watch-brd-right {
    border-right: solid 1px #000; }
  .watch-brd-left {
    border-left: solid 1px #000; }
  .watch-brd-w-1 {
    border-width: 1px; }
  .watch-brd-w-2 {
    border-width: 2px; }
  .watch-brd-w-3 {
    border-width: 3px; }
  .watch-brd-w-4 {
    border-width: 4px; }
  .watch-brd-w-5 {
    border-width: 5px; }
  .watch-brd-w-6 {
    border-width: 6px; }
  .watch-brd-w-7 {
    border-width: 7px; }
  .watch-brd-w-8 {
    border-width: 8px; }
  .watch-brd-w-9 {
    border-width: 9px; }
  .watch-brd-w-10 {
    border-width: 10px; }
  .watch-brd-clr-black {
    border-color: #000; }
  .watch-brd-clr-white {
    border-color: #fff; }
  .watch-brd-clr-darkgrey, .watch-brd-clr-lightgrey {
    border-color: #eee; }
  .watch-brd-clr-grey {
    border-color: #666; }
  .watch-brd-radius-50 {
    border-radius: 50%; }
  .watch-brd-radius-100 {
    border-radius: 100%; }
  .watch-clr-white {
    color: #fff; }
  .watch-clr-lightgrey {
    color: #eee; }
  .watch-clr-grey {
    color: #666; }
  .watch-clr-darkgrey {
    color: #333; }
  .watch-clr-black {
    color: #000; }
  .watch-bg-white {
    background-color: #fff; }
  .watch-bg-lightgrey {
    background-color: #eee; }
  .watch-bg-grey {
    background-color: #666; }
  .watch-bg-darkgrey {
    background-color: #333; }
  .watch-bg-black {
    background-color: #000; }
  .watch-pointer {
    cursor: pointer; }
  .watch-grab {
    cursor: grab; }
  .watch-not-allowed {
    cursor: not-allowed; }
  .watch-fit-cover {
    object-fit: cover; }
  .watch-fit-contain {
    object-fit: contain; }
  .watch-fit-none {
    object-fit: none; }
  .watch-fit-top-left {
    object-position: left top; }
  .watch-fit-top-right {
    object-position: right top; }
  .watch-fit-top-center {
    object-position: center top; }
  .watch-fit-bottom-left {
    object-position: left bottom; }
  .watch-fit-bottom-right {
    object-position: right bottom; }
  .watch-fit-bottom-center {
    object-position: center bottom; }
  .watch-fit-center-center {
    object-position: center center; }
  .watch-bg-cover {
    background-size: cover; }
  .watch-bg-no-repeat {
    background-repeat: no-repeat; }
  .watch-bg-fixed {
    background-attachment: fixed; }
  .watch-page-container {
    width: 2000px;
    max-width: 100%;
    margin: 0 auto; }
  .watch-sctn-container {
    width: 1500px;
    max-width: calc(100% - 6.5em);
    margin: 0 auto; } }

@media only screen and (max-width: 400px) and (max-width: 768px) {
  .watch-sctn-container {
    max-width: calc(100% - 4.5em); } }

@media (max-width: 400px) {
  .watch-flx {
    display: flex; }
  .watch-inline-flx {
    display: inline-flex; }
  .watch-block {
    display: block; }
  .watch-inline-block {
    display: inline-block; }
  .watch-none {
    display: none; }
  .watch-flx-col {
    flex-direction: column; }
  .watch-flx-col-rev {
    flex-direction: column-reverse; }
  .watch-flx-row {
    flex-direction: row; }
  .watch-flx-row-rev {
    flex-direction: row-reverse; }
  .watch-flx-wrap {
    flex-wrap: wrap; }
  .watch-flx-no-wrap {
    flex-wrap: nowrap; }
  .watch-flx-wrap-rev {
    flex-wrap: wrap-reverse; }
  .watch-just-center {
    justify-content: center; }
  .watch-just-start {
    justify-content: flex-start; }
  .watch-just-end {
    justify-content: flex-end; }
  .watch-just-bet {
    justify-content: space-between; }
  .watch-just-aro {
    justify-content: space-around; }
  .watch-ali-center {
    align-items: center; }
  .watch-ali-start {
    align-items: flex-start; }
  .watch-ali-end {
    align-items: flex-end; }
  .watch-self-mid {
    margin-left: auto;
    margin-right: auto; }
  .watch-self-center {
    margin: auto; }
  .watch-self-left {
    margin-right: auto; }
  .watch-self-right {
    margin-left: auto; }
  .watch-self-bot {
    margin-top: auto; }
  .watch-self-top {
    margin-bottom: auto; }
  .watch-order-0 {
    order: 0; }
  .watch-order-1 {
    order: 1; }
  .watch-order-2 {
    order: 2; }
  .watch-order-3 {
    order: 3; }
  .watch-order-4 {
    order: 4; }
  .watch-order-5 {
    order: 5; }
  .watch-order-6 {
    order: 6; }
  .watch-order-7 {
    order: 7; }
  .watch-order-8 {
    order: 8; }
  .watch-order-9 {
    order: 9; }
  .watch-order-10 {
    order: 10; }
  .watch-o-100 {
    opacity: 1; }
  .watch-o-90 {
    opacity: .9; }
  .watch-o-80 {
    opacity: .8; }
  .watch-o-70 {
    opacity: .7; }
  .watch-o-60 {
    opacity: .6; }
  .watch-o-50 {
    opacity: .5; }
  .watch-o-40 {
    opacity: .4; }
  .watch-o-30 {
    opacity: .3; }
  .watch-o-20 {
    opacity: .2; }
  .watch-o-10 {
    opacity: .1; }
  .watch-o-0 {
    opacity: 0; }
  .watch-relative {
    position: relative; }
  .watch-absolute {
    position: absolute; }
  .watch-fixed {
    position: fixed; }
  .watch-top-0 {
    top: 0; }
  .watch-top-5 {
    top: 5%; }
  .watch-top-10 {
    top: 10%; }
  .watch-top-20 {
    top: 20%; }
  .watch-top-30 {
    top: 30%; }
  .watch-top-40 {
    top: 40%; }
  .watch-top-50 {
    top: 50%; }
  .watch-top-60 {
    top: 60%; }
  .watch-top-70 {
    top: 70%; }
  .watch-top-80 {
    top: 80%; }
  .watch-top-90 {
    top: 90%; }
  .watch-top-100 {
    top: 100%; }
  .watch-bottom-0 {
    bottom: 0; }
  .watch-bottom-5 {
    bottom: 5%; }
  .watch-bottom-10 {
    bottom: 10%; }
  .watch-bottom-20 {
    bottom: 20%; }
  .watch-bottom-30 {
    bottom: 30%; }
  .watch-bottom-40 {
    bottom: 40%; }
  .watch-bottom-50 {
    bottom: 50%; }
  .watch-bottom-60 {
    bottom: 60%; }
  .watch-bottom-70 {
    bottom: 70%; }
  .watch-bottom-80 {
    bottom: 80%; }
  .watch-bottom-90 {
    bottom: 90%; }
  .watch-bottom-100 {
    bottom: 100%; }
  .watch-left-0 {
    left: 0; }
  .watch-left-5 {
    left: 5%; }
  .watch-left-10 {
    left: 10%; }
  .watch-left-20 {
    left: 20%; }
  .watch-left-30 {
    left: 30%; }
  .watch-left-40 {
    left: 40%; }
  .watch-left-50 {
    left: 50%; }
  .watch-left-60 {
    left: 60%; }
  .watch-left-70 {
    left: 70%; }
  .watch-left-80 {
    left: 80%; }
  .watch-left-90 {
    left: 90%; }
  .watch-left-100 {
    left: 100%; }
  .watch-right-0 {
    right: 0; }
  .watch-right-5 {
    right: 5%; }
  .watch-right-10 {
    right: 10%; }
  .watch-right-20 {
    right: 20%; }
  .watch-right-30 {
    right: 30%; }
  .watch-right-40 {
    right: 40%; }
  .watch-right-50 {
    right: 50%; }
  .watch-right-60 {
    right: 60%; }
  .watch-right-70 {
    right: 70%; }
  .watch-right-80 {
    right: 80%; }
  .watch-right-90 {
    right: 90%; }
  .watch-right-100 {
    right: 100%; }
  .watch-z-0 {
    z-index: 0; }
  .watch-z-1 {
    z-index: 1; }
  .watch-z-2 {
    z-index: 2; }
  .watch-z-3 {
    z-index: 3; }
  .watch-z-4 {
    z-index: 4; }
  .watch-z-5 {
    z-index: 5; }
  .watch-z-6 {
    z-index: 6; }
  .watch-z-7 {
    z-index: 7; }
  .watch-z-8 {
    z-index: 8; }
  .watch-z-9 {
    z-index: 9; }
  .watch-z-10 {
    z-index: 10; }
  .watch-z-999 {
    z-index: 999; }
  .watch-z-9999 {
    z-index: 9999; }
  .watch-w-5 {
    width: 5%; }
  .watch-w-10 {
    width: 10%; }
  .watch-w-15 {
    width: 15%; }
  .watch-w-20 {
    width: 20%; }
  .watch-w-25, .watch-w-quarter {
    width: 25%; }
  .watch-w-30 {
    width: 30%; }
  .watch-w-35 {
    width: 35%; }
  .watch-w-40 {
    width: 40%; }
  .watch-w-45 {
    width: 45%; }
  .watch-w-50, .watch-w-half {
    width: 50%; }
  .watch-w-55 {
    width: 55%; }
  .watch-w-60 {
    width: 60%; }
  .watch-w-65 {
    width: 65%; }
  .watch-w-70 {
    width: 70%; }
  .watch-w-75, .watch-w-three-quarters {
    width: 75%; }
  .watch-w-80 {
    width: 80%; }
  .watch-w-85 {
    width: 85%; }
  .watch-w-90 {
    width: 90%; }
  .watch-w-95 {
    width: 95%; }
  .watch-w-100 {
    width: 100%; }
  .watch-w-third {
    width: calc(100%/3); }
  .watch-w-two-thirds {
    width: calc(100%/1.5); }
  .watch-w-auto {
    width: auto; }
  .watch-w-max-5 {
    max-width: 5%; }
  .watch-w-max-10 {
    max-width: 10%; }
  .watch-w-max-15 {
    max-width: 15%; }
  .watch-w-max-20 {
    max-width: 20%; }
  .watch-w-max-25 {
    max-width: 25%; }
  .watch-w-max-30 {
    max-width: 30%; }
  .watch-w-max-35 {
    max-width: 35%; }
  .watch-w-max-40 {
    max-width: 40%; }
  .watch-w-max-45 {
    max-width: 45%; }
  .watch-w-max-50 {
    max-width: 50%; }
  .watch-w-max-55 {
    max-width: 55%; }
  .watch-w-max-60 {
    max-width: 60%; }
  .watch-w-max-65 {
    max-width: 65%; }
  .watch-w-max-70 {
    max-width: 70%; }
  .watch-w-max-75 {
    max-width: 75%; }
  .watch-w-max-80 {
    max-width: 80%; }
  .watch-w-max-85 {
    max-width: 85%; }
  .watch-w-max-90 {
    max-width: 90%; }
  .watch-w-max-95 {
    max-width: 95%; }
  .watch-w-max-100 {
    max-width: 100%; }
  .watch-h-25 {
    height: 25%; }
  .watch-h-50 {
    height: 50%; }
  .watch-h-75 {
    height: 75%; }
  .watch-h-100 {
    height: 100%; }
  .watch-vh-25 {
    height: 25vh; }
  .watch-vh-50 {
    height: 50vh; }
  .watch-vh-75 {
    height: 75vh; }
  .watch-vh-100 {
    height: 100vh; }
  .watch-h-auto {
    height: auto; }
  .watch-h-min-vh-25 {
    min-height: 25vh; }
  .watch-h-min-vh-50 {
    min-height: 50vh; }
  .watch-h-min-vh-75 {
    min-height: 75vh; }
  .watch-h-min-vh-100 {
    min-height: 100vh; }
  .watch-w-px-10 {
    width: 10px; }
  .watch-w-px-20 {
    width: 20px; }
  .watch-w-px-30 {
    width: 30px; }
  .watch-w-px-40 {
    width: 40px; }
  .watch-w-px-50 {
    width: 50px; }
  .watch-w-px-60 {
    width: 60px; }
  .watch-w-px-70 {
    width: 70px; }
  .watch-w-px-80 {
    width: 80px; }
  .watch-w-px-90 {
    width: 90px; }
  .watch-w-px-100 {
    width: 100px; }
  .watch-w-px-200 {
    width: 200px; }
  .watch-w-px-300 {
    width: 300px; }
  .watch-w-px-400 {
    width: 400px; }
  .watch-w-px-500 {
    width: 500px; }
  .watch-w-px-600 {
    width: 600px; }
  .watch-w-px-700 {
    width: 700px; }
  .watch-w-px-800 {
    width: 800px; }
  .watch-w-px-900 {
    width: 900px; }
  .watch-w-px-1000 {
    width: 1000px; }
  .watch-h-px-10 {
    height: 10px; }
  .watch-h-px-20 {
    height: 20px; }
  .watch-h-px-30 {
    height: 30px; }
  .watch-h-px-40 {
    height: 40px; }
  .watch-h-px-50 {
    height: 50px; }
  .watch-h-px-60 {
    height: 60px; }
  .watch-h-px-70 {
    height: 70px; }
  .watch-h-px-80 {
    height: 80px; }
  .watch-h-px-90 {
    height: 90px; }
  .watch-h-px-100 {
    height: 100px; }
  .watch-h-px-200 {
    height: 200px; }
  .watch-h-px-300 {
    height: 300px; }
  .watch-h-px-400 {
    height: 400px; }
  .watch-h-px-500 {
    height: 500px; }
  .watch-h-px-600 {
    height: 600px; }
  .watch-h-px-700 {
    height: 700px; }
  .watch-h-px-800 {
    height: 800px; }
  .watch-h-px-900 {
    height: 900px; }
  .watch-h-px-1000 {
    height: 1000px; }
  .watch-m-none {
    margin: 0; }
  .watch-m-auto {
    margin: auto; }
  .watch-m-xxs {
    margin: .25rem; }
  .watch-m-xs {
    margin: .5rem; }
  .watch-m-sml {
    margin: 1rem; }
  .watch-m-mdm {
    margin: 2rem; }
  .watch-m-lrg {
    margin: 4rem; }
  .watch-m-xl {
    margin: 6rem; }
  .watch-m-xxl {
    margin: 8rem; }
  .watch-m-xxxl {
    margin: 10rem; }
  .watch-mt-none {
    margin-top: 0; }
  .watch-mt-auto {
    margin-top: auto; }
  .watch-mt-xxs {
    margin-top: .25rem; }
  .watch-mt-xs {
    margin-top: .5rem; }
  .watch-mt-sml {
    margin-top: 1rem; }
  .watch-mt-mdm {
    margin-top: 2rem; }
  .watch-mt-lrg {
    margin-top: 4rem; }
  .watch-mt-xl {
    margin-top: 6rem; }
  .watch-mt-xxl {
    margin-top: 8rem; }
  .watch-mt-xxxl {
    margin-top: 10rem; }
  .watch-mb-none {
    margin-bottom: 0; }
  .watch-mb-auto {
    margin-bottom: auto; }
  .watch-mb-xxs {
    margin-bottom: .25rem; }
  .watch-mb-xs {
    margin-bottom: .5rem; }
  .watch-mb-sml {
    margin-bottom: 1rem; }
  .watch-mb-mdm {
    margin-bottom: 2rem; }
  .watch-mb-lrg {
    margin-bottom: 4rem; }
  .watch-mb-xl {
    margin-bottom: 6rem; }
  .watch-mb-xxl {
    margin-bottom: 8rem; }
  .watch-mb-xxxl {
    margin-bottom: 10rem; }
  .watch-ml-none {
    margin-left: 0; }
  .watch-ml-auto {
    margin-left: auto; }
  .watch-ml-xxs {
    margin-left: .25rem; }
  .watch-ml-xs {
    margin-left: .5rem; }
  .watch-ml-sml {
    margin-left: 1rem; }
  .watch-ml-mdm {
    margin-left: 2rem; }
  .watch-ml-lrg {
    margin-left: 4rem; }
  .watch-ml-xl {
    margin-left: 6rem; }
  .watch-ml-xxl {
    margin-left: 8rem; }
  .watch-ml-xxxl {
    margin-left: 10rem; }
  .watch-mr-none {
    margin-right: 0; }
  .watch-mr-auto {
    margin-right: auto; }
  .watch-mr-xxs {
    margin-right: .25rem; }
  .watch-mr-xs {
    margin-right: .5rem; }
  .watch-mr-sml {
    margin-right: 1rem; }
  .watch-mr-mdm {
    margin-right: 2rem; }
  .watch-mr-lrg {
    margin-right: 4rem; }
  .watch-mr-xl {
    margin-right: 6rem; }
  .watch-mr-xxl {
    margin-right: 8rem; }
  .watch-mr-xxxl {
    margin-right: 10rem; }
  .watch-p-none {
    padding: 0; }
  .watch-p-auto {
    padding: auto; }
  .watch-p-xxs {
    padding: .25rem; }
  .watch-p-xs {
    padding: .5rem; }
  .watch-p-sml {
    padding: 1rem; }
  .watch-p-mdm {
    padding: 2rem; }
  .watch-p-lrg {
    padding: 4rem; }
  .watch-p-xl {
    padding: 6rem; }
  .watch-p-xxl {
    padding: 8rem; }
  .watch-p-xlxx {
    padding: 10rem; }
  .watch-pt-none {
    padding-top: 0; }
  .watch-pt-auto {
    padding-top: auto; }
  .watch-pt-xxs {
    padding-top: .25rem; }
  .watch-pt-xs {
    padding-top: .5rem; }
  .watch-pt-sml {
    padding-top: 1rem; }
  .watch-pt-mdm {
    padding-top: 2rem; }
  .watch-pt-lrg {
    padding-top: 4rem; }
  .watch-pt-xl {
    padding-top: 6rem; }
  .watch-pt-xxl {
    padding-top: 8rem; }
  .watch-pt-xxxl {
    padding-top: 10rem; }
  .watch-pb-none {
    padding-bottom: 0; }
  .watch-pb-auto {
    padding-bottom: auto; }
  .watch-pb-xxs {
    padding-bottom: .25rem; }
  .watch-pb-xs {
    padding-bottom: .5rem; }
  .watch-pb-sml {
    padding-bottom: 1rem; }
  .watch-pb-mdm {
    padding-bottom: 2rem; }
  .watch-pb-lrg {
    padding-bottom: 4rem; }
  .watch-pb-xl {
    padding-bottom: 6rem; }
  .watch-pb-xxl {
    padding-bottom: 8rem; }
  .watch-pb-xxxl {
    padding-bottom: 10rem; }
  .watch-pl-none {
    padding-left: 0; }
  .watch-pl-auto {
    padding-left: auto; }
  .watch-pl-xxs {
    padding-left: .25rem; }
  .watch-pl-xs {
    padding-left: .5rem; }
  .watch-pl-sml {
    padding-left: 1rem; }
  .watch-pl-mdm {
    padding-left: 2rem; }
  .watch-pl-lrg {
    padding-left: 4rem; }
  .watch-pl-xl {
    padding-left: 6rem; }
  .watch-pl-xxl {
    padding-left: 8rem; }
  .watch-pl-xxxl {
    padding-left: 10rem; }
  .watch-pr-none {
    padding-right: 0; }
  .watch-pr-auto {
    padding-right: auto; }
  .watch-pr-xxs {
    padding-right: .25rem; }
  .watch-pr-xs {
    padding-right: .5rem; }
  .watch-pr-sml {
    padding-right: 1rem; }
  .watch-pr-mdm {
    padding-right: 2rem; }
  .watch-pr-lrg {
    padding-right: 4rem; }
  .watch-pr-xl {
    padding-right: 6rem; }
  .watch-pr-xxl {
    padding-right: 8rem; }
  .watch-pr-xxxl {
    padding-right: 10rem; }
  .watch-fs-sml {
    font-size: .85em; }
  .watch-fs-reg {
    font-size: 1em; }
  .watch-fs-mdm {
    font-size: 1.5em; }
  .watch-fs-lrg {
    font-size: 2em; }
  .watch-fs-xl {
    font-size: 3.5em; }
  .watch-fs-xxl {
    font-size: 7em; }
  .watch-fw-light {
    font-weight: 300; }
  .watch-fw-reg {
    font-weight: 400; }
  .watch-fw-mdm {
    font-weight: 500; }
  .watch-fw-sb {
    font-weight: 600; }
  .watch-fw-bold {
    font-weight: 700; }
  .watch-txt-caps {
    text-transform: uppercase; }
  .watch-txt-underline {
    text-decoration: underline; }
  .watch-txt-left {
    text-align: left; }
  .watch-txt-right {
    text-align: right; }
  .watch-txt-center {
    text-align: center; }
  .watch-lh-sml {
    line-height: .5; }
  .watch-lh-reg {
    line-height: 1; }
  .watch-lh-mdm {
    line-height: 1.25; }
  .watch-lh-lrg {
    line-height: 1.5; }
  .watch-lh-xl {
    line-height: 2; }
  .watch-over-hidden {
    overflow: hidden; }
  .watch-hidden {
    visibility: hidden; }
  .watch-visible {
    visibility: visible; } }

@keyframes fadeIn {
  99% {
    visibility: hidden; }
  100% {
    visibility: visible; } }

.btn, .button {
  border: 2px solid #C5B358;
  padding: 1rem 2rem;
  font-weight: 700;
  display: inline-block;
  color: #272727;
  font-weight: 400;
  text-transform: uppercase;
  font-family: mongoose, sans-serif;
  font-size: 1.875em;
  line-height: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 192px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  .btn:before, .button:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #C5B358;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  .btn:hover:before, .btn:focus:before, .btn:active:before, .button:hover:before, .button:focus:before, .button:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  .btn.clr-white, .button.clr-white {
    color: #FFF; }
  .btn.menu, .button.menu {
    font-size: 1.875rem; }

.header_nav li .btn.menu {
  font-size: 1.875rem; }

footer {
  background: #272727; }
  @media (max-width: 1280px) {
    footer .wrap {
      width: 85%; } }
  @media (max-width: 1200px) {
    footer .wrap {
      width: 100%;
      margin-left: 120px; } }
  @media (max-width: 1024px) {
    footer .wrap {
      width: 100%;
      margin-left: 88px; } }
  @media (max-width: 768px) {
    footer .wrap {
      width: 100%;
      margin-left: 2rem; } }
  @media (max-width: 550px) {
    footer .wrap {
      margin-left: 0; } }
  footer .footer-logo {
    height: 100%;
    width: 120px;
    background: #B5121B;
    left: 0;
    top: 0; }
    @media (max-width: 768px) {
      footer .footer-logo {
        width: 80px; } }
  footer .addresses {
    width: 50%; }
    footer .addresses .wrap {
      width: 80%; }
    @media (max-width: 1530px) {
      footer .addresses .wrap {
        width: 90%; } }
    @media (max-width: 1280px) {
      footer .addresses .wrap {
        width: 92%; } }
    @media (max-width: 1400px) {
      footer .addresses {
        border: none;
        width: 100%;
        order: 3; }
        footer .addresses .wrap {
          width: 100%;
          margin-left: 0; } }
    @media (max-width: 768px) {
      footer .addresses {
        width: 100%;
        order: 2; } }
  footer .menu {
    width: 20%; }
    @media (max-width: 1400px) {
      footer .menu {
        width: 50%; } }
    @media (max-width: 768px) {
      footer .menu {
        width: 100%; } }
  footer .contact {
    width: 30%; }
    @media (max-width: 1200px) {
      footer .contact {
        width: 50%;
        text-align: left; } }
    @media (max-width: 768px) {
      footer .contact {
        width: 100%;
        order: 3; } }

.copyright-container a {
  font-family: "Roboto Condensed",sans-serif; }

#questions p {
  width: 100%; }

.screen-reader-response {
  text-align: center;
  margin-bottom: 1.5rem; }

.wpcf7-mail-sent-ok {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem; }

input[type="text"],
textarea,
.select-css {
  font-size: 18px;
  background: #F7F7F7;
  border-color: #A4A4A4; }
  input[type="text"]:focus,
  textarea:focus,
  .select-css:focus {
    outline: none; }

input[type="text"],
.select-css {
  height: 56px; }

textarea {
  resize: none;
  border-color: #A4A4A4 !important; }

button[type="submit"] {
  background: #FFF; }
  button[type="submit"]:focus {
    outline: none; }
  button[type="submit"]:hover {
    cursor: pointer; }

::-webkit-input-placeholder {
  /* Edge */
  font-size: 18px;
  color: #3E3E3E; }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 18px;
  color: #3E3E3E; }

::placeholder {
  font-size: 18px;
  color: #3E3E3E;
  font-family: source-sans-pro, sans-serif;
  font-size: 20px; }

.select-css {
  display: block;
  font-size: 1.25rem;
  font-family: sans-serif;
  padding: .6em 1.4em .5em .8em;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: source-sans-pro, sans-serif;
  appearance: none;
  background: url(../../images/icons/arrow-select.svg) #F7F7F7;
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: 20px 14px; }

.select-css::-ms-expand {
  display: none; }

.select-css:focus {
  box-shadow: none;
  outline: none; }

.select-css option {
  font-weight: normal; }

.label {
  font-size: 18px;
  color: #3E3E3E;
  font-family: source-sans-pro, sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
  display: inline-block; }

.box {
  background: #F7F7F7;
  border: 1px solid #A4A4A4; }

label.error {
  display: none;
  color: #dc3545;
  font-size: 16px;
  font-family: "Roboto Condensed",sans-serif; }

.error + .error,
.box + p .error,
.wpcf7-textarea.error + .error {
  display: block !important;
  margin-bottom: 12px;
  margin-top: -12px; }

.wpcf7-textarea.error + .error {
  margin-top: -22px; }

.form-checkbox,
.wpcf7-list-item {
  display: block;
  position: relative;
  padding-left: 35px;
  height: 24px;
  margin-bottom: 16px;
  width: auto;
  color: #3E3E3E;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .form-checkbox label,
  .wpcf7-list-item label {
    display: flex;
    width: auto; }
  .form-checkbox input,
  .wpcf7-list-item input {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #C5B358;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    cursor: pointer; }
    .form-checkbox input:checked,
    .wpcf7-list-item input:checked {
      background: #C5B358; }

.wpcf7-not-valid-tip,
.screen-reader-response {
  display: none !important; }

form .wpcf7-response-output {
  text-align: center;
  display: block !important;
  width: 100%;
  margin-top: 32px; }

.architect_content {
  max-width: 416px; }

.w-max-430 {
  max-width: 398px; }
  @media (max-width: 768px) {
    .w-max-430 {
      max-width: 100%; } }

.bg-dark {
  background: #272727; }

.bg-yellow {
  background: #C5B358; }

.clr-gray {
  color: #3E3E3E; }

.brd-clr-yellow {
  border-color: #C5B358; }

.fw-bold {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.container .mix {
  display: none; }

.ml-minus-xl {
  margin-left: -10rem; }
  @media (max-width: 1200px) {
    .ml-minus-xl {
      margin-left: -4rem; } }

.w-logo {
  width: 114px; }
  @media (max-width: 768px) {
    .w-logo {
      width: 80px; } }
  @media (max-width: 600px) {
    .w-logo {
      width: 56px; } }

@media (max-width: 768px) {
  .tab-none {
    display: none; }
  .tab-bg-transparent {
    background: transparent; } }

* {
  box-sizing: border-box; }

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #3E3E3E; }

body {
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.25; }

.page-container {
  max-width: 100%;
  margin: 0 auto; }

.sctn-container {
  width: 1640px;
  max-width: calc(100% - 8rem);
  margin: 0 auto; }
  @media (max-width: 1200px) {
    .sctn-container {
      max-width: calc(100% - 4rem); } }

p, a, li {
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: source-sans-pro, sans-serif; }
  @media (max-width: 1024px) {
    p, a, li {
      font-size: 1.25rem; } }
  @media (max-width: 768px) {
    p, a, li {
      font-size: 1em; } }

@font-face {
  font-family: source-sans-pro, sans-serif;
  font-display: swap; }

.divider {
  position: absolute;
  top: -5rem;
  height: 10rem;
  background: #C5B358;
  left: 50%;
  width: 2px;
  margin-left: -1px; }
  .divider.mt-none {
    top: 0; }

footer .menu a,
.header_nav a,
.header_fixed a {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  footer .menu a.btn:before,
  .header_nav a.btn:before,
  .header_fixed a.btn:before {
    height: unset; }
  footer .menu a:before,
  .header_nav a:before,
  .header_fixed a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: -3px;
    background: #C5B358;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  footer .menu a:hover:before, footer .menu a:focus:before, footer .menu a:active:before,
  .header_nav a:hover:before,
  .header_nav a:focus:before,
  .header_nav a:active:before,
  .header_fixed a:hover:before,
  .header_fixed a:focus:before,
  .header_fixed a:active:before {
    right: 0; }

footer .menu .current_page_item a:before,
.header_nav .current_page_item a:before,
.header_fixed .current_page_item a:before {
  right: 0;
  -webkit-transform: scaleX(1);
  transform: scaleX(1); }

.over-hidden-x {
  overflow-x: hidden; }

header {
  margin-top: 114px; }
  @media (max-width: 768px) {
    header {
      margin-top: 80px; } }
  @media (max-width: 600px) {
    header {
      margin-top: 56px; } }

.navigation {
  display: block; }
  @media (max-width: 1100px) {
    .navigation {
      display: none; } }

.header_nav li {
  display: inline-block;
  margin-right: 3rem;
  padding: 0; }
  .header_nav li:last-child {
    margin-right: 0; }
  .header_nav li a {
    color: #FFF;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 400; }
  .header_nav li a.menu {
    padding: 1rem 2rem;
    font-weight: 700;
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
    font-family: mongoose, sans-serif;
    font-size: 1.875rem;
    line-height: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.logo img {
  max-width: 114px; }

.home .hero-banner {
  margin-bottom: 31rem; }
  .home .hero-banner:before {
    display: block;
    height: 31rem;
    width: 0.5rem;
    background: #C5B358;
    position: absolute;
    content: "";
    left: 50%;
    margin-left: -4px;
    bottom: -22rem;
    z-index: 2; }
    @media (max-width: 950px) {
      .home .hero-banner:before {
        display: none; } }
  @media (max-width: 950px) {
    .home .hero-banner {
      margin-bottom: 10rem; } }
  @media (max-width: 768px) {
    .home .hero-banner {
      margin-bottom: 4rem; } }
  .home .hero-banner .img {
    height: 952px; }
    @media (max-height: 1066px) {
      .home .hero-banner .img {
        height: calc(100vh - 114px); } }
  @media (max-height: 1066px) and (max-width: 768px) {
    .home .hero-banner .img {
      height: calc(100vh - 80px); } }
  @media (max-height: 1066px) and (max-width: 600px) {
    .home .hero-banner .img {
      height: calc(100vh - 56px); } }
    @media (max-width: 768px) {
      .home .hero-banner .img {
        height: 558px; } }
    @media (max-width: 550px) {
      .home .hero-banner .img {
        height: 400px; } }
    @media (max-width: 400px) {
      .home .hero-banner .img {
        height: 290px; } }
  .home .hero-banner .content {
    transition: margin-top 0.3s linear;
    margin-top: -594px; }
    @media (max-width: 1768px) {
      .home .hero-banner .content {
        margin-top: -540px; } }
    @media (max-width: 1590px) {
      .home .hero-banner .content {
        margin-top: -510px; } }
    @media (max-width: 1480px) {
      .home .hero-banner .content {
        margin-top: -480px; } }
    @media (max-width: 1352px) {
      .home .hero-banner .content {
        margin-top: -420px; } }
    @media (max-width: 1082px) {
      .home .hero-banner .content {
        margin-top: -320px; } }
    @media (max-width: 768px) {
      .home .hero-banner .content {
        margin-top: 0; } }
    @media (max-width: 1768px) and (max-height: 1066px) {
      .home .hero-banner .content {
        margin-top: -297px; } }
    @media (max-width: 1590px) {
      .home .hero-banner .content {
        margin-top: -280px; } }
    @media (max-width: 1480px) {
      .home .hero-banner .content {
        margin-top: -252px; } }
    @media (max-width: 1352px) {
      .home .hero-banner .content {
        margin-top: -219px; } }
    @media (max-width: 1082px) {
      .home .hero-banner .content {
        margin-top: -194px; } }
    @media (max-width: 768px) {
      .home .hero-banner .content {
        margin-top: 0; } }
    @media (min-width: 1769px) and (max-height: 1066px) {
      .home .hero-banner .content {
        margin-top: -335px; } }

@media (max-width: 950px) {
  .hero-banner {
    margin-bottom: 10rem; } }

@media (max-width: 768px) {
  .hero-banner {
    margin-bottom: 4rem; } }

.hero-banner .img {
  background: #3E3E3E;
  height: 752px; }
  @media (max-width: 950px) {
    .hero-banner .img {
      height: 690px; } }
  @media (max-width: 768px) {
    .hero-banner .img {
      height: 558px; } }
  @media (max-width: 550px) {
    .hero-banner .img {
      height: 400px; } }
  @media (max-width: 400px) {
    .hero-banner .img {
      height: 290px; } }
  @media (max-height: 866px) and (min-width: 951px) {
    .hero-banner .img {
      height: calc(100vh - 114px); } }

.hero-banner .content {
  margin-top: -374px; }
  @media (max-width: 1768px) {
    .hero-banner .content {
      margin-top: -374px; } }
  @media (max-width: 1590px) {
    .hero-banner .content {
      margin-top: -331px; } }
  @media (max-width: 1480px) {
    .hero-banner .content {
      margin-top: -295px; } }
  @media (max-width: 1352px) {
    .hero-banner .content {
      margin-top: -236px; } }
  @media (max-width: 1082px) {
    .hero-banner .content {
      margin-top: -194px; } }
  @media (max-width: 768px) {
    .hero-banner .content {
      margin-top: 0; } }
  @media (max-height: 866px) {
    .hero-banner .content {
      margin-top: -352px; } }
  @media (max-width: 1768px) and (max-height: 866px) {
    .hero-banner .content {
      margin-top: -312px; } }
  @media (max-width: 1590px) and (max-height: 866px) {
    .hero-banner .content {
      margin-top: -294px; } }
  @media (max-width: 1480px) and (max-height: 866px) {
    .hero-banner .content {
      margin-top: -268px; } }
  @media (max-width: 1352px) and (max-height: 866px) {
    .hero-banner .content {
      margin-top: -236px; } }
  @media (max-width: 1200px) and (max-height: 866px) {
    .hero-banner .content {
      margin-top: -220px; } }
  @media (max-width: 1082px) and (max-height: 866px) {
    .hero-banner .content {
      margin-top: -194px; } }
  @media (max-width: 768px) and (max-height: 866px) {
    .hero-banner .content {
      margin-top: 0; } }

.menu-fixed label {
  font-size: 0.9375rem;
  color: #A3A3A3;
  transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0; }

.menu-fixed .menu-kebab {
  height: 60px;
  margin-right: -16px;
  width: 40px;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275); }
  .menu-fixed .menu-kebab:hover, .menu-fixed .menu-kebab:focus {
    outline: none; }
  .menu-fixed .menu-kebab .circle {
    width: 12px;
    height: 12px;
    margin: 3px; }
    @media (max-width: 600px) {
      .menu-fixed .menu-kebab .circle {
        width: 8px;
        height: 8px;
        margin: 2px; } }
  .menu-fixed .menu-kebab .circle:nth-child(4),
  .menu-fixed .menu-kebab .circle:nth-child(5) {
    opacity: 0;
    margin-top: -6px; }
    @media (max-width: 600px) {
      .menu-fixed .menu-kebab .circle:nth-child(4),
      .menu-fixed .menu-kebab .circle:nth-child(5) {
        margin-top: -4px; } }
  .menu-fixed .menu-kebab .circle:nth-child(4) {
    margin-left: -25px; }
    @media (max-width: 600px) {
      .menu-fixed .menu-kebab .circle:nth-child(4) {
        margin-left: -16px; } }
  .menu-fixed .menu-kebab .circle:nth-child(5) {
    margin-left: 12.5px; }
    @media (max-width: 600px) {
      .menu-fixed .menu-kebab .circle:nth-child(5) {
        margin-left: 8.5px; } }

.menu-fixed.menu-active label {
  margin-right: 16px; }

.menu-fixed.menu-active .menu-kebab {
  margin-right: 0;
  transform: rotate(45deg); }
  .menu-fixed.menu-active .menu-kebab .circle {
    opacity: 1; }

.navigation-fixed {
  left: -100%;
  transition: left 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  top: 114px;
  height: calc(100vh - 114px); }
  @media (max-width: 768px) {
    .navigation-fixed {
      top: 80px;
      height: calc(100vh - 80px); } }
  @media (max-width: 600px) {
    .navigation-fixed {
      top: 56px;
      height: calc(100vh - 56px); } }
  .navigation-fixed.visible {
    left: 0; }
  .navigation-fixed li {
    margin-bottom: 16px;
    padding: 0; }
    .navigation-fixed li a {
      color: #FFF;
      font-size: 2rem;
      font-weight: 400;
      text-transform: uppercase; }
      @media (max-width: 768px) {
        .navigation-fixed li a {
          font-size: 1.5rem; } }
    .navigation-fixed li a.btn {
      color: #FFF;
      padding: 0.5em 1em !important;
      font-weight: 700;
      padding: 1rem 2rem;
      display: inline-block;
      font-weight: 400;
      text-transform: uppercase;
      font-family: mongoose, sans-serif;
      font-size: 3.25rem;
      line-height: 1rem;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
      @media (max-width: 768px) {
        .navigation-fixed li a.btn {
          font-size: 2rem; } }

.menu-active .navigation-fixed-desktop {
  z-index: 99999; }

@media (min-width: 1101px) {
  .navigation-fixed-desktop {
    opacity: 0;
    animation: 1s fadeIn;
    animation-fill-mode: forwards;
    transition: opacity 0.25s cubic-bezier(0.45, 0, 0.55, 1); }
  .show + header .navigation-fixed-desktop {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s cubic-bezier(0.45, 0, 0.55, 1); } }

.wpm-language-switcher.switcher-list li {
  margin: 0; }
  .wpm-language-switcher.switcher-list li.active {
    display: none; }

h1 {
  font-size: 12.5rem;
  line-height: 0.800em;
  font-family: mongoose, sans-serif;
  letter-spacing: 0.014em; }
  @media (max-width: 1767px) {
    h1 {
      font-size: 11rem; } }
  @media (max-width: 1590px) {
    h1 {
      font-size: 10.25rem; } }
  @media (max-width: 1480px) {
    h1 {
      font-size: 9.25rem; } }
  @media (max-width: 1352px) {
    h1 {
      font-size: 8rem; } }
  @media (max-width: 1082px) {
    h1 {
      font-size: 7rem; } }
  @media (max-width: 480px) {
    h1 {
      font-size: 4.4rem; } }

h2 {
  font-size: 3.5rem;
  font-family: mongoose, sans-serif;
  letter-spacing: 0.094rem; }
  @media (max-width: 950px) {
    h2 {
      font-size: 3rem; } }
  @media (max-width: 550px) {
    h2 {
      font-size: 2.8rem; } }
  h2.type-two {
    font-size: 3.75rem;
    line-height: 3.125rem; }
    @media (max-width: 550px) {
      h2.type-two {
        font-size: 3rem; } }
  h2.type-four {
    font-size: 2.8125rem;
    line-height: 0.777em; }
    @media (max-width: 550px) {
      h2.type-four {
        font-size: 2rem; } }

h3 {
  font-size: 3rem;
  letter-spacing: 0.094rem;
  font-family: mongoose, sans-serif;
  line-height: 1em; }
  @media (max-width: 550px) {
    h3 {
      font-size: 2.1rem; } }
  h3.type-two {
    font-size: 2.3125rem;
    line-height: 1em; }
    @media (max-width: 550px) {
      h3.type-two {
        font-size: 1.7rem; } }
    h3.type-two:hover {
      cursor: pointer; }
  h3.type-three {
    font-size: 2.1875rem;
    line-height: 0.95em; }
  h3.type-four {
    font-size: 2.8125rem;
    line-height: 1.111em;
    letter-spacing: 0.026em; }
    @media (max-width: 550px) {
      h3.type-four {
        font-size: 2rem; } }
  h3.type-five {
    font-size: 2.1875rem;
    line-height: 1em; }
    @media (max-width: 550px) {
      h3.type-five {
        font-size: 1.5rem; } }
  h3.type-six {
    font-size: 3.4375rem;
    line-height: 1em; }
    @media (max-width: 550px) {
      h3.type-six {
        font-size: 2.8rem; } }

h4 {
  font-size: 1.5625rem;
  line-height: 1.2em; }

.testi-what-they {
  font-size: 3.75rem;
  font-family: mongoose, sans-serif;
  letter-spacing: 0.094rem;
  line-height: 3.125rem; }
  @media (max-width: 550px) {
    .testi-what-they {
      font-size: 3rem; } }

.architect_content {
  max-width: 416px; }

.home .hp-ginette {
  width: 450px; }
  @media only screen and (max-width: 1200px) {
    .home .hp-ginette {
      width: 100%; } }

.home .title {
  position: relative; }
  .home .title:before {
    position: absolute;
    content: '';
    height: 2px;
    background: #FFF;
    width: 210px;
    margin-left: 60px;
    top: 50%;
    margin-top: -1px; }
    @media (max-width: 1768px) {
      .home .title:before {
        width: 32%;
        max-width: 210px;
        margin-left: 9%; } }
    @media (max-width: 950px) {
      .home .title:before {
        display: none; } }

.hero-banner .swiper-pagination-bullet, .hero-banner .swiper-pagination-bullet_-.active {
  background: transparent; }

.hero-banner .swiper-pagination {
  text-align: right;
  right: 12px;
  left: unset;
  bottom: 0; }
  .hero-banner .swiper-pagination .swiper-pagination-bullet {
    font-size: 3.125rem;
    font-family: mongoose, sans-serif;
    margin-left: 20px; }
    .hero-banner .swiper-pagination .swiper-pagination-bullet:nth-child(2) {
      margin-left: 12px; }

#about {
  overflow: hidden; }

.home #about {
  overflow: visible; }

.swiper-button-next-part, .swiper-button-prev-part {
  width: 25px;
  height: 30px; }

.services-title .title:before {
  width: 0;
  height: 2px;
  position: absolute;
  content: "";
  background: #C5B358;
  right: calc(100% + 1rem*1.5);
  top: 50%;
  margin-top: -1px;
  transition: width 0.3s linear; }
  @media (max-width: 1200px) {
    .services-title .title:before {
      display: none; } }

.services-title .title:after {
  content: attr(data-title);
  position: absolute;
  left: 0;
  color: #FFF; }

.services-title .title.service-active:before {
  width: 10rem; }
  @media (max-width: 1440px) {
    .services-title .title.service-active:before {
      width: 6rem; } }

.cat-list div h2 {
  transition: opacity 0.25s linear;
  text-align: center; }
  .cat-list div h2:hover {
    cursor: pointer;
    opacity: 1 !important; }

.cat-list div:before {
  position: absolute;
  content: '';
  background: url("../../images/icons/arrow.svg");
  width: 14px;
  height: 12px;
  right: -70px;
  top: 50%;
  margin-top: -24px; }
  @media (max-width: 1704px) {
    .cat-list div:before {
      right: -10px; } }
  @media (max-width: 1520px) {
    .cat-list div:before {
      right: -10px; } }
  @media (max-width: 1320px) {
    .cat-list div:before {
      right: -10px; } }
  @media (max-width: 1200px) {
    .cat-list div:before {
      display: none; } }

.cat-list div:nth-child(4):before {
  display: none; }

.cat-list div:nth-child(even):before {
  transform: rotate(-180deg); }

.cat-list div:last-child:before {
  display: none; }

@media (max-width: 1440px) {
  .services-images,
  .cstm-w-100 {
    width: 100%; }
  .cstm-w-25 {
    width: 25%; }
  .cstm-flx-wrap {
    flex-wrap: wrap; }
  .cstm-flx {
    display: flex; }
  .cstm-pr-mdm {
    padding-right: 2rem; }
  .cstm-pl-mdm {
    padding-left: 2rem; }
  .cstm-mb-sml {
    margin-bottom: 1rem; }
  .cstm-mb-mdm {
    margin-bottom: 2rem; } }

.services-desc p {
  min-height: 128px; }

.swiper-button-next.swiper-button-next-mob {
  display: none;
  right: 10px; }
  @media only screen and (max-width: 1025px) {
    .swiper-button-next.swiper-button-next-mob {
      display: block;
      top: 50%; } }

.swiper-button-prev.swiper-button-prev-mob {
  display: none;
  left: 10px; }
  @media only screen and (max-width: 1025px) {
    .swiper-button-prev.swiper-button-prev-mob {
      display: block;
      top: 50%; } }

.data-title:before {
  content: attr(data-title);
  position: absolute;
  font-size: 9.375rem;
  opacity: 0.05;
  left: 50%;
  top: -32px;
  font-family: mongoose, sans-serif;
  left: 0;
  right: 0;
  font-weight: 700;
  line-height: 0.2em; }
  @media (max-width: 768px) {
    .data-title:before {
      display: none; } }

.achievement-content {
  min-width: 413px; }
  @media (max-width: 480px) {
    .achievement-content {
      min-width: 100%; } }

.cat-title {
  margin-left: 4rem;
  margin-right: 4rem; }
  @media (max-width: 1704px) {
    .cat-title {
      margin-left: 3rem;
      margin-right: 3rem; } }
  @media (max-width: 1520px) {
    .cat-title {
      margin-left: 2rem;
      margin-right: 2rem; } }
  @media (max-width: 1320px) {
    .cat-title {
      margin-left: 1rem;
      margin-right: 1rem; } }
  @media (max-width: 1200px) {
    .cat-title {
      margin-left: 0;
      margin-right: 0; } }

.achievements-excerpt {
  width: calc(100% - 40px); }

.achievements_title:before, .achievements_title:after {
  position: absolute;
  content: '';
  background: url(../../images/icons/arrow-achievement.svg);
  width: 15px;
  height: 17px;
  top: 50%;
  margin-top: -8.5px; }

.achievements_title:before {
  left: -32px; }

.achievements_title:after {
  right: -32px;
  transform: rotate(180deg); }

.see-more,
.see-less {
  height: 22px;
  width: 22px; }
  .see-more:hover,
  .see-less:hover {
    cursor: pointer; }
  .see-more:before, .see-more:after,
  .see-less:before,
  .see-less:after {
    position: absolute;
    content: '';
    background: #C5B358; }
  .see-more:before,
  .see-less:before {
    width: 12px;
    height: 2px;
    left: 4px;
    top: 9px; }

.see-more:after {
  height: 12px;
  width: 2px;
  top: 4px;
  left: 9px; }

.achievement_display {
  left: -150vw;
  opacity: 0;
  background: #FFF;
  right: unset;
  z-index: -9;
  transition: opacity 0.25s linear, left 0.3s cubic-bezier(0.77, 0, 0.175, 1), z-index 0s linear; }
  .achievement_display.-visible {
    transition: opacity 0.5s 0.7s linear, left 0.6s 0.5s cubic-bezier(0.77, 0, 0.175, 1), z-index 0s linear;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: 10; }
  .achievement_display h3:before, .achievement_display h3:after {
    position: absolute;
    content: '';
    background: url(../../images/icons/arrow-achievement-cmp.svg);
    width: 15px;
    height: 17px;
    top: 50%;
    margin-top: -8.5px; }
    @media (max-width: 768px) {
      .achievement_display h3:before, .achievement_display h3:after {
        display: none; } }
  .achievement_display h3:before {
    left: -32px; }
    @media (max-width: 1200px) {
      .achievement_display h3:before {
        left: -24px; } }
  .achievement_display h3:after {
    right: -32px;
    transform: rotate(180deg); }
    @media (max-width: 1200px) {
      .achievement_display h3:after {
        right: -24px; } }
  @media (max-width: 1024px) {
    .achievement_display h3 .achievement-gallery img {
      height: calc((100vw - 4em) * .4425); } }
  .achievement_display .arrows-holder {
    height: 32px;
    width: 88px; }
  .achievement_display .close-btn {
    font-size: 0.9375rem;
    color: #A3A3A3; }
  .achievement_display .see-less {
    margin-bottom: -6px; }
  @media (max-width: 1024px) {
    .achievement_display .gallery-top {
      height: auto;
      position: static; } }
  .achievement_display .controls {
    align-items: center; }
    @media (max-width: 950px) {
      .achievement_display .controls .popup-bggr {
        display: none; }
      .achievement_display .controls .popup-smller {
        margin-left: auto;
        width: 88px; }
        .achievement_display .controls .popup-smller .flx {
          margin-left: auto; } }
    .achievement_display .controls p {
      margin-bottom: 20px; }
    .achievement_display .controls .close-mobile {
      display: none;
      height: 20px;
      width: 20px;
      top: 8px;
      right: 8px; }
      @media (max-width: 1024px) {
        .achievement_display .controls .close-mobile {
          display: block; } }
    .achievement_display .controls .popup-smller {
      margin-left: auto;
      width: 88px; }
      .achievement_display .controls .popup-smller .flx {
        margin-left: auto; }

#ppup_car_thumbs.ml-neg {
  margin-left: -40%; }
  #ppup_car_thumbs.ml-neg img {
    object-fit: cover; }

@media (max-width: 1024px) {
  .mx-height {
    max-height: 45vh; } }

.triangle-one {
  z-index: -1;
  right: calc(100vw * -0.1666);
  width: calc(100vw * 0.453125);
  max-width: 870px;
  min-width: 270px;
  top: calc(100vw * - .08333); }

.triangle-two {
  z-index: -2;
  right: calc(100vw * -.01666);
  width: calc(100vw * .2401);
  max-width: 461px;
  min-width: 220px;
  top: calc(100vw * -.15833); }

.triangle-three {
  z-index: -1;
  right: calc(100vw * .17604);
  width: calc(100vw * .3880);
  max-width: 745px;
  min-width: 305px;
  top: calc(100vw * .125); }

.triangle-four {
  z-index: -2;
  right: 82px;
  width: calc(100vw * .1724);
  max-width: 331px;
  min-width: 218px;
  top: 20px; }

.triangle-five {
  z-index: -1;
  right: -106px;
  width: 334px;
  top: -146px; }

.triangle-six {
  z-index: -1;
  right: -106px;
  width: 334px;
  bottom: -104px; }

.triangle-seven {
  z-index: -1;
  left: 24%;
  width: 704px;
  top: 96px; }

.triangle-height {
  z-index: -1;
  left: 0;
  width: 329px;
  top: -180px; }

.triangle-nine {
  z-index: -1;
  right: -24%;
  width: calc(100vw * 0.4375);
  max-width: 840px;
  top: -96px; }

.triangle-eleven {
  z-index: -2;
  left: calc(100vw * -.105);
  width: calc(100vw * 0.4375);
  max-width: 840px;
  top: calc(100vw * .016); }

.triangle-ten {
  z-index: -1;
  left: calc(100vw * -.01);
  width: calc(100vw * .2698);
  max-width: 518px;
  top: calc(100vw * -.125 + 64px); }

.triangle-twelve {
  z-index: -2;
  left: calc(100vw * -.02);
  bottom: calc(100vw * -.08);
  width: calc(100vw * .3531);
  max-width: 678px;
  min-width: 280px; }

.triangle-thirteen {
  z-index: -1;
  left: calc(100vw * -.057);
  bottom: calc(100vw * -.0208);
  width: calc(100vw * .1979);
  max-width: 380px;
  min-width: 220px; }

.indicator {
  position: absolute;
  background: #FFF;
  padding: 8px 24px 8px 12px;
  /* min-width: 58px; */
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  font-size: 2rem;
  bottom: 50%;
  margin-bottom: -23px; }
  @media (max-width: 1024px) {
    .indicator {
      font-size: 1rem;
      bottom: 24px;
      margin-bottom: 0; } }

.arrows-testimonials {
  width: 64px;
  height: 30px;
  display: flex;
  margin-left: auto;
  margin-top: 24px; }

.cat-desc .mix {
  display: none; }

.subtitle {
  font-size: 22px; }

.back-top {
  display: inline-block;
  background-color: #C5B358;
  width: 32px;
  height: 32px;
  text-align: center;
  border: 2px solid #C5B358;
  position: fixed;
  bottom: 92px;
  right: 18px;
  transition: background-color 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.5s, visibility 0.5s, right 0.23s linear;
  z-index: 10;
  opacity: 0;
  visibility: hidden; }
  .back-top svg {
    height: 10px;
    width: 18px;
    position: absolute;
    top: 8px;
    left: 4px; }
    .back-top svg path {
      fill: #FFF;
      transition: fill 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955); }
  .back-top:hover {
    cursor: pointer;
    background: #FFF; }
    .back-top:hover svg path {
      fill: #C5B358; }
  .back-top.show {
    opacity: 1;
    visibility: visible; }

.active .back-top {
  right: -40px; }

.grecaptcha-badge {
  z-index: 9; }

.no-js.active body {
  overflow: hidden; }

.achievement_display {
  overflow-y: auto; }

.pop-width {
  top: 114px;
  left: -250vw;
  width: 100%; }
  .pop-width .sctn-container {
    height: calc(100vh - 114px); }
    @media (max-width: 768px) {
      .pop-width .sctn-container {
        height: calc(100vh - 8px); } }
    @media (max-width: 600px) {
      .pop-width .sctn-container {
        height: calc(100vh - 60px); } }
  .pop-width .sctn-container {
    width: 900px;
    height: calc(100vh - 114px); }
    @media (max-width: 768px) {
      .pop-width .sctn-container {
        top: 80px; } }
    @media (max-width: 600px) {
      .pop-width .sctn-container {
        height: calc(100vh - 60px); } }

.active .pop-width {
  top: 114px; }
  @media (max-width: 768px) {
    .active .pop-width {
      top: 80px; } }
  @media (max-width: 600px) {
    .active .pop-width {
      top: 60px; } }

.no-js.active body,
.js.active body {
  overflow: hidden; }
