/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4; }

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important; }

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */ }

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table; }

.clearfix::after {
  clear: both; }

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */ }

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]::after {
    content: " (" attr(href) ")"; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: ""; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

@font-face {
  font-family: 'icomoon';
  src: url("/assets/fonts/icomoon.eot?655z4");
  src: url("/assets/fonts/icomoon.eot?655z4#iefix") format("embedded-opentype"), url("/assets/fonts/icomoon.ttf?655z4") format("truetype"), url("/assets/fonts/icomoon.woff?655z4") format("woff"), url("/assets/fonts/icomoon.svg?655z4#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-kitchen:before {
  content: "\e900"; }

.icon-instagram:before {
  content: "\e901"; }

.icon-facebook:before {
  content: "\e902"; }

.icon-gear:before {
  content: "\e903"; }

.icon-calendar:before {
  content: "\e904"; }

.icon-arrow:before {
  content: "\e905"; }

.icon-wine:before {
  content: "\e906"; }

.icon-calendar-1:before {
  content: "\e907"; }

.icon-users:before {
  content: "\e908"; }

.icon-phone:before {
  content: "\e909"; }

.icon-email:before {
  content: "\e90a"; }

.icon-shape:before {
  content: "\e90b"; }

.icon-bed:before {
  content: "\e90c"; }

.icon-bathtub:before {
  content: "\e90d"; }

.icon-wifi:before {
  content: "\e90e"; }

.icon-bathroom:before {
  content: "\e90f"; }

.icon-knife:before {
  content: "\e910"; }

.icon-teapot:before {
  content: "\e911"; }

.icon-washing-machine:before {
  content: "\e912"; }

.icon-television:before {
  content: "\e913"; }

.icon-air-conditioner:before {
  content: "\e914"; }

.icon-fireplace:before {
  content: "\e915"; }

.icon-pool:before {
  content: "\e916"; }

.icon-towel:before {
  content: "\e917"; }

.icon-hair-dryer:before {
  content: "\e918"; }

.icon-pet-friendly:before {
  content: "\e919"; }

.icon-user:before {
  content: "\e91a"; }

.icon-messenger:before {
  content: "\e91b"; }

.icon-message:before {
  content: "\e91c"; }

.icon-info:before {
  content: "\e91d"; }

.icon-phone-1:before {
  content: "\e91e"; }

.icon-pin:before {
  content: "\e91f"; }

.icon-stairs:before {
  content: "\e920"; }

.icon-christmas-star:before {
  content: "\e921"; }

.icon-star:before {
  content: "\e922"; }

.icon-reception-bell:before {
  content: "\e923"; }

.icon-wheel-chair:before {
  content: "\e924"; }

.icon-plans:before {
  content: "\e925"; }

.icon-zoom:before {
  content: "\e926"; }

.icon-kettle:before {
  content: "\e927"; }

.icon-fridge:before {
  content: "\e928"; }

.icon-barbecue:before {
  content: "\e929"; }

.icon-coffee-machine:before {
  content: "\e92a"; }

.icon-tennis:before {
  content: "\e92b"; }

.icon-microwave:before {
  content: "\e92c"; }

.icon-safe:before {
  content: "\e92d"; }

.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: 0; }

.picker__input {
  cursor: default; }

.picker__input.picker__input--active {
  border-color: #0089ec; }

.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  transition: background .15s ease-out,transform 0s .15s;
  -webkit-backface-visibility: hidden; }

/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
.picker__frame, .picker__holder {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%); }

.picker__frame {
  position: absolute;
  margin: 0 auto;
  min-width: 256px;
  max-width: 666px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  transition: all .15s ease-out; }

.picker__wrap {
  display: table;
  width: 100%;
  height: 100%; }

@media (min-height: 33.875em) {
  .picker__frame {
    overflow: visible;
    top: auto;
    bottom: -100%;
    max-height: 80%; }
  .picker__wrap {
    display: block; } }

.picker__box {
  background: #fff;
  display: table-cell;
  vertical-align: middle; }

@media (min-height: 26.5em) {
  .picker__box {
    font-size: 1.25em; } }

@media (min-height: 33.875em) {
  .picker__box {
    display: block;
    font-size: 1.33em;
    border: 1px solid #777;
    border-top-color: #898989;
    border-bottom-width: 0;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24); }
  .picker--opened .picker__frame {
    top: auto;
    bottom: 0; } }

@media (min-height: 40.125em) {
  .picker__frame {
    margin-bottom: 7.5%; }
  .picker__box {
    font-size: 1.5em;
    border-bottom-width: 1px;
    border-radius: 5px; } }

.picker--opened .picker__holder {
  transform: translateY(0);
  zoom: 1;
  background: rgba(0, 0, 0, 0.32);
  transition: background .15s ease-out; }

.picker--opened .picker__frame {
  transform: translateY(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1; }

.picker__footer, .picker__header, .picker__table {
  text-align: center; }

.picker__box {
  padding: 0 1em; }

.picker__header {
  position: relative;
  margin-top: .75em; }

.picker__month, .picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em; }

.picker__year {
  color: #999;
  font-size: .8em;
  font-style: italic; }

.picker__select--month, .picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em; }

.picker__select--month {
  width: 35%; }

.picker__select--year {
  width: 22.5%; }

.picker__select--month:focus, .picker__select--year:focus {
  border-color: #0089ec; }

.picker__nav--next, .picker__nav--prev {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -.25em; }

.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em; }

.picker__nav--next {
  right: -1em;
  padding-left: 1.25em; }

@media (min-width: 24.5em) {
  .picker__select--month, .picker__select--year {
    margin-top: -.5em; }
  .picker__nav--next, .picker__nav--prev {
    top: -.33em; }
  .picker__nav--prev {
    padding-right: 1.5em; }
  .picker__nav--next {
    padding-left: 1.5em; } }

.picker__nav--next:before, .picker__nav--prev:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: .75em solid #000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto; }

.picker__nav--next:before {
  border-right: 0;
  border-left: .75em solid #000; }

.picker__nav--next:hover, .picker__nav--prev:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb; }

.picker__nav--disabled, .picker__nav--disabled:before, .picker__nav--disabled:before:hover, .picker__nav--disabled:hover {
  cursor: default;
  background: 0 0;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5; }

.picker__table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em; }

@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em; } }

.picker__table td {
  margin: 0;
  padding: 0; }

.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999;
  font-weight: 500; }

@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em; } }

.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent; }

.picker__day--today {
  position: relative; }

.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: .5em solid #0059bc;
  border-left: .5em solid transparent; }

.picker__day--disabled:before {
  border-top-color: #aaa; }

.picker__day--outfocus {
  color: #ddd; }

.picker--focused .picker__day--highlighted, .picker__day--highlighted:hover, .picker__day--infocus:hover, .picker__day--outfocus:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb; }

.picker__day--highlighted {
  border-color: #0089ec; }

.picker--focused .picker__day--selected, .picker__day--selected, .picker__day--selected:hover {
  background: #0089ec;
  color: #fff; }

.picker--focused .picker__day--disabled, .picker__day--disabled, .picker__day--disabled:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default; }

.picker__day--highlighted.picker__day--disabled, .picker__day--highlighted.picker__day--disabled:hover {
  background: #bbb; }

.picker__button--clear, .picker__button--close, .picker__button--today {
  border: 1px solid #fff;
  background: #fff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: 700;
  width: 33%;
  display: inline-block;
  vertical-align: bottom; }

.picker__button--clear:hover, .picker__button--close:hover, .picker__button--today:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb; }

.picker__button--clear:focus, .picker__button--close:focus, .picker__button--today:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: 0; }

.picker__button--clear:before, .picker__button--close:before, .picker__button--today:before {
  position: relative;
  display: inline-block;
  height: 0; }

.picker__button--clear:before, .picker__button--today:before {
  content: " ";
  margin-right: .45em; }

.picker__button--today:before {
  top: -.05em;
  width: 0;
  border-top: .66em solid #0059bc;
  border-left: .66em solid transparent; }

.picker__button--clear:before {
  top: -.25em;
  width: .66em;
  border-top: 3px solid #e20; }

.picker__button--close:before {
  content: "\D7";
  top: -.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777; }

.picker__button--today[disabled], .picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default; }

.picker__button--today[disabled]:before {
  border-top-color: #aaa; }

/**
 * Swiper 6.3.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 30, 2020
 */
:root {
  --swiper-theme-color: #007aff; }

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column; }

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

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

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

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column; }

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

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

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height; }

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; }

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Progress */
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff; }

.swiper-pagination-black {
  --swiper-pagination-color: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

@-webkit-keyframes animateHoverSwiper {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes animateHoverSwiper {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

.swiper-container .swiper-scrollbar {
  height: 10px;
  border-radius: 0;
  position: relative;
  width: 100%;
  margin-top: 50px; }
  .swiper-container .swiper-scrollbar:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
    background-color: #e1e1e1;
    z-index: -1; }
  .swiper-container .swiper-scrollbar .swiper-scrollbar-drag {
    background: #bb1717;
    cursor: pointer; }

.swiper-container .swiper-wrapper {
  align-items: center;
  padding-bottom: 30px;
  height: 600px; }

.swiper-container .building {
  color: #666;
  font-size: 14px;
  padding-top: 10px; }
  @media (max-width: 1200px) {
    .swiper-container .building {
      font-size: 14px; } }
  @media (max-width: 768px) {
    .swiper-container .building {
      font-size: 11.2px; } }

.swiper-container .name {
  color: #bb1717;
  font-size: 20px;
  line-height: 1em;
  font-family: "Libre Baskerville", serif;
  transition: 0.3s font-size linear,0.3s padding linear; }
  @media (max-width: 1200px) {
    .swiper-container .name {
      font-size: 20px; } }
  @media (max-width: 768px) {
    .swiper-container .name {
      font-size: 16px; } }

.swiper-container .overlay-text {
  position: absolute;
  bottom: -120px;
  transition: 0.3s bottom linear;
  background-color: #bb1717;
  text-align: center;
  color: white;
  font-size: 14px;
  width: 100%;
  padding: 10px;
  text-transform: uppercase;
  box-sizing: border-box;
  transition: 0.25s background-color linear; }
  @media (max-width: 1200px) {
    .swiper-container .overlay-text {
      font-size: 14px; } }
  @media (max-width: 768px) {
    .swiper-container .overlay-text {
      font-size: 11.2px; } }
  .swiper-container .overlay-text:hover {
    background-color: #333; }

.swiper-container .swiper-button-prev {
  transform: rotate(90deg); }

.swiper-container .swiper-button-next {
  transform: rotate(-90deg); }

.swiper-container .swiper-button-prev, .swiper-container .swiper-button-next {
  display: inline-block;
  cursor: pointer;
  transition: 0.25s color linear; }
  .swiper-container .swiper-button-prev:hover, .swiper-container .swiper-button-next:hover {
    color: #bb1717; }

.swiper-container .swiper-pagination {
  color: #555;
  font-size: 18px;
  line-height: 1em;
  font-family: "Libre Baskerville", serif;
  display: inline-flex;
  width: 130px !important;
  justify-content: center;
  align-items: center; }
  @media (max-width: 1200px) {
    .swiper-container .swiper-pagination {
      font-size: 18px; } }
  @media (max-width: 768px) {
    .swiper-container .swiper-pagination {
      font-size: 14.4px; } }
  .swiper-container .swiper-pagination .swiper-pagination-current {
    color: #bb1717;
    font-size: 30px; }
    @media (max-width: 1200px) {
      .swiper-container .swiper-pagination .swiper-pagination-current {
        font-size: 30px; } }
    @media (max-width: 768px) {
      .swiper-container .swiper-pagination .swiper-pagination-current {
        font-size: 24px; } }

.swiper-container .wrap-info {
  padding-left: 20px;
  padding-right: 20px;
  transition: 0.3s max-height linear;
  overflow: hidden;
  max-height: 75px; }

.swiper-container .deco {
  position: relative;
  padding: 20px 0;
  transition: 0.3s opacity linear; }
  .swiper-container .deco:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: calc(100% - 25px);
    height: 1px;
    transform: translateY(-50%);
    background-color: #e1e1e1;
    z-index: 0; }
  .swiper-container .deco i {
    font-size: 12px;
    color: #bb1717;
    transform: rotate(180deg);
    position: absolute;
    right: 0;
    top: 12px; }

.swiper-container .infographic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  padding: 10px;
  margin-bottom: 15px;
  color: #555; }
  .swiper-container .infographic span {
    text-align: center; }
  .swiper-container .infographic i {
    font-size: 25px;
    color: #bb1717; }
    @media (max-width: 1200px) {
      .swiper-container .infographic i {
        font-size: 25px; } }
    @media (max-width: 768px) {
      .swiper-container .infographic i {
        font-size: 20px; } }

.swiper-container .swiper-slide {
  text-decoration: none;
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
  overflow: hidden;
  transition: 0.3s padding linear;
  height: auto;
  background-color: white;
  cursor: pointer; }
  .swiper-container .swiper-slide .img {
    height: 390px;
    transition: 0.3s height linear; }
    .swiper-container .swiper-slide .img img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .swiper-container .swiper-slide.swiper-slide-active, .swiper-container .swiper-slide:hover {
    padding-bottom: 50px; }
    .swiper-container .swiper-slide.swiper-slide-active .img, .swiper-container .swiper-slide:hover .img {
      height: 300px; }
    .swiper-container .swiper-slide.swiper-slide-active .building, .swiper-container .swiper-slide:hover .building {
      font-size: 14px;
      padding-top: 30px; }
      @media (max-width: 1200px) {
        .swiper-container .swiper-slide.swiper-slide-active .building, .swiper-container .swiper-slide:hover .building {
          font-size: 14px; } }
      @media (max-width: 768px) {
        .swiper-container .swiper-slide.swiper-slide-active .building, .swiper-container .swiper-slide:hover .building {
          font-size: 11.2px; } }
    .swiper-container .swiper-slide.swiper-slide-active .name, .swiper-container .swiper-slide:hover .name {
      font-size: 30px; }
      @media (max-width: 1200px) {
        .swiper-container .swiper-slide.swiper-slide-active .name, .swiper-container .swiper-slide:hover .name {
          font-size: 30px; } }
      @media (max-width: 768px) {
        .swiper-container .swiper-slide.swiper-slide-active .name, .swiper-container .swiper-slide:hover .name {
          font-size: 24px; } }
    .swiper-container .swiper-slide.swiper-slide-active .overlay-text, .swiper-container .swiper-slide:hover .overlay-text {
      bottom: 0; }
    .swiper-container .swiper-slide.swiper-slide-active .deco, .swiper-container .swiper-slide:hover .deco {
      opacity: 0; }
    .swiper-container .swiper-slide.swiper-slide-active .wrap-info, .swiper-container .swiper-slide:hover .wrap-info {
      max-height: 250px; }
  .swiper-container .swiper-slide:hover {
    background: linear-gradient(-45deg, #ffffff, #e0e0e0);
    -webkit-animation: animateHoverSwiper 3s ease infinite;
            animation: animateHoverSwiper 3s ease infinite;
    background-size: 400% 400%; }

body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in; }

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable='true'] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

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

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:hover {
  color: #fff; }

.fancybox-button:focus {
  outline: none; }

.fancybox-button.fancybox-focus {
  outline: 1px dotted; }

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none; }

/* Fix IE11 */
.fancybox-button div {
  height: 100%; }

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%; }

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0; }

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none; }

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none; }

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401; }

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1; }

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0; }

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px; }

.fancybox-navigation .fancybox-button div {
  padding: 7px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right); }

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996; }

.fancybox-caption--separate {
  margin-top: -50px; }

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg); } }

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg); } }

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px; }
  .fancybox-slide--image {
    padding: 6px 0; }
  .fancybox-close-small {
    right: -6px; }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px; }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px; } }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs__list a:focus::before {
  opacity: .5; }

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px); } }

.fancybox-inner {
  cursor: zoom-out; }

.fancybox-progress {
  background-color: #bb1717 !important; }

a.fancybox {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: zoom-in; }
  a.fancybox img {
    width: 100%; }
  a.fancybox img, a.fancybox picture {
    transition: all 0.35s ease-in; }
  a.fancybox:after {
    font-family: 'icomoon' !important;
    position: absolute;
    content: "\e926";
    color: white;
    font-size: 0;
    line-height: 1em;
    left: 50%;
    display: block;
    z-index: 2;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.25s font-size linear; }
  a.fancybox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    content: '';
    background-color: rgba(187, 23, 23, 0.15);
    z-index: 1;
    display: block;
    border-radius: 100%;
    transition: width 0.25s linear,height 0.25s linear; }
  a.fancybox:hover:before {
    width: 1500px;
    height: 1500px; }
  a.fancybox:hover:after {
    font-size: 70px; }
    @media (max-width: 1200px) {
      a.fancybox:hover:after {
        font-size: 56px; } }
    @media (max-width: 768px) {
      a.fancybox:hover:after {
        font-size: 46.66667px; } }
  a.fancybox:hover picture {
    filter: blur(3px); }
  a.fancybox:hover img {
    filter: grayscale(75%); }
  a.fancybox:active, a.fancybox:focus {
    outline: none;
    border: none; }

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.instagram_gallery #instagram-feed a {
  position: relative;
  width: 25%;
  display: block;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .instagram_gallery #instagram-feed a:focus, .instagram_gallery #instagram-feed a:active, .instagram_gallery #instagram-feed a:focus:active {
    background-image: none;
    outline: 0;
    box-shadow: none; }
  .instagram_gallery #instagram-feed a p {
    margin: 0;
    position: absolute;
    padding: 20px;
    height: calc(100% - 40px);
    width: calc(100% - 40px);
    background-color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    color: #555;
    z-index: 10;
    left: 0;
    top: 120%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s top linear; }
  .instagram_gallery #instagram-feed a img {
    transition: all 0.35s ease-in;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    -o-object-fit: cover;
       object-fit: cover; }
  .instagram_gallery #instagram-feed a:hover img {
    filter: blur(10px); }
  .instagram_gallery #instagram-feed a:hover p {
    top: 0; }

.instagram_gallery #instagram-feed .slick-slide {
  margin: 0 10px; }

.instagram_gallery .slider-navigation-feed {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 0 35px; }

.instagram_gallery div.slider-dots-feed {
  margin: 0;
  list-style: none;
  font-size: 0;
  order: 2; }
  .instagram_gallery div.slider-dots-feed ul {
    display: flex;
    align-items: center;
    padding: 0 15px; }
    .instagram_gallery div.slider-dots-feed ul li {
      padding: 0 5px; }
    .instagram_gallery div.slider-dots-feed ul button {
      cursor: pointer;
      padding: 0;
      border: none;
      width: 15px;
      height: 15px;
      border-radius: 100%;
      transition: 0.25s background-color linear;
      background-color: #888888; }
      .instagram_gallery div.slider-dots-feed ul button:hover {
        background-color: #bb1717; }
    .instagram_gallery div.slider-dots-feed ul .slick-active button {
      background-color: #555; }
      .instagram_gallery div.slider-dots-feed ul .slick-active button:hover {
        background-color: #bb1717; }

.instagram_gallery .slick-arrow {
  transition: 0.2s color linear;
  cursor: pointer;
  font-size: 30px;
  display: flex;
  align-items: center;
  color: #555; }
  @media (max-width: 1200px) {
    .instagram_gallery .slick-arrow {
      font-size: 30px; } }
  @media (max-width: 768px) {
    .instagram_gallery .slick-arrow {
      font-size: 24px; } }
  .instagram_gallery .slick-arrow:hover {
    color: #bb1717; }

.instagram_gallery .prev {
  order: 1;
  transform: rotate(90deg); }

.instagram_gallery .next {
  order: 3;
  transform: rotate(-90deg); }

.wrap {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1340px;
  margin: 0 auto; }
  .wrap.wrap-big {
    max-width: 1540px; }

.box-grey {
  background-color: #eeeeee; }

.padding-top {
  padding-top: 75px; }
  .padding-top.half {
    padding-top: 35px; }

.padding-bottom {
  padding-bottom: 75px; }
  .padding-bottom.half {
    padding-bottom: 35px; }

.margin-top {
  margin-top: 75px; }
  .margin-top.half {
    margin-top: 35px; }

.margin-bottom {
  margin-bottom: 75px; }
  .margin-bottom.half {
    margin-bottom: 35px; }

.flex {
  display: flex;
  align-items: center; }
  .flex.align-items-start {
    align-items: flex-start; }
  .flex.wrap-2 {
    justify-content: space-between; }
    .flex.wrap-2 .item {
      width: calc(50% - 115px); }
    .flex.wrap-2 .logo {
      margin: 0 auto;
      max-width: 220px;
      display: block; }

.box-2-parallax .box-1, .box-2-parallax .box-2 {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 500px;
  align-items: center; }
  .box-2-parallax .box-1 .img, .box-2-parallax .box-2 .img {
    top: 50%;
    margin-top: -250px;
    width: 60%;
    position: absolute;
    height: 500px; }
    @media (max-width: 1600px) {
      .box-2-parallax .box-1 .img, .box-2-parallax .box-2 .img {
        height: 400px; } }
    @media (max-width: 1200px) {
      .box-2-parallax .box-1 .img, .box-2-parallax .box-2 .img {
        height: 357.14286px; } }
    @media (max-width: 768px) {
      .box-2-parallax .box-1 .img, .box-2-parallax .box-2 .img {
        height: 312.5px; } }
    @media (max-width: 500px) {
      .box-2-parallax .box-1 .img, .box-2-parallax .box-2 .img {
        height: 250px; } }
    .box-2-parallax .box-1 .img img, .box-2-parallax .box-2 .img img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }

.box-2-parallax .box-1 {
  justify-content: flex-end; }
  .box-2-parallax .box-1 .img {
    left: 0; }

.box-2-parallax .box-2 {
  justify-content: flex-start; }
  .box-2-parallax .box-2 .img {
    right: 0; }
  .box-2-parallax .box-2 .wrap-text {
    left: 0; }

.box-2-parallax .wrap-text {
  background-color: white;
  position: relative;
  z-index: 2;
  top: 50px;
  width: 530px;
  padding: 70px; }

.box-full-img-text .wrap-text {
  width: calc(50% - 145px); }
  .box-full-img-text .wrap-text.left {
    padding-left: 30px;
    padding-right: 115px;
    text-align: right; }
  .box-full-img-text .wrap-text.right {
    padding-left: 115px;
    padding-right: 30px; }

.box-full-img-text .img {
  height: 600px;
  width: 50%; }
  @media (max-width: 1600px) {
    .box-full-img-text .img {
      height: 480px; } }
  @media (max-width: 1200px) {
    .box-full-img-text .img {
      height: 428.57143px; } }
  @media (max-width: 768px) {
    .box-full-img-text .img {
      height: 375px; } }
  @media (max-width: 500px) {
    .box-full-img-text .img {
      height: 300px; } }
  .box-full-img-text .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.box-full-img-text .content-wrap {
  display: inline-block;
  width: 555px;
  text-align: left; }

.gallery-masonry .item {
  float: left;
  width: 33.33333%; }
  @media (max-width: 680px) {
    .gallery-masonry .item {
      width: 50%; } }

.gallery-masonry a.fancybox {
  margin: 5px;
  display: block; }
  .gallery-masonry a.fancybox img {
    width: 100%; }

.gmap {
  width: 100%;
  height: 950px; }
  @media (max-width: 1600px) {
    .gmap {
      height: 760px; } }
  @media (max-width: 1200px) {
    .gmap {
      height: 678.57143px; } }
  @media (max-width: 768px) {
    .gmap {
      height: 593.75px; } }
  @media (max-width: 500px) {
    .gmap {
      height: 475px; } }

.box-info-contact {
  justify-content: space-between;
  align-items: flex-start; }
  .box-info-contact h3 {
    margin: 15px auto 10px; }
  .box-info-contact i {
    font-size: 40px;
    color: #c8c8c8; }
    @media (max-width: 1200px) {
      .box-info-contact i {
        font-size: 40px; } }
    @media (max-width: 768px) {
      .box-info-contact i {
        font-size: 32px; } }

header.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: 0.35s top linear; }
  header.header .wrap {
    position: relative; }
  header.header .activate-booking {
    position: absolute;
    top: 25px;
    left: 25px;
    transition: 0.25s opacity linear; }
    header.header .activate-booking:hover {
      opacity: 0.65; }
  header.header .logo-header {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.25s opacity linear,0.35s top linear;
    z-index: 100; }
    header.header .logo-header:hover {
      opacity: 0.65; }
    header.header .logo-header img.graphic {
      width: 90px; }
    header.header .logo-header img.text {
      margin-top: 15px;
      width: 230px; }
  header.header .wrap-control-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    height: 100px;
    align-items: center;
    transition: 0.25s background-color linear; }
  header.header .button-menu {
    position: relative;
    width: 60px;
    height: 60px;
    padding: 20px;
    background-color: #bb1717;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    transition: 0.25s background-color linear,0.25s padding linear,0.25s height linear; }
    header.header .button-menu [class^="text-"] {
      position: absolute;
      bottom: 10px;
      left: 0;
      text-align: center;
      color: white;
      font-size: 17px;
      text-transform: uppercase;
      font-weight: 100;
      width: 100%;
      height: 0;
      overflow: hidden;
      transition: 0.25s height linear; }
      @media (max-width: 1200px) {
        header.header .button-menu [class^="text-"] {
          font-size: 17px; } }
      @media (max-width: 768px) {
        header.header .button-menu [class^="text-"] {
          font-size: 13.6px; } }
    header.header .button-menu:hover {
      padding-bottom: 40px;
      height: 40px;
      background-color: #a11010; }
      header.header .button-menu:hover [class^="text-"] {
        height: 20px; }
    header.header .button-menu [class^="line-"] {
      height: 2px;
      width: 60px;
      background-color: white;
      transition: 0.45s all linear; }
    header.header .button-menu .text-close {
      display: none; }
    header.header .button-menu.open .text-close {
      display: block; }
    header.header .button-menu.open .text-hover {
      display: none; }
    header.header .button-menu.open .line-3 {
      opacity: 0; }
    header.header .button-menu.open .line-2 {
      transform: rotate(225deg); }
    header.header .button-menu.open .line-1 {
      transform: rotate(-225deg); }
    header.header .button-menu.open .line-2, header.header .button-menu.open .line-1 {
      position: absolute;
      top: 50px;
      left: 19px; }
    header.header .button-menu.open:hover .line-2, header.header .button-menu.open:hover .line-1 {
      top: 40px; }
  header.header .deco {
    width: 1px;
    height: 30px;
    background-color: white;
    margin: 0 30px; }
  header.header .selector-lang {
    text-transform: uppercase; }
    header.header .selector-lang a {
      color: white;
      transition: 0.25s color linear;
      position: relative;
      text-decoration: none;
      padding-left: 5px;
      padding-right: 5px; }
      header.header .selector-lang a:hover {
        color: #a11010 !important; }
      header.header .selector-lang a.active {
        color: white !important;
        cursor: default; }
        header.header .selector-lang a.active:before {
          content: '';
          display: block;
          width: 100%;
          position: absolute;
          bottom: -1px;
          height: 2px;
          background-color: #a11010;
          left: 0; }
  header.header .social-header {
    padding-right: 100px; }
    header.header .social-header a {
      text-decoration: none;
      padding-left: 5px;
      padding-right: 5px;
      color: white;
      font-size: 22px;
      transition: 0.25s color linear; }
      @media (max-width: 1200px) {
        header.header .social-header a {
          font-size: 22px; } }
      @media (max-width: 768px) {
        header.header .social-header a {
          font-size: 17.6px; } }
      header.header .social-header a:hover {
        color: #a11010 !important; }
  header.header .logo-wrap-control-menu {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    display: none;
    align-items: center;
    transition: 0.25s opacity linear;
    opacity: 0; }
    header.header .logo-wrap-control-menu:hover {
      opacity: 0.75; }
    header.header .logo-wrap-control-menu .graphic {
      width: 60px;
      margin-right: 10px; }
    header.header .logo-wrap-control-menu .text {
      height: 40px; }

.responsive-fixed-activate-booking {
  display: none; }

.image-header {
  width: 100%;
  overflow: hidden;
  height: 750px;
  position: relative; }
  @media (max-width: 1600px) {
    .image-header {
      height: 600px; } }
  @media (max-width: 1200px) {
    .image-header {
      height: 535.71429px; } }
  @media (max-width: 768px) {
    .image-header {
      height: 468.75px; } }
  @media (max-width: 500px) {
    .image-header {
      height: 375px; } }
  .image-header .parallax {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2; }
  .image-header:after {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.65) 7%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.5) 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1; }
  .image-header img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
  .image-header .wrap {
    display: flex;
    align-items: flex-end;
    height: 100%; }
  .image-header h1 {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.45); }
    .image-header h1 .subtitle {
      color: white;
      font-size: 42px;
      line-height: 1.2em;
      font-family: "Raleway", sans-serif;
      font-weight: 500; }
      @media (max-width: 1200px) {
        .image-header h1 .subtitle {
          font-size: 30px; } }
      @media (max-width: 768px) {
        .image-header h1 .subtitle {
          font-size: 22.10526px; } }
    .image-header h1 .title {
      color: white;
      font-size: 90px;
      line-height: 1.2em;
      font-family: "Libre Baskerville", serif;
      font-weight: 100; }
      @media (max-width: 1200px) {
        .image-header h1 .title {
          font-size: 60px; } }
      @media (max-width: 768px) {
        .image-header h1 .title {
          font-size: 36px; } }

.wrap-cotent-top-fixed {
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: -150%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  transition: 0.4s top linear;
  overflow-y: scroll; }
  .wrap-cotent-top-fixed .wrap-menu, .wrap-cotent-top-fixed .wrap-booking, .wrap-cotent-top-fixed .overlay-booking {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0;
    z-index: -100;
    transition: 0.3s opacity linear; }
  .wrap-cotent-top-fixed .overlay-booking {
    left: 0;
    background-color: #333;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around; }
    .wrap-cotent-top-fixed .overlay-booking .logo {
      text-align: center; }
      .wrap-cotent-top-fixed .overlay-booking .logo img {
        display: inline-block; }
      .wrap-cotent-top-fixed .overlay-booking .logo .graphic {
        width: 180px; }
      .wrap-cotent-top-fixed .overlay-booking .logo .text {
        padding-top: 30px;
        width: 350px; }
    .wrap-cotent-top-fixed .overlay-booking .text {
      text-align: center;
      color: white;
      font-size: 60px;
      line-height: 1.2em;
      font-family: "Libre Baskerville", serif; }
      @media (max-width: 1200px) {
        .wrap-cotent-top-fixed .overlay-booking .text {
          font-size: 40px; } }
      @media (max-width: 768px) {
        .wrap-cotent-top-fixed .overlay-booking .text {
          font-size: 30px; } }
      .wrap-cotent-top-fixed .overlay-booking .text i {
        font-size: 75px; }
        @media (max-width: 1200px) {
          .wrap-cotent-top-fixed .overlay-booking .text i {
            font-size: 75px; } }
        @media (max-width: 768px) {
          .wrap-cotent-top-fixed .overlay-booking .text i {
            font-size: 60px; } }
  .wrap-cotent-top-fixed .wrap-menu, .wrap-cotent-top-fixed .wrap-booking {
    right: 0; }
  .wrap-cotent-top-fixed .wrap-menu {
    padding-bottom: 150px; }
  .wrap-cotent-top-fixed ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .wrap-cotent-top-fixed ul.nav {
    padding: 200px 0 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .wrap-cotent-top-fixed ul.nav a {
      text-decoration: none;
      position: relative; }
      .wrap-cotent-top-fixed ul.nav a:before, .wrap-cotent-top-fixed ul.nav a:after {
        display: block;
        position: absolute;
        content: '';
        bottom: -1px;
        background-color: #555;
        transition: 0.25s width linear;
        height: 2px;
        width: 0; }
      .wrap-cotent-top-fixed ul.nav a:hover:before, .wrap-cotent-top-fixed ul.nav a:hover:after {
        width: 50%; }
    .wrap-cotent-top-fixed ul.nav a.nav {
      align-items: center;
      justify-content: center;
      padding: 5px 0;
      display: inline-block;
      color: #555;
      font-size: 30px;
      line-height: 1em;
      font-family: "Libre Baskerville", serif; }
      @media (max-width: 1200px) {
        .wrap-cotent-top-fixed ul.nav a.nav {
          font-size: 26.08696px; } }
      @media (max-width: 768px) {
        .wrap-cotent-top-fixed ul.nav a.nav {
          font-size: 17.14286px; } }
      .wrap-cotent-top-fixed ul.nav a.nav i {
        transition: 0.25s all linear;
        margin-left: 10px;
        color: #bb1717;
        font-size: 20px;
        display: inline-block; }
        @media (max-width: 1200px) {
          .wrap-cotent-top-fixed ul.nav a.nav i {
            font-size: 20px; } }
        @media (max-width: 768px) {
          .wrap-cotent-top-fixed ul.nav a.nav i {
            font-size: 16px; } }
      .wrap-cotent-top-fixed ul.nav a.nav:before {
        left: 0; }
      .wrap-cotent-top-fixed ul.nav a.nav:after {
        right: 0; }
    .wrap-cotent-top-fixed ul.nav a.sub-nav {
      text-transform: uppercase;
      color: #555;
      padding: 5px 0; }
      .wrap-cotent-top-fixed ul.nav a.sub-nav:before {
        left: 50%; }
      .wrap-cotent-top-fixed ul.nav a.sub-nav:after {
        right: 50%; }
    .wrap-cotent-top-fixed ul.nav li.sub-nav {
      padding: 10px 0; }
      .wrap-cotent-top-fixed ul.nav li.sub-nav:first-child {
        padding-top: 25px; }
      .wrap-cotent-top-fixed ul.nav li.sub-nav:last-child {
        padding-bottom: 25px; }
    .wrap-cotent-top-fixed ul.nav ul.sub-nav {
      max-height: 0;
      overflow: hidden;
      transition: 0.3s max-height linear; }
    .wrap-cotent-top-fixed ul.nav li.nav {
      padding: 20px 0;
      text-align: center; }
      .wrap-cotent-top-fixed ul.nav li.nav:hover a.nav:before, .wrap-cotent-top-fixed ul.nav li.nav:hover a.nav:after {
        width: 50%; }
      .wrap-cotent-top-fixed ul.nav li.nav:hover a.nav i {
        transform: rotate(180deg); }
      .wrap-cotent-top-fixed ul.nav li.nav:hover ul.sub-nav {
        max-height: 650px; }
  .wrap-cotent-top-fixed .bottom-link-fixed {
    position: fixed;
    bottom: -200px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px 0;
    left: 50%;
    transition: 0.3s bottom linear;
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center; }
  .wrap-cotent-top-fixed .wrap-menu-show-responsive {
    display: none;
    margin: 30px auto 15px;
    padding: 20px 20px 0;
    border-top: 1px solid #555;
    width: calc(100% - 80px);
    justify-content: space-between;
    align-items: center; }
    .wrap-cotent-top-fixed .wrap-menu-show-responsive a {
      text-decoration: none; }
    .wrap-cotent-top-fixed .wrap-menu-show-responsive .button-wine {
      border: 1px solid #bb1717;
      padding: 15px 10px;
      display: flex;
      align-items: center;
      color: #bb1717;
      transition: 0.25s color linear,0.25s background-color linear; }
      .wrap-cotent-top-fixed .wrap-menu-show-responsive .button-wine i {
        font-size: 23px; }
        @media (max-width: 1200px) {
          .wrap-cotent-top-fixed .wrap-menu-show-responsive .button-wine i {
            font-size: 23px; } }
        @media (max-width: 768px) {
          .wrap-cotent-top-fixed .wrap-menu-show-responsive .button-wine i {
            font-size: 18.4px; } }
      .wrap-cotent-top-fixed .wrap-menu-show-responsive .button-wine:hover {
        background-color: #bb1717;
        color: white; }
    .wrap-cotent-top-fixed .wrap-menu-show-responsive .flex .deco {
      width: 1px;
      background-color: #555;
      height: 30px;
      margin: 0 30px; }
    .wrap-cotent-top-fixed .wrap-menu-show-responsive .flex a {
      position: relative;
      text-decoration: none;
      color: #555;
      transition: 0.25s color linear;
      text-transform: uppercase;
      padding-left: 3px;
      padding-right: 3px; }
      .wrap-cotent-top-fixed .wrap-menu-show-responsive .flex a i {
        font-size: 25px; }
        @media (max-width: 1200px) {
          .wrap-cotent-top-fixed .wrap-menu-show-responsive .flex a i {
            font-size: 25px; } }
        @media (max-width: 768px) {
          .wrap-cotent-top-fixed .wrap-menu-show-responsive .flex a i {
            font-size: 20px; } }
      .wrap-cotent-top-fixed .wrap-menu-show-responsive .flex a:hover {
        color: #bb1717; }
      .wrap-cotent-top-fixed .wrap-menu-show-responsive .flex a.active {
        color: #555 !important; }
        .wrap-cotent-top-fixed .wrap-menu-show-responsive .flex a.active:before {
          content: '';
          display: block;
          width: 100%;
          position: absolute;
          bottom: -1px;
          height: 2px;
          background-color: #a11010;
          left: 0; }

.button-link-fixed {
  position: relative;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  cursor: pointer; }
  .button-link-fixed:hover .text-button-link {
    opacity: 1;
    width: 200px; }
  .button-link-fixed .text-button-link {
    position: absolute;
    overflow: hidden;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #333;
    transition: 0.25s opacity linear,0.2s width linear;
    display: flex;
    align-items: center;
    text-align: center;
    opacity: 0; }
  .button-link-fixed .icon {
    display: flex;
    flex-direction: column;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    font-size: 12px; }
    @media (max-width: 1200px) {
      .button-link-fixed .icon {
        font-size: 12px; } }
    @media (max-width: 768px) {
      .button-link-fixed .icon {
        font-size: 9.6px; } }
    .button-link-fixed .icon i {
      margin-bottom: 4px;
      font-size: 45px; }
      @media (max-width: 1200px) {
        .button-link-fixed .icon i {
          font-size: 45px; } }
      @media (max-width: 768px) {
        .button-link-fixed .icon i {
          font-size: 36px; } }
  .button-link-fixed.link-winery .icon {
    background-color: #bb1717; }
  .button-link-fixed.link-winery .text-button-link {
    left: 100%; }
  .button-link-fixed.activate-booking .icon {
    background-color: #d3c5b8;
    color: #555; }
  .button-link-fixed.activate-booking .text-button-link {
    right: 100%; }

.wrap-booking {
  padding-top: 200px; }
  .wrap-booking p.text {
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    color: #333;
    font-size: 18px;
    line-height: 1em;
    font-family: "Libre Baskerville", serif;
    padding-top: 25px; }
    @media (max-width: 1200px) {
      .wrap-booking p.text {
        font-size: 18px; } }
    @media (max-width: 768px) {
      .wrap-booking p.text {
        font-size: 14.4px; } }
  .wrap-booking .button-form {
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .wrap-booking .button-form a {
      margin: 0 20px;
      display: flex;
      align-items: center;
      text-decoration: none;
      text-transform: uppercase;
      padding: 10px 25px;
      color: #555;
      border: 1px solid #555;
      transition: 0.25s color linear,0.25s background-color linear,0.25s border-color linear; }
      .wrap-booking .button-form a:hover {
        background-color: #bb1717;
        color: white;
        border-color: #bb1717; }
      .wrap-booking .button-form a i {
        font-size: 22px;
        margin-right: 10px; }
        @media (max-width: 1200px) {
          .wrap-booking .button-form a i {
            font-size: 22px; } }
        @media (max-width: 768px) {
          .wrap-booking .button-form a i {
            font-size: 17.6px; } }

form.booking-header {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto 20px;
  text-align: center; }
  form.booking-header input {
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #f5f5f5;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 24px;
    color: #555;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    @media (max-width: 1200px) {
      form.booking-header input {
        font-size: 19.2px; } }
    @media (max-width: 768px) {
      form.booking-header input {
        font-size: 13.71429px; } }
    form.booking-header input:focus, form.booking-header input:active, form.booking-header input:focus:active {
      background-image: none;
      outline: 0;
      box-shadow: none; }
  form.booking-header label {
    color: #333;
    font-size: 24px;
    line-height: 1em;
    font-family: "Libre Baskerville", serif; }
    @media (max-width: 1200px) {
      form.booking-header label {
        font-size: 19.2px; } }
    @media (max-width: 768px) {
      form.booking-header label {
        font-size: 13.71429px; } }
  form.booking-header i {
    font-size: 30px;
    padding-bottom: 10px;
    display: inline-block; }
    @media (max-width: 1200px) {
      form.booking-header i {
        font-size: 24px; } }
    @media (max-width: 768px) {
      form.booking-header i {
        font-size: 17.14286px; } }
  form.booking-header .btn {
    margin-top: 20px;
    cursor: pointer;
    display: inline-block;
    padding: 15px 25px;
    background-color: #555;
    transition: 0.25s background-color linear;
    text-transform: uppercase;
    color: white;
    border: none;
    font-size: 18px; }
    @media (max-width: 1200px) {
      form.booking-header .btn {
        font-size: 18px; } }
    @media (max-width: 768px) {
      form.booking-header .btn {
        font-size: 14.4px; } }
    form.booking-header .btn:hover {
      background-color: #bb1717; }

@-webkit-keyframes animateScrollDown {
  0% {
    transform: translateY(-7px) rotateY(0); }
  25% {
    transform: translateY(0) rotateY(180deg);
    opacity: 0.5;
    font-size: 25px;
    @media (max-width: 1200px) {
      font-size: 19.23077px; }
    @media (max-width: 768px) {
      font-size: 12.5px; } }
  50% {
    transform: translateY(7px) rotateY(360deg);
    opacity: 1;
    font-size: 40px;
    @media (max-width: 1200px) {
      font-size: 30.76923px; }
    @media (max-width: 768px) {
      font-size: 20px; } }
  75% {
    transform: translateY(0) rotateY(180deg);
    opacity: 0.5;
    font-size: 25px;
    @media (max-width: 1200px) {
      font-size: 19.23077px; }
    @media (max-width: 768px) {
      font-size: 12.5px; } }
  100% {
    transform: translateY(-7px) rotateY(0);
    opacity: 1; } }

@keyframes animateScrollDown {
  0% {
    transform: translateY(-7px) rotateY(0); }
  25% {
    transform: translateY(0) rotateY(180deg);
    opacity: 0.5;
    font-size: 25px;
    @media (max-width: 1200px) {
      font-size: 19.23077px; }
    @media (max-width: 768px) {
      font-size: 12.5px; } }
  50% {
    transform: translateY(7px) rotateY(360deg);
    opacity: 1;
    font-size: 40px;
    @media (max-width: 1200px) {
      font-size: 30.76923px; }
    @media (max-width: 768px) {
      font-size: 20px; } }
  75% {
    transform: translateY(0) rotateY(180deg);
    opacity: 0.5;
    font-size: 25px;
    @media (max-width: 1200px) {
      font-size: 19.23077px; }
    @media (max-width: 768px) {
      font-size: 12.5px; } }
  100% {
    transform: translateY(-7px) rotateY(0);
    opacity: 1; } }

.slider-wrapper-home {
  width: 100%;
  overflow: hidden;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s top linear;
  z-index: 100; }
  .slider-wrapper-home .text, .slider-wrapper-home button {
    position: absolute; }
  .slider-wrapper-home button {
    font-size: 0;
    z-index: 999;
    top: 50%;
    border: none;
    background: transparent;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 90px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .slider-wrapper-home button:focus, .slider-wrapper-home button:active, .slider-wrapper-home button:focus:active {
      background-image: none;
      outline: 0;
      box-shadow: none; }
    .slider-wrapper-home button:before {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      background-color: rgba(0, 0, 0, 0.75);
      top: 0;
      transition: 0.3s left linear; }
    .slider-wrapper-home button span {
      background-color: white;
      width: 3px;
      height: 25px;
      display: block;
      z-index: 9999;
      position: relative;
      transition: 0.2s all linear; }
    .slider-wrapper-home button.slick-prev {
      left: 0;
      cursor: w-resize; }
      .slider-wrapper-home button.slick-prev:before {
        left: -100%; }
    .slider-wrapper-home button.slick-next {
      right: 0;
      cursor: e-resize; }
      .slider-wrapper-home button.slick-next:before {
        left: 100%; }
    .slider-wrapper-home button.slick-prev:hover .top {
      transform: rotate(25deg);
      margin-bottom: -2px; }
    .slider-wrapper-home button.slick-prev:hover .bottom {
      margin-top: -2px;
      transform: rotate(-25deg); }
    .slider-wrapper-home button.slick-next:hover .top {
      transform: rotate(-25deg);
      margin-bottom: -2px; }
    .slider-wrapper-home button.slick-next:hover .bottom {
      margin-top: -2px;
      transform: rotate(25deg); }
    .slider-wrapper-home button.slick-prev:hover:before, .slider-wrapper-home button.slick-next:hover:before {
      left: 0; }
    .slider-wrapper-home button.no-hover .top, .slider-wrapper-home button.no-hover .bottom {
      transform: none !important;
      margin-bottom: 0 !important; }
    .slider-wrapper-home button.no-hover.slick-prev:before {
      left: -100% !important; }
    .slider-wrapper-home button.no-hover.slick-next:before {
      left: 100% !important; }
  .slider-wrapper-home div, .slider-wrapper-home a {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .slider-wrapper-home div:focus, .slider-wrapper-home div:active, .slider-wrapper-home div:focus:active, .slider-wrapper-home a:focus, .slider-wrapper-home a:active, .slider-wrapper-home a:focus:active {
      background-image: none;
      outline: 0;
      box-shadow: none; }
  .slider-wrapper-home .slide {
    position: relative; }
  .slider-wrapper-home .text {
    z-index: 10;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 60%; }
    .slider-wrapper-home .text h1, .slider-wrapper-home .text h2 {
      margin: 0; }
    .slider-wrapper-home .text h1 {
      color: white;
      font-size: 90px;
      line-height: 1.15em;
      font-family: "Libre Baskerville", serif;
      font-weight: 400; }
      @media (max-width: 1200px) {
        .slider-wrapper-home .text h1 {
          font-size: 51.42857px; } }
      @media (max-width: 768px) {
        .slider-wrapper-home .text h1 {
          font-size: 36px; } }
    .slider-wrapper-home .text h2 {
      margin-top: 20px;
      color: white;
      font-size: 45px;
      line-height: 1.1em;
      font-family: "Raleway", sans-serif;
      font-weight: 450; }
      @media (max-width: 1200px) {
        .slider-wrapper-home .text h2 {
          font-size: 34.61538px; } }
      @media (max-width: 768px) {
        .slider-wrapper-home .text h2 {
          font-size: 22.5px; } }
  .slider-wrapper-home .img {
    height: calc(var(--vh, 1vh) * 100); }
    .slider-wrapper-home .img:after {
      content: '';
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 7%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.65) 93%, rgba(0, 0, 0, 0.85) 100%);
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 1; }
    .slider-wrapper-home .img img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
      .slider-wrapper-home .img img:focus, .slider-wrapper-home .img img:active, .slider-wrapper-home .img img:focus:active {
        background-image: none;
        outline: 0;
        box-shadow: none; }
  .slider-wrapper-home .circle-preloader {
    opacity: 0;
    transition: 0.25s opacity linear; }
  .slider-wrapper-home .slick-dots {
    position: absolute;
    left: 150px;
    bottom: 30px;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0; }
    .slider-wrapper-home .slick-dots li {
      margin: 0 20px; }
      .slider-wrapper-home .slick-dots li a {
        position: relative;
        padding: 5px;
        text-decoration: none;
        font-size: 20px;
        color: white;
        transition: 0.25s color linear; }
        @media (max-width: 1200px) {
          .slider-wrapper-home .slick-dots li a {
            font-size: 16.66667px; } }
        @media (max-width: 768px) {
          .slider-wrapper-home .slick-dots li a {
            font-size: 13.33333px; } }
        .slider-wrapper-home .slick-dots li a:hover {
          color: #bb1717; }
      .slider-wrapper-home .slick-dots li .circle-preloader {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px; }
        .slider-wrapper-home .slick-dots li .circle-preloader .circle-go {
          fill: transparent;
          stroke: #bb1717;
          stroke-width: 2; }
      .slider-wrapper-home .slick-dots li.slick-active .circle-preloader {
        opacity: 1; }
  .slider-wrapper-home .scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: translateX(-50%); }
    .slider-wrapper-home .scroll-down span {
      font-weight: 300;
      text-transform: uppercase;
      font-size: 14px; }
      @media (max-width: 1200px) {
        .slider-wrapper-home .scroll-down span {
          font-size: 11.66667px; } }
      @media (max-width: 768px) {
        .slider-wrapper-home .scroll-down span {
          font-size: 8px; } }
    .slider-wrapper-home .scroll-down i {
      font-size: 25px;
      margin-left: 10px;
      margin-right: 10px;
      -webkit-animation: animateScrollDown 2.25s ease-out infinite;
              animation: animateScrollDown 2.25s ease-out infinite; }
      @media (max-width: 1200px) {
        .slider-wrapper-home .scroll-down i {
          font-size: 19.23077px; } }
      @media (max-width: 768px) {
        .slider-wrapper-home .scroll-down i {
          font-size: 12.5px; } }
  .slider-wrapper-home .wrap-big {
    position: relative; }
  .slider-wrapper-home .activate-booking {
    position: absolute;
    bottom: 40px;
    right: 25px;
    z-index: 105; }
    .slider-wrapper-home .activate-booking .text-button-link {
      left: auto;
      right: 100px;
      background-color: white;
      color: #555; }

body.homepage #content {
  overflow-y: hidden;
  height: calc((var(--vh, 1vh) * 100) + 1px); }

body.homepage.show-content .slider-wrapper-home {
  top: -105vh; }

body.homepage.show-content #content {
  height: auto; }

.map-accommodation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; }
  .map-accommodation:hover .image-full-map picture:nth-child(1) {
    display: block; }
  .map-accommodation:hover .image-full-map picture:nth-child(2) {
    display: none; }

ul.list-pagnana-map {
  width: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 0 0 30px;
  margin: 0;
  list-style: none; }
  @media (max-width: 1850px) {
    ul.list-pagnana-map {
      width: 100%;
      max-width: 1300px;
      margin: 20px auto 0; } }
  ul.list-pagnana-map li {
    padding: 0 10px; }
    ul.list-pagnana-map li a {
      display: block;
      color: #bb1717;
      font-size: 20px;
      line-height: 1em;
      font-family: "Libre Baskerville", serif;
      text-decoration: none;
      border: 1px #f5f5f5 solid;
      padding: 10px;
      position: relative;
      margin-bottom: 15px;
      transition: 0.25s color linear; }
      @media (max-width: 1200px) {
        ul.list-pagnana-map li a {
          font-size: 20px; } }
      @media (max-width: 768px) {
        ul.list-pagnana-map li a {
          font-size: 16px; } }
      ul.list-pagnana-map li a::before {
        content: "";
        left: 0;
        top: 0;
        height: 100%;
        background-color: #bb1717;
        transition: 0.3s width linear;
        width: 0;
        position: absolute;
        display: block;
        z-index: -1; }
      ul.list-pagnana-map li a span {
        color: #555;
        font-size: 16px;
        line-height: 1em;
        font-family: "Raleway", sans-serif;
        transition: 0.25s color linear; }
        @media (max-width: 1200px) {
          ul.list-pagnana-map li a span {
            font-size: 16px; } }
        @media (max-width: 768px) {
          ul.list-pagnana-map li a span {
            font-size: 12.8px; } }
      ul.list-pagnana-map li a i {
        margin-left: 5px;
        margin-right: 7px; }
      ul.list-pagnana-map li a:hover {
        color: white; }
        ul.list-pagnana-map li a:hover span {
          color: white; }
        ul.list-pagnana-map li a:hover::before {
          width: 100%; }
    ul.list-pagnana-map li.on a {
      color: white; }
      ul.list-pagnana-map li.on a span {
        color: white; }
      ul.list-pagnana-map li.on a::before {
        width: 100%; }

.map-static {
  max-width: 1300px; }
  @media (min-width: 768px) {
    .map-static {
      display: none; } }
  .map-static img {
    display: block;
    width: 100%; }

.map-app {
  position: relative;
  max-width: 1300px; }
  @media (max-width: 767px) {
    .map-app {
      display: none; } }
  .map-app div.instructions {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 3; }
    .map-app div.instructions p {
      text-align: center;
      font-size: 0.875rem;
      color: #666; }
  .map-app .image-full-map picture {
    display: block;
    width: 100%;
    height: 100%; }
    .map-app .image-full-map picture img {
      width: 100%; }
    .map-app .image-full-map picture:nth-child(1) {
      display: none; }
  .map-app .image-full-map.hover picture:nth-child(1) {
    display: block; }
  .map-app .image-full-map.hover picture:nth-child(2) {
    display: none; }
  .map-app svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; }
    .map-app svg rect {
      fill: none; }
    .map-app svg polygon {
      fill: transparent;
      cursor: pointer; }
    .map-app svg image {
      opacity: 0;
      transition: 0.25s opacity linear;
      cursor: pointer; }
    .map-app svg image.on {
      opacity: 1;
      z-index: -100; }

.list-pagnana-map li.on {
  color: red; }

.wrap-tooltip {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

.map-tooltip {
  position: fixed;
  display: none;
  z-index: 9999999;
  padding: 10px;
  background-color: rgba(187, 23, 23, 0.75);
  color: white;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  font-size: 20px;
  margin-top: -35px; }
  @media (max-width: 1200px) {
    .map-tooltip {
      font-size: 20px; } }
  @media (max-width: 768px) {
    .map-tooltip {
      font-size: 16px; } }

body.scroll-page header.header .logo-header {
  top: -200px !important; }

body.homepage header.header .logo-header {
  left: 140px;
  cursor: default; }
  body.homepage header.header .logo-header:hover {
    opacity: 1; }

body.show-content header.header .wrap-control-menu {
  background-color: white;
  padding-left: 350px; }

body.show-content header.header .logo-wrap-control-menu {
  display: flex;
  opacity: 1; }
  body.show-content header.header .logo-wrap-control-menu .white {
    display: none; }

body.show-content header.header .deco {
  background-color: #555; }

body.show-content header.header .selector-lang a, body.show-content header.header .social-header a {
  color: #555; }
  body.show-content header.header .selector-lang a.active, body.show-content header.header .social-header a.active {
    color: #555 !important; }

body.menu-responsive .wrap-cotent-top-fixed .wrap-menu {
  opacity: 1;
  z-index: 0; }

body.booking-header .responsive-fixed-activate-booking {
  display: none; }

body.booking-header .wrap-cotent-top-fixed .wrap-booking {
  opacity: 1;
  z-index: 2; }

body.booking-header .wrap-cotent-top-fixed .overlay-booking {
  opacity: 1; }

body.booking-header .wrap-cotent-top-fixed .bottom-link-fixed {
  bottom: -200px !important; }

body.menu-responsive .hidden-open-menu, body.booking-header .hidden-open-menu {
  display: none; }

body.menu-responsive header.header .logo-header, body.booking-header header.header .logo-header {
  display: none; }

body.menu-responsive header.header .wrap-control-menu, body.booking-header header.header .wrap-control-menu {
  background-color: #333;
  padding-left: 350px; }

body.menu-responsive header.header .deco, body.booking-header header.header .deco {
  background-color: white; }

body.menu-responsive header.header .selector-lang a, body.menu-responsive header.header .social-header a, body.booking-header header.header .selector-lang a, body.booking-header header.header .social-header a {
  color: white; }

body.menu-responsive header.header .logo-wrap-control-menu, body.booking-header header.header .logo-wrap-control-menu {
  display: flex;
  opacity: 1; }
  body.menu-responsive header.header .logo-wrap-control-menu .white, body.booking-header header.header .logo-wrap-control-menu .white {
    display: block; }
  body.menu-responsive header.header .logo-wrap-control-menu .black, body.booking-header header.header .logo-wrap-control-menu .black {
    display: none; }

body.menu-responsive .wrap-cotent-top-fixed, body.booking-header .wrap-cotent-top-fixed {
  top: 0; }
  body.menu-responsive .wrap-cotent-top-fixed:before, body.booking-header .wrap-cotent-top-fixed:before {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    background-color: white;
    content: '';
    display: block;
    width: 50%;
    height: 100%; }
  body.menu-responsive .wrap-cotent-top-fixed .bottom-link-fixed, body.booking-header .wrap-cotent-top-fixed .bottom-link-fixed {
    bottom: 0; }

body.menu-responsive #content, body.booking-header #content {
  overflow-y: hidden;
  height: calc(var(--vh, 1vh) * 100) !important; }

body.hidden-fixed-header header.header {
  top: -200px; }
  body.hidden-fixed-header header.header .logo-header {
    display: none; }

body.hidden-fixed-header.show-fixed-header header.header {
  top: 0; }
  body.hidden-fixed-header.show-fixed-header header.header .wrap-control-menu {
    background-color: white;
    padding-left: 350px; }
  body.hidden-fixed-header.show-fixed-header header.header .logo-wrap-control-menu {
    display: flex;
    opacity: 1; }
    body.hidden-fixed-header.show-fixed-header header.header .logo-wrap-control-menu .white {
      display: none; }
  body.hidden-fixed-header.show-fixed-header header.header .deco {
    background-color: #555; }
  body.hidden-fixed-header.show-fixed-header header.header .selector-lang a, body.hidden-fixed-header.show-fixed-header header.header .social-header a {
    color: #555; }
    body.hidden-fixed-header.show-fixed-header header.header .selector-lang a.active, body.hidden-fixed-header.show-fixed-header header.header .social-header a.active {
      color: #555 !important; }

.gallery-wedding {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .gallery-wedding img {
    width: calc(50% - 10px);
    margin-bottom: 20px; }

.wrap-gallery-wedding {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1570px;
  padding-left: 15px;
  padding-right: 15px; }
  .wrap-gallery-wedding .modal {
    display: none; }
  .wrap-gallery-wedding .link-wedding {
    width: calc(33.33333333333% - 30px);
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 30px;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
    border: 1px solid #d5d5d5;
    height: 340px;
    overflow: hidden; }
    .wrap-gallery-wedding .link-wedding .button-link {
      margin-top: 15px; }
    .wrap-gallery-wedding .link-wedding:after {
      content: '';
      display: block;
      background-color: rgba(0, 0, 0, 0.7);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      transition: 0.35s height linear; }
    .wrap-gallery-wedding .link-wedding .img {
      width: 100%;
      height: 250px;
      transition: height 0.35s ease-in;
      overflow: hidden; }
      .wrap-gallery-wedding .link-wedding .img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        transition: all 0.35s ease-in; }
    .wrap-gallery-wedding .link-wedding .wrap-text {
      padding: 20px;
      overflow: hidden;
      max-height: 40px;
      transition: 0.35s max-height linear; }
      .wrap-gallery-wedding .link-wedding .wrap-text .name, .wrap-gallery-wedding .link-wedding .wrap-text .category {
        display: block;
        text-align: left; }
      .wrap-gallery-wedding .link-wedding .wrap-text .name {
        color: #bb1717;
        font-size: 24px;
        line-height: 1.4em;
        font-family: "Libre Baskerville", serif; }
        @media (max-width: 1200px) {
          .wrap-gallery-wedding .link-wedding .wrap-text .name {
            font-size: 24px; } }
        @media (max-width: 768px) {
          .wrap-gallery-wedding .link-wedding .wrap-text .name {
            font-size: 19.2px; } }
      .wrap-gallery-wedding .link-wedding .wrap-text .category {
        color: #555;
        font-size: 16px;
        line-height: 1.4em;
        font-family: "Raleway", sans-serif;
        text-transform: uppercase;
        opacity: 0;
        transition: 0.35s opacity linear; }
        @media (max-width: 1200px) {
          .wrap-gallery-wedding .link-wedding .wrap-text .category {
            font-size: 16px; } }
        @media (max-width: 768px) {
          .wrap-gallery-wedding .link-wedding .wrap-text .category {
            font-size: 12.8px; } }
      .wrap-gallery-wedding .link-wedding .wrap-text .deco {
        display: flex;
        justify-content: space-between;
        align-items: center; }
      .wrap-gallery-wedding .link-wedding .wrap-text hr {
        width: 90%;
        margin: 5px 0; }
      .wrap-gallery-wedding .link-wedding .wrap-text i {
        color: #bb1717;
        transform: rotate(180deg);
        transition: 0.35s transform linear;
        font-size: 12px; }
        @media (max-width: 1200px) {
          .wrap-gallery-wedding .link-wedding .wrap-text i {
            font-size: 12px; } }
        @media (max-width: 768px) {
          .wrap-gallery-wedding .link-wedding .wrap-text i {
            font-size: 9.6px; } }
    .wrap-gallery-wedding .link-wedding:hover:after {
      height: 150px; }
    .wrap-gallery-wedding .link-wedding:hover .img {
      height: 150px; }
      .wrap-gallery-wedding .link-wedding:hover .img img {
        filter: grayscale(75%); }
    .wrap-gallery-wedding .link-wedding:hover .wrap-text {
      max-height: 140px; }
      .wrap-gallery-wedding .link-wedding:hover .wrap-text .category {
        opacity: 1; }
      .wrap-gallery-wedding .link-wedding:hover .wrap-text i {
        transform: rotate(0); }

.info-stay {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%; }
  .info-stay li {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #bb1717;
    font-size: 18px; }
    @media (max-width: 1200px) {
      .info-stay li {
        font-size: 18px; } }
    @media (max-width: 768px) {
      .info-stay li {
        font-size: 14.4px; } }
    .info-stay li:last-child {
      border-bottom: none; }
    .info-stay li strong {
      display: block;
      color: #333;
      font-weight: 550;
      text-transform: uppercase; }
    .info-stay li i {
      margin-right: 15px;
      font-size: 30px;
      color: #aeaeae; }
      @media (max-width: 1200px) {
        .info-stay li i {
          font-size: 30px; } }
      @media (max-width: 768px) {
        .info-stay li i {
          font-size: 24px; } }

.policy a.link {
  position: relative;
  text-decoration: none;
  color: #bb1717;
  transition: 0.25s color linear;
  cursor: pointer; }
  .policy a.link:before, .policy a.link:after {
    position: absolute;
    content: "";
    height: 1px;
    background-color: #bb1717;
    bottom: -1px;
    display: block;
    transition: 0.25s left linear, 0.25s background-color linear, 0.25s width linear;
    left: 50%;
    width: 0;
    cursor: pointer; }
  .policy a.link:hover {
    color: #a11010; }
    .policy a.link:hover:before, .policy a.link:hover:after {
      background-color: #a11010;
      width: 50%; }
    .policy a.link:hover:before {
      left: 0; }

.wrap-text p {
  color: #555;
  font-size: 18px;
  line-height: 1.4em;
  font-family: "Raleway", sans-serif; }
  @media (max-width: 1200px) {
    .wrap-text p {
      font-size: 18px; } }
  @media (max-width: 768px) {
    .wrap-text p {
      font-size: 14.4px; } }

.wrap-text a.link {
  position: relative;
  text-decoration: none;
  color: #bb1717;
  transition: 0.25s color linear;
  cursor: pointer; }
  .wrap-text a.link:before, .wrap-text a.link:after {
    position: absolute;
    content: "";
    height: 1px;
    background-color: #bb1717;
    bottom: -1px;
    display: block;
    transition: 0.25s left linear, 0.25s background-color linear, 0.25s width linear;
    left: 50%;
    width: 0;
    cursor: pointer; }
  .wrap-text a.link:hover {
    color: #a11010; }
    .wrap-text a.link:hover:before, .wrap-text a.link:hover:after {
      background-color: #a11010;
      width: 50%; }
    .wrap-text a.link:hover:before {
      left: 0; }

.wrap-text .button-link {
  text-decoration: none;
  display: inline-block;
  padding: 15px 25px;
  color: #bb1717;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid #bb1717;
  cursor: pointer;
  transition: 0.25s color linear, 0.25s background-color linear, 0.25s border-color linear;
  margin-top: 30px; }
  .wrap-text .button-link:before, .wrap-text .button-link:after {
    display: none; }
  .wrap-text .button-link:hover {
    color: white;
    background-color: #bb1717;
    border-color: #a11010; }

.wrap-text h1.first,
.wrap-text h2.first,
.wrap-text h3.first {
  margin-top: 0; }

.wrap-text h1.deco,
.wrap-text h2.deco,
.wrap-text h3.deco {
  position: relative;
  padding-bottom: 50px;
  font-weight: 100; }
  .wrap-text h1.deco span,
  .wrap-text h2.deco span,
  .wrap-text h3.deco span {
    color: #bb1717;
    font-size: 21px;
    line-height: 1em;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500; }
    @media (max-width: 1200px) {
      .wrap-text h1.deco span,
      .wrap-text h2.deco span,
      .wrap-text h3.deco span {
        font-size: 21px; } }
    @media (max-width: 768px) {
      .wrap-text h1.deco span,
      .wrap-text h2.deco span,
      .wrap-text h3.deco span {
        font-size: 16.8px; } }
  .wrap-text h1.deco:after,
  .wrap-text h2.deco:after,
  .wrap-text h3.deco:after {
    content: "";
    display: block;
    width: 270px;
    bottom: 25px;
    left: 0;
    height: 1px;
    background-color: #bb1717;
    position: absolute; }

.wrap-text h1.center.deco:after,
.wrap-text h2.center.deco:after,
.wrap-text h3.center.deco:after {
  left: 50%;
  transform: translateX(-50%); }

.wrap-text h1.deco {
  color: #333;
  font-size: 90px;
  line-height: 1.2em;
  font-family: "Libre Baskerville", serif; }
  @media (max-width: 1200px) {
    .wrap-text h1.deco {
      font-size: 48.64865px; } }
  @media (max-width: 768px) {
    .wrap-text h1.deco {
      font-size: 30px; } }

.wrap-text h2.deco {
  color: #333;
  font-size: 48px;
  line-height: 1.2em;
  font-family: "Libre Baskerville", serif; }
  @media (max-width: 1200px) {
    .wrap-text h2.deco {
      font-size: 32px; } }
  @media (max-width: 768px) {
    .wrap-text h2.deco {
      font-size: 24px; } }

.wrap-text h3 {
  color: #bb1717;
  font-size: 30px;
  line-height: 1em;
  font-family: "Libre Baskerville", serif; }
  @media (max-width: 1200px) {
    .wrap-text h3 {
      font-size: 24px; } }
  @media (max-width: 768px) {
    .wrap-text h3 {
      font-size: 17.14286px; } }
  .wrap-text h3.deco {
    padding-bottom: 30px;
    color: #333;
    font-size: 30px;
    line-height: 1em;
    font-family: "Libre Baskerville", serif; }
    @media (max-width: 1200px) {
      .wrap-text h3.deco {
        font-size: 30px; } }
    @media (max-width: 768px) {
      .wrap-text h3.deco {
        font-size: 24px; } }
    .wrap-text h3.deco:after {
      width: 100px;
      bottom: 15px; }

.wrap-text .text-two-column {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 230px;
       column-gap: 230px; }

.wrap-text.center,
.wrap-text .center {
  text-align: center; }

.service-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; }
  @media (max-width: 1280px) {
    .service-list-wrapper .item {
      width: 100% !important; } }
  .service-list-wrapper .item .service-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative; }
    .service-list-wrapper .item .service-list .service-list-item {
      width: 25%;
      padding-top: 1rem;
      padding-bottom: 1rem;
      text-align: center; }
      @media (min-width: 1280px) {
        .service-list-wrapper .item .service-list .service-list-item {
          width: 16.666666666666667%; } }
      .service-list-wrapper .item .service-list .service-list-item i {
        font-size: 2rem; }

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

.wrap-content-contact-page-form {
  flex-direction: column; }
  .wrap-content-contact-page-form .wrap-text {
    order: 1; }
  .wrap-content-contact-page-form #form-anchor {
    order: 2; }
  .wrap-content-contact-page-form .errors-form {
    order: 3; }
  .wrap-content-contact-page-form .send-ok {
    order: 3; }

form.contact-form {
  padding: 30px 20px;
  max-width: 768px;
  margin: 0 auto;
  order: 3; }
  form.contact-form div {
    display: flex;
    background-color: white;
    margin-bottom: 25px;
    justify-content: stretch;
    align-items: center;
    padding: 0 15px; }
  form.contact-form i {
    font-size: 20px; }
    @media (max-width: 1200px) {
      form.contact-form i {
        font-size: 20px; } }
    @media (max-width: 768px) {
      form.contact-form i {
        font-size: 16px; } }
  form.contact-form label {
    text-transform: uppercase;
    font-size: 15px; }
    @media (max-width: 1200px) {
      form.contact-form label {
        font-size: 15px; } }
    @media (max-width: 768px) {
      form.contact-form label {
        font-size: 12px; } }
    form.contact-form label a {
      color: #bb1717;
      transition: 0.25s color linear; }
      form.contact-form label a:hover {
        color: #333; }
    form.contact-form label.privacy-label {
      width: 100%;
      display: block;
      text-align: center; }
  form.contact-form input, form.contact-form textarea {
    color: #333;
    font-size: 22px;
    line-height: 1.4em;
    font-family: "Libre Baskerville", serif; }
    @media (max-width: 1200px) {
      form.contact-form input, form.contact-form textarea {
        font-size: 22px; } }
    @media (max-width: 768px) {
      form.contact-form input, form.contact-form textarea {
        font-size: 17.6px; } }
  form.contact-form .label-small label {
    white-space: nowrap; }
  form.contact-form .label-small input {
    padding: 20px 10px;
    border: none;
    width: 100%;
    display: block;
    margin-left: 15px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    form.contact-form .label-small input:focus, form.contact-form .label-small input:active, form.contact-form .label-small input:focus:active {
      background-image: none;
      outline: 0;
      box-shadow: none; }
  form.contact-form .label-big {
    flex-direction: column;
    align-items: flex-start;
    background-color: transparent;
    padding: 0; }
    form.contact-form .label-big label {
      padding: 20px 15px 10px;
      background-color: white; }
    form.contact-form .label-big textarea {
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      padding: 20px;
      border: none;
      min-width: 100%;
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
      min-height: 150px; }
      form.contact-form .label-big textarea:focus, form.contact-form .label-big textarea:active, form.contact-form .label-big textarea:focus:active {
        background-image: none;
        outline: 0;
        box-shadow: none; }
  form.contact-form button.button {
    float: right;
    margin-top: 35px;
    display: flex;
    padding: 20px 30px;
    text-transform: uppercase;
    color: white;
    align-items: center;
    border: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: #bb1717;
    transition: 0.25s background-color linear;
    cursor: pointer;
    font-size: 20px; }
    form.contact-form button.button:focus, form.contact-form button.button:active, form.contact-form button.button:focus:active {
      background-image: none;
      outline: 0;
      box-shadow: none; }
    @media (max-width: 1200px) {
      form.contact-form button.button {
        font-size: 20px; } }
    @media (max-width: 768px) {
      form.contact-form button.button {
        font-size: 16px; } }
    form.contact-form button.button i {
      font-size: 40px;
      margin-left: 10px; }
      @media (max-width: 1200px) {
        form.contact-form button.button i {
          font-size: 40px; } }
      @media (max-width: 768px) {
        form.contact-form button.button i {
          font-size: 32px; } }
    form.contact-form button.button:hover {
      background-color: #333; }

.errors-form {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(-45deg, #821205, red);
  background-size: 300% 300%;
  -webkit-animation: gradient 5s ease infinite;
          animation: gradient 5s ease infinite; }
  .errors-form ul {
    list-style: none;
    padding: 0 20px;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: white; }
    @media (max-width: 1200px) {
      .errors-form ul {
        font-size: 20px; } }
    @media (max-width: 768px) {
      .errors-form ul {
        font-size: 16px; } }
    .errors-form ul li {
      padding: 10px 0; }

footer.footer {
  background-color: white; }
  footer.footer .wrap {
    border-top: 1px solid #f5f5f5; }
  footer.footer .logo {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px; }
    footer.footer .logo .graphic {
      width: 130px;
      margin-right: 30px; }
    footer.footer .logo .text {
      width: 300px; }
    footer.footer .logo:after {
      position: absolute;
      content: '';
      width: 70%;
      left: 0;
      bottom: 0;
      height: 1px;
      background-color: #bb1717;
      display: block; }
  footer.footer .social-footer {
    text-transform: uppercase; }
    footer.footer .social-footer a {
      margin: 0 7px;
      font-size: 23px;
      color: #333;
      transition: 0.25s color linear;
      text-decoration: none;
      cursor: pointer; }
      @media (max-width: 1200px) {
        footer.footer .social-footer a {
          font-size: 23px; } }
      @media (max-width: 768px) {
        footer.footer .social-footer a {
          font-size: 18.4px; } }
      footer.footer .social-footer a:hover {
        color: #bb1717; }
  footer.footer .copyright, footer.footer .content {
    justify-content: space-between; }
  footer.footer .content .wrap-text {
    justify-content: space-between;
    width: 50%; }
    footer.footer .content .wrap-text h3 {
      margin-top: 0;
      margin-bottom: 40px; }
    footer.footer .content .wrap-text p {
      line-height: 2em;
      margin-bottom: 0; }
  footer.footer .copyright {
    padding: 30px 0;
    border-top: 1px solid #f5f5f5; }
    footer.footer .copyright p {
      margin: 0; }

@media (max-width: 1600px) {
  .slider-wrapper-home .slick-dots {
    left: 15px; }
  .slider-wrapper-home .text {
    max-width: 100%;
    width: 75%; }
  .flex.wrap-2 .item {
    width: calc(50% - 50px); }
  .wrap-text .text-two-column {
    -moz-column-gap: 100px;
         column-gap: 100px; } }

@media (max-width: 1400px) {
  .box-full-img-text .content-wrap {
    width: 100%; } }

@media (max-width: 1300px) {
  .wrap-cotent-top-fixed .bottom-link-fixed {
    box-sizing: border-box;
    padding-left: 25px;
    padding-right: 25px;
    justify-content: space-between; } }

@media (max-width: 1150px) {
  .wrap-gallery-wedding .link-wedding {
    width: calc(50% - 30px); }
  .box-2-parallax {
    margin-top: -50px; }
    .box-2-parallax .box-1, .box-2-parallax .box-2 {
      flex-wrap: wrap; }
      .box-2-parallax .box-1 .img, .box-2-parallax .box-2 .img {
        width: 100%;
        position: relative;
        margin-top: 0;
        top: 0; }
    .box-2-parallax .wrap-text {
      margin-top: -100px;
      width: 100%;
      padding: 40px;
      margin-bottom: 50px; }
  footer.footer .copyright {
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    footer.footer .copyright p:nth-child(2) {
      margin-top: 15px; } }

@media (max-width: 1024px) {
  .box-info-contact {
    flex-wrap: wrap;
    justify-content: center; }
    .box-info-contact .item {
      margin-left: 25px;
      margin-right: 25px;
      margin-bottom: 30px; }
  .flex-responsive {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .booking-header .flex-responsive .item {
    width: 45%; }
  footer.footer .content {
    flex-wrap: wrap;
    justify-content: center; }
    footer.footer .content .logo:after {
      width: 100%; }
    footer.footer .content .wrap-text {
      margin-top: 35px;
      width: 100%;
      justify-content: space-around; }
    footer.footer .content .social-footer {
      justify-content: center; }
  .wrap-cotent-top-fixed:before {
    width: 100% !important; }
  .wrap-cotent-top-fixed .bottom-link-fixed {
    left: 0; }
  .wrap-cotent-top-fixed .overlay-booking {
    display: none; }
  .wrap-cotent-top-fixed .wrap-menu, .wrap-cotent-top-fixed .wrap-booking, .wrap-cotent-top-fixed .bottom-link-fixed {
    width: 100%; }
  .slider-wrapper-home .activate-booking {
    bottom: 60px; }
  .slider-wrapper-home .scroll-down {
    left: 100%;
    transform: translateX(-100%);
    padding-right: 15px;
    bottom: 12px; } }

@media (max-width: 900px) {
  .box-full-img-text .flex {
    flex-wrap: wrap; }
  .box-full-img-text .img {
    width: 100%;
    margin-bottom: 30px; }
  .box-full-img-text .wrap-text {
    order: 2; }
    .box-full-img-text .wrap-text.left, .box-full-img-text .wrap-text.right {
      padding-left: 20px;
      padding-right: 20px;
      width: calc(100% - 40px);
      box-sizing: border-box; } }

@media (max-width: 760px) {
  .grecaptcha-badge {
    margin-bottom: 50px; }
  .homepage #content {
    padding-top: 100px; }
  .flex.wrap-2 {
    flex-wrap: wrap; }
    .flex.wrap-2 .item {
      width: 100%; }
    .flex.wrap-2 .logo {
      width: 150px;
      margin-bottom: 30px; }
  .wrap-text .text-two-column {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 0;
         column-gap: 0; }
  .wrap-text h1.deco:after, .wrap-text h2.deco:after, .wrap-text h3.deco:after {
    width: 200px;
    max-width: 90%; }
  footer.footer .logo .graphic {
    width: 100px; }
  footer.footer .logo .text {
    width: 230px; }
  footer.footer .content .wrap-text {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; }
    footer.footer .content .wrap-text h3 {
      margin-bottom: 25px; }
    footer.footer .content .wrap-text div:nth-child(2) {
      padding-top: 50px; }
  footer.footer .copyright {
    flex-wrap: wrap;
    text-align: center; }
    footer.footer .copyright .hide-responsive {
      display: block;
      color: white;
      height: 5px; }
  body {
    padding-bottom: 100px; }
  .bottom-link-fixed {
    display: none !important; }
  header.header .activate-booking {
    display: none; }
  header.header .logo-header {
    left: 100px !important; }
    header.header .logo-header img.graphic {
      width: 70px; }
    header.header .logo-header img.text {
      width: 170px; }
  header.header .social-header, header.header .deco, header.header .selector-lang {
    display: none; }
  header.header .wrap-control-menu {
    height: 70px;
    padding-left: 240px !important; }
  header.header .logo-wrap-control-menu .graphic {
    width: 45px; }
  header.header .logo-wrap-control-menu .text {
    height: 35px; }
  header.header .button-menu {
    padding: 10px;
    width: 50px;
    height: 50px; }
    header.header .button-menu [class^="line-"] {
      width: 40px; }
    header.header .button-menu:hover {
      padding-bottom: 25px;
      height: 35px; }
      header.header .button-menu:hover [class^="text-"] {
        height: 15px; }
    header.header .button-menu.open .line-2, header.header .button-menu.open .line-1 {
      position: absolute;
      top: 35px;
      left: 15px; }
    header.header .button-menu.open:hover .line-2, header.header .button-menu.open:hover .line-1 {
      top: 22px; }
  .responsive-fixed-activate-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d3c5b8;
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0;
    height: 50px;
    color: #555;
    transition: 0.25s color linear,0.25s background-color linear;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    font-size: 19px; } }
  @media (max-width: 760px) and (max-width: 1200px) {
    .responsive-fixed-activate-booking {
      font-size: 19px; } }
  @media (max-width: 760px) and (max-width: 768px) {
    .responsive-fixed-activate-booking {
      font-size: 15.2px; } }

@media (max-width: 760px) {
    .responsive-fixed-activate-booking i {
      font-size: 35px;
      margin-right: 10px; } }
    @media (max-width: 760px) and (max-width: 1200px) {
      .responsive-fixed-activate-booking i {
        font-size: 35px; } }
    @media (max-width: 760px) and (max-width: 768px) {
      .responsive-fixed-activate-booking i {
        font-size: 28px; } }

@media (max-width: 760px) {
    .responsive-fixed-activate-booking:hover {
      color: white;
      background-color: #bb1717; }
  .wrap-cotent-top-fixed .wrap-menu-show-responsive {
    display: flex; }
  .wrap-cotent-top-fixed ul.nav {
    padding-top: 120px; }
  .wrap-cotent-top-fixed .wrap-booking {
    padding-top: 130px; }
  .padding-top {
    padding-top: 50px; }
  .padding-bottom {
    padding-bottom: 50px; }
  .margin-top {
    margin-top: 50px; }
  .margin-bottom {
    margin-bottom: 50px; }
  .slider-wrapper-home {
    height: calc((var(--vh, 1vh) * 100) - 50px); }
    .slider-wrapper-home .activate-booking {
      display: none; }
    .slider-wrapper-home .slick-dots {
      left: 5px;
      bottom: 70px; }
    .slider-wrapper-home button {
      width: 30px;
      height: 40px; }
      .slider-wrapper-home button span {
        width: 2px;
        height: 15px; } }

@media (max-width: 600px) {
  .wrap-gallery-wedding {
    padding-left: 20px;
    padding-right: 20px; }
    .wrap-gallery-wedding .link-wedding {
      width: 100%;
      margin-left: 0;
      margin-right: 0; }
  .swiper-container .swiper-slide {
    padding-bottom: 50px; }
    .swiper-container .swiper-slide .img {
      height: 300px; }
    .swiper-container .swiper-slide .name {
      padding-top: 10px;
      font-size: 30px; } }
    @media (max-width: 600px) and (max-width: 1200px) {
      .swiper-container .swiper-slide .name {
        font-size: 30px; } }
    @media (max-width: 600px) and (max-width: 768px) {
      .swiper-container .swiper-slide .name {
        font-size: 24px; } }

@media (max-width: 600px) {
    .swiper-container .swiper-slide .overlay-text {
      bottom: 0; }
    .swiper-container .swiper-slide .deco {
      opacity: 0; }
    .swiper-container .swiper-slide .wrap-info {
      max-height: 250px; } }

@media (max-width: 480px) {
  footer.footer .logo .graphic {
    width: 70px;
    margin-right: 20px; }
  footer.footer .logo .text {
    width: 150px; }
  .padding-top {
    padding-top: 35px; }
    .padding-top.half {
      padding-top: 20px; }
  .padding-bottom {
    padding-bottom: 35px; }
    .padding-bottom.half {
      padding-bottom: 20px; }
  .margin-top {
    margin-top: 35px; }
    .margin-top.half {
      margin-top: 20px; }
  .margin-bottom {
    margin-bottom: 35px; }
    .margin-bottom.half {
      margin-bottom: 20px; }
  .wrap-booking .button-form {
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .wrap-booking .button-form a {
      margin-bottom: 20px; }
  .slider-wrapper-home .scroll-down {
    bottom: 10px; }
    .slider-wrapper-home .scroll-down i {
      margin-left: 5px;
      margin-right: 5px; }
  .slider-wrapper-home .slick-dots li {
    margin: 0 7px; }
    .slider-wrapper-home .slick-dots li .circle-preloader {
      width: 30px;
      height: 28px; }
      .slider-wrapper-home .slick-dots li .circle-preloader .circle-go {
        transform: scale(0.75); } }

@media (max-width: 340px) {
  .wrap-cotent-top-fixed .wrap-menu-show-responsive .flex .deco {
    margin-left: 15px;
    margin-right: 15px; }
  header.header .wrap-control-menu {
    padding-left: 200px !important; }
  header.header .logo-wrap-control-menu .graphic {
    width: 35px; }
  header.header .logo-wrap-control-menu .text {
    height: 27px; } }

@media (max-width: 320px) and (max-height: 550px) {
  .slider-wrapper-home .text {
    display: none; } }

body {
  color: #555;
  font-size: 18px;
  line-height: 1.4em;
  font-family: "Raleway", sans-serif;
  position: relative; }
  @media (max-width: 1200px) {
    body {
      font-size: 18px; } }
  @media (max-width: 768px) {
    body {
      font-size: 14.4px; } }

/*# sourceMappingURL=main.css.map */
