@import './fonts/woff.css';
@import './fonts/ttf.css';
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg);
  }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid rgba(0, 0, 0, 0);
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
          animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
          animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /* 
  	The idea of animating inner circle is based on Polymer ("material") loading indicator 
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

/* the popup window */
.cc-window,
.cc-revoke {
  position: fixed;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* exclude padding when dealing with width */
  font-family: Helvetica, Calibri, Arial, sans-serif;
  font-size: 16px; /* by setting the base font here, we can size the rest of the popup using CSS `em` */
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  /* the following are random unjustified styles - just because - should probably be removed */
  z-index: 9999;
}

.cc-window.cc-static {
  position: static;
}

/* 2 basic types of window - floating / banner */
.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em; /* 1em == 16px therefore 24em == 384px */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.cc-revoke {
  padding: 0.5em;
}

.cc-revoke:hover {
  text-decoration: underline;
}

.cc-header {
  font-size: 18px;
  font-weight: bold;
}

/* clickable things */
.cc-btn,
.cc-link,
.cc-close,
.cc-revoke {
  cursor: pointer;
}

.cc-link {
  opacity: 0.8;
  display: inline-block;
  padding: 0.2em;
  text-decoration: underline;
}

.cc-link:hover {
  opacity: 1;
}

.cc-link:active,
.cc-link:visited {
  color: initial;
}

.cc-btn {
  display: block;
  padding: 0.4em 0.8em;
  font-size: 0.9em;
  font-weight: bold;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

.cc-highlight .cc-btn:first-child:hover,
.cc-highlight .cc-btn:first-child:focus {
  background-color: transparent;
  text-decoration: underline;
}

.cc-close {
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 1.6em;
  opacity: 0.9;
  /* seeing as this contains text and not an image, the element taller than it is wide (because it is text) */
  /*  - we want it to be a square, because it's acting as an icon */
  /*  - setting the line height normalises the height */
  line-height: 0.75;
}

.cc-close:hover,
.cc-close:focus {
  opacity: 1;
}

/* This file should contain CSS that modifies the popup layout. */
/* By layout, we mean the physical position of the elements on the popup window, and the margin / padding around those elements. */
.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}

.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}

.cc-revoke.cc-left {
  left: 3em;
  right: unset;
}

.cc-revoke.cc-right {
  right: 3em;
  left: unset;
}

/**************************************** FLOATING ****************************************/
/* these classes position the floating element */
.cc-top {
  top: 1em;
}

.cc-left {
  left: 1em;
}

.cc-right {
  right: 1em;
}

.cc-bottom {
  bottom: 1em;
}

/* links that are direct decendants should be displayed as block */
.cc-floating > .cc-link {
  margin-bottom: 1em;
}

.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}

.cc-window.cc-floating .cc-compliance {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

/**************************************** BANNER ****************************************/
.cc-window.cc-banner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}

.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

.cc-banner .cc-message {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em;
}

/* COMPLIANCE BOX */
.cc-compliance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.cc-floating .cc-compliance > .cc-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cc-btn + .cc-btn {
  margin-left: 0.5em;
}

@media print {
  .cc-window,
  .cc-revoke {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}
/* dimensions for 'iPhone6 Plus' and lower */
@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }
  .cc-window.cc-bottom {
    bottom: 0;
  }
  .cc-window.cc-banner,
  .cc-window.cc-floating,
  .cc-window.cc-right,
  .cc-window.cc-left {
    left: 0;
    right: 0;
  }
  .cc-window.cc-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cc-window.cc-banner .cc-compliance {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .cc-window.cc-floating {
    max-width: none;
  }
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  .cc-window.cc-banner {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
  .cc-window.cc-banner .cc-message {
    margin-right: 0;
  }
}
.cc-window {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.cc-window.cc-invisible {
  opacity: 0;
}

/* only animate ifhas class 'cc-animate' */
.cc-animate.cc-revoke {
  -webkit-transition: transform 1s ease;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
  -webkit-transform: translateY(-2em);
          transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom {
  -webkit-transform: translateY(2em);
          transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-top {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cc-animate.cc-revoke.cc-active.cc-bottom {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cc-revoke:hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cc-grower {
  /* Initially we don't want any height, and we want the contents to be hidden */
  max-height: 0;
  overflow: hidden;
  /* Set our transitions up. */
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}

/* Edgeless */
.cc-theme-edgeless.cc-window {
  padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em;
  margin-bottom: 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: 0.8em 1.8em;
  height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}

.sep-5 {
  height: 5px;
  clear: both;
}

.sep-10 {
  height: 10px;
  clear: both;
}

.sep-20 {
  height: 20px;
  clear: both;
}

.sep-30 {
  height: 30px;
  clear: both;
}

.sep-50 {
  height: 50px;
  clear: both;
}

.oh {
  overflow: hidden;
}

.cw {
  padding: 0 5rem;
}

div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cc-window a {
  text-decoration: underline !important;
}

.cc-window .cc-btn {
  text-decoration: none !important;
}

.sections-content ul {
  padding: 0;
  margin: 0;
  margin-bottom: 2rem;
}

.sections-content ul li {
  font-weight: 400 !important;
  margin-bottom: 1rem;
}

.sections-content ul li:last-child {
  margin-bottom: 0;
}

.img-fluid {
  max-width: 100%;
}

html {
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  position: relative;
  display: block !important;
  height: 100%;
  padding: 0;
  margin: 0;
  font-size: 13pt;
  color: rgb(30, 30, 30) !important;
  font-family: "Poppins", sans-serif !important;
}

body.scroll-locked {
  overflow: hidden;
}

.page-wrapper {
  position: relative;
  min-height: 100%;
  width: 100%;
  background: white;
  padding-top: 150px;
}

@media (max-width: 1499px) {
  .page-wrapper {
    padding-top: 140px;
  }
}
@media (max-width: 1199px) {
  .page-wrapper {
    padding-top: 135px;
  }
}
@media (max-width: 991px) {
  .page-wrapper {
    padding-top: 130px;
  }
}
@media (max-width: 767px) {
  .page-wrapper {
    padding-top: 125px;
  }
}
@media (max-width: 575px) {
  .page-wrapper {
    padding-top: 115px;
  }
}
.website-content {
  padding-bottom: 0;
}

.herder-image {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: block;
}

.herder-image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.05+0,0.55+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.55)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0d000000", endColorstr="#8c000000",GradientType=0 ); /* IE6-9 */
}

.herder-image .content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 1;
  position: relative;
}

.herder-image .content h1 {
  color: white;
}

.herder-image .content p {
  color: white;
}

p {
  font-size: 1.2rem;
  line-height: 1.65;
  font-weight: 300 !important;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  p {
    font-size: 1.1rem;
  }
}
@media (max-width: 575px) {
  p {
    font-size: 1.05rem;
  }
}
p:last-child {
  margin-bottom: 1rem;
}

a, a:hover, a:focus, a:visited {
  color: rgb(30, 30, 30);
  text-decoration: none;
  border: none;
  outline: 0 !important;
}

h1, h2, h3, h4, h5 {
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 200 !important;
  color: #212529;
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 4rem;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  h1, h2, h3, h4, h5 {
    font-size: 3.25rem;
  }
}
@media (max-width: 575px) {
  h1, h2, h3, h4, h5 {
    font-size: 2.75rem;
  }
}
h2, h3, h4, h5 {
  margin-top: 1rem;
  font-size: 2rem;
}

@media (max-width: 575px) {
  h2, h3, h4, h5 {
    font-size: 1.75rem;
  }
}
h2.bt, h3.bt {
  font-size: 4rem;
}

h5 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

strong {
  font-weight: 700;
}

.intro {
  font-style: italic;
  font-size: 1rem;
  color: #6c757d;
}

.fiol-def {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 300ms ease-out 50ms;
  transition: all 300ms ease-out 50ms;
}

.fiol-def.h {
  visibility: hidden;
  opacity: 0;
}

a, a:hover, a:focus, a:visited {
  color: rgb(30, 30, 30);
  text-decoration: none;
  border: none;
  outline: 0 !important;
}

.dl {
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  display: inline-block;
  -webkit-transition: all 200ms ease-out 50ms;
  transition: all 200ms ease-out 50ms;
}

.dl:after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: -2px;
  background: #A90B3C;
  -webkit-transition: all 200ms ease-out 50ms;
  transition: all 200ms ease-out 50ms;
}

.dl:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.dl:hover:after {
  height: 2px;
}

.dli {
  overflow: visible;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: white !important;
  background: #A90B3C;
  font-size: 1.3rem;
  border-radius: 7px;
  overflow: hidden;
  z-index: 1;
  padding: 0.3rem 0.7rem;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
}

@media (max-width: 1199px) {
  .dli {
    font-size: 1.1rem;
    padding: 0.15rem 0.5rem;
  }
}
.dli:after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  left: 0;
  top: 100%;
  background: #f8f9fa;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
}

.dli.trans {
  background: none;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.7);
}

.dli:hover {
  color: #A90B3C !important;
  border-color: rgba(255, 255, 255, 0);
}

.dli:hover i, .dli:hover svg {
  color: #A90B3C;
}

.dli:hover:after {
  top: 0;
}

.dli i, .dli svg {
  color: white;
  margin-right: 0.6666666667rem;
  font-size: 1.4rem;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
}

@media (max-width: 1199px) {
  .dli i, .dli svg {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
}
.dli.onw:hover {
  background: #f8f9fa;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}

.d-n {
  display: none !important;
}

.d-b {
  display: block !important;
}

.d-f {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-if {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 450px) {
  .d-xs-n {
    display: none !important;
  }
  .d-xs-b {
    display: block !important;
  }
  .d-xs-f {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xs-if {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 576px) {
  .d-sm-n {
    display: none !important;
  }
  .d-sm-b {
    display: block !important;
  }
  .d-sm-f {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-if {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-n {
    display: none !important;
  }
  .d-md-b {
    display: block !important;
  }
  .d-md-f {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-if {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-n {
    display: none !important;
  }
  .d-lg-b {
    display: block !important;
  }
  .d-lg-f {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-if {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-n {
    display: none !important;
  }
  .d-xl-b {
    display: block !important;
  }
  .d-xl-f {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-if {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1500px) {
  .d-xxl-n {
    display: none !important;
  }
  .d-xxl-b {
    display: block !important;
  }
  .d-xxl-f {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-if {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.lf-container,
.lf-container-nr,
.lf-container-fw {
  position: relative;
  padding: 0 5rem;
  margin: 0 auto;
  max-width: 2300px;
}

@media (max-width: 1499px) {
  .lf-container,
  .lf-container-nr,
  .lf-container-fw {
    padding: 0 5rem;
  }
}
@media (max-width: 1199px) {
  .lf-container,
  .lf-container-nr,
  .lf-container-fw {
    padding: 0 4rem;
  }
}
@media (max-width: 991px) {
  .lf-container,
  .lf-container-nr,
  .lf-container-fw {
    padding: 0 3rem;
  }
}
@media (max-width: 767px) {
  .lf-container,
  .lf-container-nr,
  .lf-container-fw {
    padding: 0 2rem;
  }
}
@media (max-width: 575px) {
  .lf-container,
  .lf-container-nr,
  .lf-container-fw {
    padding: 0 1rem;
  }
}
.lf-container .lf-row,
.lf-container-nr .lf-row,
.lf-container-fw .lf-row {
  margin: 0 -1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.lf-container .lf-col,
.lf-container-nr .lf-col,
.lf-container-fw .lf-col {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 0px !important;
          flex: 0 1 0 !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

.lf-container .lf-col.df,
.lf-container-nr .lf-col.df,
.lf-container-fw .lf-col.df {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.lf-container .lf-col-1,
.lf-container-nr .lf-col-1,
.lf-container-fw .lf-col-1 {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  width: 25% !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

.lf-container .lf-col-1.df,
.lf-container-nr .lf-col-1.df,
.lf-container-fw .lf-col-1.df {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.lf-container .lf-col-2,
.lf-container-nr .lf-col-2,
.lf-container-fw .lf-col-2 {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  width: 50% !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

.lf-container .lf-col-2.df,
.lf-container-nr .lf-col-2.df,
.lf-container-fw .lf-col-2.df {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.lf-container .lf-col-3,
.lf-container-nr .lf-col-3,
.lf-container-fw .lf-col-3 {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  width: 75% !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

.lf-container .lf-col-3.df,
.lf-container-nr .lf-col-3.df,
.lf-container-fw .lf-col-3.df {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.lf-container .lf-col-4,
.lf-container-nr .lf-col-4,
.lf-container-fw .lf-col-4 {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  width: 100% !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

.lf-container .lf-col-4.df,
.lf-container-nr .lf-col-4.df,
.lf-container-fw .lf-col-4.df {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.lf-container .lf-col-auto,
.lf-container-nr .lf-col-auto,
.lf-container-fw .lf-col-auto {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 0 0px !important;
          flex: 1 0 0 !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

.lf-container .lf-col-1-3,
.lf-container-nr .lf-col-1-3,
.lf-container-fw .lf-col-1-3 {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  width: 33.3333333333% !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 450px) {
  .lf-container .lf-col-xs-1-3,
  .lf-container-nr .lf-col-xs-1-3,
  .lf-container-fw .lf-col-xs-1-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 33.3333333333% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xs,
  .lf-container-nr .lf-col-xs,
  .lf-container-fw .lf-col-xs {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 0px !important;
            flex: 0 1 0 !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xs.df,
  .lf-container-nr .lf-col-xs.df,
  .lf-container-fw .lf-col-xs.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xs-1,
  .lf-container-nr .lf-col-xs-1,
  .lf-container-fw .lf-col-xs-1 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 25% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xs-1.df,
  .lf-container-nr .lf-col-xs-1.df,
  .lf-container-fw .lf-col-xs-1.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xs-2,
  .lf-container-nr .lf-col-xs-2,
  .lf-container-fw .lf-col-xs-2 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 50% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xs-2.df,
  .lf-container-nr .lf-col-xs-2.df,
  .lf-container-fw .lf-col-xs-2.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xs-3,
  .lf-container-nr .lf-col-xs-3,
  .lf-container-fw .lf-col-xs-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 75% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xs-3.df,
  .lf-container-nr .lf-col-xs-3.df,
  .lf-container-fw .lf-col-xs-3.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xs-4,
  .lf-container-nr .lf-col-xs-4,
  .lf-container-fw .lf-col-xs-4 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xs-4.df,
  .lf-container-nr .lf-col-xs-4.df,
  .lf-container-fw .lf-col-xs-4.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xs-auto,
  .lf-container-nr .lf-col-xs-auto,
  .lf-container-fw .lf-col-xs-auto {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 0px !important;
            flex: 1 0 0 !important;
  }
  .lf-container .lf-col-xs-auto.df,
  .lf-container-nr .lf-col-xs-auto.df,
  .lf-container-fw .lf-col-xs-auto.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .fd-xs-r,
  .lf-container-nr .fd-xs-r,
  .lf-container-fw .fd-xs-r {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .lf-container .fd-xs-c,
  .lf-container-nr .fd-xs-c,
  .lf-container-fw .fd-xs-c {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .lf-container .jc-xs-s,
  .lf-container-nr .jc-xs-s,
  .lf-container-fw .jc-xs-s {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .lf-container .jc-xs-c,
  .lf-container-nr .jc-xs-c,
  .lf-container-fw .jc-xs-c {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .lf-container .jc-xs-e,
  .lf-container-nr .jc-xs-e,
  .lf-container-fw .jc-xs-e {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .lf-container .jc-xs-sbw,
  .lf-container-nr .jc-xs-sbw,
  .lf-container-fw .jc-xs-sbw {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .lf-container .jc-xs-str,
  .lf-container-nr .jc-xs-str,
  .lf-container-fw .jc-xs-str {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .lf-container .ai-xs-s,
  .lf-container-nr .ai-xs-s,
  .lf-container-fw .ai-xs-s {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .lf-container .ai-xs-c,
  .lf-container-nr .ai-xs-c,
  .lf-container-fw .ai-xs-c {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .lf-container .ai-xs-e,
  .lf-container-nr .ai-xs-e,
  .lf-container-fw .ai-xs-e {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .lf-container .ai-xs-str,
  .lf-container-nr .ai-xs-str,
  .lf-container-fw .ai-xs-str {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
}
@media (min-width: 576px) {
  .lf-container .lf-col-sm-1-3,
  .lf-container-nr .lf-col-sm-1-3,
  .lf-container-fw .lf-col-sm-1-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 33.3333333333% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-sm,
  .lf-container-nr .lf-col-sm,
  .lf-container-fw .lf-col-sm {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 0px !important;
            flex: 0 1 0 !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-sm.df,
  .lf-container-nr .lf-col-sm.df,
  .lf-container-fw .lf-col-sm.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-sm-1,
  .lf-container-nr .lf-col-sm-1,
  .lf-container-fw .lf-col-sm-1 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 25% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-sm-1.df,
  .lf-container-nr .lf-col-sm-1.df,
  .lf-container-fw .lf-col-sm-1.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-sm-2,
  .lf-container-nr .lf-col-sm-2,
  .lf-container-fw .lf-col-sm-2 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 50% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-sm-2.df,
  .lf-container-nr .lf-col-sm-2.df,
  .lf-container-fw .lf-col-sm-2.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-sm-3,
  .lf-container-nr .lf-col-sm-3,
  .lf-container-fw .lf-col-sm-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 75% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-sm-3.df,
  .lf-container-nr .lf-col-sm-3.df,
  .lf-container-fw .lf-col-sm-3.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-sm-4,
  .lf-container-nr .lf-col-sm-4,
  .lf-container-fw .lf-col-sm-4 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-sm-4.df,
  .lf-container-nr .lf-col-sm-4.df,
  .lf-container-fw .lf-col-sm-4.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-sm-auto,
  .lf-container-nr .lf-col-sm-auto,
  .lf-container-fw .lf-col-sm-auto {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 0px !important;
            flex: 1 0 0 !important;
  }
  .lf-container .lf-col-sm-auto.df,
  .lf-container-nr .lf-col-sm-auto.df,
  .lf-container-fw .lf-col-sm-auto.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .fd-sm-r,
  .lf-container-nr .fd-sm-r,
  .lf-container-fw .fd-sm-r {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .lf-container .fd-sm-c,
  .lf-container-nr .fd-sm-c,
  .lf-container-fw .fd-sm-c {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .lf-container .jc-sm-s,
  .lf-container-nr .jc-sm-s,
  .lf-container-fw .jc-sm-s {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .lf-container .jc-sm-c,
  .lf-container-nr .jc-sm-c,
  .lf-container-fw .jc-sm-c {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .lf-container .jc-sm-e,
  .lf-container-nr .jc-sm-e,
  .lf-container-fw .jc-sm-e {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .lf-container .jc-sm-sbw,
  .lf-container-nr .jc-sm-sbw,
  .lf-container-fw .jc-sm-sbw {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .lf-container .jc-sm-str,
  .lf-container-nr .jc-sm-str,
  .lf-container-fw .jc-sm-str {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .lf-container .ai-sm-s,
  .lf-container-nr .ai-sm-s,
  .lf-container-fw .ai-sm-s {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .lf-container .ai-sm-c,
  .lf-container-nr .ai-sm-c,
  .lf-container-fw .ai-sm-c {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .lf-container .ai-sm-e,
  .lf-container-nr .ai-sm-e,
  .lf-container-fw .ai-sm-e {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .lf-container .ai-sm-str,
  .lf-container-nr .ai-sm-str,
  .lf-container-fw .ai-sm-str {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
}
@media (min-width: 768px) {
  .lf-container .lf-col-md-1-3,
  .lf-container-nr .lf-col-md-1-3,
  .lf-container-fw .lf-col-md-1-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 33.3333333333% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-md,
  .lf-container-nr .lf-col-md,
  .lf-container-fw .lf-col-md {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 0px !important;
            flex: 0 1 0 !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-md.df,
  .lf-container-nr .lf-col-md.df,
  .lf-container-fw .lf-col-md.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-md-1,
  .lf-container-nr .lf-col-md-1,
  .lf-container-fw .lf-col-md-1 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 25% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-md-1.df,
  .lf-container-nr .lf-col-md-1.df,
  .lf-container-fw .lf-col-md-1.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-md-2,
  .lf-container-nr .lf-col-md-2,
  .lf-container-fw .lf-col-md-2 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 50% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-md-2.df,
  .lf-container-nr .lf-col-md-2.df,
  .lf-container-fw .lf-col-md-2.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-md-3,
  .lf-container-nr .lf-col-md-3,
  .lf-container-fw .lf-col-md-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 75% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-md-3.df,
  .lf-container-nr .lf-col-md-3.df,
  .lf-container-fw .lf-col-md-3.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-md-4,
  .lf-container-nr .lf-col-md-4,
  .lf-container-fw .lf-col-md-4 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-md-4.df,
  .lf-container-nr .lf-col-md-4.df,
  .lf-container-fw .lf-col-md-4.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-md-auto,
  .lf-container-nr .lf-col-md-auto,
  .lf-container-fw .lf-col-md-auto {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 0px !important;
            flex: 1 0 0 !important;
  }
  .lf-container .lf-col-md-auto.df,
  .lf-container-nr .lf-col-md-auto.df,
  .lf-container-fw .lf-col-md-auto.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .fd-md-r,
  .lf-container-nr .fd-md-r,
  .lf-container-fw .fd-md-r {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .lf-container .fd-md-c,
  .lf-container-nr .fd-md-c,
  .lf-container-fw .fd-md-c {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .lf-container .jc-md-s,
  .lf-container-nr .jc-md-s,
  .lf-container-fw .jc-md-s {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .lf-container .jc-md-c,
  .lf-container-nr .jc-md-c,
  .lf-container-fw .jc-md-c {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .lf-container .jc-md-e,
  .lf-container-nr .jc-md-e,
  .lf-container-fw .jc-md-e {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .lf-container .jc-md-sbw,
  .lf-container-nr .jc-md-sbw,
  .lf-container-fw .jc-md-sbw {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .lf-container .jc-md-str,
  .lf-container-nr .jc-md-str,
  .lf-container-fw .jc-md-str {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .lf-container .ai-md-s,
  .lf-container-nr .ai-md-s,
  .lf-container-fw .ai-md-s {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .lf-container .ai-md-c,
  .lf-container-nr .ai-md-c,
  .lf-container-fw .ai-md-c {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .lf-container .ai-md-e,
  .lf-container-nr .ai-md-e,
  .lf-container-fw .ai-md-e {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .lf-container .ai-md-str,
  .lf-container-nr .ai-md-str,
  .lf-container-fw .ai-md-str {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
}
@media (min-width: 992px) {
  .lf-container .lf-col-lg-1-3,
  .lf-container-nr .lf-col-lg-1-3,
  .lf-container-fw .lf-col-lg-1-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 33.3333333333% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-lg,
  .lf-container-nr .lf-col-lg,
  .lf-container-fw .lf-col-lg {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 0px !important;
            flex: 0 1 0 !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-lg.df,
  .lf-container-nr .lf-col-lg.df,
  .lf-container-fw .lf-col-lg.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-lg-1,
  .lf-container-nr .lf-col-lg-1,
  .lf-container-fw .lf-col-lg-1 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 25% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-lg-1.df,
  .lf-container-nr .lf-col-lg-1.df,
  .lf-container-fw .lf-col-lg-1.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-lg-2,
  .lf-container-nr .lf-col-lg-2,
  .lf-container-fw .lf-col-lg-2 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 50% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-lg-2.df,
  .lf-container-nr .lf-col-lg-2.df,
  .lf-container-fw .lf-col-lg-2.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-lg-3,
  .lf-container-nr .lf-col-lg-3,
  .lf-container-fw .lf-col-lg-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 75% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-lg-3.df,
  .lf-container-nr .lf-col-lg-3.df,
  .lf-container-fw .lf-col-lg-3.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-lg-4,
  .lf-container-nr .lf-col-lg-4,
  .lf-container-fw .lf-col-lg-4 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-lg-4.df,
  .lf-container-nr .lf-col-lg-4.df,
  .lf-container-fw .lf-col-lg-4.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-lg-auto,
  .lf-container-nr .lf-col-lg-auto,
  .lf-container-fw .lf-col-lg-auto {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 0px !important;
            flex: 1 0 0 !important;
  }
  .lf-container .lf-col-lg-auto.df,
  .lf-container-nr .lf-col-lg-auto.df,
  .lf-container-fw .lf-col-lg-auto.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .fd-lg-r,
  .lf-container-nr .fd-lg-r,
  .lf-container-fw .fd-lg-r {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .lf-container .fd-lg-c,
  .lf-container-nr .fd-lg-c,
  .lf-container-fw .fd-lg-c {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .lf-container .jc-lg-s,
  .lf-container-nr .jc-lg-s,
  .lf-container-fw .jc-lg-s {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .lf-container .jc-lg-c,
  .lf-container-nr .jc-lg-c,
  .lf-container-fw .jc-lg-c {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .lf-container .jc-lg-e,
  .lf-container-nr .jc-lg-e,
  .lf-container-fw .jc-lg-e {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .lf-container .jc-lg-sbw,
  .lf-container-nr .jc-lg-sbw,
  .lf-container-fw .jc-lg-sbw {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .lf-container .jc-lg-str,
  .lf-container-nr .jc-lg-str,
  .lf-container-fw .jc-lg-str {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .lf-container .ai-lg-s,
  .lf-container-nr .ai-lg-s,
  .lf-container-fw .ai-lg-s {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .lf-container .ai-lg-c,
  .lf-container-nr .ai-lg-c,
  .lf-container-fw .ai-lg-c {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .lf-container .ai-lg-e,
  .lf-container-nr .ai-lg-e,
  .lf-container-fw .ai-lg-e {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .lf-container .ai-lg-str,
  .lf-container-nr .ai-lg-str,
  .lf-container-fw .ai-lg-str {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
}
@media (min-width: 1200px) {
  .lf-container .lf-col-xl-1-3,
  .lf-container-nr .lf-col-xl-1-3,
  .lf-container-fw .lf-col-xl-1-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 33.3333333333% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xl,
  .lf-container-nr .lf-col-xl,
  .lf-container-fw .lf-col-xl {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 0px !important;
            flex: 0 1 0 !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xl.df,
  .lf-container-nr .lf-col-xl.df,
  .lf-container-fw .lf-col-xl.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xl-1,
  .lf-container-nr .lf-col-xl-1,
  .lf-container-fw .lf-col-xl-1 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 25% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xl-1.df,
  .lf-container-nr .lf-col-xl-1.df,
  .lf-container-fw .lf-col-xl-1.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xl-2,
  .lf-container-nr .lf-col-xl-2,
  .lf-container-fw .lf-col-xl-2 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 50% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xl-2.df,
  .lf-container-nr .lf-col-xl-2.df,
  .lf-container-fw .lf-col-xl-2.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xl-3,
  .lf-container-nr .lf-col-xl-3,
  .lf-container-fw .lf-col-xl-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 75% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xl-3.df,
  .lf-container-nr .lf-col-xl-3.df,
  .lf-container-fw .lf-col-xl-3.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xl-4,
  .lf-container-nr .lf-col-xl-4,
  .lf-container-fw .lf-col-xl-4 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xl-4.df,
  .lf-container-nr .lf-col-xl-4.df,
  .lf-container-fw .lf-col-xl-4.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xl-auto,
  .lf-container-nr .lf-col-xl-auto,
  .lf-container-fw .lf-col-xl-auto {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 0px !important;
            flex: 1 0 0 !important;
  }
  .lf-container .lf-col-xl-auto.df,
  .lf-container-nr .lf-col-xl-auto.df,
  .lf-container-fw .lf-col-xl-auto.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .fd-xl-r,
  .lf-container-nr .fd-xl-r,
  .lf-container-fw .fd-xl-r {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .lf-container .fd-xl-c,
  .lf-container-nr .fd-xl-c,
  .lf-container-fw .fd-xl-c {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .lf-container .jc-xl-s,
  .lf-container-nr .jc-xl-s,
  .lf-container-fw .jc-xl-s {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .lf-container .jc-xl-c,
  .lf-container-nr .jc-xl-c,
  .lf-container-fw .jc-xl-c {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .lf-container .jc-xl-e,
  .lf-container-nr .jc-xl-e,
  .lf-container-fw .jc-xl-e {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .lf-container .jc-xl-sbw,
  .lf-container-nr .jc-xl-sbw,
  .lf-container-fw .jc-xl-sbw {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .lf-container .jc-xl-str,
  .lf-container-nr .jc-xl-str,
  .lf-container-fw .jc-xl-str {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .lf-container .ai-xl-s,
  .lf-container-nr .ai-xl-s,
  .lf-container-fw .ai-xl-s {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .lf-container .ai-xl-c,
  .lf-container-nr .ai-xl-c,
  .lf-container-fw .ai-xl-c {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .lf-container .ai-xl-e,
  .lf-container-nr .ai-xl-e,
  .lf-container-fw .ai-xl-e {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .lf-container .ai-xl-str,
  .lf-container-nr .ai-xl-str,
  .lf-container-fw .ai-xl-str {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
}
@media (min-width: 1500px) {
  .lf-container .lf-col-xxl-1-3,
  .lf-container-nr .lf-col-xxl-1-3,
  .lf-container-fw .lf-col-xxl-1-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 33.3333333333% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xxl,
  .lf-container-nr .lf-col-xxl,
  .lf-container-fw .lf-col-xxl {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 0px !important;
            flex: 0 1 0 !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xxl.df,
  .lf-container-nr .lf-col-xxl.df,
  .lf-container-fw .lf-col-xxl.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xxl-1,
  .lf-container-nr .lf-col-xxl-1,
  .lf-container-fw .lf-col-xxl-1 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 25% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xxl-1.df,
  .lf-container-nr .lf-col-xxl-1.df,
  .lf-container-fw .lf-col-xxl-1.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xxl-2,
  .lf-container-nr .lf-col-xxl-2,
  .lf-container-fw .lf-col-xxl-2 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 50% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xxl-2.df,
  .lf-container-nr .lf-col-xxl-2.df,
  .lf-container-fw .lf-col-xxl-2.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xxl-3,
  .lf-container-nr .lf-col-xxl-3,
  .lf-container-fw .lf-col-xxl-3 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 75% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xxl-3.df,
  .lf-container-nr .lf-col-xxl-3.df,
  .lf-container-fw .lf-col-xxl-3.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xxl-4,
  .lf-container-nr .lf-col-xxl-4,
  .lf-container-fw .lf-col-xxl-4 {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lf-container .lf-col-xxl-4.df,
  .lf-container-nr .lf-col-xxl-4.df,
  .lf-container-fw .lf-col-xxl-4.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .lf-col-xxl-auto,
  .lf-container-nr .lf-col-xxl-auto,
  .lf-container-fw .lf-col-xxl-auto {
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 0px !important;
            flex: 1 0 0 !important;
  }
  .lf-container .lf-col-xxl-auto.df,
  .lf-container-nr .lf-col-xxl-auto.df,
  .lf-container-fw .lf-col-xxl-auto.df {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lf-container .fd-xxl-r,
  .lf-container-nr .fd-xxl-r,
  .lf-container-fw .fd-xxl-r {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .lf-container .fd-xxl-c,
  .lf-container-nr .fd-xxl-c,
  .lf-container-fw .fd-xxl-c {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .lf-container .jc-xxl-s,
  .lf-container-nr .jc-xxl-s,
  .lf-container-fw .jc-xxl-s {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .lf-container .jc-xxl-c,
  .lf-container-nr .jc-xxl-c,
  .lf-container-fw .jc-xxl-c {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .lf-container .jc-xxl-e,
  .lf-container-nr .jc-xxl-e,
  .lf-container-fw .jc-xxl-e {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .lf-container .jc-xxl-sbw,
  .lf-container-nr .jc-xxl-sbw,
  .lf-container-fw .jc-xxl-sbw {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .lf-container .jc-xxl-str,
  .lf-container-nr .jc-xxl-str,
  .lf-container-fw .jc-xxl-str {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .lf-container .ai-xxl-s,
  .lf-container-nr .ai-xxl-s,
  .lf-container-fw .ai-xxl-s {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .lf-container .ai-xxl-c,
  .lf-container-nr .ai-xxl-c,
  .lf-container-fw .ai-xxl-c {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .lf-container .ai-xxl-e,
  .lf-container-nr .ai-xxl-e,
  .lf-container-fw .ai-xxl-e {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .lf-container .ai-xxl-str,
  .lf-container-nr .ai-xxl-str,
  .lf-container-fw .ai-xxl-str {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
}
.lf-container {
  max-width: 2300px;
  margin: 0 auto;
}

.lf-container-nr {
  max-width: 2300px;
  padding: 0 15rem !important;
}

@media (max-width: 1499px) {
  .lf-container-nr {
    padding: 0 12rem !important;
  }
}
@media (max-width: 1199px) {
  .lf-container-nr {
    padding: 0 10rem !important;
  }
}
@media (max-width: 991px) {
  .lf-container-nr {
    padding: 0 5rem !important;
  }
}
@media (max-width: 767px) {
  .lf-container-nr {
    padding: 0 3rem !important;
  }
}
@media (max-width: 575px) {
  .lf-container-nr {
    padding: 0 2rem !important;
  }
}
.lf-container-fw {
  padding: 0 !important;
  overflow: hidden;
}

.fd-r {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.fd-c {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.jc-s {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.jc-c {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.jc-e {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.jc-sbw {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.jc-str {
  -webkit-box-pack: stretch !important;
      -ms-flex-pack: stretch !important;
          justify-content: stretch !important;
}

.ai-s {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.ai-c {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.ai-e {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.ai-str {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

#site-wrapper {
  position: relative;
  display: grid;
  min-height: 100vh;
  width: 100%;
  grid-template-rows: 140px minmax(-webkit-min-content, auto) -webkit-min-content;
  grid-template-rows: 140px minmax(min-content, auto) min-content;
  grid-template-columns: 1fr;
  grid-template-areas: "header" "main" "footer";
}

@media (max-width: 1499px) {
  #site-wrapper {
    grid-template-rows: 120px auto -webkit-min-content;
    grid-template-rows: 120px auto min-content;
  }
}
@media (max-width: 1199px) {
  #site-wrapper {
    grid-template-rows: 105px auto -webkit-min-content;
    grid-template-rows: 105px auto min-content;
  }
}
@media (max-width: 991px) {
  #site-wrapper {
    grid-template-rows: 95px auto -webkit-min-content;
    grid-template-rows: 95px auto min-content;
  }
}
@media (max-width: 767px) {
  #site-wrapper {
    grid-template-rows: 90px auto -webkit-min-content;
    grid-template-rows: 90px auto min-content;
  }
}
@media (max-width: 575px) {
  #site-wrapper {
    grid-template-rows: 80px auto -webkit-min-content;
    grid-template-rows: 80px auto min-content;
  }
}
#site-wrapper header {
  grid-area: header;
}

#site-wrapper main {
  grid-area: main;
  width: 100%;
  overflow-x: hidden;
}

#site-wrapper footer {
  grid-area: footer;
}

#site-wrapper.header-overlay header {
  grid-row: 1/2;
}

#site-wrapper.header-overlay main {
  grid-row: 1/3;
}

.p-0 {
  padding: 0rem !important;
}

.px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.m-0 {
  margin: 0rem !important;
}

.mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.p-1 {
  padding: 0.4rem !important;
}

.px-1 {
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}

.py-1 {
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
}

.pl-1 {
  padding-left: 0.4rem !important;
}

.pr-1 {
  padding-right: 0.4rem !important;
}

.pt-1 {
  padding-top: 0.4rem !important;
}

.pb-1 {
  padding-bottom: 0.4rem !important;
}

.m-1 {
  margin: 0.4rem !important;
}

.mx-1 {
  margin-left: 0.4rem !important;
  margin-right: 0.4rem !important;
}

.my-1 {
  margin-top: 0.4rem !important;
  margin-bottom: 0.4rem !important;
}

.ml-1 {
  margin-left: 0.4rem !important;
}

.mr-1 {
  margin-right: 0.4rem !important;
}

.mt-1 {
  margin-top: 0.4rem !important;
}

.mb-1 {
  margin-bottom: 0.4rem !important;
}

.p-2 {
  padding: 0.8rem !important;
}

.px-2 {
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
}

.py-2 {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

.pl-2 {
  padding-left: 0.8rem !important;
}

.pr-2 {
  padding-right: 0.8rem !important;
}

.pt-2 {
  padding-top: 0.8rem !important;
}

.pb-2 {
  padding-bottom: 0.8rem !important;
}

.m-2 {
  margin: 0.8rem !important;
}

.mx-2 {
  margin-left: 0.8rem !important;
  margin-right: 0.8rem !important;
}

.my-2 {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

.ml-2 {
  margin-left: 0.8rem !important;
}

.mr-2 {
  margin-right: 0.8rem !important;
}

.mt-2 {
  margin-top: 0.8rem !important;
}

.mb-2 {
  margin-bottom: 0.8rem !important;
}

.p-3 {
  padding: 1.2rem !important;
}

.px-3 {
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
}

.py-3 {
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
}

.pl-3 {
  padding-left: 1.2rem !important;
}

.pr-3 {
  padding-right: 1.2rem !important;
}

.pt-3 {
  padding-top: 1.2rem !important;
}

.pb-3 {
  padding-bottom: 1.2rem !important;
}

.m-3 {
  margin: 1.2rem !important;
}

.mx-3 {
  margin-left: 1.2rem !important;
  margin-right: 1.2rem !important;
}

.my-3 {
  margin-top: 1.2rem !important;
  margin-bottom: 1.2rem !important;
}

.ml-3 {
  margin-left: 1.2rem !important;
}

.mr-3 {
  margin-right: 1.2rem !important;
}

.mt-3 {
  margin-top: 1.2rem !important;
}

.mb-3 {
  margin-bottom: 1.2rem !important;
}

.p-4 {
  padding: 1.6rem !important;
}

.px-4 {
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
}

.py-4 {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}

.pl-4 {
  padding-left: 1.6rem !important;
}

.pr-4 {
  padding-right: 1.6rem !important;
}

.pt-4 {
  padding-top: 1.6rem !important;
}

.pb-4 {
  padding-bottom: 1.6rem !important;
}

.m-4 {
  margin: 1.6rem !important;
}

.mx-4 {
  margin-left: 1.6rem !important;
  margin-right: 1.6rem !important;
}

.my-4 {
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem !important;
}

.ml-4 {
  margin-left: 1.6rem !important;
}

.mr-4 {
  margin-right: 1.6rem !important;
}

.mt-4 {
  margin-top: 1.6rem !important;
}

.mb-4 {
  margin-bottom: 1.6rem !important;
}

.p-5 {
  padding: 2rem !important;
}

.px-5 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.pl-5 {
  padding-left: 2rem !important;
}

.pr-5 {
  padding-right: 2rem !important;
}

.pt-5 {
  padding-top: 2rem !important;
}

.pb-5 {
  padding-bottom: 2rem !important;
}

.m-5 {
  margin: 2rem !important;
}

.mx-5 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.ml-5 {
  margin-left: 2rem !important;
}

.mr-5 {
  margin-right: 2rem !important;
}

.mt-5 {
  margin-top: 2rem !important;
}

.mb-5 {
  margin-bottom: 2rem !important;
}

.p-6 {
  padding: 2.4rem !important;
}

.px-6 {
  padding-left: 2.4rem !important;
  padding-right: 2.4rem !important;
}

.py-6 {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}

.pl-6 {
  padding-left: 2.4rem !important;
}

.pr-6 {
  padding-right: 2.4rem !important;
}

.pt-6 {
  padding-top: 2.4rem !important;
}

.pb-6 {
  padding-bottom: 2.4rem !important;
}

.m-6 {
  margin: 2.4rem !important;
}

.mx-6 {
  margin-left: 2.4rem !important;
  margin-right: 2.4rem !important;
}

.my-6 {
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}

.ml-6 {
  margin-left: 2.4rem !important;
}

.mr-6 {
  margin-right: 2.4rem !important;
}

.mt-6 {
  margin-top: 2.4rem !important;
}

.mb-6 {
  margin-bottom: 2.4rem !important;
}

.p-7 {
  padding: 2.8rem !important;
}

.px-7 {
  padding-left: 2.8rem !important;
  padding-right: 2.8rem !important;
}

.py-7 {
  padding-top: 2.8rem !important;
  padding-bottom: 2.8rem !important;
}

.pl-7 {
  padding-left: 2.8rem !important;
}

.pr-7 {
  padding-right: 2.8rem !important;
}

.pt-7 {
  padding-top: 2.8rem !important;
}

.pb-7 {
  padding-bottom: 2.8rem !important;
}

.m-7 {
  margin: 2.8rem !important;
}

.mx-7 {
  margin-left: 2.8rem !important;
  margin-right: 2.8rem !important;
}

.my-7 {
  margin-top: 2.8rem !important;
  margin-bottom: 2.8rem !important;
}

.ml-7 {
  margin-left: 2.8rem !important;
}

.mr-7 {
  margin-right: 2.8rem !important;
}

.mt-7 {
  margin-top: 2.8rem !important;
}

.mb-7 {
  margin-bottom: 2.8rem !important;
}

.p-8 {
  padding: 3.2rem !important;
}

.px-8 {
  padding-left: 3.2rem !important;
  padding-right: 3.2rem !important;
}

.py-8 {
  padding-top: 3.2rem !important;
  padding-bottom: 3.2rem !important;
}

.pl-8 {
  padding-left: 3.2rem !important;
}

.pr-8 {
  padding-right: 3.2rem !important;
}

.pt-8 {
  padding-top: 3.2rem !important;
}

.pb-8 {
  padding-bottom: 3.2rem !important;
}

.m-8 {
  margin: 3.2rem !important;
}

.mx-8 {
  margin-left: 3.2rem !important;
  margin-right: 3.2rem !important;
}

.my-8 {
  margin-top: 3.2rem !important;
  margin-bottom: 3.2rem !important;
}

.ml-8 {
  margin-left: 3.2rem !important;
}

.mr-8 {
  margin-right: 3.2rem !important;
}

.mt-8 {
  margin-top: 3.2rem !important;
}

.mb-8 {
  margin-bottom: 3.2rem !important;
}

.p-9 {
  padding: 3.6rem !important;
}

.px-9 {
  padding-left: 3.6rem !important;
  padding-right: 3.6rem !important;
}

.py-9 {
  padding-top: 3.6rem !important;
  padding-bottom: 3.6rem !important;
}

.pl-9 {
  padding-left: 3.6rem !important;
}

.pr-9 {
  padding-right: 3.6rem !important;
}

.pt-9 {
  padding-top: 3.6rem !important;
}

.pb-9 {
  padding-bottom: 3.6rem !important;
}

.m-9 {
  margin: 3.6rem !important;
}

.mx-9 {
  margin-left: 3.6rem !important;
  margin-right: 3.6rem !important;
}

.my-9 {
  margin-top: 3.6rem !important;
  margin-bottom: 3.6rem !important;
}

.ml-9 {
  margin-left: 3.6rem !important;
}

.mr-9 {
  margin-right: 3.6rem !important;
}

.mt-9 {
  margin-top: 3.6rem !important;
}

.mb-9 {
  margin-bottom: 3.6rem !important;
}

.p-10 {
  padding: 4rem !important;
}

.px-10 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-10 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.pl-10 {
  padding-left: 4rem !important;
}

.pr-10 {
  padding-right: 4rem !important;
}

.pt-10 {
  padding-top: 4rem !important;
}

.pb-10 {
  padding-bottom: 4rem !important;
}

.m-10 {
  margin: 4rem !important;
}

.mx-10 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-10 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.ml-10 {
  margin-left: 4rem !important;
}

.mr-10 {
  margin-right: 4rem !important;
}

.mt-10 {
  margin-top: 4rem !important;
}

.mb-10 {
  margin-bottom: 4rem !important;
}

@media (min-width: 450px) {
  .p-xs-0 {
    padding: 0rem !important;
  }
  .px-xs-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .py-xs-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .pl-xs-0 {
    padding-left: 0rem !important;
  }
  .pr-xs-0 {
    padding-right: 0rem !important;
  }
  .pt-xs-0 {
    padding-top: 0rem !important;
  }
  .pb-xs-0 {
    padding-bottom: 0rem !important;
  }
  .m-xs-0 {
    margin: 0rem !important;
  }
  .mx-xs-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-xs-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .ml-xs-0 {
    margin-left: 0rem !important;
  }
  .mr-xs-0 {
    margin-right: 0rem !important;
  }
  .mt-xs-0 {
    margin-top: 0rem !important;
  }
  .mb-xs-0 {
    margin-bottom: 0rem !important;
  }
  .p-xs-1 {
    padding: 0.4rem !important;
  }
  .px-xs-1 {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .py-xs-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  .pl-xs-1 {
    padding-left: 0.4rem !important;
  }
  .pr-xs-1 {
    padding-right: 0.4rem !important;
  }
  .pt-xs-1 {
    padding-top: 0.4rem !important;
  }
  .pb-xs-1 {
    padding-bottom: 0.4rem !important;
  }
  .m-xs-1 {
    margin: 0.4rem !important;
  }
  .mx-xs-1 {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
  .my-xs-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .ml-xs-1 {
    margin-left: 0.4rem !important;
  }
  .mr-xs-1 {
    margin-right: 0.4rem !important;
  }
  .mt-xs-1 {
    margin-top: 0.4rem !important;
  }
  .mb-xs-1 {
    margin-bottom: 0.4rem !important;
  }
  .p-xs-2 {
    padding: 0.8rem !important;
  }
  .px-xs-2 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  .py-xs-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
  .pl-xs-2 {
    padding-left: 0.8rem !important;
  }
  .pr-xs-2 {
    padding-right: 0.8rem !important;
  }
  .pt-xs-2 {
    padding-top: 0.8rem !important;
  }
  .pb-xs-2 {
    padding-bottom: 0.8rem !important;
  }
  .m-xs-2 {
    margin: 0.8rem !important;
  }
  .mx-xs-2 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
  .my-xs-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
  .ml-xs-2 {
    margin-left: 0.8rem !important;
  }
  .mr-xs-2 {
    margin-right: 0.8rem !important;
  }
  .mt-xs-2 {
    margin-top: 0.8rem !important;
  }
  .mb-xs-2 {
    margin-bottom: 0.8rem !important;
  }
  .p-xs-3 {
    padding: 1.2rem !important;
  }
  .px-xs-3 {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .py-xs-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .pl-xs-3 {
    padding-left: 1.2rem !important;
  }
  .pr-xs-3 {
    padding-right: 1.2rem !important;
  }
  .pt-xs-3 {
    padding-top: 1.2rem !important;
  }
  .pb-xs-3 {
    padding-bottom: 1.2rem !important;
  }
  .m-xs-3 {
    margin: 1.2rem !important;
  }
  .mx-xs-3 {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
  .my-xs-3 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .ml-xs-3 {
    margin-left: 1.2rem !important;
  }
  .mr-xs-3 {
    margin-right: 1.2rem !important;
  }
  .mt-xs-3 {
    margin-top: 1.2rem !important;
  }
  .mb-xs-3 {
    margin-bottom: 1.2rem !important;
  }
  .p-xs-4 {
    padding: 1.6rem !important;
  }
  .px-xs-4 {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .py-xs-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .pl-xs-4 {
    padding-left: 1.6rem !important;
  }
  .pr-xs-4 {
    padding-right: 1.6rem !important;
  }
  .pt-xs-4 {
    padding-top: 1.6rem !important;
  }
  .pb-xs-4 {
    padding-bottom: 1.6rem !important;
  }
  .m-xs-4 {
    margin: 1.6rem !important;
  }
  .mx-xs-4 {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
  .my-xs-4 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
  .ml-xs-4 {
    margin-left: 1.6rem !important;
  }
  .mr-xs-4 {
    margin-right: 1.6rem !important;
  }
  .mt-xs-4 {
    margin-top: 1.6rem !important;
  }
  .mb-xs-4 {
    margin-bottom: 1.6rem !important;
  }
  .p-xs-5 {
    padding: 2rem !important;
  }
  .px-xs-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .py-xs-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .pl-xs-5 {
    padding-left: 2rem !important;
  }
  .pr-xs-5 {
    padding-right: 2rem !important;
  }
  .pt-xs-5 {
    padding-top: 2rem !important;
  }
  .pb-xs-5 {
    padding-bottom: 2rem !important;
  }
  .m-xs-5 {
    margin: 2rem !important;
  }
  .mx-xs-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-xs-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .ml-xs-5 {
    margin-left: 2rem !important;
  }
  .mr-xs-5 {
    margin-right: 2rem !important;
  }
  .mt-xs-5 {
    margin-top: 2rem !important;
  }
  .mb-xs-5 {
    margin-bottom: 2rem !important;
  }
  .p-xs-6 {
    padding: 2.4rem !important;
  }
  .px-xs-6 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .py-xs-6 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
  .pl-xs-6 {
    padding-left: 2.4rem !important;
  }
  .pr-xs-6 {
    padding-right: 2.4rem !important;
  }
  .pt-xs-6 {
    padding-top: 2.4rem !important;
  }
  .pb-xs-6 {
    padding-bottom: 2.4rem !important;
  }
  .m-xs-6 {
    margin: 2.4rem !important;
  }
  .mx-xs-6 {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
  .my-xs-6 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
  .ml-xs-6 {
    margin-left: 2.4rem !important;
  }
  .mr-xs-6 {
    margin-right: 2.4rem !important;
  }
  .mt-xs-6 {
    margin-top: 2.4rem !important;
  }
  .mb-xs-6 {
    margin-bottom: 2.4rem !important;
  }
  .p-xs-7 {
    padding: 2.8rem !important;
  }
  .px-xs-7 {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
  .py-xs-7 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
  .pl-xs-7 {
    padding-left: 2.8rem !important;
  }
  .pr-xs-7 {
    padding-right: 2.8rem !important;
  }
  .pt-xs-7 {
    padding-top: 2.8rem !important;
  }
  .pb-xs-7 {
    padding-bottom: 2.8rem !important;
  }
  .m-xs-7 {
    margin: 2.8rem !important;
  }
  .mx-xs-7 {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
  .my-xs-7 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
  .ml-xs-7 {
    margin-left: 2.8rem !important;
  }
  .mr-xs-7 {
    margin-right: 2.8rem !important;
  }
  .mt-xs-7 {
    margin-top: 2.8rem !important;
  }
  .mb-xs-7 {
    margin-bottom: 2.8rem !important;
  }
  .p-xs-8 {
    padding: 3.2rem !important;
  }
  .px-xs-8 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  .py-xs-8 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
  .pl-xs-8 {
    padding-left: 3.2rem !important;
  }
  .pr-xs-8 {
    padding-right: 3.2rem !important;
  }
  .pt-xs-8 {
    padding-top: 3.2rem !important;
  }
  .pb-xs-8 {
    padding-bottom: 3.2rem !important;
  }
  .m-xs-8 {
    margin: 3.2rem !important;
  }
  .mx-xs-8 {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
  .my-xs-8 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
  .ml-xs-8 {
    margin-left: 3.2rem !important;
  }
  .mr-xs-8 {
    margin-right: 3.2rem !important;
  }
  .mt-xs-8 {
    margin-top: 3.2rem !important;
  }
  .mb-xs-8 {
    margin-bottom: 3.2rem !important;
  }
  .p-xs-9 {
    padding: 3.6rem !important;
  }
  .px-xs-9 {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
  .py-xs-9 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
  .pl-xs-9 {
    padding-left: 3.6rem !important;
  }
  .pr-xs-9 {
    padding-right: 3.6rem !important;
  }
  .pt-xs-9 {
    padding-top: 3.6rem !important;
  }
  .pb-xs-9 {
    padding-bottom: 3.6rem !important;
  }
  .m-xs-9 {
    margin: 3.6rem !important;
  }
  .mx-xs-9 {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
  .my-xs-9 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
  .ml-xs-9 {
    margin-left: 3.6rem !important;
  }
  .mr-xs-9 {
    margin-right: 3.6rem !important;
  }
  .mt-xs-9 {
    margin-top: 3.6rem !important;
  }
  .mb-xs-9 {
    margin-bottom: 3.6rem !important;
  }
  .p-xs-10 {
    padding: 4rem !important;
  }
  .px-xs-10 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .py-xs-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pl-xs-10 {
    padding-left: 4rem !important;
  }
  .pr-xs-10 {
    padding-right: 4rem !important;
  }
  .pt-xs-10 {
    padding-top: 4rem !important;
  }
  .pb-xs-10 {
    padding-bottom: 4rem !important;
  }
  .m-xs-10 {
    margin: 4rem !important;
  }
  .mx-xs-10 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-xs-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .ml-xs-10 {
    margin-left: 4rem !important;
  }
  .mr-xs-10 {
    margin-right: 4rem !important;
  }
  .mt-xs-10 {
    margin-top: 4rem !important;
  }
  .mb-xs-10 {
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 576px) {
  .p-sm-0 {
    padding: 0rem !important;
  }
  .px-sm-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .py-sm-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .pl-sm-0 {
    padding-left: 0rem !important;
  }
  .pr-sm-0 {
    padding-right: 0rem !important;
  }
  .pt-sm-0 {
    padding-top: 0rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0rem !important;
  }
  .m-sm-0 {
    margin: 0rem !important;
  }
  .mx-sm-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-sm-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .ml-sm-0 {
    margin-left: 0rem !important;
  }
  .mr-sm-0 {
    margin-right: 0rem !important;
  }
  .mt-sm-0 {
    margin-top: 0rem !important;
  }
  .mb-sm-0 {
    margin-bottom: 0rem !important;
  }
  .p-sm-1 {
    padding: 0.4rem !important;
  }
  .px-sm-1 {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .py-sm-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  .pl-sm-1 {
    padding-left: 0.4rem !important;
  }
  .pr-sm-1 {
    padding-right: 0.4rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.4rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.4rem !important;
  }
  .m-sm-1 {
    margin: 0.4rem !important;
  }
  .mx-sm-1 {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
  .my-sm-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .ml-sm-1 {
    margin-left: 0.4rem !important;
  }
  .mr-sm-1 {
    margin-right: 0.4rem !important;
  }
  .mt-sm-1 {
    margin-top: 0.4rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.4rem !important;
  }
  .p-sm-2 {
    padding: 0.8rem !important;
  }
  .px-sm-2 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  .py-sm-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
  .pl-sm-2 {
    padding-left: 0.8rem !important;
  }
  .pr-sm-2 {
    padding-right: 0.8rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.8rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.8rem !important;
  }
  .m-sm-2 {
    margin: 0.8rem !important;
  }
  .mx-sm-2 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
  .my-sm-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
  .ml-sm-2 {
    margin-left: 0.8rem !important;
  }
  .mr-sm-2 {
    margin-right: 0.8rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.8rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.8rem !important;
  }
  .p-sm-3 {
    padding: 1.2rem !important;
  }
  .px-sm-3 {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .py-sm-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .pl-sm-3 {
    padding-left: 1.2rem !important;
  }
  .pr-sm-3 {
    padding-right: 1.2rem !important;
  }
  .pt-sm-3 {
    padding-top: 1.2rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1.2rem !important;
  }
  .m-sm-3 {
    margin: 1.2rem !important;
  }
  .mx-sm-3 {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
  .my-sm-3 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .ml-sm-3 {
    margin-left: 1.2rem !important;
  }
  .mr-sm-3 {
    margin-right: 1.2rem !important;
  }
  .mt-sm-3 {
    margin-top: 1.2rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1.2rem !important;
  }
  .p-sm-4 {
    padding: 1.6rem !important;
  }
  .px-sm-4 {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .py-sm-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .pl-sm-4 {
    padding-left: 1.6rem !important;
  }
  .pr-sm-4 {
    padding-right: 1.6rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.6rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.6rem !important;
  }
  .m-sm-4 {
    margin: 1.6rem !important;
  }
  .mx-sm-4 {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
  .my-sm-4 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
  .ml-sm-4 {
    margin-left: 1.6rem !important;
  }
  .mr-sm-4 {
    margin-right: 1.6rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.6rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.6rem !important;
  }
  .p-sm-5 {
    padding: 2rem !important;
  }
  .px-sm-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .py-sm-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .pl-sm-5 {
    padding-left: 2rem !important;
  }
  .pr-sm-5 {
    padding-right: 2rem !important;
  }
  .pt-sm-5 {
    padding-top: 2rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 2rem !important;
  }
  .m-sm-5 {
    margin: 2rem !important;
  }
  .mx-sm-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-sm-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .ml-sm-5 {
    margin-left: 2rem !important;
  }
  .mr-sm-5 {
    margin-right: 2rem !important;
  }
  .mt-sm-5 {
    margin-top: 2rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 2rem !important;
  }
  .p-sm-6 {
    padding: 2.4rem !important;
  }
  .px-sm-6 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .py-sm-6 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
  .pl-sm-6 {
    padding-left: 2.4rem !important;
  }
  .pr-sm-6 {
    padding-right: 2.4rem !important;
  }
  .pt-sm-6 {
    padding-top: 2.4rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 2.4rem !important;
  }
  .m-sm-6 {
    margin: 2.4rem !important;
  }
  .mx-sm-6 {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
  .my-sm-6 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
  .ml-sm-6 {
    margin-left: 2.4rem !important;
  }
  .mr-sm-6 {
    margin-right: 2.4rem !important;
  }
  .mt-sm-6 {
    margin-top: 2.4rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 2.4rem !important;
  }
  .p-sm-7 {
    padding: 2.8rem !important;
  }
  .px-sm-7 {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
  .py-sm-7 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
  .pl-sm-7 {
    padding-left: 2.8rem !important;
  }
  .pr-sm-7 {
    padding-right: 2.8rem !important;
  }
  .pt-sm-7 {
    padding-top: 2.8rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 2.8rem !important;
  }
  .m-sm-7 {
    margin: 2.8rem !important;
  }
  .mx-sm-7 {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
  .my-sm-7 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
  .ml-sm-7 {
    margin-left: 2.8rem !important;
  }
  .mr-sm-7 {
    margin-right: 2.8rem !important;
  }
  .mt-sm-7 {
    margin-top: 2.8rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 2.8rem !important;
  }
  .p-sm-8 {
    padding: 3.2rem !important;
  }
  .px-sm-8 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  .py-sm-8 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
  .pl-sm-8 {
    padding-left: 3.2rem !important;
  }
  .pr-sm-8 {
    padding-right: 3.2rem !important;
  }
  .pt-sm-8 {
    padding-top: 3.2rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 3.2rem !important;
  }
  .m-sm-8 {
    margin: 3.2rem !important;
  }
  .mx-sm-8 {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
  .my-sm-8 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
  .ml-sm-8 {
    margin-left: 3.2rem !important;
  }
  .mr-sm-8 {
    margin-right: 3.2rem !important;
  }
  .mt-sm-8 {
    margin-top: 3.2rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 3.2rem !important;
  }
  .p-sm-9 {
    padding: 3.6rem !important;
  }
  .px-sm-9 {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
  .py-sm-9 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
  .pl-sm-9 {
    padding-left: 3.6rem !important;
  }
  .pr-sm-9 {
    padding-right: 3.6rem !important;
  }
  .pt-sm-9 {
    padding-top: 3.6rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 3.6rem !important;
  }
  .m-sm-9 {
    margin: 3.6rem !important;
  }
  .mx-sm-9 {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
  .my-sm-9 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
  .ml-sm-9 {
    margin-left: 3.6rem !important;
  }
  .mr-sm-9 {
    margin-right: 3.6rem !important;
  }
  .mt-sm-9 {
    margin-top: 3.6rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 3.6rem !important;
  }
  .p-sm-10 {
    padding: 4rem !important;
  }
  .px-sm-10 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .py-sm-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pl-sm-10 {
    padding-left: 4rem !important;
  }
  .pr-sm-10 {
    padding-right: 4rem !important;
  }
  .pt-sm-10 {
    padding-top: 4rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 4rem !important;
  }
  .m-sm-10 {
    margin: 4rem !important;
  }
  .mx-sm-10 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-sm-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .ml-sm-10 {
    margin-left: 4rem !important;
  }
  .mr-sm-10 {
    margin-right: 4rem !important;
  }
  .mt-sm-10 {
    margin-top: 4rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 768px) {
  .p-md-0 {
    padding: 0rem !important;
  }
  .px-md-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .py-md-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .pl-md-0 {
    padding-left: 0rem !important;
  }
  .pr-md-0 {
    padding-right: 0rem !important;
  }
  .pt-md-0 {
    padding-top: 0rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0rem !important;
  }
  .m-md-0 {
    margin: 0rem !important;
  }
  .mx-md-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-md-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .ml-md-0 {
    margin-left: 0rem !important;
  }
  .mr-md-0 {
    margin-right: 0rem !important;
  }
  .mt-md-0 {
    margin-top: 0rem !important;
  }
  .mb-md-0 {
    margin-bottom: 0rem !important;
  }
  .p-md-1 {
    padding: 0.4rem !important;
  }
  .px-md-1 {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .py-md-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  .pl-md-1 {
    padding-left: 0.4rem !important;
  }
  .pr-md-1 {
    padding-right: 0.4rem !important;
  }
  .pt-md-1 {
    padding-top: 0.4rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.4rem !important;
  }
  .m-md-1 {
    margin: 0.4rem !important;
  }
  .mx-md-1 {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
  .my-md-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .ml-md-1 {
    margin-left: 0.4rem !important;
  }
  .mr-md-1 {
    margin-right: 0.4rem !important;
  }
  .mt-md-1 {
    margin-top: 0.4rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.4rem !important;
  }
  .p-md-2 {
    padding: 0.8rem !important;
  }
  .px-md-2 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  .py-md-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
  .pl-md-2 {
    padding-left: 0.8rem !important;
  }
  .pr-md-2 {
    padding-right: 0.8rem !important;
  }
  .pt-md-2 {
    padding-top: 0.8rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.8rem !important;
  }
  .m-md-2 {
    margin: 0.8rem !important;
  }
  .mx-md-2 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
  .my-md-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
  .ml-md-2 {
    margin-left: 0.8rem !important;
  }
  .mr-md-2 {
    margin-right: 0.8rem !important;
  }
  .mt-md-2 {
    margin-top: 0.8rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.8rem !important;
  }
  .p-md-3 {
    padding: 1.2rem !important;
  }
  .px-md-3 {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .py-md-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .pl-md-3 {
    padding-left: 1.2rem !important;
  }
  .pr-md-3 {
    padding-right: 1.2rem !important;
  }
  .pt-md-3 {
    padding-top: 1.2rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1.2rem !important;
  }
  .m-md-3 {
    margin: 1.2rem !important;
  }
  .mx-md-3 {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
  .my-md-3 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .ml-md-3 {
    margin-left: 1.2rem !important;
  }
  .mr-md-3 {
    margin-right: 1.2rem !important;
  }
  .mt-md-3 {
    margin-top: 1.2rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1.2rem !important;
  }
  .p-md-4 {
    padding: 1.6rem !important;
  }
  .px-md-4 {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .py-md-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .pl-md-4 {
    padding-left: 1.6rem !important;
  }
  .pr-md-4 {
    padding-right: 1.6rem !important;
  }
  .pt-md-4 {
    padding-top: 1.6rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.6rem !important;
  }
  .m-md-4 {
    margin: 1.6rem !important;
  }
  .mx-md-4 {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
  .my-md-4 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
  .ml-md-4 {
    margin-left: 1.6rem !important;
  }
  .mr-md-4 {
    margin-right: 1.6rem !important;
  }
  .mt-md-4 {
    margin-top: 1.6rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.6rem !important;
  }
  .p-md-5 {
    padding: 2rem !important;
  }
  .px-md-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .py-md-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .pl-md-5 {
    padding-left: 2rem !important;
  }
  .pr-md-5 {
    padding-right: 2rem !important;
  }
  .pt-md-5 {
    padding-top: 2rem !important;
  }
  .pb-md-5 {
    padding-bottom: 2rem !important;
  }
  .m-md-5 {
    margin: 2rem !important;
  }
  .mx-md-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-md-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .ml-md-5 {
    margin-left: 2rem !important;
  }
  .mr-md-5 {
    margin-right: 2rem !important;
  }
  .mt-md-5 {
    margin-top: 2rem !important;
  }
  .mb-md-5 {
    margin-bottom: 2rem !important;
  }
  .p-md-6 {
    padding: 2.4rem !important;
  }
  .px-md-6 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .py-md-6 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
  .pl-md-6 {
    padding-left: 2.4rem !important;
  }
  .pr-md-6 {
    padding-right: 2.4rem !important;
  }
  .pt-md-6 {
    padding-top: 2.4rem !important;
  }
  .pb-md-6 {
    padding-bottom: 2.4rem !important;
  }
  .m-md-6 {
    margin: 2.4rem !important;
  }
  .mx-md-6 {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
  .my-md-6 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
  .ml-md-6 {
    margin-left: 2.4rem !important;
  }
  .mr-md-6 {
    margin-right: 2.4rem !important;
  }
  .mt-md-6 {
    margin-top: 2.4rem !important;
  }
  .mb-md-6 {
    margin-bottom: 2.4rem !important;
  }
  .p-md-7 {
    padding: 2.8rem !important;
  }
  .px-md-7 {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
  .py-md-7 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
  .pl-md-7 {
    padding-left: 2.8rem !important;
  }
  .pr-md-7 {
    padding-right: 2.8rem !important;
  }
  .pt-md-7 {
    padding-top: 2.8rem !important;
  }
  .pb-md-7 {
    padding-bottom: 2.8rem !important;
  }
  .m-md-7 {
    margin: 2.8rem !important;
  }
  .mx-md-7 {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
  .my-md-7 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
  .ml-md-7 {
    margin-left: 2.8rem !important;
  }
  .mr-md-7 {
    margin-right: 2.8rem !important;
  }
  .mt-md-7 {
    margin-top: 2.8rem !important;
  }
  .mb-md-7 {
    margin-bottom: 2.8rem !important;
  }
  .p-md-8 {
    padding: 3.2rem !important;
  }
  .px-md-8 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  .py-md-8 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
  .pl-md-8 {
    padding-left: 3.2rem !important;
  }
  .pr-md-8 {
    padding-right: 3.2rem !important;
  }
  .pt-md-8 {
    padding-top: 3.2rem !important;
  }
  .pb-md-8 {
    padding-bottom: 3.2rem !important;
  }
  .m-md-8 {
    margin: 3.2rem !important;
  }
  .mx-md-8 {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
  .my-md-8 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
  .ml-md-8 {
    margin-left: 3.2rem !important;
  }
  .mr-md-8 {
    margin-right: 3.2rem !important;
  }
  .mt-md-8 {
    margin-top: 3.2rem !important;
  }
  .mb-md-8 {
    margin-bottom: 3.2rem !important;
  }
  .p-md-9 {
    padding: 3.6rem !important;
  }
  .px-md-9 {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
  .py-md-9 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
  .pl-md-9 {
    padding-left: 3.6rem !important;
  }
  .pr-md-9 {
    padding-right: 3.6rem !important;
  }
  .pt-md-9 {
    padding-top: 3.6rem !important;
  }
  .pb-md-9 {
    padding-bottom: 3.6rem !important;
  }
  .m-md-9 {
    margin: 3.6rem !important;
  }
  .mx-md-9 {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
  .my-md-9 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
  .ml-md-9 {
    margin-left: 3.6rem !important;
  }
  .mr-md-9 {
    margin-right: 3.6rem !important;
  }
  .mt-md-9 {
    margin-top: 3.6rem !important;
  }
  .mb-md-9 {
    margin-bottom: 3.6rem !important;
  }
  .p-md-10 {
    padding: 4rem !important;
  }
  .px-md-10 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .py-md-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pl-md-10 {
    padding-left: 4rem !important;
  }
  .pr-md-10 {
    padding-right: 4rem !important;
  }
  .pt-md-10 {
    padding-top: 4rem !important;
  }
  .pb-md-10 {
    padding-bottom: 4rem !important;
  }
  .m-md-10 {
    margin: 4rem !important;
  }
  .mx-md-10 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-md-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .ml-md-10 {
    margin-left: 4rem !important;
  }
  .mr-md-10 {
    margin-right: 4rem !important;
  }
  .mt-md-10 {
    margin-top: 4rem !important;
  }
  .mb-md-10 {
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 992px) {
  .p-lg-0 {
    padding: 0rem !important;
  }
  .px-lg-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .py-lg-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .pl-lg-0 {
    padding-left: 0rem !important;
  }
  .pr-lg-0 {
    padding-right: 0rem !important;
  }
  .pt-lg-0 {
    padding-top: 0rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0rem !important;
  }
  .m-lg-0 {
    margin: 0rem !important;
  }
  .mx-lg-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-lg-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .ml-lg-0 {
    margin-left: 0rem !important;
  }
  .mr-lg-0 {
    margin-right: 0rem !important;
  }
  .mt-lg-0 {
    margin-top: 0rem !important;
  }
  .mb-lg-0 {
    margin-bottom: 0rem !important;
  }
  .p-lg-1 {
    padding: 0.4rem !important;
  }
  .px-lg-1 {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .py-lg-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  .pl-lg-1 {
    padding-left: 0.4rem !important;
  }
  .pr-lg-1 {
    padding-right: 0.4rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.4rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.4rem !important;
  }
  .m-lg-1 {
    margin: 0.4rem !important;
  }
  .mx-lg-1 {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
  .my-lg-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .ml-lg-1 {
    margin-left: 0.4rem !important;
  }
  .mr-lg-1 {
    margin-right: 0.4rem !important;
  }
  .mt-lg-1 {
    margin-top: 0.4rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.4rem !important;
  }
  .p-lg-2 {
    padding: 0.8rem !important;
  }
  .px-lg-2 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  .py-lg-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
  .pl-lg-2 {
    padding-left: 0.8rem !important;
  }
  .pr-lg-2 {
    padding-right: 0.8rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.8rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.8rem !important;
  }
  .m-lg-2 {
    margin: 0.8rem !important;
  }
  .mx-lg-2 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
  .my-lg-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
  .ml-lg-2 {
    margin-left: 0.8rem !important;
  }
  .mr-lg-2 {
    margin-right: 0.8rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.8rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.8rem !important;
  }
  .p-lg-3 {
    padding: 1.2rem !important;
  }
  .px-lg-3 {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .py-lg-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .pl-lg-3 {
    padding-left: 1.2rem !important;
  }
  .pr-lg-3 {
    padding-right: 1.2rem !important;
  }
  .pt-lg-3 {
    padding-top: 1.2rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1.2rem !important;
  }
  .m-lg-3 {
    margin: 1.2rem !important;
  }
  .mx-lg-3 {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
  .my-lg-3 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .ml-lg-3 {
    margin-left: 1.2rem !important;
  }
  .mr-lg-3 {
    margin-right: 1.2rem !important;
  }
  .mt-lg-3 {
    margin-top: 1.2rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1.2rem !important;
  }
  .p-lg-4 {
    padding: 1.6rem !important;
  }
  .px-lg-4 {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .py-lg-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .pl-lg-4 {
    padding-left: 1.6rem !important;
  }
  .pr-lg-4 {
    padding-right: 1.6rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.6rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.6rem !important;
  }
  .m-lg-4 {
    margin: 1.6rem !important;
  }
  .mx-lg-4 {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
  .my-lg-4 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
  .ml-lg-4 {
    margin-left: 1.6rem !important;
  }
  .mr-lg-4 {
    margin-right: 1.6rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.6rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.6rem !important;
  }
  .p-lg-5 {
    padding: 2rem !important;
  }
  .px-lg-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .py-lg-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .pl-lg-5 {
    padding-left: 2rem !important;
  }
  .pr-lg-5 {
    padding-right: 2rem !important;
  }
  .pt-lg-5 {
    padding-top: 2rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 2rem !important;
  }
  .m-lg-5 {
    margin: 2rem !important;
  }
  .mx-lg-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-lg-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .ml-lg-5 {
    margin-left: 2rem !important;
  }
  .mr-lg-5 {
    margin-right: 2rem !important;
  }
  .mt-lg-5 {
    margin-top: 2rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 2rem !important;
  }
  .p-lg-6 {
    padding: 2.4rem !important;
  }
  .px-lg-6 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .py-lg-6 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
  .pl-lg-6 {
    padding-left: 2.4rem !important;
  }
  .pr-lg-6 {
    padding-right: 2.4rem !important;
  }
  .pt-lg-6 {
    padding-top: 2.4rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 2.4rem !important;
  }
  .m-lg-6 {
    margin: 2.4rem !important;
  }
  .mx-lg-6 {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
  .my-lg-6 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
  .ml-lg-6 {
    margin-left: 2.4rem !important;
  }
  .mr-lg-6 {
    margin-right: 2.4rem !important;
  }
  .mt-lg-6 {
    margin-top: 2.4rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 2.4rem !important;
  }
  .p-lg-7 {
    padding: 2.8rem !important;
  }
  .px-lg-7 {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
  .py-lg-7 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
  .pl-lg-7 {
    padding-left: 2.8rem !important;
  }
  .pr-lg-7 {
    padding-right: 2.8rem !important;
  }
  .pt-lg-7 {
    padding-top: 2.8rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 2.8rem !important;
  }
  .m-lg-7 {
    margin: 2.8rem !important;
  }
  .mx-lg-7 {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
  .my-lg-7 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
  .ml-lg-7 {
    margin-left: 2.8rem !important;
  }
  .mr-lg-7 {
    margin-right: 2.8rem !important;
  }
  .mt-lg-7 {
    margin-top: 2.8rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 2.8rem !important;
  }
  .p-lg-8 {
    padding: 3.2rem !important;
  }
  .px-lg-8 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  .py-lg-8 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
  .pl-lg-8 {
    padding-left: 3.2rem !important;
  }
  .pr-lg-8 {
    padding-right: 3.2rem !important;
  }
  .pt-lg-8 {
    padding-top: 3.2rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 3.2rem !important;
  }
  .m-lg-8 {
    margin: 3.2rem !important;
  }
  .mx-lg-8 {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
  .my-lg-8 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
  .ml-lg-8 {
    margin-left: 3.2rem !important;
  }
  .mr-lg-8 {
    margin-right: 3.2rem !important;
  }
  .mt-lg-8 {
    margin-top: 3.2rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 3.2rem !important;
  }
  .p-lg-9 {
    padding: 3.6rem !important;
  }
  .px-lg-9 {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
  .py-lg-9 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
  .pl-lg-9 {
    padding-left: 3.6rem !important;
  }
  .pr-lg-9 {
    padding-right: 3.6rem !important;
  }
  .pt-lg-9 {
    padding-top: 3.6rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 3.6rem !important;
  }
  .m-lg-9 {
    margin: 3.6rem !important;
  }
  .mx-lg-9 {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
  .my-lg-9 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
  .ml-lg-9 {
    margin-left: 3.6rem !important;
  }
  .mr-lg-9 {
    margin-right: 3.6rem !important;
  }
  .mt-lg-9 {
    margin-top: 3.6rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 3.6rem !important;
  }
  .p-lg-10 {
    padding: 4rem !important;
  }
  .px-lg-10 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .py-lg-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pl-lg-10 {
    padding-left: 4rem !important;
  }
  .pr-lg-10 {
    padding-right: 4rem !important;
  }
  .pt-lg-10 {
    padding-top: 4rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 4rem !important;
  }
  .m-lg-10 {
    margin: 4rem !important;
  }
  .mx-lg-10 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-lg-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .ml-lg-10 {
    margin-left: 4rem !important;
  }
  .mr-lg-10 {
    margin-right: 4rem !important;
  }
  .mt-lg-10 {
    margin-top: 4rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 1200px) {
  .p-xl-0 {
    padding: 0rem !important;
  }
  .px-xl-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .py-xl-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .pl-xl-0 {
    padding-left: 0rem !important;
  }
  .pr-xl-0 {
    padding-right: 0rem !important;
  }
  .pt-xl-0 {
    padding-top: 0rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0rem !important;
  }
  .m-xl-0 {
    margin: 0rem !important;
  }
  .mx-xl-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-xl-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .ml-xl-0 {
    margin-left: 0rem !important;
  }
  .mr-xl-0 {
    margin-right: 0rem !important;
  }
  .mt-xl-0 {
    margin-top: 0rem !important;
  }
  .mb-xl-0 {
    margin-bottom: 0rem !important;
  }
  .p-xl-1 {
    padding: 0.4rem !important;
  }
  .px-xl-1 {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .py-xl-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  .pl-xl-1 {
    padding-left: 0.4rem !important;
  }
  .pr-xl-1 {
    padding-right: 0.4rem !important;
  }
  .pt-xl-1 {
    padding-top: 0.4rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.4rem !important;
  }
  .m-xl-1 {
    margin: 0.4rem !important;
  }
  .mx-xl-1 {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
  .my-xl-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .ml-xl-1 {
    margin-left: 0.4rem !important;
  }
  .mr-xl-1 {
    margin-right: 0.4rem !important;
  }
  .mt-xl-1 {
    margin-top: 0.4rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.4rem !important;
  }
  .p-xl-2 {
    padding: 0.8rem !important;
  }
  .px-xl-2 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  .py-xl-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
  .pl-xl-2 {
    padding-left: 0.8rem !important;
  }
  .pr-xl-2 {
    padding-right: 0.8rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.8rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.8rem !important;
  }
  .m-xl-2 {
    margin: 0.8rem !important;
  }
  .mx-xl-2 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
  .my-xl-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
  .ml-xl-2 {
    margin-left: 0.8rem !important;
  }
  .mr-xl-2 {
    margin-right: 0.8rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.8rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.8rem !important;
  }
  .p-xl-3 {
    padding: 1.2rem !important;
  }
  .px-xl-3 {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .py-xl-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .pl-xl-3 {
    padding-left: 1.2rem !important;
  }
  .pr-xl-3 {
    padding-right: 1.2rem !important;
  }
  .pt-xl-3 {
    padding-top: 1.2rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1.2rem !important;
  }
  .m-xl-3 {
    margin: 1.2rem !important;
  }
  .mx-xl-3 {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
  .my-xl-3 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .ml-xl-3 {
    margin-left: 1.2rem !important;
  }
  .mr-xl-3 {
    margin-right: 1.2rem !important;
  }
  .mt-xl-3 {
    margin-top: 1.2rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1.2rem !important;
  }
  .p-xl-4 {
    padding: 1.6rem !important;
  }
  .px-xl-4 {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .py-xl-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .pl-xl-4 {
    padding-left: 1.6rem !important;
  }
  .pr-xl-4 {
    padding-right: 1.6rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.6rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.6rem !important;
  }
  .m-xl-4 {
    margin: 1.6rem !important;
  }
  .mx-xl-4 {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
  .my-xl-4 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
  .ml-xl-4 {
    margin-left: 1.6rem !important;
  }
  .mr-xl-4 {
    margin-right: 1.6rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.6rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.6rem !important;
  }
  .p-xl-5 {
    padding: 2rem !important;
  }
  .px-xl-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .py-xl-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .pl-xl-5 {
    padding-left: 2rem !important;
  }
  .pr-xl-5 {
    padding-right: 2rem !important;
  }
  .pt-xl-5 {
    padding-top: 2rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 2rem !important;
  }
  .m-xl-5 {
    margin: 2rem !important;
  }
  .mx-xl-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-xl-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .ml-xl-5 {
    margin-left: 2rem !important;
  }
  .mr-xl-5 {
    margin-right: 2rem !important;
  }
  .mt-xl-5 {
    margin-top: 2rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 2rem !important;
  }
  .p-xl-6 {
    padding: 2.4rem !important;
  }
  .px-xl-6 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .py-xl-6 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
  .pl-xl-6 {
    padding-left: 2.4rem !important;
  }
  .pr-xl-6 {
    padding-right: 2.4rem !important;
  }
  .pt-xl-6 {
    padding-top: 2.4rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 2.4rem !important;
  }
  .m-xl-6 {
    margin: 2.4rem !important;
  }
  .mx-xl-6 {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
  .my-xl-6 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
  .ml-xl-6 {
    margin-left: 2.4rem !important;
  }
  .mr-xl-6 {
    margin-right: 2.4rem !important;
  }
  .mt-xl-6 {
    margin-top: 2.4rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 2.4rem !important;
  }
  .p-xl-7 {
    padding: 2.8rem !important;
  }
  .px-xl-7 {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
  .py-xl-7 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
  .pl-xl-7 {
    padding-left: 2.8rem !important;
  }
  .pr-xl-7 {
    padding-right: 2.8rem !important;
  }
  .pt-xl-7 {
    padding-top: 2.8rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 2.8rem !important;
  }
  .m-xl-7 {
    margin: 2.8rem !important;
  }
  .mx-xl-7 {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
  .my-xl-7 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
  .ml-xl-7 {
    margin-left: 2.8rem !important;
  }
  .mr-xl-7 {
    margin-right: 2.8rem !important;
  }
  .mt-xl-7 {
    margin-top: 2.8rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 2.8rem !important;
  }
  .p-xl-8 {
    padding: 3.2rem !important;
  }
  .px-xl-8 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  .py-xl-8 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
  .pl-xl-8 {
    padding-left: 3.2rem !important;
  }
  .pr-xl-8 {
    padding-right: 3.2rem !important;
  }
  .pt-xl-8 {
    padding-top: 3.2rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 3.2rem !important;
  }
  .m-xl-8 {
    margin: 3.2rem !important;
  }
  .mx-xl-8 {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
  .my-xl-8 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
  .ml-xl-8 {
    margin-left: 3.2rem !important;
  }
  .mr-xl-8 {
    margin-right: 3.2rem !important;
  }
  .mt-xl-8 {
    margin-top: 3.2rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 3.2rem !important;
  }
  .p-xl-9 {
    padding: 3.6rem !important;
  }
  .px-xl-9 {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
  .py-xl-9 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
  .pl-xl-9 {
    padding-left: 3.6rem !important;
  }
  .pr-xl-9 {
    padding-right: 3.6rem !important;
  }
  .pt-xl-9 {
    padding-top: 3.6rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 3.6rem !important;
  }
  .m-xl-9 {
    margin: 3.6rem !important;
  }
  .mx-xl-9 {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
  .my-xl-9 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
  .ml-xl-9 {
    margin-left: 3.6rem !important;
  }
  .mr-xl-9 {
    margin-right: 3.6rem !important;
  }
  .mt-xl-9 {
    margin-top: 3.6rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 3.6rem !important;
  }
  .p-xl-10 {
    padding: 4rem !important;
  }
  .px-xl-10 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .py-xl-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pl-xl-10 {
    padding-left: 4rem !important;
  }
  .pr-xl-10 {
    padding-right: 4rem !important;
  }
  .pt-xl-10 {
    padding-top: 4rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 4rem !important;
  }
  .m-xl-10 {
    margin: 4rem !important;
  }
  .mx-xl-10 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-xl-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .ml-xl-10 {
    margin-left: 4rem !important;
  }
  .mr-xl-10 {
    margin-right: 4rem !important;
  }
  .mt-xl-10 {
    margin-top: 4rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 1500px) {
  .p-xxl-0 {
    padding: 0rem !important;
  }
  .px-xxl-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .py-xxl-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .pl-xxl-0 {
    padding-left: 0rem !important;
  }
  .pr-xxl-0 {
    padding-right: 0rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0rem !important;
  }
  .m-xxl-0 {
    margin: 0rem !important;
  }
  .mx-xxl-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-xxl-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .ml-xxl-0 {
    margin-left: 0rem !important;
  }
  .mr-xxl-0 {
    margin-right: 0rem !important;
  }
  .mt-xxl-0 {
    margin-top: 0rem !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0rem !important;
  }
  .p-xxl-1 {
    padding: 0.4rem !important;
  }
  .px-xxl-1 {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .py-xxl-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  .pl-xxl-1 {
    padding-left: 0.4rem !important;
  }
  .pr-xxl-1 {
    padding-right: 0.4rem !important;
  }
  .pt-xxl-1 {
    padding-top: 0.4rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.4rem !important;
  }
  .m-xxl-1 {
    margin: 0.4rem !important;
  }
  .mx-xxl-1 {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
  .my-xxl-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .ml-xxl-1 {
    margin-left: 0.4rem !important;
  }
  .mr-xxl-1 {
    margin-right: 0.4rem !important;
  }
  .mt-xxl-1 {
    margin-top: 0.4rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.4rem !important;
  }
  .p-xxl-2 {
    padding: 0.8rem !important;
  }
  .px-xxl-2 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
  .pl-xxl-2 {
    padding-left: 0.8rem !important;
  }
  .pr-xxl-2 {
    padding-right: 0.8rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.8rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.8rem !important;
  }
  .m-xxl-2 {
    margin: 0.8rem !important;
  }
  .mx-xxl-2 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
  .ml-xxl-2 {
    margin-left: 0.8rem !important;
  }
  .mr-xxl-2 {
    margin-right: 0.8rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.8rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.8rem !important;
  }
  .p-xxl-3 {
    padding: 1.2rem !important;
  }
  .px-xxl-3 {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .py-xxl-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .pl-xxl-3 {
    padding-left: 1.2rem !important;
  }
  .pr-xxl-3 {
    padding-right: 1.2rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1.2rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1.2rem !important;
  }
  .m-xxl-3 {
    margin: 1.2rem !important;
  }
  .mx-xxl-3 {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
  .my-xxl-3 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1.2rem !important;
  }
  .mr-xxl-3 {
    margin-right: 1.2rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1.2rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1.2rem !important;
  }
  .p-xxl-4 {
    padding: 1.6rem !important;
  }
  .px-xxl-4 {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .pl-xxl-4 {
    padding-left: 1.6rem !important;
  }
  .pr-xxl-4 {
    padding-right: 1.6rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.6rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.6rem !important;
  }
  .m-xxl-4 {
    margin: 1.6rem !important;
  }
  .mx-xxl-4 {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
  .ml-xxl-4 {
    margin-left: 1.6rem !important;
  }
  .mr-xxl-4 {
    margin-right: 1.6rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.6rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.6rem !important;
  }
  .p-xxl-5 {
    padding: 2rem !important;
  }
  .px-xxl-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .py-xxl-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .pl-xxl-5 {
    padding-left: 2rem !important;
  }
  .pr-xxl-5 {
    padding-right: 2rem !important;
  }
  .pt-xxl-5 {
    padding-top: 2rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 2rem !important;
  }
  .m-xxl-5 {
    margin: 2rem !important;
  }
  .mx-xxl-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-xxl-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .ml-xxl-5 {
    margin-left: 2rem !important;
  }
  .mr-xxl-5 {
    margin-right: 2rem !important;
  }
  .mt-xxl-5 {
    margin-top: 2rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 2rem !important;
  }
  .p-xxl-6 {
    padding: 2.4rem !important;
  }
  .px-xxl-6 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .py-xxl-6 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
  .pl-xxl-6 {
    padding-left: 2.4rem !important;
  }
  .pr-xxl-6 {
    padding-right: 2.4rem !important;
  }
  .pt-xxl-6 {
    padding-top: 2.4rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 2.4rem !important;
  }
  .m-xxl-6 {
    margin: 2.4rem !important;
  }
  .mx-xxl-6 {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
  .my-xxl-6 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
  .ml-xxl-6 {
    margin-left: 2.4rem !important;
  }
  .mr-xxl-6 {
    margin-right: 2.4rem !important;
  }
  .mt-xxl-6 {
    margin-top: 2.4rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 2.4rem !important;
  }
  .p-xxl-7 {
    padding: 2.8rem !important;
  }
  .px-xxl-7 {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
  .py-xxl-7 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
  .pl-xxl-7 {
    padding-left: 2.8rem !important;
  }
  .pr-xxl-7 {
    padding-right: 2.8rem !important;
  }
  .pt-xxl-7 {
    padding-top: 2.8rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 2.8rem !important;
  }
  .m-xxl-7 {
    margin: 2.8rem !important;
  }
  .mx-xxl-7 {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
  .my-xxl-7 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
  .ml-xxl-7 {
    margin-left: 2.8rem !important;
  }
  .mr-xxl-7 {
    margin-right: 2.8rem !important;
  }
  .mt-xxl-7 {
    margin-top: 2.8rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 2.8rem !important;
  }
  .p-xxl-8 {
    padding: 3.2rem !important;
  }
  .px-xxl-8 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  .py-xxl-8 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
  .pl-xxl-8 {
    padding-left: 3.2rem !important;
  }
  .pr-xxl-8 {
    padding-right: 3.2rem !important;
  }
  .pt-xxl-8 {
    padding-top: 3.2rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 3.2rem !important;
  }
  .m-xxl-8 {
    margin: 3.2rem !important;
  }
  .mx-xxl-8 {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
  .my-xxl-8 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
  .ml-xxl-8 {
    margin-left: 3.2rem !important;
  }
  .mr-xxl-8 {
    margin-right: 3.2rem !important;
  }
  .mt-xxl-8 {
    margin-top: 3.2rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 3.2rem !important;
  }
  .p-xxl-9 {
    padding: 3.6rem !important;
  }
  .px-xxl-9 {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
  .py-xxl-9 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
  .pl-xxl-9 {
    padding-left: 3.6rem !important;
  }
  .pr-xxl-9 {
    padding-right: 3.6rem !important;
  }
  .pt-xxl-9 {
    padding-top: 3.6rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 3.6rem !important;
  }
  .m-xxl-9 {
    margin: 3.6rem !important;
  }
  .mx-xxl-9 {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
  .my-xxl-9 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
  .ml-xxl-9 {
    margin-left: 3.6rem !important;
  }
  .mr-xxl-9 {
    margin-right: 3.6rem !important;
  }
  .mt-xxl-9 {
    margin-top: 3.6rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 3.6rem !important;
  }
  .p-xxl-10 {
    padding: 4rem !important;
  }
  .px-xxl-10 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .py-xxl-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pl-xxl-10 {
    padding-left: 4rem !important;
  }
  .pr-xxl-10 {
    padding-right: 4rem !important;
  }
  .pt-xxl-10 {
    padding-top: 4rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 4rem !important;
  }
  .m-xxl-10 {
    margin: 4rem !important;
  }
  .mx-xxl-10 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-xxl-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .ml-xxl-10 {
    margin-left: 4rem !important;
  }
  .mr-xxl-10 {
    margin-right: 4rem !important;
  }
  .mt-xxl-10 {
    margin-top: 4rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 4rem !important;
  }
}
.h-1 {
  height: 10% !important;
}

.w-1 {
  width: 10% !important;
}

.h-2 {
  height: 20% !important;
}

.w-2 {
  width: 20% !important;
}

.h-3 {
  height: 30% !important;
}

.w-3 {
  width: 30% !important;
}

.h-4 {
  height: 40% !important;
}

.w-4 {
  width: 40% !important;
}

.h-5 {
  height: 50% !important;
}

.w-5 {
  width: 50% !important;
}

.h-6 {
  height: 60% !important;
}

.w-6 {
  width: 60% !important;
}

.h-7 {
  height: 70% !important;
}

.w-7 {
  width: 70% !important;
}

.h-8 {
  height: 80% !important;
}

.w-8 {
  width: 80% !important;
}

.h-9 {
  height: 90% !important;
}

.w-9 {
  width: 90% !important;
}

.h-10 {
  height: 100% !important;
}

.w-10 {
  width: 100% !important;
}

@media (min-width: 450px) {
  .h-xs-1 {
    height: 10% !important;
  }
  .w-xs-1 {
    width: 10% !important;
  }
  .h-xs-2 {
    height: 20% !important;
  }
  .w-xs-2 {
    width: 20% !important;
  }
  .h-xs-3 {
    height: 30% !important;
  }
  .w-xs-3 {
    width: 30% !important;
  }
  .h-xs-4 {
    height: 40% !important;
  }
  .w-xs-4 {
    width: 40% !important;
  }
  .h-xs-5 {
    height: 50% !important;
  }
  .w-xs-5 {
    width: 50% !important;
  }
  .h-xs-6 {
    height: 60% !important;
  }
  .w-xs-6 {
    width: 60% !important;
  }
  .h-xs-7 {
    height: 70% !important;
  }
  .w-xs-7 {
    width: 70% !important;
  }
  .h-xs-8 {
    height: 80% !important;
  }
  .w-xs-8 {
    width: 80% !important;
  }
  .h-xs-9 {
    height: 90% !important;
  }
  .w-xs-9 {
    width: 90% !important;
  }
  .h-xs-10 {
    height: 100% !important;
  }
  .w-xs-10 {
    width: 100% !important;
  }
}
@media (min-width: 576px) {
  .h-sm-1 {
    height: 10% !important;
  }
  .w-sm-1 {
    width: 10% !important;
  }
  .h-sm-2 {
    height: 20% !important;
  }
  .w-sm-2 {
    width: 20% !important;
  }
  .h-sm-3 {
    height: 30% !important;
  }
  .w-sm-3 {
    width: 30% !important;
  }
  .h-sm-4 {
    height: 40% !important;
  }
  .w-sm-4 {
    width: 40% !important;
  }
  .h-sm-5 {
    height: 50% !important;
  }
  .w-sm-5 {
    width: 50% !important;
  }
  .h-sm-6 {
    height: 60% !important;
  }
  .w-sm-6 {
    width: 60% !important;
  }
  .h-sm-7 {
    height: 70% !important;
  }
  .w-sm-7 {
    width: 70% !important;
  }
  .h-sm-8 {
    height: 80% !important;
  }
  .w-sm-8 {
    width: 80% !important;
  }
  .h-sm-9 {
    height: 90% !important;
  }
  .w-sm-9 {
    width: 90% !important;
  }
  .h-sm-10 {
    height: 100% !important;
  }
  .w-sm-10 {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .h-md-1 {
    height: 10% !important;
  }
  .w-md-1 {
    width: 10% !important;
  }
  .h-md-2 {
    height: 20% !important;
  }
  .w-md-2 {
    width: 20% !important;
  }
  .h-md-3 {
    height: 30% !important;
  }
  .w-md-3 {
    width: 30% !important;
  }
  .h-md-4 {
    height: 40% !important;
  }
  .w-md-4 {
    width: 40% !important;
  }
  .h-md-5 {
    height: 50% !important;
  }
  .w-md-5 {
    width: 50% !important;
  }
  .h-md-6 {
    height: 60% !important;
  }
  .w-md-6 {
    width: 60% !important;
  }
  .h-md-7 {
    height: 70% !important;
  }
  .w-md-7 {
    width: 70% !important;
  }
  .h-md-8 {
    height: 80% !important;
  }
  .w-md-8 {
    width: 80% !important;
  }
  .h-md-9 {
    height: 90% !important;
  }
  .w-md-9 {
    width: 90% !important;
  }
  .h-md-10 {
    height: 100% !important;
  }
  .w-md-10 {
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  .h-lg-1 {
    height: 10% !important;
  }
  .w-lg-1 {
    width: 10% !important;
  }
  .h-lg-2 {
    height: 20% !important;
  }
  .w-lg-2 {
    width: 20% !important;
  }
  .h-lg-3 {
    height: 30% !important;
  }
  .w-lg-3 {
    width: 30% !important;
  }
  .h-lg-4 {
    height: 40% !important;
  }
  .w-lg-4 {
    width: 40% !important;
  }
  .h-lg-5 {
    height: 50% !important;
  }
  .w-lg-5 {
    width: 50% !important;
  }
  .h-lg-6 {
    height: 60% !important;
  }
  .w-lg-6 {
    width: 60% !important;
  }
  .h-lg-7 {
    height: 70% !important;
  }
  .w-lg-7 {
    width: 70% !important;
  }
  .h-lg-8 {
    height: 80% !important;
  }
  .w-lg-8 {
    width: 80% !important;
  }
  .h-lg-9 {
    height: 90% !important;
  }
  .w-lg-9 {
    width: 90% !important;
  }
  .h-lg-10 {
    height: 100% !important;
  }
  .w-lg-10 {
    width: 100% !important;
  }
}
@media (min-width: 1200px) {
  .h-xl-1 {
    height: 10% !important;
  }
  .w-xl-1 {
    width: 10% !important;
  }
  .h-xl-2 {
    height: 20% !important;
  }
  .w-xl-2 {
    width: 20% !important;
  }
  .h-xl-3 {
    height: 30% !important;
  }
  .w-xl-3 {
    width: 30% !important;
  }
  .h-xl-4 {
    height: 40% !important;
  }
  .w-xl-4 {
    width: 40% !important;
  }
  .h-xl-5 {
    height: 50% !important;
  }
  .w-xl-5 {
    width: 50% !important;
  }
  .h-xl-6 {
    height: 60% !important;
  }
  .w-xl-6 {
    width: 60% !important;
  }
  .h-xl-7 {
    height: 70% !important;
  }
  .w-xl-7 {
    width: 70% !important;
  }
  .h-xl-8 {
    height: 80% !important;
  }
  .w-xl-8 {
    width: 80% !important;
  }
  .h-xl-9 {
    height: 90% !important;
  }
  .w-xl-9 {
    width: 90% !important;
  }
  .h-xl-10 {
    height: 100% !important;
  }
  .w-xl-10 {
    width: 100% !important;
  }
}
@media (min-width: 1500px) {
  .h-xxl-1 {
    height: 10% !important;
  }
  .w-xxl-1 {
    width: 10% !important;
  }
  .h-xxl-2 {
    height: 20% !important;
  }
  .w-xxl-2 {
    width: 20% !important;
  }
  .h-xxl-3 {
    height: 30% !important;
  }
  .w-xxl-3 {
    width: 30% !important;
  }
  .h-xxl-4 {
    height: 40% !important;
  }
  .w-xxl-4 {
    width: 40% !important;
  }
  .h-xxl-5 {
    height: 50% !important;
  }
  .w-xxl-5 {
    width: 50% !important;
  }
  .h-xxl-6 {
    height: 60% !important;
  }
  .w-xxl-6 {
    width: 60% !important;
  }
  .h-xxl-7 {
    height: 70% !important;
  }
  .w-xxl-7 {
    width: 70% !important;
  }
  .h-xxl-8 {
    height: 80% !important;
  }
  .w-xxl-8 {
    width: 80% !important;
  }
  .h-xxl-9 {
    height: 90% !important;
  }
  .w-xxl-9 {
    width: 90% !important;
  }
  .h-xxl-10 {
    height: 100% !important;
  }
  .w-xxl-10 {
    width: 100% !important;
  }
}
.block-mb {
  margin-bottom: 10rem !important;
}

@media (max-width: 1499px) {
  .block-mb {
    margin-bottom: 9rem !important;
  }
}
@media (max-width: 1199px) {
  .block-mb {
    margin-bottom: 8rem !important;
  }
}
@media (max-width: 991px) {
  .block-mb {
    margin-bottom: 7rem !important;
  }
}
@media (max-width: 767px) {
  .block-mb {
    margin-bottom: 6rem !important;
  }
}
@media (max-width: 575px) {
  .block-mb {
    margin-bottom: 5rem !important;
  }
}
header {
  position: fixed;
  height: 145px;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0);
  z-index: 1000 !important;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
}

@media (max-width: 1499px) {
  header {
    height: 135px;
  }
}
@media (max-width: 1199px) {
  header {
    height: 130px;
  }
}
@media (max-width: 991px) {
  header {
    height: 125px;
  }
}
@media (max-width: 767px) {
  header {
    height: 120px;
  }
}
@media (max-width: 575px) {
  header {
    height: 110px;
  }
}
header.tiny {
  height: 80px;
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
}

header.tiny .head-left {
  height: 65%;
}

header.tiny .head-left .logo-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header.tiny .head-left #menu-icon-wrapper {
  background: white;
  border-radius: 0px;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0.45rem 0.75rem;
  padding-left: 1.5rem;
}

header .head-left {
  height: 40%;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
}

header .head-left .logo-holder {
  height: 100%;
  position: relative;
  margin-right: 1rem;
}

header .head-left .logo-holder__link-container {
  height: calc(100% - 0.9rem);
  display: block;
  background: white;
  border-radius: 7px;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
  padding: 0.45rem 0.55rem;
}

header .head-left .logo-holder__link-container img {
  height: 100%;
}

header .head-left #menu-icon-wrapper {
  height: 100%;
  background: white;
  border-radius: 7px;
  padding: 0.45rem 0.75rem;
  border-left: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
}

.head-right {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
}

.head-right.hidden {
  visibility: hidden;
  opacity: 0;
}

.head-right .header-social {
  border-right: 1px solid #adb5bd;
  padding-right: 1rem;
}

.head-right .header-social ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.head-right .header-social ul li {
  display: inline-block;
  margin-right: 1rem;
}

.head-right .header-social ul li:last-child {
  margin-right: 0;
}

.head-right .header-social ul li a {
  font-size: 1.3rem;
  color: #6c757d;
}

.head-right .language-switch {
  padding-left: 1rem;
}

.head-right .language-switch__wrapper {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
  border-radius: 7px;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0);
}

.head-right .language-switch__wrapper.hovered {
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
}

.head-right .language-switch__wrapper.hovered ul {
  background: rgb(255, 255, 255);
}

.head-right .language-switch__wrapper ul {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  left: 0;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0);
  border-radius: 7px;
  list-style-type: none;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
}

.head-right .language-switch__wrapper ul li {
  display: inline-block;
}

.head-right .language-switch__wrapper ul li.active a {
  color: white;
  background: #6c757d;
}

.head-right .language-switch__wrapper ul li a {
  display: block;
  border-radius: 7px;
  padding: 0.25rem 0.5rem;
  text-transform: capitalize;
}

footer {
  padding: 5rem 0;
}

@media (max-width: 575px) {
  footer {
    padding: 5rem 2rem;
  }
}
footer .footer-title {
  display: inline-block;
  font-size: 1.75rem;
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

footer .footer-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

footer .footer-list li {
  position: relative;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.25rem;
  font-weight: 300;
  font-size: 1.25rem;
}

footer .footer-list li a {
  font-weight: 300;
  font-size: 1.25rem;
}

footer .footer-list li:last-child {
  margin-bottom: 0;
}

footer .footer-list li .icon, footer .footer-list li svg {
  width: 20px;
  height: 20px;
  position: absolute;
  left: -30px;
  text-align: right;
  color: #dee2e6;
}

footer .footer-list li p {
  margin: 0;
  font-weight: 300;
  font-size: 1.25rem;
}

footer .footer-social {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .footer-social li {
  margin-right: 1rem;
}

footer .footer-social li:last-child {
  margin-right: 0;
}

footer .footer-social li a {
  font-size: 25px;
}

footer .footer-social li a svg {
  color: #343a40;
}

footer .footer-right {
  display: none !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 991px) {
  footer .footer-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 575px) {
  footer .footer-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 991px) {
  .footer-right-bottom {
    width: 50%;
    padding-top: 0.5rem;
  }
}
@media (max-width: 575px) {
  .footer-right-bottom {
    width: 100%;
    padding-left: 0;
  }
}
.footer-right-bottom img {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 65px !important;
  width: auto;
}

@media (min-width: 992px) {
  .footer-right-bottom img {
    height: 85px;
  }
}
@media (min-width: 1200px) {
  .footer-right-bottom img {
    height: 95px;
  }
}
@media (min-width: 2300px) {
  .footer-right-bottom img {
    height: 120px;
  }
}
#map-holder #map {
  height: 700px;
  width: 100%;
}

/*
#pac-input {
    width: 100%;
    margin-bottom: 20px;
}


#map-config{
    width: 100%;
    height: 100%;
    background: $gray-100;
    padding: $spacer;
}
*/
.menu-icon-holder {
  display: block;
  position: relative;
  width: 35px;
  height: 20px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 500ms ease-out 150ms;
  transition: all 500ms ease-out 150ms;
}

.menu-icon-holder.tload {
  visibility: hidden;
  opacity: 0;
}

.menu-icon-holder .menu-icon {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: rotate-men-rev 0.75s 0.4s forwards;
  animation: rotate-men-rev 0.75s 0.4s forwards;
}

.menu-icon-holder .menu-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #343a40;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 300ms ease-out 50ms;
  transition: all 300ms ease-out 50ms;
}

.menu-icon-holder .menu-icon span:before, .menu-icon-holder .menu-icon span:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #343a40;
  -webkit-transition: all 300ms ease-out 50ms;
  transition: all 300ms ease-out 50ms;
}

.menu-icon-holder .menu-icon span:before {
  top: -8.5px;
  left: 0;
  width: 19px;
  top: -19px;
  moz-transform-origin: 100% 100%;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-animation: anim-men-tl-rev 0.5s 0.35s forwards;
  animation: anim-men-tl-rev 0.5s 0.35s forwards;
}

.menu-icon-holder .menu-icon span:after {
  bottom: -8.5px;
  right: 0;
  width: 19px;
  bottom: -13px;
  moz-transform-origin: 3px 100%;
  -webkit-transform-origin: 3px 100%;
  transform-origin: 3px 100%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-animation: anim-men-bl-rev 0.5s 0.35s forwards;
  animation: anim-men-bl-rev 0.5s 0.35s forwards;
}

.menu-icon-holder .menu-icon.open {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation: rotate-men 0.75s 0.4s forwards;
  animation: rotate-men 0.75s 0.4s forwards;
}

.menu-icon-holder .menu-icon.open span:before {
  width: 100%;
  top: -8.5px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation: anim-men-tl 0.5s 0.35s forwards;
  animation: anim-men-tl 0.5s 0.35s forwards;
}

.menu-icon-holder .menu-icon.open span:after {
  width: 100%;
  bottom: -8.5px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation: anim-men-bl 0.5s 0.35s forwards;
  animation: anim-men-bl 0.5s 0.35s forwards;
}

@-webkit-keyframes rotate-men {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@keyframes rotate-men {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@-webkit-keyframes rotate-men-rev {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes rotate-men-rev {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes anim-men-tl {
  0% {
    width: 100%;
    top: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    width: calc(1.5px + 50%);
    top: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    width: 19px;
    top: -19px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@keyframes anim-men-tl {
  0% {
    width: 100%;
    top: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    width: calc(1.5px + 50%);
    top: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    width: 19px;
    top: -19px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@-webkit-keyframes anim-men-bl {
  0% {
    width: 100%;
    bottom: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    width: calc(1.5px + 50%);
    bottom: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    width: 19px;
    bottom: -13px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@keyframes anim-men-bl {
  0% {
    width: 100%;
    bottom: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    width: calc(1.5px + 50%);
    bottom: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    width: 19px;
    bottom: -13px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@-webkit-keyframes anim-men-tl-rev {
  0% {
    width: 19px;
    top: -19px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  50% {
    width: calc(1.5px + 50%);
    top: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    width: 100%;
    top: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes anim-men-tl-rev {
  0% {
    width: 19px;
    top: -19px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  50% {
    width: calc(1.5px + 50%);
    top: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    width: 100%;
    top: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes anim-men-bl-rev {
  0% {
    width: 19px;
    bottom: -13px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  50% {
    width: calc(1.5px + 50%);
    bottom: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    width: 100%;
    bottom: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes anim-men-bl-rev {
  0% {
    width: 19px;
    bottom: -13px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  50% {
    width: calc(1.5px + 50%);
    bottom: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    width: 100%;
    bottom: -8.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media (max-width: 767px) {
  .menu-icon-holder {
    display: block;
    position: relative;
    width: 36px;
    height: 24px;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 500ms ease-out 150ms;
    transition: all 500ms ease-out 150ms;
  }
  .menu-icon-holder.tload {
    visibility: hidden;
    opacity: 0;
  }
  .menu-icon-holder .menu-icon {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: rotate-men-rev 0.75s 0.4s forwards;
    animation: rotate-men-rev 0.75s 0.4s forwards;
  }
  .menu-icon-holder .menu-icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    background: #343a40;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 300ms ease-out 50ms;
    transition: all 300ms ease-out 50ms;
  }
  .menu-icon-holder .menu-icon span:before, .menu-icon-holder .menu-icon span:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    background: #343a40;
    -webkit-transition: all 300ms ease-out 50ms;
    transition: all 300ms ease-out 50ms;
  }
  .menu-icon-holder .menu-icon span:before {
    top: -10px;
    left: 0;
    width: 20px;
    top: -20px;
    moz-transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-animation: anim-men-tl-rev 0.5s 0.35s forwards;
    animation: anim-men-tl-rev 0.5s 0.35s forwards;
  }
  .menu-icon-holder .menu-icon span:after {
    bottom: -10px;
    right: 0;
    width: 20px;
    bottom: -12px;
    moz-transform-origin: 4px 100%;
    -webkit-transform-origin: 4px 100%;
    transform-origin: 4px 100%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-animation: anim-men-bl-rev 0.5s 0.35s forwards;
    animation: anim-men-bl-rev 0.5s 0.35s forwards;
  }
  .menu-icon-holder .menu-icon.open {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: rotate-men 0.75s 0.4s forwards;
    animation: rotate-men 0.75s 0.4s forwards;
  }
  .menu-icon-holder .menu-icon.open span:before {
    width: 100%;
    top: -10px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: anim-men-tl 0.5s 0.35s forwards;
    animation: anim-men-tl 0.5s 0.35s forwards;
  }
  .menu-icon-holder .menu-icon.open span:after {
    width: 100%;
    bottom: -10px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: anim-men-bl 0.5s 0.35s forwards;
    animation: anim-men-bl 0.5s 0.35s forwards;
  }
  @-webkit-keyframes rotate-men {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  @keyframes rotate-men {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  @-webkit-keyframes rotate-men-rev {
    0% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @keyframes rotate-men-rev {
    0% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @-webkit-keyframes anim-men-tl {
    0% {
      width: 100%;
      top: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      width: calc(2px + 50%);
      top: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 20px;
      top: -20px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
  }
  @keyframes anim-men-tl {
    0% {
      width: 100%;
      top: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      width: calc(2px + 50%);
      top: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 20px;
      top: -20px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
  }
  @-webkit-keyframes anim-men-bl {
    0% {
      width: 100%;
      bottom: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      width: calc(2px + 50%);
      bottom: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 20px;
      bottom: -12px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
  }
  @keyframes anim-men-bl {
    0% {
      width: 100%;
      bottom: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      width: calc(2px + 50%);
      bottom: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 20px;
      bottom: -12px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
  }
  @-webkit-keyframes anim-men-tl-rev {
    0% {
      width: 20px;
      top: -20px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
    50% {
      width: calc(2px + 50%);
      top: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 100%;
      top: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @keyframes anim-men-tl-rev {
    0% {
      width: 20px;
      top: -20px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
    50% {
      width: calc(2px + 50%);
      top: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 100%;
      top: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @-webkit-keyframes anim-men-bl-rev {
    0% {
      width: 20px;
      bottom: -12px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
    50% {
      width: calc(2px + 50%);
      bottom: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 100%;
      bottom: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @keyframes anim-men-bl-rev {
    0% {
      width: 20px;
      bottom: -12px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
    50% {
      width: calc(2px + 50%);
      bottom: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 100%;
      bottom: -10px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
}
@media (max-width: 767px) {
  .menu-icon-holder {
    display: block;
    position: relative;
    width: 35px;
    height: 22px;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 500ms ease-out 150ms;
    transition: all 500ms ease-out 150ms;
  }
  .menu-icon-holder.tload {
    visibility: hidden;
    opacity: 0;
  }
  .menu-icon-holder .menu-icon {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: rotate-men-rev 0.75s 0.4s forwards;
    animation: rotate-men-rev 0.75s 0.4s forwards;
  }
  .menu-icon-holder .menu-icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: #343a40;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 300ms ease-out 50ms;
    transition: all 300ms ease-out 50ms;
  }
  .menu-icon-holder .menu-icon span:before, .menu-icon-holder .menu-icon span:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: #343a40;
    -webkit-transition: all 300ms ease-out 50ms;
    transition: all 300ms ease-out 50ms;
  }
  .menu-icon-holder .menu-icon span:before {
    top: -9.5px;
    left: 0;
    width: 19px;
    top: -19px;
    moz-transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-animation: anim-men-tl-rev 0.5s 0.35s forwards;
    animation: anim-men-tl-rev 0.5s 0.35s forwards;
  }
  .menu-icon-holder .menu-icon span:after {
    bottom: -9.5px;
    right: 0;
    width: 19px;
    bottom: -13px;
    moz-transform-origin: 3px 100%;
    -webkit-transform-origin: 3px 100%;
    transform-origin: 3px 100%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-animation: anim-men-bl-rev 0.5s 0.35s forwards;
    animation: anim-men-bl-rev 0.5s 0.35s forwards;
  }
  .menu-icon-holder .menu-icon.open {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: rotate-men 0.75s 0.4s forwards;
    animation: rotate-men 0.75s 0.4s forwards;
  }
  .menu-icon-holder .menu-icon.open span:before {
    width: 100%;
    top: -9.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: anim-men-tl 0.5s 0.35s forwards;
    animation: anim-men-tl 0.5s 0.35s forwards;
  }
  .menu-icon-holder .menu-icon.open span:after {
    width: 100%;
    bottom: -9.5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: anim-men-bl 0.5s 0.35s forwards;
    animation: anim-men-bl 0.5s 0.35s forwards;
  }
  @-webkit-keyframes rotate-men {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  @keyframes rotate-men {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  @-webkit-keyframes rotate-men-rev {
    0% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @keyframes rotate-men-rev {
    0% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @-webkit-keyframes anim-men-tl {
    0% {
      width: 100%;
      top: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      width: calc(1.5px + 50%);
      top: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 19px;
      top: -19px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
  }
  @keyframes anim-men-tl {
    0% {
      width: 100%;
      top: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      width: calc(1.5px + 50%);
      top: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 19px;
      top: -19px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
  }
  @-webkit-keyframes anim-men-bl {
    0% {
      width: 100%;
      bottom: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      width: calc(1.5px + 50%);
      bottom: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 19px;
      bottom: -13px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
  }
  @keyframes anim-men-bl {
    0% {
      width: 100%;
      bottom: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      width: calc(1.5px + 50%);
      bottom: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 19px;
      bottom: -13px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
  }
  @-webkit-keyframes anim-men-tl-rev {
    0% {
      width: 19px;
      top: -19px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
    50% {
      width: calc(1.5px + 50%);
      top: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 100%;
      top: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @keyframes anim-men-tl-rev {
    0% {
      width: 19px;
      top: -19px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
    50% {
      width: calc(1.5px + 50%);
      top: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 100%;
      top: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @-webkit-keyframes anim-men-bl-rev {
    0% {
      width: 19px;
      bottom: -13px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
    50% {
      width: calc(1.5px + 50%);
      bottom: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 100%;
      bottom: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @keyframes anim-men-bl-rev {
    0% {
      width: 19px;
      bottom: -13px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
    50% {
      width: calc(1.5px + 50%);
      bottom: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      width: 100%;
      bottom: -9.5px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
}
.fs-slider {
  height: 500px;
  position: relative;
  z-index: 500;
  overflow: hidden;
}

.fs-slider .fs-slider__slides.hidden {
  opacity: 0;
  visibility: hidden;
}

.fs-slider .fs-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1200ms ease-out 50ms;
  transition: all 1200ms ease-out 50ms;
}

.fs-slider .fs-slider__slides .slide {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-transition: all 300ms ease-out 100ms;
  transition: all 300ms ease-out 100ms;
}

@media screen and (orientation: landscape) and (max-width: 800px) {
  .fs-slider .fs-slider__slides .slide.complex {
    background-size: 200%;
  }
}
.fs-slider .fs-slider__slides .slide__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.5+0,0.15+40,0+99 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), color-stop(40%, rgba(0, 0, 0, 0.15)), color-stop(99%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0) 99%, rgba(0, 0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#80000000", endColorstr="#00000000",GradientType=1 ); /* IE6-9 */
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.fs-slider .fs-slider__slides .slide__content {
  position: absolute !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 5rem;
  bottom: 4rem;
  height: 60%;
  width: calc(35% - 5rem);
  text-align: left;
  -webkit-transform: translate(-300px, 0);
  transform: translate(-300px, 0);
  -webkit-transition: all 300ms ease-out 100ms;
  transition: all 300ms ease-out 100ms;
}

@media (max-width: 1499px) {
  .fs-slider .fs-slider__slides .slide__content {
    left: 4.5rem;
    width: calc(35% - 4.5rem) !important;
  }
}
@media (max-width: 1199px) {
  .fs-slider .fs-slider__slides .slide__content {
    left: 4rem;
    width: calc(35% - 4rem) !important;
  }
}
@media (max-width: 991px) {
  .fs-slider .fs-slider__slides .slide__content {
    left: 3rem;
    bottom: 2rem;
    width: calc(40% - 3rem) !important;
  }
}
@media (max-width: 767px) {
  .fs-slider .fs-slider__slides .slide__content {
    left: 2rem;
    bottom: 2rem;
    width: 80% !important;
    height: calc(100% - 2rem - 90px - 1rem);
  }
}
@media (max-width: 767px) {
  .fs-slider .fs-slider__slides .slide__content {
    left: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem) !important;
  }
}
@media screen and (orientation: landscape) and (max-width: 800px) {
  .fs-slider .fs-slider__slides .slide__content {
    width: calc(50% - 1rem) !important;
    height: calc(100% - 1rem - 90px);
  }
}
@media screen and (orientation: landscape) and (max-width: 600px) {
  .fs-slider .fs-slider__slides .slide__content {
    width: calc(60% - 1rem) !important;
  }
}
.fs-slider .fs-slider__slides .slide__links-separator {
  height: 0.5rem;
  display: none;
}

@media screen and (orientation: landscape) and (max-width: 800px) {
  .fs-slider .fs-slider__slides .slide__links-separator {
    display: block;
  }
}
.fs-slider .fs-slider__slides .slide__content-image {
  display: block;
  position: relative;
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
  -webkit-transition: all 300ms ease-out 100ms;
  transition: all 300ms ease-out 100ms;
  visibility: visible;
  opacity: 1;
}

@media (min-width: 768px) {
  .fs-slider .fs-slider__slides .slide__content-image {
    display: none;
  }
}
@media (max-width: 767px) {
  .fs-slider .fs-slider__slides .slide__content-image {
    max-width: 499px;
  }
}
@media (max-width: 575px) {
  .fs-slider .fs-slider__slides .slide__content-image {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media screen and (orientation: landscape) and (max-width: 800px) {
  .fs-slider .fs-slider__slides .slide__content-image {
    display: none !important;
  }
}
.fs-slider .fs-slider__slides .slide__text {
  display: block;
  color: white;
  font-weight: 400;
  font-size: 5rem;
  font-family: "PT Sans Narrow", sans-serif;
  margin-bottom: 1rem;
}

@media (max-width: 1499px) {
  .fs-slider .fs-slider__slides .slide__text {
    font-size: 4rem;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 1199px) {
  .fs-slider .fs-slider__slides .slide__text {
    font-size: 3rem;
    margin-bottom: 0.25rem;
  }
}
@media screen and (orientation: landscape) and (max-width: 800px) {
  .fs-slider .fs-slider__slides .slide__text {
    line-height: 1.1;
  }
}
@media screen and (orientation: portrait) and (min-width: 750px) {
  .fs-slider .fs-slider__slides .slide__text {
    font-size: 5rem;
  }
}
.fs-slider .fs-slider__slides .slide__text.header {
  text-transform: uppercase;
}

.fs-slider .fs-slider__slides .slide__text.description {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}

@media (max-width: 1499px) {
  .fs-slider .fs-slider__slides .slide__text.description {
    font-size: 2.5rem;
  }
}
@media (max-width: 1199px) {
  .fs-slider .fs-slider__slides .slide__text.description {
    font-size: 1.7rem;
  }
}
@media screen and (orientation: portrait) and (min-width: 750px) {
  .fs-slider .fs-slider__slides .slide__text.description {
    font-size: 2.5rem;
  }
}
.fs-slider .fs-slider__slides .slide__overlay-holder {
  z-index: 600;
  display: block;
  position: absolute;
  width: calc(65% - 5rem);
  left: 35%;
  bottom: 6rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(calc(35% + 300px));
          transform: translateX(calc(35% + 300px));
  -webkit-transition: all 300ms ease-out 100ms;
  transition: all 300ms ease-out 100ms;
}

@media (max-width: 1499px) {
  .fs-slider .fs-slider__slides .slide__overlay-holder {
    width: calc(65% - 4.5rem) !important;
  }
}
@media (max-width: 1199px) {
  .fs-slider .fs-slider__slides .slide__overlay-holder {
    width: calc(65% - 4rem) !important;
  }
}
@media (max-width: 991px) {
  .fs-slider .fs-slider__slides .slide__overlay-holder {
    width: 90% !important;
    left: 40%;
    -webkit-transform: translateX(calc(40% + 300px));
            transform: translateX(calc(40% + 300px));
    bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .fs-slider .fs-slider__slides .slide__overlay-holder {
    display: none !important;
  }
}
@media screen and (orientation: landscape) and (max-width: 800px) {
  .fs-slider .fs-slider__slides .slide__overlay-holder {
    display: block !important;
    bottom: 1rem;
    width: 70% !important;
    left: 50% !important;
    -webkit-transform: translateX(calc(50% + 300px));
            transform: translateX(calc(50% + 300px));
  }
}
@media screen and (orientation: landscape) and (max-width: 600px) {
  .fs-slider .fs-slider__slides .slide__overlay-holder {
    left: 60% !important;
    -webkit-transform: translateX(calc(60% + 300px));
            transform: translateX(calc(60% + 300px));
  }
}
@media screen and (orientation: portrait) and (min-width: 750px) {
  .fs-slider .fs-slider__slides .slide__overlay-holder {
    left: 50%;
    width: 100% !important;
    -webkit-transform: translateX(calc(50% + 300px));
            transform: translateX(calc(50% + 300px));
  }
}
.fs-slider .fs-slider__slides .slide.active {
  visibility: visible;
  opacity: 1;
}

.fs-slider .fs-slider__slides .slide.active .slide__overlay.isvis {
  visibility: visible;
  opacity: 1;
}

.fs-slider .fs-slider__slides .slide.active .slide__content {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fs-slider .fs-slider__slides .slide.active .slide__overlay-holder {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
}

.fs-slider .fs-slider__slides .slide.active .slide__content-image {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
}

.fs-slider .fs-slider__slides .slide.active .mute {
  display: block;
}

.fs-slider .slider-switch {
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 4rem;
  right: 5rem;
  visibility: hidden !important;
  opacity: 0 !important;
  z-index: 700;
  display: block;
  list-style-type: none;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 150ms ease-out 50ms;
  transition: all 150ms ease-out 50ms;
}

@media (max-width: 1499px) {
  .fs-slider .slider-switch {
    right: 4.5rem;
  }
}
@media (max-width: 1199px) {
  .fs-slider .slider-switch {
    right: 4rem;
  }
}
@media (max-width: 991px) {
  .fs-slider .slider-switch {
    right: 3rem;
    bottom: 2rem;
  }
}
.fs-slider .slider-switch.vis {
  visibility: visible !important;
  opacity: 1 !important;
}

.fs-slider .slider-switch.h {
  visibility: hidden;
  opacity: 0;
}

.fs-slider .slider-switch li {
  display: inline-block;
  margin-right: 1rem;
}

.fs-slider .slider-switch li:last-child {
  margin-bottom: 0;
}

.fs-slider .slider-switch li.active a:after {
  background: #A90B3C;
  top: 0;
}

.fs-slider .slider-switch li.pb a:after {
  top: 15px;
}

.fs-slider .slider-switch li a {
  display: block;
  position: relative;
  width: 60px;
  height: 9px;
  background: #adb5bd;
  overflow: hidden;
  border-radius: 7px;
  -webkit-transition: all 200ms ease-out 50ms;
  transition: all 200ms ease-out 50ms;
}

@media (max-width: 991px) {
  .fs-slider .slider-switch li a {
    width: 40px;
    height: 7px;
  }
}
.fs-slider .slider-switch li a:after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 9px;
  left: 0px;
  top: -15px;
  -webkit-transition: all 200ms ease-out 50ms;
  transition: all 200ms ease-out 50ms;
}

@media (max-width: 991px) {
  .fs-slider .slider-switch li a:after {
    width: 40px;
    height: 7px;
  }
}
.fs-slider .slider-switch li.na a:after {
  -webkit-transition: all 0ms ease-out 0ms;
  transition: all 0ms ease-out 0ms;
}

/*
#slider-preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #535453;
    //opacity: 0;
    left: 0;
    top: 0;
    z-index: 2500;
    //animation: showPreloader 0.15s normal linear 0.25s forwards;
    .preloader {
        position: absolute;
        width: 15%;
        height: 0;
        padding-bottom: 5%;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        @media (max-width: 1199px){
            width: 20%;
        }
        @media (max-width: 991px){
            width: 30%;
        }
        @media (max-width: 767px){
            width: 50%;
        }
        @media (max-width: 575px){
            width: 70%;
        }
        svg{
            width: 100%;
            #load-mask{
                #mask-path{
                    transform-origin: center;
                    opacity: 1;
                    animation: animatePreloader 1.5s normal linear 0.25s infinite;
                }
            }
        }
    }

    @keyframes showPreloader {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    @keyframes animatePreloader {
        0% {
            opacity: 1;
            transform: translateX(0) translateY(0);
        }
        50%{
            opacity: 1;
        }

        100% {
            opacity: 0;
            transform: translateX(0) translateY(-30px);
        }
    }
}
*/
.navigation-holder {
  position: fixed;
  display: block;
  top: 0;
  z-index: 900 !important;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0.985;
  overflow: auto;
  padding-top: 180px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
}

@media (max-width: 1499px) {
  .navigation-holder {
    padding-top: 170px;
  }
}
@media (max-width: 1199px) {
  .navigation-holder {
    padding-top: 160px;
  }
}
@media (max-width: 991px) {
  .navigation-holder {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .navigation-holder {
    padding-top: 140px;
  }
}
@media (max-width: 575px) {
  .navigation-holder {
    padding-top: 125px;
  }
}
.navigation-holder.open {
  visibility: visible;
  opacity: 1;
}

.navigation-holder .nav-content-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100%;
  padding: 0 5rem;
}

@media (max-width: 1499px) {
  .navigation-holder .nav-content-holder {
    padding: 0 4.5rem;
  }
}
@media (max-width: 1199px) {
  .navigation-holder .nav-content-holder {
    padding: 0 4rem;
  }
}
@media (max-width: 991px) {
  .navigation-holder .nav-content-holder {
    padding: 0 3rem;
  }
}
@media (max-width: 767px) {
  .navigation-holder .nav-content-holder {
    padding: 0 2rem;
  }
}
@media (max-width: 575px) {
  .navigation-holder .nav-content-holder {
    padding: 0 1rem;
  }
}
.navigation-holder .nav-content-holder nav {
  margin-bottom: 2rem;
}

.navigation-holder .nav-content-holder nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.navigation-holder .nav-content-holder nav ul li {
  margin-bottom: 0.5rem;
}

.navigation-holder .nav-content-holder nav ul li a {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: white;
  font-weight: 400;
}

@media (max-width: 991px) {
  .navigation-holder .nav-content-holder nav ul li a {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .navigation-holder .nav-content-holder nav ul li a {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .navigation-holder .nav-content-holder nav ul li a {
    font-size: 1.75rem;
  }
}
.navigation-holder .nav-content-holder nav ul li.active a {
  font-weight: 900 !important;
  cursor: default;
}

.navigation-holder .nav-content-holder nav ul li.active a:hover {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

.navigation-holder .nav-content-holder nav ul li.active a:hover:after {
  height: 0 !important;
}

.navigation-holder .nav-content-holder .bottom-holder {
  padding: 4rem 0;
  border-top: 1px solid #ced4da;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigation-holder .nav-content-holder .menu-social ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  padding-right: 2rem;
  border-right: 1px solid #495057;
}

.navigation-holder .nav-content-holder .menu-social ul li {
  display: inline-block;
  margin-right: 1rem;
}

.navigation-holder .nav-content-holder .menu-social ul li:last-child {
  margin-right: 0;
}

.navigation-holder .nav-content-holder .menu-social ul li a {
  font-size: 2rem;
  color: #ced4da;
}

.navigation-holder .nav-content-holder .menu-language-switch {
  padding-top: 5px;
  padding-left: 2rem;
}

.navigation-holder .nav-content-holder .menu-language-switch__wrapper {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
  border-radius: 7px;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0);
}

.navigation-holder .nav-content-holder .menu-language-switch__wrapper.hovered {
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
}

.navigation-holder .nav-content-holder .menu-language-switch__wrapper.hovered ul {
  background: rgb(255, 255, 255);
}

.navigation-holder .nav-content-holder .menu-language-switch__wrapper ul {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  left: 0;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0);
  border-radius: 7px;
  list-style-type: none;
  -webkit-transition: all 250ms ease-out 100ms;
  transition: all 250ms ease-out 100ms;
}

.navigation-holder .nav-content-holder .menu-language-switch__wrapper ul li {
  display: inline-block;
}

.navigation-holder .nav-content-holder .menu-language-switch__wrapper ul li.active a {
  color: white;
  background: #6c757d;
}

.navigation-holder .nav-content-holder .menu-language-switch__wrapper ul li a {
  display: block;
  border-radius: 7px;
  padding: 0.25rem 0.5rem;
  text-transform: capitalize;
}

.page-nav ul {
  width: 100%;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-nav ul li {
  list-style-type: none;
  margin-right: 1rem;
}

.page-nav ul li:last-child {
  margin-right: 0;
}

.inline-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100% !important;
}

.inline-gallery .item {
  position: relative;
  max-width: 100% !important;
  margin-right: 0.6666666667rem;
}

.inline-gallery .item a {
  display: block;
  position: relative;
  max-width: 100% !important;
  z-index: 1;
  -webkit-transition: all 150ms ease-out 50ms;
  transition: all 150ms ease-out 50ms;
}

.inline-gallery .item a img {
  max-width: calc(100% + 0.6666666667rem) !important;
}

@media (max-width: 991px) {
  .inline-gallery .item a img {
    max-height: 150px;
  }
}
@media (max-width: 767px) {
  .inline-gallery .item a img {
    max-height: 125px;
  }
}
@media (max-width: 575px) {
  .inline-gallery .item a img {
    max-height: 100px;
  }
}
.inline-gallery .item a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #A90B3C;
  left: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transition: all 150ms ease-out 50ms;
  transition: all 150ms ease-out 50ms;
}

.inline-gallery .item a:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.inline-gallery .item a:hover:after {
  bottom: -4px;
}

.inline-gallery.process figure {
  width: calc(50% - 1rem);
  text-align: center;
}

#form-holder {
  position: relative;
  background-color: white;
  border-radius: 0;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contact-form {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  #contact-form {
    padding: 2.5rem;
  }
}
@media (max-width: 767px) {
  #contact-form {
    padding: 2rem;
  }
}
#contact-form .form-group-title {
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 400;
  color: #999999;
  font-weight: bold;
}

#contact-form .form-element {
  position: relative;
}

#contact-form .form-element input, #contact-form .form-element textarea {
  border: none;
  border-bottom: 2px solid #e9ecef;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 1.25rem 0 0.25rem 0;
  border-radius: 0;
  z-index: 1;
  background: none;
  margin: 0;
}

#contact-form .form-element input:focus, #contact-form .form-element textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border-bottom: 2px solid #999999;
}

#contact-form .form-element .element-label {
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  left: 0;
  top: 1.25rem;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  color: #343a40;
  z-index: -1;
}

#contact-form .form-element.active .element-label {
  color: #ced4da;
  font-size: 0.75rem;
  line-height: 0.75rem;
  left: 0;
  top: 0.25rem;
}

#contact-form .form-element.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#contact-form .form-element.checkbox input {
  width: auto;
  width: 0;
  opacity: 0;
}

#contact-form .form-element.checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  cursor: pointer;
}

#contact-form .form-element.checkbox label .text-wrapper {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

#contact-form .form-element.checkbox label .text-wrapper p {
  color: #495057;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0;
}

#contact-form .form-element.checkbox label .text-wrapper small {
  color: #495057;
  cursor: default;
}

#contact-form .form-element.checkbox label .text-wrapper small a {
  text-decoration: underline;
}

#contact-form .form-element.checkbox label .text-wrapper small a:hover {
  text-decoration: underline;
}

#contact-form .form-element.checkbox label .text-wrapper small p {
  color: #495057;
  font-size: 0.8rem;
  margin: 0;
}

#contact-form .form-element.checkbox label.flex-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#contact-form .form-element.checkbox label.flex-label .checkbox-vis {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

#contact-form .form-element.checkbox .checkbox-vis {
  display: block;
  position: relative;
  min-width: 18px !important;
  min-height: 18px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.5rem;
  margin-top: 0.05rem;
  border: 1px solid #adb5bd;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

#contact-form .form-element.checkbox .checkbox-vis i, #contact-form .form-element.checkbox .checkbox-vis svg {
  margin: 0 auto;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  visibility: hidden;
  opacity: 0;
}

#contact-form .form-element.checkbox .checkbox-vis.focus {
  border-color: #999999;
}

#contact-form .form-element.checkbox .checkbox-vis.selected {
  background-color: #999999;
  border-color: #999999 !important;
}

#contact-form .form-element.checkbox .checkbox-vis.selected i, #contact-form .form-element.checkbox .checkbox-vis.selected svg {
  visibility: visible;
  opacity: 1;
}

#contact-form .form-element .error-text {
  font-size: 0.8rem;
  color: red;
  line-height: 0.8rem;
  margin: 0.25rem 0;
}

#contact-form .form-element:not(.checkbox).error input, #contact-form .form-element:not(.checkbox).error textarea {
  color: red;
  border-color: red !important;
}

#contact-form .form-element.checkbox.error .checkbox-vis {
  border-color: red !important;
}

#contact-form button {
  font-size: 1rem !important;
}

#contact-form .fixed-data {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

#contact-form .fixed-data.visible {
  visibility: visible;
  opacity: 1;
  max-height: 1000px;
}

#contact-form .fixed-data .form-element {
  position: relative;
}

#contact-form .fixed-data .form-element input, #contact-form .fixed-data .form-element textarea {
  border-bottom: 1px solid #e9ecef;
  cursor: default;
}

#contact-form .fixed-data .form-element .element-label {
  display: none !important;
}

#contact-form .fixed-data .form-element .cancel {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  color: rgb(100, 100, 100);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

#contact-form .fixed-data .form-element .cancel:hover {
  color: red;
}

#form-busy {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100;
  display: none;
}

#form-busy .preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

#form-busy .preloader_full-screen {
  height: 100%;
}

#form-busy .circle {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

#form-busy .circle_orange {
  background-color: #999999;
  -webkit-transform: translateX(13px);
          transform: translateX(13px);
  -webkit-animation: animate-green 2s linear infinite;
          animation: animate-green 2s linear infinite;
}

#form-busy .circle_dark_orange {
  background-color: #999999;
  -webkit-transform: translateX(-13px);
          transform: translateX(-13px);
  -webkit-animation: animate-red 2s linear infinite;
          animation: animate-red 2s linear infinite;
}

@-webkit-keyframes animate-green {
  0% {
    background-color: #999999;
  }
  3% {
    background-color: #999999;
    -webkit-transform: translateX(13px);
            transform: translateX(13px);
  }
  9% {
    background-color: #999999;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  14% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  18% {
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
  21% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  23% {
    -webkit-transform: translateX(-9px);
            transform: translateX(-9px);
  }
  24% {
    -webkit-transform: translateX(-7px);
            transform: translateX(-7px);
  }
  30% {
    -webkit-transform: translateX(-7px) scale(1);
            transform: translateX(-7px) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
  }
  43% {
    z-index: -1;
    -webkit-transform: translateX(13px) scale(0.6);
            transform: translateX(13px) scale(0.6);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
  }
  56% {
    z-index: 1;
    -webkit-transform: translateX(33px) scale(1);
            transform: translateX(33px) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
  }
  69% {
    -webkit-transform: translateX(13px) scale(1.4);
            transform: translateX(13px) scale(1.4);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
  }
  82% {
    z-index: 1;
    background-color: #999999;
    -webkit-transform: translateX(-7px) scale(1);
            transform: translateX(-7px) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  98% {
    background-color: #999999;
    -webkit-transform: translateX(13px);
            transform: translateX(13px);
  }
  100% {
    background-color: #999999;
  }
}

@keyframes animate-green {
  0% {
    background-color: #999999;
  }
  3% {
    background-color: #999999;
    -webkit-transform: translateX(13px);
            transform: translateX(13px);
  }
  9% {
    background-color: #999999;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  14% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  18% {
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
  21% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  23% {
    -webkit-transform: translateX(-9px);
            transform: translateX(-9px);
  }
  24% {
    -webkit-transform: translateX(-7px);
            transform: translateX(-7px);
  }
  30% {
    -webkit-transform: translateX(-7px) scale(1);
            transform: translateX(-7px) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
  }
  43% {
    z-index: -1;
    -webkit-transform: translateX(13px) scale(0.6);
            transform: translateX(13px) scale(0.6);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
  }
  56% {
    z-index: 1;
    -webkit-transform: translateX(33px) scale(1);
            transform: translateX(33px) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
  }
  69% {
    -webkit-transform: translateX(13px) scale(1.4);
            transform: translateX(13px) scale(1.4);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
  }
  82% {
    z-index: 1;
    background-color: #999999;
    -webkit-transform: translateX(-7px) scale(1);
            transform: translateX(-7px) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  98% {
    background-color: #999999;
    -webkit-transform: translateX(13px);
            transform: translateX(13px);
  }
  100% {
    background-color: #999999;
  }
}
@-webkit-keyframes animate-red {
  0% {
    background-color: #999999;
  }
  3% {
    background-color: #999999;
    -webkit-transform: translateX(-13px);
            transform: translateX(-13px);
  }
  9% {
    background-color: #999999;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  14% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  18% {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  21% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  23% {
    -webkit-transform: translateX(9px);
            transform: translateX(9px);
  }
  24% {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
  }
  30% {
    -webkit-transform: translateX(7px) scale(1);
            transform: translateX(7px) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
  }
  43% {
    -webkit-transform: translateX(-13px) scale(1.4);
            transform: translateX(-13px) scale(1.4);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
  }
  56% {
    -webkit-transform: translateX(-33px) scale(1);
            transform: translateX(-33px) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
  }
  69% {
    -webkit-transform: translateX(-13px) scale(0.6);
            transform: translateX(-13px) scale(0.6);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
  }
  82% {
    background-color: #999999;
    -webkit-transform: translateX(7px) scale(1);
            transform: translateX(7px) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  98% {
    background-color: #999999;
    -webkit-transform: translateX(-13px);
            transform: translateX(-13px);
  }
  100% {
    background-color: #999999;
  }
}
@keyframes animate-red {
  0% {
    background-color: #999999;
  }
  3% {
    background-color: #999999;
    -webkit-transform: translateX(-13px);
            transform: translateX(-13px);
  }
  9% {
    background-color: #999999;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  14% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  18% {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  21% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  23% {
    -webkit-transform: translateX(9px);
            transform: translateX(9px);
  }
  24% {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
  }
  30% {
    -webkit-transform: translateX(7px) scale(1);
            transform: translateX(7px) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
  }
  43% {
    -webkit-transform: translateX(-13px) scale(1.4);
            transform: translateX(-13px) scale(1.4);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
  }
  56% {
    -webkit-transform: translateX(-33px) scale(1);
            transform: translateX(-33px) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.6, 0, 1, 1);
  }
  69% {
    -webkit-transform: translateX(-13px) scale(0.6);
            transform: translateX(-13px) scale(0.6);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
  }
  82% {
    background-color: #999999;
    -webkit-transform: translateX(7px) scale(1);
            transform: translateX(7px) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  98% {
    background-color: #999999;
    -webkit-transform: translateX(-13px);
            transform: translateX(-13px);
  }
  100% {
    background-color: #999999;
  }
}
#message-sent {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #999999;
  z-index: 0;
  padding: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

#message-sent.isvis {
  visibility: visible;
  opacity: 1;
  z-index: 101;
}

@media (max-width: 991px) {
  #message-sent {
    padding: 2.5rem;
  }
}
@media (max-width: 767px) {
  #message-sent {
    padding: 2rem;
  }
}
#message-sent .content {
  width: 100%;
  text-align: center;
}

#message-sent .content .image {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2rem;
  max-width: 300px;
}

#message-sent .content .image img {
  width: 100%;
}

#message-sent .content .text .h1 {
  color: rgba(255, 255, 255, 0.85);
}

#message-sent .content .text p {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
}

#message-sent .content .text small {
  margin: 0;
  font-size: 0.8333;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
}

.info-banner {
  position: relative;
  background-position: center;
  background-size: cover;
  background-color: #333;
  padding: 200px 5rem 75px 5rem;
  padding-top: 200px;
  padding-bottom: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 1499px) {
  .info-banner {
    padding: 200px 5rem 75px 5rem;
  }
}
@media (max-width: 1199px) {
  .info-banner {
    padding: 200px 4rem 75px 4rem;
  }
}
@media (max-width: 991px) {
  .info-banner {
    padding: 175px 3rem 65px 3rem;
  }
}
@media (max-width: 767px) {
  .info-banner {
    padding: 150px 2rem 50px 2rem;
  }
}
@media (max-width: 575px) {
  .info-banner {
    padding: 150px 1rem 50px 1rem;
  }
}
.info-banner__content {
  position: relative;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: white;
  z-index: 1;
  text-align: right;
}

@media (max-width: 767px) {
  .info-banner__content {
    width: 100%;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .info-banner__content img {
    max-width: 100%;
  }
}
.info-banner__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.big-buttons {
  overflow: hidden;
}

.big-buttons__wrapper {
  position: relative;
  width: 100%;
}

.big-buttons__inner-wrapper {
  position: relative;
}

.big-buttons__inner-wrapper .big-buttons__holder {
  position: relative;
  z-index: 100 !important;
  padding: 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1499px) {
  .big-buttons__inner-wrapper .big-buttons__holder {
    padding: 3rem 5rem;
  }
}
@media (max-width: 1199px) {
  .big-buttons__inner-wrapper .big-buttons__holder {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .big-buttons__inner-wrapper .big-buttons__holder {
    padding: 3rem 3rem;
  }
}
@media (max-width: 767px) {
  .big-buttons__inner-wrapper .big-buttons__holder {
    padding: 3rem 1rem;
  }
}
@media (max-width: 575px) {
  .big-buttons__inner-wrapper .big-buttons__holder {
    padding: 3rem 1rem;
  }
}
.big-buttons__inner-wrapper .background {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.big-buttons__inner-wrapper .background .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
}

.big-buttons__inner-wrapper .title {
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 4rem;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .big-buttons__inner-wrapper .title {
    font-size: 3rem;
  }
}
.big-buttons.skew {
  position: relative;
  height: 600px;
}

@media (max-width: 1499px) {
  .big-buttons.skew {
    height: 550px;
  }
}
@media (max-width: 1199px) {
  .big-buttons.skew {
    height: 525px;
  }
}
@media (max-width: 991px) {
  .big-buttons.skew {
    height: 500px;
  }
}
.big-buttons.skew .big-buttons__wrapper {
  height: 100%;
  overflow: hidden;
}

.big-buttons.skew .big-buttons__inner-wrapper {
  padding: 0 !important;
}

.big-buttons.skew .big-buttons__inner-wrapper .background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transform: skew(-21deg, 0deg);
          transform: skew(-21deg, 0deg);
}

.big-buttons.skew .big-buttons__left-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  -webkit-transform: skew(21deg, 0deg);
          transform: skew(21deg, 0deg);
}

.big-buttons.skew .big-buttons__left-wrapper .big-buttons__left-holder {
  right: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.big-buttons.skew .big-buttons__right-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0;
  -webkit-transform: skew(21deg, 0deg);
          transform: skew(21deg, 0deg);
}

.big-buttons.skew .big-buttons__right-wrapper .big-buttons__right-holder {
  left: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.big-buttons.skew .big-buttons__holder {
  position: absolute;
  height: 100%;
  -webkit-transform: skew(-21deg, 0deg);
          transform: skew(-21deg, 0deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5rem;
}

@media (max-width: 1499px) {
  .big-buttons.skew .big-buttons__holder {
    padding: 5rem;
  }
}
@media (max-width: 1199px) {
  .big-buttons.skew .big-buttons__holder {
    padding: 4rem;
  }
}
@media (max-width: 991px) {
  .big-buttons.skew .big-buttons__holder {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .big-buttons.skew .big-buttons__holder {
    padding: 1rem;
  }
}
@media (max-width: 575px) {
  .big-buttons.skew .big-buttons__holder {
    padding: 1rem;
  }
}
.home-news-snippets {
  padding: 0 5rem;
}

.home-news-snippets .news-snippet {
  -webkit-transition: all 150ms ease-out 50ms;
  transition: all 150ms ease-out 50ms;
}

.home-news-snippets .news-snippet:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.home-news-snippets .snippet-content {
  position: absolute;
  background-size: cover;
  background-position: center;
  padding: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 100%;
  background-color: #ededed;
}

@media (max-width: 767px) {
  .home-news-snippets .snippet-content {
    padding: 1rem;
  }
}
.home-news-snippets .snippet-content .overlay {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0+43,0.75+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(43%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.75) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#bf000000",GradientType=0 ); /* IE6-9 */
}

.home-news-snippets .snippet-content .title {
  z-index: 1;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 800 !important;
  margin: 0;
}

@media (max-width: 1499px) {
  .home-news-snippets {
    padding: 0 5rem;
  }
}
@media (max-width: 1199px) {
  .home-news-snippets {
    padding: 0 4rem;
  }
}
@media (max-width: 991px) {
  .home-news-snippets {
    padding: 0 3rem;
  }
}
@media (max-width: 767px) {
  .home-news-snippets {
    padding: 0 1rem;
  }
}
@media (max-width: 575px) {
  .home-news-snippets {
    padding: 0 1rem;
  }
}
.home-news-snippets .outer-holder {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 991px) {
  .home-news-snippets .outer-holder {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home-news-snippets .outer-holder .left-inner-holder {
  position: relative;
  width: 66.6666666667%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 2rem;
}

.home-news-snippets .outer-holder .left-inner-holder.fl {
  width: 100% !important;
}

.home-news-snippets .outer-holder .left-inner-holder.fl .left-top-holder .news-snippet:after {
  padding-bottom: 30%;
}

.home-news-snippets .outer-holder .left-inner-holder.fl .left-bottom-holder .news-snippet:after {
  padding-bottom: 60%;
}

@media (max-width: 1199px) {
  .home-news-snippets .outer-holder .left-inner-holder {
    margin-right: 1rem;
  }
}
@media (max-width: 991px) {
  .home-news-snippets .outer-holder .left-inner-holder {
    margin-right: 0;
    width: 100%;
  }
}
.home-news-snippets .outer-holder .left-inner-holder .left-top-holder {
  width: 100%;
  margin-bottom: 2rem;
}

@media (max-width: 1199px) {
  .home-news-snippets .outer-holder .left-inner-holder .left-top-holder {
    margin-bottom: 1rem;
  }
}
.home-news-snippets .outer-holder .left-inner-holder .left-top-holder .news-snippet {
  display: block;
  position: relative;
  width: 100%;
}

.home-news-snippets .outer-holder .left-inner-holder .left-top-holder .news-snippet:after {
  content: "";
  display: block;
  padding-bottom: 40%;
}

@media (max-width: 575px) {
  .home-news-snippets .outer-holder .left-inner-holder .left-top-holder .news-snippet:after {
    padding-bottom: 70%;
  }
}
.home-news-snippets .outer-holder .left-inner-holder .left-bottom-holder {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 575px) {
  .home-news-snippets .outer-holder .left-inner-holder .left-bottom-holder {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 991px) {
  .home-news-snippets .outer-holder .left-inner-holder .left-bottom-holder {
    margin-bottom: 1rem;
  }
}
.home-news-snippets .outer-holder .left-inner-holder .left-bottom-holder .news-snippet {
  display: block;
  position: relative;
  width: 50%;
}

@media (max-width: 575px) {
  .home-news-snippets .outer-holder .left-inner-holder .left-bottom-holder .news-snippet {
    width: 100%;
  }
}
.home-news-snippets .outer-holder .left-inner-holder .left-bottom-holder .news-snippet:after {
  content: "";
  display: block;
  padding-bottom: 80%;
}

@media (max-width: 575px) {
  .home-news-snippets .outer-holder .left-inner-holder .left-bottom-holder .news-snippet:after {
    padding-bottom: 70%;
  }
}
.home-news-snippets .outer-holder .left-inner-holder .left-bottom-holder .news-snippet:first-child {
  margin-right: 2rem;
}

@media (max-width: 1199px) {
  .home-news-snippets .outer-holder .left-inner-holder .left-bottom-holder .news-snippet:first-child {
    margin-right: 1rem;
  }
}
@media (max-width: 575px) {
  .home-news-snippets .outer-holder .left-inner-holder .left-bottom-holder .news-snippet:first-child {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.home-news-snippets .outer-holder .right-inner-holder {
  position: relative;
  width: 33.3333333333%;
}

@media (max-width: 991px) {
  .home-news-snippets .outer-holder .right-inner-holder {
    width: 100%;
  }
}
.home-news-snippets .outer-holder .right-inner-holder .news-snippet {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .home-news-snippets .outer-holder .right-inner-holder .news-snippet {
    position: relative;
    width: 100%;
  }
  .home-news-snippets .outer-holder .right-inner-holder .news-snippet:after {
    content: "";
    display: block;
    padding-bottom: 40%;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .home-news-snippets .outer-holder .right-inner-holder .news-snippet:after {
    padding-bottom: 70%;
  }
}
/*
#product-head{
    min-height: 600px;
    background: $gray-500;
    display: flex;
    overflow-x: hidden;
    position: relative;
    .data-holder{
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 40%;
        background: $gray-800;
        transform: skewX(-21deg);
        .data-container{
            height: 100%;
            width:100%;
            transform: skewX(21deg);
            position: absolute;
            top: 0;
            left: 0;
            padding-top: 100px;
            padding-bottom: $spacer*3;
            h1{
                margin: 0;
                color: white;
            }
        }
    }
}
*/
#product-head {
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: #343a40;
  position: relative;
  overflow-x: hidden;
}

@media (max-width: 1199px) {
  #product-head {
    height: 480px;
  }
}
@media (max-width: 991px) {
  #product-head {
    height: auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }
}
#product-head .image-bg {
  width: 60%;
  background-position: center;
  background-size: cover;
}

@media (max-width: 991px) {
  #product-head .image-bg {
    width: 100%;
    position: relative;
  }
}
#product-head .data {
  width: 40%;
  position: relative;
  padding-top: 150px;
  padding-bottom: 3rem;
}

@media (max-width: 991px) {
  #product-head .data {
    width: 100%;
    position: relative;
    padding: 2rem 3rem;
  }
}
@media (max-width: 767px) {
  #product-head .data {
    padding: 1rem 1rem;
  }
}
@media (max-width: 575px) {
  #product-head .data {
    padding: 1rem;
  }
}
#product-head .data .background {
  z-index: 0;
  position: absolute;
  width: 100%;
  min-height: 100%;
  -webkit-transform: skewX(21deg);
          transform: skewX(21deg);
  background: #343a40;
  top: 0;
  left: 0;
}

@media (max-width: 991px) {
  #product-head .data .background {
    display: none;
  }
}
#product-head .data__holder {
  height: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 2rem;
  padding-right: 5rem;
}

@media (max-width: 1499px) {
  #product-head .data__holder {
    padding-right: 4.5rem;
  }
}
@media (max-width: 1199px) {
  #product-head .data__holder {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  #product-head .data__holder {
    padding: 0 !important;
  }
}
#product-head .data__holder h1 {
  color: white;
  margin: 0;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  #product-head .data__holder h1 {
    padding-bottom: 1rem;
  }
}
#product-head .data__holder .intro {
  color: white;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.65;
}

#product-head .data__holder .intro p {
  color: white;
  font-style: normal;
}

@media (max-width: 767px) {
  #product-head .data__holder .intro p {
    margin-bottom: 0;
  }
}
#tech-data {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#tech-data .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.9rem;
}

#tech-data .item .key {
  font-weight: bold;
  margin-right: 0.5rem;
}

.item-files .item-downloads-list {
  list-style-type: none;
}

.item-files .item-downloads-list li {
  margin-bottom: 0.25rem;
}

#products .product__image {
  margin-bottom: 1rem;
}

#products .product h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 800 !important;
  margin-bottom: 1rem;
  position: relative;
  display: block;
  font-size: 1.9rem;
}

@media (max-width: 1499px) {
  #products .product h2 {
    font-size: 1.5rem;
  }
}
#products .product h2:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background: #495057;
  left: 0;
  bottom: -0.5rem;
}

#products .product h2:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: #999999;
  left: 0;
  bottom: -0.5rem;
  -webkit-transition: all 500ms ease-out 150ms;
  transition: all 500ms ease-out 150ms;
}

#products .product__descr {
  font-size: 1rem !important;
  font-weight: 300 !important;
}

#products .product__descr p {
  font-size: 1rem !important;
  font-weight: 300 !important;
}

#products .product:hover h2:after {
  width: 100px !important;
}

.news-snippet {
  display: block;
  position: relative;
  width: 100%;
  -webkit-transition: all 150ms ease-out 50ms;
  transition: all 150ms ease-out 50ms;
}

.news-snippet:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.news-snippet:after {
  content: "";
  display: block;
  padding-bottom: 70%;
}

@media (max-width: 575px) {
  .news-snippet:after {
    padding-bottom: 70%;
  }
}
.news-snippet .snippet-content {
  position: absolute;
  background-size: cover;
  background-position: center;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 100%;
  background-color: #ededed;
}

@media (max-width: 767px) {
  .news-snippet .snippet-content {
    padding: 1rem;
  }
}
.news-snippet .snippet-content .overlay {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0+43,0.75+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(43%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.75) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#bf000000",GradientType=0 ); /* IE6-9 */
}

.news-snippet .snippet-content .title {
  z-index: 1;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800 !important;
  margin: 0;
}

.pagination {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.pagination li {
  display: inline-block;
  margin-right: 0.5rem;
}

.pagination li:last-child {
  margin-right: 0;
}

.pagination li a {
  display: block;
  min-width: 40px;
  text-align: center;
}

.pagination li.active a {
  background: #e9ecef !important;
  color: #495057 !important;
  font-weight: bold !important;
}

.pagination li.active a:hover {
  cursor: default;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0);
}

.pagination li.active a:hover:after {
  top: 100%;
}

.map-marker-window i, .map-marker-window svg {
  margin-right: 3px;
}

.dealers-table i, .dealers-table svg {
  font-size: 10.5pt;
  margin-right: 5px;
}

.dealers-table.clickSorted tbody tr:first-child {
  background: #f0f0f0 !important;
}

.search-error {
  height: 20px;
  color: red;
}

.table-info {
  font-weight: 400;
  padding-left: 5px;
  background: none;
}

.dealer-selecter .switch-holder {
  opacity: 0.2;
  -webkit-transition: all 150ms ease-out 50ms;
  transition: all 150ms ease-out 50ms;
}

.dealer-selecter .switch-holder.selected .item .content span .span-border {
  width: 100%;
}

.dealer-selecter .switch-holder .item {
  display: block;
  position: relative;
  color: #f8f9fa;
  text-align: center;
}

.dealer-selecter .switch-holder .item:after {
  content: "";
  display: block;
  padding-bottom: 50%;
}

.dealer-selecter .switch-holder .item .content {
  position: absolute;
  padding: 1rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #343a40;
  font-size: 1.3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  background-position: center;
  background-size: cover;
}

.dealer-selecter .switch-holder .item .content:hover span .span-border {
  width: 100%;
}

.dealer-selecter .switch-holder .item .content:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}

.dealer-selecter .switch-holder .item .content span {
  width: 100%;
  align: center;
  position: relative;
}

.dealer-selecter .switch-holder .item .content span .span-border {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  border-bottom: 1px solid #ccc;
  -webkit-transition: all 150ms ease-out 50ms;
  transition: all 150ms ease-out 50ms;
}

.dealer-selecter .switch-holder .item .content span .span-border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -1px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.2+0,0+50,0.4+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33000000", endColorstr="#66000000",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.dealer-selecter .switch-holder .item .content .color-border {
  display: none;
  position: absolute;
  width: 100%;
  height: 15px;
  background-color: white;
  left: 0;
  bottom: 0;
}

.dealer-selecter .switch-holder .item .content .color-border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.2+0,0+50,0.4+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33000000", endColorstr="#66000000",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.dealer-selecter .switch-holder.active {
  opacity: 1 !important;
}

.dealer-selecter .switch-holder:not(.active):hover {
  opacity: 1 !important;
}

.dealer-search-alt, .dealer-search {
  display: block;
}

.dealer-search-alt.hidden, .dealer-search.hidden {
  display: none;
}

@media (min-width: 768px) {
  #dealer-search {
    height: 600px !important;
  }
}
@media (min-width: 992px) {
  #dealer-search {
    height: 700px !important;
  }
}
.marker-popup h2 {
  font-size: 1.5rem;
  min-width: 150px;
}

.marker-popup ul {
  margin: 0;
  padding: 0;
  padding-left: 1.3rem;
  list-style-type: none;
}

.marker-popup ul li {
  position: relative;
  margin-bottom: 0.3333333333rem;
}

.marker-popup ul li svg {
  position: absolute;
  left: -1.3rem;
  top: 0;
  width: 1rem !important;
  text-align: right;
  color: #495057;
}

.marker-popup ul li a {
  font-weight: 300 !important;
}

#map-holder {
  height: 500px;
}

@media (min-width: 768px) {
  #map-holder {
    height: 100% !important;
  }
}
#config-holder {
  background: #f8f9fa;
  max-height: 600px;
}

@media (min-width: 768px) {
  #config-holder {
    height: 100%;
    max-height: 600px;
  }
}
@media (min-width: 992px) {
  #config-holder {
    height: 100%;
    max-height: 700px;
  }
}
#search-list {
  background: #e9ecef;
  overflow-y: scroll;
}

#search-res-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

#search-res-list li.dealer-holder {
  min-height: 100px;
  border-bottom: 1px solid #ced4da;
}

#search-res-list li.dealer-holder:last-child {
  border-bottom: none;
}

#search-res-list li.dealer-holder .show-marker {
  cursor: pointer;
  padding: 1rem;
  -webkit-transition: all 200ms ease-out 50ms;
  transition: all 200ms ease-out 50ms;
}

#search-res-list li.dealer-holder .show-marker:hover {
  background: #dee2e6;
}

#search-res-list li.dealer-holder .show-marker h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600 !important;
  margin: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-transform: none !important;
}

#search-res-list li.dealer-holder .show-marker ul.contact {
  padding: 0;
  margin: 0;
  list-style-type: none;
  padding-left: 1.3rem;
}

#search-res-list li.dealer-holder .show-marker ul.contact li {
  font-size: 0.9rem;
  position: relative;
  margin-bottom: 0.25rem;
}

#search-res-list li.dealer-holder .show-marker ul.contact li:last-child {
  margin-bottom: 0;
}

#search-res-list li.dealer-holder .show-marker ul.contact li svg {
  position: absolute;
  left: -1.3rem;
  top: 5px;
  width: 0.7rem;
  color: #495057;
}

#search-res-list li.dealer-holder .show-marker ul.contact li a {
  font-weight: 400 !important;
}

#search-res-list li.dealer-holder .distance {
  text-align: center;
  background: #495057;
  border-bottom: 1px solid #212529;
  color: #f8f9fa;
  padding: 0.25rem;
  font-weight: bold;
}

#search-res-list li.dealer-holder .distance svg {
  margin-right: 0.5rem;
}

#map-config-form input.form-control:focus,
#map-config-form input[type=text]:focus,
#map-config-form input[type=password]:focus,
#map-config-form input[type=email]:focus,
#map-config-form input[type=number]:focus,
#map-config-form [type=text].form-control:focus,
#map-config-form [type=password].form-control:focus,
#map-config-form [type=email].form-control:focus,
#map-config-form [type=tel].form-control:focus,
#map-config-form [contenteditable].form-control:focus,
#map-config-form select:focus {
  -webkit-box-shadow: inset 0 -1px 0 #ddd;
          box-shadow: inset 0 -1px 0 #ddd;
}

#map-config-form input {
  border: none;
  border-bottom: 2px solid #ced4da;
  border-radius: 0px;
  padding-left: 0;
  background: none;
  width: 100%;
}

#map-config-form select {
  border: none;
  border-bottom: 2px solid #ced4da;
  border-radius: 0px;
  padding-left: 0;
  background: none;
  width: 100%;
}

#map-config-form button {
  border-radius: 0px;
}

#map-config-form label {
  display: block;
}

.dealers-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.dealers-list .land-title {
  margin-top: 2rem !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100% !important;
}

@media (max-width: 575px) {
  .dealers-list .land-title {
    margin-top: 1rem;
  }
}
.dealers-list .dealer {
  margin-bottom: 2rem !important;
  width: 25%;
  padding-right: 2rem;
}

@media (max-width: 1199px) {
  .dealers-list .dealer {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .dealers-list .dealer {
    width: 100%;
  }
}
.dealers-list .dealer .dealer-name {
  font-family: "Poppins", sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.15rem !important;
  margin-bottom: 0.5rem;
}

.dealers-list .dealer .contact {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.dealers-list .dealer .contact li {
  font-size: 0.883rem;
}

.dealers-list .dealer .contact li a {
  text-decoration: underline;
}

.map {
  width: 100% !important;
  height: 500px !important;
}

.map iframe {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.contact-data-container {
  padding-top: 40px;
}

.contact-data-container ul {
  padding: 0;
  padding-left: 1.5rem;
  margin: 0;
  list-style-type: none;
}

.contact-data-container ul li {
  position: relative;
  color: #495057;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.contact-data-container ul li svg {
  position: absolute;
  top: 4px;
  left: -25px;
  width: 25px;
  text-align: right;
  color: #ced4da;
  opacity: 0.9;
}

.contact-data-container ul li.address {
  margin-bottom: 2rem;
}

.contact-data-container ul li:last-child {
  margin-bottom: 0;
}

.contact-data-container ul li p {
  line-height: 1.5;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-data-container ul li p strong {
  font-weight: 700;
}

.contact-data-container ul li a {
  font-weight: 300;
}

.contact-studio h4 {
  position: relative;
}

.contact-studio h4 svg {
  position: absolute;
  color: #999999;
  left: -35px;
}

@media (max-width: 575px) {
  .contact-studio h4 svg {
    left: 0;
    top: -25px;
    font-size: 1.5rem;
  }
}
#distributors .item h2 {
  margin: 0;
  margin-bottom: 0.25rem;
}

#distributors .item h4 {
  font-size: 1.3rem;
  margin: 0;
  margin-bottom: 0.5rem;
}

#distributors .item .descr p {
  font-size: 0.9rem;
  font-weight: 400;
}

#distributors .item .title {
  font-weight: bold;
}

#distributors .item .address, #distributors .item .phone, #distributors .item .email, #distributors .item .url {
  font-size: 0.9rem;
}

#distributors .item span {
  display: block;
  margin-bottom: 0.25rem;
}
/*# sourceMappingURL=style.css.map */
