/* Minification failed. Returning unminified contents.
(6304,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6305,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6307,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6308,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6347,20): run-time error CSS1039: Token not allowed after unary operator: '-m2-red'
(6379,26): run-time error CSS1039: Token not allowed after unary operator: '-m2-dark-gray'
(6383,15): run-time error CSS1039: Token not allowed after unary operator: '-m2-text-color'
(6387,20): run-time error CSS1039: Token not allowed after unary operator: '-m2-dark-gray'
(6391,33): run-time error CSS1039: Token not allowed after unary operator: '-m2-dark-gray'
(6417,15): run-time error CSS1039: Token not allowed after unary operator: '-m2-text-color'
(6437,15): run-time error CSS1039: Token not allowed after unary operator: '-m2-text-color'
(6468,15): run-time error CSS1039: Token not allowed after unary operator: '-m2-text-color'
(6471,26): run-time error CSS1039: Token not allowed after unary operator: '-m2-dark-gray'
(6480,20): run-time error CSS1039: Token not allowed after unary operator: '-m2-red'
(6488,15): run-time error CSS1039: Token not allowed after unary operator: '-m2-red'
(6500,15): run-time error CSS1039: Token not allowed after unary operator: '-m2-red'
(6513,17): run-time error CSS1039: Token not allowed after unary operator: '-m2-red'
(6536,22): run-time error CSS1039: Token not allowed after unary operator: '-m2-red'
(6556,17): run-time error CSS1039: Token not allowed after unary operator: '-m2-text-color'
(6563,17): run-time error CSS1039: Token not allowed after unary operator: '-m2-text-color'
(6569,22): run-time error CSS1039: Token not allowed after unary operator: '-m2-red'
(6583,22): run-time error CSS1039: Token not allowed after unary operator: '-m2-light-blue'
(6589,17): run-time error CSS1039: Token not allowed after unary operator: '-m2-red'
(6616,17): run-time error CSS1039: Token not allowed after unary operator: '-m2-red'
(6623,17): run-time error CSS1039: Token not allowed after unary operator: '-m2-red'
(6653,17): run-time error CSS1039: Token not allowed after unary operator: '-m2-red'
 */
/* Buttons */

.btn {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 70px;
  padding: 14px 25px;
  transition: background-color 300ms ease-out;
  cursor: pointer;
}
@media (min-width: 992px) {
  .btn {
    font-size: 20px;
    padding: 20px 30px;
  }
}
.btn-primary {
  color: #ffffff;
  background-color: #ef404a;
}
.btn-primary:focus,
.btn-primary:hover {
  outline: none;
  text-decoration: none;
  color: #ffffff;
  background-color: #e91320;
}
.btn-secondary {
  color: #ffffff;
  text-transform: none;
  font-weight: normal;
}
.btn-secondary:focus,
.btn-secondary:hover {
  outline: none;
  text-decoration: none;
  color: #ffffff;
}
.btn-light {
  color: #ef404a;
  background-color: #ffffff;
}
.btn-light:focus,
.btn-light:hover {
  text-decoration: none;
  color: #ef404a;
  background-color: #e6e6e6;
  outline: none;
}
.btn-light.btn-loupe::after {
  content: url('/images/loupe-red.svg');
}
.btn-light-outline {
  color: #ef404a;
  background-color: #ffffff;
  border: 1px solid #ef404a;
}
.btn-light-outline:focus,
.btn-light-outline:hover {
  text-decoration: none;
  color: #ef404a;
  background-color: #e6e6e6;
  border: 1px solid #ef404a;
  outline: none;
}
.btn-light-outline.btn-loupe::after {
  content: url('/images/loupe-red.svg');
}
.btn-loupe {
  display: inline-flex;
  align-items: center;
  padding: 15px 25px;
}
@media (min-width: 992px) {
  .btn-loupe {
    padding: 19px 30px;
  }
}
.btn-loupe::after {
  display: inline-block;
  content: url('/images/loupe.svg');
  margin-left: 45px;
  transform: translateY(2px) scale(0.65);
}
@media (min-width: 992px) {
  .btn-loupe::after {
    margin-left: 60px;
    transform: translateY(5px);
    margin-top: -5px;
  }
}
@media (min-width: 992px) {
  .btn-loupe:hover::after {
    animation-name: zoom-in-out-button-icon;
    animation-duration: 1s;
  }
}
@keyframes zoom-in-out-button-icon {
  0% {
    transform: translateY(5px) scale(1);
  }
  50% {
    transform: translateY(5px) scale(1.2);
  }
  100% {
    transform: translateY(5px) scale(1);
  }
}
.btn-loupe[target="_blank"] {
  padding: 15px 25px;
}
@media (min-width: 992px) {
  .btn-loupe[target="_blank"] {
    padding: 19px 30px;
  }
}
.btn-loupe[target="_blank"] > .fa {
  display: none;
}
.btn-loupe[target="_blank"]::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  transform: translateY(0) scale(0.65);
}
@media (min-width: 992px) {
  .btn-loupe[target="_blank"]::after {
    transform: translateY(0);
  }
}
@media (min-width: 992px) {
  .btn-loupe[target="_blank"]:hover::after {
    animation-name: zoom-in-out-button-icon-external;
    animation-duration: 1s;
  }
}
@keyframes zoom-in-out-button-icon-external {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(0) scale(1.2);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.btn-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 5px;
}
/* Core */

html {
  overflow-x: hidden;
}
@media (min-width: 992px) {
  html {
    overflow-x: visible;
  }
}
body {
  opacity: 1 !important;
  /* FOUC */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body.no-scroll {
  overflow-y: hidden;
}
img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
img[data-src],
img[data-srcset] {
  display: block;
  min-height: 1px;
  margin: 0 auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 30px;
}
p {
  line-height: 1.2;
}
a {
  color: #ef404a;
  background-color: transparent;
  text-decoration: none;
}
a:focus,
a:hover {
  text-decoration: underline;
  color: #ef404a;
}
main a {
  text-decoration: underline;
}
.container .container {
  padding-left: 0;
  padding-right: 0;
}
ol {
  list-style: none;
  counter-reset: item;
  margin-left: 0;
  padding-left: 0;
}
ol li::before {
  display: inline-block;
  content: counter(item) ". ";
  counter-increment: item;
  letter-spacing: 1px;
  width: 22px;
  margin-left: -22px;
}
table {
  width: 100%;
  table-layout: fixed;
}
table th {
  font-size: 15px;
  text-align: center;
  color: #ffffff;
  background-color: #605f5f;
  padding: 15px 5px;
}
@media (min-width: 992px) {
  table th {
    font-size: 30px;
    padding: 33px 10px;
  }
}
table td {
  font-size: 15px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 25px 5px;
  word-break: break-word;
}
@media (min-width: 992px) {
  table td {
    font-size: 20px;
    padding: 50px 5px;
  }
}
table tr:first-child td,
table tr:first-child th {
  border-top: 0;
}
table tr:last-child td,
table tr:last-child th {
  border-bottom: 0;
}
table tr:last-child td::after,
table tr:last-child th::after {
  display: none;
}
table tr td:first-child,
table tr th:first-child {
  border-left: 0;
}
table tr td:last-child,
table tr th:last-child {
  border-right: 0;
}
table .empty-table {
  background-color: transparent;
}
table .featured-table-column {
  position: relative;
  font-size: 15px;
  text-align: left;
  border: 0;
  background-color: #f7f7f7;
  padding: 20px 5px 20px 15px;
}
@media (min-width: 992px) {
  table .featured-table-column {
    font-size: 30px;
    padding: 40px 5px 40px 60px;
  }
}
table .featured-table-column + td,
table .featured-table-column + th {
  border-left: 0;
}
table .featured-table-column::after {
  position: absolute;
  content: '';
  background-color: rgba(0, 0, 0, 0.2);
  left: 15px;
  right: 0;
  height: 1px;
  bottom: -1px;
  z-index: 1;
}
@media (min-width: 992px) {
  table .featured-table-column::after {
    left: 60px;
  }
}
.fa.fa-external-link-alt {
  font-size: 14px;
  padding-left: 10px;
}
i.stars.fa {
  font-size: 11px;
  padding: 0 1px;
}
/* 3 preloaders */

.loading-overlay {
  display: none;
  background: #c0c0c0 url('/images/loader-gray.gif') center center no-repeat;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.75;
  z-index: 99999999;
}
.personalization-preloader {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 128px;
  background: url('/images/loader-white.gif') center center no-repeat;
}
.navigation-packages-preloader {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 128px;
  background: url('/images/loader-gray-dark.gif') center center no-repeat;
}
.page-like.far {
  cursor: pointer;
}
/* Ajax */

.personalization-results {
  position: relative;
  overflow: hidden;
}
.ajax-error {
  text-align: center;
}
/* floater*/

.floater {
  position: fixed;
  right: 0;
  bottom: 20%;
  width: 250px;
  z-index: 9999;
}
.floater__img {
  width: 100%;
  height: auto;
}
@media (max-width: 800px) {
  .floater {
    width: 150px;
  }
}
@media (max-width: 400px) {
  .floater {
    bottom: 10%;
    width: 100px;
  }
}
/* banner */

.p-banner .video-background-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}
.p-banner .video-background-controls button {
  font-size: 32px;
  display: inline-block;
  padding: 0px;
  margin: 0px;
  height: 32px;
  width: 32px;
  border-radius: 16px;
  line-height: 32px;
  border: none;
  background: none;
  -webkit-appearance: none;
  color: white;
  filter: drop-shadow(0px 0px 1px black);
  cursor: pointer;
  opacity: 1;
  transition: all 250ms ease-in-out;
  margin-left: 10px;
}
.header--has-teaser .video-background-controls {
  bottom: 160px;
  right: 10px;
}
.p-banner .video-background-controls button:hover {
  opacity: 0.5;
}
.p-banner iframe.ytbg {
  transition: opacity 500ms ease-in-out;
  transition-delay: 250ms;
}
@media only screen and (min-width: 992px) {
  .hidden-desktop {
    display: none !important;
  }
}
@media only screen and (max-width: 992px) {
  .hidden-mobile {
    display: none !important;
  }
}
.mt-3 {
  margin-top: 2rem !important;
}
@font-face {
  font-family: 'Campton';
  src: local('Campton'), url('/styles/fonts/campton-light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: local('Campton'), url('/styles/fonts/campton-book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: local('Campton'), url('/styles/fonts/campton-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Helpers */

.hidden {
  display: none !important;
}
/* Object fit fallback for IE. */

.object-fit-ie {
  background-size: cover;
  background-position: center center;
}
.object-fit-ie > img {
  opacity: 0;
}
/* List with red dots */

.list {
  list-style: none;
  padding-left: 33px;
}
@media (min-width: 992px) {
  .list {
    padding-left: 70px;
  }
}
.list--load-more .list__item {
  display: none;
}
.list li {
  position: relative;
  line-height: 1.2;
  padding-left: 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .list li {
    padding-left: 10px;
    margin-bottom: 30px;
  }
}
.list li::before {
  position: absolute;
  content: '';
  background-color: #ef404a;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  left: -33px;
  top: 1px;
}
@media (min-width: 992px) {
  .list li::before {
    width: 22px;
    height: 22px;
    left: -33px;
  }
}
.list .list {
  padding-left: 20px;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .list .list {
    margin-top: 25px;
  }
}
.list .list li {
  margin-bottom: 10px;
  padding-left: 10px;
}
@media (min-width: 992px) {
  .list .list li {
    padding-left: 0;
  }
}
.list .list li::before {
  width: 14px;
  height: 14px;
  left: -20px;
  top: 3px;
}
/* Featured content box */

.featured-content {
  border-left: 16px solid #ef404a;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 35px 45px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .featured-content {
    padding: 50px 90px;
  }
}
@media (min-width: 992px) {
  .out-of-container-right {
    position: relative;
    width: calc(50vw - 15px);
    right: 0;
    margin-right: -50vw;
  }
}
@media (min-width: 992px) {
  .out-of-container-left {
    margin-left: calc(-100vw / 2 + 960px / 2 - 15px);
  }
}
@media (min-width: 1200px) {
  .out-of-container-left {
    margin-left: calc(-100vw / 2 + 1140px / 2 - 15px);
  }
}
@media (min-width: 1800px) {
  .out-of-container-left {
    margin-left: calc(-100vw / 2 + 1670px / 2 - 15px);
  }
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.sticky--accommodation {
  top: 88px;
  margin-top: -30px;
  margin-bottom: 30px;
}
/* Works only on .container class */

.container.mobile-edge-to-edge {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 576px) {
  .container.mobile-edge-to-edge {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
/* Fix for IE 11 */

.flex-container {
  display: flex;
  flex-direction: column;
}
.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 500ms ease-out, transform 500ms ease-out 500ms;
  transition-delay: 200ms;
}
.js-fade--active {
  opacity: 1;
  transform: translateY(0);
}
/* Mixins */

.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.mb-100 {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .mb-100 {
    margin-bottom: 100px;
  }
}
.mt-100 {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .mt-100 {
    margin-top: 100px;
  }
}
.mb-95 {
  margin-bottom: 38px;
}
@media (min-width: 992px) {
  .mb-95 {
    margin-bottom: 95px;
  }
}
.mt-95 {
  margin-top: 38px;
}
@media (min-width: 992px) {
  .mt-95 {
    margin-top: 95px;
  }
}
.mb-90 {
  margin-bottom: 36px;
}
@media (min-width: 992px) {
  .mb-90 {
    margin-bottom: 90px;
  }
}
.mt-90 {
  margin-top: 36px;
}
@media (min-width: 992px) {
  .mt-90 {
    margin-top: 90px;
  }
}
.mb-85 {
  margin-bottom: 34px;
}
@media (min-width: 992px) {
  .mb-85 {
    margin-bottom: 85px;
  }
}
.mt-85 {
  margin-top: 34px;
}
@media (min-width: 992px) {
  .mt-85 {
    margin-top: 85px;
  }
}
.mb-80 {
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .mb-80 {
    margin-bottom: 80px;
  }
}
.mt-80 {
  margin-top: 32px;
}
@media (min-width: 992px) {
  .mt-80 {
    margin-top: 80px;
  }
}
.mb-75 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mb-75 {
    margin-bottom: 75px;
  }
}
.mt-75 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .mt-75 {
    margin-top: 75px;
  }
}
.mb-70 {
  margin-bottom: 28px;
}
@media (min-width: 992px) {
  .mb-70 {
    margin-bottom: 70px;
  }
}
.mt-70 {
  margin-top: 28px;
}
@media (min-width: 992px) {
  .mt-70 {
    margin-top: 70px;
  }
}
.mb-65 {
  margin-bottom: 26px;
}
@media (min-width: 992px) {
  .mb-65 {
    margin-bottom: 65px;
  }
}
.mt-65 {
  margin-top: 26px;
}
@media (min-width: 992px) {
  .mt-65 {
    margin-top: 65px;
  }
}
.mb-60 {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .mb-60 {
    margin-bottom: 60px;
  }
}
.mt-60 {
  margin-top: 24px;
}
@media (min-width: 992px) {
  .mt-60 {
    margin-top: 60px;
  }
}
.mb-55 {
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .mb-55 {
    margin-bottom: 55px;
  }
}
.mt-55 {
  margin-top: 22px;
}
@media (min-width: 992px) {
  .mt-55 {
    margin-top: 55px;
  }
}
.mb-50 {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .mb-50 {
    margin-bottom: 50px;
  }
}
.mt-50 {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .mt-50 {
    margin-top: 50px;
  }
}
.mb-45 {
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .mb-45 {
    margin-bottom: 45px;
  }
}
.mt-45 {
  margin-top: 18px;
}
@media (min-width: 992px) {
  .mt-45 {
    margin-top: 45px;
  }
}
.mb-40 {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .mb-40 {
    margin-bottom: 40px;
  }
}
.mt-40 {
  margin-top: 16px;
}
@media (min-width: 992px) {
  .mt-40 {
    margin-top: 40px;
  }
}
.mb-35 {
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  .mb-35 {
    margin-bottom: 35px;
  }
}
.mt-35 {
  margin-top: 14px;
}
@media (min-width: 992px) {
  .mt-35 {
    margin-top: 35px;
  }
}
.mb-30 {
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .mb-30 {
    margin-bottom: 30px;
  }
}
.mt-30 {
  margin-top: 12px;
}
@media (min-width: 992px) {
  .mt-30 {
    margin-top: 30px;
  }
}
.mb-25 {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .mb-25 {
    margin-bottom: 25px;
  }
}
.mt-25 {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .mt-25 {
    margin-top: 25px;
  }
}
.mb-20 {
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .mb-20 {
    margin-bottom: 20px;
  }
}
.mt-20 {
  margin-top: 8px;
}
@media (min-width: 992px) {
  .mt-20 {
    margin-top: 20px;
  }
}
.mb-15 {
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .mb-15 {
    margin-bottom: 15px;
  }
}
.mt-15 {
  margin-top: 6px;
}
@media (min-width: 992px) {
  .mt-15 {
    margin-top: 15px;
  }
}
.mb-10 {
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .mb-10 {
    margin-bottom: 10px;
  }
}
.mt-10 {
  margin-top: 4px;
}
@media (min-width: 992px) {
  .mt-10 {
    margin-top: 10px;
  }
}
.mb-5 {
  margin-bottom: 2px;
}
@media (min-width: 992px) {
  .mb-5 {
    margin-bottom: 5px;
  }
}
.mt-5 {
  margin-top: 2px;
}
@media (min-width: 992px) {
  .mt-5 {
    margin-top: 5px;
  }
}
.mb-50 {
  margin-bottom: 50px;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/* Colors */
/* Fonts */
/* Grid */
/* Grid breakpoints */
/* Grid containers */
/*!
 * Bootstrap Grid v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width: 1670px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  -ms-flex-order: -1;
  order: -1;
}
.order-last {
  -ms-flex-order: 13;
  order: 13;
}
.order-0 {
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -ms-flex-order: 4;
  order: 4;
}
.order-5 {
  -ms-flex-order: 5;
  order: 5;
}
.order-6 {
  -ms-flex-order: 6;
  order: 6;
}
.order-7 {
  -ms-flex-order: 7;
  order: 7;
}
.order-8 {
  -ms-flex-order: 8;
  order: 8;
}
.order-9 {
  -ms-flex-order: 9;
  order: 9;
}
.order-10 {
  -ms-flex-order: 10;
  order: 10;
}
.order-11 {
  -ms-flex-order: 11;
  order: 11;
}
.order-12 {
  -ms-flex-order: 12;
  order: 12;
}
.offset-1 {
  margin-left: 8.333333%;
}
.offset-2 {
  margin-left: 16.666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.333333%;
}
.offset-5 {
  margin-left: 41.666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.333333%;
}
.offset-8 {
  margin-left: 66.666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.333333%;
}
.offset-11 {
  margin-left: 91.666667%;
}
@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}
.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}
.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}
.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}
.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}
.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}
.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}
.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}
.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}
.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}
.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}
.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}
.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*# sourceMappingURL=bootstrap-grid.css.map */

/*!
 * Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-overflow-style: scrollbar;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
body {
  margin: 0;
  font-family: Campton, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #605f5f;
  text-align: left;
  background-color: #ffffff;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}
pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}
figure {
  margin: 0 0 1rem;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}
th {
  text-align: inherit;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
button {
  border-radius: 0;
}
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
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;
}
select {
  word-wrap: normal;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}
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-bottom: 0.5rem;
  font-size: 1.5rem;
  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-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;
}
/*# sourceMappingURL=bootstrap-reboot.css.map */

/* Accommodation */

.accommodation__maps {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .accommodation__plus-button {
    margin-left: 25px;
  }
}
.bentral_container {
  padding-top: 75px;
}
@media (min-width: 992px) {
  .bentral_container {
    padding-top: 30px;
  }
}
/* Attachment */

.attachment_inner {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.attachment_inner a {
  text-decoration: none;
}
.attachment_inner img {
  width: 30px;
  height: auto;
  margin-right: 10px;
  margin-bottom: 5px;
}
.attachment_inner .fileSize {
  font-size: 14px;
  margin-left: 10px;
}
.bottom-notification {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.bottom-notification__container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ef404a;
  color: #ffffff;
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease-out, visibility 300ms ease-out;
}
.bottom-notification__container--open {
  opacity: 1;
  visibility: visible;
}
.bottom-notification__segment {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.bottom-notification__image {
  width: 100%;
  max-width: 150px;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 16px;
}
.bottom-notification__text {
  padding-left: 160px;
  font-weight: bold;
  line-height: 23px;
}
.bottom-notification__cta {
  padding: 0 5px 0 10px;
}
.bottom-notification__cta .btn {
  padding: 8px 10px 7px 10px !important;
  font-size: 13px !important;
  border-radius: 20px !important;
  line-height: 13px;
}
.bottom-notification__cta .mobile-toggle {
  display: none;
}
@media (min-width: 768px) {
  .bottom-notification__cta .mobile-toggle {
    display: inline;
  }
}
.bottom-notification__close:after {
  position: absolute;
  content: '\d7';
  color: #fff;
  right: 5px;
  top: -35px;
  cursor: pointer;
  text-shadow: 0px 0px 2px black;
  font-size: 1.5em;
}
.popup2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 2px;
  padding: 20px 30px;
  max-height: 90vh;
  max-width: 600px;
  background-color: #ef404a;
}
.popup2__container {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease-out, visibility 300ms ease-out;
}
.popup2__container--open {
  opacity: 1;
  visibility: visible;
}
.popup2__image-container {
  display: block;
  margin: -20px -30px 20px -30px;
}
.popup2__image {
  width: 100%;
  height: auto;
}
.popup2__content {
  align-self: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  max-height: calc(90vh - 40px);
  color: #ffffff;
}
.popup2__content::-webkit-scrollbar {
  display: none;
}
.popup2__title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .popup2__title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
.popup2__subtitle {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .popup2__subtitle {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.popup2__description {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .popup2__description {
    font-size: 19px;
    margin-bottom: 30px;
  }
}
.popup2__cta {
  text-align: center;
  margin-bottom: 20px;
}
.popup2__cta .btn {
  font-size: 16px;
  padding: 15px 20px;
}
.popup2__cta .btn::after {
  margin-left: 30px;
}
@media (min-width: 768px) {
  .popup2__cta {
    margin-bottom: 30px;
  }
}
.popup2__close-button {
  position: absolute;
  color: #ef404a;
  top: 8px;
  right: 14px;
  cursor: pointer;
}
.popup-open {
  max-height: 100vh;
  overflow-y: hidden;
}
/* Breadcrumbs */

.breadcrumbs {
  display: none;
  font-size: 15px;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .breadcrumbs {
    display: block;
    margin-bottom: 55px;
  }
}
.breadcrumbs__item {
  color: #605f5f;
  text-decoration: underline;
}
.breadcrumbs__item:not(:last-child)::after {
  display: inline-block;
  content: '>';
  /* If default Campton doesn't have `>` character change it to Arial.
        font-family: Arial; */
  font-size: 13px;
  text-decoration: none;
  margin-left: 6px;
  margin-right: 1px;
}
.breadcrumbs__item:focus,
.breadcrumbs__item:hover {
  color: #ef404a;
}
.breadcrumbs__item:focus::after,
.breadcrumbs__item:hover::after {
  color: #605f5f;
}
.breadcrumbs__item--active {
  color: #ef404a;
  text-decoration: none;
}
/* Catalogue items */

.v-catalogue-item .catalogue-item__image-icons,
.v-experience-item .catalogue-item__image-icons,
.v-event-item .catalogue-item__image-icons {
  padding-bottom: 20px;
}
.inclusive-tourism-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  border-radius: 18px;
  margin-right: 10px;
}
.catalogue-item {
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 15px;
  color: #605f5f;
  text-decoration: none;
  /*&__price {
      color: @primary-color;
      font-weight: bold;
  }*/

  /* events */

}
.catalogue-item:hover,
.catalogue-item:focus {
  color: #605f5f;
  text-decoration: none;
}
.catalogue-item__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 30px;
}
@media (min-width: 576px) {
  .catalogue-item__container {
    margin: 0 -8px 30px;
  }
}
@media (min-width: 992px) {
  .catalogue-item__container {
    margin: 0 -8px 60px;
  }
}
.catalogue-item__container--3-columns .catalogue-item {
  width: 100%;
}
@media (min-width: 768px) {
  .catalogue-item__container--3-columns .catalogue-item {
    flex: 0 1 auto;
    width: calc(100%/2 - 16px);
  }
}
@media (min-width: 1800px) {
  .catalogue-item__container--3-columns .catalogue-item {
    width: calc(100%/3 - 16px);
  }
}
.catalogue-item__container--4-columns .catalogue-item {
  width: 100%;
}
@media (min-width: 768px) {
  .catalogue-item__container--4-columns .catalogue-item {
    flex: 0 1 auto;
    width: calc(100%/2 - 16px);
  }
}
@media (min-width: 1800px) {
  .catalogue-item__container--4-columns .catalogue-item {
    width: calc(100%/4 - 16px);
  }
}
@media (min-width: 576px) {
  .catalogue-item {
    margin: 0 8px 30px;
  }
}
@media (min-width: 992px) {
  .catalogue-item:hover .catalogue-item:not(.wine_and_dine)__content {
    /*min-height: 330px;*/
    margin-top: -95px;
    /* Negative margin top should always be the same as height (+ margins) of `catalogue-item__description` in order for transition to work smoothly. */
  
  }
}
@media (min-width: 992px) {
  .catalogue-item:hover .catalogue-item:not(.wine_and_dine)__description {
    height: 63px;
    max-height: 63px;
    margin-bottom: 32px;
  }
}
@media (min-width: 992px) {
  .catalogue-item:hover .catalogue-item__icon {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  }
}
@media (min-width: 992px) {
  .catalogue-item:hover .catalogue-item__button {
    padding: 12px 30px;
  }
}
.catalogue-item:hover .catalogue-item__button .catalogue-item__button-text {
  overflow: initial;
}
@media (min-width: 992px) {
  .catalogue-item:hover .catalogue-item__button .catalogue-item__button-text {
    max-width: 100%;
    transition: max-width 300ms ease-out;
  }
}
@media (min-width: 992px) {
  .catalogue-item:hover .catalogue-item__button.btn-loupe::after {
    margin-left: 30px;
  }
}
.catalogue-item__image {
  width: 100%;
  min-height: 220px;
}
.catalogue-item__top-icons {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: auto;
}
.catalogue-item__inclusive-tourism-icon img {
  display: inline-block !important;
  width: 61px !important;
  height: auto !important;
}
.catalogue-item__like {
  position: absolute;
  display: flex;
  align-items: center;
  top: 15px;
  right: 15px;
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
@media (min-width: 992px) {
  .catalogue-item__like {
    top: 35px;
    right: 35px;
  }
}
.catalogue-item__like-number {
  font-size: 13px;
  font-weight: bold;
  margin-right: 8px;
}
@media (min-width: 992px) {
  .catalogue-item__like-number {
    font-size: 20px;
    margin-right: 13px;
  }
}
.catalogue-item__like-icon {
  color: transparent;
  transition: transform 200ms ease-out;
}
.catalogue-item__like-icon svg {
  width: 24px;
  height: 20px;
}
@media (min-width: 992px) {
  .catalogue-item__like-icon svg {
    width: 45px;
    height: 36px;
  }
}
.catalogue-item__like-icon:hover {
  color: transparent;
  transform: scale(1.1);
}
.catalogue-item__like-icon--liked {
  color: #ffffff;
}
.catalogue-item__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  position: relative;
  background-color: #ffffff;
  padding: 20px;
  margin-top: 0;
  transition: min-height 200ms ease-out, margin-top 200ms ease-out;
}
@media (min-width: 992px) {
  .catalogue-item__content {
    /*min-height: 255px;*/
    padding: 30px;
  }
}
.catalogue-item__image-icons {
  display: inline-block;
}
.catalogue-item__image-icons img {
  display: inline-block !important;
  width: auto !important;
  max-height: 60px;
  margin: 0 10px 10px 0;
}
.catalogue-item__text {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .catalogue-item__text {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.catalogue-item__date {
  font-size: 13px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .catalogue-item__date {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.catalogue-item__title {
  display: flex;
  flex-grow: 1;
  align-items: flex-start;
  /*        align-items: center;
        justify-content: space-between;*/
  font-size: 13px;
  margin-bottom: 8px;
  margin-right: 15px;
}
@media (min-width: 992px) {
  .catalogue-item__title {
    font-size: 30px;
    margin-bottom: 27px;
    margin-right: 0;
  }
}
.catalogue-item__title span {
  display: block;
}
.catalogue-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #ef404a;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transition: box-shadow 200ms ease-out;
  background-color: #ffffff;
  /*        @media (min-width: @lg-breakpoint) {
            width: 66px;
            height: 66px;
        }*/

}
.catalogue-item__icon img {
  width: 28px;
  height: 28px;
  padding-top: 5px;
}
.catalogue-item__price-text {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .catalogue-item__price-text {
    font-size: 20px;
  }
}
.catalogue-item__price-text span {
  color: #ef404a;
  font-weight: bold;
}
.catalogue-item__price-text span span {
  font-weight: normal;
  text-decoration: line-through;
}
.catalogue-item__description {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 20px;
  overflow: hidden;
  transition: height 200ms ease-out, max-height 200ms ease-out, margin-bottom 200ms ease-out;
}
@media (min-width: 992px) {
  .catalogue-item__description {
    font-size: 18px;
    max-height: 0;
    height: 0;
    margin-bottom: 0;
  }
}
.catalogue-item__button {
  position: relative;
  max-width: 100%;
  padding: 7px 25px;
  transition: padding 200ms ease-out, background-color 100ms ease-out;
}
@media (min-width: 992px) {
  .catalogue-item__button {
    padding: 12px 18px;
  }
}
.catalogue-item__button-text {
  max-width: 80px;
  white-space: nowrap;
  transition: max-width 0ms ease-out;
  /*            @media (max-width: @lg-breakpoint) {
                overflow: initial ;
            }*/

}
@media (min-width: 992px) {
  .catalogue-item__button-text {
    overflow: hidden;
    max-width: 0;
  }
}
.catalogue-item__button.btn-loupe::after {
  margin-left: 30px;
  transition: margin-left 300ms ease-out;
}
@media (min-width: 992px) {
  .catalogue-item__button.btn-loupe::after {
    margin-left: 0;
  }
}
.catalogue-item--without-description:focus .catalogue-item__content,
.catalogue-item--without-description:hover .catalogue-item__content {
  margin-top: 0;
}
.catalogue-item--listing:focus .catalogue-item__content,
.catalogue-item--listing:hover .catalogue-item__content {
  margin-top: 0;
}
.catalogue-item--listing .catalogue-item__image-icons {
  position: relative;
  display: inline-block;
  padding: 25px 25px 0;
}
.catalogue-item--listing .catalogue-item__image-icons img {
  display: inline-block !important;
  width: auto !important;
  max-height: 60px;
  margin: 0 10px 10px 0;
}
.catalogue-item--listing .catalogue-item__content {
  display: flex;
  padding: 20px 25px;
}
.catalogue-item--listing .catalogue-item__information {
  max-width: calc(100% - 40px);
  padding-left: 30px;
  padding-right: 10px;
}
@media (min-width: 992px) {
  .catalogue-item--listing .catalogue-item__information {
    max-width: calc(100% - 60px);
    padding-left: 50px;
  }
}
@media (min-width: 992px) {
  .catalogue-item--listing .catalogue-item__title {
    font-size: 20px;
  }
}
.catalogue-item--listing .catalogue-item__icon {
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  width: 46px;
  height: 46px;
  /*top: -23px;*/
  right: 23px;
}
.catalogue-item--listing .catalogue-item__icon img {
  width: 28px;
  height: 28px;
  padding: 4px;
}
.catalogue-item--listing .catalogue-item__featured-date {
  align-self: center;
  text-align: center;
}
.catalogue-item--listing .catalogue-item__featured-date-day {
  font-size: 46px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .catalogue-item--listing .catalogue-item__featured-date-day {
    font-size: 70px;
  }
}
.catalogue-item--listing .catalogue-item__featured-date-month {
  font-size: 7px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .catalogue-item--listing .catalogue-item__featured-date-month {
    font-size: 10px;
  }
}
.catalogue-item.exposed-true {
  background-color: #ef404a;
}
.catalogue-item.exposed-true .catalogue-item__content {
  color: #ffffff;
  background-color: #ef404a;
}
.catalogue-item.exposed-true .catalogue-item__button {
  background-color: #ffffff;
  color: #ef404a;
}
.catalogue-item.exposed-true .catalogue-item__button::after {
  content: url('/images/loupe-red.svg');
}
.catalogue-item__icons {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.catalogue-item__icons .icon-picker {
  display: inline-block;
  max-width: 40px;
  max-height: 40px;
  margin-bottom: 20px;
}
.catalogue-item__icon-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px 20px 10px;
  max-width: 95px;
}
.catalogue-item__icon-text {
  text-align: center;
  color: #605F5F;
  font-family: Campton;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.catalogue-item__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a[data-itemtype="catEvent"] .catalogue-item__content {
  flex-direction: row;
}
.wine_and_dine h3.catalogue-item__title,
.wine_and_dine .catalogue-item__date {
  margin-bottom: 10px;
}
.wine_and_dine h5 {
  margin-bottom: 20px;
}
.r-catalogue-items-picker {
  position: relative;
}
.r-catalogue-items-picker .owl-carousel {
  position: relative;
  margin-top: 50px;
}
.r-catalogue-items-picker .owl-carousel .owl-nav {
  position: absolute;
  top: -50px;
  right: 0;
}
@media (max-width: 576px) {
  .r-catalogue-items-picker .owl-carousel .owl-nav {
    right: 20px;
  }
}
.r-catalogue-items-picker .owl-carousel .owl-nav button {
  color: white;
  background-color: #ef404a;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  padding-left: 1px !important;
  transition: background-color 300ms ease-out;
}
.r-catalogue-items-picker .owl-carousel .owl-nav button:hover {
  background-color: #e91320;
}
.r-catalogue-items-picker .owl-carousel .owl-nav button:focus {
  outline: none !important;
}
.slider-picker-number {
  position: absolute;
  font-size: 24px;
  line-height: 1;
  font-weight: normal;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  z-index: 2;
  top: -40px;
  right: 120px;
  cursor: pointer;
  text-decoration: underline;
}
.slider-picker-number.slider-picker-number--right {
  right: 0;
}
.search-list .catalogue-item__featured-date-day {
  font-size: 46px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .search-list .catalogue-item__featured-date-day {
    font-size: 70px;
  }
  .search-list .catalogue-item__information {
    padding-left: 50px;
  }
  .search-list .catalogue-item__title {
    font-size: 20px;
  }
}
/* Choose experience */

.header__choose-experience {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease-out, visibility 300ms ease-out;
}
.header__choose-experience--open {
  opacity: 1;
  visibility: visible;
}
.header__choose-experience {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .header__choose-experience {
    flex-direction: row;
  }
}
.header__choose-experience .header__image-container {
  width: 100%;
  height: 50vh;
}
@media (min-width: 992px) {
  .header__choose-experience .header__image-container {
    width: 50%;
    height: 100vh;
  }
}
.header__choose-experience .header__image-container--one .header__content {
  margin-top: 120px;
}
@media (min-width: 992px) {
  .header__choose-experience .header__image-container--one .header__content {
    margin-top: 120px;
  }
}
@media (min-width: 992px) {
  .header__choose-experience .header__image-container--two .header__content {
    margin-top: 120px;
  }
}
.header__choose-experience .header__image-content {
  align-items: center;
  padding-bottom: 0;
}
@media (max-width: calc(991px)) {
  .header__choose-experience .header__image-content {
    height: 50vh;
  }
}
.header__choose-experience .header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
}
.header__choose-experience .header__main-title {
  position: absolute;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 10;
}
@media (min-width: 576px) {
  .header__choose-experience .header__main-title {
    font-size: 40px;
    top: 130px;
  }
}
@media (min-width: 992px) {
  .header__choose-experience .header__main-title {
    font-size: 90px;
    top: 180px;
  }
}
.header__choose-experience .header__title {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .header__choose-experience .header__title {
    font-size: 50px;
    margin-bottom: 55px;
  }
}
.header__choose-experience .header__cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: all 100ms ease-out;
}
@media (min-width: 992px) {
  .header__choose-experience .header__cta-button {
    font-size: 20px;
  }
}
.header__choose-experience .header__cta-button svg {
  width: 32px;
  height: 28px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .header__choose-experience .header__cta-button svg {
    width: 90px;
    height: 75px;
    margin-bottom: 30px;
  }
}
.header__choose-experience .header__cta-button:focus,
.header__choose-experience .header__cta-button:hover {
  text-decoration: none;
  color: #ef404a;
}
.header__choose-experience .header__skip-button {
  position: absolute;
  bottom: calc(50% - 25px);
  right: 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .header__choose-experience .header__skip-button {
    left: 50%;
    right: auto;
    bottom: 30px;
    transform: translateX(-50%);
  }
}
/* Collapsible */

.collapsible-title {
  position: relative;
  font-size: 16px;
  padding-left: 40px;
  padding-top: 4px;
  padding-bottom: 15px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .collapsible-title {
    font-size: 24px;
    padding-left: 60px;
    padding-top: 10px;
    padding-bottom: 30px;
  }
}
.collapsible-content {
  font-size: 15px;
  padding-left: 40px;
}
@media (min-width: 992px) {
  .collapsible-content {
    font-size: 20px;
    padding-left: 60px;
  }
}
.collapsible-closed span,
.collapsible-opened span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  background-color: #ef404a;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  top: 0;
  left: 0;
}
@media (min-width: 992px) {
  .collapsible-closed span,
  .collapsible-opened span {
    font-size: 38px;
    width: 46px;
    height: 46px;
  }
}
.collapsible-closed span:after {
  content: "\002B ";
}
.collapsible-opened span:after {
  content: "\2212 ";
}
/* Contact info */

.contact-info {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  max-width: 950px;
  margin: 10px auto 40px;
}
@media (min-width: 992px) {
  .contact-info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: -80px auto 120px;
  }
}
@media (min-width: 992px) {
  .contact-info--accommodation {
    margin: 10px auto 40px;
  }
}
.contact-info__title {
  display: none;
  font-size: 40px;
  font-weight: bold;
  color: #ef404a;
}
@media (min-width: 992px) {
  .contact-info__title {
    display: block;
  }
}
.contact-info__address {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .contact-info__address {
    margin-bottom: 0;
  }
}
.contact-info__address-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.contact-info__address p {
  margin-bottom: 0;
}
.contact-info__info {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.contact-info__info:not(:last-child) {
  margin-bottom: 11px;
}
.contact-info__info-icon {
  color: #ef404a;
  margin-right: 15px;
}
.contact-info__info-text {
  color: #605f5f;
}
.contact-info__info-text:focus,
.contact-info__info-text:hover {
  color: #605f5f;
}
.contact-info__info a {
  text-decoration: underline;
}
/* CTA icons */

.cta-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-icons {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.cta-icons__item {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .cta-icons__item {
    flex: 1 1 auto;
  }
}
.cta-icons__item:focus,
.cta-icons__item:hover {
  text-decoration: none;
}
.cta-icons__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  padding: 15px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .cta-icons__icon {
    width: 120px;
    height: 120px;
    padding: 30px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .cta-icons__icon {
    width: 180px;
    height: 180px;
    padding: 45px;
    margin-bottom: 30px;
  }
}
.cta-icons__cta {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}
@media (min-width: 992px) {
  .cta-icons__cta {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .cta-icons__cta {
    font-size: 20px;
  }
}
.cta-icons__cta::after {
  display: inline-block;
  content: url('/images/loupe.svg');
  margin-left: 10px;
  transform: translateY(5px) scale(0.7);
}
@media (min-width: 992px) {
  .cta-icons__cta::after {
    margin-left: 20px;
    transform: translateY(5px);
  }
}
@media (min-width: 1200px) {
  .cta-icons__cta::after {
    margin-left: 30px;
  }
}
/* CTA with image */

.cta-with-image {
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 540px;
  padding-top: 67px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cta-with-image {
    height: 900px;
    padding-top: 160px;
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .cta-with-image::before {
    position: absolute;
    content: url('/images/bridge.svg');
    bottom: -10px;
    left: -5px;
    right: -5px;
    z-index: 1;
  }
}
.cta-with-image::after {
  position: absolute;
  content: '';
  background-image: linear-gradient(119deg, #000000, #634988);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.2;
}
.cta-with-image__image {
  position: absolute;
  top: -80px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}
.cta-with-image > .container {
  position: relative;
  z-index: 1;
}
.cta-with-image__title {
  font-size: 40px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  margin-bottom: 31px;
}
@media (min-width: 992px) {
  .cta-with-image__title {
    font-size: 70px;
    margin-bottom: 59px;
  }
}
.cta-with-image__description {
  font-size: 15px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  max-width: 820px;
  margin-bottom: 35px;
}
@media (min-width: 992px) {
  .cta-with-image__description {
    font-size: 20px;
    margin-bottom: 60px;
  }
}
.cta-with-image__button {
  margin-bottom: 5px;
  margin-right: 15px;
}
.cta-with-image--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 0;
}
.cta-with-image--center .cta-with-image__description {
  max-width: none;
}
.v-event-item .image-with-text__image {
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .v-event-item .image-with-text__image {
    padding-right: 60px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .v-event-item .featured-content {
    padding: 50px 60px;
  }
}
@media (min-width: 1200px) {
  .v-event-item .featured-content {
    padding: 50px 90px;
  }
}
.v-event-item .featured-content > div {
  display: flex;
}
.v-event-item .featured-content > div > i {
  flex: 0 0 30px;
  color: #ef404a;
  width: 30px;
  transform: translateY(3px);
}
.v-event-item .featured-content__text {
  margin-left: 5px;
}
/* Events */

.events {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .events {
    margin: 0 -8px 120px;
  }
}
.events--4-columns .event {
  width: 100%;
}
@media (min-width: 768px) {
  .events--4-columns .event {
    flex: 0 1 auto;
    width: calc(100%/2 - 16px);
  }
}
@media (min-width: 1200px) {
  .events--4-columns .event {
    flex: 0 1 auto;
    width: calc(100%/3 - 16px);
  }
}
@media (min-width: 1800px) {
  .events--4-columns .event {
    flex: 0 1 auto;
    width: calc(100%/4 - 16px);
  }
}
.events__load-more {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .events__load-more {
    margin-top: 104px;
  }
}
.event {
  display: none;
  text-decoration: none;
  color: #605f5f;
  background-color: #ffffff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 16px;
  transition: box-shadow 200ms ease-out;
}
@media (min-width: 768px) {
  .event {
    margin: 0 8px 16px;
  }
}
.event:focus,
.event:hover {
  text-decoration: none;
  color: #605f5f;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.26);
}
.event:focus .event__image,
.event:hover .event__image {
  transform: scale(1.1);
}
.event__image-container {
  overflow: hidden;
}
.event__image {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease-out;
}
.event__information {
  display: flex;
  padding: 20px 25px;
}
.event__featured-date {
  align-self: center;
  text-align: center;
}
.event__featured-date-day {
  font-size: 46px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .event__featured-date-day {
    font-size: 70px;
  }
}
.event__featured-date-month {
  font-size: 7px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .event__featured-date-month {
    font-size: 10px;
  }
}
.event__content {
  max-width: calc(100% - 40px);
  padding-left: 30px;
  padding-right: 10px;
}
@media (min-width: 992px) {
  .event__content {
    max-width: calc(100% - 60px);
    padding-left: 50px;
  }
}
.event__date {
  font-size: 8px;
  padding-top: 6px;
  margin-bottom: 9px;
}
@media (min-width: 992px) {
  .event__date {
    font-size: 15px;
  }
}
.event__title {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.2;
  height: 44px;
  padding-right: 20px;
  margin-bottom: 29px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .event__title {
    font-size: 20px;
  }
}
.event__button {
  position: relative;
  max-width: 100%;
  padding: 7px 25px;
  transition: padding 300ms ease-out;
}
@media (min-width: 992px) {
  .event__button {
    padding: 12px 18px;
  }
}
.event__button-text {
  max-width: unset;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 0ms ease-out;
}
@media (min-width: 992px) {
  .event__button-text {
    max-width: 0;
  }
}
.event__button.btn-loupe::after {
  margin-left: 30px;
  transition: margin-left 300ms ease-out;
}
@media (min-width: 992px) {
  .event__button.btn-loupe::after {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .event__button:focus,
  .event__button:hover {
    padding: 12px 30px;
  }
}
@media (min-width: 992px) {
  .event__button:focus .event__button-text,
  .event__button:hover .event__button-text {
    max-width: 100%;
    transition: max-width 300ms ease-out;
  }
}
@media (min-width: 992px) {
  .event__button:focus.btn-loupe::after,
  .event__button:hover.btn-loupe::after {
    margin-left: 30px;
  }
}
.events-filter {
  display: none;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .events-filter {
    margin: 0 -8px 120px;
  }
}
.events-filter--open {
  display: flex;
}
.events-filter .event {
  display: block;
}
.events-maps {
  display: none;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .events-maps {
    margin-bottom: 120px;
  }
}
.events-maps--open {
  display: block;
}
.filters-select {
  appearance: none;
  -webkit-appearance: none;
  /* custom added */
  font-size: 20px;
  color: rgba(96, 95, 95, 0.5);
  background-color: #f4f4f4;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4zMzMiIGhlaWdodD0iMTAuNjkyIiB2aWV3Qm94PSIwIDAgMTguMzMzIDEwLjY5MiI+ICAgIDxkZWZzPiAgICAgICAgPHN0eWxlPiAgICAgICAgICAgIC5jbHMtMXtmaWxsOiM2MDVmNWZ9ICAgICAgICA8L3N0eWxlPiAgICA8L2RlZnM+ICAgIDxwYXRoIGlkPSJQYXRoXzc4MyIgZD0iTS0xMTYuMTA1LTI0MTkuMTMybC04LjU1OSA4LjU1OWEuNjMzLjYzMyAwIDAgMS0uNDIzLjE4NS42MzMuNjMzIDAgMCAxLS40MjMtLjE4NWwtLjkxNy0uOTE3YS42LjYgMCAwIDEtLjE4NS0uNDIzLjYzMy42MzMgMCAwIDEgLjE4NS0uNDIzbDcuMjE4LTcuMjE4LTcuMjE4LTcuMjE4YS42MzQuNjM0IDAgMCAxLS4xODUtLjQyMy42MzMuNjMzIDAgMCAxIC4xODUtLjQyM2wuOTE3LS45MTdhLjYzMy42MzMgMCAwIDEgLjQyMy0uMTg1LjYzMy42MzMgMCAwIDEgLjQyMy4xODVsOC41NTkgOC41NTlhLjYzMi42MzIgMCAwIDEgLjE4NS40MjMuNjMzLjYzMyAwIDAgMS0uMTg1LjQyMXoiIGNsYXNzPSJjbHMtMSIgZGF0YS1uYW1lPSJQYXRoIDc4MyIgdHJhbnNmb3JtPSJyb3RhdGUoOTAgLTEyNjguNSAtMTE0MS44ODkpIi8+PC9zdmc+');
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
  background-size: auto 18%;
  border: 0;
  border-radius: 0;
  min-height: 62px;
  width: 100%;
  max-width: 400px;
  padding: 15px 55px 15px 25px;
  margin-bottom: 15px;
  outline: none;
  transition: all 100ms ease-out;
  cursor: pointer;
}
@media (min-width: 992px) {
  .filters-select {
    width: auto;
    margin-right: 15px;
  }
}
.filters-select::-ms-expand {
  display: none;
  /* remove default arrow in IE 10 and 11 */

}
.filters-select__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #605f5f;
  /*padding: 25px 25px 10px 25px;*/
  padding: 20px 20px 5px 20px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .filters-select__container {
    /*padding: 25px 50px 10px 25px;*/
    padding: 20px 20px 5px 20px;
  }
}
.filters-quicksearch {
  font-size: 20px;
  color: rgba(96, 95, 95, 0.8);
  background-color: #f4f4f4;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMC44NDciIGhlaWdodD0iMjAuODQ1IiB2aWV3Qm94PSIwIDAgMjAuODQ3IDIwLjg0NSI+ICAgIDxkZWZzPiAgICAgICAgPHN0eWxlPiAgICAgICAgICAgIC5jbHMtMXtmaWxsOiM2MDVmNWZ9ICAgICAgICA8L3N0eWxlPiAgICA8L2RlZnM+ICAgIDxnIGlkPSJHcm91cF83NzkiIGRhdGEtbmFtZT0iR3JvdXAgNzc5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MjUuNjQ2IDMxMi40NTYpIj4gICAgICAgIDxwYXRoIGlkPSJQYXRoXzQyIiBkPSJNLTYwNi40LTI5MS42MTFhMS41NzYgMS41NzYgMCAwIDEtMS4xMjgtLjQ3NWwtNC4zLTQuMjg1YTguODEgOC44MSAwIDAgMS01IDEuNTUyIDguODE3IDguODE3IDAgMCAxLTguODItOC44MiA4LjgxNSA4LjgxNSAwIDAgMSA4LjgyLTguODE4IDguODE1IDguODE1IDAgMCAxIDguODIgOC44MTggOC44IDguOCAwIDAgMS0xLjU1MiA1bDQuMyA0LjNhMS42MTMgMS42MTMgMCAwIDEgLjQ2NCAxLjEyOCAxLjYxNiAxLjYxNiAwIDAgMS0xLjYwNCAxLjZ6bS0xMC40MjQtMTcuNjRhNS42MjEgNS42MjEgMCAwIDAtNS42MTMgNS42MTMgNS42MiA1LjYyIDAgMCAwIDUuNjEzIDUuNjEzIDUuNjE4IDUuNjE4IDAgMCAwIDUuNjEzLTUuNjEzIDUuNjIgNS42MiAwIDAgMC01LjYxNS01LjYxMnoiIGNsYXNzPSJjbHMtMSIgZGF0YS1uYW1lPSJQYXRoIDQyIi8+ICAgIDwvZz48L3N2Zz4=');
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
  background-size: auto 30%;
  border: 0;
  border-radius: 0;
  min-height: 62px;
  width: 100%;
  padding: 5px 55px 5px 25px;
  margin-bottom: 15px;
  outline: none;
  transition: all 100ms ease-out;
}
@media (min-width: 992px) {
  .filters-quicksearch {
    width: auto;
    margin-right: 15px;
  }
}
.filters-quicksearch::placeholder {
  color: rgba(96, 95, 95, 0.5);
}
.filters-maps-link {
  font-size: 20px;
  text-decoration: underline;
  color: #ffffff;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .filters-maps-link {
    margin-left: auto;
  }
}
.filters-maps-link:focus,
.filters-maps-link:hover {
  outline: none;
  color: #ffffff;
}
.filters-calendar {
  appearance: none;
  font-size: 20px;
  color: rgba(96, 95, 95, 0.5);
  background-color: #f4f4f4;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4zMzMiIGhlaWdodD0iMTAuNjkyIiB2aWV3Qm94PSIwIDAgMTguMzMzIDEwLjY5MiI+ICAgIDxkZWZzPiAgICAgICAgPHN0eWxlPiAgICAgICAgICAgIC5jbHMtMXtmaWxsOiM2MDVmNWZ9ICAgICAgICA8L3N0eWxlPiAgICA8L2RlZnM+ICAgIDxwYXRoIGlkPSJQYXRoXzc4MyIgZD0iTS0xMTYuMTA1LTI0MTkuMTMybC04LjU1OSA4LjU1OWEuNjMzLjYzMyAwIDAgMS0uNDIzLjE4NS42MzMuNjMzIDAgMCAxLS40MjMtLjE4NWwtLjkxNy0uOTE3YS42LjYgMCAwIDEtLjE4NS0uNDIzLjYzMy42MzMgMCAwIDEgLjE4NS0uNDIzbDcuMjE4LTcuMjE4LTcuMjE4LTcuMjE4YS42MzQuNjM0IDAgMCAxLS4xODUtLjQyMy42MzMuNjMzIDAgMCAxIC4xODUtLjQyM2wuOTE3LS45MTdhLjYzMy42MzMgMCAwIDEgLjQyMy0uMTg1LjYzMy42MzMgMCAwIDEgLjQyMy4xODVsOC41NTkgOC41NTlhLjYzMi42MzIgMCAwIDEgLjE4NS40MjMuNjMzLjYzMyAwIDAgMS0uMTg1LjQyMXoiIGNsYXNzPSJjbHMtMSIgZGF0YS1uYW1lPSJQYXRoIDc4MyIgdHJhbnNmb3JtPSJyb3RhdGUoOTAgLTEyNjguNSAtMTE0MS44ODkpIi8+PC9zdmc+');
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
  background-size: auto 18%;
  border: 0;
  border-radius: 0;
  min-height: 62px;
  width: calc(100% - 63px);
  padding: 15px 55px 15px 25px;
  margin-right: 15px;
  margin-bottom: 15px;
  outline: none;
  transition: all 100ms ease-out;
  cursor: pointer;
}
@media (min-width: 992px) {
  .filters-calendar {
    width: auto;
  }
}
.filters-calendar::placeholder {
  color: rgba(96, 95, 95, 0.5);
}
.filters-calendar__icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
  height: 62px;
  width: 62px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .filters-calendar__icon {
    margin-right: 15px;
  }
}
.filters-calendar__icon::after {
  position: absolute;
  content: '\f073';
  font-family: 'Font Awesome 5 Free';
  font-size: 24px;
}
.filters-calendar__icon--active {
  cursor: pointer;
}
.filters-calendar__icon--active::after {
  content: '\f00d';
  font-weight: 900;
}
@media (min-width: 992px) {
  .social-share--events {
    margin-top: -100px;
  }
}
/* Experiences */

.experiences {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 30px;
}
@media (min-width: 576px) {
  .experiences {
    margin: 0 -8px 30px;
  }
}
@media (min-width: 992px) {
  .experiences {
    margin: 0 -8px 120px;
  }
}
.experiences--4-columns .experience {
  width: 100%;
}
@media (min-width: 768px) {
  .experiences--4-columns .experience {
    flex: 0 1 auto;
    width: calc(100%/2 - 16px);
  }
}
@media (min-width: 1800px) {
  .experiences--4-columns .experience {
    width: calc(100%/4 - 16px);
  }
}
.experience {
  position: relative;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .experience {
    margin: 0 8px 30px;
  }
}
@media (min-width: 992px) {
  .experience:hover .experience__icon {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  }
}
@media (min-width: 992px) {
  .experience:hover .experience__information {
    /* height: 330px; */
    margin-top: -95px;
    /* Negative margin top should always be the same as height (+ margins) of `catalogue-item__description` in order for transition to work smoothly. */
  
  }
}
@media (min-width: 992px) {
  .experience:hover .experience__description {
    height: 63px;
    max-height: 63px;
    margin-bottom: 32px;
  }
}
@media (min-width: 992px) {
  .experience:hover .experience__button {
    padding: 12px 30px;
  }
}
@media (min-width: 992px) {
  .experience:hover .experience__button .event__button-text {
    max-width: 100%;
    transition: max-width 400ms ease-out;
  }
}
@media (min-width: 992px) {
  .experience:hover .experience__button.btn-loupe::after {
    margin-left: 30px;
  }
}
.experience__image {
  width: 100%;
}
.experience__like {
  position: absolute;
  display: flex;
  align-items: center;
  top: 15px;
  right: 15px;
}
@media (min-width: 992px) {
  .experience__like {
    top: 35px;
    right: 35px;
  }
}
.experience__like-number {
  font-size: 13px;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  margin-right: 8px;
}
@media (min-width: 992px) {
  .experience__like-number {
    font-size: 20px;
    margin-right: 13px;
  }
}
.experience__like-icon {
  color: transparent;
  transition: transform 300ms ease-out;
}
.experience__like-icon svg {
  width: 24px;
  height: 20px;
}
@media (min-width: 992px) {
  .experience__like-icon svg {
    width: 45px;
    height: 36px;
  }
}
.experience__like-icon:hover {
  color: transparent;
  transform: scale(1.1);
}
.experience__like-icon--liked {
  color: #ffffff;
}
.experience__information {
  position: relative;
  background-color: #ffffff;
  padding: 20px 20px 30px;
  margin-top: 0;
  transition: height 300ms ease-out, margin-top 300ms ease-out;
}
@media (min-width: 992px) {
  .experience__information {
    padding: 55px 45px 45px;
  }
}
.experience__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  margin-right: 15px;
}
@media (min-width: 992px) {
  .experience__title {
    font-size: 27px;
    margin-bottom: 27px;
    margin-right: 0;
  }
}
.experience__icon {
  flex: 0 0 auto;
  color: #ef404a;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transition: box-shadow 300ms ease-out;
  /*    @media (min-width: @lg-breakpoint) {
      width: 66px;
      height: 66px;
    }*/

}
.experience__icon img {
  padding-top: 5px;
}
.experience__description {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 20px;
  overflow: hidden;
  transition: height 300ms ease-out, max-height 300ms ease-out, margin-bottom 300ms ease-out;
}
@media (min-width: 992px) {
  .experience__description {
    font-size: 18px;
    max-height: 0;
    height: 0;
    margin-bottom: 0;
  }
}
.experience__button {
  position: relative;
  max-width: 100%;
  padding: 7px 25px;
  transition: padding 300ms ease-out, background-color 100ms ease-out;
}
@media (min-width: 992px) {
  .experience__button {
    padding: 12px 18px;
  }
}
.experience__button-text {
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 0ms ease-out;
}
@media (min-width: 992px) {
  .experience__button-text {
    max-width: 0;
  }
}
.experience__button.btn-loupe::after {
  margin-left: 30px;
  transition: margin-left 400ms ease-out;
}
@media (min-width: 992px) {
  .experience__button.btn-loupe::after {
    margin-left: 0;
  }
}
.experience--without-description:focus .experience__information,
.experience--without-description:hover .experience__information {
  margin-top: 0;
}
/* Footer */

.footer {
  position: relative;
}
.footer-top {
  color: #605f5f;
  background-color: #dfdfdf;
  padding: 40px 0;
}
@media (min-width: 992px) {
  .footer-top {
    padding: 60px 0;
  }
}
.footer-top > .container {
  position: relative;
}
.footer__title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}
.footer-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .footer-menu {
    margin-bottom: 0;
  }
}
.footer-menu__item {
  display: block;
  margin-bottom: 3px;
}
.footer-menu__link {
  font-size: 15px;
  text-decoration: underline;
  color: #929292;
}
.footer-menu__link:focus,
.footer-menu__link:hover {
  color: #929292;
}
.footer__contact-row {
  margin-bottom: 15px;
  /*        &::after {
            position: absolute;
            content: '';
            background-color: @primary-color;
            top: -20px;
            bottom: -40px;
            left: -50%;
            width: 1px;
            height: calc(~'100% + 60px');
        }*/

}
@media (min-width: 992px) {
  .footer__contact-row {
    margin-bottom: 0;
  }
}
.footer__primary-links {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.footer__primary-links a {
  color: #605f5f;
  font-size: 20px;
  font-weight: bold;
  padding: 0 20px 0 0;
  text-decoration: none;
}
@media (max-width: 992px) {
  .footer__primary-links {
    justify-content: center;
    padding-bottom: 30px;
  }
  .footer__primary-links a {
    padding: 0 20px 20px 0;
  }
}
.footer__secondary-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer__secondary-links a {
  padding: 0 10px 0 0;
}
@media (max-width: 992px) {
  .footer__secondary-links {
    justify-content: center;
  }
  .footer__secondary-links a {
    padding: 0 10px 10px 0;
  }
}
.footer__secondary-links:before {
  position: absolute;
  content: '';
  background-color: #ef404a;
  top: 0;
  width: calc(100% - 30px);
  height: 1px;
}
.footer__contact {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 28px;
}
.footer__contact strong {
  font-size: 20px;
}
@media (max-width: 992px) {
  .footer__contact {
    text-align: center;
  }
}
.footer__info {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.footer__info-icon {
  color: #ef404a;
  margin-right: 15px;
}
.footer__info-text {
  text-decoration: none;
  color: #605f5f;
}
.footer__info-text:focus,
.footer__info-text:hover {
  color: #605f5f;
}
.footer__social-icons {
  font-size: 40px;
  color: #ef404a;
  margin-right: 10px;
}
.footer__social-icons:focus,
.footer__social-icons:hover {
  color: #ef404a;
}
.footer .threads {
  width: 40px;
  height: 40px;
  background: url('/images/threads.svg') center center no-repeat;
  transform: translateY(5px);
}
.footer__social-icons-floater {
  font-size: 35px;
  color: white;
  background-color: #ef404a;
  position: fixed;
  top: calc(50% - 80px);
  right: 0px;
  left: auto;
  bottom: auto;
  z-index: 9;
  padding: 2px 5px;
}
.footer__social-icons-floater .social-icon {
  display: flex;
  color: white;
}
.footer__social-icons-floater .social-icon:hover {
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  min-height: 124px;
}
@media (min-width: 992px) {
  .footer-bottom {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.footer-bottom__left {
  padding: 30px 0 10px;
}
@media (min-width: 992px) {
  .footer-bottom__left {
    padding: 45px 0 0;
  }
}
.footer-bottom__right {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0 30px;
}
@media (min-width: 992px) {
  .footer-bottom__right {
    display: flex;
    align-items: center;
    width: auto;
    padding: 10px 0;
  }
}
.footer__logos {
  /*
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
          */
  text-align: center;
}
@media (min-width: 992px) {
  
}
.footer__awards {
  /*
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
          */
  text-align: center;
  padding-bottom: 25px;
}
@media (min-width: 992px) {
  
}
.footer__logo {
  margin-right: 29px;
  margin-bottom: 20px;
}
.footer__logo-link:focus,
.footer__logo-link:hover {
  text-decoration: none;
}
.footer__back-to-top {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 34px;
  line-height: 1;
  color: #ef404a;
  margin-left: 40px;
}
.footer__back-to-top:focus,
.footer__back-to-top:hover {
  color: #ef404a;
}
.mailchimp .input:not([type='submit']) {
  display: inline-block;
  line-height: 40px;
  min-height: 40px;
  /*width: 100%;*/
  padding: 0 10px;
  background-color: white;
  border: solid 1px silver;
  border-radius: 4px;
  z-index: 0;
  outline: none;
  margin-right: 20px;
}
.mailchimp .input:not([type='submit']) input {
  border: none;
  outline: none;
}
@media (max-width: 768px) {
  .mailchimp input {
    display: block;
  }
  .mailchimp input.btn {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .r-rawhtml input.btn {
    margin: 0 auto;
    margin-top: 15px;
  }
}
/* Forms */

.r-form {
  padding-bottom: 30px;
}
.r-form h1,
.r-form h2 {
  margin-bottom: 2rem;
}
.r-form h3,
.r-form h4 {
  margin-bottom: 1.5rem;
}
.r-form h5,
.r-form h6 {
  margin-bottom: 1rem;
}
.r-form .container {
  padding-right: 0;
  padding-left: 0;
}
.r-form .row {
  border-bottom: solid 2px #f1f1f1;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.r-form .form-group {
  padding-bottom: 30px;
  overflow: hidden;
}
.r-form .form-group label {
  display: block;
  float: left;
  width: 250px;
  text-align: right;
  padding-top: 5px;
}
.r-form .form-group .input {
  position: relative;
  margin-left: 260px;
  min-width: 60%;
}
.r-form .form-group input,
.r-form .form-group select,
.r-form .form-group textarea,
.r-form .form-group .multi-wrapper {
  display: inline-block;
  line-height: 40px;
  min-height: 40px;
  width: 100%;
  padding: 0 10px;
  background-color: transparent;
  border: solid 1px #c0c0c0;
  border-radius: 4px;
  z-index: 0;
  outline: none;
}
.r-form .form-group input.form-control-error,
.r-form .form-group select.form-control-error,
.r-form .form-group textarea.form-control-error,
.r-form .form-group .multi-wrapper.form-control-error {
  border: solid 1px #e91320;
}
.input-calendar {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 42px;
  padding: 10px;
  background-color: #ef404a;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: -1;
}
.input-calendar svg {
  width: 100%;
  height: auto;
  fill: white;
}
.r-form .form-group input[type='checkbox'],
.r-form .form-group input[type='radio'] {
  min-width: 0;
  width: 30px;
  height: 30px;
}
.r-form .form-group input[type='radio'] {
  display: inline-block;
}
.r-form .radio-group-label {
  display: block;
  width: 250px;
  text-align: right;
  padding-bottom: 10px;
}
.r-form .button {
  margin-left: 260px;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background-color: #ef404a;
  border: 0;
  border-radius: 70px;
  padding: 14px 25px;
  transition: background-color 100ms ease-out;
}
@media (min-width: 992px) {
  .r-form .button {
    font-size: 20px;
    padding: 20px 30px;
  }
}
.r-form .button:focus,
.r-form .button:hover {
  outline: none;
  text-decoration: none;
  color: #ffffff;
  background-color: #e91320;
}
.r-form .status {
  margin-left: 260px;
  text-align: right;
}
.r-form .radio-group > label {
  padding-top: 0;
}
.r-form .radio-group .input-inner {
  display: flex;
  padding-bottom: 30px;
}
.r-form .radio-group .input-inner input {
  flex-shrink: 0;
}
.r-form .radio-group .input-inner .checkmark {
  border-radius: 50%;
}
.r-form .radio-group .input-inner .label {
  padding-top: 0;
  padding-left: 45px;
}
.r-form input:read-only {
  background-color: #f1f1f1;
}
/* checkbox */

.r-form input[type='checkbox'],
.r-form input[type='radio'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.r-form .checkmark {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #c0c0c0;
  z-index: 0;
}
.r-form .checkmark.form-control-error {
  border: 1px solid #ef404a;
}
.r-form input:checked ~ .checkmark {
  background-color: #c0c0c0;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.r-form input:checked ~ .checkmark:after {
  display: block;
}
.r-form .checkmark:after {
  left: 11px;
  top: 5px;
  width: 8px;
  height: 16px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* select arrow */

.r-form .input.select {
  position: relative;
}
.r-form .input.select select {
  appearance: none;
  -webkit-appearance: none;
}
.r-form .input.select:after {
  position: absolute;
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  top: 0;
  right: 0;
  bottom: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 40px;
  background-color: #ef404a;
  pointer-events: none;
  color: white;
  text-align: center;
  padding: 7px 0;
}
.status .text-danger {
  color: #ef404a;
}
.status .text-ok {
  color: darkgreen;
}
.r-form .checkbox label {
  padding-top: 2px;
}
@media (max-width: 768px) {
  .r-form .form-group label {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
  }
  .r-form .form-group .input {
    margin-left: 0;
    min-width: 100%;
    padding: 0;
  }
  .r-form .form-group input,
  .r-form .form-group select,
  .r-form .form-group textarea {
    display: block;
  }
  .r-form .button {
    margin-left: 0;
  }
  .r-form .status {
    margin-left: 0;
  }
}
.custom-form-import {
  max-width: 1200px;
}
/* Gallery carousel */

.gallery-carousel {
  position: relative;
  margin-bottom: 30px;
  /*  @media (min-width: @lg-breakpoint) {
    margin-bottom: 120px;
  }*/

}
.container .gallery-carousel {
  margin-left: -15px;
  margin-right: -15px;
  /*    @media (min-width: @sm-breakpoint) {
      margin-left: 0;
      margin-right: 0;
    }*/

}
.gallery-carousel__number {
  position: absolute;
  font-size: 65px;
  line-height: 1;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  right: 100px;
  bottom: 9px;
  z-index: 1;
  /*    @media (min-width: @lg-breakpoint) {
      font-size: 130px;
      right: 220px;
      bottom: 25px;
    }*/

}
.gallery-carousel__number span {
  font-size: 22px;
  /*      @media (min-width: @lg-breakpoint) {
        font-size: 45px;
      }*/

}
.gallery-carousel .owl-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 10px;
  bottom: 20px;
  /*    @media (min-width: @lg-breakpoint) {
      right: 60px;
      bottom: 50px;
    }*/

}
.gallery-carousel .owl-nav .owl-prev,
.gallery-carousel .owl-nav .owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  background-color: rgba(239, 64, 74, 0.8) !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: background-color 200ms ease-out;
  /*      @media (min-width: @lg-breakpoint) {
        width: 120px;
        height: 120px;
      }*/

}
.gallery-carousel .owl-nav .owl-prev:focus,
.gallery-carousel .owl-nav .owl-next:focus {
  background-color: rgba(239, 64, 74, 0.8) !important;
  outline: none;
}
.gallery-carousel .owl-nav .owl-prev:hover,
.gallery-carousel .owl-nav .owl-next:hover {
  background-color: #ef404a !important;
  outline: none;
}
.gallery-carousel .owl-nav .owl-prev .fa,
.gallery-carousel .owl-nav .owl-next .fa {
  font-size: 22px;
  /*        @media (min-width: @lg-breakpoint) {
          font-size: 44px;
        }*/

}
.gallery-carousel .owl-nav .owl-prev {
  order: 2;
}
.gallery-carousel .owl-nav .owl-prev .fa {
  padding-right: 5px;
}
.gallery-carousel .owl-nav .owl-next {
  order: 1;
  margin-bottom: 5px;
  /*      @media (min-width: @lg-breakpoint) {
        margin-bottom: 25px;
      }*/

}
.gallery-carousel .owl-nav .owl-next .fa {
  padding-left: 5px;
}
.gallery-carousel .owl-dots {
  position: absolute;
  text-align: right;
  right: 0;
  bottom: 0;
  font-size: 0;
}
.gallery-carousel .owl-dots .owl-dot {
  background-color: #605f5f;
  height: 10px;
  width: 45px;
  opacity: 0.9;
  transition: opacity 200ms ease-out;
  /*      @media (min-width: @lg-breakpoint) {
        height: 13px;
        width: 75px;
      }

      @media (min-width: @xxl-breakpoint) {
        height: 16px;
        width: 90px;
      }*/

}
.gallery-carousel .owl-dots .owl-dot.active {
  background-color: #ef404a;
}
.gallery-carousel .owl-dots .owl-dot:focus,
.gallery-carousel .owl-dots .owl-dot:hover {
  opacity: 1;
  outline: none;
}
/* Header */

.header {
  position: relative;
  display: block;
  margin-bottom: 55px;
  /*    &__image-container {
        height: 100vh;

        .v-experience-item &,
        .v-catalogue-item &,
        .experience-view & {
            height: calc(~'100vh - 50px');

            @media (min-width: @lg-breakpoint) {
                height: calc(~'100vh - 100px');
            }
        }
    }*/

  /*    &__inclusive-tourism-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        background: #ef404a;
        border-radius: 17px;
        box-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
        margin-right: 10px;
        padding: 7px;

        svg {
            width: 30px;
            height: auto;
            fill: white;
        }
    }*/

}
@media (min-width: 992px) {
  .header {
    margin-bottom: 110px;
  }
}
.v-experience-item .header,
.v-catalogue-item .header,
.experience-view .header {
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .v-experience-item .header,
  .v-catalogue-item .header,
  .experience-view .header {
    margin-bottom: 30px;
  }
}
.v-experience-item .header.header--without-banner,
.v-catalogue-item .header.header--without-banner,
.experience-view .header.header--without-banner {
  margin-bottom: 60px;
}
.header--without-banner {
  margin-bottom: 60px;
}
.header__image-container {
  position: relative;
}
.header__teaser-container {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 150px;
  background-color: rgba(239, 64, 74, 0.7);
}
.header__teaser-container .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 768px) {
  .header__teaser-container .content {
    flex-direction: column;
  }
}
.header__teaser-container .content .title {
  color: white;
  font-size: 26px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .header__teaser-container .content .title {
    font-size: 16px;
  }
}
.header__teaser-container .content .subtitle {
  color: white;
  font-size: 18px;
}
@media (max-width: 768px) {
  .header__teaser-container .content .subtitle {
    font-size: 12px;
  }
}
.header__teaser-container .content .btn {
  font-size: 16px;
  padding: 10px 20px;
}
@media (max-width: 768px) {
  .header__teaser-container .content .btn {
    font-size: 14px;
    padding: 5px 15px;
  }
}
.header__icon-container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef404a;
  background-color: #ffffff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  right: 15px;
  bottom: -40px;
  z-index: 1;
}
@media (min-width: 576px) {
  .header__icon-container {
    right: calc(50% - (540px / 2) + 15px);
  }
}
@media (min-width: 768px) {
  .header__icon-container {
    right: calc(50% - (720px / 2) + 15px);
  }
}
@media (min-width: 992px) {
  .header__icon-container {
    width: 120px;
    height: 120px;
    right: calc(50% - (960px / 2) + 15px);
    bottom: -60px;
  }
}
@media (min-width: 1200px) {
  .header__icon-container {
    right: calc(50% - (1140px / 2) + 15px);
  }
}
@media (min-width: 1800px) {
  .header__icon-container {
    right: calc(50% - (1670px / 2) + 15px);
  }
}
.header__icon-container img {
  width: 40px;
  height: 40px;
}
.header__image-content {
  position: relative;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  height: 100vh;
  width: 100%;
}
.header__image-content::after {
  position: absolute;
  content: '';
  background-image: linear-gradient(119deg, #000000, #634988);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.48;
}
.header__image-content > .container {
  position: relative;
  z-index: 1;
}
.v-experience-item .header__image-content,
.v-catalogue-item .header__image-content,
.experience-view .header__image-content {
  height: calc(100vh - 50px);
}
@media (min-width: 992px) {
  .v-experience-item .header__image-content,
  .v-catalogue-item .header__image-content,
  .experience-view .header__image-content {
    height: calc(100vh - 100px);
  }
}
.header__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.header__content {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}
.v-experience-item .header__content,
.v-catalogue-item .header__content,
.experience-view .header__content {
  margin-top: 88px;
}
.header .catalogue-item__like {
  position: relative;
  top: 0;
  left: 0;
  padding-top: 10px;
  z-index: 9;
}
.header__inclusive-tourism-icons {
  position: relative;
  display: flex;
  margin-top: 25px;
  margin-left: 5px;
}
.header__inclusive-tourism-icon {
  display: flex;
  cursor: pointer;
}
.header__inclusive-tourism-icon .fa-chevron-down {
  font-size: 22px;
  line-height: 44px;
  margin-left: 8px;
}
.header__title {
  font-size: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  line-height: 1.1;
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .header__title {
    font-size: 70px;
    margin-bottom: 26px;
  }
}
@media (min-width: 1200px) {
  .header__title {
    font-size: 80px;
  }
}
@media (min-width: 1800px) {
  .header__title {
    font-size: 90px;
  }
}
.header__title i.stars.fa {
  font-size: 16px;
}
.header__title span {
  display: block;
}
.header__description {
  font-size: 15px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 28px;
  max-width: 820px;
  /*        .v-experience-item &,
        .v-catalogue-item &,
        .experience-view & {
            margin-bottom: 0;
        }*/

}
@media (min-width: 992px) {
  .header__description {
    font-size: 20px;
    margin-bottom: 56px;
  }
}
@media (min-width: 1200px) {
  .header__description {
    margin-bottom: 66px;
  }
}
@media (min-width: 1800px) {
  .header__description {
    margin-bottom: 76px;
  }
}
.v-catalogue-item .header__description {
  margin-bottom: 0;
}
.header__skip-button {
  margin-left: 10px;
}
@media (min-width: 992px) {
  .header__skip-button {
    margin-left: 15px;
  }
}
.header__skip-button > i {
  font-size: 18px;
  margin-right: 6px;
  transform: translateY(3px);
}
@media (min-width: 992px) {
  .header__skip-button > i {
    font-size: 24px;
    transform: translateY(2px);
  }
}
.header__scroll-down {
  position: absolute;
  color: #ffffff;
  width: 100%;
  bottom: 10px;
  left: 0;
  /*        @media (min-width: @lg-breakpoint) {
            bottom: 33px;
        }*/

}
.header--has-teaser .scroll-down {
  bottom: 160px;
}
.header--without-banner .navigation-bar {
  position: relative;
  background-color: rgba(239, 64, 74, 0.7);
  backdrop-filter: blur(5px);
  top: 0;
  margin-left: 0;
  transition: padding-left 300ms linear, margin-left 300ms linear;
  /* Red stripe below the navigation bar. */

}
@media (min-width: 992px) {
  .header--without-banner .navigation-bar {
    padding-left: calc(50% - (960px / 2) + 15px);
  }
}
@media (min-width: 1200px) {
  .header--without-banner .navigation-bar {
    padding-left: calc(50% - (1140px / 2) + 15px);
  }
}
@media (min-width: 1800px) {
  .header--without-banner .navigation-bar {
    padding-left: calc(50% - (1670px / 2) + 15px);
  }
}
.header--without-banner .navigation-bar::before {
  position: absolute;
  content: '';
  background-color: rgba(239, 64, 74, 0.7);
  left: 0;
  right: 0;
  height: 30px;
  top: 100%;
  transition: height 300ms linear;
}
.event-image {
  position: relative;
}
.event-image .catalogue-item__like {
  position: absolute;
  top: 35px;
  right: 35px;
  padding-top: 10px;
  z-index: 9;
}
@media (min-width: 992px) {
  .event-image {
    /*top: 35px;*/
    right: 35px;
  }
}
.scroll-down__arrow {
  font-size: 28px;
  line-height: 1;
  animation: fadeinout 1.8s infinite;
}
@media (min-width: 992px) {
  .scroll-down__arrow {
    font-size: 36px;
  }
}
.scroll-down__arrow + .scroll-down__arrow {
  margin-top: -13px;
}
.scroll-down__arrow--two {
  opacity: 1;
  animation-delay: 0.5s;
}
.scroll-down__arrow--three {
  display: none;
}
@media (min-width: 992px) {
  .scroll-down__arrow--three {
    display: block;
    opacity: 1;
    animation-delay: 1s;
  }
}
@keyframes fadeinout {
  0% {
    opacity: 1;
  }
  22% {
    opacity: 0.5;
  }
  25% {
    opacity: 0.5;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/* m2-navigation */

:root {
  --m2-red: #ef404a;
  --m2-text-color: #000;
  /*#605f5f;*/
  --m2-light-blue: #f3fbfd;
  --m2-dark-gray: #686767;
}
/* common */

.m2-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 100%;
  z-index: 2;
}
.m2-topbar-bg,
.m2-topmenu-bg {
  display: flex;
  justify-content: center;
}
.m2-topbar,
.m2-topmenu {
  display: flex;
  width: 100%;
  max-width: 1670px;
  justify-content: space-between;
}
.m2-dd-toggle {
  display: none;
}
.m2-dd-show {
  display: flex;
}
.m2-dd-content {
  flex-direction: column;
  position: absolute;
  z-index: 2;
}
/* common */

/* topbar */

.m2-topbar-bg {
  background: var(--m2-red);
}
.m2-topbar,
.m2-topbar a {
  color: #fff;
  text-decoration: none;
}
.m2-topbar-item {
  padding: 10px 15px;
  font-size: 14px;
}
.m2-topbar-sm .m2-topbar-item {
  display: flex;
}
.m2-topbar-sm .m2-topbar-item a:not(:last-of-type) {
  padding-right: 10px;
}
.m2-topbar-sm .m2-topbar-item div:nth-of-type(1) {
  padding-right: 10px;
}
.m2-topbar-sm .m2-topbar-item div:nth-of-type(2) {
  margin-top: 1px;
  margin-bottom: -1px;
}
.m2-topbar-nl a {
  white-space: nowrap;
}
.m2-topbar-nl a i {
  margin-right: 5px;
}
.m2-topbar-langs .m2-dd-content {
  background: #fff;
  border: solid 8px var(--m2-dark-gray);
  margin-top: 5px;
}
.m2-topbar-langs .m2-dd-content a {
  color: var(--m2-text-color);
  padding: 5px 10px;
}
.m2-topbar-langs .m2-dd-content a:hover {
  background: var(--m2-dark-gray);
  color: #fff;
}
.m2-topbar-langs .m2-dd-content a:not(:last-of-type) {
  border-bottom: solid 8px var(--m2-dark-gray);
}
.m2-topbar-langs a {
  white-space: nowrap;
}
.m2-topbar-langs a i {
  margin-right: 5px;
}
.m2-topbar-shop a {
  white-space: nowrap;
}
.m2-topbar-shop a i {
  margin-right: 5px;
}
/* topbar */

/* topmenu */

.m2-topmenu-bg {
  background: #fff;
}
.m2-topmenu {
  align-items: center;
}
.m2-topmenu,
.m2-topmenu a {
  color: var(--m2-text-color);
}
.m2-topmenu-item {
  position: relative;
  padding: 15px 15px 10px 15px;
}
.m2-topmenu-ham {
  display: none;
}
.m2-topmenu-logo img {
  width: 90px;
  height: auto;
}
.m2-topmenu-menu .m2-topmenu-item {
  display: flex;
  flex-direction: row;
  margin-bottom: -10px;
}
.m2-topmenu-menu a {
  display: block;
  color: var(--m2-text-color);
  text-decoration: none;
  padding: 10px 15px 20px;
}
.m2-topmenu-menu .m2-topmenu-secondary-link {
  padding: 0 15px 10px;
  font-size: 16px;
}
.m2-dd-content-mm {
  position: fixed;
  left: 0px;
  width: 100%;
  z-index: 1;
  /*background-color: rgba(191,191,191,0.8);*/
  background-color: rgba(255, 255, 255, 0.9);
}
.m2-dd-content-mm .container {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.m2-dd-content-mm .container a {
  padding: 0 15px 10px 15px;
}
.m2-dd-content-search {
  flex-direction: row;
  position: absolute;
  right: 0;
  z-index: 2;
}
.m2-topmenu-search a {
  color: var(--m2-text-color);
}
.m2-dd-content-search {
  border: solid 8px var(--m2-dark-gray);
}
.m2-dd-content-search input {
  border: none;
  padding: 0 10px;
  font-size: 16px;
  outline: none;
}
.m2-dd-content-search button {
  background: var(--m2-red);
  color: white;
  outline: none;
  border: none;
  padding: 5px 10px;
  font-size: 16px;
}
.m2-topmenu-secondary-link.active {
  color: var(--m2-red);
}
.m2-topmenu-secondary-link:hover {
  text-decoration: underline;
}
.m2-dd-content-mm-text {
  font-size: 13px;
}
.m2-dd-content-mm-text p strong {
  font-size: 16px;
}
.m2-col-last a:last-child {
  color: var(--m2-red);
}
/* topmenu */

/* desktop */

@media screen and (min-width: 992px) {
  /* topbar */
  
  .m2-topbar-ct.active {
    background: #fff;
  }
  .m2-topbar-ct.active a {
    color: var(--m2-red);
  }
  /* topbar */
  
  /* topmenu */
  
  .m2-dd-content-mm {
    padding: 25px 0 15px 0;
    justify-content: center;
  }
  .m2-dd-content-mm .row {
    max-width: 1140px;
    width: 100%;
  }
  .m2-dd-content-mm a {
    color: #000;
  }
  /*    .m2-topmenu-menu a.m2-topmenu-primary-link {
          font-size: 19px;
      }*/
  
  .m2-topmenu-menu a.m2-topmenu-primary-link.active,
  .m2-topmenu-menu .m2-topmenu-primary-link.active .m2-dd-link {
    background: var(--m2-red);
    color: #fff;
  }
  /* topmenu */
}
/* mobile */

@media screen and (max-width: 991px) {
  /* common */
  
  .m2-nav {
    position: relative;
  }
  /* common */
  
  /* topbar */
  
  .m2-topbar-bg {
    order: 1;
    background: #fff;
    color: var(--m2-text-color);
  }
  .m2-topbar {
    flex-direction: column;
  }
  .m2-topbar,
  .m2-topbar a {
    color: var(--m2-text-color);
  }
  .m2-topbar-item {
    font-size: 18px;
  }
  .m2-topbar-sm {
    background: var(--m2-red);
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 5px;
  }
  .m2-topbar-sm .m2-topbar-item {
    flex-direction: column;
    align-items: center;
  }
  .m2-topbar-sm a {
    color: #fff;
  }
  .m2-topbar-ct {
    background: var(--m2-light-blue);
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .m2-topbar-ct a {
    color: var(--m2-red);
  }
  /* topbar */
  
  /* topmenu */
  
  .m2-topmenu {
    flex-wrap: wrap;
  }
  .m2-topmenu .m2-topmenu-item {
    padding: 20px 15px 15px 15px;
  }
  .m2-topbar:not(.m2-topbar.m2-show),
  .m2-topmenu-menu:not(.m2-topmenu-menu.m2-show) {
    display: none;
  }
  .m2-topmenu-menu {
    order: 1;
    width: 100%;
  }
  .m2-topmenu-menu .m2-topmenu-item {
    flex-direction: column;
  }
  .m2-topmenu-ham {
    display: initial;
  }
  .m2-topmenu-ham a {
    color: var(--m2-red);
    text-decoration: none;
  }
  .m2-topmenu-search {
    padding-right: 15px;
  }
  .m2-topmenu-search a {
    color: var(--m2-red);
  }
  .m2-dd-content-mm {
    position: relative;
  }
  .m2-topmenu-menu a {
    padding: 0;
  }
  .m2-topmenu-menu .m2-topmenu-primary-link {
    font-size: 20px;
    padding: 0px 15px 10px 15px;
    margin: 0 -15px 10px -15px;
    border-bottom: solid 1px #c0c0c0;
  }
  .m2-topmenu-menu .m2-topmenu-secondary-link {
    font-size: 14px;
    padding: 0 0 15px 0;
  }
  .m2-topmenu-menu .m2-topmenu-primary-link:first-child {
    padding-top: 10px;
    border-top: solid 1px #c0c0c0;
  }
  .m2-topmenu-menu .m2-topmenu-primary-link:last-child {
    margin-bottom: -5px;
  }
  .m2-dd-content-mm-text {
    padding-top: 10px;
  }
  .m2-topmenu-menu a.m2-topmenu-primary-link.active,
  .m2-topmenu-menu .m2-topmenu-primary-link.active .m2-dd-link {
    color: var(--m2-red);
  }
  /* topmenu */
}
/* m2-navigation */

/* navigation */

.navigation-bar {
  position: absolute;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: rgba(239, 64, 74, 0.7);
  top: 40px;
  min-height: 67px;
  left: 0;
  right: 0;
  padding-left: 15px;
  z-index: 100;
  /* We can easily change cropped out fixed main navigation for besktop if we change margins to paddings in the breakpoints bellow. */

}
@media (min-width: 576px) {
  .navigation-bar {
    padding-left: calc(50% - (540px / 2) + 15px);
  }
}
@media (min-width: 768px) {
  .navigation-bar {
    padding-left: calc(50% - (720px / 2) + 15px);
  }
}
@media (min-width: 992px) {
  .navigation-bar {
    background-color: transparent;
    top: 40px;
    min-height: 88px;
    padding-left: 0;
    margin-left: calc(50% - (960px / 2) + 15px);
  }
}
@media (min-width: 1200px) {
  .navigation-bar {
    padding-left: 0;
    margin-left: calc(50% - (1140px / 2) + 15px);
  }
}
@media (min-width: 1800px) {
  .navigation-bar {
    padding-left: 0;
    margin-left: calc(50% - (1670px / 2) + 15px);
  }
}
.navigation-bar::after {
  position: absolute;
  content: '';
  background-color: rgba(239, 64, 74, 0.7);
  backdrop-filter: blur(5px);
  left: 100%;
  right: 150px;
  top: 0;
  bottom: 0;
  transition: left 400ms ease-out;
  z-index: -1;
  /*        @media (min-width: @xl-breakpoint) {
            right: 150px; //262px;
        }*/

}
.navigation-bar-before {
  display: none;
  background-color: rgba(239, 64, 74, 0.7);
  height: 30px;
  width: 100%;
}
.header--without-banner .navigation-bar-before {
  display: block;
}
.navigation-bar-after {
  display: none;
  height: 1px;
  width: 100%;
  background-color: transparent;
}
.header--without-banner .navigation-bar-after {
  display: block;
}
.navigation-bar .top-bar {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  background-color: transparent;
  height: 40px;
  color: #fff;
  text-align: right;
  line-height: 40px;
  padding: 0 20px;
  z-index: 101;
}
.navigation-bar .top-bar .language-selector {
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease-out;
  /*            @media (min-width: @lg-breakpoint) {
                top: 100%;
            }*/

}
.navigation-bar .top-bar .language-selector--open {
  opacity: 1;
  visibility: visible;
}
.navigation-bar .top-bar .language-selector--open + .navigation-bar__featured-link--language-selector i {
  transform: rotate(180deg);
}
.navigation-bar .top-bar .language-selector__item {
  position: relative;
  display: block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #ef404a;
  min-width: 90px;
  padding: 10px 20px;
  /*margin-top: 3px;*/
  margin-bottom: 3px;
  transition: background-color 300ms ease-out;
}
@media (min-width: 992px) {
  .navigation-bar .top-bar .language-selector__item {
    padding: 10px 35px;
  }
}
.navigation-bar .top-bar .language-selector__item:focus,
.navigation-bar .top-bar .language-selector__item:hover {
  text-decoration: none;
  background-color: #ef404a;
}
.navigation-bar--fixed {
  position: fixed;
  top: 0;
}
@media (min-width: 992px) {
  .navigation-bar--fixed::after {
    left: 0;
  }
}
.navigation-bar--fixed .language-selector--open {
  visibility: hidden !important;
}
.header--without-banner .navigation-bar--fixed {
  position: fixed;
  top: 0;
  padding-left: 15px;
}
@media (min-width: 576px) {
  .header--without-banner .navigation-bar--fixed {
    padding-left: calc(50% - (540px / 2) + 15px);
  }
}
@media (min-width: 768px) {
  .header--without-banner .navigation-bar--fixed {
    padding-left: calc(50% - (720px / 2) + 15px);
  }
}
@media (min-width: 992px) {
  .header--without-banner .navigation-bar--fixed {
    padding-left: 0;
    margin-left: calc(50% - (960px / 2) + 15px);
  }
}
@media (min-width: 1200px) {
  .header--without-banner .navigation-bar--fixed {
    margin-left: calc(50% - (1140px / 2) + 15px);
  }
}
@media (min-width: 1800px) {
  .header--without-banner .navigation-bar--fixed {
    margin-left: calc(50% - (1670px / 2) + 15px);
  }
}
.header--without-banner .navigation-bar--fixed::before {
  height: 0;
}
.header--without-banner .navigation-bar--fixed::after {
  left: auto;
}
.navigation-bar--fixed .navigation-bar__logo-border {
  opacity: 0;
}
.navigation-bar--fixed + .navigation-bar-after {
  margin-top: 67px;
}
@media (min-width: 992px) {
  .navigation-bar--fixed + .navigation-bar-after {
    margin-top: 88px;
  }
}
.navigation-bar--fixed .navigation-bar__featured-link--heart svg {
  animation: heartbeat;
  animation-duration: 1s;
  animation-delay: 200ms;
}
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.2);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.2);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.navigation-bar__logo-border {
  opacity: 0;
  transition: opacity 200ms ease-out;
}
@media (min-width: 992px) {
  .navigation-bar__logo-border {
    opacity: 1;
  }
}
.navigation-bar__logo-link {
  position: relative;
  display: inline-block;
  color: #ffffff;
  height: 60px;
}
@media (min-width: 992px) {
  .navigation-bar__logo-link {
    height: auto;
    margin-left: 15px;
    margin-top: 14px;
  }
}
.navigation-bar__logo-link:focus,
.navigation-bar__logo-link:hover {
  color: #ffffff;
}
.navigation-bar__logo-link:focus .navigation-bar__logo-loupe,
.navigation-bar__logo-link:hover .navigation-bar__logo-loupe {
  color: #ef404a;
}
.navigation-bar__logo-loupe {
  transition: color 200ms ease-out;
}
.navigation-bar__content {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}
@media (min-width: 992px) {
  .navigation-bar__content {
    position: relative;
  }
}
.navigation-bar__main-navigation {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: none;
  align-items: center;
}
@media (min-width: 992px) {
  .navigation-bar__main-navigation {
    display: flex;
  }
}
.navigation-bar__shop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-left: 15px;
  background-color: #ef404a;
  backdrop-filter: blur(5px);
}
@media (min-width: 992px) {
  .navigation-bar__shop {
    flex: 0 0 auto;
    /*width: 180px;*/
    padding: 10px 16px;
    margin-left: 5px;
  }
  .navigation-bar__shop-link {
    font-size: 0.95em;
  }
}
@media (min-width: 1150px) {
  .navigation-bar__shop {
    margin-left: 30px;
  }
}
@media (min-width: 1200px) {
  .navigation-bar__shop {
    /*width: 262px;*/
    padding: 10px 30px;
  }
}
@media (min-width: 1550px) {
  .navigation-bar__shop {
    margin-left: 60px;
  }
}
.navigation-bar__shop-container {
  line-height: 1;
}
.navigation-bar__shop-link {
  display: inline-block;
  color: #ffffff;
  line-height: 1;
  font-weight: bold;
  font-size: 0.75em;
}
.navigation-bar__shop-link:hover {
  color: #ffffff;
  text-decoration: none;
}
.navigation-bar__featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px 10px 0;
  margin-left: 10px;
}
@media (min-width: 992px) {
  .navigation-bar__featured {
    flex: 0 0 auto;
    background-color: rgba(239, 64, 74, 0.7);
    backdrop-filter: blur(5px);
    width: 150px;
    padding: 10px 20px;
    /*margin-left: 5px;*/
  
  }
}
@media (min-width: 1150px) {
  
}
@media (min-width: 1200px) {
  .navigation-bar__featured {
    /*width: 262px;*/
    padding: 10px 20px;
  }
}
@media (min-width: 1550px) {
  
}
.navigation-bar__featured .favorites-container {
  position: absolute;
  background-color: rgba(96, 95, 95, 0.95);
  top: calc(100% + 17px);
  right: 0;
  height: calc(100vh - 45px - 88px - 18px);
  width: 100%;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: opacity 300ms ease-out, visibility 300ms ease-out, transform 300ms ease-out;
}
@media (min-width: 500px) {
  .navigation-bar__featured .favorites-container {
    width: 400px;
  }
}
.navigation-bar__featured .favorites-container--open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.navigation-bar__featured .favorites-container__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px 5px;
}
.navigation-bar__featured .favorites-container__title {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}
.navigation-bar__featured .favorites-container__close-button {
  line-height: 1;
  color: #ffffff;
  background-color: transparent;
  border: 0;
  padding: 5px 5px;
}
.navigation-bar__featured .favorites-container .mini-experiences {
  display: block;
  flex-direction: column;
  padding: 10px;
}
.navigation-bar__featured .favorites-container .mini-experience {
  width: 100%;
  max-width: 100%;
  padding-right: 0;
}
.navigation-bar__featured .favorites-container .mini-experience:last-of-type {
  margin-bottom: 0;
}
.navigation-bar__featured .favorites-container .no-results {
  color: white;
  padding: 5px;
}
.navigation-bar__featured .search-container {
  position: absolute;
  background-color: rgba(96, 95, 95, 0.95);
  top: calc(100% + 17px);
  right: 0;
  width: auto;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: opacity 300ms ease-out, visibility 300ms ease-out, transform 300ms ease-out;
}
@media (min-width: 500px) {
  .navigation-bar__featured .search-container {
    width: 400px;
  }
  .navigation-bar__featured .search-container__input {
    width: auto;
  }
}
.navigation-bar__featured .search-container--open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.navigation-bar__featured .search-container__form {
  display: flex;
  align-items: center;
  padding: 15px;
}
.navigation-bar__featured .search-container__input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.9);
  border: 0;
  height: 45px;
  padding: 5px 15px 0;
  width: 200px;
}
.navigation-bar__featured .search-container__input:focus {
  outline: none;
}
.navigation-bar__featured .search-container__submit {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
  background-color: rgba(239, 64, 74, 0.8);
  border: 0;
  height: 45px;
  padding: 17px 20px 14px 15px;
  margin-left: 0px;
  transition: background-color 300ms ease-out;
}
.navigation-bar__featured .search-container__submit:focus,
.navigation-bar__featured .search-container__submit:hover {
  background-color: #ef404a;
  outline: none;
}
.header--without-banner .navigation-bar__featured {
  background-color: transparent;
  backdrop-filter: none;
}
.navigation-bar__featured-container {
  position: relative;
  /*overflow: hidden;*/
  line-height: 1;
}
.navigation-bar__featured-link {
  display: inline-block;
  color: #ffffff;
  line-height: 1;
}
.navigation-bar__featured-link--heart {
  padding: 0;
}
@media (min-width: 992px) {
  .navigation-bar__featured-link--heart {
    padding: 0 5px;
  }
}
@media (min-width: 1200px) {
  .navigation-bar__featured-link--heart {
    padding: 0 10px;
  }
}
.navigation-bar__featured-link--heart:focus,
.navigation-bar__featured-link--heart:hover {
  animation-name: zoom-in-out;
  animation-duration: 1s;
}
.navigation-bar__featured-link--heart svg {
  width: 16px;
  height: 14px;
}
@media (min-width: 992px) {
  .navigation-bar__featured-link--heart svg {
    width: 32px;
    height: 28px;
  }
}
.navigation-bar__featured-link--search {
  padding: 0;
}
@media (min-width: 992px) {
  .navigation-bar__featured-link--search {
    padding: 0 5px;
    margin-left: 5px;
  }
}
@media (min-width: 1200px) {
  .navigation-bar__featured-link--search {
    padding: 0 10px;
  }
}
.navigation-bar__featured-link--search:focus,
.navigation-bar__featured-link--search:hover {
  animation-name: zoom-in-out;
  animation-duration: 1s;
}
.navigation-bar__featured-link--search svg {
  transform: scale(0.5);
}
@media (min-width: 992px) {
  .navigation-bar__featured-link--search svg {
    transform: none;
  }
}
@keyframes zoom-in-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.navigation-bar__featured-link--language-selector {
  position: relative;
  font-size: 17px;
  font-weight: bold;
  text-align: left;
  text-decoration: none;
  background-color: transparent;
  border: 0;
  top: auto;
  min-width: auto;
  right: auto;
  padding: 0;
  margin-left: 10px;
  margin-top: 2px;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease-out, right 300ms ease-out;
  display: inline-block;
}
@media (min-width: 992px) {
  
}
.navigation-bar__featured-link--language-selector--open {
  opacity: 1;
  visibility: visible;
  right: 0;
}
@media (min-width: 992px) {
  .navigation-bar__featured-link--language-selector--open {
    right: auto;
  }
}
.navigation-bar__featured-link--language-selector:focus,
.navigation-bar__featured-link--language-selector:hover {
  outline: none;
  color: #ffffff;
  text-decoration: none;
}
.navigation-bar__featured-link--language-selector i {
  font-size: 15px;
  width: 10px;
  margin-left: 3px;
  transform: rotate(0);
  transition: transform 300ms ease-out;
}
.navigation-bar__featured-link--mobile-toggle {
  font-size: 16px;
  background-color: transparent;
  border: 0;
  padding-left: 5px;
  margin-left: 8px;
  width: 19px;
}
@media (min-width: 992px) {
  .navigation-bar__featured-link--mobile-toggle {
    display: none;
  }
}
.navigation-bar__featured-link--mobile-toggle .fa-times {
  font-size: 18px;
  padding-top: 1px;
}
.navigation-bar__featured-link--mobile-toggle:focus,
.navigation-bar__featured-link--mobile-toggle:hover {
  color: #ffffff;
  outline: none;
}
/* navigation */

.shopPopupLinks-container {
  width: 100%;
  display: flex;
  background-color: rgba(96, 95, 95, 0.95);
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
}
@media (max-width: 576px) {
  
}
.shopPopupLinks-container-close {
  position: absolute;
  display: block;
  top: 10px;
  right: 20px;
  color: #fff;
  cursor: pointer;
}
.shopPopupLinks-popup {
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 576px) {
  .shopPopupLinks-popup {
    overflow-y: auto;
    height: 100vh;
    padding-bottom: 70px;
    /**/
  }
  .shopPopupLinks-container-close {
    top: 20px;
    /**/
  }
}
.shopPopupLinks-popup-item {
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}
.shopPopupLinks-popup-item:hover {
  text-decoration: none;
}
.shopPopupLinks-popup-item:hover .shopPopupLinks-popup-item-title span:after {
  animation-name: zoom-in-out-button-icon;
  animation-duration: 1s;
}
.shopPopupLinks-popup-item-icon {
  background: #EF404A;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1.5rem;
}
.shopPopupLinks-popup-item-icon svg {
  display: inline-block;
  max-width: 74px;
  max-height: 74px;
  color: #fff;
  fill: #fff;
}
.shopPopupLinks-popup-item-title {
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: bold;
}
.shopPopupLinks-popup-item-title span:after {
  content: url('/images/loupe-red.svg');
  margin-top: 0px;
  display: block;
  margin-left: 0px;
  transform: translateY(5px);
}
/* inclusive tourism bullets*/

ul.inclusive-tourism-bullets {
  columns: 2;
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 1rem;
}
ul.inclusive-tourism-bullets li {
  position: relative;
  padding-left: 2.5em;
  padding-bottom: 0.75rem;
  font-size: 13px;
}
ul.inclusive-tourism-bullets li:before {
  content: '';
  position: absolute;
  /*top: 0.25rem;*/
  left: 0;
  width: 1.25rem;
  height: 1rem;
  background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='18' height='18' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'><path fill='gray' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/></svg>") no-repeat;
}
.inclusive-tourism-accordion {
  background-color: #F3FBFD;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  transition: 0.4s;
}
.inclusive-tourism-accordion.active {
  background-color: #F3FBFD;
}
.inclusive-tourism-accordion:after {
  content: '\002B';
  color: #777;
  float: right;
  margin-left: 5px;
  font-size: 2rem;
  /*line-height: 1rem;*/

}
.inclusive-tourism-accordion.active:after {
  content: "\2212";
}
.inclusive-tourism-accordion-panel {
  padding: 0;
  background-color: #F3FBFD;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: 13px;
  margin-bottom: 1rem;
}
.inclusive-tourism-accordion-panel p {
  padding: 0.5rem 1rem;
}
.inclusive-tourism-accordion img {
  margin-right: 0.75rem;
}
/* Heading */

.heading {
  text-align: center;
  margin-bottom: 30px;
}
.heading--left {
  text-align: left;
}
.heading__title {
  font-size: 40px;
  line-height: 1.2;
  color: #ef404a;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .heading__title {
    font-size: 70px;
  }
}
.heading__title--small {
  font-size: 30px;
}
@media (min-width: 992px) {
  .heading__title--small {
    font-size: 40px;
  }
}
.heading__subtitle {
  font-size: 40px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .heading__subtitle {
    font-size: 70px;
  }
}
.heading__description {
  line-height: 1.2;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .heading__description {
    margin-top: 55px;
    max-width: 80%;
    margin: 55px auto 0;
  }
}
.r-heading {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
/* Image gallery */

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -18px 30px;
}
@media (min-width: 576px) {
  .image-gallery {
    margin: 0 -3px 120px;
  }
}
@media (min-width: 992px) {
  .image-gallery {
    margin: 0 -8px 120px;
  }
}
.image-gallery__container {
  flex: 0 1 auto;
  width: 100%;
  padding: 3px;
}
@media (min-width: 992px) {
  .image-gallery__container {
    flex: 0 1 auto;
    width: 33.33%;
    padding: 8px;
  }
}
.image-gallery__container--small {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.image-gallery__image-container-small {
  flex: 0 1 auto;
  width: 50%;
  padding: 3px;
}
@media (min-width: 992px) {
  .image-gallery__image-container-small {
    padding: 8px;
  }
}
.image-gallery__image-container {
  position: relative;
  background-size: cover;
  background-position: center center;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
}
.image-gallery__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* Image with text */

.image-with-text {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .image-with-text {
    margin-bottom: 120px;
  }
}
.image-with-text__image-container {
  position: relative;
  overflow: hidden;
}
.image-with-text__image-container:hover .image-with-text__image {
  transform: scale(1.1);
}
.image-with-text__image-container--overlay::after {
  position: absolute;
  content: '';
  background-image: linear-gradient(119deg, #000000, #634988);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.3;
}
.image-with-text__image {
  object-fit: cover;
  width: 100%;
  min-height: 510px;
  height: 100%;
  transform: scale(1);
  transition: transform 500ms ease-out;
}
.image-with-text__title {
  position: absolute;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .image-with-text__title {
    font-size: 70px;
    top: 40%;
  }
}
@media (min-width: 1800px) {
  .image-with-text__title {
    top: 50%;
  }
}
.image-with-text__date {
  position: absolute;
  color: #605f5f;
  background-color: #ffffff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  min-width: 70px;
  left: 25px;
  top: -40px;
  padding: 27px 5px 30px;
}
@media (min-width: 992px) {
  .image-with-text__date {
    min-width: 120px;
    left: 45px;
    top: -80px;
    padding: 57px 10px 60px;
  }
}
@media (min-width: 1800px) {
  .image-with-text__date {
    left: 140px;
  }
}
.image-with-text__day {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 9px;
}
@media (min-width: 992px) {
  .image-with-text__day {
    font-size: 70px;
  }
}
.image-with-text__month {
  font-size: 9px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .image-with-text__month {
    font-size: 10px;
  }
}
.image-with-text__content {
  position: relative;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  background-color: rgba(96, 95, 95, 0.8);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  width: 95%;
  padding: 110px 10px 40px;
  margin: -100px auto 0;
}
@media (min-width: 992px) {
  .image-with-text__content {
    width: 80%;
    padding: 77px 0 94px;
    margin: -160px auto 0;
  }
}
.image-with-text__content-title {
  font-size: 30px;
  font-weight: bold;
  max-width: 820px;
  margin: 0 auto 20px;
  padding: 0 10px;
}
@media (min-width: 992px) {
  .image-with-text__content-title {
    font-size: 40px;
    margin: 0 auto 35px;
  }
}
.image-with-text__content-description {
  font-size: 15px;
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .image-with-text__content-description {
    font-size: 20px;
  }
}
.image-with-text__content-description strong {
  font-weight: bold;
}
.image-with-text__content-description p {
  margin-bottom: 30px;
}
.image-with-text__content-description a {
  color: #ffffff;
}
.image-with-text--horizontal {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .image-with-text--horizontal {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .image-with-text--horizontal .image-with-text__image-container,
  .image-with-text--horizontal .image-with-text__content {
    flex: 1 1 0;
  }
}
.image-with-text--horizontal .image-with-text__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  background-color: #828282;
}
@media (max-width: calc(991px)) {
  .image-with-text--horizontal .image-with-text__content {
    width: 100%;
    padding: 30px 15px;
  }
}
.image-with-text--horizontal .image-with-text__content-description {
  padding: 0 90px;
}
@media (max-width: calc(991px)) {
  .image-with-text--horizontal .image-with-text__content-description {
    padding: 0 10px;
  }
}
.image-with-text--horizontal .image-with-text__content-links {
  padding: 0 90px;
}
@media (max-width: calc(991px)) {
  .image-with-text--horizontal .image-with-text__content-links {
    padding: 0 10px;
  }
}
.image-with-text--horizontal .image-with-text__title {
  text-align: center;
}
.image-with-text--horizontal-right .image-with-text__image-container {
  order: 2;
}
.image-with-text--horizontal-right .image-with-text__content {
  order: 1;
}
.image-with-text.new-design .image-with-text__content {
  color: #EF404A;
  background: #F3FBFD;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.image-with-text.new-design .image-with-text__content-title {
  line-height: 120%;
  font-weight: 700;
  color: #EF404A;
}
@media (min-width: 992px) {
  .image-with-text.new-design .image-with-text__content-title {
    line-height: 120%;
  }
}
.image-with-text.new-design .image-with-text__content-description {
  line-height: 150%;
  color: #605F5F;
}
@media (min-width: 992px) {
  .image-with-text.new-design .image-with-text__content-description {
    font-size: 16px;
    line-height: 150%;
  }
}
.image-with-text.new-design .image-with-text__content-description a {
  color: #605F5F;
}
.image-with-text.new-design .image-with-text--horizontal .image-with-text__content {
  background: rgba(29, 183, 212, 0.05);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.image-with-text.new-design.-small .image-with-text__content {
  padding: 35px 10px 5px;
  margin: -60px auto 0;
}
@media (min-width: 992px) {
  .image-with-text.new-design.-small .image-with-text__content {
    padding: 77px 0 94px;
    margin: -160px auto 0;
  }
}
/* Link group */

.link-group {
  padding-bottom: 15px;
}
.link-group .link {
  margin-right: 10px;
}
.link-group-left {
  text-align: left;
}
.link-group-center {
  text-align: center;
}
.link-group-right {
  text-align: right;
}
.link {
  padding-bottom: 15px;
}
.link.link-left {
  text-align: left;
}
.link.link-center {
  text-align: center;
}
.link.link-right {
  text-align: right;
}
.link-inline {
  display: inline-block !important;
}
/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
  background-color: black;
}
.mfp-inline-holder .mfp-content {
  background-color: white !important;
  width: 100%;
  max-width: 1000px;
  padding: 40px;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  /*color: #cccccc;*/
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1000;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  cursor: pointer;
  width: 30px;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1000px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 90vh;
  /*56.25%*/

}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background-color: transparent;
  z-index: 1001;
}
/* Main image in popup */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: center;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
             * Remove all paddings around the image on small screen
             */
  
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
  padding: 0;
}
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}
/* overlay at start */

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
/* overlay animate in */

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
/* content animate it */

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
/* Main navigation */

@media (max-width: calc(991px)) {
  .main-navigation {
    position: absolute;
    display: block;
    background-color: rgba(96, 95, 95, 0.9);
    height: calc(100vh - 67px - 15px);
    width: 100%;
    top: calc(100% + 15px);
    left: 100%;
    right: 0;
    padding: 21px 15px 25px;
    overflow: scroll;
    transition: left 300ms ease-out;
  }
}
@media (max-width: calc(991px)) {
  .main-navigation--open {
    left: 0;
  }
}
@media (max-width: calc(991px)) {
  .main-navigation__item--has-submenu .main-navigation__link::after {
    position: relative;
    display: inline-block;
    content: '\f078';
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    top: 1px;
    margin-left: 15px;
    transition: transform 300ms ease-out;
  }
}
@media (max-width: calc(991px)) {
  .main-navigation__item--has-submenu .main-navigation__link--open::after {
    transform: rotate(-180deg);
  }
}
.main-navigation__link {
  position: relative;
  display: block;
  text-decoration: none;
  color: #ffffff;
  padding: 9px 15px;
  word-break: keep-all;
}
@media (min-width: 992px) {
  .main-navigation__link {
    display: inline-block;
    font-size: 16px;
    padding: 29px 5px;
    transition: background-color 150ms ease-out, text-shadow 150ms ease-out;
  }
}
@media (min-width: 1150px) {
  .main-navigation__link {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .main-navigation__link {
    font-size: 18px;
  }
}
@media (min-width: 1270px) {
  .main-navigation__link {
    padding: 29px 10px;
  }
}
@media (min-width: 1550px) {
  .main-navigation__link {
    font-size: 20px;
    padding: 29px 15px;
  }
}
.main-navigation__link:focus,
.main-navigation__link:hover {
  text-shadow: 0 0 1px #ffffff, 0 0 1px #ffffff, 0 0 1px #ffffff;
  text-decoration: none;
  color: #ffffff;
}
@media (min-width: 992px) {
  .main-navigation__link--open {
    background-color: rgba(239, 64, 74, 0.7);
  }
}
.main-navigation__submenu {
  display: none;
  padding: 10px 0 31px 45px;
}
@media (min-width: 992px) {
  .main-navigation__submenu {
    display: block;
    position: absolute;
    background-color: rgba(96, 95, 95, 0.95);
    width: 0;
    padding: 55px 65px;
    height: calc(100vh - 45px - 88px - 18px);
    right: 0;
    top: calc(100% + 18px);
    opacity: 0.9;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    transition: width 300ms ease-out, opacity 150ms ease-out, visibility 150ms ease-out;
  }
}
@media (min-width: 992px) {
  .main-navigation__submenu::-webkit-scrollbar {
    display: none;
  }
}
.main-navigation__submenu--open {
  display: block;
}
@media (min-width: 992px) {
  .main-navigation__submenu--open {
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: width 300ms ease-out, opacity 300ms ease-out, visibility 300ms ease-out;
  }
}
.main-navigation__submenu-link {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  padding: 5px 0;
  color: #ffffff;
  word-break: break-word;
}
.main-navigation__submenu-link:focus,
.main-navigation__submenu-link:hover {
  color: #ffffff;
}
.main-navigation__submenu-item {
  position: relative;
}
.main-navigation__submenu-item--mini-experiences {
  display: none;
  padding-top: 30px;
}
@media (min-width: 992px) {
  .main-navigation__submenu-item--mini-experiences {
    display: block;
  }
}
.main-navigation__submenu-item--close-submenu {
  display: none;
}
@media (min-width: 992px) {
  .main-navigation__submenu-item--close-submenu {
    position: absolute;
    display: block;
    top: 25px;
    right: 45px;
  }
}
.main-navigation__scroll-down {
  position: absolute;
  right: 15px;
  bottom: 100%;
  color: #ffffff;
}
.media-library {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.media-library__item {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  width: calc(100% / 2 - 10px);
  margin: 0 5px 10px;
}
.media-library__item .popup-youtube {
  position: relative;
}
@media (min-width: 576px) {
  .media-library__item {
    width: calc(100% / 2 - 30px);
    margin: 0 15px 30px;
  }
}
@media (min-width: 992px) {
  .media-library__item {
    width: calc(100% / 4 - 30px);
  }
}
.media-library__content {
  padding: 15px;
}
@media (min-width: 576px) {
  .media-library__content {
    padding: 30px;
  }
}
.media-library__title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  padding-bottom: 15px;
}
@media (min-width: 576px) {
  .media-library__title {
    font-size: 22px;
  }
}
.media-library__description {
  font-size: 16px;
  margin-bottom: 20px;
}
.media-library__image {
  width: 100%;
  height: auto;
}
.media-library__play-icon {
  display: block;
  position: absolute;
  top: 0;
  left: 45%;
  padding: 8px 8px 10px 11px;
  color: #fff;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5);
  border: solid 2px #fff;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
}
.media-library-form .form-control {
  display: inline-block;
  line-height: 40px;
  min-height: 40px;
  padding: 0 10px;
  background-color: transparent;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  z-index: 0;
  outline: none;
}
/* Mini experiences */

.mini-experiences {
  display: none;
}
@media (min-width: 992px) {
  .mini-experiences {
    display: flex;
    flex-wrap: wrap;
  }
}
.mini-experience {
  position: relative;
  display: block;
  flex: 1 1 auto;
  text-decoration: none;
  color: #605f5f;
  width: 50%;
  max-width: 50%;
  margin-bottom: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .mini-experience {
    width: 33.33%;
    max-width: 33.33%;
    margin-bottom: 10px;
    padding-right: 10px;
  }
}
.mini-experience:hover {
  text-decoration: none;
  color: #605f5f;
}
@media (min-width: 992px) {
  .mini-experience:hover .mini-experience__button {
    padding: 4px 15px;
  }
}
@media (min-width: 992px) {
  .mini-experience:hover .mini-experience__button .mini-experience__button-text {
    max-width: 130px;
  }
}
@media (min-width: 992px) {
  .mini-experience:hover .mini-experience__button.btn-loupe::after {
    margin-left: 20px;
  }
}
.mini-experience__image {
  width: 100%;
}
.mini-experience__information {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 12px 16px 13px;
  margin-top: 0;
}
.mini-experience__button {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 10px;
  padding: 4px 15px;
  transition: padding 200ms ease-out, background-color 100ms ease-out;
}
@media (min-width: 992px) {
  .mini-experience__button {
    padding: 4px 10px;
  }
}
.mini-experience__button-text {
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 300ms ease-out;
}
@media (min-width: 992px) {
  .mini-experience__button-text {
    max-width: 0;
  }
}
.mini-experience__button.btn-loupe::after {
  margin-left: 20px;
  transition: margin-left 300ms ease-out;
}
@media (min-width: 992px) {
  .mini-experience__button.btn-loupe::after {
    margin-left: 0;
  }
}
.mini-experience__close-button {
  position: absolute;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  background-color: transparent;
  bottom: calc(100% + 10px);
  right: 5px;
  padding: 4px 15px;
  transition: background-color 100ms ease-out;
}
@media (min-width: 992px) {
  .mini-experience__close-button {
    padding: 7px 12px;
  }
}
.mini-experience__close-button + .mini-experience__button {
  right: 48px;
}
.mini-experience__title {
  font-size: 20px;
  line-height: 1;
  color: #ef404a;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .mini-experience__title {
    font-size: 18px;
  }
}
.mini-experience__title span {
  position: relative;
  top: -3px;
}
.mini-experience__price-container {
  font-size: 11px;
  white-space: nowrap;
}
.mini-experience__price-container span {
  font-size: 17px;
  font-weight: bold;
  margin-left: 3px;
}
.mini-experience__price-container span span {
  text-decoration: line-through;
  font-weight: normal;
}
.mini-experience__price {
  font-size: 17px;
  font-weight: bold;
  margin-left: 3px;
}
/* Newsletter */

.newsletter {
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .newsletter {
    padding-bottom: 150px;
  }
}
.newsletter__container {
  position: relative;
  display: flex;
  align-items: flex-end;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  background-size: cover;
  background-position: center center;
  min-height: 480px;
}
@media (min-width: 992px) {
  .newsletter__container {
    min-height: 1000px;
  }
}
.newsletter__container > .container {
  position: relative;
  z-index: 1;
}
.newsletter__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .newsletter__title {
    font-size: 70px;
    margin-bottom: 20px;
  }
}
.newsletter__text {
  font-size: 14px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .newsletter__text {
    font-size: 20px;
    /*margin-bottom: 66px;*/
  
  }
}
.fog {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.fog__img {
  position: absolute;
  height: 100%;
  width: 300vw;
}
.fog__img--first {
  background: url('/images/fog-1.png') repeat-x;
  background-size: contain;
  background-position: center;
  animation: marquee 100s ease-in-out infinite;
}
.fog__img--second {
  background: url('/images/fog-2.png') repeat-x;
  background-size: contain;
  background-position: center;
  animation: marquee 80s ease-in-out infinite;
}
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-200vw, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.popup {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 2px;
  padding: 20px 30px;
  max-height: 90vh;
}
.popup__container {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  /*bottom: 0;*/
  /*right: 0;*/
  width: 100vw;
  height: 100vh;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease-out, visibility 300ms ease-out;
}
.popup__container--open {
  opacity: 1;
  visibility: visible;
}
.popup__image-container {
  display: none;
  margin: -20px 20px -20px -30px;
  align-self: stretch;
}
@media (min-width: 768px) {
  .popup__image-container {
    display: block;
  }
}
.popup__image {
  object-fit: cover;
  max-height: 300px;
  min-height: 100%;
  width: 300px;
}
.popup__content {
  max-width: 300px;
  align-self: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  max-height: calc(90vh - 40px);
}
.popup__content::-webkit-scrollbar {
  display: none;
}
.popup__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  color: #ef404a;
  margin-top: 10px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .popup__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.popup__subtitle {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  color: #ef404a;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .popup__subtitle {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.popup__description {
  font-size: 16px;
  font-weight: bold;
  color: #605F5F;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .popup__description {
    font-size: 19px;
  }
}
.popup__cta {
  font-size: 16px;
  padding: 15px 20px;
}
.popup__cta::after {
  margin-left: 30px;
}
.popup__close-button {
  position: absolute;
  color: #ef404a;
  top: 8px;
  right: 14px;
  cursor: pointer;
}
.popup2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 2px;
  padding: 20px 30px;
  max-height: 90vh;
  max-width: 600px;
  background-color: #ef404a;
}
.popup2:after {
  position: absolute;
  content: '\d7';
  color: #fff;
  right: 7px;
  top: 10px;
  font-size: 2.5em;
  line-height: 0.5em;
  cursor: pointer;
}
.popup2__container {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease-out, visibility 300ms ease-out;
}
.popup2__container--open {
  opacity: 1;
  visibility: visible;
}
.popup2__image-container {
  display: block;
  margin: -20px -30px 20px -30px;
}
.popup2__image {
  width: 100%;
  height: auto;
}
.popup2__content {
  align-self: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  max-height: calc(90vh - 40px);
  color: #ffffff;
}
.popup2__content::-webkit-scrollbar {
  display: none;
}
.popup2__title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .popup2__title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
.popup2__subtitle {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .popup2__subtitle {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.popup2__description {
  font-size: 16px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .popup2__description {
    font-size: 19px;
    margin-bottom: 30px;
  }
}
.popup2__cta {
  text-align: center;
  margin-bottom: 20px;
}
.popup2__cta .btn {
  font-size: 16px;
  padding: 10px 15px;
}
.popup2__cta .btn::after {
  margin-left: 30px;
}
@media (min-width: 768px) {
  .popup2__cta {
    margin-bottom: 30px;
  }
}
.popup2__close-button {
  position: absolute;
  color: #ef404a;
  top: 8px;
  right: 14px;
  cursor: pointer;
}
#confetti {
  position: fixed;
  background: transparent;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none !important;
  /*z-index: -1;*/

}
.popup-open {
  max-height: 100vh;
  overflow-y: hidden;
}
.r-rawhtml.content-width {
  max-width: 1200px;
  margin: 0 auto;
}
.r-rawhtml.center {
  text-align: center;
}
.r-rawhtml.right {
  text-align: right;
}
/* Recommendations */

.recommendations {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .recommendations {
    margin-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .recommendations .big {
    width: 60% !important;
  }
  .recommendations .small {
    width: calc(36% - 18px) !important;
  }
}
.recommendation {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex: 1 1 auto;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 540px;
  margin-bottom: 18px;
  /*  &:nth-child(2n) {
    flex: 1 1 auto;
    width: 100%;
    margin-right: 0;

    @media (min-width: @lg-breakpoint) {
      width: calc(~'50% - 18px');
    }

    @media (min-width: @xl-breakpoint) {
      width: calc(~'34% - 18px');
    }
  }*/

}
@media (min-width: 992px) {
  .recommendation {
    width: 48%;
    margin-right: 18px;
  }
}
.recommendation[target="_blank"] .recommendation__button::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  transform: translateY(0) scale(0.65);
}
@media (min-width: 992px) {
  .recommendation[target="_blank"] .recommendation__button::after {
    transform: translateY(0);
  }
}
@media (min-width: 992px) {
  .recommendation[target="_blank"] .recommendation__button:hover::after {
    animation-name: zoom-in-out-button-icon-external;
    animation-duration: 1s;
  }
}
@keyframes zoom-in-out-button-icon-external {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(0) scale(1.2);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.recommendation:hover {
  text-decoration: none;
}
@media (min-width: 992px) {
  .recommendation:hover .recommendation__description {
    max-height: 108px;
    margin-bottom: 38px;
  }
}
@media (min-width: 992px) {
  .recommendation:hover .recommendation__button {
    padding: 12px 30px;
  }
}
@media (min-width: 992px) {
  .recommendation:hover .recommendation__button .recommendation__button-text {
    max-width: 100%;
    transition: max-width 300ms ease-out;
  }
}
@media (min-width: 992px) {
  .recommendation:hover .recommendation__button.btn-loupe::after {
    margin-left: 30px;
  }
}
.recommendation::after {
  position: absolute;
  content: '';
  background-image: linear-gradient(119deg, #000000, #634988);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.3;
}
.recommendation__image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.recommendation__content {
  position: relative;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  max-width: 450px;
  width: calc(100% - 70px);
  margin: 35px;
  z-index: 1;
}
.recommendation__category {
  font-family: Campton;
  font-size: 15px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .recommendation__category {
    font-size: 20px;
    margin-bottom: 19px;
  }
}
.recommendation__title {
  font-size: 26px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .recommendation__title {
    font-size: 40px;
    margin-bottom: 34px;
  }
}
.recommendation__description {
  font-size: 15px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  margin-bottom: 20px;
  overflow: hidden;
  transition: max-height 200ms ease-out, margin-bottom 200ms ease-out;
}
@media (min-width: 992px) {
  .recommendation__description {
    max-height: 0;
    margin-bottom: 0;
  }
}
.recommendation__button {
  position: relative;
  max-width: 100%;
  padding: 7px 25px;
  transition: padding 200ms ease-out, background-color 100ms ease-out;
}
@media (min-width: 992px) {
  .recommendation__button {
    padding: 12px 18px;
  }
}
.recommendation__button-text {
  max-width: unset;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 0ms ease-out;
}
@media (min-width: 992px) {
  .recommendation__button-text {
    max-width: 0;
  }
}
.recommendation__button.btn-loupe::after {
  margin-left: 30px;
  transition: margin-left 300ms ease-out;
}
@media (min-width: 992px) {
  .recommendation__button.btn-loupe::after {
    margin-left: 0;
  }
}
/* Reserve experience */

@media (min-width: 992px) {
  .reserve-experience {
    margin-right: 60px;
  }
}
.reserve-experience__price-container {
  margin-top: 38px;
}
.reserve-experience__price {
  font-size: 30px;
  font-weight: bold;
  margin: 0 5px;
}
.reserve-experience__button {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .reserve-experience__button {
    margin-left: 60px;
  }
}
.search-results .search-filter {
  padding-top: 10px;
  margin-bottom: 45px;
}
.search-results .search-filter .filter-title {
  font-size: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 23px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .search-results .search-filter .filter-title {
    font-size: 24px;
  }
}
.search-results .search-filter .filter-items > div {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.search-results .search-filter .filter-items .search-filter-chk {
  margin-bottom: 4px;
  cursor: pointer;
}
.search-results .search-filter .filter-items .search-filter-chk:focus,
.search-results .search-filter .filter-items .search-filter-chk:hover {
  outline: none;
}
.search-results .search-filter .filter-items .search-filter-chk:checked + label::before {
  background-color: #ef404a;
}
.search-results .search-filter .filter-items .search-filter-chk:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.search-results .search-filter .filter-items label {
  line-height: 1.1;
  margin-bottom: 0;
  margin-left: 15px;
  cursor: pointer;
  transition: color 200ms ease-out;
}
.search-results .search-filter .filter-items label:hover {
  color: #000000;
}
.search-results .search-filter .filter-items label::before {
  position: absolute;
  content: '';
  background-color: #ffffff;
  border: 1px solid #ef404a;
  width: 16px;
  height: 16px;
  left: 0;
  top: calc(50% - 10px);
  transition: background-color 200ms ease-out;
}
.search-results .search-filter .filter-items label::after {
  position: absolute;
  content: '';
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  visibility: visible;
  transition: opacity 200ms ease-out, visibility 200ms ease-out;
}
.search-results .search-results-for {
  font-size: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 5px;
  margin-bottom: 35px;
}
@media (min-width: 992px) {
  .search-results .search-results-for {
    font-size: 40px;
  }
}
.search-results .no-search-results {
  margin-bottom: 90px;
}
.search-results .search-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -5px 60px;
}
.search-results .search-list .catalogue-item {
  flex: 0 1 auto;
  width: 100%;
  margin: 0 5px 20px;
}
@media (min-width: 576px) {
  .search-results .search-list .catalogue-item {
    width: calc(100% / 2 - 10px);
  }
}
@media (min-width: 992px) {
  .search-results .search-list .catalogue-item {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .search-results .search-list .catalogue-item {
    width: calc(100% / 2 - 10px);
  }
}
@media (min-width: 1800px) {
  .search-results .search-list .catalogue-item {
    width: calc(100% / 3 - 10px);
  }
}
/* Tabs */

.tabs {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .tabs {
    flex-direction: row;
  }
}
.tabs__links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  flex: 1 1 40%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .tabs__links {
    margin-right: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .tabs__links {
    margin-right: 60px;
  }
}
.tabs__links--active {
  display: block;
}
.tabs__link {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: bold;
  background-color: #f7f7f7;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 200ms ease-out, color 200ms ease-out;
}
@media (min-width: 992px) {
  .tabs__link {
    padding: 20px 60px;
    font-size: 30px;
  }
}
.tabs__link:focus,
.tabs__link:hover {
  color: #ffffff;
  background-color: #ef404a;
}
.tabs__link:focus::after,
.tabs__link:hover::after {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .tabs__link::after {
    position: absolute;
    content: '';
    border-style: solid;
    border-width: 9px 0 9px 16px;
    border-color: transparent transparent transparent #ef404a;
    width: 0;
    height: 0;
    right: -16px;
    top: calc(50% - 9px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease-out, visibility 200ms ease-out;
  }
}
.tabs__link:not(:last-child)::before {
  position: absolute;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 20px;
  right: 20px;
  height: 1px;
  bottom: 0;
}
@media (min-width: 992px) {
  .tabs__link:not(:last-child)::before {
    left: 50px;
    right: 50px;
  }
}
.tabs__link--active {
  color: #ffffff;
  background-color: #ef404a;
}
.tabs__link--active::after {
  opacity: 1;
  visibility: visible;
}
.tabs__content {
  flex: 1 1 50%;
  font-size: 15px;
  padding-top: 10px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .tabs__content {
    font-size: 20px;
  }
}
.r-video {
  position: relative;
  height: 0;
  margin-bottom: 30px;
}
.r-video--16-9 {
  padding-top: 56.25%;
  /* 9/16 = 0.5625 */

}
.r-video--4-3 {
  padding-top: 75%;
  /* 3/4 = 0.75 */

}
.r-video__video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cc-window {
  opacity: 1;
  transition: opacity 1s ease;
}
.cc-window.cc-invisible {
  opacity: 0;
}
.cc-animate.cc-revoke {
  transition: transform 1s ease;
}
.cc-animate.cc-revoke.cc-top {
  transform: translateY(-2em);
}
.cc-animate.cc-revoke.cc-bottom {
  transform: translateY(2em);
}
.cc-animate.cc-revoke.cc-active.cc-bottom,
.cc-animate.cc-revoke.cc-active.cc-top,
.cc-revoke:hover {
  transform: translateY(0);
}
.cc-grower {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s;
}
.cc-link,
.cc-revoke:hover {
  text-decoration: underline;
}
.cc-revoke,
.cc-window {
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.5em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 1040;
}
.cc-window.cc-static {
  position: static;
}
.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  -ms-flex-direction: row;
  flex-direction: row;
}
.cc-revoke {
  padding: 0.5em;
}
.cc-header {
  font-size: 18px;
  font-weight: 700;
}
.cc-btn,
.cc-close,
.cc-link,
.cc-revoke {
  cursor: pointer;
}
.cc-link {
  opacity: 0.8;
  display: inline-block;
  padding: 0.2em;
}
.cc-link:hover {
  opacity: 1;
}
.cc-link:active,
.cc-link:visited {
  color: initial;
}
.cc-btn {
  display: block;
  padding: 0.4em 0.8em;
  font-size: 0.9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}
.cc-banner .cc-btn:last-child {
  min-width: 140px;
}
.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}
.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}
.cc-close {
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 1.6em;
  opacity: 0.9;
  line-height: 0.75;
}
.cc-close:focus,
.cc-close:hover {
  opacity: 1;
}
.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}
.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}
.cc-revoke.cc-left {
  left: 3em;
  right: unset;
}
.cc-revoke.cc-right {
  right: 3em;
  left: unset;
}
.cc-top {
  top: 1em;
}
.cc-left {
  left: 1em;
}
.cc-right {
  right: 1em;
}
.cc-bottom {
  bottom: 1em;
}
.cc-floating > .cc-link {
  margin-bottom: 1em;
}
.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}
.cc-window.cc-floating .cc-compliance {
  -ms-flex: 1;
  flex: 1;
}
.cc-window.cc-banner {
  -ms-flex-align: center;
  align-items: center;
}
.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}
.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}
.cc-banner .cc-message {
  -ms-flex: 1;
  flex: 1;
}
.cc-compliance {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.cc-compliance > .cc-btn {
  -ms-flex: 1;
  flex: 1;
}
.cc-btn + .cc-btn {
  margin-left: 0.5em;
}
@media print {
  .cc-revoke,
  .cc-window {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}
@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }
  .cc-window.cc-bottom {
    bottom: 0;
  }
  .cc-window.cc-banner,
  .cc-window.cc-left,
  .cc-window.cc-right {
    left: 0;
    right: 0;
  }
  .cc-window.cc-banner {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cc-window.cc-banner .cc-compliance {
    -ms-flex: 1;
    flex: 1;
  }
  .cc-window.cc-floating {
    max-width: none;
  }
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  .cc-window.cc-banner {
    -ms-flex-align: unset;
    align-items: unset;
  }
}
.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}
.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  -ms-flex: none;
  flex: none;
}
.cc-theme-classic .cc-btn {
  border-radius: 5px;
}
.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}
.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}
.cc-theme-edgeless.cc-window {
  padding: 0;
}
.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em 2em 1.5em;
}
.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: 0.8em 1.8em;
  height: 100%;
}
.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}
.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}
.datepicker-container {
  background-color: #fff;
  direction: ltr;
  font-size: 12px;
  left: 0;
  line-height: 30px;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 210px;
  z-index: -1;
}
.datepicker-container:before,
.datepicker-container:after {
  border: 5px solid transparent;
  content: " ";
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}
.datepicker-dropdown {
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 3px 6px #ccc;
  box-shadow: 0 3px 6px #ccc;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  z-index: 1;
}
.datepicker-inline {
  position: static;
}
.datepicker-top-left,
.datepicker-top-right {
  border-top-color: #39f;
}
.datepicker-top-left:before,
.datepicker-top-left:after,
.datepicker-top-right:before,
.datepicker-top-right:after {
  border-top: 0;
  left: 10px;
  top: -5px;
}
.datepicker-top-left:before,
.datepicker-top-right:before {
  border-bottom-color: #39f;
}
.datepicker-top-left:after,
.datepicker-top-right:after {
  border-bottom-color: #fff;
  top: -4px;
}
.datepicker-bottom-left,
.datepicker-bottom-right {
  border-bottom-color: #39f;
}
.datepicker-bottom-left:before,
.datepicker-bottom-left:after,
.datepicker-bottom-right:before,
.datepicker-bottom-right:after {
  border-bottom: 0;
  bottom: -5px;
  left: 10px;
}
.datepicker-bottom-left:before,
.datepicker-bottom-right:before {
  border-top-color: #39f;
}
.datepicker-bottom-left:after,
.datepicker-bottom-right:after {
  border-top-color: #fff;
  bottom: -4px;
}
.datepicker-top-right:before,
.datepicker-top-right:after,
.datepicker-bottom-right:before,
.datepicker-bottom-right:after {
  left: auto;
  right: 10px;
}
.datepicker-panel > ul {
  margin: 0;
  padding: 0;
  width: 102%;
}
.datepicker-panel > ul:before,
.datepicker-panel > ul:after {
  content: " ";
  display: table;
}
.datepicker-panel > ul:after {
  clear: both;
}
.datepicker-panel > ul > li {
  background-color: #fff;
  cursor: pointer;
  float: left;
  height: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 30px;
}
.datepicker-panel > ul > li:hover {
  background-color: #e5f2ff;
}
.datepicker-panel > ul > li.muted,
.datepicker-panel > ul > li.muted:hover {
  color: #999;
}
.datepicker-panel > ul > li.highlighted {
  background-color: #e5f2ff;
}
.datepicker-panel > ul > li.highlighted:hover {
  background-color: #cce5ff;
}
.datepicker-panel > ul > li.picked,
.datepicker-panel > ul > li.picked:hover {
  color: #39f;
}
.datepicker-panel > ul > li.disabled,
.datepicker-panel > ul > li.disabled:hover {
  background-color: #fff;
  color: #ccc;
  cursor: default;
}
.datepicker-panel > ul > li.disabled.highlighted,
.datepicker-panel > ul > li.disabled:hover.highlighted {
  background-color: #e5f2ff;
}
.datepicker-panel > ul > li[data-view="years prev"],
.datepicker-panel > ul > li[data-view="year prev"],
.datepicker-panel > ul > li[data-view="month prev"],
.datepicker-panel > ul > li[data-view="years next"],
.datepicker-panel > ul > li[data-view="year next"],
.datepicker-panel > ul > li[data-view="month next"],
.datepicker-panel > ul > li[data-view="next"] {
  font-size: 18px;
}
.datepicker-panel > ul > li[data-view="years current"],
.datepicker-panel > ul > li[data-view="year current"],
.datepicker-panel > ul > li[data-view="month current"] {
  width: 150px;
}
.datepicker-panel > ul[data-view="years"] > li,
.datepicker-panel > ul[data-view="months"] > li {
  height: 52.5px;
  line-height: 52.5px;
  width: 52.5px;
}
.datepicker-panel > ul[data-view="week"] > li,
.datepicker-panel > ul[data-view="week"] > li:hover {
  background-color: #fff;
  cursor: default;
}
.datepicker-hide {
  display: none;
}
.datepicker-clear {
  text-align: center;
}
.datepicker-clear-btn {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
}
.datepicker-clear-btn:hover {
  background: #f1f1f1;
}
/* Tipso Bubble Styles */

.tipso_bubble,
.tipso_bubble > .tipso_arrow {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tipso_bubble {
  position: absolute;
  text-align: center;
  border-radius: 6px;
  z-index: 9999;
}
.tipso_title {
  border-radius: 6px 6px 0 0;
}
.tipso_content {
  word-wrap: break-word;
  padding: 0.5em;
}
/* Tipso Bubble size classes - Similar to Foundation's syntax*/

.tipso_bubble.tiny {
  font-size: 0.6rem;
}
.tipso_bubble.small {
  font-size: 0.8rem;
}
.tipso_bubble.default {
  font-size: 1rem;
}
.tipso_bubble.large {
  font-size: 1.2rem;
  width: 100%;
}
/* Tipso Bubble Div */

.tipso_bubble > .tipso_arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: 8px solid;
  pointer-events: none;
}
.tipso_bubble.top > .tipso_arrow {
  border-top-color: #000;
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
  top: 100%;
  left: 50%;
  margin-left: -8px;
}
.tipso_bubble.bottom > .tipso_arrow {
  border-bottom-color: #000;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  bottom: 100%;
  left: 50%;
  margin-left: -8px;
}
.tipso_bubble.left > .tipso_arrow {
  border-left-color: #000;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  top: 50%;
  left: 100%;
  margin-top: -8px;
}
.tipso_bubble.right > .tipso_arrow {
  border-right-color: #000;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  top: 50%;
  right: 100%;
  margin-top: -8px;
}
.tipso_bubble .top_right_corner,
.tipso_bubble.top_right_corner {
  border-bottom-left-radius: 0;
}
.tipso_bubble .bottom_right_corner,
.tipso_bubble.bottom_right_corner {
  border-top-left-radius: 0;
}
.tipso_bubble .top_left_corner,
.tipso_bubble.top_left_corner {
  border-bottom-right-radius: 0;
}
.tipso_bubble .bottom_left_corner,
.tipso_bubble.bottom_left_corner {
  border-top-right-radius: 0;
}
#pathContainer {
  position: relative;
  width: 100%;
  background: #c0c0c0;
  height: 770px;
}
#pathMapContainer,
#pathGraphContainer {
  visibility: hidden;
}
#pathMap {
  height: 570px;
}
#pathGraph {
  display: block;
}
#pathLoading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/loader-gray.gif') center center no-repeat;
}
.catalogue-list-list .no-data {
  display: none;
  text-align: center;
  padding: 30px;
}
/*.collapsible-title {
    position: relative;
    padding-left: 60px;
    padding-top: 10px;
    padding-bottom: 30px;
    cursor: pointer;
}

.collapsible-closed span,
.collapsible-opened span {
    display: inline-block;
    width: 46px;
    height: 46px;
    background: @primary-color;
    border-radius: 23px;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    text-align: center;
    font-family: Arial;
    font-size: 38px;
}

.collapsible-closed span:after {
    content: "\002B ";
}

.collapsible-opened span:after {
    content: "\2212 ";
}*/

/*.content-grid {
}

div.container-fluid,
div.container,
.content-grid div[class*="acol-"] {
    padding-left: 0;
    padding-right: 0;
}

div.container-fluid.master {
    padding-left: 15px;
    padding-right: 15px;
}

.row.vertical-lines [class*="col-"]:not(:last-child):after {
    background: #e0e0e0;
    width: 1px;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}*/

/*.r-form {
    padding-bottom: @grid-gap;
}

.r-form .container {
    padding-right: 0;
    padding-left: 0;
}

.r-form .row {
    border-bottom: solid 2px #f1f1f1;
    margin-bottom: @grid-gap;
    padding-bottom: @grid-gap;
}

.r-form .form-group {
    padding-bottom: @grid-gap;
    overflow: hidden;
}

.r-form .form-group label {
    display: block;
    float: left;
    width: 250px;
    text-align: right;
    padding-top: 10px;
}

.r-form .form-group .input {
    position: relative;
    margin-left: 260px;
    min-width: 60%;
}

.r-form .form-group input, .r-form .form-group select, .r-form .form-group textarea {
    display: inline-block;
    line-height: 40px;
    min-height: 40px;
    width: 100%;
    padding: 0 10px;
    background-color: transparent;
    border: solid 1px #c0c0c0;
    z-index: 0;
    outline: none;
}

.input-calendar {
    display: block;
    position: absolute;
    top: 0px;
    right: 0;
    width: 40px;
    height: 41px;
    z-index: -1;
    padding: 10px;
    background-color: #C7A5A6;
}
.input-calendar svg {
    width: 100%;
    height: auto;
    fill: white;
}

.r-form .form-group input[type='checkbox'],
.r-form .form-group input[type='radio'] {
    min-width: 0;
    width: 40px;
}

.r-form .form-group input[type='radio'] {
    display: inline-block;
}

.r-form .radio-group-label {
    display: block;
    width: 250px;
    text-align: right;
    padding-bottom: 10px;
}

.r-form .button {
    margin-left: 260px;
    padding: 10px;
}

.r-form .status {
    margin-left: 260px;
    text-align: right;
}

.r-form .radio-group .input-inner {
    display: flex;
    padding-bottom: @grid-gap;

    input {
        flex-shrink: 0;
    }

    .label {
        padding-top: 10px;
        padding-left: 50px;
    }
}

.r-form input:read-only {
    background-color: #f1f1f1;
}

.r-form input[type='checkbox'],
.r-form input[type='radio'] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.r-form .checkmark {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: white;
    z-index: 0;
}

.r-form input:checked ~ .checkmark {
    background-color: #C7A5A6;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.r-form input:checked ~ .checkmark:after {
    display: block;
}

.r-form .checkmark:after {
    left: 15px;
    top: 7px;
    width: 10px;
    height: 20px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.r-form .input.select {
    position: relative;
}

.r-form .input.select:after {
    font-family: "FontAwesome";
    content: '\f078';
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    width: 40px;
    background: #C7A5A6;
    pointer-events: none;
    color: white;
    text-align: center;
    padding: 7px 0;
}

.status .text-danger{
    color: red;
}

@media (max-width: 768px) {
    .r-form .form-group label {
        display: block;
        float: none;
        width: 100%;
        text-align: left;
    }

    .r-form .form-group .input {
        margin-left: 0;
        min-width: 100%;
        padding: 0;
    }

    .r-form .form-group input, .r-form .form-group select, .r-form .form-group textarea {
        display: block;
    }

    .r-form .button {
        margin-left: 0;
    }

    .r-form .status {
        margin-left: 0;
    }
}*/

.a8gmap {
  position: relative;
}
/* legend */

.a8gmap_layers {
  position: absolute;
  right: 0px;
  bottom: 20px;
  background: #f1f1f1;
  padding: 10px 20px;
}
.a8gmap_layers div span {
  display: inline-block;
  padding-left: 10px;
}
.a8gmap .hidden {
  display: none;
}
/* legend */

/* info window */

.a8gmap_infoWindow {
  width: 200px;
  overflow: hidden;
}
.a8gmap_infoWindow img {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
}
.a8gmap_infoWindow div {
  padding: 10px 0 0 0;
}
/* info window */

.r-gmap-simple {
  padding-bottom: 30px;
}
.r-heading {
  position: relative;
}
.r-heading a.anchor {
  position: absolute;
  top: -150px;
  left: 0;
}
.r-heading h1 {
  color: #ef404a;
  font-size: 50px;
  padding-bottom: 45px;
}
.r-heading h2 {
  color: #ef404a;
  font-size: 30px;
  padding-bottom: 30px;
}
.r-heading h3 {
  color: #605f5f;
  font-size: 20px;
  padding-bottom: 15px;
}
.r-heading h4 {
  color: #605f5f;
  font-weight: bold;
}
@media (min-width: 992px) {
  .r-heading h1 {
    font-size: 70px;
    padding-bottom: 60px;
  }
  .r-heading h2 {
    font-size: 40px;
    padding-bottom: 45px;
  }
  .r-heading h3 {
    font-size: 25px;
    padding-bottom: 30px;
  }
}
.r-icon-text-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  background: #F8F8F8;
  padding: 30px;
}
.r-icon-text-strip.blue-background {
  background: #f3fbfd;
}
@media (max-width: 479px) {
  .r-icon-text-strip .r-icon-text-strip {
    padding: 0;
  }
}
.r-icon-text-strip_item {
  display: flex;
  flex-direction: column;
  padding: 30px;
  align-items: center;
  max-width: 300px;
  text-decoration: none;
}
.r-icon-text-strip_item:hover {
  text-decoration: none;
}
.r-icon-text-strip_item h2 {
  color: #605F5F;
  text-align: center;
  font-family: Campton;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 10px;
}
.r-icon-text-strip_item .text {
  color: #605F5F;
  text-align: center;
  font-family: Campton;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.r-icon-text-strip .icon-picker {
  display: inline-block;
  max-width: 64px;
  max-height: 64px;
  margin-bottom: 40px;
}
.r-image {
  padding-bottom: 30px;
}
.r-image__summary .r-heading {
  padding-top: 15px;
}
.r-image .paragraph {
  padding-bottom: 0;
}
.r-image-box-gallery {
  margin-bottom: 30px;
}
.r-image-box-gallery__inner {
  margin-left: 12px;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .r-image-box-gallery__inner {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (min-width: 992px) {
  .r-image-box-gallery__inner {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (min-width: calc(1012px)) {
  .r-image-box-gallery__inner {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (min-width: 992px) {
  .r-image-box-gallery {
    margin-bottom: 120px;
  }
}
.r-image-box-gallery .title {
  font-family: Campton;
  font-size: 24px;
  padding-bottom: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
}
@media (min-width: 992px) {
  .r-image-box-gallery .title {
    font-size: 28px;
    line-height: 120%;
    padding-bottom: 20px;
  }
}
@media (min-width: 992px) {
  
}
.r-image-box-gallery .text {
  font-family: Campton;
  font-size: 14px;
  padding-bottom: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 150% */
  color: #fff;
}
.r-image-box-gallery .image-box-gallery__box {
  position: relative;
  max-height: 500px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .r-image-box-gallery .image-box-gallery__box {
    max-height: 1000000px;
  }
}
.r-image-box-gallery .image-box-gallery__box__front {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  background: #000000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.599877450980392) 100%);
  transition: background ease-in-out 0.7s;
  padding: 20px;
}
.r-image-box-gallery .image-box-gallery__box__front--inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: flex ease-in-out 0.6s;
}
.r-image-box-gallery .image-box-gallery__box__front--inner .title {
  padding-bottom: 0px;
  transition: padding-bottom ease-in-out 0.6s;
}
.r-image-box-gallery .image-box-gallery__box__front--inner .text {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  padding-bottom: 0px;
  transition: opacity ease-in-out 0.6s, max-height ease-in-out 0.6s, padding-bottom ease-in-out 0.5s;
}
.r-image-box-gallery .image-box-gallery__box__front--inner .link {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: opacity ease-in-out 0.6s, max-height ease-in-out 0.6s;
}
.r-image-box-gallery .image-box-gallery__box:hover .image-box-gallery__box__front {
  background: rgba(0, 0, 0, 0.599877450980392);
  transition: background ease-in-out 0.3s;
}
.r-image-box-gallery .image-box-gallery__box:hover .image-box-gallery__box__front--inner {
  flex: 0;
  transition: flex ease-in-out 0.4s;
}
.r-image-box-gallery .image-box-gallery__box:hover .image-box-gallery__box__front--inner .title {
  padding-bottom: 15px;
  transition: padding-bottom ease-in-out 0.2s;
}
@media (min-width: 768px) {
  .r-image-box-gallery .image-box-gallery__box:hover .image-box-gallery__box__front--inner .title {
    padding-bottom: 20px;
  }
}
.r-image-box-gallery .image-box-gallery__box:hover .image-box-gallery__box__front--inner .text {
  opacity: 1;
  max-height: 800px;
  padding-bottom: 20px;
  transition: opacity ease-in-out 0.4s, max-height ease-in-out 0.4s, padding-bottom ease-in-out 0.3s;
}
.r-image-box-gallery .image-box-gallery__box:hover .image-box-gallery__box__front--inner .link {
  opacity: 1;
  max-height: 800px;
  transition: opacity ease-in-out 0.4s, max-height ease-in-out 0.4s;
}
.r-image-box-gallery .owl-nav .owl-prev,
.r-image-box-gallery .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background-color: rgba(239, 64, 74, 0.8) !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: background-color 200ms ease-out;
  width: 40px;
  height: 40px;
}
.r-image-box-gallery .owl-nav .owl-prev:hover,
.r-image-box-gallery .owl-nav .owl-next:hover {
  background-color: #ef404a !important;
  outline: none;
}
.r-image-box-gallery .owl-nav .owl-prev:focus,
.r-image-box-gallery .owl-nav .owl-next:focus {
  outline: none;
}
@media (min-width: 768px) {
  
}
.r-image-box-gallery .owl-nav .owl-prev {
  left: -24px;
}
.r-image-box-gallery .owl-nav .owl-next {
  right: -24px;
}
@media (min-width: 768px) {
  .r-image-box-gallery .owl-nav .owl-prev {
    left: -30px;
  }
  .r-image-box-gallery .owl-nav .owl-next {
    right: -30px;
  }
}
@media (min-width: 992px) {
  .r-image-box-gallery .owl-nav .owl-prev {
    left: -30px;
  }
  .r-image-box-gallery .owl-nav .owl-next {
    right: -30px;
  }
}
@media (min-width: calc(1230px)) {
  .r-image-box-gallery .owl-nav .owl-prev {
    left: -46px;
  }
  .r-image-box-gallery .owl-nav .owl-next {
    right: -46px;
  }
}
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: -50%;
  bottom: 0;
  right: 0;
  width: 190%;
  height: 100%;
}
.instagram-image-gallery .image-gallery:not(:last-child) {
  margin-bottom: 0;
}
.instagram-image-gallery .image-gallery:nth-child(even) {
  flex-direction: row-reverse;
}
.instagram-image-gallery .load_more {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .instagram-image-gallery .load_more {
    margin-bottom: 120px;
  }
}
@media (min-width: 992px) {
  .instagram-image-gallery .load_more {
    margin-bottom: 120px;
  }
}
.instagram-image-gallery + .link {
  margin-top: -90px;
  margin-bottom: 60px;
}
.jumbotron__heading,
.jumbotron__paragraph {
  color: white;
  text-shadow: 1px 0 8px black;
}
/*.link-group{
    padding-bottom: @grid-gap / 2;
}
.link-group-left{
    text-align: left;
}
.link-group-center {
    text-align: center;
}
.link-group-right {
    text-align: right;
}

.link {
    padding-bottom: @grid-gap / 2;

    &.link-left {
        text-align: left;
    }

    &.link-center {
        text-align: center;
    }

    &.link-right {
        text-align: right;
    }
}

.link-inline{
    display: inline-block !important;
}*/

.owl-carousel {
  line-height: 0;
}
.owl-dots {
  display: none;
}
.owl-item-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  /*padding-top: 25px;*/
  height: 0;
}
.owl-item-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .owl-dots {
    display: block;
  }
}
.spacer__line {
  border-bottom: solid 1px #c0c0c0;
  /*margin: -@grid-gap 0 @grid-gap * 2 0;*/
  margin: 0 0 60px 0;
}
.spacer__space {
  height: 60px;
  overflow: hidden;
}
.spacer__break {
  clear: both;
}
/* customize this by design */

.content-table {
  margin-bottom: 30px;
}
/* generic table */

/*.content-table {
    border-collapse: collapse;
}

.content-table th,
.content-table td {
    padding: 10px;
    height: 1em;
    min-height: 1em;
}*/

/* table styles */

/*.content-table.table-default {
}

.content-table.table-default th {
    background: #f1f1f1;
}

.content-table.table-default th,
.content-table.table-default td {
    border-bottom: solid 1px #c0c0c0;
    border-right: solid 1px #c0c0c0;
}*/

/* table width */

/*.content-table.table-full {
    width: 100%;
}

.content-table.table-normal {
    width: unset;
}*/

/* row formats */

/*.content-table tr.first-row {
}

.content-table tr.odd-row {
}

.content-table tr.last-row th,
.content-table tr.last-row td {
    border-bottom: none;
}*/

/* cell formats */

/*.content-table .first-cell {
}

.content-table .odd-cell {
}

.content-table th.last-cell,
.content-table td.last-cell {
    border-right: none;
}*/

.r-tabs {
  padding-bottom: 60px;
}
.r-text {
  max-width: 1200px;
}
.paragraph {
  padding-bottom: 30px;
}
.paragraph.paragraph-normal {
  font-size: 1em;
}
.paragraph.paragraph-small {
  font-size: 0.75em;
}
.paragraph.paragraph-emphasis {
  font-size: 1.25em;
}
.paragraph.paragraph-center {
  text-align: center;
}
.r-text-with-masked-image {
  position: relative;
  background: #f3fbfd;
  z-index: 0;
  margin: 3rem 0;
}
.r-text-with-masked-image:before {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 2rem;
}
.r-text-with-masked-image:after {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2rem;
}
.twmi {
  display: flex;
  flex-direction: row;
  position: relative;
}
.twmi-reverse {
  flex-direction: row-reverse;
}
.twmi-block-text {
  width: 33.33%;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.twmi-block-text-title {
  line-height: 120%;
  font-weight: 700;
  color: #ef404a;
  font-size: 40px;
  margin: 0 auto 35px;
  /*padding: 0 10px;*/
  /*text-align: center;*/
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.twmi-block-text-text {
  font-size: 16px;
  line-height: 150%;
  padding-bottom: 1rem;
}
.twmi-block-image {
  position: relative;
  width: 66.66%;
  z-index: 1;
}
.twmi-block-image:before {
  position: absolute;
  content: url(/images/bridge.svg);
  bottom: -12px;
  left: -1px;
  right: -1px;
  z-index: 1;
}
@media (max-width: 992px) {
  .twmi {
    flex-direction: column;
  }
  .twmi-reverse {
    flex-direction: column-reverse;
  }
  .twmi-block-text {
    width: 100%;
  }
  .twmi-block-image {
    width: 100%;
  }
}
