/*===============================
=            Choices            =
===============================*/
.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: none;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #EAEAEA;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices[data-type*="select-one"] {
  cursor: pointer;
}

.choices[data-type*="select-one"] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*="select-one"] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #DDDDDD;
  background-color: #FFFFFF;
  margin: 0;
}

.choices[data-type*="select-one"] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: .5;
}

.choices[data-type*="select-one"] .choices__button:hover, .choices[data-type*="select-one"] .choices__button:focus {
  opacity: 1;
}

.choices[data-type*="select-one"] .choices__button:focus {
  box-shadow: 0px 0px 0px 2px #00BCD4;
}

.choices[data-type*="select-one"]:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*="select-one"].is-open:after {
  border-color: transparent transparent #333333 transparent;
  margin-top: -7.5px;
}

.choices[data-type*="select-one"][dir="rtl"]:after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*="select-one"][dir="rtl"] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="text"] .choices__inner {
  cursor: text;
}

.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: .75;
  border-radius: 0;
}

.choices[data-type*="select-multiple"] .choices__button:hover, .choices[data-type*="select-multiple"] .choices__button:focus,
.choices[data-type*="text"] .choices__button:hover,
.choices[data-type*="text"] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #DDDDDD;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}

[dir="rtl"] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00BCD4;
  border: 1px solid #00a5bb;
  color: #FFFFFF;
  word-break: break-all;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir="rtl"] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
}

.choices__list--dropdown.is-active {
  display: block;
}

.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: .25rem .25rem 0 0;
}

.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir="rtl"] .choices__list--dropdown .choices__item {
  text-align: right;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: .5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: .5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

.choices__input:focus {
  outline: 0;
}

[dir="rtl"] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: .5;
}

.choices__input.is-hidden,
.choices[data-type*="select-one"] .choices__input.is-hidden,
.choices[data-type*="select-multiple"] .choices__input.is-hidden {
  display: none;
}

/*=====  End of Choices  ======*/
/**
 * Swiper 4.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 1, 2018
 */
.swiper-container{margin:0 auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform, -webkit-transform;transition-property:transform,-webkit-transform;-webkit-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;width:100%;height:100%;position:relative;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform, -webkit-transform;transition-property:transform,-webkit-transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;-o-transition-property:transform,height;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-webkit-gradient(linear,right top, left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-webkit-gradient(linear,left top, right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-webkit-gradient(linear,left bottom, left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-webkit-gradient(linear,left top, left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s opacity;-o-transition:.3s opacity;transition:.3s opacity;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;-webkit-transition:.2s top,.2s -webkit-transform;-o-transition:.2s top,.2s -webkit-transform;transition:.2s top,.2s -webkit-transform;-o-transition:.2s transform,.2s top;-webkit-transition:.2s transform,.2s top;transition:.2s transform,.2s top;-webkit-transition:.2s transform,.2s top,.2s -webkit-transform;-o-transition:.2s transform,.2s top,.2s -webkit-transform;transition:.2s transform,.2s top,.2s -webkit-transform}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s left,.2s -webkit-transform;-o-transition:.2s left,.2s -webkit-transform;transition:.2s left,.2s -webkit-transform;-o-transition:.2s transform,.2s left;-webkit-transition:.2s transform,.2s left;transition:.2s transform,.2s left;-webkit-transition:.2s transform,.2s left,.2s -webkit-transform;-o-transition:.2s transform,.2s left,.2s -webkit-transform;transition:.2s transform,.2s left,.2s -webkit-transform}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s right,.2s -webkit-transform;-o-transition:.2s right,.2s -webkit-transform;transition:.2s right,.2s -webkit-transform;-o-transition:.2s transform,.2s right;-webkit-transition:.2s transform,.2s right;transition:.2s transform,.2s right;-webkit-transition:.2s transform,.2s right,.2s -webkit-transform;-o-transition:.2s transform,.2s right,.2s -webkit-transform;transition:.2s transform,.2s right,.2s -webkit-transform}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-progressbar.swiper-pagination-white{background:rgba(255,255,255,.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0,0,0,.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:'';width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}@-webkit-keyframes passing-through{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%, 70%{opacity:1;-webkit-transform:translateY(0px);transform:translateY(0px)}100%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}}@keyframes passing-through{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%, 70%{opacity:1;-webkit-transform:translateY(0px);transform:translateY(0px)}100%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}}@-webkit-keyframes slide-in{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%{opacity:1;-webkit-transform:translateY(0px);transform:translateY(0px)}}@keyframes slide-in{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%{opacity:1;-webkit-transform:translateY(0px);transform:translateY(0px)}}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}10%{-webkit-transform:scale(1.1);transform:scale(1.1)}20%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}10%{-webkit-transform:scale(1.1);transform:scale(1.1)}20%{-webkit-transform:scale(1);transform:scale(1)}}.dropzone,.dropzone *{box-sizing:border-box}.dropzone{min-height:150px;border:2px solid rgba(0,0,0,0.3);background:white;padding:20px 20px}.dropzone.dz-clickable{cursor:pointer}.dropzone.dz-clickable *{cursor:default}.dropzone.dz-clickable .dz-message,.dropzone.dz-clickable .dz-message *{cursor:pointer}.dropzone.dz-started .dz-message{display:none}.dropzone.dz-drag-hover{border-style:solid}.dropzone.dz-drag-hover .dz-message{opacity:0.5}.dropzone .dz-message{text-align:center;margin:2em 0}.dropzone .dz-preview{position:relative;display:inline-block;vertical-align:top;margin:16px;min-height:100px}.dropzone .dz-preview:hover{z-index:1000}.dropzone .dz-preview:hover .dz-details{opacity:1}.dropzone .dz-preview.dz-file-preview .dz-image{border-radius:20px;background:#999;background:linear-gradient(to bottom, #eee, #ddd)}.dropzone .dz-preview.dz-file-preview .dz-details{opacity:1}.dropzone .dz-preview.dz-image-preview{background:white}.dropzone .dz-preview.dz-image-preview .dz-details{transition:opacity 0.2s linear}.dropzone .dz-preview .dz-remove{font-size:14px;text-align:center;display:block;cursor:pointer;border:none}.dropzone .dz-preview .dz-remove:hover{text-decoration:underline}.dropzone .dz-preview:hover .dz-details{opacity:1}.dropzone .dz-preview .dz-details{z-index:20;position:absolute;top:0;left:0;opacity:0;font-size:13px;min-width:100%;max-width:100%;padding:2em 1em;text-align:center;color:rgba(0,0,0,0.9);line-height:150%}.dropzone .dz-preview .dz-details .dz-size{margin-bottom:1em;font-size:16px}.dropzone .dz-preview .dz-details .dz-filename{white-space:nowrap}.dropzone .dz-preview .dz-details .dz-filename:hover span{border:1px solid rgba(200,200,200,0.8);background-color:rgba(255,255,255,0.8)}.dropzone .dz-preview .dz-details .dz-filename:not(:hover){overflow:hidden;text-overflow:ellipsis}.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span{border:1px solid transparent}.dropzone .dz-preview .dz-details .dz-filename span,.dropzone .dz-preview .dz-details .dz-size span{background-color:rgba(255,255,255,0.4);padding:0 0.4em;border-radius:3px}.dropzone .dz-preview:hover .dz-image img{-webkit-transform:scale(1.05, 1.05);transform:scale(1.05, 1.05);-webkit-filter:blur(8px);filter:blur(8px)}.dropzone .dz-preview .dz-image{border-radius:20px;overflow:hidden;width:120px;height:120px;position:relative;display:block;z-index:10}.dropzone .dz-preview .dz-image img{display:block}.dropzone .dz-preview.dz-success .dz-success-mark{-webkit-animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1)}.dropzone .dz-preview.dz-error .dz-error-mark{opacity:1;-webkit-animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1)}.dropzone .dz-preview .dz-success-mark,.dropzone .dz-preview .dz-error-mark{pointer-events:none;opacity:0;z-index:500;position:absolute;display:block;top:50%;left:50%;margin-left:-27px;margin-top:-27px}.dropzone .dz-preview .dz-success-mark svg,.dropzone .dz-preview .dz-error-mark svg{display:block;width:54px;height:54px}.dropzone .dz-preview.dz-processing .dz-progress{opacity:1;transition:all 0.2s linear}.dropzone .dz-preview.dz-complete .dz-progress{opacity:0;transition:opacity 0.4s ease-in}.dropzone .dz-preview:not(.dz-processing) .dz-progress{-webkit-animation:pulse 6s ease infinite;animation:pulse 6s ease infinite}.dropzone .dz-preview .dz-progress{opacity:1;z-index:1000;pointer-events:none;position:absolute;height:16px;left:50%;top:50%;margin-top:-8px;width:80px;margin-left:-40px;background:rgba(255,255,255,0.9);-webkit-transform:scale(1);border-radius:8px;overflow:hidden}.dropzone .dz-preview .dz-progress .dz-upload{background:#333;background:linear-gradient(to bottom, #666, #444);position:absolute;top:0;left:0;bottom:0;width:0;transition:width 300ms ease-in-out}.dropzone .dz-preview.dz-error .dz-error-message{display:block}.dropzone .dz-preview.dz-error:hover .dz-error-message{opacity:1;pointer-events:auto}.dropzone .dz-preview .dz-error-message{pointer-events:none;z-index:1000;position:absolute;display:block;display:none;opacity:0;transition:opacity 0.3s ease;border-radius:8px;font-size:13px;top:130px;left:-10px;width:140px;background:#be2626;background:linear-gradient(to bottom, #be2626, #a92222);padding:0.5em 1.2em;color:white}.dropzone .dz-preview .dz-error-message:after{content:'';position:absolute;top:-6px;left:64px;width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #be2626}
input[data-autocomplete] {
  border-color: #808080;
  border-style: none none solid none;
  border-width: 0px 0px 1px 0px;
  margin: 0px;
  padding: 5px;
  width: 100%;
}
.autocomplete {
  position: absolute;
  transition: all 0.5s ease 0s;
  max-height: 0;
  overflow-y: hidden;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.autocomplete:active,
.autocomplete:focus,
.autocomplete:hover {
  background-color: #FAFAFA;
  transition: all 0.5s ease 0s;
}
.autocomplete:empty {
  display: none;
}
.autocomplete > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.autocomplete > ul > li {
  cursor: pointer;
  padding: 5px 0 5px 10px;
  white-space: nowrap;
}
.autocomplete > ul > li.active,
.autocomplete > ul > li:active,
.autocomplete > ul > li:focus,
.autocomplete > ul > li:hover {
  background-color: #EEEEEE;
  transition: all 0.5s ease 0s;
}
.autocomplete > ul > li.active a:active,
.autocomplete > ul > li:active a:active,
.autocomplete > ul > li:focus a:active,
.autocomplete > ul > li:hover a:active,
.autocomplete > ul > li.active a:focus,
.autocomplete > ul > li:active a:focus,
.autocomplete > ul > li:focus a:focus,
.autocomplete > ul > li:hover a:focus,
.autocomplete > ul > li.active a:hover,
.autocomplete > ul > li:active a:hover,
.autocomplete > ul > li:focus a:hover,
.autocomplete > ul > li:hover a:hover {
  text-decoration: none;
}
.autocomplete > ul > li.locked {
  cursor: inherit;
}
.autocomplete.open {
  display: block;
  transition: all 0.5s ease 0s;
  background-color: #FAFAFA;
  max-height: 500px;
  overflow-y: auto;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  z-index: 100;
}
.autocomplete.open:empty {
  display: none;
}
/* override styles when printing */
@media print {
  .row--gap-medium {
    margin: -20px !important;
  }
  .row--gap-medium > .col {
    padding: 20px !important;
  }
  .c-spacer.c-spacer--a {
    height: 5px;
  }
  .c-spacer.c-spacer--c {
    height: 20px;
  }
  .c-spacer.c-spacer--d {
    height: 25px;
  }
  .c-spacer.c-spacer--e {
    height: 30px;
  }
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(0.9);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(0.9);
  }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  box-sizing: border-box;
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin: 0;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

blockquote {
  margin: 0;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin: 0;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: .75rem;
  padding-bottom: .75rem;
  color: #e0eaf5;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin: 0;
}

button {
  border-radius: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

body {
  font-size: 14px;
  line-height: 1.618;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 15px;
  }
}

.c-text--title-xlarge {
  font-size: 30px;
  line-height: 0.8;
}

@media screen and (min-width: 768px) {
  .c-text--title-xlarge {
    font-size: 5.5vw;
  }
}

@media screen and (min-width: 1200px) {
  .c-text--title-xlarge {
    font-size: 55px;
  }
}

@media screen and (min-width: 1600px) {
  .c-text--title-xlarge {
    font-size: 65px;
  }
}

.c-text--title-large {
  font-size: 25px;
  line-height: 0.9;
}

@media screen and (min-width: 576px) {
  .c-text--title-large {
    font-size: 5vw;
  }
}

@media screen and (min-width: 992px) {
  .c-text--title-large {
    font-size: 3.2vw;
  }
}

@media screen and (min-width: 1200px) {
  .c-text--title-large {
    font-size: 40px;
  }
}

.c-text--title-medium {
  font-size: 22px;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .c-text--title-medium {
    font-size: 25px;
  }
}

@media screen and (min-width: 1200px) {
  .c-text--title-medium {
    font-size: 30px;
  }
}

.c-text--button, .s-button {
  font-size: 18px;
  line-height: 1.618;
}

@media screen and (min-width: 768px) {
  .c-text--button, .s-button {
    font-size: 21px;
  }
}

.c-text--mobile-menu, .s-button--mobile-menu {
  font-size: 26px;
  line-height: 0.9;
}

.c-text--mobile-menu-small {
  font-size: 21px;
  line-height: 0.9;
}

.c-text--title-small {
  font-size: 21px;
  line-height: 1.618;
}

.c-text--title-xsmall {
  font-size: 18px;
  line-height: 1.618;
}

.c-text--text-xlarge {
  font-size: 18px;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .c-text--text-xlarge {
    font-size: 22px;
    line-height: 1.2;
  }
}

.c-text--text-large {
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .c-text--text-large {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media screen and (min-width: 1600px) {
  .c-text--text-large {
    font-size: 18px;
    line-height: 1.7;
  }
}

.c-text--text-small {
  font-size: 15px;
  line-height: 2.2;
}

.c-text--text-xsmall {
  font-size: 14px;
  line-height: 1.618;
}

.c-text--text-trustpilot {
  font-size: 12px;
  line-height: 1.84;
}

.c-text--text-tiny {
  font-size: 12px;
  line-height: 1.618;
}

.c-spacer--a {
  height: 3vw;
}

@media screen and (min-width: 768px) {
  .c-spacer--a {
    height: 1vw;
  }
}

.c-spacer--b {
  height: 3vw;
}

@media screen and (min-width: 768px) {
  .c-spacer--b {
    height: 2vw;
  }
}

@media screen and (min-width: 1600px) {
  .c-spacer--b {
    height: 35px;
  }
}

.c-spacer--c {
  height: 4vw;
}

@media screen and (min-width: 768px) {
  .c-spacer--c {
    height: 3vw;
  }
}

@media screen and (min-width: 992px) {
  .c-spacer--c {
    height: 3.5vw;
  }
}

@media screen and (min-width: 1600px) {
  .c-spacer--c {
    height: 50px;
  }
}

.c-spacer--d {
  height: 8vw;
}

@media screen and (min-width: 768px) {
  .c-spacer--d {
    height: 5vw;
  }
}

@media screen and (min-width: 1600px) {
  .c-spacer--d {
    height: 80px;
  }
}

.c-spacer--e {
  height: 10vw;
}

@media screen and (min-width: 768px) {
  .c-spacer--e {
    height: 7vw;
  }
}

.row {
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.row.row--collapse {
  display: block;
}

@media screen and (min-width: 768px) {
  .row.row--collapse {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.row + .row {
  margin-top: 0;
}

.row + .row > .col {
  padding-top: 0;
  padding-bottom: 0;
}

.row:last-child:not(:first-child) {
  margin-bottom: 0;
}

.row.row--gapless {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
}

.row.row--gapless > .col {
  margin: 0;
  padding: 0;
}

.row.row--gap-horizontal {
  margin-bottom: 0;
  margin-top: 0;
}

.row.row--gap-horizontal > .col {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.row.row--gap-vertical {
  margin-left: 0;
  margin-right: 0;
}

.row.row--gap-vertical > .col {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.row.row--nowrap {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.row.row--hl {
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.row.row--hl > .col {
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.row.row--hc {
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row.row--hc > .col {
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.row.row--hr {
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.row.row--hr > .col {
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.row.row--vt {
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.row.row--vc {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.row.row--vb {
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.row.row--vb > .col {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.row.row--between {
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.row.row--between > .col {
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
          -webkit-flex-shrink: 1;
          flex-shrink: 1;
}

.row .col {
  display: block;
  -ms-flex-preferred-size: 0;
          -webkit-flex-basis: 0;
          flex-basis: 0;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
          -webkit-flex-shrink: 1;
          flex-shrink: 1;
  padding: 0;
}

.row .col.col--narrow {
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.row .col.col--first {
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
}

.row .col.col--last {
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.row .col.col--one-quarter {
  -ms-flex-preferred-size: 25%;
          -webkit-flex-basis: 25%;
          flex-basis: 25%;
  max-width: 25%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--one-quarter {
    width: 25%;
  }
}

.row .col.col--one-third {
  -ms-flex-preferred-size: 33.3333%;
          -webkit-flex-basis: 33.3333%;
          flex-basis: 33.3333%;
  max-width: 33.3333%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--one-third {
    width: 33.3333%;
  }
}

.row .col.col--half {
  -ms-flex-preferred-size: 50%;
          -webkit-flex-basis: 50%;
          flex-basis: 50%;
  max-width: 50%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--half {
    width: 50%;
  }
}

.row .col.col--two-thirds {
  -ms-flex-preferred-size: 66.6666%;
          -webkit-flex-basis: 66.6666%;
          flex-basis: 66.6666%;
  max-width: 66.6666%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--two-thirds {
    width: 66.6666%;
  }
}

.row .col.col--three-quarters {
  -ms-flex-preferred-size: 75%;
          -webkit-flex-basis: 75%;
          flex-basis: 75%;
  max-width: 75%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--three-quarters {
    width: 75%;
  }
}

.row .col.col--full {
  -ms-flex-preferred-size: 100%;
          -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--full {
    width: 100%;
  }
}

.row .col.col--offset-one-quarter {
  margin-left: 25%;
}

.row .col.col--offset-one-third {
  margin-left: 33.3333%;
}

.row .col.col--offset-half {
  margin-left: 50%;
}

.row .col.col--offset-two-thirds {
  margin-left: 66.6666%;
}

.row .col.col--offset-three-quarters {
  margin-left: 75%;
}

.row--gap-form {
  margin: -5px;
}

.row--gap-form > .col {
  padding: 5px;
}

.row--gap-form + .row--gap-form {
  margin-top: 5px;
}

.row--gap-form + .row--gap-form > .col {
  padding-top: 5px;
  padding-bottom: 5px;
}

.row--gap-form:last-child:not(:first-child) {
  margin-bottom: -5px;
}

@media screen and (min-width: 992px) {
  .row--gap-form {
    margin: -12.5px;
  }
  .row--gap-form > .col {
    padding: 12.5px;
  }
  .row--gap-form + .row--gap-form {
    margin-top: 12.5px;
  }
  .row--gap-form + .row--gap-form > .col {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }
  .row--gap-form:last-child:not(:first-child) {
    margin-bottom: -12.5px;
  }
}

.row--gap-small {
  margin: -1.5vw;
}

.row--gap-small > .col {
  padding: 1.5vw;
}

.row--gap-small + .row--gap-small {
  margin-top: 1.5vw;
}

.row--gap-small + .row--gap-small > .col {
  padding-top: 1.5vw;
  padding-bottom: 1.5vw;
}

.row--gap-small:last-child:not(:first-child) {
  margin-bottom: -1.5vw;
}

@media screen and (min-width: 768px) {
  .row--gap-small {
    margin: -0.5vw;
  }
  .row--gap-small > .col {
    padding: 0.5vw;
  }
  .row--gap-small + .row--gap-small {
    margin-top: 0.5vw;
  }
  .row--gap-small + .row--gap-small > .col {
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
  }
  .row--gap-small:last-child:not(:first-child) {
    margin-bottom: -0.5vw;
  }
}

.row--gap-medium {
  margin: -4vw;
}

.row--gap-medium > .col {
  padding: 4vw;
}

.row--gap-medium + .row--gap-medium {
  margin-top: 4vw;
}

.row--gap-medium + .row--gap-medium > .col {
  padding-top: 4vw;
  padding-bottom: 4vw;
}

.row--gap-medium:last-child:not(:first-child) {
  margin-bottom: -4vw;
}

@media screen and (min-width: 768px) {
  .row--gap-medium {
    margin: -2vw;
  }
  .row--gap-medium > .col {
    padding: 2vw;
  }
  .row--gap-medium + .row--gap-medium {
    margin-top: 2vw;
  }
  .row--gap-medium + .row--gap-medium > .col {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
  .row--gap-medium:last-child:not(:first-child) {
    margin-bottom: -2vw;
  }
}

@media screen and (min-width: 1200px) {
  .row--gap-medium {
    margin: -33px;
  }
  .row--gap-medium > .col {
    padding: 33px;
  }
  .row--gap-medium + .row--gap-medium {
    margin-top: 33px;
  }
  .row--gap-medium + .row--gap-medium > .col {
    padding-top: 33px;
    padding-bottom: 33px;
  }
  .row--gap-medium:last-child:not(:first-child) {
    margin-bottom: -33px;
  }
}

.row--gap-large {
  margin: -5vw;
}

.row--gap-large > .col {
  padding: 5vw;
}

.row--gap-large + .row--gap-large {
  margin-top: 5vw;
}

.row--gap-large + .row--gap-large > .col {
  padding-top: 5vw;
  padding-bottom: 5vw;
}

.row--gap-large:last-child:not(:first-child) {
  margin-bottom: -5vw;
}

@media screen and (min-width: 768px) {
  .row--gap-large {
    margin: -2.5vw;
  }
  .row--gap-large > .col {
    padding: 2.5vw;
  }
  .row--gap-large + .row--gap-large {
    margin-top: 2.5vw;
  }
  .row--gap-large + .row--gap-large > .col {
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
  }
  .row--gap-large:last-child:not(:first-child) {
    margin-bottom: -2.5vw;
  }
}

.row.row--gapless + .row.row--gapless {
  margin-top: 0;
  margin-bottom: 0;
}

.row.row--gap-horizontal + .row.row--gap-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.row.row--gap-horizontal + .row.row--gap-horizontal > .col {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.row .col.col--1 {
  -ms-flex-preferred-size: 8.33333333%;
          -webkit-flex-basis: 8.33333333%;
          flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--1 {
    width: 8.33333333%;
  }
}

.row .col.col--offset-1 {
  margin-left: 8.33333333%;
}

.row .col.col--2 {
  -ms-flex-preferred-size: 16.66666667%;
          -webkit-flex-basis: 16.66666667%;
          flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--2 {
    width: 16.66666667%;
  }
}

.row .col.col--offset-2 {
  margin-left: 16.66666667%;
}

.row .col.col--3 {
  -ms-flex-preferred-size: 25%;
          -webkit-flex-basis: 25%;
          flex-basis: 25%;
  max-width: 25%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--3 {
    width: 25%;
  }
}

.row .col.col--offset-3 {
  margin-left: 25%;
}

.row .col.col--4 {
  -ms-flex-preferred-size: 33.33333333%;
          -webkit-flex-basis: 33.33333333%;
          flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--4 {
    width: 33.33333333%;
  }
}

.row .col.col--offset-4 {
  margin-left: 33.33333333%;
}

.row .col.col--5 {
  -ms-flex-preferred-size: 41.66666667%;
          -webkit-flex-basis: 41.66666667%;
          flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--5 {
    width: 41.66666667%;
  }
}

.row .col.col--offset-5 {
  margin-left: 41.66666667%;
}

.row .col.col--6 {
  -ms-flex-preferred-size: 50%;
          -webkit-flex-basis: 50%;
          flex-basis: 50%;
  max-width: 50%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--6 {
    width: 50%;
  }
}

.row .col.col--offset-6 {
  margin-left: 50%;
}

.row .col.col--7 {
  -ms-flex-preferred-size: 58.33333333%;
          -webkit-flex-basis: 58.33333333%;
          flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--7 {
    width: 58.33333333%;
  }
}

.row .col.col--offset-7 {
  margin-left: 58.33333333%;
}

.row .col.col--8 {
  -ms-flex-preferred-size: 66.66666667%;
          -webkit-flex-basis: 66.66666667%;
          flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--8 {
    width: 66.66666667%;
  }
}

.row .col.col--offset-8 {
  margin-left: 66.66666667%;
}

.row .col.col--9 {
  -ms-flex-preferred-size: 75%;
          -webkit-flex-basis: 75%;
          flex-basis: 75%;
  max-width: 75%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--9 {
    width: 75%;
  }
}

.row .col.col--offset-9 {
  margin-left: 75%;
}

.row .col.col--10 {
  -ms-flex-preferred-size: 83.33333333%;
          -webkit-flex-basis: 83.33333333%;
          flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--10 {
    width: 83.33333333%;
  }
}

.row .col.col--offset-10 {
  margin-left: 83.33333333%;
}

.row .col.col--11 {
  -ms-flex-preferred-size: 91.66666667%;
          -webkit-flex-basis: 91.66666667%;
          flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--11 {
    width: 91.66666667%;
  }
}

.row .col.col--offset-11 {
  margin-left: 91.66666667%;
}

.row .col.col--12 {
  -ms-flex-preferred-size: 100%;
          -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row .col.col--12 {
    width: 100%;
  }
}

.row .col.col--offset-12 {
  margin-left: 100%;
}

@media screen and (min-width: 576px) {
  .row .col.col--1-sm {
    -ms-flex-preferred-size: 8.33333333%;
            -webkit-flex-basis: 8.33333333%;
            flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--1-sm {
    width: 8.33333333%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-1-sm {
    margin-left: 8.33333333%;
  }
  .row .col.col--2-sm {
    -ms-flex-preferred-size: 16.66666667%;
            -webkit-flex-basis: 16.66666667%;
            flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--2-sm {
    width: 16.66666667%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-2-sm {
    margin-left: 16.66666667%;
  }
  .row .col.col--3-sm {
    -ms-flex-preferred-size: 25%;
            -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--3-sm {
    width: 25%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-3-sm {
    margin-left: 25%;
  }
  .row .col.col--4-sm {
    -ms-flex-preferred-size: 33.33333333%;
            -webkit-flex-basis: 33.33333333%;
            flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--4-sm {
    width: 33.33333333%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-4-sm {
    margin-left: 33.33333333%;
  }
  .row .col.col--5-sm {
    -ms-flex-preferred-size: 41.66666667%;
            -webkit-flex-basis: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--5-sm {
    width: 41.66666667%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-5-sm {
    margin-left: 41.66666667%;
  }
  .row .col.col--6-sm {
    -ms-flex-preferred-size: 50%;
            -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--6-sm {
    width: 50%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-6-sm {
    margin-left: 50%;
  }
  .row .col.col--7-sm {
    -ms-flex-preferred-size: 58.33333333%;
            -webkit-flex-basis: 58.33333333%;
            flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--7-sm {
    width: 58.33333333%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-7-sm {
    margin-left: 58.33333333%;
  }
  .row .col.col--8-sm {
    -ms-flex-preferred-size: 66.66666667%;
            -webkit-flex-basis: 66.66666667%;
            flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--8-sm {
    width: 66.66666667%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-8-sm {
    margin-left: 66.66666667%;
  }
  .row .col.col--9-sm {
    -ms-flex-preferred-size: 75%;
            -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--9-sm {
    width: 75%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-9-sm {
    margin-left: 75%;
  }
  .row .col.col--10-sm {
    -ms-flex-preferred-size: 83.33333333%;
            -webkit-flex-basis: 83.33333333%;
            flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--10-sm {
    width: 83.33333333%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-10-sm {
    margin-left: 83.33333333%;
  }
  .row .col.col--11-sm {
    -ms-flex-preferred-size: 91.66666667%;
            -webkit-flex-basis: 91.66666667%;
            flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--11-sm {
    width: 91.66666667%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-11-sm {
    margin-left: 91.66666667%;
  }
  .row .col.col--12-sm {
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--12-sm {
    width: 100%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-12-sm {
    margin-left: 100%;
  }
  .row .col.col--one-quarter-sm {
    -ms-flex-preferred-size: 25%;
            -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--one-quarter-sm {
    width: 25%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--one-third-sm {
    -ms-flex-preferred-size: 33.3333%;
            -webkit-flex-basis: 33.3333%;
            flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--one-third-sm {
    width: 33.3333%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--half-sm {
    -ms-flex-preferred-size: 50%;
            -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--half-sm {
    width: 50%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--two-thirds-sm {
    -ms-flex-preferred-size: 66.6666%;
            -webkit-flex-basis: 66.6666%;
            flex-basis: 66.6666%;
    max-width: 66.6666%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--two-thirds-sm {
    width: 66.6666%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--three-quarters-sm {
    -ms-flex-preferred-size: 75%;
            -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--three-quarters-sm {
    width: 75%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--full-sm {
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 576px) and (-ms-high-contrast: active), screen and (min-width: 576px) and (-ms-high-contrast: none) {
  .row .col.col--full-sm {
    width: 100%;
  }
}

@media screen and (min-width: 576px) {
  .row .col.col--offset-0-sm {
    margin-left: 0;
  }
  .row .col.col--offset-one-quarter-sm {
    margin-left: 25%;
  }
  .row .col.col--offset-one-third-sm {
    margin-left: 33.3333%;
  }
  .row .col.col--offset-half-sm {
    margin-left: 50%;
  }
  .row .col.col--offset-two-thirds-sm {
    margin-left: 66.6666%;
  }
  .row .col.col--offset-three-quarters-sm {
    margin-left: 75%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--1-md {
    -ms-flex-preferred-size: 8.33333333%;
            -webkit-flex-basis: 8.33333333%;
            flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--1-md {
    width: 8.33333333%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-1-md {
    margin-left: 8.33333333%;
  }
  .row .col.col--2-md {
    -ms-flex-preferred-size: 16.66666667%;
            -webkit-flex-basis: 16.66666667%;
            flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--2-md {
    width: 16.66666667%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-2-md {
    margin-left: 16.66666667%;
  }
  .row .col.col--3-md {
    -ms-flex-preferred-size: 25%;
            -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--3-md {
    width: 25%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-3-md {
    margin-left: 25%;
  }
  .row .col.col--4-md {
    -ms-flex-preferred-size: 33.33333333%;
            -webkit-flex-basis: 33.33333333%;
            flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--4-md {
    width: 33.33333333%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-4-md {
    margin-left: 33.33333333%;
  }
  .row .col.col--5-md {
    -ms-flex-preferred-size: 41.66666667%;
            -webkit-flex-basis: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--5-md {
    width: 41.66666667%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-5-md {
    margin-left: 41.66666667%;
  }
  .row .col.col--6-md {
    -ms-flex-preferred-size: 50%;
            -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--6-md {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-6-md {
    margin-left: 50%;
  }
  .row .col.col--7-md {
    -ms-flex-preferred-size: 58.33333333%;
            -webkit-flex-basis: 58.33333333%;
            flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--7-md {
    width: 58.33333333%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-7-md {
    margin-left: 58.33333333%;
  }
  .row .col.col--8-md {
    -ms-flex-preferred-size: 66.66666667%;
            -webkit-flex-basis: 66.66666667%;
            flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--8-md {
    width: 66.66666667%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-8-md {
    margin-left: 66.66666667%;
  }
  .row .col.col--9-md {
    -ms-flex-preferred-size: 75%;
            -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--9-md {
    width: 75%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-9-md {
    margin-left: 75%;
  }
  .row .col.col--10-md {
    -ms-flex-preferred-size: 83.33333333%;
            -webkit-flex-basis: 83.33333333%;
            flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--10-md {
    width: 83.33333333%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-10-md {
    margin-left: 83.33333333%;
  }
  .row .col.col--11-md {
    -ms-flex-preferred-size: 91.66666667%;
            -webkit-flex-basis: 91.66666667%;
            flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--11-md {
    width: 91.66666667%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-11-md {
    margin-left: 91.66666667%;
  }
  .row .col.col--12-md {
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--12-md {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-12-md {
    margin-left: 100%;
  }
  .row .col.col--one-quarter-md {
    -ms-flex-preferred-size: 25%;
            -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--one-quarter-md {
    width: 25%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--one-third-md {
    -ms-flex-preferred-size: 33.3333%;
            -webkit-flex-basis: 33.3333%;
            flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--one-third-md {
    width: 33.3333%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--half-md {
    -ms-flex-preferred-size: 50%;
            -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--half-md {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--two-thirds-md {
    -ms-flex-preferred-size: 66.6666%;
            -webkit-flex-basis: 66.6666%;
            flex-basis: 66.6666%;
    max-width: 66.6666%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--two-thirds-md {
    width: 66.6666%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--three-quarters-md {
    -ms-flex-preferred-size: 75%;
            -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--three-quarters-md {
    width: 75%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--full-md {
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .row .col.col--full-md {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .row .col.col--offset-0-md {
    margin-left: 0;
  }
  .row .col.col--offset-one-quarter-md {
    margin-left: 25%;
  }
  .row .col.col--offset-one-third-md {
    margin-left: 33.3333%;
  }
  .row .col.col--offset-half-md {
    margin-left: 50%;
  }
  .row .col.col--offset-two-thirds-md {
    margin-left: 66.6666%;
  }
  .row .col.col--offset-three-quarters-md {
    margin-left: 75%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--1-lg {
    -ms-flex-preferred-size: 8.33333333%;
            -webkit-flex-basis: 8.33333333%;
            flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--1-lg {
    width: 8.33333333%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-1-lg {
    margin-left: 8.33333333%;
  }
  .row .col.col--2-lg {
    -ms-flex-preferred-size: 16.66666667%;
            -webkit-flex-basis: 16.66666667%;
            flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--2-lg {
    width: 16.66666667%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-2-lg {
    margin-left: 16.66666667%;
  }
  .row .col.col--3-lg {
    -ms-flex-preferred-size: 25%;
            -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--3-lg {
    width: 25%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-3-lg {
    margin-left: 25%;
  }
  .row .col.col--4-lg {
    -ms-flex-preferred-size: 33.33333333%;
            -webkit-flex-basis: 33.33333333%;
            flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--4-lg {
    width: 33.33333333%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-4-lg {
    margin-left: 33.33333333%;
  }
  .row .col.col--5-lg {
    -ms-flex-preferred-size: 41.66666667%;
            -webkit-flex-basis: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--5-lg {
    width: 41.66666667%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-5-lg {
    margin-left: 41.66666667%;
  }
  .row .col.col--6-lg {
    -ms-flex-preferred-size: 50%;
            -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--6-lg {
    width: 50%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-6-lg {
    margin-left: 50%;
  }
  .row .col.col--7-lg {
    -ms-flex-preferred-size: 58.33333333%;
            -webkit-flex-basis: 58.33333333%;
            flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--7-lg {
    width: 58.33333333%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-7-lg {
    margin-left: 58.33333333%;
  }
  .row .col.col--8-lg {
    -ms-flex-preferred-size: 66.66666667%;
            -webkit-flex-basis: 66.66666667%;
            flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--8-lg {
    width: 66.66666667%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-8-lg {
    margin-left: 66.66666667%;
  }
  .row .col.col--9-lg {
    -ms-flex-preferred-size: 75%;
            -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--9-lg {
    width: 75%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-9-lg {
    margin-left: 75%;
  }
  .row .col.col--10-lg {
    -ms-flex-preferred-size: 83.33333333%;
            -webkit-flex-basis: 83.33333333%;
            flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--10-lg {
    width: 83.33333333%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-10-lg {
    margin-left: 83.33333333%;
  }
  .row .col.col--11-lg {
    -ms-flex-preferred-size: 91.66666667%;
            -webkit-flex-basis: 91.66666667%;
            flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--11-lg {
    width: 91.66666667%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-11-lg {
    margin-left: 91.66666667%;
  }
  .row .col.col--12-lg {
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--12-lg {
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-12-lg {
    margin-left: 100%;
  }
  .row .col.col--one-quarter-lg {
    -ms-flex-preferred-size: 25%;
            -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--one-quarter-lg {
    width: 25%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--one-third-lg {
    -ms-flex-preferred-size: 33.3333%;
            -webkit-flex-basis: 33.3333%;
            flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--one-third-lg {
    width: 33.3333%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--half-lg {
    -ms-flex-preferred-size: 50%;
            -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--half-lg {
    width: 50%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--two-thirds-lg {
    -ms-flex-preferred-size: 66.6666%;
            -webkit-flex-basis: 66.6666%;
            flex-basis: 66.6666%;
    max-width: 66.6666%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--two-thirds-lg {
    width: 66.6666%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--three-quarters-lg {
    -ms-flex-preferred-size: 75%;
            -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--three-quarters-lg {
    width: 75%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--full-lg {
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--full-lg {
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--offset-0-lg {
    margin-left: 0;
  }
  .row .col.col--offset-one-quarter-lg {
    margin-left: 25%;
  }
  .row .col.col--offset-one-third-lg {
    margin-left: 33.3333%;
  }
  .row .col.col--offset-half-lg {
    margin-left: 50%;
  }
  .row .col.col--offset-two-thirds-lg {
    margin-left: 66.6666%;
  }
  .row .col.col--offset-three-quarters-lg {
    margin-left: 75%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--1-xl {
    -ms-flex-preferred-size: 8.33333333%;
            -webkit-flex-basis: 8.33333333%;
            flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--1-xl {
    width: 8.33333333%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-1-xl {
    margin-left: 8.33333333%;
  }
  .row .col.col--2-xl {
    -ms-flex-preferred-size: 16.66666667%;
            -webkit-flex-basis: 16.66666667%;
            flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--2-xl {
    width: 16.66666667%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-2-xl {
    margin-left: 16.66666667%;
  }
  .row .col.col--3-xl {
    -ms-flex-preferred-size: 25%;
            -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--3-xl {
    width: 25%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-3-xl {
    margin-left: 25%;
  }
  .row .col.col--4-xl {
    -ms-flex-preferred-size: 33.33333333%;
            -webkit-flex-basis: 33.33333333%;
            flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--4-xl {
    width: 33.33333333%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-4-xl {
    margin-left: 33.33333333%;
  }
  .row .col.col--5-xl {
    -ms-flex-preferred-size: 41.66666667%;
            -webkit-flex-basis: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--5-xl {
    width: 41.66666667%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-5-xl {
    margin-left: 41.66666667%;
  }
  .row .col.col--6-xl {
    -ms-flex-preferred-size: 50%;
            -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--6-xl {
    width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-6-xl {
    margin-left: 50%;
  }
  .row .col.col--7-xl {
    -ms-flex-preferred-size: 58.33333333%;
            -webkit-flex-basis: 58.33333333%;
            flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--7-xl {
    width: 58.33333333%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-7-xl {
    margin-left: 58.33333333%;
  }
  .row .col.col--8-xl {
    -ms-flex-preferred-size: 66.66666667%;
            -webkit-flex-basis: 66.66666667%;
            flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--8-xl {
    width: 66.66666667%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-8-xl {
    margin-left: 66.66666667%;
  }
  .row .col.col--9-xl {
    -ms-flex-preferred-size: 75%;
            -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--9-xl {
    width: 75%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-9-xl {
    margin-left: 75%;
  }
  .row .col.col--10-xl {
    -ms-flex-preferred-size: 83.33333333%;
            -webkit-flex-basis: 83.33333333%;
            flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--10-xl {
    width: 83.33333333%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-10-xl {
    margin-left: 83.33333333%;
  }
  .row .col.col--11-xl {
    -ms-flex-preferred-size: 91.66666667%;
            -webkit-flex-basis: 91.66666667%;
            flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--11-xl {
    width: 91.66666667%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-11-xl {
    margin-left: 91.66666667%;
  }
  .row .col.col--12-xl {
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--12-xl {
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-12-xl {
    margin-left: 100%;
  }
  .row .col.col--one-quarter-xl {
    -ms-flex-preferred-size: 25%;
            -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--one-quarter-xl {
    width: 25%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--one-third-xl {
    -ms-flex-preferred-size: 33.3333%;
            -webkit-flex-basis: 33.3333%;
            flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--one-third-xl {
    width: 33.3333%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--half-xl {
    -ms-flex-preferred-size: 50%;
            -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--half-xl {
    width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--two-thirds-xl {
    -ms-flex-preferred-size: 66.6666%;
            -webkit-flex-basis: 66.6666%;
            flex-basis: 66.6666%;
    max-width: 66.6666%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--two-thirds-xl {
    width: 66.6666%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--three-quarters-xl {
    -ms-flex-preferred-size: 75%;
            -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--three-quarters-xl {
    width: 75%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--full-xl {
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .row .col.col--full-xl {
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .row .col.col--offset-0-xl {
    margin-left: 0;
  }
  .row .col.col--offset-one-quarter-xl {
    margin-left: 25%;
  }
  .row .col.col--offset-one-third-xl {
    margin-left: 33.3333%;
  }
  .row .col.col--offset-half-xl {
    margin-left: 50%;
  }
  .row .col.col--offset-two-thirds-xl {
    margin-left: 66.6666%;
  }
  .row .col.col--offset-three-quarters-xl {
    margin-left: 75%;
  }
}

.c-site-width {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.c-df {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-db {
  position: relative;
  display: block;
}

.c-di {
  position: relative;
  display: inline;
}

.c-dif {
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
}

.c-dib {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.c-ab {
  position: absolute;
}

.c-abf {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.c-tl {
  text-align: left;
}

.c-tr {
  text-align: right;
}

.c-tc {
  text-align: center;
}

.c-vt {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-vb {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-vc {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.js-overflow-hidden {
  overflow: hidden;
}

a[href^="http://maps.google.com/maps"],
a[href^="https://maps.google.com/maps"] {
  display: none !important;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

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

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

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

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

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

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

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  -webkit-perspective: 64px;
          perspective: 64px;
}

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

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

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

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

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

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 64px;
          perspective: 64px;
}

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

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

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

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

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

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  -webkit-perspective: 64px;
          perspective: 64px;
}

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

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

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

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

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

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 64px;
          perspective: 64px;
}

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

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

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

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

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

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  -webkit-perspective: 64px;
          perspective: 64px;
}

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

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

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

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

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

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  -webkit-perspective: 64px;
          perspective: 64px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

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

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

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

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

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

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

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

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

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

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

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

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

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

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

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

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

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

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

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1px;
}

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

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

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

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

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

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.13s linear;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-hamburger {
  margin-top: 8px;
  outline: none;
}

.s-property-carousel .s-property-carousel__top {
  width: 100%;
}

.s-property-carousel .s-property-carousel__thumbs {
  box-sizing: border-box;
  position: absolute;
  height: 0;
}

@media screen and (min-width: 992px) {
  .s-property-carousel .s-property-carousel__thumbs {
    position: relative;
    height: 150px;
    margin-top: 20px;
  }
}

.s-property-carousel .swiper-container {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.s-property-carousel .swiper-container:after {
  display: block;
  content: '';
  padding-bottom: 67.5%;
}

.s-property-carousel .swiper-slide {
  background-size: cover;
  background-position: center;
  background-color: #4d4d4d;
}

.s-property-carousel .s-property-carousel__thumbs .swiper-slide {
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
}

.s-property-carousel .s-property-carousel__thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.s-property-carousel .s-swiper-buttons {
  right: 0;
  top: 50%;
  background-color: #181818;
  height: 80px;
  width: 40px;
  z-index: 10;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .s-property-carousel .s-swiper-buttons {
    height: 100px;
    width: 50px;
  }
}

@media screen and (min-width: 992px) {
  .s-property-carousel .s-swiper-buttons {
    height: 120px;
    width: 60px;
  }
}

.s-property-carousel .s-swiper-buttons:after {
  content: '';
  position: absolute;
  display: block;
  width: 50%;
  height: 1px;
  background-color: #4d4d4d;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.s-property-carousel .s-swiper-button {
  height: 40px;
  width: 100%;
  cursor: pointer;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .s-property-carousel .s-swiper-button {
    height: 50px;
  }
}

@media screen and (min-width: 992px) {
  .s-property-carousel .s-swiper-button {
    height: 60px;
  }
}

.s-property-carousel .s-swiper-button__arrow-left, .s-property-carousel .s-swiper-button__arrow-right {
  border: solid #FFF;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.s-property-carousel .s-swiper-button__arrow-left {
  -webkit-transform: translateX(25%) rotate(135deg);
          transform: translateX(25%) rotate(135deg);
}

.s-property-carousel .s-swiper-button__arrow-right {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.s-property-carousel .s-swiper-button:hover .s-swiper-button__arrow-left, .s-property-carousel .s-swiper-button:hover .s-swiper-button__arrow-right {
  border-color: #00ff00;
}

.s-property-carousel .s-property-carousel__preloader {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s-property-carousel .s-property-carousel__percentage-sold {
  display: block;
  background-color: #181818;
  color: #FFF;
  top: 15px;
  left: 0;
  padding: 5px 15px;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .s-property-carousel .s-property-carousel__percentage-sold {
    padding: 5px 1.5vw;
  }
}

.s-property-carousel .s-property-carousel__percentage-sold:hover {
  color: #00ff00;
}

.s-testimonials-carousel .swiper-container {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.s-testimonials-carousel .row {
  width: 100%;
}

.s-testimonials-carousel .swiper-slide {
  background-size: cover;
  background-position: center;
}

.s-testimonials-carousel .s-testimonials-carousel__previous {
  left: -5vw;
  top: 50%;
  height: 60px;
  width: 60px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.s-testimonials-carousel .s-testimonials-carousel__next {
  right: -5vw;
  top: 50%;
  height: 60px;
  width: 60px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.s-testimonials-carousel .s-testimonials-carousel__bullets .swiper-pagination-bullet {
  margin-right: 5px;
}

.s-testimonials-carousel .s-testimonials-carousel__bullets .swiper-pagination-bullet-active {
  background: #00ff00;
}

.s-input--autocomplete input.is-open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.s-input--autocomplete .autocomplete {
  min-width: 100%;
  opacity: 0;
  z-index: 1;
  margin-top: -1px;
  border: solid 1px currentColor;
  transition: max-height 0s linear 0.2s;
}

.s-input--autocomplete .autocomplete.open {
  opacity: 1;
}

.s-input--autocomplete .autocomplete, .s-input--autocomplete .autocomplete:hover {
  background-color: transparent;
}

.s-input--autocomplete .autocomplete ul {
  width: 100%;
  background-color: #FFF;
}

.s-input--autocomplete .autocomplete ul li {
  position: relative;
  min-height: 40px;
  padding: 0 50px 0 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4d4d4d;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .s-input--autocomplete .autocomplete ul li {
    min-height: 50px;
  }
}

@media screen and (min-width: 992px) {
  .s-input--autocomplete .autocomplete ul li {
    min-height: 60px;
  }
}

.s-input--autocomplete .autocomplete ul li:hover, .s-input--autocomplete .autocomplete ul li:focus {
  color: #181818;
  background-color: #e9e9e9;
  transition: none;
}

.s-input--autocomplete .autocomplete ul li.is-selected {
  font-weight: bold;
}

.s-input--autocomplete .autocomplete ul li.is-selected:before {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 24px;
  font-weight: normal;
  content: '+';
  height: 100%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 0.05em;
}

.s-input--autocomplete .autocomplete ul li:not(.is-selected):before {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 6px;
  top: 48%;
  -webkit-transform: translateY(-44%);
          transform: translateY(-44%);
  font-size: 24px;
  font-weight: normal;
  content: '+';
  margin-right: 14px;
  opacity: 0.3;
}

.s-input--autocomplete .autocomplete ul li:not(.is-selected):after {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 0;
  width: 26px;
  height: 26px;
  top: 48%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  content: '';
  border: solid 1px currentColor;
  border-radius: 13px;
  margin-right: 15.5px;
  opacity: 0.3;
}

.s-input--autocomplete .autocomplete ul li:not(.is-selected):hover:before, .s-input--autocomplete .autocomplete ul li:not(.is-selected):hover:after {
  opacity: 1;
}

.s-input--autocomplete .autocomplete ul li span {
  position: relative;
  display: block;
  padding: 5px 0;
}

/* ----------------------------------------------------------- */
/* == tingle v0.15.2 */
/* ----------------------------------------------------------- */
.tingle-modal * {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4000;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  -moz-user-select: none;
       user-select: none;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* confirm and alerts
  -------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

/* modal
  -------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.tingle-modal__close svg * {
  fill: currentColor;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  -ms-flex-negative: 0;
          -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  max-width: 600px;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  will-change: transform, opacity;
}

.tingle-modal-box__content {
  padding: 3rem 3rem 2rem 3rem;
}

.tingle-modal-box__footer {
  padding: 0 3rem 3rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  cursor: auto;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px;
  /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  transition: bottom .3s ease-in-out .3s;
}

/* state
  -------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-enabled .tingle-content-wrapper {
  -webkit-filter: blur(8px);
          filter: blur(8px);
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  -webkit-animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

/* btn
  -------------------------------------------------------------- */
.tingle-btn {
  display: inline-block;
  margin: 0 .5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  transition: background-color .4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

/* responsive
  -------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    display: block;
    max-width: 100%;
    padding-top: 0;
  }
  .tingle-modal-box {
    width: calc(100% - 20px);
    border-radius: 0;
    margin: auto;
  }
  .tingle-modal-box__content {
    padding: 0rem 2rem 2rem 2rem;
    overflow-y: scroll;
  }
  .tingle-modal--noClose {
    top: 0;
  }
  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }
  .tingle-modal-box__footer {
    padding: 0 2rem 2rem;
  }
  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }
  .tingle-modal__close {
    position: relative;
    text-align: right;
    padding: 0 20px 20px 0;
    right: 0;
    left: 0;
    display: block;
    width: calc(100% - 20px);
    height: 60px;
    border: none;
    background-color: #fff;
    box-shadow: none;
    color: #000;
    top: 0;
    margin: 0 auto;
    margin-top: 10px;
  }
  .tingle-modal__closeLabel {
    text-transform: lowercase;
    text-align: right;
    display: inline-block;
    vertical-align: middle;
  }
  .tingle-modal__closeIcon {
    display: none;
    margin-right: .8rem;
    width: 1.6rem;
    vertical-align: middle;
    font-size: 0;
  }
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .tingle-modal:before {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .tingle-enabled .tingle-content-wrapper {
    -webkit-filter: none;
            filter: none;
  }
}

/* animations
  -------------------------------------------------------------- */
@-webkit-keyframes scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@font-face {
  font-family: "Knockout";
  src: url("../../fonts/site/Knockout-HTF49-Liteweight.woff2") format("woff2"), url("../../fonts/site/Knockout-HTF49-Liteweight.woff") format("woff");
}

html, body {
  height: auto !important;
  overflow-x: hidden !important;
}

html a, body a {
  outline: none;
}

body {
  min-height: var(--body-height);
}

.c-site-width-home {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.s-blurred {
  width: 100%;
}

.s-blur-up {
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.s-blur-up.lazyloaded {
  opacity: 1;
}

.cc-unoo {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.site-wrapper {
  color: #181818;
  font-family: "Poppins", sans-serif;
}

.site-wrapper h1,
.site-wrapper h2,
.site-wrapper h3,
.site-wrapper h4,
.site-wrapper h5,
.site-wrapper h6 {
  font-weight: 200;
}

.site-wrapper a {
  text-decoration: none;
}

.c-text-max-width-wide {
  max-width: 1000px;
}

.s-blockletters {
  font-family: "Knockout", Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif";
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
}

.c-title {
  font-family: "Knockout", Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif";
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
}

.c-title sup {
  top: -0.6em;
  font-size: 60%;
}

.c-title--nowrap {
  white-space: nowrap;
}

.c-text--white {
  color: #FFF;
}

.c-text--accent {
  color: #00ff00;
}

.s-stagger-line__overlay {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0.08em;
  background-color: #181818;
  z-index: 1;
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.c-text ul, .s-property__strengths-list-wrapper ul li ul,
.c-text ol,
.s-property__strengths-list-wrapper ul li ol {
  padding-left: 20px;
  margin: 0;
}

.c-text p:not(:last-child), .s-property__strengths-list-wrapper ul li p:not(:last-child) {
  margin-bottom: 1em;
}

.c-text strong, .s-property__strengths-list-wrapper ul li strong,
.c-text b,
.s-property__strengths-list-wrapper ul li b {
  font-weight: 600;
}

.c-text--center {
  margin: 0 auto;
}

.c-text--editor a {
  color: #181818;
  position: relative;
  border-bottom: 1px solid #00ff00;
  transition: all 0.1s ease-in-out;
}

.c-text--editor a:hover {
  border-color: currentColor;
}

.c-text--editor.c-text--white a {
  color: #FFF !important;
}

.c-text--editor a[href="#circle"] {
  display: inline-block;
  color: #181818;
  position: relative;
  pointer-events: none;
}

.c-text--editor a[href="#circle"]:after {
  position: absolute;
  display: block;
  content: "";
  z-index: -1;
  background-color: transparent;
  background-image: url("/images/site/graphic-circle5.svg");
  background-repeat: no-repeat;
  width: 120%;
  height: 2em;
  top: 50%;
  left: 50%;
  bottom: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-text--editor a[href="#underline"] {
  display: inline-block;
  color: #181818;
  position: relative;
  pointer-events: none;
}

.c-text--editor a[href="#underline"]:after {
  position: absolute;
  display: block;
  content: "";
  z-index: -1;
  background-color: transparent;
  background-image: url("/images/site/graphic-underline2.svg");
  background-repeat: no-repeat;
  width: 100%;
  height: 0.7em;
  left: 50%;
  bottom: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-text--thin {
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  font-weight: 300;
}

.c-text--white {
  color: #FFF !important;
}

.c-text--white .s-stagger-line__overlay {
  background-color: #FFF;
}

@media screen and (max-width: 991px) {
  .c-text--white.c-text--invert-on-mobile {
    color: #181818 !important;
  }
  .c-text--white.c-text--invert-on-mobile .s-stagger-line__overlay {
    background-color: #181818;
  }
}

.c-text--light {
  color: #bfbfbf !important;
}

.c-text--dark {
  color: #4d4d4d !important;
}

.c-text--strong, .s-property__strengths-list-wrapper ul li {
  font-weight: 600;
}

.c-text--nowrap {
  white-space: nowrap;
}

.c-text--trustpilot a {
  position: relative;
  color: #181818;
}

.c-text--trustpilot a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #181818;
  height: 1px;
}

.c-text--trustpilot.c-text--white a {
  color: #FFF;
}

.c-text--trustpilot.c-text--white a:after {
  background-color: #FFF;
}

.c-text--doormat {
  line-height: 2.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-text--doormat a {
  position: relative;
  color: #FFF;
}

.c-text--doormat a:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #00ff00;
          text-decoration-color: #00ff00;
}

/* override styles when printing */
@media print {
  .c-text--white,
  .c-text--light,
  .c-text--dark {
    color: #000 !important;
  }
}

@media screen and (min-width: 1200px) {
  .row .col--narrow-xl {
    -webkit-flex: none !important;
        -ms-flex: none !important;
            flex: none !important;
  }
}

.s-obj-fit-image {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
}

.s-flex-fill {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.s-move-to-back {
  z-index: -1;
}

.s-move-to-front {
  z-index: 1;
}

.s-link--unstyled {
  color: #181818 !important;
}

.s-link--unstyled:after {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .s-hide--md {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .s-hide--lg {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .s-hide--xl {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .s-show--md {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .s-show--lg {
    display: none !important;
  }
}

@media screen and (max-width: 1199px) {
  .s-show--xl {
    display: none !important;
  }
}

.s-ratio {
  position: relative;
}

.s-ratio--60 {
  padding-bottom: 60%;
}

.s-ratio--56 {
  padding-bottom: 56.25%;
}

.w-100 {
  width: 100%;
}

.c-divider {
  border: 0;
  border-top: 1px solid #e9e9e9;
  margin: 0;
  height: 1px;
}

.c-container {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 576px) {
  .c-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (min-width: 768px) {
  .c-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 992px) {
  .c-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (min-width: 1200px) {
  .c-container {
    padding-left: 70px;
    padding-right: 70px;
  }
}

.c-container-home {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 576px) {
  .c-container-home {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (min-width: 768px) {
  .c-container-home {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media screen and (min-width: 992px) {
  .c-container-home {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media screen and (min-width: 1200px) {
  .c-container-home {
    padding-left: 140px;
    padding-right: 140px;
  }
}

.c-spacer {
  width: 100%;
}

.s-bg--grey {
  background-color: #e9e9e9;
}

.s-bg--grey-darker {
  background-color: #bfbfbf;
}

.s-bg--grey-darkest {
  background-color: #4d4d4d;
}

.s-bg--dark {
  background-color: #181818;
}

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

.s-bg--lines {
  background: repeating-linear-gradient(-45deg, #e9e9e9, #e9e9e9 24vw, #FFF 24vw, #FFF 48vw);
}

@media screen and (min-width: 768px) {
  .s-bg--lines {
    background: repeating-linear-gradient(-45deg, #e9e9e9, #e9e9e9 12vw, #FFF 12vw, #FFF 24vw);
  }
}

.s-move-up__image {
  z-index: 2;
  position: relative;
}

.s-move-up__content {
  -webkit-transform: translateY(-10vw);
          transform: translateY(-10vw);
}

@media screen and (min-width: 768px) {
  .s-move-up__content {
    -webkit-transform: translateY(-7vw);
            transform: translateY(-7vw);
  }
}

.s-bg--breakout {
  margin: 0 -3.5vw;
  padding: 0 3.5vw;
}

.s-bg--overlap-bottom {
  margin-bottom: -3vw;
  padding-bottom: 3vw;
  padding-top: 7vw;
}

.c-text-max-width {
  max-width: 840px;
}

.s-cta-max-width {
  max-width: 500px;
}

.s-title--overlap-details {
  margin-bottom: -0.4em;
}

.s-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFF;
  z-index: 9999;
}

.s-page-loader:not(.is-loading) {
  display: none;
}

/* override styles when printing */
@media print {
  .s-policy-banner {
    visibility: hidden !important;
  }
  .s-pagebreak {
    page-break-before: always;
  }
  /* page-break-after works, as well */
  .s-bg--grey,
  .s-bg--grey-darker,
  .s-bg--grey-darkest,
  .s-bg--dark,
  .s-bg--black {
    background-color: #FFF;
  }
  .s-cta {
    display: none;
  }
  .js-reveal-block {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .js-stagger-line-overlay {
    -webkit-transform: matrix(0, 0, 0, 1, 0, 0) !important;
            transform: matrix(0, 0, 0, 1, 0, 0) !important;
  }
}

.row--overlap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .row--overlap {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}

.row .col.col--overlap__text,
.row .col.col--overlap__block {
  -ms-flex-negative: 0 !important;
          -webkit-flex-shrink: 0 !important;
          flex-shrink: 0 !important;
}

.row .col.col--overlap__text {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 992px) {
  .row .col.col--overlap__text {
    -ms-flex-preferred-size: 41.66666667%;
            -webkit-flex-basis: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--overlap__text {
    width: 41.66666667%;
  }
}

@media screen and (min-width: 992px) {
  .row .col.col--overlap__block {
    position: relative;
    left: 0;
    -ms-flex-preferred-size: 70.83333333%;
            -webkit-flex-basis: 70.83333333%;
            flex-basis: 70.83333333%;
    max-width: 70.83333333%;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .row .col.col--overlap__block {
    width: 70.83333333%;
  }
}

.row .col.col--overlap__block .s-image {
  height: 0;
  padding-bottom: 70%;
}

@media screen and (min-width: 768px) {
  .s-timeline__title {
    padding-top: 20vh;
  }
}

.s-timeline__item__title {
  position: relative;
}

@media screen and (min-width: 768px) {
  .s-timeline__item__title:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #00ff00;
  }
}

.s-timeline__item__title__inner {
  background: #181818;
  display: inline-block;
  position: relative;
  z-index: 2;
  padding-right: 2vw;
}

.s-timeline__item {
  margin-right: 2vw !important;
}

@media screen and (min-width: 992px) {
  .s-timeline__item {
    width: 20vw !important;
  }
}

@media screen and (min-width: 1500px) {
  .s-timeline__item {
    width: 17vw !important;
  }
}

.s-timeline__item:last-child .s-timeline__item__title:after {
  content: none;
}

.s-header {
  position: relative;
  height: 70px;
}

@media screen and (min-width: 992px) {
  .s-header {
    height: 140px;
  }
}

.s-header:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #e9e9e9;
}

.s-header.s-header--hero:after {
  display: none;
}

.s-header--bbg {
  height: 70px;
}

@media screen and (min-width: 768px) {
  .s-header--bbg {
    height: 140px;
  }
}

.s-header__inner {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.s-logo__svg {
  width: 127px;
  height: 47px;
}

@media screen and (min-width: 992px) {
  .s-logo__svg {
    width: 197px;
    height: 70px;
  }
}

.s-header__menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}

.s-menu-secondary {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 30%;
          -webkit-flex-basis: 30%;
          flex-basis: 30%;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-right: 1rem;
}

.s-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 70%;
          -webkit-flex-basis: 70%;
          flex-basis: 70%;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* override styles when printing */
@media print {
  .s-header__menu {
    display: none;
  }
}

.s-primary-footer__social {
  -ms-flex-preferred-size: 100%;
          -webkit-flex-basis: 100%;
          flex-basis: 100%;
  min-width: 100%;
  margin-bottom: 1em;
}

@media screen and (min-width: 992px) {
  .s-primary-footer__social {
    -ms-flex-preferred-size: 100px;
            -webkit-flex-basis: 100px;
            flex-basis: 100px;
    min-width: 100px;
    margin-bottom: 0;
  }
}

.s-primary-footer__nav {
  -ms-flex-preferred-size: 50%;
          -webkit-flex-basis: 50%;
          flex-basis: 50%;
  min-width: 50%;
  margin-bottom: 2em;
  padding-right: 1em;
}

@media screen and (min-width: 768px) {
  .s-primary-footer__nav {
    -ms-flex-preferred-size: 33.333%;
            -webkit-flex-basis: 33.333%;
            flex-basis: 33.333%;
    min-width: 33.333%;
  }
}

@media screen and (min-width: 992px) {
  .s-primary-footer__nav {
    -ms-flex-preferred-size: 15em;
            -webkit-flex-basis: 15em;
            flex-basis: 15em;
    min-width: 15em;
    margin-right: 2em;
    margin-bottom: 4em;
  }
}

@media screen and (min-width: 1400px) {
  .s-primary-footer__nav {
    -ms-flex-preferred-size: 12em;
            -webkit-flex-basis: 12em;
            flex-basis: 12em;
    min-width: 12em;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1600px) {
  .s-primary-footer__nav {
    -ms-flex-preferred-size: 15em;
            -webkit-flex-basis: 15em;
            flex-basis: 15em;
    min-width: 15em;
  }
}

@media screen and (min-width: 992px) {
  .s-primary-footer__biv {
    margin-left: 100px;
  }
}

.s-primary-footer__biv a {
  text-decoration: underline;
  color: currentColor;
}

.s-primary-footer__newsletter {
  -ms-flex-preferred-size: 100%;
          -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 47em;
  margin-top: 1em;
  margin-bottom: 2em;
}

@media screen and (min-width: 992px) {
  .s-primary-footer__newsletter {
    margin-left: 100px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1400px) {
  .s-primary-footer__newsletter {
    max-width: 35em;
    margin-left: auto;
  }
}

.s-footer__sociallinks {
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 -1em;
}

@media screen and (min-width: 992px) {
  .s-footer__sociallinks {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 -1em;
  }
}

.s-footer__sociallink {
  margin: 0.5em;
}

.s-social-link {
  height: 30px;
  width: 30px;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s-social-link svg path,
.s-social-link svg circle {
  transition: all 0.1s ease-in-out;
}

.s-social-link:hover svg path,
.s-social-link:hover svg circle {
  fill: #00ff00;
}

.s-secondary-footer {
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (min-width: 768px) {
  .s-secondary-footer {
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.s-secondary-footer__left {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .s-secondary-footer__left {
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.s-secondary-footer__item {
  margin-bottom: 0.2em;
}

@media screen and (min-width: 768px) {
  .s-secondary-footer__item {
    margin-bottom: 0;
  }
}

.s-secondary-footer__link {
  color: #4d4d4d;
  transition: all 0.1s ease-in-out;
}

.s-secondary-footer__link:hover {
  color: #bfbfbf;
}

/* override styles when printing */
@media print {
  .s-footer {
    display: none;
  }
}

.s-accordion {
  margin: 0 auto;
}

.s-accordion__item {
  padding: 1rem 0 0 0;
}

.s-accordion__item:hover .s-accordion__item-icon {
  background-color: #00ff00;
  border: solid 1px transparent;
}

.s-accordion__item.is-active .s-accordion__item-icon {
  background-color: #00ff00;
  border: solid 1px transparent;
}

.s-accordion__item.is-active .s-accordion__item-icon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.s-accordion__item.is-active .s-accordion__item-icon:before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.s-accordion__item-header {
  width: 100%;
  cursor: pointer;
  padding-left: 3rem;
}

@media screen and (min-width: 992px) {
  .s-accordion__item-header {
    padding-left: 4rem;
  }
}

.s-accordion__item-header__inner {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-accordion__item-title {
  display: block;
  width: 100%;
}

.s-accordion__item-icon {
  position: relative;
  display: block;
  min-width: 3rem;
  width: 3rem;
  height: 3rem;
  margin-left: -3rem;
  border: solid 1px #e9e9e9;
  border-radius: 2rem;
  margin-right: 1.5rem;
  transition: all 0.05s ease-in-out;
}

@media screen and (min-width: 992px) {
  .s-accordion__item-icon {
    min-width: 4rem;
    width: 4rem;
    height: 4rem;
    margin-left: -4rem;
  }
}

.s-accordion__item-icon:after, .s-accordion__item-icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  background-color: #181818;
  width: 1.5rem;
  height: 2px;
  margin-left: calc(-0.75rem + 1px);
  transition: all 0.2s ease-in-out;
}

.s-accordion__item-icon:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.s-accordion__item-body {
  padding: 0 .5rem;
}

@media screen and (min-width: 992px) {
  .s-accordion__item-body {
    padding-left: 4rem;
    margin-left: 1.5rem;
  }
}

.s-accordion__item-body__inner {
  padding: 2rem 0;
  max-width: 60em;
}

@media screen and (min-width: 992px) {
  .s-accordion__item-body__inner {
    padding: 0.5rem 0;
  }
}

.s-button {
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  color: #181818;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  text-decoration: none;
  font-family: "Knockout", Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif";
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
  transition: background-color 0.1s ease-in-out;
}

@media screen and (min-width: 768px) {
  .s-button {
    height: 50px;
    padding: 0 25px;
    border-radius: 25px;
  }
}

@media screen and (min-width: 992px) {
  .s-button {
    height: 60px;
    padding: 0 30px;
    border-radius: 30px;
  }
}

.s-button.s-button--fill {
  width: 100%;
}

.s-button.is-disabled {
  cursor: default;
  opacity: 0.4;
}

.s-button--mobile-menu {
  height: 50px;
  padding: 0 25px;
  border-radius: 25px;
}

.s-button--caret-left, .s-button--caret-right {
  padding-right: 40px;
}

@media screen and (min-width: 768px) {
  .s-button--caret-left, .s-button--caret-right {
    padding-right: 45px;
  }
}

@media screen and (min-width: 992px) {
  .s-button--caret-left, .s-button--caret-right {
    padding-right: 50px;
  }
}

.s-button--caret-left:after, .s-button--caret-right:after {
  position: absolute;
  display: block;
  content: '';
  width: 0;
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #181818;
  margin-left: 1em;
  margin-right: 0.2em;
  margin-bottom: 1px;
  transition: all 0.1s ease-in-out;
}

.s-button--caret-left:after {
  left: 20px;
  border-left: none;
  border-right: 5px solid #181818;
}

@media screen and (min-width: 992px) {
  .s-button--caret-left:after {
    left: 25px;
  }
}

.s-button--caret-right:after {
  right: 20px;
}

@media screen and (min-width: 992px) {
  .s-button--caret-right:after {
    right: 25px;
  }
}

.s-button--border {
  border: solid 2px #00ff00;
}

.s-button--border.s-button--disabled {
  border: solid 1px #e9e9e9;
}

.s-button--border.s-button--border-grey {
  border: solid 1px #e9e9e9;
}

.s-button--border.is-invalid {
  border: solid 2px red;
}

.s-button--large {
  height: 50px;
  padding: 0 25px;
  border-radius: 25px;
}

@media screen and (min-width: 768px) {
  .s-button--large {
    height: 60px;
    padding: 0 30px;
    border-radius: 30px;
  }
}

@media screen and (min-width: 992px) {
  .s-button--large {
    height: 80px;
    padding: 0 40px;
    border-radius: 40px;
  }
}

.s-button--large.s-button--caret-left, .s-button--large.s-button--caret-right {
  padding-right: 45px;
}

@media screen and (min-width: 768px) {
  .s-button--large.s-button--caret-left, .s-button--large.s-button--caret-right {
    padding-right: 50px;
  }
}

@media screen and (min-width: 992px) {
  .s-button--large.s-button--caret-left, .s-button--large.s-button--caret-right {
    padding-right: 65px;
  }
}

.s-button--large.s-button--caret-left:after {
  left: 25px;
  border-left: none;
  border-right: 5px solid #181818;
}

@media screen and (min-width: 992px) {
  .s-button--large.s-button--caret-left:after {
    left: 40px;
  }
}

.s-button--large.s-button--caret-right:after {
  right: 25px;
}

@media screen and (min-width: 992px) {
  .s-button--large.s-button--caret-right:after {
    right: 40px;
  }
}

.s-button--dark {
  color: #FFF;
}

.s-button--dark:after {
  border-left-color: #FFF;
}

.s-button--white {
  color: #181818;
  background-color: #FFF;
}

.s-button--accent, .s-button--accent-to-white {
  background-color: #00ff00;
}

.s-button--filter-toggle {
  background-color: #e9e9e9;
  font-family: "Poppins", sans-serif;
  text-transform: none;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
}

.s-button--play {
  background-color: transparent;
  border: solid 2px #FFF;
  color: #FFF;
  padding-left: 50px;
}

@media screen and (min-width: 768px) {
  .s-button--play {
    padding-left: 55px;
  }
}

@media screen and (min-width: 992px) {
  .s-button--play {
    padding-left: 60px;
  }
}

.s-button--play:after {
  position: absolute;
  display: block;
  content: '';
  width: 0;
  height: 0;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #FFF;
  margin-left: 1em;
  margin-right: 0.2em;
  margin-bottom: 1px;
  transition: all 0.1s ease-in-out;
}

.s-button--no-text {
  width: 40px;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .s-button--no-text {
    width: 50px;
  }
}

@media screen and (min-width: 992px) {
  .s-button--no-text {
    width: 60px;
  }
}

.s-button--no-text.s-button--caret-left:after, .s-button--no-text.s-button--caret-right:after {
  margin: 0;
}

.s-button-list__item {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1em;
}

.s-button-list__item:not(:last-child) {
  margin-right: 1em;
}

.s-button:hover:not(.is-disabled) {
  background-color: #00ff00;
  color: #181818;
}

.s-button:hover:not(.is-disabled):after {
  border-left-color: #181818;
}

.s-button:hover:not(.is-disabled).s-button--border.s-button--border-grey:after {
  border-left-color: #FFF;
}

@media screen and (min-width: 992px) {
  .s-button:hover:not(.is-disabled).s-button--caret-right:after {
    -webkit-transform: translateY(-50%) translateX(3px);
            transform: translateY(-50%) translateX(3px);
  }
  .s-button:hover:not(.is-disabled).s-button--caret-left:after {
    -webkit-transform: translateY(-50%) translateX(-3px);
            transform: translateY(-50%) translateX(-3px);
  }
}

.s-button:hover:not(.is-disabled).s-button--accent, .s-button:hover:not(.is-disabled).s-button--white, .s-button:hover:not(.is-disabled).s-button--border.s-button--border-grey {
  background-color: #181818;
  color: #FFF;
}

.s-button:hover:not(.is-disabled).s-button--accent-to-white {
  background-color: #FFF;
  color: #181818;
}

.s-button:hover:not(.is-disabled).s-button--filter-toggle {
  background-color: #bfbfbf;
}

.s-button:hover:not(.is-disabled).s-button--play {
  background-color: transparent;
  color: #FFF;
}

.s-paging-button {
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  color: #181818;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #FFF;
  border: solid 2px #FFF;
  transition: all 0.1s ease-in-out;
}

@media screen and (min-width: 768px) {
  .s-paging-button {
    width: 50px;
    height: 50px;
    border-radius: 25px;
  }
}

@media screen and (min-width: 992px) {
  .s-paging-button {
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }
}

.s-paging-button--prevnext {
  width: auto;
  height: 40px;
  border-radius: 20px;
  padding: 0 20px;
}

@media screen and (min-width: 768px) {
  .s-paging-button--prevnext {
    height: 50px;
    border-radius: 25px;
    padding: 0 25px;
  }
}

@media screen and (min-width: 992px) {
  .s-paging-button--prevnext {
    height: 60px;
    border-radius: 30px;
    padding: 0 30px;
  }
}

.s-paging-button--inactive {
  cursor: default;
  background-color: transparent;
  color: #bfbfbf;
  border: solid 1px #bfbfbf;
}

.s-paging-button--active {
  background-color: #bfbfbf;
  border: solid 1px #bfbfbf;
  cursor: default;
}

.s-paging-button:hover:not(.s-paging-button--inactive):not(.s-paging-button--active) {
  border: solid 2px #00ff00;
}

.s-paging-button--dark {
  background-color: #181818;
  color: #FFF;
  border: solid 1px #4d4d4d;
}

.s-paging-button--dark.s-paging-button--active {
  background-color: #4d4d4d;
  border: solid 1px transparent;
}

.s-paging-button--dark.s-paging-button--inactive {
  color: #4d4d4d;
}

.s-paging-button--grey {
  background-color: #e9e9e9;
  color: #181818;
}

.s-paging-button--grey.s-paging-button--active {
  background-color: #bfbfbf;
  border: solid 1px #bfbfbf;
}

.s-paging-button--grey.s-paging-button--inactive {
  color: #4d4d4d;
  background-color: transparent;
}

.s-link-button {
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 34px;
  background-color: transparent;
  color: #181818;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  border: none;
  line-height: 20px;
}

@media screen and (min-width: 768px) {
  .s-link-button {
    height: 20px;
  }
}

.s-link-button.is-hidden {
  display: none;
}

.s-link-button--dark {
  color: #FFF;
}

.s-link-button--underline:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  bottom: 0;
  background-color: #00ff00;
  transition: all 0.1s ease-in-out;
}

.s-link-button--underline:hover:after {
  background-color: #181818;
}

.s-link-button--underline.s-link-button--icon:after {
  left: 30px;
  background-color: #181818;
}

.s-link-button--icon {
  padding-left: 30px;
}

.s-link-button--icon svg {
  position: absolute;
  display: block;
  left: 0;
}

.s-link-button--border {
  border: solid 1px #e9e9e9;
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  transition: all 0.1s ease-in-out;
}

@media screen and (min-width: 768px) {
  .s-link-button--border {
    height: 50px;
    padding: 0 25px;
    padding-left: 60px;
    border-radius: 25px;
  }
  .s-link-button--border svg {
    left: 25px;
  }
}

@media screen and (min-width: 992px) {
  .s-link-button--border {
    height: 60px;
    padding: 0 30px;
    padding-left: 65px;
    border-radius: 30px;
  }
  .s-link-button--border svg {
    left: 30px;
  }
}

.s-link-button--border:hover {
  color: #181818;
  background-color: #e9e9e9;
}

/*.s-link-button--inactive {
    opacity: 0.3;
    transition: opacity 0.2s ease-in-out;
    &:hover {
        opacity: 1;
    }
}*/
.s-download-link {
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  color: #181818;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  border: none;
  border: solid 1px #bfbfbf;
  min-height: 40px;
  padding: 10px 50px 10px 20px;
  width: 100%;
  max-width: 500px;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  transition: all 0.1s ease-in-out;
}

@media screen and (min-width: 768px) {
  .s-download-link {
    min-height: 50px;
    padding: 10px 50px 10px 25px;
  }
}

@media screen and (min-width: 992px) {
  .s-download-link {
    min-height: 60px;
    padding: 10px 50px 10px 30px;
  }
}

.s-download-link.is-disabled {
  opacity: 0.4;
  cursor: default;
}

.s-download-link:not(.is-disabled):hover {
  background-color: #bfbfbf;
}

.s-download-link span {
  display: block;
  white-space: normal;
  word-break: break-all;
}

.s-download-link svg {
  position: absolute;
  right: 20px;
}

.s-share-button {
  height: 40px;
  width: 40px;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px #e9e9e9;
  transition: all 0.1s ease-in-out;
}

@media screen and (min-width: 768px) {
  .s-share-button {
    height: 50px;
    width: 50px;
  }
}

@media screen and (min-width: 992px) {
  .s-share-button {
    height: 60px;
    width: 60px;
  }
}

.s-share-button:hover {
  background-color: #00ff00;
}

.s-share-buttons .s-share-button:not(:first-child) {
  margin-left: -1px;
}

.s-favorites-button {
  line-height: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.s-favorites-button svg path {
  transition: all 0.1s ease-in-out;
}

.s-favorites-button.s-favorites-button--active, .s-favorites-button:hover {
  color: #FFF;
}

.s-favorites-button.s-favorites-button--active svg path, .s-favorites-button:hover svg path {
  fill: #181818;
}

.s-favorites-button .count {
  width: 34px;
  height: 34px;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 0.1em;
  padding-bottom: 0.3em;
}

.s-table-button {
  position: relative;
  padding-right: 20px;
  color: #FFF;
  white-space: nowrap;
}

.s-table-button:before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  right: 20px;
  height: 1px;
  bottom: 0;
  background-color: #00ff00;
  padding-right: 20px;
}

.s-table-button:after {
  position: absolute;
  display: block;
  content: '';
  width: 0;
  height: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #FFF;
  margin-left: 1em;
  margin-right: 0.2em;
  margin-bottom: 1px;
  transition: all 0.1s ease-in-out;
}

.s-table-button:hover {
  color: #00ff00;
}

.s-table-button:hover:after {
  border-left: 5px solid #00ff00;
}

/* override styles when printing */
@media print {
  .s-link-button--dark, .s-table-button {
    color: #000 !important;
  }
}

@media screen and (min-width: tablet) {
  .s-datalist__item .row--even > .col:nth-child(1) {
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

.s-datalist__player {
  position: relative;
  padding-bottom: 56.23%;
  /* Use 75% for 4:3 videos */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.s-datalist__player:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}

.s-datalist__player:hover:after {
  background: rgba(50, 50, 50, 0.1);
}

.s-datalist__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent;
}

.s-datalist__player img {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  transition: .4s all;
  z-index: 0;
}

.s-datalist__player .play {
  z-index: 2;
  pointer-events: none;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.s-form-max-width {
  width: 100%;
  max-width: 1000px;
}

.s-form--inline {
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s-form--inline .s-input {
  max-width: 500px;
}

.s-form--phone {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .s-form--phone .s-form--phone__input, .s-form--phone .s-form--phone__button {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
  }
}

.s-form--phone .s-form--phone__input {
  width: 250px;
  margin-right: 2em;
}

.s-form--newsletter {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.s-form--newsletter.s-form--footer {
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.s-form--newsletter.s-form--footer .s-button {
  margin-left: 0;
}

@media screen and (min-width: 1200px) {
  .s-form--newsletter.s-form--footer .s-button {
    margin-left: 1em;
  }
}

@media screen and (max-width: 1199px) {
  .s-form--newsletter .s-form--newsletter__input {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .s-form--newsletter .s-form--newsletter__button {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
  }
}

.s-form--subscription-bar .s-button {
  margin-left: 1em;
}

.s-form--ten-year {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .s-form--ten-year {
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 700px;
  }
  .s-form--ten-year .s-button {
    margin-left: 1em;
  }
}

.s-input {
  display: block;
  position: relative;
}

.s-input ::-webkit-input-placeholder {
  color: #bfbfbf;
  opacity: 1;
}

.s-input ::-ms-input-placeholder {
  color: #bfbfbf;
  opacity: 1;
}

.s-input ::placeholder {
  color: #bfbfbf;
  opacity: 1;
}

.s-input input, .s-input textarea {
  display: block;
  height: 40px;
  outline: 0;
  background-color: transparent;
  border: 1px solid #bfbfbf;
  border-radius: 20px;
  width: 100%;
  -webkit-appearance: none;
  padding: 0 20px;
  color: #181818;
  transition: min-width 0.2s ease-in-out;
}

.s-input input:hover, .s-input input:focus, .s-input textarea:hover, .s-input textarea:focus {
  border-color: #181818;
}

@media screen and (min-width: 768px) {
  .s-input input, .s-input textarea {
    height: 50px;
    border-radius: 25px;
    padding: 0 25px;
  }
}

@media screen and (min-width: 992px) {
  .s-input input, .s-input textarea {
    height: 60px;
    border-radius: 30px;
    padding: 0 30px;
  }
}

.s-input textarea {
  padding: 0.8em 20px;
  height: 140px;
  resize: none;
}

@media screen and (min-width: 768px) {
  .s-input textarea {
    padding: 0.8em 25px;
    height: 200px;
  }
}

@media screen and (min-width: 992px) {
  .s-input textarea {
    padding: 0.8em 30px;
    height: 240px;
  }
}

.s-input.s-input--fill input, .s-input.s-input--fill textarea {
  width: 100%;
  max-width: none;
}

.s-input--dark input, .s-input--dark textarea {
  background-color: #FFF;
  border: 1px solid transparent;
}

.s-input--is-invalid input, .s-input--is-invalid textarea {
  border: solid 2px red !important;
}

.s-input--is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.s-input--search {
  /*&.is-active {
        input, textarea {
            @include breakpoint(md) {
                min-width: 400px;
            }
        }
    }*/
}

.s-input--search input, .s-input--search textarea {
  padding-left: 3.5em;
}

@media screen and (min-width: 768px) {
  .s-input--search input, .s-input--search textarea {
    min-width: 18em;
  }
}

.s-input__icon {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  width: 50px;
}

@media screen and (min-width: 768px) {
  .s-input__icon {
    height: 50px;
    width: 60px;
  }
}

@media screen and (min-width: 992px) {
  .s-input__icon {
    height: 60px;
    width: 70px;
  }
}

.s-input__icon svg g path {
  fill: #181818;
  transition: all 0.15s ease-in-out;
}

.s-dropdown-container .choices {
  width: 100%;
  font-size: unset;
}

.s-dropdown-container .choices[data-type*="select-one"]:after,
.s-dropdown-container .choices[data-type*="select-multiple"]:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #181818 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .s-dropdown-container .choices[data-type*="select-one"]:after,
  .s-dropdown-container .choices[data-type*="select-multiple"]:after {
    right: 25px;
  }
}

@media screen and (min-width: 992px) {
  .s-dropdown-container .choices[data-type*="select-one"]:after,
  .s-dropdown-container .choices[data-type*="select-multiple"]:after {
    right: 30px;
  }
}

.s-dropdown-container .choices[data-type*="select-one"].is-open:after,
.s-dropdown-container .choices[data-type*="select-multiple"].is-open:after {
  margin-top: -2.5px;
}

.s-dropdown-container .is-open .choices__inner, .s-dropdown-container .is-focused .choices__inner, .s-dropdown-container:hover .choices__inner {
  border-color: #181818;
}

.s-dropdown-container .is-open .choices__list--dropdown, .s-dropdown-container .is-focused .choices__list--dropdown, .s-dropdown-container:hover .choices__list--dropdown {
  border-color: #181818;
}

.s-dropdown-container .choices__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  min-height: 40px !important;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px 0 20px !important;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid #bfbfbf;
  font-size: unset;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .s-dropdown-container .choices__inner {
    height: 50px;
    border-radius: 25px;
    padding: 0 45px 0 25px !important;
  }
}

@media screen and (min-width: 992px) {
  .s-dropdown-container .choices__inner {
    height: 60px;
    border-radius: 30px;
    padding: 0 40px 0 30px !important;
  }
}

.s-dropdown-container .choices.is-open .choices__inner {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.s-dropdown-container .choices[data-type*='select-one'],
.s-dropdown-container .choices[data-type*='select-multiple'] {
  cursor: default;
}

.s-dropdown-container .choices[data-type*='select-one'] .choices__inner, .s-dropdown-container .choices[data-type*='select-one'] .choices__input,
.s-dropdown-container .choices[data-type*='select-multiple'] .choices__inner,
.s-dropdown-container .choices[data-type*='select-multiple'] .choices__input {
  cursor: pointer;
}

.s-dropdown-container .choices__input {
  font-size: 1em;
  padding: 0;
  margin: 0;
  background: transparent;
}

.s-dropdown-container .choices__input::-webkit-input-placeholder {
  color: #bfbfbf;
  opacity: 1;
}

.s-dropdown-container .choices__input::-ms-input-placeholder {
  color: #bfbfbf;
  opacity: 1;
}

.s-dropdown-container .choices__input::placeholder {
  color: #bfbfbf;
  opacity: 1;
}

.s-dropdown-container .choices__input.has-selection::-webkit-input-placeholder {
  color: #181818;
}

.s-dropdown-container .choices__input.has-selection::-ms-input-placeholder {
  color: #181818;
}

.s-dropdown-container .choices__input.has-selection::placeholder {
  color: #181818;
}

.s-dropdown-container .choices__input.has-selection:focus::-webkit-input-placeholder {
  color: #bfbfbf;
}

.s-dropdown-container .choices__input.has-selection:focus::-ms-input-placeholder {
  color: #bfbfbf;
}

.s-dropdown-container .choices__input.has-selection:focus::placeholder {
  color: #bfbfbf;
}

.s-dropdown-container .choices__list {
  padding: 0;
  max-height: 275px;
}

.s-dropdown-container .choices__list--multiple {
  display: none;
}

.s-dropdown-container .choices__placeholder {
  opacity: 1;
  color: #bfbfbf;
}

.s-dropdown-container .choices__list--dropdown .choices__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px !important;
  font-size: unset;
  background-color: #FFF;
}

@media screen and (min-width: 768px) {
  .s-dropdown-container .choices__list--dropdown .choices__item {
    height: 50px;
  }
}

@media screen and (min-width: 992px) {
  .s-dropdown-container .choices__list--dropdown .choices__item {
    height: 60px;
  }
}

.s-dropdown-container .choices__list--dropdown .choices__item--selectable:after {
  opacity: 1;
}

.s-dropdown-container .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #e9e9e9;
}

.s-dropdown-container .choices[data-type*="select-one"] .choices__item--selectable.is-selected {
  font-weight: bold;
}

.s-dropdown-container .choices[data-type*="select-multiple"] .choices__item--selectable.is-selected {
  font-weight: bold;
}

.s-dropdown-container .choices[data-type*="select-multiple"] .choices__item--selectable.is-selected:before {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 24px;
  font-weight: normal;
  content: '+';
  height: 100%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 0.05em;
}

.s-dropdown-container .choices[data-type*="select-multiple"] .choices__item--selectable:not(.is-selected):before {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 6px;
  top: 48%;
  -webkit-transform: translateY(-44%);
          transform: translateY(-44%);
  font-size: 24px;
  font-weight: normal;
  content: '+';
  margin-right: 14px;
  opacity: 0.3;
}

.s-dropdown-container .choices[data-type*="select-multiple"] .choices__item--selectable:not(.is-selected):after {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 0;
  width: 26px;
  height: 26px;
  top: 48%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  content: '';
  border: solid 1px currentColor;
  border-radius: 13px;
  margin-right: 15.5px;
  opacity: 0.3;
}

.s-dropdown-container .choices[data-type*="select-multiple"] .choices__item--selectable:not(.is-selected):hover:before, .s-dropdown-container .choices[data-type*="select-multiple"] .choices__item--selectable:not(.is-selected):hover:after {
  opacity: 1;
}

.s-dropdown-container.s-dropdown-container--is-invalid .choices__inner {
  border: solid 2px red;
}

.s-dropdown-container.s-dropdown-container--is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.s-dropdown-container-simple .choices {
  min-width: 200px;
  font-size: unset;
}

.s-dropdown-container-simple .choices[data-type*="select-one"]:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #181818 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.s-dropdown-container-simple .choices[data-type*="select-one"].is-open:after {
  margin-top: -2.5px;
}

.s-dropdown-container-simple .is-open .choices__inner, .s-dropdown-container-simple .is-focused .choices__inner, .s-dropdown-container-simple:hover .choices__inner {
  border-color: #bfbfbf;
}

.s-dropdown-container-simple .is-open .choices__list--dropdown, .s-dropdown-container-simple .is-focused .choices__list--dropdown, .s-dropdown-container-simple:hover .choices__list--dropdown {
  border-color: #bfbfbf;
}

.s-dropdown-container-simple .choices__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  min-height: 40px !important;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 45px 0 15px !important;
  background-color: transparent;
  border: 1px solid transparent;
  font-size: unset;
  transition: all 100ms ease;
}

.s-dropdown-container-simple .choices__list {
  padding: 0;
}

.s-dropdown-container-simple .choices__placeholder {
  opacity: 1;
  color: #bfbfbf;
}

.s-dropdown-container-simple .choices__list--dropdown .choices__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 40px !important;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px !important;
  font-size: unset;
  word-wrap: normal;
}

.s-dropdown-container-simple .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #e9e9e9;
}

.s-dropdown-container--radius .choices__inner {
  min-width: 8em;
}

.s-dropdown-container--budget .choices__inner {
  min-width: 11em;
}

.s-checkbox-table {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.5em;
}

.s-checkbox-table__item {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: calc(33.3333% - 1em);
          -webkit-flex-basis: calc(33.3333% - 1em);
          flex-basis: calc(33.3333% - 1em);
  max-width: calc(33.3333% - 1em);
  margin: 0.5em;
}

/* Customize the label (the container) */
.s-checkbox-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 35px;
  padding-left: 50px;
  margin: 0;
}

.s-checkbox-container a {
  color: #181818;
  position: relative;
  border-bottom: 1px solid #00ff00;
  transition: all 0.1s ease-in-out;
}

.s-checkbox-container a:hover {
  border-color: #181818;
}

.s-checkbox-container.c-text--white a {
  color: #FFF;
}

@media screen and (min-width: 768px) {
  .s-checkbox-container {
    padding-left: 3em;
    margin: 0 30px 0 0;
  }
}

/* Hide the browser's default checkbox */
.s-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.s-checkbox__checkmark {
  position: absolute;
  left: 0;
  border: solid 1px #bfbfbf;
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.1s ease-in-out;
  height: 2em;
  width: 2em;
}

/* On mouse-over, add a grey background color */
.s-checkbox-container:hover input ~ .s-checkbox__checkmark {
  border-color: #181818;
  opacity: 1;
}

/* When the checkbox is checked, add a blue background */
.s-checkbox-container input:checked ~ .s-checkbox__checkmark {
  background-color: #00ff00;
  border-color: #00ff00;
  opacity: 1;
}

/* Create the checkmark/indicator (hidden when not checked) */
.s-checkbox__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.s-checkbox-container input:checked ~ .s-checkbox__checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.s-checkbox-container .s-checkbox__checkmark:after {
  left: 0.7em;
  top: 0.3em;
  width: 0.5em;
  height: 1em;
  border: solid #181818;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.s-checkbox-container--small {
  padding-left: 1.8em;
}

@media screen and (min-width: 768px) {
  .s-checkbox-container--small {
    height: 50px;
    margin: 0 0.6em 0 0;
  }
}

@media screen and (min-width: 992px) {
  .s-checkbox-container--small {
    height: 60px;
  }
}

.s-checkbox-container--small .s-checkbox__checkmark {
  height: 1.3em;
  width: 1.3em;
  border-radius: 0.3em;
}

.s-checkbox-container--small .s-checkbox__checkmark:after {
  left: 0.35em;
  top: 0.05em;
  width: 0.5em;
  height: 0.85em;
}

.s-checkbox-container--dark:hover input ~ .s-checkbox__checkmark {
  border-color: #00ff00;
}

.s-checkbox-container--large {
  height: 35px;
  padding-left: 50px;
  margin-right: 30px;
}

@media screen and (min-width: 768px) {
  .s-checkbox-container--large {
    height: 50px;
    padding-left: 65px;
    margin-right: 45px;
  }
}

@media screen and (min-width: 992px) {
  .s-checkbox-container--large {
    height: 60px;
    padding-left: 80px;
    margin-right: 60px;
  }
}

.s-checkbox-container--large .s-checkbox__checkmark {
  height: 35px;
  width: 35px;
}

@media screen and (min-width: 768px) {
  .s-checkbox-container--large .s-checkbox__checkmark {
    height: 50px;
    width: 50px;
  }
}

@media screen and (min-width: 992px) {
  .s-checkbox-container--large .s-checkbox__checkmark {
    height: 60px;
    width: 60px;
  }
}

.s-checkbox-container--large .s-checkbox__checkmark:after {
  left: 12px;
  top: 7px;
  width: 10px;
  height: 14px;
  border-width: 0 3px 3px 0;
}

@media screen and (min-width: 768px) {
  .s-checkbox-container--large .s-checkbox__checkmark:after {
    left: 20px;
    top: 12px;
    width: 10px;
    height: 18px;
    border-width: 0 4px 4px 0;
  }
}

@media screen and (min-width: 992px) {
  .s-checkbox-container--large .s-checkbox__checkmark:after {
    left: 25px;
    top: 17px;
  }
}

.s-checkbox-container--is-invalid .s-checkbox__checkmark {
  border: solid 1px red;
}

.s-dropzone {
  border: none;
}

.s-dropzone .dz-message {
  margin: 0;
}

.s-dropzone .dz-preview.dz-image-preview {
  background: transparent;
}

.s-dropzone .dz-preview:hover .dz-image {
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
  -webkit-transform: none;
          transform: none;
}

.s-dropzone .dz-preview:hover .dz-image img {
  -webkit-filter: none;
          filter: none;
  -webkit-transform: none;
          transform: none;
}

.s-dropzone .dz-remove {
  color: currentColor;
}

.s-uploader {
  position: relative;
}

.s-uploader .row .col {
  margin: 2vw;
}

.s-uploader__button {
  background-color: #181818;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  margin-bottom: 2em;
}

.s-uploader__button .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.s-uploader__button .plus-sign {
  width: 31px;
  height: 31px;
}

.s-uploader__button .plus-sign:after {
  display: block;
  content: '';
  position: absolute;
  width: 3px;
  height: 31px;
  top: 0;
  left: 50%;
  background-color: #FFF;
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
}

.s-uploader__button .plus-sign:before {
  display: block;
  content: '';
  position: absolute;
  width: 31px;
  height: 3px;
  top: 50%;
  left: 0;
  background-color: #FFF;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.s-uploader__text {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 300px;
  margin: 0 auto;
}

.s-form-actions.row .col {
  margin-bottom: 1em;
}

@media screen and (min-width: 768px) {
  .s-form-actions.row .col--checkboxes {
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
  }
}

.s-graphic, .s-graphic-underline, .s-graphic-circle2, .s-graphic-circle3, .s-graphic-circle4, .s-graphic-scribble-optimal,
.s-graphic-scribble-ten-year,
.s-graphic-scribble-groentjes, .s-graphic-scribble-new-home, .s-graphic-scrap {
  display: inline-block;
  position: relative;
  z-index: 0;
}

.s-graphic:after, .s-graphic-underline:after, .s-graphic-circle2:after, .s-graphic-circle3:after, .s-graphic-circle4:after, .s-graphic-scribble-optimal:after,
.s-graphic-scribble-ten-year:after,
.s-graphic-scribble-groentjes:after, .s-graphic-scribble-new-home:after, .s-graphic-scrap:after {
  display: block;
  content: ' ';
  position: absolute;
  transition: opacity 0.3s ease-in-out;
}

.s-graphic.is-invisible:after, .is-invisible.s-graphic-underline:after, .is-invisible.s-graphic-circle2:after, .is-invisible.s-graphic-circle3:after, .is-invisible.s-graphic-circle4:after, .is-invisible.s-graphic-scribble-optimal:after,
.is-invisible.s-graphic-scribble-ten-year:after,
.is-invisible.s-graphic-scribble-groentjes:after, .is-invisible.s-graphic-scribble-new-home:after, .is-invisible.s-graphic-scrap:after {
  opacity: 0;
}

.s-graphic-underline:after {
  left: 0;
  z-index: -1;
  background-image: url("/images/site/graphic-underline.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom: 8%;
}

.s-graphic-circle2:after {
  left: 43%;
  top: 50%;
  -webkit-transform: translate(-45%, -50%);
          transform: translate(-45%, -50%);
  z-index: 5;
  background-image: url("/images/site/graphic-circle2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 160%;
  height: 166%;
}

.s-graphic-circle3:after {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-45%, -50%);
          transform: translate(-45%, -50%);
  z-index: 1;
  background-image: url("/images/site/graphic-circle3.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 137%;
  padding-bottom: 108%;
}

.s-graphic-circle4:after {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  background-image: url("/images/site/graphic-circle4.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 150%;
  padding-bottom: 76%;
}

.s-graphic-circle4.is-number:after {
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
  width: 161%;
  padding-bottom: 82%;
}

.s-graphic-circle4--small:after {
  -webkit-transform: translate(-52%, -52%) scale(0.95);
          transform: translate(-52%, -52%) scale(0.95);
  width: 131%;
  padding-bottom: 66%;
}

.s-graphic-scribble-optimal:after,
.s-graphic-scribble-ten-year:after,
.s-graphic-scribble-groentjes:after {
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 45%);
          transform: translate(-50%, 45%);
  z-index: -1;
  background-image: url("/images/site/graphic-scribble.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 105%;
  padding-bottom: 24%;
}

.s-graphic-scribble-new-home:after {
  left: 50%;
  bottom: -0.7em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  background-image: url("/images/site/graphic-scribble.svg");
  background-repeat: no-repeat;
  width: 80%;
  padding-bottom: 23%;
}

.s-graphic-scrap:after {
  left: 50%;
  top: 0.17em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  background-image: url("/images/site/graphic-scrap.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 120%;
  padding-bottom: 16%;
}

.s-graphic-scrap--small:after {
  width: 100%;
  padding-bottom: 13%;
}

.s-graphic-background-line {
  position: absolute;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  top: 25%;
  left: 5%;
  width: 830px;
  height: 205px;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .s-graphic-background-line {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    left: -25%;
    top: 25%;
  }
}

@media screen and (min-width: 1200px) {
  .s-graphic-background-line {
    -webkit-transform: none;
            transform: none;
  }
}

.s-graphic-background-line-2 {
  position: absolute;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  top: -5%;
  left: -5%;
  width: 598px;
  height: 149px;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .s-graphic-background-line-2 {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    left: -20%;
    top: -5%;
  }
}

@media screen and (min-width: 1200px) {
  .s-graphic-background-line-2 {
    left: -20%;
    top: -20%;
    -webkit-transform: none;
            transform: none;
  }
}

.s-graphic-circle2--alt:after {
  -webkit-transform: translate(-45%, -53%);
          transform: translate(-45%, -53%);
}

.s-hero .s-hero__cover {
  z-index: -1;
}

.s-hero .s-hero__overlay {
  height: 100%;
  width: 100%;
}

.s-hero--fill-viewport {
  min-height: calc(100vh - 70px);
}

@media screen and (min-width: 992px) {
  .s-hero--fill-viewport {
    min-height: 100vh;
  }
}

.s-hero__cover--translucent:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  opacity: 0.15;
}

.s-hero__content {
  height: 100%;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.s-hero__content__inner {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-hero__content__text {
  max-width: 40em;
}

.s-hero__cta {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .s-hero__cta .s-hero__cta__button, .s-hero__cta .s-hero__cta__trustpilot {
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

.s-hero__estimate-button {
  margin-right: 3em;
}

.s-hero__scrolldown-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}

.s-hero__scrolldown {
  position: relative;
  margin-bottom: 5vh;
  padding: 0.8em 3.2em 0.8em 1.6em;
  border-radius: 1.6em;
  background: rgba(24, 24, 24, 0.15);
}

@media screen and (max-width: 767px) {
  .s-hero__scrolldown {
    display: none;
  }
}

.s-hero__scrolldown:before {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #FFF transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 1.6em;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
  transition: all 0.1s ease-in-out;
}

.s-hero--default {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 992px) {
  .s-hero--default {
    padding: 5vw 0;
  }
}

@media screen and (min-width: 992px) and (min-height: 600px) {
  .s-hero--default {
    min-height: calc(100vh - 70px - 140px - 5vmax);
  }
}

@media screen and (min-width: 992px) and (min-height: 750px) {
  .s-horizontal-scroller.is-scrolling-horizontal {
    position: absolute;
    top: 0;
  }
}

@media screen and (min-width: 992px) {
  .s-horizontal-scroller.is-scrolling-horizontal.is-bottom {
    top: unset;
    bottom: 0;
  }
}

.s-mapcontainer {
  position: relative;
  padding-bottom: 60%;
}

.s-mapcontainer-2 {
  position: relative;
  padding-bottom: 70%;
}

.s-mapcontainer--loading {
  opacity: 0.3;
}

.s-map {
  background: #e9e9e9;
}

.s-maps__controls {
  display: none;
}

.s-maps__controls__zoom-in, .s-maps__controls__zoom-out {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin-bottom: 5px;
  cursor: pointer;
}

.s-maps__controls__zoom-in:after, .s-maps__controls__zoom-in:before, .s-maps__controls__zoom-out:after, .s-maps__controls__zoom-out:before {
  display: block;
  content: '';
  position: absolute;
  background-color: #e9e9e9;
  top: 50%;
  left: 50%;
}

.s-maps__controls__zoom-in:after, .s-maps__controls__zoom-out:after {
  width: 2px;
  height: 14px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.s-maps__controls__zoom-in:before, .s-maps__controls__zoom-out:before {
  width: 2px;
  height: 14px;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.s-maps__controls__zoom-in:hover:after, .s-maps__controls__zoom-in:hover:before, .s-maps__controls__zoom-out:hover:after, .s-maps__controls__zoom-out:hover:before {
  background-color: #FFF;
}

.s-maps__controls__zoom-out:after {
  display: none;
}

.s-menu__items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-menu__item__link {
  position: relative;
  margin: 0 16px;
  color: #181818;
  white-space: nowrap;
  z-index: 1;
}

@media screen and (min-width: 1200px) {
  .s-menu__item__link {
    margin: 0 34px;
  }
}

.s-menu__item__link:after {
  display: block;
  content: ' ';
  position: absolute;
  -webkit-transform: translate(-5px);
          transform: translate(-5px);
  bottom: 0;
  z-index: -1;
  background-color: #00ff00;
  height: 2px;
  width: 100%;
  opacity: 0;
  transition: all 0.1s ease-in-out;
}

.s-menu__item__link:hover, .s-menu__item__link.is-active {
  color: #181818;
}

.s-menu__item__link:hover:after, .s-menu__item__link.is-active:after {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.s-menu__item__button {
  margin-left: 0.5em;
}

.s-menu__item__link--secondary {
  margin: 0 12px;
}

@media screen and (min-width: 1200px) {
  .s-menu__item__link--secondary {
    margin: 0 22px;
  }
}

.s-menu__item__link--secondary,
.s-menu__item__button--secondary {
  color: #bfbfbf;
}

.s-menu__language {
  margin: 0 16px;
}

@media screen and (min-width: 1200px) {
  .s-menu__language {
    margin: 0 22px;
  }
}

.c-text--white .s-menu__item__link {
  color: #FFF;
}

.s-mobile-menu {
  position: relative;
}

.s-mobile-menu ul {
  list-style: none;
}

.s-mobile-menu:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #e9e9e9;
}

.s-mobile-menu__inner {
  padding: 2em 0;
}

.s-mobile-menu__secondary {
  margin: 0.5rem 0;
}

.s-mobile-navigation {
  height: 0;
  overflow: hidden;
}

.s-mobile-navigation a {
  text-decoration: none;
  color: #000;
  padding: 4px 0px;
}

.s-mobile-navigation ul {
  padding: 30px 0px;
  list-style: none;
}

.s-mobile-menu li {
  line-height: 1.9;
}

.s-mobile-menu li .s-mobile-menu__link {
  line-height: 1;
}

.s-mobile-menu li.active .s-mobile-menu__link:after {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.04em;
  background-color: #181818;
}

.s-mobile-menu__link {
  position: relative;
  color: #181818;
}

.s-mobile-menu__link.is-active:after {
  display: block;
  content: ' ';
  position: absolute;
  left: 0;
  bottom: -3px;
  z-index: -1;
  background-color: #00ff00;
  height: 2px;
  width: 100%;
}

.s-mobile-menu__link--secondary {
  margin: 0 12px;
}

@media screen and (min-width: 1200px) {
  .s-mobile-menu__link--secondary {
    margin: 0 22px;
  }
}

.s-mobile-menu__link--secondary {
  color: #bfbfbf;
}

.s-mobile-menu__item__button {
  margin-top: 0.5em;
}

.s-mobile-menu__languages {
  margin-top: 0.5em;
}

.s-mobile-menu__languages a {
  margin: 0 0.3em;
  color: #bfbfbf;
}

.s-modal-container.is-hidden {
  visibility: hidden;
}

.s-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 9999;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}

.s-modal__window {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 630px;
  min-height: 300px;
  background: #FFF;
  z-index: 9999;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  transition: all 0.15s ease-in-out 0.1s;
  padding: 15px;
}

@media screen and (min-width: 768px) {
  .s-modal__window {
    padding: 4vw;
  }
}

@media screen and (min-width: 992px) {
  .s-modal__window {
    padding: 3vw;
  }
}

@media screen and (min-width: 1600px) {
  .s-modal__window {
    padding: 50px;
  }
}

.s-modal__window:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 72px 11px rgba(0, 0, 0, 0.17);
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.s-modal-container.is-open .s-modal__overlay {
  opacity: 0.6;
}

.s-modal-container.is-open .s-modal__window {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.s-modal__header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-modal__button-close {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.s-modal__button-close:after, .s-modal__button-close:before {
  display: block;
  content: '';
  position: absolute;
  background-color: #181818;
  top: 50%;
  left: 50%;
}

.s-modal__button-close:after {
  width: 2px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.s-modal__button-close:before {
  width: 2px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.s-modal__button-close:hover:after, .s-modal__button-close:hover:before {
  background-color: #000;
}

.s-navbar {
  position: relative;
  height: 50px;
}

@media screen and (min-width: 768px) {
  .s-navbar {
    height: 70px;
  }
}

.s-navbar:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #e9e9e9;
}

.s-navbar__inner {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1600px) {
  .s-navbar--tabs .s-navbar__inner {
    padding-right: 0;
  }
}

.s-navbar__favorites {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-navbar__favorites.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.s-breadcrumbs {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  /* or some value */
}

.s-breadcrumbs a {
  position: relative;
  color: #bfbfbf;
  white-space: nowrap;
}

.s-breadcrumbs a:after {
  content: '\A0\A0/\A0\A0';
  color: #bfbfbf;
}

.s-breadcrumbs a:last-child {
  color: #181818;
}

.s-breadcrumbs a:last-child:after {
  content: '';
}

.s-breadcrumbs a:hover {
  color: #181818;
}

.s-breadcrumbs__inner {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.s-ref {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 60px;
}

.s-ref:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background-color: #e9e9e9;
}

.s-tabs {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.s-tabs:hover .s-tabs__tab a {
  color: #bfbfbf;
}

.s-tabs:hover .s-tabs__tab:hover a {
  color: #181818;
}

.s-tabs__active {
  position: absolute;
  content: '';
  width: 50%;
  height: 100%;
  border-left: solid 1px #e9e9e9;
  border-right: solid 1px #e9e9e9;
  border-bottom: solid 1px #FFF;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}

.s-tabs__active.s-tabs__active--left-loaded {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.s-tabs__active.s-tabs__active--right-loaded {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.s-tabs__active.is-left-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.s-tabs__active.is-right-active {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.s-tabs__tab {
  width: 8em;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .s-tabs__tab {
    width: 12.5em;
  }
}

.s-tabs__tab a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #bfbfbf;
  transition: all 0.2s ease-in-out;
}

.s-tabs__tab.s-tabs__tab--active a {
  color: #181818;
}

/* override styles when printing */
@media print {
  .s-navbar {
    display: none;
  }
}

.s-paging {
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.s-paging__col {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-paging__pages__item {
  margin: 0 0.3em;
}

.s-paging-ellipsis {
  padding: 0 0.3em;
}

.s-properties__header {
  padding-top: 3vw;
  padding-bottom: 3vw;
}

@media screen and (min-width: 768px) {
  .s-properties__header {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.s-search-bar, .s-results-bar {
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.s-search-bar__left, .s-search-bar__right, .s-results-bar__left {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .s-search-bar__reset, .s-search-bar__user-location {
    margin: 0 30px;
  }
}

.s-search-bar__left {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.s-search-bar__row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -0.5em;
}

.s-search-bar__group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .s-search-bar__group {
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    width: auto;
  }
}

.s-search-bar__group > div, .s-search-bar__group > button, .s-search-bar__group > label {
  margin: 0.5em 0.25em;
}

.s-search-bar__checkboxlist {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .s-search-bar__checkboxlist {
    min-height: 50px;
  }
}

@media screen and (min-width: 992px) {
  .s-search-bar__checkboxlist {
    min-height: 60px;
  }
}

.s-search-bar__checkboxlist > div {
  padding: 0 5px;
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
          -webkit-flex-basis: 50%;
          flex-basis: 50%;
}

@media screen and (min-width: 768px) {
  .s-search-bar__checkboxlist > div {
    max-width: none;
    -ms-flex-preferred-size: auto;
            -webkit-flex-basis: auto;
            flex-basis: auto;
  }
}

.s-search-bar__input {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 100%;
          -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .s-search-bar__input {
    -ms-flex-preferred-size: auto;
            -webkit-flex-basis: auto;
            flex-basis: auto;
    max-width: none;
  }
}

@media screen and (min-width: 992px) {
  .s-search-bar__input {
    -webkit-flex-grow: inherit;
        -ms-flex-positive: inherit;
            flex-grow: inherit;
  }
}

@media screen and (min-width: 992px) {
  .s-search-bar__input--last {
    padding-right: 1em;
  }
}

.s-results-bar__right {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-results-bar__button {
  margin-left: 2em;
}

.s-filter-selection {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.s-filter-selection__item {
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2.6em;
  padding: 0 2.5em 0 1.3em;
  border-radius: 1.3em;
  background-color: #FFF;
  margin: 0.2em;
  z-index: 0;
  cursor: pointer;
}

.s-filter-selection__item:after, .s-filter-selection__item:before {
  content: "";
  position: absolute;
  display: block;
  top: 0.9em;
  right: 1.3em;
  width: 2px;
  height: 12px;
  background-color: #bfbfbf;
  z-index: 1;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.s-filter-selection__item:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.s-filter-selection__item:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.s-filter-selection__item:hover:after, .s-filter-selection__item:hover:before {
  background-color: #181818;
}

.s-properties__subscription-bar {
  display: none;
}

@media screen and (min-width: 1100px) {
  .s-properties__subscription-bar {
    display: block;
  }
}

.s-property-grid-container, .s-property-grid-container__no-results {
  min-height: calc(100vh / 2);
}

.s-property-grid-container__no-results {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-property-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -10px;
  padding-bottom: 1vw;
}

@media screen and (min-width: 768px) {
  .s-property-grid {
    margin: -1vw;
  }
}

.s-property-grid__item {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 100%;
          -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%;
  display: block;
  position: relative;
}

@media screen and (min-width: 768px) {
  .s-property-grid__item {
    -ms-flex-preferred-size: 50%;
            -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 1100px) {
  .s-property-grid__item {
    -ms-flex-preferred-size: 33.3333%;
            -webkit-flex-basis: 33.3333%;
            flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}

.s-property-grid__item > .inner {
  height: 100%;
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .s-property-grid__item > .inner {
    padding: 1vw;
  }
}

.s-property-grid__item-transition {
  transition: all 0.3s ease-in-out;
}

.s-property-grid__item-enter, .s-property-grid__item-leave {
  opacity: 0;
  transition: none;
}

.s-property-grid-item {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  height: 100%;
  color: #181818;
}

.s-property-grid-item:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  box-shadow: 0px 0px 40px 3px rgba(0, 0, 0, 0.07);
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.s-property-grid-item .s-image {
  padding-bottom: 70%;
  background: #FFF;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.s-property-grid-item .s-image img {
  opacity: 0;
  -webkit-transform: scale(1.1) translateY(5px);
          transform: scale(1.1) translateY(5px);
  transition: opacity 0.4s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, opacity 0.4s ease-in-out;
  transition: transform 0.2s ease-in-out, opacity 0.4s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.s-property-grid-item .s-image img.lazyloaded {
  opacity: 1;
}

.s-property-grid-item .s-image__placeholder {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s-property-grid-item .s-image__open-house, .s-property-grid-item .s-image__bbg {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s-property-grid-item .s-image__bbg svg {
  display: block;
  width: 120px;
  height: 120px;
}

.s-property-grid-item .s-image__favorite {
  margin: 20px;
  right: 0;
}

.s-property-grid-item .s-image__percentage-sold {
  background-color: #181818;
  color: #FFF;
  top: 15px;
  left: 0;
  padding: 5px 15px;
}

@media screen and (min-width: 768px) {
  .s-property-grid-item .s-image__percentage-sold {
    padding: 5px 1.5vw;
  }
}

.s-property-grid-item .s-caption {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  z-index: 0;
  background: #FFF;
  padding: 15px;
  line-height: 1em;
}

@media screen and (min-width: 768px) {
  .s-property-grid-item .s-caption {
    padding: 1.5vw;
  }
}

.s-property-grid-item .s-caption .c-text, .s-property-grid-item .s-caption .s-property__strengths-list-wrapper ul li, .s-property__strengths-list-wrapper ul .s-property-grid-item .s-caption li, .s-property-grid-item .s-caption .s-blockletters {
  line-height: 20px;
  color: #181818;
}

.s-property-grid-item .s-caption .c-text.s-property-label, .s-property-grid-item .s-caption .s-property__strengths-list-wrapper ul li.s-property-label, .s-property__strengths-list-wrapper ul .s-property-grid-item .s-caption li.s-property-label, .s-property-grid-item .s-caption .s-blockletters.s-property-label {
  color: #181818;
}

.s-property-grid-item .s-caption:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #FFF;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}

.s-property-grid-item .s-caption__content {
  transition: all 0.2s ease-in-out;
}

.s-property-grid-item .s-title, .s-property-grid-item .s-price {
  font-weight: bold;
  white-space: nowrap;
}

.s-property-grid-item:hover:not(.s-property-grid-item--inactive):after {
  opacity: 1;
}

.s-property-grid-item:hover:not(.s-property-grid-item--inactive) .s-image img {
  -webkit-transform: scale(1.1) translateY(0);
          transform: scale(1.1) translateY(0);
}

.s-property-grid-item:hover:not(.s-property-grid-item--inactive) .s-image__favorite {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.s-property-grid-item:hover:not(.s-property-grid-item--inactive) .s-caption__content {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.s-property-grid-item:hover:not(.s-property-grid-item--inactive) .s-caption:after {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.s-property-grid-item--inactive {
  cursor: default;
  color: #bfbfbf;
}

.s-property-grid-item--inactive .s-image {
  opacity: 0.7;
}

.s-property-grid-item--inactive .s-property-label--new:after {
  opacity: 0.3;
}

.s-property-grid-item--inactive .s-caption .c-text, .s-property-grid-item--inactive .s-caption .s-property__strengths-list-wrapper ul li, .s-property__strengths-list-wrapper ul .s-property-grid-item--inactive .s-caption li, .s-property-grid-item--inactive .s-caption .s-blockletters, .s-property-grid-item--inactive .s-caption .s-blockletters.s-property-label {
  color: #bfbfbf;
}

.s-property-grid-item--inactive:after {
  display: none;
}

.s-property-grid-item--inactive:hover .s-image img {
  -webkit-transform: scale(1.1) translateY(5px);
          transform: scale(1.1) translateY(5px);
}

.s-property-grid__item__subscription > .inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 60vw;
  padding: 10vw;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .s-property-grid__item__subscription > .inner {
    min-height: 100%;
    padding: 4vw;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (min-width: 1100px) {
  .s-property-grid__item__subscription {
    display: none;
  }
}

.s-caption__row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-caption__row--top {
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.s-caption__row--bottom {
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.s-caption__col--title {
  -ms-flex-preferred-size: 75%;
          -webkit-flex-basis: 75%;
          flex-basis: 75%;
  max-width: 75%;
}

.s-property-grid__item--placeholder {
  opacity: 0.3;
  pointer-events: none;
}

.s-property-grid__item--placeholder .s-caption__col--title {
  min-height: 5em;
}

.s-property-grid__item--placeholder .s-image__favorite {
  display: none;
}

.s-property-label {
  position: relative;
  z-index: 0;
}

.s-property-label:after {
  display: block;
  content: ' ';
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 25%);
          transform: translate(-50%, 25%);
  bottom: 0;
  z-index: -1;
  background-image: url("/images/site/graphic-scribble.svg");
  background-size: 61px 14px;
  height: 14px;
  width: 61px;
}

.s-property-label--new:after {
  background-image: url("/images/site/graphic-scribble.svg");
}

.s-property-label--option:after {
  background-image: url("/images/site/graphic-scribble-grey.svg");
}

.s-open-house {
  position: relative;
  height: 108px;
  width: 117px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s-open-house:after {
  display: block;
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/images/site/graphic-circle.svg");
  background-size: 117px 108px;
  height: 108px;
  width: 117px;
}

.s-property-maps-item {
  font-family: "Poppins", sans-serif;
  min-height: 350px;
  color: #181818;
}

.s-property-maps-item .s-image {
  width: 275px;
  height: 180px;
}

.s-property-maps-item .s-image__placeholder {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s-property-maps-item .s-caption {
  padding: 25px;
}

.s-property-maps-item .s-title, .s-property-maps-item .s-price {
  font-weight: bold;
  white-space: nowrap;
}

.s-property-maps-item:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 40px 3px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.s-property-maps-item:before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 12px solid #FFF;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .s-image__favorite {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    transition: all 0.3s ease-in-out 0.2s;
  }
}

.s-print__button, .s-add-to-favorites__button {
  width: 46px;
  height: 44px;
  padding: 10px;
  margin: -10px;
}

.s-print__button .icon, .s-add-to-favorites__button .icon {
  width: 26px;
  height: 24px;
}

.s-print__button .icon, .s-add-to-favorites__button .icon {
  transition: opacity 0.2s ease-in-out;
}

.s-print__button .icon.icon--active, .s-add-to-favorites__button .icon.icon--active {
  opacity: 0;
}

.s-print__button:hover .icon--default, .s-add-to-favorites__button:hover .icon--default {
  opacity: 0;
}

.s-print__button:hover .icon--active, .s-add-to-favorites__button:hover .icon--active {
  opacity: 1;
}

.s-add-to-favorites.is-selected {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.s-add-to-favorites.is-selected .s-add-to-favorites__button svg path {
  fill: #00ff00;
}

.s-add-to-favorites.is-selected .s-add-to-favorites__button .icon--default {
  opacity: 0;
}

.s-add-to-favorites.is-selected .s-add-to-favorites__button .icon--active {
  opacity: 1;
}

.s-results-spinner {
  width: 4vw;
  height: 4vw;
  position: relative;
  margin: 100px auto;
}

.s-results-spinner .double-bounce1, .s-results-spinner .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFF;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
          animation: sk-bounce 2.0s infinite ease-in-out;
}

.s-results-spinner .double-bounce2 {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

.s-results-spinner.s-results-spinner--grey .double-bounce1, .s-results-spinner.s-results-spinner--grey .double-bounce2 {
  background-color: #e9e9e9;
}

.s-carousel-spinner {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 0 auto;
}

.s-carousel-spinner .double-bounce1, .s-carousel-spinner .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFF;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
          animation: sk-bounce 2.0s infinite ease-in-out;
}

.s-carousel-spinner .double-bounce2 {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

.s-button-spinner {
  line-height: 0;
  text-align: center;
}

.s-button-spinner > div {
  width: 10px;
  height: 10px;
  background-color: #181818;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.2s infinite ease-in-out both;
          animation: sk-bouncedelay 1.2s infinite ease-in-out both;
}

.s-button-spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}

.s-button-spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}

.s-page-spinner {
  width: 4vw;
  height: 4vw;
  position: relative;
  margin: 100px auto;
}

.s-page-spinner:not(.is-loading) {
  display: none;
}

.s-page-spinner__double-bounce1, .s-page-spinner__double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #bfbfbf;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
          animation: sk-bounce 2.0s infinite ease-in-out;
}

.s-page-spinner__double-bounce2 {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

.s-subscription-bar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-subscription-bar__text {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 50%;
          -webkit-flex-basis: 50%;
          flex-basis: 50%;
  max-width: 50%;
  padding-right: 2em;
}

.s-subscription-bar__text .c-title {
  max-width: 600px;
}

.s-subscription-bar__form {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.s-language-switcher {
  position: relative;
  display: block;
  text-transform: uppercase;
  color: #bfbfbf;
}

.s-language-switcher:before {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: currentColor transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: -0.3em;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
  transition: all 0.1s ease-in-out;
}

.s-language-switcher__trigger {
  padding: 0 0.5em;
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-transform: uppercase;
  color: currentColor;
}

.s-language-switcher__content {
  position: absolute;
  visibility: hidden;
  z-index: 1;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  transition: all 0.16s ease-in-out;
}

.s-language-switcher a {
  color: #FFF;
  text-decoration: none;
  display: block;
  padding: 0 0.5em;
  background: #181818;
  transition: all 0.1s ease-in-out;
}

.s-language-switcher a:hover {
  color: #181818;
  background-color: #00ff00;
}

.s-language-switcher:hover .s-language-switcher__content {
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-clip-path: inset(0 0 0% 0);
          clip-path: inset(0 0 0% 0);
}

.s-language-switcher:hover:before {
  opacity: 0;
}

.s-fixed-notification {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(85.7142857%);
          transform: translateY(-50%) translateX(85.7142857%);
  z-index: 999;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  min-width: 350px;
  width: 350px;
  max-width: 350px;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  display: none;
  color: #000;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 768px) {
  .s-fixed-notification {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.s-fixed-notification--visible {
  -webkit-transform: translateY(-50%) translateX(0%);
          transform: translateY(-50%) translateX(0%);
}

.s-fixed-notification__header {
  background: #00ff00;
  position: relative;
  min-width: 50px;
  -ms-flex-negative: 0;
          -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.s-fixed-notification__header__inner {
  position: absolute;
  white-space: nowrap;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(-1);
          transform: translate(-50%, -50%) scale(-1);
}

.s-fixed-notification__title {
  color: #00ff00;
}

.s-fixed-notification__body {
  background: #000;
  padding: 50px 45px;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-fixed-label {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: translateX(106%) rotate(-90deg);
          transform: translateX(106%) rotate(-90deg);
  z-index: 999;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  color: #000;
  background: #00ff00;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
  display: none;
  padding: 0.45em 1.5em 1em 1.5em;
}

@media screen and (min-width: 768px) {
  .s-fixed-label {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.s-fixed-label:hover {
  -webkit-transform: translateX(100%) rotate(-90deg);
          transform: translateX(100%) rotate(-90deg);
}

@media screen and (max-width: 767px) {
  .s-cta-ten-year .row {
    margin: -1em 0;
  }
  .s-cta-ten-year .row .col {
    padding: 1em 0;
  }
}

.s-gallery {
  position: relative;
  width: 100%;
  margin-bottom: 7%;
}

@media screen and (max-width: 767px) {
  .s-gallery {
    margin-bottom: 10%;
  }
}

.s-gallery--first {
  padding-bottom: 60%;
}

@media screen and (max-width: 767px) {
  .s-gallery--first {
    padding-bottom: 140%;
  }
}

.s-gallery__image1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 24%;
}

@media screen and (max-width: 767px) {
  .s-gallery__image1 {
    top: 0;
    left: 0;
    width: 42%;
  }
}

.s-gallery__image1 .inner {
  padding-bottom: 100%;
}

.s-gallery__image2 {
  position: absolute;
  top: 20%;
  left: 35%;
  right: auto;
  width: 43%;
}

@media screen and (max-width: 767px) {
  .s-gallery__image2 {
    top: 20%;
    left: auto;
    right: 0;
    width: 47%;
  }
}

.s-gallery__image2 .inner {
  padding-bottom: 65%;
}

.s-gallery__image3 {
  position: absolute;
  top: 45%;
  right: 0;
  width: 18%;
}

@media screen and (max-width: 767px) {
  .s-gallery__image3 {
    top: 54%;
    right: 6%;
    width: 34%;
  }
}

.s-gallery__image3 .inner {
  padding-bottom: 140%;
}

.s-gallery__image4 {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 21%;
}

@media screen and (max-width: 767px) {
  .s-gallery__image4 {
    bottom: 31%;
    left: 10%;
    width: 35%;
  }
}

.s-gallery__image4 .inner {
  padding-bottom: 120%;
}

.s-gallery__image5 {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 27%;
  width: 23%;
}

@media screen and (max-width: 767px) {
  .s-gallery__image5 {
    bottom: 0%;
    left: 6%;
    right: auto;
    width: 44%;
  }
}

.s-gallery__image5 .inner {
  padding-bottom: 70%;
}

.s-gallery__curvedarrow {
  position: absolute;
  top: 7%;
  right: 12%;
  width: 6%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .s-gallery__curvedarrow {
    top: 0;
    right: 12%;
    width: 10%;
  }
}

.s-gallery__curvedarrow .inner {
  position: relative;
  padding-bottom: 185%;
}

.s-gallery__curvedarrow .inner:after {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/site/graphic-curvedarrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.s-gallery__first-scribble {
  position: absolute;
  bottom: 39%;
  left: 25%;
  width: 21.5%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .s-gallery__first-scribble {
    bottom: 39%;
    left: 3%;
    width: 34.5%;
  }
}

.s-gallery__first-scribble .inner {
  position: relative;
  padding-bottom: 21%;
}

.s-gallery__first-scribble .inner:after {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/site/graphic-scribble2.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.s-gallery--second {
  padding-bottom: 52%;
}

@media screen and (max-width: 767px) {
  .s-gallery--second {
    padding-bottom: 140%;
  }
}

.s-gallery__image6 {
  position: absolute;
  top: 0;
  left: 7%;
  width: 43%;
}

@media screen and (max-width: 767px) {
  .s-gallery__image6 {
    top: 0;
    left: 0;
    width: 100%;
  }
}

.s-gallery__image6 .inner {
  padding-bottom: 60%;
}

.s-gallery__image6 video {
  width: 100%;
}

.s-gallery__image7 {
  position: absolute;
  top: 0;
  right: 7%;
  width: 26%;
}

@media screen and (max-width: 767px) {
  .s-gallery__image7 {
    top: 49%;
    right: 0;
    width: 45%;
  }
}

.s-gallery__image7 .inner {
  padding-bottom: 80%;
}

.s-gallery__image8 {
  position: absolute;
  bottom: 0;
  top: auto;
  left: 21%;
  width: 22%;
}

@media screen and (max-width: 767px) {
  .s-gallery__image8 {
    bottom: auto;
    top: 61%;
    left: 8%;
    width: 37%;
  }
}

.s-gallery__image8 .inner {
  padding-bottom: 88%;
}

.s-gallery__image9 {
  position: absolute;
  bottom: 17%;
  right: 19%;
  width: 25%;
}

@media screen and (max-width: 767px) {
  .s-gallery__image9 {
    bottom: 0;
    right: 6%;
    width: 35%;
  }
}

.s-gallery__image9 .inner {
  padding-bottom: 70%;
}

.s-gallery__circle {
  position: absolute;
  top: 20%;
  right: 14%;
  width: 14%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .s-gallery__circle {
    top: 63%;
    right: 15%;
    width: 18%;
  }
}

.s-gallery__circle .inner {
  position: relative;
  padding-bottom: 91%;
}

.s-gallery__circle .inner:after {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/site/graphic-circle.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.s-gallery__second-scribble {
  position: absolute;
  bottom: 7%;
  left: 15%;
  width: 19%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .s-gallery__second-scribble {
    bottom: 22%;
    left: 3%;
    width: 30%;
  }
}

.s-gallery__second-scribble .inner {
  position: relative;
  padding-bottom: 24%;
}

.s-gallery__second-scribble .inner:after {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/site/graphic-scribble3.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.s-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  text-align: left;
  z-index: 4000;
}

.s-notification .inner {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.s-notification .btn {
  position: absolute;
  right: 14px;
  left: auto;
  top: 8px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .s-notification .btn {
    left: 50px;
    right: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.s-notification a {
  color: #fff;
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 768px) {
  .s-notification {
    text-align: center;
  }
}

.s-notification--hidden {
  display: none;
}

.s-notifications-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 120px;
}

@media screen and (min-width: 768px) {
  .s-notifications-list {
    height: 70px;
  }
}

.s-notification-item {
  height: 120px;
  padding: 20px 50px 20px 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .s-notification-item {
    display: block;
    height: 70px;
    padding: 20px;
  }
}

.s-notification-item.hidden {
  opacity: 0;
  z-index: -1;
}

#js-close-notification {
  cursor: pointer;
  z-index: 1000;
}

.s-toggleswitch {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  z-index: 0;
  height: 40px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (min-width: 768px) {
  .s-toggleswitch {
    height: 50px;
  }
}

@media screen and (min-width: 992px) {
  .s-toggleswitch {
    height: 60px;
  }
}

.s-toggleswitch input {
  display: none;
}

.s-toggleswitch span {
  height: 38px;
  padding: 0 19px;
  border-radius: 19px;
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1px;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .s-toggleswitch span {
    height: 48px;
    padding: 0 24px;
    border-radius: 24px;
  }
}

@media screen and (min-width: 992px) {
  .s-toggleswitch span {
    height: 58px;
    padding: 0 29px;
    border-radius: 29px;
  }
}

.s-toggleswitch span.residential {
  margin-right: -8px;
}

.s-toggleswitch span.commercial {
  margin-left: -8px;
}

.s-toggleswitch input:not(:checked) + .labels .residential {
  background-color: #00ff00;
}

.s-toggleswitch input:not(:checked) + .labels .commercial {
  background-color: transparent;
  opacity: 0.4;
}

.s-toggleswitch input:checked + .labels .residential {
  background-color: transparent;
  opacity: 0.4;
}

.s-toggleswitch input:checked + .labels .commercial {
  background-color: #00ff00;
}

.s-toggleswitch:after {
  position: absolute;
  display: block;
  content: '';
  background-color: rgba(233, 233, 233, 0.5);
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  border: solid 1px rgba(233, 233, 233, 0.5);
  border-radius: 30px;
}

.s-toggleswitch:hover input + .labels .residential,
.s-toggleswitch:hover input + .labels .commercial {
  opacity: 1;
}

.s-page-404__content {
  min-height: 40vw;
}

.s-bgg-hero__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.s-bbg-logo {
  width: 150px;
  height: 150px;
}

@media screen and (min-width: 768px) {
  .s-bbg-logo {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    margin-top: -70px;
  }
}

.s-bbg-steps__icon {
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.s-article-overview__article {
  border-bottom: solid 1px #4d4d4d;
}

.s-article-overview__article a {
  color: currentColor;
}

@media screen and (min-width: 768px) {
  .s-article-overview__button-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.s-commercial-hero__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.s-commercial-logo {
  width: 250px;
  height: 88px;
  margin-top: -50px;
}

@media screen and (min-width: 768px) {
  .s-commercial-logo {
    width: 500px;
    height: 172px;
    margin: 0 auto;
    margin-top: -30px;
  }
}

.s-contact-list__letter.is-hidden {
  display: none;
}

.s-contact-list__office {
  width: 100%;
}

.s-contact-list__office .row {
  width: 100%;
}

.s-contact-list__office .s-image {
  height: 100%;
  width: 100%;
}

.s-contact-list__office .s-info {
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  box-sizing: border-box;
  border: solid 1px #e9e9e9;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 5vw;
}

@media screen and (min-width: 1600px) {
  .s-contact-list__office .s-info {
    padding: 80px;
  }
}

.s-contact-list__office .s-info .location {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 100%;
          -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%;
  margin-bottom: 1em;
}

@media screen and (min-width: 576px) {
  .s-contact-list__office .s-info .location {
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    margin-bottom: 0;
  }
}

.s-contact-list__office .s-info .buttons {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 100%;
          -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 576px) {
  .s-contact-list__office .s-info .buttons {
    display: block;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
  }
}

.s-contact-list__loader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #FFF;
}

.s-contact-list__loader.is-hidden {
  display: none;
}

.s-office-maps-item {
  position: relative;
  font-family: "Poppins", sans-serif;
  min-height: 350px;
}

.s-office-maps-item .s-image {
  width: 275px;
  height: 180px;
}

.s-office-maps-item .s-caption {
  padding: 25px;
}

.s-office-maps-item .s-title, .s-office-maps-item .s-price {
  font-weight: bold;
  white-space: nowrap;
}

.s-office-maps-item:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 40px 3px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.s-office-maps-item:before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 12px solid #FFF;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.s-opening-hours__day {
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.3em 0;
}

.s-opening-hours {
  max-width: 700px;
}

.s-opening-hours .s-opening-hours__day:not(:last-child) {
  border-bottom: solid 1px #bfbfbf;
}

.s-office__contact-info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .s-office__contact-info {
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.s-office__image .s-image {
  padding-bottom: 70%;
}

.s-card-expert {
  height: 100%;
  background-color: #FFF;
}

@media screen and (min-width: 768px) {
  .s-card-expert {
    min-height: 350px;
  }
}

@media screen and (min-width: 992px) {
  .s-card-expert {
    min-height: 400px;
  }
}

.s-card-expert .s-image {
  width: 35%;
}

.s-card-expert .s-info {
  padding: 5vw;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .s-card-expert .s-info {
    padding: 5vw 20px;
  }
}

@media screen and (min-width: 992px) {
  .s-card-expert .s-info {
    padding: 2.5vw 20px;
  }
}

.s-faq {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 992px) {
  .s-faq {
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 992px) {
  .s-faq__categories {
    min-width: 12em;
    -ms-flex-preferred-size: 12em;
            -webkit-flex-basis: 12em;
            flex-basis: 12em;
  }
}

.s-faq__categories__nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.s-faq__categories__nav a {
  padding: 0.3em 1.5em;
  color: #bfbfbf;
  border-left: 1px solid currentColor;
}

.s-faq__categories__nav a:hover {
  color: #181818;
  border-left: 1px solid #00ff00;
}

.s-faq__list {
  width: 100%;
}

.s-trustpilot__logo,
.s-trustpilot__score,
.s-trustpilot__stars {
  height: 30px;
}

.s-trustpilot__logo > img,
.s-trustpilot__score > img,
.s-trustpilot__stars > img {
  height: 100%;
  width: auto;
}

.s-trustpilot__logo.right > img,
.s-trustpilot__score.right > img,
.s-trustpilot__stars.right > img {
  margin-left: auto;
}

.s-home-intro-frame {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .s-home-intro-frame {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 992px) {
  .s-home-intro-frame {
    margin-bottom: 40px;
  }
}

.s-home-intro-frame__inner {
  position: relative;
}

.s-home-intro-frame__inner:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #e9e9e9;
  padding: 0 5vw;
  margin: 60px -20px -20px;
}

@media screen and (min-width: 768px) {
  .s-home-intro-frame__inner:after {
    margin: 80px -5vw -40px;
  }
}

@media screen and (min-width: 992px) {
  .s-home-intro-frame__inner:after {
    margin: 110px -5vw -40px;
  }
}

@media screen and (min-width: 1400px) {
  .s-home-intro-frame__inner:after {
    margin: 75px -5vw 75px;
  }
}

.s-home-testimonials-frame {
  margin: -27px -20px 0;
  padding: 27px 20px;
}

@media screen and (min-width: 768px) {
  .s-home-testimonials-frame {
    margin: -27px -5vw 0;
    padding: 27px 5vw;
  }
}

.s-home-sell-usps__header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1380px;
}

@media screen and (min-width: 576px) {
  .s-home-sell-usps__header {
    max-width: calc(100vw - (30px * 4));
  }
}

@media screen and (min-width: 768px) {
  .s-home-sell-usps__header {
    max-width: calc(100vw - (40px * 4));
  }
}

@media screen and (min-width: 992px) {
  .s-home-sell-usps__header {
    max-width: calc(100vw - (50px * 4));
  }
}

@media screen and (min-width: 1200px) {
  .s-home-sell-usps__header {
    max-width: calc(100vw - (70px * 4));
  }
}

@media screen and (min-width: 1400px) {
  .s-home-sell-usps__header {
    max-width: calc( 1400px - (70px * 4));
  }
}

.s-home-sell-usps__title {
  max-width: 11em;
}

@media screen and (min-width: 768px) {
  .s-home-sell-usps__title {
    margin-right: 2em;
  }
}

.s-home-sell-usps__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -8vw;
}

@media screen and (min-width: 768px) {
  .s-home-sell-usps__list {
    margin: -3vw;
  }
}

@media screen and (min-width: 992px) {
  .s-home-sell-usps__list {
    margin: -3vw;
    /*@media (min-height: 750px) {
            margin: 0;
            flex-wrap: nowrap;
        }*/
  }
}

.s-home-sell-usps__usp {
  -ms-flex-preferred-size: 100%;
          -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%;
  padding: 8vw;
}

@media screen and (min-width: 768px) {
  .s-home-sell-usps__usp {
    -ms-flex-preferred-size: 50%;
            -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
    padding: 3vw;
  }
}

@media screen and (min-width: 992px) {
  .s-home-sell-usps__usp {
    -ms-flex-preferred-size: 50%;
            -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
    padding: 3vw;
    /*@media (min-height: 750px) {
            width: 25vw;
            padding: 0;
            flex-basis: auto;
            max-width: unset;
            &:not(:last-of-type) {
                margin-right: 10vw;
            }
        }*/
  }
}

@media screen and (min-width: 1200px) {
  .s-home-sell-usps__usp {
    -ms-flex-preferred-size: 33.333%;
            -webkit-flex-basis: 33.333%;
            flex-basis: 33.333%;
    max-width: 33.333%;
    padding: 3vw;
  }
}

@media screen and (min-width: 992px) {
  .is-scrolling-horizontal .s-home-sell-usps__list {
    margin: 0;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}

@media screen and (min-width: 992px) {
  .is-scrolling-horizontal .s-home-sell-usps__usp {
    width: 25vw;
    padding: 0;
    -ms-flex-preferred-size: auto;
            -webkit-flex-basis: auto;
            flex-basis: auto;
    max-width: unset;
  }
  .is-scrolling-horizontal .s-home-sell-usps__usp:not(:last-of-type) {
    margin-right: 10vw;
  }
}

.s-home-sell-step-arrow {
  top: 1.7vw;
  right: 1vw;
}

@media screen and (max-width: 991px) {
  .s-home-sell-step-arrow {
    -webkit-transform: translateX(15%) scale(0.5);
            transform: translateX(15%) scale(0.5);
  }
}

.s-home-commercial-real-estate .row {
  margin: -6vw;
}

@media screen and (min-width: 576px) {
  .s-home-commercial-real-estate .row {
    margin: 0;
  }
}

@media screen and (min-width: 992px) {
  .s-home-commercial-real-estate .row {
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.s-home-commercial-real-estate .row > .col {
  padding: 6vw;
}

@media screen and (min-width: 576px) {
  .s-home-commercial-real-estate .row > .col {
    padding: 0;
  }
}

@media screen and (min-width: 576px) {
  .s-home-commercial-real-estate .row .col:first-child {
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

.s-job-overview__job {
  border-bottom: solid 1px #4d4d4d;
}

.s-job-overview__job a {
  color: currentColor;
}

@media screen and (min-width: 768px) {
  .s-job-overview__button-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.s-property__ffp-logo {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.s-property__ffp-logo .s-property-ffp-logo {
  display: block;
  height: 47px;
}

@media screen and (min-width: 992px) {
  .s-property__ffp-logo .s-property-ffp-logo {
    height: 70px;
  }
}

.s-property__ffp-logo .s-property-ffp-logo svg {
  display: block;
  width: auto;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .s-property__intro.row {
    margin: -2vw;
  }
  .s-property__intro.row > .col {
    padding: 2vw;
  }
}

.s-property__intro .col--icon {
  -ms-flex-preferred-size: 36px;
          -webkit-flex-basis: 36px;
          flex-basis: 36px;
  max-width: 36px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 991px) {
  .s-property__intro__carousel {
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
}

.s-property__intro__carousel img:not(.not-lazy) {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.s-property__intro__carousel img:not(.not-lazy).swiper-lazy-loaded {
  opacity: 1;
}

.s-property__intro__carousel .s-image__placeholder {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s-property__summary {
  height: 100%;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.s-property__price {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.s-property__price .value {
  margin-right: 0.15em;
}

.s-property__price .valuta {
  line-height: 1;
}

@media screen and (min-width: 576px) {
  .s-property__price .valuta {
    line-height: 1.1;
  }
}

@media screen and (min-width: 1200px) {
  .s-property__price .valuta {
    line-height: 1.2;
  }
}

.s-property__summary__table {
  margin-left: 1px;
}

.s-property__summary__table .col .inner {
  min-height: 40px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px #4d4d4d;
  margin-top: -1px;
  margin-left: -1px;
  text-align: center;
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .s-property__summary__table .col .inner {
    min-height: 50px;
  }
}

@media screen and (min-width: 992px) {
  .s-property__summary__table .col .inner {
    min-height: 60px;
  }
}

@media screen and (min-width: 992px) {
  .s-property__expert {
    padding: 10px 0;
  }
}

.s-property__expert .image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 2rem;
  background-color: #FFF;
}

.s-property__expert .info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s-property__expert .info .expert-title {
  margin-bottom: 1.5em;
}

.s-property__expert .info .expert-name {
  line-height: 1em;
  margin-bottom: 0.5em;
}

.s-property--bbg-scroll-to {
  position: relative;
  color: currentColor;
  cursor: pointer;
}

.s-property--bbg-scroll-to:before {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  margin-left: 1em;
  margin-right: 0.2em;
  margin-bottom: 1px;
  transition: all 0.1s ease-in-out;
  right: -1em;
}

.s-property__strengths-list-wrapper ul li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 0.6em 0;
}

@media screen and (min-width: 768px) {
  .s-property__strengths-list-wrapper ul li {
    padding: 0.9em 0;
  }
}

@media screen and (min-width: 992px) {
  .s-property__strengths-list-wrapper ul li {
    padding: 1.2em 0;
  }
}

.s-property__strengths-list-wrapper ul li:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #bfbfbf;
}

.s-property__specification {
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6em 0;
}

@media screen and (min-width: 768px) {
  .s-property__specification {
    padding: 0.9em 0;
  }
}

@media screen and (min-width: 992px) {
  .s-property__specification {
    padding: 1.2em 0;
  }
}

.s-property__specification .label {
  -ms-flex-preferred-size: 55%;
          -webkit-flex-basis: 55%;
          flex-basis: 55%;
  max-width: 55%;
  padding-right: 10px;
}

.s-property__specification .value {
  -ms-flex-preferred-size: 45%;
          -webkit-flex-basis: 45%;
          flex-basis: 45%;
  max-width: 45%;
  text-align: right;
}

.s-property__specification:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #bfbfbf;
}

.s-property__specifications-list--dark .s-property__specification:after {
  background-color: #4d4d4d;
}

.s-property__specifications-table.row {
  margin: 0 -2vw;
}

.s-property__specifications-table.row .col {
  padding: 0 2vw;
}

@media screen and (min-width: 768px) {
  .s-property__specifications-list {
    -webkit-column-gap: 4vw;
            column-gap: 4vw;
  }
  .s-property__specifications-list.s-property__specifications-list--2-cols {
    -webkit-column-count: 2;
            column-count: 2;
  }
  .s-property__specifications-list.s-property__specifications-list--3-cols {
    -webkit-column-count: 2;
            column-count: 2;
  }
}

@media screen and (min-width: 768px) and (min-width: 992px) {
  .s-property__specifications-list.s-property__specifications-list--3-cols {
    -webkit-column-count: 3;
            column-count: 3;
  }
}

.s-property__specification-list-wrapper ul li,
.s-property__specification {
  -webkit-column-break-inside: avoid;
          break-inside: avoid;
}

.s-property__technical-info,
.s-property__urbanism-info {
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 600px;
  padding: 0.5em 0;
}

.s-property__technical-info .label,
.s-property__urbanism-info .label {
  padding-right: 10px;
}

.s-property__technical-info .value,
.s-property__urbanism-info .value {
  text-align: right;
}

.s-property__technical-info.s-property__urbanism-info,
.s-property__urbanism-info.s-property__urbanism-info {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .s-property__technical-info.s-property__urbanism-info .label,
  .s-property__technical-info.s-property__urbanism-info .value,
  .s-property__urbanism-info.s-property__urbanism-info .label,
  .s-property__urbanism-info.s-property__urbanism-info .value {
    -ms-flex-preferred-size: 100%;
            -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .s-property__technical-info.s-property__urbanism-info .value,
  .s-property__urbanism-info.s-property__urbanism-info .value {
    text-align: left;
  }
}

.s-property__specifications-table,
.s-property__specifications-list,
.s-property__technical-info {
  word-wrap: break-word;
}

.s-property__epc {
  background: #1e9600;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #1e9600, #fff200, #ff0000);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  height: 8px;
  width: 100%;
  margin: 1em 0;
  border: solid 1px #e9e9e9;
}

.s-property__epc .s-property__epc__scrubber {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  top: -2px;
  left: 0;
  background: #FFF;
  border: solid 1px #4d4d4d;
}

.s-property__cta-block {
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #00ff00;
  height: 100%;
  padding: 5vw;
}

@media screen and (min-width: 1600px) {
  .s-property__cta-block {
    padding: 80px;
  }
}

.s-property__units table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.s-property__units table tbody tr {
  border-bottom: 1px solid #4d4d4d;
}

.s-property__units table tbody tr.inactive {
  color: #7d7d7d;
}

.s-property__units table tr td {
  padding: 1em 0.5em 1em 0;
}

.s-property__units table tr td:first-child {
  font-weight: bold;
}

.s-property__units table tr td:last-child {
  text-align: right;
  font-weight: bold;
}

.s-property__units table thead tr {
  border-bottom: 0;
  color: #7d7d7d;
}

@media screen and (max-width: 767px) {
  .s-property__units table {
    border: 0;
  }
  .s-property__units table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .s-property__units table tbody tr {
    border: none;
    display: block;
    margin-bottom: 3em;
    border-bottom: none;
  }
  .s-property__units table tr td {
    border-bottom: 1px solid #4d4d4d;
    display: block;
    text-align: right;
    padding: 0.7em 0;
  }
  .s-property__units table tr td:last-child {
    border-bottom: none;
  }
  .s-property__units table td::before {
    /*
            * aria-label has no advantage, it won't be read inside a table
            content: attr(aria-label);
            */
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }
  .s-property__units table td:last-child {
    border-bottom: 0;
  }
}

/* override styles when printing */
@media print {
  .s-property__intro__summary,
  .s-property__intro__carousel {
    max-width: 600px !important;
  }
  .s-property__intro__carousel {
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .s-property__intro__carousel img {
    width: 100% !important;
    height: 100% !important;
  }
  .s-property__description {
    max-width: 640px;
  }
  .s-swiper-buttons {
    display: none;
  }
  .swiper-wrapper {
    -webkit-transform: none !important;
            transform: none !important;
  }
  .swiper-slide {
    max-width: 600px !important;
    display: none !important;
  }
  .swiper-slide.swiper-slide-active {
    display: block !important;
  }
  .s-property__strengths-list-wrapper ul li,
  .s-property__specification,
  .s-property__technical-info,
  .s-property__urbanism-info {
    padding: 3px 0;
    max-width: 600px;
    border-bottom: solid 1px #000;
  }
  .s-property__strengths-list-wrapper ul li:after,
  .s-property__specification:after,
  .s-property__technical-info:after,
  .s-property__urbanism-info:after {
    display: none;
  }
  .s-button,
  .s-print,
  .s-add-to-favorites,
  .s-property__share,
  .s-property__epc,
  .s-property__related {
    display: none;
  }
}

.s-property-contact__summary {
  width: 100%;
}

.s-property-contact__summary .row {
  width: 100%;
}

.s-property-contact__summary .s-image {
  height: 100%;
  width: 100%;
  min-height: 50vw;
}

@media screen and (min-width: 768px) {
  .s-property-contact__summary .s-image {
    min-height: auto;
  }
}

.s-property-contact__summary .s-info {
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  box-sizing: border-box;
  border: solid 1px #e9e9e9;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 5vw;
}

@media screen and (min-width: 1600px) {
  .s-property-contact__summary .s-info {
    padding: 80px;
  }
}

.s-property-contact__summary .s-info .location {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 100%;
          -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 576px) {
  .s-property-contact__summary .s-info .location {
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .s-property-contact__summary .s-info .location {
    min-height: 100px;
  }
}

.s-property-contact__summary .s-info .buttons {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 100%;
          -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 576px) {
  .s-property-contact__summary .s-info .buttons {
    display: block;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
  }
}

.s-ten-year-hero__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.s-ten-year-logo {
  width: 80vw;
  height: 80vw;
  margin: -15vw auto 0 auto;
}

@media screen and (min-width: 768px) {
  .s-ten-year-logo {
    width: 40vw;
    height: 40vw;
    margin: -5vw auto 0 auto;
  }
}

@media screen and (min-width: 992px) {
  .s-ten-years-frame {
    margin-top: 7rem;
  }
}

.s-ten-years-frame__subtitle {
  margin-bottom: 0.3em;
}

.s-ten-years-frame__bg {
  margin: 0 -20px;
}

@media screen and (min-width: 768px) {
  .s-ten-years-frame__bg {
    margin: 0 -5vw;
  }
}

@media screen and (min-width: 992px) {
  .s-ten-years-frame__bg {
    margin: 0 -5vw;
  }
}

@media screen and (min-width: 1400px) {
  .s-ten-years-frame__bg {
    margin: 0 -5vw;
  }
}

.s-ten-years__row.row {
  margin: -1em;
}

.s-ten-years__row.row .col {
  padding: 1em;
}

@media screen and (min-width: 992px) {
  .s-ten-years__row.row {
    margin: 0 -50px;
  }
  .s-ten-years__row.row .col {
    padding: 0 50px;
  }
}

.s-ten-years-frame__video-column {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.s-ten-years-frame__video-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-color: #bfbfbf;
  margin-bottom: 2em;
}

@media screen and (min-width: 992px) {
  .s-ten-years-frame__video-wrapper {
    position: absolute;
    bottom: 7rem;
    margin-bottom: 0;
  }
}

.s-ten-years-frame__video {
  width: 100%;
}

.s-ten-years__actions table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.s-ten-years__actions table tr {
  border-bottom: 1px solid #ddd;
  padding: .35em;
}

.s-ten-years__actions table th,
.s-ten-years__actions table td {
  padding: 1em 0;
}

.s-ten-years__actions table th:first-child,
.s-ten-years__actions table td:first-child {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .s-ten-years__actions table {
    border: 0;
  }
  .s-ten-years__actions table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .s-ten-years__actions table tr {
    border-bottom: 1px solid #000;
    display: block;
    margin-bottom: 2em;
  }
  .s-ten-years__actions table td {
    border-bottom: 1px solid #ddd;
    display: block;
    text-align: right;
    min-height: 2em;
  }
  .s-ten-years__actions table td.empty {
    display: none;
  }
  .s-ten-years__actions table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }
  .s-ten-years__actions table td:last-child {
    border-bottom: 0;
  }
  .s-ten-years__actions table th:first-child,
  .s-ten-years__actions table td:first-child {
    width: auto;
  }
}

/*# sourceMappingURL=app.css.map*/