@charset "UTF-8";
/**import all scss files*/
@import url("https://fonts.googleapis.com/css2?family=Cinzel&family=Open+Sans&display=swap");
/**basic colors*/
/*heihts*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@-webkit-keyframes updown {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 5px);
    transform: translate(0, 5px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }
@-moz-keyframes updown {
  0% {
    -moz-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -moz-transform: translate(0, 5px);
    transform: translate(0, 5px); }
  100% {
    -moz-transform: translate(0, 0);
    transform: translate(0, 0); } }
@-o-keyframes updown {
  0% {
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -o-transform: translate(0, 5px);
    transform: translate(0, 5px); }
  100% {
    -o-transform: translate(0, 0);
    transform: translate(0, 0); } }
@keyframes updown {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 5px);
    transform: translate(0, 5px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }
.delay-02s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.2s; }

.delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.delay-08s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s; }

html, body {
  height: 100%;
  font-size: 1rem; }

body {
  background: #fff repeat;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.8rem;
  color: #222;
  -webkit-font-smoothing: subpixel-antialiased; }

img {
  max-width: 100%; }

.table-responsive {
  overflow-x: auto; }
  .table-responsive table {
    border-collapse: inherit; }

::selection {
  background: #222;
  color: #fff; }

address, .list-inline {
  margin: 0; }

.modal-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222; }

.modal {
  z-index: 99999; }

@media only screen and (max-width: 767px) {
  .mobile-centered {
    text-align: center !important;
    margin: 15px 0; }
    .mobile-centered * {
      text-align: center !important; } }
.flex-center-col {
  display: flex;
  align-items: center;
  justify-content: stretch; }
  .flex-center-col .column {
    align-self: stretch; }
    @media only screen and (max-width: 767px) {
      .flex-center-col .column {
        align-self: auto; } }
  @media only screen and (max-width: 767px) {
    .flex-center-col {
      flex-direction: column; }
      .flex-center-col * {
        float: none !important; } }

.move-left > .ge-content, .move-right > .ge-content {
  padding: 2rem;
  transform: translateX(-5rem);
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-height: calc(100% - 4rem); }
  @media only screen and (max-width: 767px) {
    .move-left > .ge-content, .move-right > .ge-content {
      transform: translateX(0);
      max-height: 100%; } }

.fixed {
  z-index: 9999;
  position: fixed;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
  @media only screen and (max-width: 1199px) {
    .fixed {
      position: relative; } }

.move-right {
  z-index: 10; }
  .move-right > .ge-content {
    transform: translateX(5rem); }
    @media only screen and (max-width: 767px) {
      .move-right > .ge-content {
        transform: translateX(0);
        max-height: 100%; } }

.top-row-margin {
  margin-top: 50px; }

.preloader-container {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center; }
  .preloader-container .preloader {
    position: relative;
    top: 50%;
    color: #fff;
    font-size: 36px;
    margin-top: -18px; }

.container-wide {
  padding-right: 0;
  padding-left: 0; }
  .container-wide .row {
    margin: 0 !important; }
    .container-wide .row .column {
      padding: 0 !important; }

.date-picker-wrapper {
  z-index: 99999 !important; }

.copy-link {
  padding: 3px 5px;
  border: 1px solid #484848; }

a:hover, a:focus {
  text-decoration: none; }

map {
  color: #222; }
  map h3 {
    color: #222 !important; }

a.back {
  color: #744c28; }
  a.back:hover {
    color: #222; }

img {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0); }

.transition {
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }

.transition-slow {
  -webkit-transition: all 1000ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 1000ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 1000ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 1000ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 1000ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }

.rotate180 {
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1; }

.pageWrapper {
  position: relative; }

.alert-danger {
  position: absolute;
  bottom: 0; }

@-webkit-keyframes breath {
  0% {
    background-size: 110% auto; }
  50% {
    background-size: 140% auto; }
  100% {
    background-size: 110% auto; } }
.banner-slider.is-background {
  position: fixed;
  width: 100%; }

.blueimp-gallery {
  display: none; }

#main:before {
  top: -7px;
  left: 0;
  content: '';
  width: 100%;
  height: 7px;
  position: absolute;
  z-index: 9999; }

.page-with-banner #main {
  margin-top: 0; }

.slider + #main {
  margin-top: 0; }

img.lazy {
  background: url(../images/common/preloader.svg) center no-repeat; }

.flowing-tile {
  align-items: center;
  display: flex;
  flex-direction: row; }
  .flowing-tile.right {
    justify-content: flex-end; }
  .flowing-tile.left {
    justify-content: flex-start; }
  .flowing-tile.center {
    justify-content: center; }
  .flowing-tile .column {
    margin: 1rem;
    max-width: 25rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.9); }
    .flowing-tile .column .ge-content {
      border: 1px solid #eee;
      padding: 1rem; }
    @media only screen and (max-width: 767px) {
      .flowing-tile .column {
        max-width: 100%; } }

#main {
  position: relative;
  z-index: 9999; }

.flash-messages {
  position: fixed;
  z-index: 999999;
  width: 100%;
  top: 0; }

.centered {
  text-align: center;
  display: inline-block;
  vertical-align: middle; }

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0; }

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.jarallax {
  height: inherit;
  min-height: inherit;
  background-size: cover;
  background: no-repeat 50% 50%; }

.cms-img-responsive {
  width: 100%;
  height: auto; }

.img-responsive {
  display: inline-block; }

.html5-video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }
  .html5-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.container-fluid {
  padding-right: 60px;
  padding-left: 60px; }
  @media only screen and (max-width: 1199px) {
    .container-fluid {
      padding-right: 15px;
      padding-left: 15px; } }
  @media only screen and (max-width: 767px) {
    .container-fluid {
      padding-right: 15px;
      padding-left: 15px; } }

.back-area {
  background-color: #744c28;
  padding: 15px 0; }
  .back-area a {
    color: #fff;
    font-size: 20px; }

/**trimtext*/
.hiddenText {
  display: none; }

.readMoreTextContainer {
  display: block;
  text-align: center;
  margin-top: 30px; }
  .readMoreTextContainer .readMoreText {
    text-transform: lowercase;
    display: inline-block;
    padding: 5px 17px;
    border: 3px solid rgba(34, 34, 34, 0.7);
    color: rgba(34, 34, 34, 0.7);
    font-weight: bold;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    .readMoreTextContainer .readMoreText:hover {
      border: 3px solid #744c28;
      background-color: #744c28;
      color: #fff; }

/***/
br[data-mce-bogus] {
  display: none; }

/*------------------------
         LIGHTBOX
------------------------*/
.pop-up-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999; }

.pop-up {
  display: none;
  position: absolute;
  z-index: 10000; }

.pop-up__close {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10001;
  cursor: pointer;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff; }

.pop-up__close:after {
  content: "\f00d"; }

.text-injected {
  padding: 30px;
  background-color: #fff;
  color: #222; }
  .text-injected h3 {
    margin-top: 0;
    color: #744c28; }

hr {
  border-color: #eee; }

a .grayscale {
  filter: gray;
  /* IE6-9 */
  filter: grayscale(1);
  /* Microsoft Edge and Firefox 35+ */
  -webkit-filter: grayscale(1);
  /* Google Chrome, Safari 6+ & Opera 15+ */ }

/* Disable grayscale on hover */
a:hover .grayscale {
  filter: none;
  -webkit-filter: grayscale(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

/**animation*/
@-webkit-keyframes shine {
  100% {
    left: 125%; } }
@keyframes shine {
  100% {
    left: 125%; } }
@keyframes circle {
  0% {
    opacity: 1; }
  40% {
    opacity: 1; }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0; } }
@-webkit-keyframes flash {
  0% {
    opacity: .4; }
  100% {
    opacity: 1; } }
.strips {
  display: flex; }
  .strips div {
    width: 33.33%;
    height: 0.5rem; }
  .strips div:nth-child(1) {
    background-color: #744c28; }
  .strips div:nth-child(2) {
    background-color: #222; }
  .strips div:nth-child(3) {
    background-color: #3b2314; }

@keyframes flash {
  0% {
    opacity: .4; }
  100% {
    opacity: 1; } }
@media only screen and (max-width: 991px) {
  .mce-object-iframe {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
    display: block; }
    .mce-object-iframe iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; } }
.modal.fade.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background-color: #222;
  border-color: #222; }

.pagination-border {
  text-align: center; }

/**placeholder*/
.lds-facebook {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px; }

.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #222;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite; }

.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s; }

.lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s; }

.lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0; }

.delay-4s {
  animation-delay: 4s; }

.delay-4s {
  animation-delay: 4s; }

.delay-3s {
  animation-delay: 4s; }

.delay-2s {
  animation-delay: 2s; }

.delay-1s {
  animation-delay: 1s; }

@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px; }
  50%, 100% {
    top: 24px;
    height: 32px; } }
.currency-calc {
  position: relative;
  -moz-border-radius: 1rem;
  -webkit-border-radius: 1rem;
  border-radius: 1rem;
  padding: 1.4rem 1rem;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  background-color: rgba(59, 35, 20, 0.7);
  overflow: hidden; }
  .currency-calc:after {
    z-index: -1;
    top: 0%;
    left: 0;
    content: '';
    position: absolute;
    background: #3b2314;
    width: 110%;
    height: 250%;
    -moz-border-radius: 80%;
    -webkit-border-radius: 80%;
    border-radius: 80%;
    transform: skew(50deg); }
  .currency-calc h3 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 2px; }
  .currency-calc h4 {
    text-align: center;
    color: #fff; }
  .currency-calc .currency-form-control {
    margin: 0.6rem 0;
    display: flex;
    justify-content: center; }
    @media only screen and (max-width: 991px) {
      .currency-calc .currency-form-control {
        flex-wrap: wrap; } }
    .currency-calc .currency-form-control button {
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      background: #744c28;
      color: #fff; }
      .currency-calc .currency-form-control button:hover {
        background-color: #222;
        color: #222; }
      .currency-calc .currency-form-control button span {
        margin-left: 3px; }
    .currency-calc .currency-form-control input, .currency-calc .currency-form-control select, .currency-calc .currency-form-control button {
      width: 25%;
      align-items: center;
      justify-content: center;
      display: flex;
      margin: 1px;
      padding: 0.5rem;
      outline: none;
      height: 3rem;
      border: 1px solid #3b2314; }
      @media only screen and (max-width: 991px) {
        .currency-calc .currency-form-control input, .currency-calc .currency-form-control select, .currency-calc .currency-form-control button {
          width: 50%;
          margin: 0;
          text-align: center;
          justify-content: center;
          align-items: center; } }

.bootstrap-datetimepicker-widget table th,
.bootstrap-datetimepicker-widget table td.day {
  height: 2rem;
  width: 2rem; }

.page-baner {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center; }
  .page-baner h1 {
    font-family: "Cinzel", serif;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 0 8px #000; }
    @media only screen and (max-width: 991px) {
      .page-baner h1 {
        font-size: 1.6rem; } }

.list-inline li {
  display: inline-block;
  padding: 0 0.5rem; }

/* Go-Top Button */
#go-top {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 80px;
  margin-top: 40px;
  margin-bottom: 20px;
  z-index: 9999;
  cursor: pointer;
  background: #744c28 no-repeat center;
  background-size: contain;
  color: #fff;
  text-align: center;
  padding: 20px;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1); }
  #go-top:hover {
    border-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    animation: updown; }
  #go-top i {
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    color: #fff;
    width: 27px;
    text-align: center; }
  #go-top:hover i {
    color: #fff; }
  #go-top:hover i {
    animation-name: fadeOutUp;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: fadeOutUp;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: fadeOutUp;
    -moz-animation-duration: 1s;
    -moz-animation-iteration-count: infinite; }

.top-content {
  background-color: #3b2314;
  font-family: "Cinzel", serif;
  width: 100%;
  position: relative;
  z-index: 99999;
  color: #fff;
  padding: 0.3rem 0;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 991px) {
    .top-content {
      display: none; } }
  .top-content .col-sm-12 {
    display: flex;
    text-align: center;
    justify-content: space-between; }
    .top-content .col-sm-12 ul:first-child {
      text-align: left; }
    .top-content .col-sm-12 ul:last-child {
      text-align: right; }
      @media only screen and (max-width: 991px) {
        .top-content .col-sm-12 ul:last-child {
          text-align: center; } }
    @media only screen and (max-width: 991px) {
      .top-content .col-sm-12 .social-media {
        margin-top: 1rem; } }
    .top-content .col-sm-12 .social-media ul {
      margin: 0; }
      .top-content .col-sm-12 .social-media ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 1.7rem;
        width: 1.7rem;
        font-size: 1rem;
        margin: 0.2rem;
        color: #fff;
        border: 0.08rem #fff solid;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%; }
        @media only screen and (max-width: 991px) {
          .top-content .col-sm-12 .social-media ul li a {
            height: 1.5rem;
            width: 1.5rem;
            font-size: 0.8rem; } }
        .top-content .col-sm-12 .social-media ul li a:hover {
          color: #744c28;
          border-color: #fff; }
    @media only screen and (max-width: 991px) {
      .top-content .col-sm-12 {
        flex-direction: column;
        text-align: center;
        justify-content: space-between;
        align-items: stretch; } }
  .top-content a {
    font-size: 0.8125rem;
    font-family: "Open Sans", sans-serif; }
    .top-content a:hover {
      color: rgba(255, 255, 255, 0.6); }
  .top-content .navbar {
    margin: 0;
    min-height: auto; }
    .top-content .navbar ul {
      display: flex;
      margin: 0;
      padding: 0; }
      @media only screen and (max-width: 991px) {
        .top-content .navbar ul {
          justify-content: space-between; } }
      .top-content .navbar ul li {
        list-style: none;
        margin: 0;
        padding: 0; }
        .top-content .navbar ul li a {
          font-size: 0.7rem;
          padding: 4px; }
  .top-content .reservation-button {
    background-color: #744c28;
    color: #fff;
    display: inline-block;
    padding: 5px 18px;
    text-transform: uppercase; }
    @media only screen and (max-width: 991px) {
      .top-content .reservation-button span {
        display: none; } }
    .top-content .reservation-button:hover {
      background-color: #4e331b; }
  .top-content ul.list-inline {
    display: inline-block;
    margin: 0;
    width: 100%; }
  .top-content .fb-share-button-container {
    display: inline-block; }
    @media only screen and (max-width: 991px) {
      .top-content .fb-share-button-container {
        margin-top: 10px;
        display: block;
        text-align: center; } }
  @media only screen and (max-width: 991px) {
    .top-content .info {
      font-size: 0.6rem; } }

a.phone-link {
  font-family: "Cinzel", serif;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  color: #fff;
  padding: 0.4rem;
  font-size: 1rem; }
  a.phone-link:hover {
    color: #fff; }

#top .lang span {
  display: none; }
#top .lang ul.list-inline li {
  position: relative; }
  #top .lang ul.list-inline li a {
    padding: 5px;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase; }
  #top .lang ul.list-inline li.arrow {
    display: none; }
  #top .lang ul.list-inline li.active a, #top .lang ul.list-inline li:hover a {
    color: #744c28; }
#top .lang ul.list-inline > li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1px;
  width: 1px;
  height: 10px;
  top: 50%;
  margin-top: -4px;
  background: #222; }

body {
  top: 0 !important; }

.google-translator {
  right: -6px; }
  .google-translator > span {
    display: none; }
    @media only screen and (max-width: 991px) {
      .google-translator > span {
        display: inline;
        color: #fff; } }

@media only screen and (max-width: 991px) {
  #google_translate_element {
    float: none;
    position: relative; } }

#google_translate_element div {
  background-color: transparent;
  border: 0; }

#google_translate_element span {
  color: #fff; }

.goog-te-gadget-icon {
  background: url("../images/common/lang-icon.png") no-repeat !important;
  width: 24px !important;
  height: 24px !important; }

.goog-te-menu-value > span {
  display: none; }

.goog-te-banner-frame.skiptranslate {
  position: absolute;
  left: -1000px; }

.goog-tooltip {
  display: none !important; }

.goog-tooltip:hover {
  display: none !important; }

.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important; }

.sticky-wrapper {
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  position: relative;
  z-index: 99999; }

.is-sticky {
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
  .is-sticky .sticky {
    top: 60px; }
    @media only screen and (max-width: 991px) {
      .is-sticky .sticky {
        top: 0;
        position: relative !important; } }
  .is-sticky #header .logo-small {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; }
  .is-sticky #header .header-top .logo-container a img {
    width: 10rem; }

.sticky {
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
  @media only screen and (max-width: 991px) {
    .sticky {
      position: relative !important; } }

header#header {
  position: relative;
  width: 100%;
  z-index: 999;
  background: #fff;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
  @media only screen and (max-width: 991px) {
    header#header {
      position: fixed; }
      header#header .top-content {
        display: none; } }
  header#header .header-top {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }
    header#header .header-top .header-contact {
      display: flex;
      justify-content: flex-end; }
      header#header .header-top .header-contact .phone {
        text-align: right;
        font-size: 1.6rem;
        color: #222; }
        header#header .header-top .header-contact .phone p {
          font-size: 0.8rem;
          text-transform: uppercase;
          margin: 0; }
      header#header .header-top .header-contact i {
        color: #222;
        margin: 0 0.5rem; }
      header#header .header-top .header-contact a {
        color: #fff; }
        header#header .header-top .header-contact a:hover {
          color: #222; }
      @media only screen and (max-width: 991px) {
        header#header .header-top .header-contact .address {
          display: none; } }
    header#header .header-top .logo-container {
      -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
      -khtml-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
      -ms-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
      -o-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      max-width: 15rem;
      top: 0;
      position: absolute;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 100; }
      header#header .header-top .logo-container a {
        display: flex;
        flex-direction: row;
        align-items: center; }
        header#header .header-top .logo-container a img {
          -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          width: 15rem; }
      @media only screen and (max-width: 991px) {
        header#header .header-top .logo-container a img {
          width: 10rem; } }
  header#header .menu-wrapper {
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row; }
    @media only screen and (max-width: 991px) {
      header#header .menu-wrapper {
        flex-direction: column;
        padding: 0;
        align-items: flex-end; } }
  header#header .header-container {
    width: 100%;
    z-index: 100;
    position: relative; }
    @media only screen and (max-width: 991px) {
      header#header .header-container .container {
        width: 100%; } }
    header#header .header-container .header-inner {
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      position: relative; }
      header#header .header-container .header-inner #navigation {
        -webkit-transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
        @media only screen and (max-width: 991px) {
          header#header .header-container .header-inner #navigation {
            display: flex;
            justify-content: space-between; } }

@media only screen and (max-width: 991px) {
  .navigation-opened #header .navbar {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
    background: #222;
    z-index: 199; } }

.is-sticky {
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }

header#header .navbar {
  width: 100%;
  border: none;
  min-height: auto;
  vertical-align: middle;
  position: relative;
  z-index: 10;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end; }
  @media only screen and (max-width: 991px) {
    header#header .navbar {
      visibility: hidden;
      -webkit-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      left: 0;
      position: fixed;
      justify-content: center;
      width: 100%;
      height: 100vh;
      top: 0;
      flex-direction: column;
      overflow-y: auto;
      z-index: 199;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=0);
      -moz-opacity: 0;
      -khtml-opacity: 0;
      opacity: 0;
      -webkit-box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
      -khtml-box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
      -ms-box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
      -o-box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1); } }
  header#header .navbar ul.navigation {
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    align-items: flex-end;
    /**pierwszy poziom*/ }
    @media only screen and (max-width: 991px) {
      header#header .navbar ul.navigation {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto; } }
    header#header .navbar ul.navigation a {
      cursor: pointer; }
    header#header .navbar ul.navigation > li {
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      position: relative;
      list-style: none;
      margin: 0;
      padding: 0 0.9rem;
      display: inline-block;
      /**li highlight*/
      /**li highlight*/
      /** pierwszy poziom a*/
      /**strzałka w rodzicu submenu*/
      /**submenu*/ }
      @media only screen and (max-width: 991px) {
        header#header .navbar ul.navigation > li {
          display: flex;
          flex-direction: column;
          width: 100%; } }
      header#header .navbar ul.navigation > li.highlight2, header#header .navbar ul.navigation > li.highlight2:hover, header#header .navbar ul.navigation > li.active.current.highlight2 {
        background: #222;
        margin-left: 2rem; }
        @media only screen and (max-width: 991px) {
          header#header .navbar ul.navigation > li.highlight2, header#header .navbar ul.navigation > li.highlight2:hover, header#header .navbar ul.navigation > li.active.current.highlight2 {
            margin-left: 0; } }
        header#header .navbar ul.navigation > li.highlight2 > a, header#header .navbar ul.navigation > li.highlight2:hover > a, header#header .navbar ul.navigation > li.active.current.highlight2 > a {
          color: #744c28; }
          header#header .navbar ul.navigation > li.highlight2 > a:after, header#header .navbar ul.navigation > li.highlight2:hover > a:after, header#header .navbar ul.navigation > li.active.current.highlight2 > a:after {
            width: 100%; }
      header#header .navbar ul.navigation > li.highlight, header#header .navbar ul.navigation > li.highlight:hover, header#header .navbar ul.navigation > li.active.current.highlight {
        background: #744c28; }
        @media only screen and (max-width: 991px) {
          header#header .navbar ul.navigation > li.highlight, header#header .navbar ul.navigation > li.highlight:hover, header#header .navbar ul.navigation > li.active.current.highlight {
            background: none; } }
        header#header .navbar ul.navigation > li.highlight > a, header#header .navbar ul.navigation > li.highlight:hover > a, header#header .navbar ul.navigation > li.active.current.highlight > a {
          color: #fff; }
          @media only screen and (max-width: 991px) {
            header#header .navbar ul.navigation > li.highlight > a, header#header .navbar ul.navigation > li.highlight:hover > a, header#header .navbar ul.navigation > li.active.current.highlight > a {
              color: #744c28; } }
          header#header .navbar ul.navigation > li.highlight > a:after, header#header .navbar ul.navigation > li.highlight:hover > a:after, header#header .navbar ul.navigation > li.active.current.highlight > a:after {
            color: #f9f9f9; }
      header#header .navbar ul.navigation > li.active, header#header .navbar ul.navigation > li.current, header#header .navbar ul.navigation > li:hover, header#header .navbar ul.navigation > li:hover:not(.highlight) {
        transform: scale3d(1, 1, 1); }
        header#header .navbar ul.navigation > li.active > a, header#header .navbar ul.navigation > li.current > a, header#header .navbar ul.navigation > li:hover > a, header#header .navbar ul.navigation > li:hover:not(.highlight) > a {
          color: #222; }
          @media only screen and (max-width: 991px) {
            header#header .navbar ul.navigation > li.active > a, header#header .navbar ul.navigation > li.current > a, header#header .navbar ul.navigation > li:hover > a, header#header .navbar ul.navigation > li:hover:not(.highlight) > a {
              color: #eee; } }
          header#header .navbar ul.navigation > li.active > a:after, header#header .navbar ul.navigation > li.current > a:after, header#header .navbar ul.navigation > li:hover > a:after, header#header .navbar ul.navigation > li:hover:not(.highlight) > a:after {
            width: 100%;
            height: 1px; }
      header#header .navbar ul.navigation > li > a {
        font-size: 1rem;
        -webkit-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        position: relative;
        text-align: center;
        display: block;
        color: #222;
        font-family: "Cinzel", serif;
        background-position: center; }
        @media only screen and (max-width: 991px) {
          header#header .navbar ul.navigation > li > a {
            font-size: 1.5rem;
            padding: 1.4rem 0;
            color: #fff; } }
        header#header .navbar ul.navigation > li > a:after {
          position: absolute;
          bottom: 0;
          left: 0;
          content: '';
          width: 0;
          height: 1px;
          background-color: #222;
          -webkit-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -moz-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -ms-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -o-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
          @media only screen and (max-width: 991px) {
            header#header .navbar ul.navigation > li > a:after {
              content: none; } }
        header#header .navbar ul.navigation > li > a span {
          position: relative; }
      header#header .navbar ul.navigation > li em {
        display: none;
        position: absolute;
        bottom: -6px;
        left: 50%;
        margin-left: -5px;
        z-index: 10;
        color: #fff; }
        @media only screen and (max-width: 991px) {
          header#header .navbar ul.navigation > li em {
            right: 5px;
            left: auto;
            display: block;
            padding: 3px 10px;
            bottom: auto;
            top: 6px;
            color: #222;
            background: none; }
            header#header .navbar ul.navigation > li em i {
              color: #222; } }
      @media only screen and (min-width: 992px) {
        header#header .navbar ul.navigation > li {
          /**submenu działa po najechaniu*/ }
          header#header .navbar ul.navigation > li:hover > ul {
            visibility: visible;
            -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            display: block;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
            filter: alpha(opacity=100);
            -moz-opacity: 1;
            -khtml-opacity: 1;
            opacity: 1;
            top: 100%;
            height: auto; } }
      @media only screen and (max-width: 991px) {
        header#header .navbar ul.navigation > li {
          /**submenu działa po kliknieciu*/ }
          header#header .navbar ul.navigation > li.opened > ul {
            visibility: visible;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
            filter: alpha(opacity=100);
            -moz-opacity: 1;
            -khtml-opacity: 1;
            opacity: 1;
            top: 0;
            -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            display: block;
            height: auto;
            margin: 0;
            left: 0;
            padding: 10px; } }
      header#header .navbar ul.navigation > li ul {
        padding: 10px;
        visibility: hidden;
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        min-width: 200px;
        top: 110%;
        left: 50%;
        margin-left: -100px;
        display: block;
        position: absolute;
        z-index: 1000;
        background-color: #222;
        list-style: none;
        text-align: center;
        -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
        -khtml-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
        /**kolejne poziomy*/ }
        @media only screen and (max-width: 991px) {
          header#header .navbar ul.navigation > li ul {
            top: 0;
            background-color: transparent;
            text-align: center;
            width: 100%;
            position: relative;
            box-shadow: none;
            padding: 0;
            margin: 0;
            left: 0;
            height: 0; } }
        header#header .navbar ul.navigation > li ul li {
          position: relative;
          display: block;
          margin: 0;
          list-style: none;
          padding: 0; }
          header#header .navbar ul.navigation > li ul li.opener.opened em.caret-link i {
            color: #fff; }
          @media only screen and (max-width: 991px) {
            header#header .navbar ul.navigation > li ul li.opener.opened em.caret-link i {
              color: #744c28; } }
          header#header .navbar ul.navigation > li ul li.opener.opened ul {
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
            filter: alpha(opacity=100);
            -moz-opacity: 1;
            -khtml-opacity: 1;
            opacity: 1;
            visibility: visible;
            height: auto; }
            @media only screen and (max-width: 991px) {
              header#header .navbar ul.navigation > li ul li.opener.opened ul {
                margin: 0;
                left: 0; } }
            header#header .navbar ul.navigation > li ul li.opener.opened ul li a {
              color: #fff; }
            header#header .navbar ul.navigation > li ul li.opener.opened ul li:hover a {
              color: #fff; }
          header#header .navbar ul.navigation > li ul li.opener:hover em.caret-link i {
            color: #fff; }
          @media only screen and (max-width: 991px) {
            header#header .navbar ul.navigation > li ul li.opener:hover em.caret-link i {
              color: #744c28; } }
          header#header .navbar ul.navigation > li ul li.opener:hover ul {
            background-color: #fff;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
            filter: alpha(opacity=100);
            -moz-opacity: 1;
            -khtml-opacity: 1;
            opacity: 1;
            visibility: visible;
            height: auto; }
            header#header .navbar ul.navigation > li ul li.opener:hover ul li:hover a {
              color: #fff; }
            header#header .navbar ul.navigation > li ul li.opener:hover ul li a {
              color: #222; }
          header#header .navbar ul.navigation > li ul li.opener ul {
            background-color: #fff;
            visibility: hidden;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
            filter: alpha(opacity=0);
            -moz-opacity: 0;
            -khtml-opacity: 0;
            opacity: 0;
            -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            display: block;
            left: 100%;
            top: 0;
            height: 0; }
            @media only screen and (max-width: 991px) {
              header#header .navbar ul.navigation > li ul li.opener ul {
                left: 0; } }
          header#header .navbar ul.navigation > li ul li.opener em.caret-link {
            right: 10px;
            left: auto;
            bottom: auto;
            top: 7px;
            -webkit-transform: rotate(-90deg);
            -khtml-transform: rotate(-90deg);
            -moz-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
            -o-transform: rotate(-90deg);
            transform: rotate(-90deg);
            filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
            zoom: 1; }
            @media only screen and (max-width: 991px) {
              header#header .navbar ul.navigation > li ul li.opener em.caret-link {
                -webkit-transform: rotate(0deg);
                -khtml-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
                filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
                zoom: 1; } }
          header#header .navbar ul.navigation > li ul li a {
            display: block;
            padding: 7px 10px;
            color: #a8a8ac;
            font-family: "Cinzel", serif;
            text-transform: uppercase; }
            @media only screen and (max-width: 991px) {
              header#header .navbar ul.navigation > li ul li a {
                color: #a8a8ac; } }
          header#header .navbar ul.navigation > li ul li:hover {
            background-color: #222; }
            header#header .navbar ul.navigation > li ul li:hover a {
              color: #fff !important; }
    header#header .navbar ul.navigation > li:not(:last-child):not(.highlight):after {
      display: flex;
      content: "•";
      position: absolute;
      right: -3px;
      height: 1rem;
      top: 0;
      color: white; }
      @media only screen and (max-width: 991px) {
        header#header .navbar ul.navigation > li:not(:last-child):not(.highlight):after {
          display: none; } }

/*over*/
.hamburger-nav {
  display: none;
  padding: 3px;
  position: relative;
  margin: 1rem;
  height: 30px;
  width: 30px;
  cursor: pointer;
  z-index: 200;
  transition: opacity .25s ease; }
  @media only screen and (max-width: 991px) {
    .hamburger-nav {
      display: block;
      top: 0; } }
  .hamburger-nav.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #fff; }
  .hamburger-nav.active .middle {
    opacity: 0;
    background: #fff; }
  .hamburger-nav.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #fff; }
  .hamburger-nav span {
    background: #744c28;
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    cursor: pointer; }
    .hamburger-nav span:nth-of-type(2) {
      top: 11px; }
    .hamburger-nav span:nth-of-type(3) {
      top: 22px; }

.overlay {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden; }

.navigation-opened .overlay {
  opacity: 1;
  visibility: visible;
  height: 100%; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%; }
  100% {
    opacity: 1;
    left: 0; } }
.slider {
  position: relative;
  width: 100%;
  /**custom slider navigation*/
  /**widget*/ }
  .slider #home-scroll-down {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
    -khtml-opacity: 0.9;
    opacity: 0.9;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    text-align: center;
    cursor: pointer;
    position: absolute;
    bottom: 50px;
    left: 50%;
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 100; }
    @media only screen and (max-width: 991px) {
      .slider #home-scroll-down {
        display: none; } }
    .slider #home-scroll-down:hover a {
      color: #222; }
    .slider #home-scroll-down:hover svg .scroller {
      fill: #fff; }
    .slider #home-scroll-down a {
      display: block;
      color: #fff; }
    .slider #home-scroll-down svg {
      width: 25px; }
      .slider #home-scroll-down svg .scroller {
        fill: #744c28;
        -webkit-animation: updown 1s infinite;
        -moz-animation: updown 1s infinite;
        -o-animation: updown 1s infinite;
        animation: updown 1s infinite; }
  .slider .slider-cover {
    width: 100%;
    position: relative;
    z-index: 1; }
    @media only screen and (max-width: 991px) {
      .slider .slider-cover {
        box-shadow: none; } }
  .slider .mesh {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/common/grid-mesh.png") repeat; }
  .slider .slider-nav-container {
    position: absolute;
    width: 100%;
    top: 50%;
    z-index: 99; }
    .slider .slider-nav-container .owl-next, .slider .slider-nav-container .owl-prev {
      position: absolute;
      padding: 10px;
      color: #fff;
      font-size: 40px;
      cursor: pointer; }
    .slider .slider-nav-container .owl-prev {
      left: 0; }
    .slider .slider-nav-container .owl-next {
      right: 0; }
  .slider .nav-container {
    position: absolute;
    z-index: 100;
    width: 100%;
    top: 50%; }
    .slider .nav-container .owl-nav {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=100);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; }
      .slider .nav-container .owl-nav .owl-prev {
        margin-left: -50px;
        background: none; }
      .slider .nav-container .owl-nav .owl-next {
        background: none;
        margin-right: -50px; }
  .slider .owl-nav {
    z-index: 120;
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    @media only screen and (max-width: 767px) {
      .slider .owl-nav {
        display: none; } }
    .slider .owl-nav .owl-prev, .slider .owl-nav .owl-next {
      position: absolute;
      padding: 7px;
      cursor: pointer;
      background-color: #744c28;
      color: #fff;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
      .slider .owl-nav .owl-prev i, .slider .owl-nav .owl-next i {
        font-size: 20px;
        margin-top: 2px; }
    .slider .owl-nav .owl-prev {
      text-align: right;
      left: 0;
      padding-left: 20px; }
      .slider .owl-nav .owl-prev:hover {
        padding-left: 30px;
        background-color: #222; }
    .slider .owl-nav .owl-next {
      right: 0;
      padding-right: 20px; }
      .slider .owl-nav .owl-next:hover {
        padding-right: 30px;
        background-color: #222; }
  .slider .owl-nav.disabled {
    visibility: hidden; }
  .slider .owl-dots {
    padding: 15px 0 10px 0;
    width: 100%;
    text-align: center; }
    .slider .owl-dots .owl-dot {
      display: inline-block;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      border: 3px solid #744c28;
      width: 15px;
      height: 15px;
      margin: 4px; }
    .slider .owl-dots .owl-dot.active {
      border: 3px solid transparent;
      background-color: #744c28; }
  .slider:hover .owl-nav {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; }
    .slider:hover .owl-nav .owl-prev:hover, .slider:hover .owl-nav .owl-next:hover {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=100);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; }

.slider-strip {
  top: 0;
  height: 100%;
  position: absolute;
  z-index: 0;
  width: 100%; }

.section-slider {
  position: relative; }
  .section-slider .owl-dots {
    margin-top: -60px;
    position: relative;
    z-index: 120; }
    .section-slider .owl-dots .owl-dot {
      border: 3px solid #fff;
      width: 25px;
      height: 25px; }
      .section-slider .owl-dots .owl-dot.active {
        background-color: #fff; }
  .section-slider .slide {
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    position: relative;
    height: 400px;
    width: auto;
    background-size: cover;
    background-position: center; }
    .section-slider .slide .slider-action {
      height: 100%;
      display: table;
      width: 100%;
      top: 0;
      z-index: 110;
      position: absolute; }
  .section-slider .lt {
    vertical-align: top; }
  .section-slider .lm {
    vertical-align: middle; }
  .section-slider .lb {
    vertical-align: bottom; }
  .section-slider .ct {
    vertical-align: top;
    text-align: center; }
  .section-slider .cm {
    margin-top: 100px;
    vertical-align: middle;
    text-align: center; }
  .section-slider .cb {
    vertical-align: bottom;
    text-align: center; }
  .section-slider .rt {
    vertical-align: top;
    left: 0;
    text-align: right; }
  .section-slider .rm {
    vertical-align: middle;
    left: 0;
    text-align: right; }
  .section-slider .rb {
    vertical-align: bottom;
    left: 0;
    text-align: right; }
  .section-slider .slider-description-container {
    display: table-cell;
    color: #fff; }
    .section-slider .slider-description-container h2 {
      color: #fff;
      font-size: 6vw;
      font-family: "Cinzel", serif;
      font-weight: bold;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); }
      @media only screen and (max-width: 991px) {
        .section-slider .slider-description-container h2 {
          font-size: 32px; } }
      @media only screen and (max-width: 767px) {
        .section-slider .slider-description-container h2 {
          font-size: 22px; } }

.banner-slider {
  position: relative;
  height: auto;
  max-height: calc(100vh - 102px);
  width: auto; }
  .banner-slider .owl-carousel .owl-item img {
    width: auto; }
  @media only screen and (max-width: 767px) {
    .banner-slider {
      height: 0 !important;
      padding-bottom: 56.25%;
      margin-top: 0; }
      .banner-slider .slides-container {
        height: 100%; } }
  .banner-slider .slider-action {
    width: 100%;
    height: calc(100% - 30px);
    display: table;
    position: absolute;
    z-index: 100;
    top: 0; }
    .banner-slider .slider-action .slider-description-container {
      display: table-cell; }
      .banner-slider .slider-action .slider-description-container h1, .banner-slider .slider-action .slider-description-container h2 {
        font-family: "Open Sans", sans-serif;
        margin-top: 0;
        text-shadow: 0 0 3px #000; }
      .banner-slider .slider-action .slider-description-container h1 {
        font-size: 3rem;
        color: #fff; }
        @media only screen and (max-width: 767px) {
          .banner-slider .slider-action .slider-description-container h1 {
            font-size: 1.5rem; } }
      .banner-slider .slider-action .slider-description-container h2 {
        font-size: 2rem;
        color: #fff;
        font-weight: normal; }
        @media only screen and (max-width: 767px) {
          .banner-slider .slider-action .slider-description-container h2 {
            font-size: 1rem; } }
  .banner-slider > .slider-description-container {
    top: 0;
    display: table;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100; }
    .banner-slider > .slider-description-container .slider-decor {
      height: 100%;
      width: 100%;
      display: table-cell;
      vertical-align: middle;
      background-color: rgba(34, 34, 34, 0.4); }
      .banner-slider > .slider-description-container .slider-decor .slider-description {
        font-family: "Cinzel", serif;
        max-width: 998px;
        margin: 0 auto; }
        @media only screen and (max-width: 991px) {
          .banner-slider > .slider-description-container .slider-decor .slider-description {
            max-width: 90%; } }
        .banner-slider > .slider-description-container .slider-decor .slider-description h2 {
          font-size: 1.8rem;
          color: #fff; }
          @media only screen and (max-width: 767px) {
            .banner-slider > .slider-description-container .slider-decor .slider-description h2 {
              font-size: 1rem; } }
    .banner-slider > .slider-description-container .slider-description, .banner-slider > .slider-description-container .slide-description {
      background-size: 100%; }
      .banner-slider > .slider-description-container .slider-description h1, .banner-slider > .slider-description-container .slide-description h1 {
        font-weight: normal;
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
        display: block;
        color: #fff;
        font-size: 4rem;
        margin-top: 10px;
        font-family: "Cinzel", serif; }
        @media only screen and (max-width: 991px) {
          .banner-slider > .slider-description-container .slider-description h1, .banner-slider > .slider-description-container .slide-description h1 {
            font-size: 1.4rem; } }
      .banner-slider > .slider-description-container .slider-description p, .banner-slider > .slider-description-container .slide-description p {
        font-size: 1.2rem; }
        @media only screen and (max-width: 991px) {
          .banner-slider > .slider-description-container .slider-description p, .banner-slider > .slider-description-container .slide-description p {
            font-size: 1rem; } }
      .banner-slider > .slider-description-container .slider-description h2, .banner-slider > .slider-description-container .slide-description h2 {
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
        font-size: 3rem;
        display: block;
        font-family: "Cinzel", serif;
        color: #3b2314; }
      .banner-slider > .slider-description-container .slider-description a.button, .banner-slider > .slider-description-container .slide-description a.button {
        text-transform: uppercase;
        font-size: 0.8rem;
        text-shadow: none;
        margin-top: 1rem;
        background-color: #222;
        border: 1px solid #fff;
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        color: #fff;
        padding: 0.6rem 2.5rem;
        display: inline-block;
        -webkit-border-radius: 30px;
        -khtml-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
        border-radius: 30px; }
        .banner-slider > .slider-description-container .slider-description a.button:hover, .banner-slider > .slider-description-container .slide-description a.button:hover {
          background-color: #fff;
          color: #222;
          border: 1px solid #222; }
  .banner-slider .slide {
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    position: relative;
    height: auto;
    max-height: calc(100vh - 102px);
    width: 100%;
    background-size: cover;
    background-position: top center; }
    @media only screen and (max-width: 767px) {
      .banner-slider .slide {
        height: 0 !important;
        padding-bottom: 56.25%;
        position: relative; } }
    .banner-slider .slide video {
      margin-bottom: -10px; }
    .banner-slider .slide .slider-action {
      position: absolute;
      width: 100%;
      height: 100%;
      bottom: 0;
      left: 0;
      display: table; }
      .banner-slider .slide .slider-action p {
        padding: 0; }
    .banner-slider .slide .lt {
      vertical-align: top; }
    .banner-slider .slide .lm {
      vertical-align: middle; }
    .banner-slider .slide .lb {
      vertical-align: bottom; }
    .banner-slider .slide .ct {
      vertical-align: top;
      text-align: center; }
    .banner-slider .slide .cm {
      vertical-align: middle;
      text-align: center;
      margin-top: 100px; }
    .banner-slider .slide .cb {
      vertical-align: bottom;
      text-align: center; }
    .banner-slider .slide .rt {
      vertical-align: top;
      left: 0;
      text-align: right; }
    .banner-slider .slide .rm {
      vertical-align: middle;
      left: 0;
      text-align: right; }
    .banner-slider .slide .rb {
      vertical-align: bottom;
      left: 0;
      text-align: right; }
  .banner-slider .js-goto-button {
    -webkit-appearance: button;
    color: #fff;
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: 320px;
    margin-left: -160px;
    text-align: center;
    background-color: transparent;
    border: 0;
    z-index: 110;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    .banner-slider .js-goto-button:hover, .banner-slider .js-goto-button:active, .banner-slider .js-goto-button:focus {
      outline: 0;
      border: none; }
    @media only screen and (max-width: 767px) {
      .banner-slider .js-goto-button {
        display: none; } }
    .banner-slider .js-goto-button span {
      display: block; }
      .banner-slider .js-goto-button span.text-holder {
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
        margin-bottom: 20px; }
      .banner-slider .js-goto-button span.icon-holder {
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        display: inline-block;
        position: relative;
        background-color: rgba(0, 0, 0, 0.3);
        width: 50px;
        height: 50px;
        text-align: center;
        border: 2px solid #fff;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        color: #fff;
        animation: button-pulse 2s ease infinite;
        -webkit-animation: button-pulse 2s ease infinite; }
        .banner-slider .js-goto-button span.icon-holder:hover {
          background-color: #222; }
        .banner-slider .js-goto-button span.icon-holder i {
          width: 100%;
          font-size: 20px;
          position: absolute;
          top: 50%;
          left: 0;
          margin-top: -10px; }
  .banner-slider .owl-dots {
    bottom: 0;
    position: absolute;
    width: 100%;
    right: 0;
    margin: 0;
    padding: 0; }
    .banner-slider .owl-dots .owl-dot {
      padding: 0;
      display: inline-block;
      height: auto;
      width: auto;
      border: none;
      margin: 0 2px; }
      .banner-slider .owl-dots .owl-dot.active {
        border: none;
        background: none; }
        .banner-slider .owl-dots .owl-dot.active span {
          background-color: #fff;
          border: 4px solid #744c28; }
      .banner-slider .owl-dots .owl-dot span {
        display: block;
        width: 20px;
        height: 20px;
        background-color: #744c28;
        border: none; }

.is-background {
  position: fixed;
  z-index: 0;
  top: 0;
  width: 100%; }
  .is-background .slide {
    background-size: cover;
    display: none;
    background-position: center; }
  .is-background .section-slider {
    position: relative; }
    .is-background .section-slider .slider-description-container {
      display: table;
      width: 100%;
      height: 100%;
      top: 0;
      position: absolute; }
      .is-background .section-slider .slider-description-container .slider-decor {
        display: table-cell;
        vertical-align: bottom;
        text-align: center;
        z-index: 99999;
        position: relative; }
        .is-background .section-slider .slider-description-container .slider-decor h1 {
          font-family: "Cinzel", serif;
          font-size: 40px;
          display: inline-block;
          color: #fff;
          background-color: #222;
          line-height: 60px;
          padding: 0 15px; }

@-webkit-keyframes button-pulse {
  0% {
    transform: translateY(-5px); }
  50% {
    transform: translateY(5px); }
  100% {
    transform: translateY(-5px); } }
@-moz-keyframes button-pulse {
  0% {
    transform: translateY(-5px); }
  50% {
    transform: translateY(5px); }
  100% {
    transform: translateY(-5px); } }
@keyframes button-pulse {
  0% {
    transform: translateY(-5px); }
  50% {
    transform: translateY(5px); }
  100% {
    transform: translateY(-5px); } }
@-webkit-keyframes zoom {
  0% {
    transform: scale(1, 1); }
  100% {
    transform: scale(1.2, 1.2); } }
@keyframes zoom {
  0% {
    transform: scale(1, 1); }
  100% {
    transform: scale(1.2, 1.2); } }
@media only screen and (max-width: 991px) {
  div.slide.slide-1 {
    display: flex;
    flex-direction: column; }
    div.slide.slide-1 img {
      width: 50% !important;
      margin: 0 auto; } }

section.section {
  position: relative;
  /**important*/
  /**  dark  */
  /** blue */ }
  section.section .owl-carousel .owl-stage-outer {
    overflow: hidden; }
    section.section .owl-carousel .owl-stage-outer .owl-stage {
      display: flex;
      align-items: stretch;
      flex-direction: row; }
      section.section .owl-carousel .owl-stage-outer .owl-stage .owl-item {
        position: relative; }
      section.section .owl-carousel .owl-stage-outer .owl-stage .item {
        position: relative;
        height: 100%; }
  section.section blockquote {
    position: relative;
    font-style: italic; }
    section.section blockquote p:before {
      content: '\201C';
      position: absolute;
      top: 35px;
      margin-left: -65px;
      color: #000;
      font-size: 6em;
      z-index: -1; }
    section.section blockquote p:after {
      content: '\201C';
      position: absolute;
      color: #000;
      font-size: 6em;
      z-index: -1; }
  section.section .section-decor {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0; }
  section.section h1 {
    font-family: "Cinzel", serif;
    color: #744c28;
    font-size: 3.8rem; }
    @media only screen and (max-width: 991px) {
      section.section h1 {
        font-size: 2rem; } }
  section.section h2.header {
    margin-top: 0;
    position: relative;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-family: "Cinzel", serif;
    letter-spacing: 2px;
    color: #744c28; }
    @media only screen and (max-width: 991px) {
      section.section h2.header {
        font-size: 2rem; } }
    section.section h2.header:after {
      z-index: 0;
      left: 50%;
      transform: translate(-50%, 110%);
      background-color: transparent !important;
      position: absolute;
      content: '';
      background: url("../images/orn.svg") no-repeat center;
      width: 10rem;
      height: 2rem; }
    section.section h2.header span {
      position: relative; }
  section.section h3.sub-header {
    margin-top: 0;
    position: relative;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    color: #555555; }
    @media only screen and (max-width: 991px) {
      section.section h3.sub-header {
        font-size: 1.4rem; } }
    section.section h3.sub-header span {
      position: relative; }
  section.section h2 {
    text-transform: none;
    position: relative;
    font-size: 2.1rem;
    font-weight: normal;
    color: #222;
    font-family: "Cinzel", serif; }
    @media only screen and (max-width: 991px) {
      section.section h2 {
        font-size: 1.5rem;
        line-height: 2rem; } }
    section.section h2 strong {
      font-weight: bold; }
  section.section h3 {
    font-family: "Cinzel", serif;
    margin-top: 0;
    color: #222;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.8rem; }
    @media only screen and (max-width: 991px) {
      section.section h3 {
        font-size: 1.4rem;
        line-height: 2rem; } }
  section.section h4 {
    font-size: 0.9rem;
    color: #222;
    font-family: "Cinzel", serif; }
  section.section h5 {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem; }
  section.section .bottom-line {
    border-bottom: 1px solid #744c28; }
  section.section .stylize > .ge-content {
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -khtml-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    justify-content: center;
    flex-direction: column;
    display: flex;
    height: 100%;
    width: 100%;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 1rem;
    color: #222; }
    section.section .stylize > .ge-content h3 {
      color: #222; }
  section.section ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    section.section ul li {
      color: #222;
      position: relative;
      padding-left: 1rem; }
      section.section ul li:after {
        content: '';
        display: block;
        position: absolute;
        top: 10px;
        left: 0;
        width: 0;
        height: 0;
        border-width: 5px 0 5px 8px;
        border-style: solid;
        border-color: transparent transparent transparent #744c28; }
  section.section ul.list-unstyled li {
    padding: 0; }
    section.section ul.list-unstyled li:after {
      display: none; }
  section.section a {
    color: #222; }
    section.section a:hover {
      color: #744c28; }
  section.section a.button, section.section button.button {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 1rem;
    background-color: #744c28;
    text-transform: uppercase;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    color: #fff;
    padding: 0.8rem 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: #744c28 1px solid; }
    section.section a.button:hover, section.section button.button:hover {
      background-color: #222;
      color: #fff; }
  section.section .light, section.section .white {
    background: #f9f9f9 url("../images/bg-light.png");
    color: #222;
    padding: 10px 0; }
    section.section .light h1, section.section .light h2, section.section .light h3, section.section .white h1, section.section .white h2, section.section .white h3 {
      color: #744c28; }
      section.section .light h1:after, section.section .light h2:after, section.section .light h3:after, section.section .white h1:after, section.section .white h2:after, section.section .white h3:after {
        background-color: #3b2314; }
    section.section .light a, section.section .white a {
      color: #744c28; }
      section.section .light a:hover, section.section .white a:hover {
        color: #000; }
        section.section .light a:hover h3, section.section .white a:hover h3 {
          color: #fff; }
  section.section .white {
    background-color: white; }
  section.section .dark {
    color: #fff;
    background-color: #222; }
    section.section .dark h1, section.section .dark h2, section.section .dark h3, section.section .dark h4, section.section .dark h5, section.section .dark h6 {
      color: #fff; }
    section.section .dark h2.header {
      color: #fff; }
    section.section .dark .header-line {
      display: none; }
    section.section .dark h3 {
      color: #fff;
      font-size: 2.4rem; }
      @media only screen and (max-width: 991px) {
        section.section .dark h3 {
          font-size: 1.4rem; } }
    section.section .dark h2 {
      color: #fff;
      margin-bottom: 30px; }
    section.section .dark a {
      color: #222; }
      section.section .dark a:hover {
        color: #fff; }
    section.section .dark button {
      border: 1px solid #744c28; }
  section.section .blue {
    color: #fff;
    background-color: #744c28; }
    section.section .blue h1, section.section .blue h2, section.section .blue h3 {
      color: #fff; }
    section.section .blue a {
      color: #222; }
      section.section .blue a:hover {
        color: #fff; }
  section.section .navy-blue {
    color: #fff;
    background-color: #222; }
    section.section .navy-blue h1, section.section .navy-blue h2, section.section .navy-blue h3 {
      color: #fff; }
    section.section .navy-blue a {
      color: #744c28; }
      section.section .navy-blue a:hover {
        color: #fff; }
  section.section blockquote {
    text-align: center;
    border: none; }
    section.section blockquote h3 {
      margin: 0 auto;
      display: inline-block;
      text-align: center;
      position: relative;
      font-size: 40px;
      font-style: italic;
      color: #fff;
      line-height: 66px;
      border: none;
      padding: 15px 50px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
      font-family: "Cinzel", serif; }
      @media only screen and (max-width: 767px) {
        section.section blockquote h3 {
          padding: 10px; } }
      section.section blockquote h3:after {
        position: absolute;
        content: ' ';
        width: 76px;
        height: 60px;
        right: 0;
        bottom: 0;
        margin-right: -30px; }
      section.section blockquote h3:before {
        position: absolute;
        content: ' ';
        width: 76px;
        height: 60px;
        margin-left: -30px;
        left: 0;
        top: 0; }
    section.section blockquote h2, section.section blockquote h3 {
      color: #fff; }
  section.section img.img-border {
    border: 10px solid #fff;
    position: relative; }
    section.section img.img-border:after {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      border: 2px solid #222; }
  section.section.two-columns {
    position: relative; }
    section.section.two-columns .columns {
      width: 50%;
      float: left; }
      @media only screen and (max-width: 991px) {
        section.section.two-columns .columns {
          float: none;
          width: 100%; } }
    section.section.two-columns .modal {
      z-index: 9999;
      color: #222; }
      section.section.two-columns .modal button {
        color: #222;
        border: 1px solid #222 !important; }
        section.section.two-columns .modal button:hover {
          color: #fff; }
  section.section.two-columns.dark2 .left-column {
    position: absolute;
    background-size: cover;
    height: 100%;
    margin-left: 50%; }
    @media only screen and (max-width: 991px) {
      section.section.two-columns.dark2 .left-column {
        position: relative;
        margin: 0; } }
    section.section.two-columns.dark2 .left-column .img-column-container {
      background-position: center;
      background-size: cover;
      width: 100%;
      height: 100%; }
      @media only screen and (max-width: 991px) {
        section.section.two-columns.dark2 .left-column .img-column-container {
          min-height: 250px; } }
  section.section.two-columns.dark2 .right-column {
    color: #fff;
    margin-left: 0;
    display: block;
    width: 50%;
    height: 100%;
    float: left;
    padding: 15px;
    position: relative; }
    @media only screen and (max-width: 991px) {
      section.section.two-columns.dark2 .right-column {
        float: none;
        width: 100%; } }
    section.section.two-columns.dark2 .right-column .frame {
      border: 1px solid #36393b;
      min-height: 300px;
      padding: 15px 100px; }
      @media only screen and (max-width: 991px) {
        section.section.two-columns.dark2 .right-column .frame {
          padding: 15px; } }
      section.section.two-columns.dark2 .right-column .frame h2 {
        text-align: center; }
      section.section.two-columns.dark2 .right-column .frame button {
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        background: none;
        border: 1px solid #fff;
        display: inline-block;
        padding: 10px 20px;
        text-transform: uppercase; }
        section.section.two-columns.dark2 .right-column .frame button:hover {
          background-color: #841823; }
  section.section.two-columns.light2 {
    color: #fff; }
    section.section.two-columns.light2 .left-column {
      position: absolute;
      background-size: cover;
      height: 100%;
      margin-left: 0; }
      @media only screen and (max-width: 991px) {
        section.section.two-columns.light2 .left-column {
          position: relative;
          margin: 0; } }
      section.section.two-columns.light2 .left-column .img-column-container {
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 100%; }
        @media only screen and (max-width: 991px) {
          section.section.two-columns.light2 .left-column .img-column-container {
            min-height: 250px; } }
    section.section.two-columns.light2 .right-column {
      margin-left: 50%;
      display: block;
      width: 50%;
      height: 100%;
      float: left;
      padding: 15px;
      position: relative; }
      @media only screen and (max-width: 991px) {
        section.section.two-columns.light2 .right-column {
          float: none;
          width: 100%;
          margin-left: 0; } }
      section.section.two-columns.light2 .right-column .frame {
        border: 1px solid #b11d2e;
        min-height: 300px;
        padding: 15px 100px; }
        @media only screen and (max-width: 991px) {
          section.section.two-columns.light2 .right-column .frame {
            padding: 15px; } }
        section.section.two-columns.light2 .right-column .frame h2 {
          text-align: center; }
        section.section.two-columns.light2 .right-column .frame button {
          -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          background: none;
          border: 1px solid #fff;
          display: inline-block;
          padding: 10px 20px;
          text-transform: uppercase; }
          section.section.two-columns.light2 .right-column .frame button:hover {
            background-color: #25282a; }

.reservation-inline h2 {
  font-size: 60px;
  text-shadow: 1px 1px 3px #222; }
  .reservation-inline h2 .capitalize {
    font-size: 60px; }
    .reservation-inline h2 .capitalize span {
      font-size: 42px; }
.reservation-inline .error_list, .reservation-inline .error_list li {
  margin: 0;
  padding: 0;
  list-style: none; }

section.section.footer-item-links {
  padding: 1rem 0;
  background-color: #7c512b; }
  @media only screen and (max-width: 991px) {
    section.section.footer-item-links {
      text-align: center; } }
  section.section.footer-item-links h3 {
    text-transform: none;
    color: #fff; }
  section.section.footer-item-links a {
    display: block;
    font-size: 0.8rem;
    color: #222; }
    @media only screen and (max-width: 991px) {
      section.section.footer-item-links a {
        font-size: 1rem;
        padding: 0.3rem; } }
    section.section.footer-item-links a:hover {
      color: #fff; }

#row-special {
  padding: 1rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 991px) {
    #row-special {
      padding: 0; } }

.light-bg {
  background-color: #f9f9f9; }

section.section #main .group-page-slider img {
  padding: 0;
  border: none; }
section.section .slider-center {
  width: 100%;
  overflow: hidden; }
  section.section .slider-center .center {
    width: 1170px;
    margin: 0 auto; }
section.section .group-page-slider-transparent {
  position: relative; }
  section.section .group-page-slider-transparent .owl-carousel .owl-stage-outer {
    overflow: visible !important; }
  section.section .group-page-slider-transparent .owl-item {
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=30);
    -moz-opacity: 0.3;
    -khtml-opacity: 0.3;
    opacity: 0.3;
    border: 1px solid #eee; }
    section.section .group-page-slider-transparent .owl-item.active {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=100);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; }
      @media only screen and (max-width: 767px) {
        section.section .group-page-slider-transparent .owl-item.active {
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
          filter: alpha(opacity=100);
          -moz-opacity: 1;
          -khtml-opacity: 1;
          opacity: 1; } }
  section.section .group-page-slider-transparent .slider .owl-nav {
    top: 75px; }
  section.section .group-page-slider-transparent .slider .owl-prev, section.section .group-page-slider-transparent .slider .owl-next {
    padding: 11px 15px;
    font-size: 20px;
    background-color: #222; }
    @media only screen and (max-width: 767px) {
      section.section .group-page-slider-transparent .slider .owl-prev i, section.section .group-page-slider-transparent .slider .owl-next i {
        color: rgba(0, 0, 0, 0.6); } }
    @media only screen and (max-width: 767px) {
      section.section .group-page-slider-transparent .slider .owl-prev, section.section .group-page-slider-transparent .slider .owl-next {
        border-color: rgba(0, 0, 0, 0.6); } }
  section.section .group-page-slider-transparent .slider .owl-prev {
    left: 0;
    margin-left: -20px; }
  section.section .group-page-slider-transparent .slider .owl-next {
    right: 0;
    margin-right: -20px; }
  section.section .group-page-slider-transparent .slider .owl-prev:hover, section.section .group-page-slider-transparent .slider .owl-next:hover {
    background-color: #744c28;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    color: #fff; }
  section.section .group-page-slider-transparent .box {
    border-bottom: 10px solid transparent;
    padding-bottom: 15px;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    section.section .group-page-slider-transparent .box figcaption h3 {
      padding: 15px 0;
      text-align: center;
      margin: 0;
      font-size: 1.6px;
      color: #744c28;
      font-weight: 300;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    section.section .group-page-slider-transparent .box figcaption .short-content {
      color: #744c28;
      margin: 1rem 0;
      padding: 0 1rem;
      font-family: "Open Sans", sans-serif;
      height: 48px;
      overflow: hidden;
      text-overflow: ellipsis; }
    section.section .group-page-slider-transparent .box figure {
      position: relative;
      overflow: hidden;
      display: block; }
      section.section .group-page-slider-transparent .box figure img {
        -webkit-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        position: relative;
        top: 0; }
      section.section .group-page-slider-transparent .box figure img.lazy {
        border: none; }
    section.section .group-page-slider-transparent .box .button-container {
      text-align: center; }
      section.section .group-page-slider-transparent .box .button-container a {
        display: inline-block;
        background-color: #744c28;
        color: #fff;
        padding: 10px 30px;
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    section.section .group-page-slider-transparent .box:hover {
      border-bottom: 10px solid #744c28;
      -webkit-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1);
      -khtml-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1);
      -ms-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1);
      -o-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.4) 0px 4px 0px rgba(0, 0, 0, 0.1); }
      section.section .group-page-slider-transparent .box:hover h3 {
        text-align: center;
        margin: 0;
        color: #fff; }
      section.section .group-page-slider-transparent .box:hover .button-container a {
        background-color: #222; }
      section.section .group-page-slider-transparent .box:hover figure {
        border: 1px solid #222;
        padding: 10px; }
        section.section .group-page-slider-transparent .box:hover figure img {
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
          filter: alpha(opacity=50);
          -moz-opacity: 0.5;
          -khtml-opacity: 0.5;
          opacity: 0.5; }
section.section .group-page-tiles,
section.section .group-page-slider {
  position: relative;
  /**nawigacja slidera*/ }
  section.section .group-page-tiles .price-from,
  section.section .group-page-slider .price-from {
    right: 0;
    bottom: 0;
    margin-top: -1rem;
    z-index: 99999;
    position: absolute;
    display: inline;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.7rem;
    background-color: #222;
    color: #a8a8ac;
    text-transform: uppercase; }
    section.section .group-page-tiles .price-from span,
    section.section .group-page-slider .price-from span {
      text-transform: none;
      font-family: "Cinzel", serif;
      font-size: 1.4rem;
      color: #fff; }
  section.section .group-page-tiles .properties,
  section.section .group-page-slider .properties {
    font-size: .8rem;
    padding: 1rem;
    background-color: #222;
    color: #fff; }
    section.section .group-page-tiles .properties .property-row,
    section.section .group-page-slider .properties .property-row {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center; }
  section.section .group-page-tiles .owl-item,
  section.section .group-page-slider .owl-item {
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    section.section .group-page-tiles .owl-item.active,
    section.section .group-page-slider .owl-item.active {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=100);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; }
      @media only screen and (max-width: 767px) {
        section.section .group-page-tiles .owl-item.active,
        section.section .group-page-slider .owl-item.active {
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
          filter: alpha(opacity=100);
          -moz-opacity: 1;
          -khtml-opacity: 1;
          opacity: 1; } }
  section.section .group-page-tiles .item,
  section.section .group-page-slider .item {
    position: relative;
    margin: 1rem;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -khtml-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1); }
    section.section .group-page-tiles .item .box-container,
    section.section .group-page-slider .item .box-container {
      position: relative;
      height: 100%; }
      section.section .group-page-tiles .item .box-container a,
      section.section .group-page-slider .item .box-container a {
        height: 100%;
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        display: block;
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
        section.section .group-page-tiles .item .box-container a .bg-cover,
        section.section .group-page-slider .item .box-container a .bg-cover {
          -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          position: absolute;
          width: 100%;
          height: 50%;
          top: 25%; }
        section.section .group-page-tiles .item .box-container a span.button,
        section.section .group-page-slider .item .box-container a span.button {
          -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          display: block;
          background: #744c28;
          color: #fff;
          font-size: 0.8rem;
          text-transform: uppercase;
          padding: 0.5rem;
          letter-spacing: 2px; }
        section.section .group-page-tiles .item .box-container a .box,
        section.section .group-page-slider .item .box-container a .box {
          height: 100%;
          position: relative;
          background-color: #fff; }
          section.section .group-page-tiles .item .box-container a .box .short-content,
          section.section .group-page-slider .item .box-container a .box .short-content {
            -webkit-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -moz-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -ms-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -o-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            background-color: rgba(34, 34, 34, 0.8);
            color: #fff;
            padding: 2rem;
            flex-direction: column;
            left: 0.5rem;
            top: 0.5rem;
            height: calc(100% - 1rem);
            width: calc(100% - 1rem);
            -moz-transform: scale(0.9);
            -webkit-transform: scale(0.9);
            -o-transform: scale(0.9);
            -ms-transform: scale(0.9);
            transform: scale(0.9);
            z-index: 9999;
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
            filter: alpha(opacity=0);
            -moz-opacity: 0;
            -khtml-opacity: 0;
            opacity: 0; }
          section.section .group-page-tiles .item .box-container a .box .figure-wrapper figure,
          section.section .group-page-slider .item .box-container a .box .figure-wrapper figure {
            margin: 0;
            z-index: 2;
            overflow: hidden;
            position: relative;
            -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            width: 100%;
            height: 100%;
            background-position: center;
            background-size: cover; }
            section.section .group-page-tiles .item .box-container a .box .figure-wrapper figure img,
            section.section .group-page-slider .item .box-container a .box .figure-wrapper figure img {
              -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
              -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
              -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
              -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
              transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
            section.section .group-page-tiles .item .box-container a .box .figure-wrapper figure img.lazy,
            section.section .group-page-slider .item .box-container a .box .figure-wrapper figure img.lazy {
              border: none; }
          section.section .group-page-tiles .item .box-container a .box .text-container,
          section.section .group-page-slider .item .box-container a .box .text-container {
            padding: 1rem; }
            section.section .group-page-tiles .item .box-container a .box .text-container .short-content,
            section.section .group-page-slider .item .box-container a .box .text-container .short-content {
              font-family: "Open Sans", sans-serif;
              color: #744c28;
              font-style: italic;
              text-align: center;
              font-size: 0.7rem; }
            section.section .group-page-tiles .item .box-container a .box .text-container h3,
            section.section .group-page-slider .item .box-container a .box .text-container h3 {
              margin: 0;
              text-transform: uppercase;
              letter-spacing: 1px;
              font-weight: normal;
              text-align: center;
              font-size: 1.2rem;
              color: #222;
              line-height: 2rem;
              font-family: "Open Sans", sans-serif; }
              @media only screen and (max-width: 991px) {
                section.section .group-page-tiles .item .box-container a .box .text-container h3,
                section.section .group-page-slider .item .box-container a .box .text-container h3 {
                  font-size: 1.3rem;
                  line-height: 2rem; } }
          section.section .group-page-tiles .item .box-container a .box .box-link-container,
          section.section .group-page-slider .item .box-container a .box .box-link-container {
            -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
            background-color: #222;
            color: #fff;
            position: relative;
            width: 100%;
            bottom: 0;
            padding: 0.5rem; }
            section.section .group-page-tiles .item .box-container a .box .box-link-container span,
            section.section .group-page-slider .item .box-container a .box .box-link-container span {
              -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
              -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
              -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
              -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
              transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
        section.section .group-page-tiles .item .box-container a:hover .short-content,
        section.section .group-page-slider .item .box-container a:hover .short-content {
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
          filter: alpha(opacity=100);
          -moz-opacity: 1;
          -khtml-opacity: 1;
          opacity: 1;
          -moz-transform: scale(1);
          -webkit-transform: scale(1);
          -o-transform: scale(1);
          -ms-transform: scale(1);
          transform: scale(1); }
        section.section .group-page-tiles .item .box-container a:hover .box-link-container,
        section.section .group-page-slider .item .box-container a:hover .box-link-container {
          background-color: #744c28; }
          section.section .group-page-tiles .item .box-container a:hover .box-link-container span,
          section.section .group-page-slider .item .box-container a:hover .box-link-container span {
            margin-left: 10%; }
        section.section .group-page-tiles .item .box-container a:hover .box .figure-wrapper figure img,
        section.section .group-page-slider .item .box-container a:hover .box .figure-wrapper figure img {
          -moz-transform: scale(1.05);
          -webkit-transform: scale(1.05);
          -o-transform: scale(1.05);
          -ms-transform: scale(1.05);
          transform: scale(1.05); }
        section.section .group-page-tiles .item .box-container a:hover span.button,
        section.section .group-page-slider .item .box-container a:hover span.button {
          background: #222;
          color: #fff; }
  section.section .group-page-tiles .slider-nav-container,
  section.section .group-page-slider .slider-nav-container {
    display: none;
    position: absolute;
    width: 100%;
    top: 50%;
    z-index: 100; }
    section.section .group-page-tiles .slider-nav-container .owl-prev, section.section .group-page-tiles .slider-nav-container .owl-next,
    section.section .group-page-slider .slider-nav-container .owl-prev,
    section.section .group-page-slider .slider-nav-container .owl-next {
      position: absolute;
      padding: 15px;
      cursor: pointer;
      background-color: #3b2314;
      color: #fff;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
      section.section .group-page-tiles .slider-nav-container .owl-prev i, section.section .group-page-tiles .slider-nav-container .owl-next i,
      section.section .group-page-slider .slider-nav-container .owl-prev i,
      section.section .group-page-slider .slider-nav-container .owl-next i {
        font-size: 20px; }
    section.section .group-page-tiles .slider-nav-container .owl-prev,
    section.section .group-page-slider .slider-nav-container .owl-prev {
      text-align: right;
      left: 0;
      padding-left: 20px; }
      section.section .group-page-tiles .slider-nav-container .owl-prev:hover,
      section.section .group-page-slider .slider-nav-container .owl-prev:hover {
        padding-left: 30px;
        background-color: #744c28; }
    section.section .group-page-tiles .slider-nav-container .owl-next,
    section.section .group-page-slider .slider-nav-container .owl-next {
      right: 0;
      padding-right: 20px; }
      section.section .group-page-tiles .slider-nav-container .owl-next:hover,
      section.section .group-page-slider .slider-nav-container .owl-next:hover {
        padding-right: 30px;
        background-color: #744c28; }
section.section .group-page-list time {
  display: block;
  text-align: right;
  color: #3291c7;
  font-weight: bold; }
section.section .group-page-list .row:nth-child(even) .box h3 {
  color: #222; }
section.section .group-page-list .row:nth-child(even) .box .button-container {
  text-align: right; }
  section.section .group-page-list .row:nth-child(even) .box .button-container a {
    background-color: #232323;
    border: solid #232323;
    color: #fff;
    padding: 10px 20px; }
    section.section .group-page-list .row:nth-child(even) .box .button-container a:hover {
      border-color: #744c28;
      background-color: #744c28; }
section.section .group-page-list .box {
  padding-bottom: 1rem;
  padding-top: 1rem;
  border-bottom: 1px solid #222; }
  section.section .group-page-list .box h3 {
    font-weight: normal;
    font-family: "Cinzel", serif;
    color: #744c28;
    text-transform: uppercase; }
    @media only screen and (max-width: 1199px) {
      section.section .group-page-list .box h3 {
        margin-top: 0; } }
    @media only screen and (max-width: 767px) {
      section.section .group-page-list .box h3 {
        margin-top: 15px; } }
  section.section .group-page-list .box .button-container {
    margin-top: 20px;
    text-align: right; }
    section.section .group-page-list .box .button-container a {
      background-color: #744c28;
      border: solid #744c28;
      color: #fff;
      padding: 10px 20px; }
      section.section .group-page-list .box .button-container a:hover {
        border-color: #232323;
        background-color: #232323; }
section.section .group-page-list-xxl h3 {
  padding-bottom: 10px;
  transform: translate(-50%, 0);
  display: inline;
  position: relative;
  text-align: center;
  font-weight: 300;
  font-family: "Cinzel", serif;
  text-transform: uppercase; }
  section.section .group-page-list-xxl h3:after {
    left: 50%;
    bottom: 0;
    margin-left: -30px;
    position: absolute;
    content: ' ';
    width: 60px;
    height: 3px;
    background-color: #744c28; }
section.section .group-page-list-xxl .frame {
  border: 1px solid #744c28;
  padding: 5px; }
section.section .group-page-list-xxl p {
  margin-top: 30px; }
section.section .group-page-list-xxl > .row:nth-child(even) a {
  color: #744c28;
  border-color: #744c28; }
section.section .group-page-list-xxl > .row:nth-child(even) a.img {
  float: right;
  right: 0; }
  @media only screen and (max-width: 479px) {
    section.section .group-page-list-xxl > .row:nth-child(even) a.img {
      float: none;
      width: 100%;
      position: relative;
      min-height: 200px; } }
section.section .group-page-list-xxl > .row:nth-child(even) .col-50.description {
  float: left; }
  @media only screen and (max-width: 479px) {
    section.section .group-page-list-xxl > .row:nth-child(even) .col-50.description {
      float: none;
      width: 100%;
      position: relative; } }
section.section .group-page-list-xxl > .row:nth-child(odd) a.img {
  float: left; }
  @media only screen and (max-width: 479px) {
    section.section .group-page-list-xxl > .row:nth-child(odd) a.img {
      float: none;
      width: 100%;
      position: relative;
      min-height: 200px; } }
section.section .group-page-list-xxl > .row:nth-child(odd) .col-50.description {
  float: right; }
  @media only screen and (max-width: 479px) {
    section.section .group-page-list-xxl > .row:nth-child(odd) .col-50.description {
      float: none;
      width: 100%;
      position: relative; } }
section.section .group-page-list-xxl .box {
  position: relative;
  width: 100%;
  overflow: hidden; }
  section.section .group-page-list-xxl .box .col-50 {
    position: relative;
    width: 50%; }
    @media only screen and (max-width: 479px) {
      section.section .group-page-list-xxl .box .col-50 {
        float: none;
        width: 100%;
        min-height: 0; } }
  section.section .group-page-list-xxl .box .col-50.img {
    width: 50%;
    height: 100%;
    display: block;
    overflow: hidden;
    background-size: cover;
    text-align: center;
    background-position: center center;
    position: absolute; }
    @media only screen and (max-width: 479px) {
      section.section .group-page-list-xxl .box .col-50.img {
        float: none;
        width: 100%;
        min-height: 0; } }
    section.section .group-page-list-xxl .box .col-50.img .layer {
      background-color: rgba(0, 0, 0, 0.5);
      position: absolute;
      z-index: 1;
      width: 100%;
      height: 100%;
      -webkit-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=0);
      -moz-opacity: 0;
      -khtml-opacity: 0;
      opacity: 0; }
    section.section .group-page-list-xxl .box .col-50.img .button-container {
      position: absolute;
      bottom: -100%;
      width: 100%;
      z-index: 2;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
      section.section .group-page-list-xxl .box .col-50.img .button-container span {
        border: 1px solid #fff;
        display: inline-block;
        color: #fff;
        padding: 10px 35px;
        font-size: 14px;
        text-transform: lowercase;
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
        section.section .group-page-list-xxl .box .col-50.img .button-container span:hover {
          color: #000;
          background-color: #fff; }
  section.section .group-page-list-xxl .box .col-50.description {
    position: relative;
    min-height: 400px;
    vertical-align: middle;
    display: table;
    padding: 30px;
    text-align: center; }
    section.section .group-page-list-xxl .box .col-50.description a {
      display: none;
      padding: 1rem;
      font-size: 1rem;
      text-transform: lowercase;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      border: 1px solid #744c28;
      color: #744c28; }
      section.section .group-page-list-xxl .box .col-50.description a:hover {
        color: #fff;
        background-color: #744c28; }
      @media only screen and (max-width: 479px) {
        section.section .group-page-list-xxl .box .col-50.description a {
          display: inline-block; } }
    section.section .group-page-list-xxl .box .col-50.description span {
      display: table-cell;
      vertical-align: middle; }
  section.section .group-page-list-xxl .box:hover .col-50.img .layer {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; }
  section.section .group-page-list-xxl .box:hover .col-50.img .button-container {
    bottom: 10%; }
section.section .slider-scroller .stage {
  width: 100%;
  overflow-x: auto;
  display: block; }
section.section .slider-scroller .box-container {
  float: left;
  display: inline-block; }
  section.section .slider-scroller .box-container .box {
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -khtml-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 19px; }
    section.section .slider-scroller .box-container .box .cover {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 10;
      left: 0;
      top: 0;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    section.section .slider-scroller .box-container .box figure {
      border: 1px solid #3b563b;
      position: relative;
      overflow: hidden;
      padding: 13px; }
    section.section .slider-scroller .box-container .box h2 {
      color: #fff; }
      section.section .slider-scroller .box-container .box h2:before {
        content: ' ';
        padding-left: 70px; }
        @media only screen and (max-width: 767px) {
          section.section .slider-scroller .box-container .box h2:before {
            padding-left: 15px; } }
      section.section .slider-scroller .box-container .box h2:after {
        content: ' ';
        padding-right: 70px; }
        @media only screen and (max-width: 767px) {
          section.section .slider-scroller .box-container .box h2:after {
            padding-right: 15px; } }
    section.section .slider-scroller .box-container .box .short-content {
      color: #fff;
      font-family: "Cinzel", serif;
      text-align: center; }
    section.section .slider-scroller .box-container .box .box-link-container {
      text-align: center;
      margin-top: 20px; }
      section.section .slider-scroller .box-container .box .box-link-container span {
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        display: inline-block;
        background-color: #3b2314;
        color: #744c28;
        padding: 7px 25px;
        text-transform: uppercase; }
    section.section .slider-scroller .box-container .box:hover .cover {
      background-color: rgba(34, 34, 34, 0.2); }
    section.section .slider-scroller .box-container .box:hover span {
      background-color: #222; }
section.section .slider-scroller .mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-bottom: 20px; }
section.section .slider-scroller .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail,
section.section .slider-scroller .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  margin: 0; }
section.section .slider-scroller .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  height: 20px; }
section.section .slider-scroller .mCS-my-theme.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #c58c04;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  height: 20px; }
section.section .slider-scroller .mCS-my-theme.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #f8d94c;
  height: 20px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0; }

.group-page-start {
  background-color: #222;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
  transition: all 2s cubic-bezier(1, -0.53, 0.405, 1.425); }
  @media only screen and (max-width: 767px) {
    .group-page-start {
      flex-direction: column;
      height: 100vh; } }
  .group-page-start .activevents .page-content {
    animation-delay: 0.4s;
    background: url("../images/activevents.png") no-repeat;
    background-size: cover; }
  .group-page-start .bikepoint .page-content {
    animation-delay: 1s;
    background: url("../images/bikepoint.png") no-repeat;
    background-size: cover; }
  .group-page-start .skipoint .page-content {
    animation-delay: 0.8s;
    background: url("../images/skipoint.png") no-repeat;
    background-size: cover; }
  .group-page-start .box {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    .group-page-start .box .text-center {
      position: relative;
      z-index: 1; }
    .group-page-start .box.activevents .page-content {
      -webkit-animation-delay: 1.5s;
      animation-delay: 1.5s; }
    .group-page-start .box.activevents .button {
      background-color: #744c28; }
    .group-page-start .box.bikepoint .page-content {
      -webkit-animation-delay: 1.2s;
      animation-delay: 1.2s; }
    .group-page-start .box.bikepoint .button {
      background-color: #222; }
    .group-page-start .box.skipoint .page-content {
      -webkit-animation-delay: 1.8s;
      animation-delay: 1.8s; }
    .group-page-start .box.skipoint .button {
      background-color: #3b2314; }
    .group-page-start .box .button {
      -webkit-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-border-radius: 6px;
      -webkit-border-radius: 6px;
      border-radius: 6px;
      text-shadow: 1px 1px #000;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.8rem;
      display: block;
      padding: 0 0.5rem;
      margin-top: 0.5rem;
      font-weight: 300; }
    .group-page-start .box a {
      transition: all 0.8s cubic-bezier(1, 0.53, 0.405, 1.425);
      flex-direction: column;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      width: 100%;
      overflow: hidden; }
      .group-page-start .box a .item-container {
        height: 50%;
        width: 50%; }
      .group-page-start .box a figure {
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);
        width: 100%;
        height: 100%;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
        filter: alpha(opacity=5);
        -moz-opacity: 0.05;
        -khtml-opacity: 0.05;
        opacity: 0.05;
        position: absolute;
        z-index: 0; }
      .group-page-start .box a .page-content {
        position: relative;
        z-index: 1;
        background-size: 100%;
        background-position: center;
        height: 100%;
        width: 100%;
        -webkit-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
        @media only screen and (max-width: 767px) {
          .group-page-start .box a .page-content {
            background-size: 55%; } }
    .group-page-start .box:hover a .button {
      transform: translateX(1rem); }
    .group-page-start .box:hover a .page-content {
      background-size: 98%; }
      @media only screen and (max-width: 767px) {
        .group-page-start .box:hover a .page-content {
          background-size: 50%; } }
    .group-page-start .box:hover figure {
      -moz-transform: scale(1.05);
      -webkit-transform: scale(1.05);
      -o-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05);
      filter: grayscale(50%);
      -webkit-filter: grayscale(50%);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=10);
      -moz-opacity: 0.1;
      -khtml-opacity: 0.1;
      opacity: 0.1; }
    .group-page-start .box:hover.activevents {
      background-color: rgba(116, 76, 40, 0.4); }
    .group-page-start .box:hover.bikepoint {
      background-color: rgba(34, 34, 34, 0.4); }
    .group-page-start .box:hover.skipoint {
      background-color: rgba(59, 35, 20, 0.4); }

section.section .widget-tabs .tab-content h2.header {
  color: #fff;
  background: none; }
section.section .widget-tabs h3 {
  border-bottom: 1px solid #a8a8ac;
  margin-bottom: 2rem;
  font-family: "Open Sans", sans-serif; }
@media only screen and (max-width: 991px) {
  section.section .widget-tabs .tab-content {
    margin-top: 2rem; } }
section.section .widget-tabs .nav-pills {
  text-align: left;
  margin: 0; }
  section.section .widget-tabs .nav-pills li {
    margin: 0;
    float: none;
    display: block;
    text-transform: uppercase;
    color: #744c28;
    border-bottom: 1px solid #744c28; }
    section.section .widget-tabs .nav-pills li a {
      font-weight: bold;
      -moz-border-radius: 0;
      -webkit-border-radius: 0;
      border-radius: 0;
      background: none;
      color: #744c28;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
      @media only screen and (max-width: 991px) {
        section.section .widget-tabs .nav-pills li a {
          padding: 0; } }
    section.section .widget-tabs .nav-pills li.active a, section.section .widget-tabs .nav-pills li:hover a {
      background: none;
      color: #222; }
section.section .widget-list figcaption {
  font-weight: bold; }
section.section .widget-list figure {
  cursor: pointer;
  position: relative;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden; }
  section.section .widget-list figure .img-mask {
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    font-size: 3rem;
    color: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(59, 35, 20, 0.4); }
  section.section .widget-list figure:hover .img-mask {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; }
section.section .widget-accordion h4 {
  margin: 0;
  font-size: 1.2rem;
  font-family: "Cinzel", serif; }
  section.section .widget-accordion h4 a {
    color: #744c28; }
section.section .widget-accordion .card-body {
  font-size: 1.1rem;
  line-height: 1.9rem; }
  section.section .widget-accordion .card-body a {
    color: #744c28; }
    section.section .widget-accordion .card-body a:hover {
      color: #222; }
section.section .widget-stickers-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row; }
  section.section .widget-stickers-list .sticker {
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    position: relative;
    width: calc(33.33% - 2rem);
    background-color: #fff;
    margin: 3rem 1rem 0rem 1rem;
    padding: 3rem 1rem 1rem;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -khtml-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1); }
    @media only screen and (max-width: 991px) {
      section.section .widget-stickers-list .sticker {
        width: calc(50% - 2rem); } }
    @media only screen and (max-width: 767px) {
      section.section .widget-stickers-list .sticker {
        width: calc(100%); } }
    section.section .widget-stickers-list .sticker .circle {
      display: flex;
      align-items: center;
      justify-content: center;
      border: 5px solid #fff;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      top: -2rem;
      left: calc(50% - 2rem);
      background-color: #222;
      position: absolute;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      padding: 1rem;
      max-width: 4rem;
      max-height: 4rem;
      -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
      -khtml-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
      -ms-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
      -o-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1); }
    section.section .widget-stickers-list .sticker .page-properties.icons {
      flex-wrap: wrap; }
      section.section .widget-stickers-list .sticker .page-properties.icons svg {
        width: 30px;
        height: 30px; }
      section.section .widget-stickers-list .sticker .page-properties.icons .property {
        width: 50%; }
        section.section .widget-stickers-list .sticker .page-properties.icons .property .value {
          font-size: 1rem; }
        section.section .widget-stickers-list .sticker .page-properties.icons .property:hover {
          color: #222; }
          section.section .widget-stickers-list .sticker .page-properties.icons .property:hover path {
            fill: #222; }
    section.section .widget-stickers-list .sticker:hover {
      background-color: #f9f9f9; }
      section.section .widget-stickers-list .sticker:hover .circle {
        top: -2.5rem;
        background-color: #222; }

.group-media-slider.slider {
  /* Circle */ }
  .group-media-slider.slider .slider-center {
    overflow: visible; }
  .group-media-slider.slider .owl-item {
    padding: 0.8rem;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=30);
    -moz-opacity: 0.3;
    -khtml-opacity: 0.3;
    opacity: 0.3; }
    .group-media-slider.slider .owl-item .item {
      position: relative; }
      .group-media-slider.slider .owl-item .item a p {
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        margin: 0;
        padding: 0.5rem;
        position: absolute;
        width: 100%;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        color: #fff; }
      .group-media-slider.slider .owl-item .item a:hover p {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1; }
    .group-media-slider.slider .owl-item.active {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=100);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; }
      @media only screen and (max-width: 767px) {
        .group-media-slider.slider .owl-item.active {
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
          filter: alpha(opacity=100);
          -moz-opacity: 1;
          -khtml-opacity: 1;
          opacity: 1; } }
  .group-media-slider.slider figure {
    margin: 0;
    position: relative;
    overflow: hidden; }
    .group-media-slider.slider figure:before {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 2;
      display: block;
      content: ' ';
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 100%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      opacity: 0; }
    .group-media-slider.slider figure:hover::before {
      -webkit-animation: shine .75s;
      animation: shine .75s; }
  .group-media-slider.slider .owl-nav .owl-prev {
    left: 30px !important;
    margin-left: -20px !important; }
  .group-media-slider.slider .owl-nav .owl-next {
    right: 30px !important;
    margin-right: -20px !important; }
  .group-media-slider.slider .owl-nav .owl-prev i, .group-media-slider.slider .owl-nav .owl-next i {
    font-size: 36px; }
  .group-media-slider.slider .owl-nav .owl-prev:hover, .group-media-slider.slider .owl-nav .owl-next:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    color: #fff; }

.group-media-pinterest .col-sm-3, .group-media-pinterest .col-xs-12,
.group-media-tiles .col-sm-3,
.group-media-tiles .col-xs-12 {
  padding: 0; }
.group-media-pinterest a,
.group-media-tiles a {
  /* Circle */ }
  .group-media-pinterest a figure,
  .group-media-tiles a figure {
    background-color: #222;
    position: relative;
    text-align: center; }
    .group-media-pinterest a figure .img-mask,
    .group-media-tiles a figure .img-mask {
      position: absolute;
      width: 100%;
      top: 50%;
      z-index: 1000;
      margin-top: -10px; }
      .group-media-pinterest a figure .img-mask i,
      .group-media-tiles a figure .img-mask i {
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        font-size: 30px;
        color: #fff;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0; }
    .group-media-pinterest a figure img,
    .group-media-tiles a figure img {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=100);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1;
      display: block;
      position: relative;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
      .group-media-pinterest a figure img.lazy,
      .group-media-tiles a figure img.lazy {
        -webkit-transition: all 500ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 500ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 500ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 500ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 500ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        max-width: 100%; }
  .group-media-pinterest a p,
  .group-media-tiles a p {
    display: none; }
  .group-media-pinterest a:hover figure img,
  .group-media-tiles a:hover figure img {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    -khtml-opacity: 0.6;
    opacity: 0.6; }
  .group-media-pinterest a:hover figure .img-mask i,
  .group-media-tiles a:hover figure .img-mask i {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; }
.group-media-pinterest p,
.group-media-tiles p {
  margin: 0; }

.group-media-pinterest figure,
.group-media-tiles figure,
.group-media-slider figure {
  position: relative;
  overflow: hidden; }
  .group-media-pinterest figure::before,
  .group-media-tiles figure::before,
  .group-media-slider figure::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: ' ';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0; }
  .group-media-pinterest figure:hover::before,
  .group-media-tiles figure:hover::before,
  .group-media-slider figure:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s; }

#main .group-media-slider2 .owl-carousel .owl-stage-outer {
  overflow: visible !important; }

.group-media-slider2 .slider .slider-center {
  overflow: visible;
  position: relative; }
.group-media-slider2 .slider .slider .owl-nav {
  width: 100%;
  margin: 0 auto;
  left: auto;
  bottom: 50%; }
.group-media-slider2 .slider .owl-item {
  overflow: hidden;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5; }
  .group-media-slider2 .slider .owl-item.active {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; }
    @media only screen and (max-width: 767px) {
      .group-media-slider2 .slider .owl-item.active {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1; } }
  .group-media-slider2 .slider .owl-item img {
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
  .group-media-slider2 .slider .owl-item:hover img {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=20);
    -moz-opacity: 0.2;
    -khtml-opacity: 0.2;
    opacity: 0.2; }
.group-media-slider2 .slider .owl-prev, .group-media-slider2 .slider .owl-next {
  position: absolute;
  padding: 15px;
  cursor: pointer;
  background-color: #232323;
  color: #fff;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
  .group-media-slider2 .slider .owl-prev i, .group-media-slider2 .slider .owl-next i {
    font-size: 20px;
    margin-top: 2px; }
.group-media-slider2 .slider .owl-prev {
  text-align: right;
  left: 0;
  padding-left: 20px;
  margin: 0; }
  .group-media-slider2 .slider .owl-prev:hover {
    padding-left: 30px;
    background-color: #744c28; }
.group-media-slider2 .slider .owl-next {
  right: 0;
  padding-right: 20px;
  margin: 0; }
  .group-media-slider2 .slider .owl-next:hover {
    padding-right: 30px;
    background-color: #744c28; }

.group-media-pinterest {
  /* clear fix */
  /* spans 2 columns: 22% + 4% + 22% = 48% */ }
  .group-media-pinterest .grid:after {
    content: '';
    display: block;
    clear: both; }
  .group-media-pinterest .grid-sizer,
  .group-media-pinterest .grid-item {
    float: left;
    width: 33%; }
    @media only screen and (max-width: 991px) {
      .group-media-pinterest .grid-sizer,
      .group-media-pinterest .grid-item {
        width: 50%; } }
    @media only screen and (max-width: 767px) {
      .group-media-pinterest .grid-sizer,
      .group-media-pinterest .grid-item {
        width: 100%; } }
    .group-media-pinterest .grid-sizer figure,
    .group-media-pinterest .grid-item figure {
      border: 3px solid #fff;
      margin: 5px; }
      .group-media-pinterest .grid-sizer figure p,
      .group-media-pinterest .grid-item figure p {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        -webkit-transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        padding: 10px;
        position: absolute;
        bottom: 0;
        width: 100%;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%; }
        @media only screen and (max-width: 767px) {
          .group-media-pinterest .grid-sizer figure p,
          .group-media-pinterest .grid-item figure p {
            position: relative;
            height: auto;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
            filter: alpha(opacity=100);
            -moz-opacity: 1;
            -khtml-opacity: 1;
            opacity: 1; } }
      .group-media-pinterest .grid-sizer figure:hover p,
      .group-media-pinterest .grid-item figure:hover p {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1; }
  .group-media-pinterest .gutter-sizer {
    width: 4%; }
  .group-media-pinterest .grid-item--width2 {
    width: 48%; }

.parallax {
  color: #fff;
  text-align: center; }
  .parallax h2 {
    background: url("../images/accomodation-header.png") left center no-repeat;
    padding-left: 110px;
    display: inline-block;
    font-size: 30px;
    color: #fff !important;
    text-transform: uppercase;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bold; }
  .parallax blockquote {
    margin: 0 auto;
    border: none;
    display: inline-block;
    max-width: 700px;
    background: url("../images/quote-r.png") right bottom no-repeat; }
    .parallax blockquote p {
      background: url("../images/quote-l.png") left top no-repeat;
      padding: 40px 90px;
      display: block;
      font-size: 24px; }
  .parallax a {
    border: 2px solid #fff;
    padding: 20px;
    color: #fff !important;
    font-size: 18px; }
    .parallax a:hover {
      color: #cccccc !important; }

footer#footer {
  border-top: 0.5rem solid #744c28;
  background: #222 url("../images/bg.png");
  position: relative;
  color: #fff;
  font-size: 0.875rem;
  padding: 1.8rem 0; }
  @media only screen and (max-width: 991px) {
    footer#footer {
      text-align: center; } }
  footer#footer a {
    color: #fff; }
    footer#footer a:hover {
      color: #744c28; }
  footer#footer .contact-data, footer#footer .contact-data a {
    display: flex;
    flex-direction: row;
    align-items: flex-start; }
    footer#footer .contact-data a, footer#footer .contact-data a a {
      padding: 0; }
    footer#footer .contact-data > div, footer#footer .contact-data a > div {
      width: 100%; }
    @media only screen and (max-width: 991px) {
      footer#footer .contact-data, footer#footer .contact-data a {
        display: block;
        text-align: center;
        justify-content: center;
        flex-direction: column; }
        footer#footer .contact-data i, footer#footer .contact-data a i {
          font-size: 1rem; } }
    footer#footer .contact-data i, footer#footer .contact-data a i {
      margin: 0.5rem;
      color: #fff; }
  footer#footer .list-unstyled {
    margin: 0; }
  footer#footer .logo-container {
    position: relative;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 100; }
    footer#footer .logo-container a {
      display: flex;
      flex-direction: row;
      align-items: center; }
      footer#footer .logo-container a h2 {
        font-style: italic;
        letter-spacing: 0.04rem;
        margin: 0;
        padding: 0;
        font-size: 1.2rem;
        color: #fff; }
  footer#footer img {
    display: inline-block; }
  footer#footer h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    font-size: 1.2rem;
    font-family: "Cinzel", serif;
    font-weight: normal;
    clear: both;
    margin-bottom: 1rem;
    margin-top: 0; }
    @media only screen and (max-width: 767px) {
      footer#footer h3 {
        text-align: center;
        display: block;
        background-position: center bottom; } }
    footer#footer h3:after {
      left: 0;
      content: '';
      width: 100px;
      height: 3px;
      background-color: #fff;
      position: absolute;
      bottom: 0; }
      @media only screen and (max-width: 767px) {
        footer#footer h3:after {
          left: 50%;
          transform: translateX(-50px); } }
  @media only screen and (max-width: 767px) {
    footer#footer .social-media {
      text-align: center; } }
  footer#footer .logo-footer {
    text-align: center; }
    footer#footer .logo-footer img {
      display: inline-block;
      max-width: 200px; }
  footer#footer .footer-spacer {
    margin-top: 30px; }
  footer#footer .left-side {
    text-align: left; }
    @media only screen and (max-width: 991px) {
      footer#footer .left-side {
        text-align: center; } }
    footer#footer .left-side h3:after {
      left: 0; }
      @media only screen and (max-width: 991px) {
        footer#footer .left-side h3:after {
          left: 50%;
          margin-left: -50px; } }
  footer#footer .right-side {
    text-align: right; }
    footer#footer .right-side a img {
      border: 3px solid #fff; }
    footer#footer .right-side a:hover img {
      border: 3px solid #744c28; }
    @media only screen and (max-width: 991px) {
      footer#footer .right-side {
        text-align: center; } }
  footer#footer h2 {
    font-size: 30px;
    text-align: center; }
  footer#footer .slider-center {
    overflow: hidden; }
  footer#footer .owl-next, footer#footer .owl-prev {
    background-color: #744c28 !important;
    font-size: 20px; }
  footer#footer .owl-next {
    right: 0 !important;
    margin-right: 0px !important; }
  footer#footer .owl-prev {
    left: 0 !important;
    margin-left: 0px !important; }
  footer#footer .footer-section {
    position: relative;
    z-index: 5; }
    @media only screen and (max-width: 767px) {
      footer#footer .footer-section {
        margin-top: 0; } }
  footer#footer .author {
    font-size: 12px;
    text-align: right; }
    @media only screen and (max-width: 767px) {
      footer#footer .author {
        text-align: center; } }
    footer#footer .author a {
      color: #fff; }
      footer#footer .author a:hover {
        color: #222; }
  footer#footer .footer-navigation {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column; }
    footer#footer .footer-navigation .col-logo {
      max-width: 10rem; }
      @media only screen and (max-width: 991px) {
        footer#footer .footer-navigation .col-logo {
          text-align: center;
          max-width: 60%; } }
      @media only screen and (max-width: 767px) {
        footer#footer .footer-navigation .col-logo {
          text-align: center;
          max-width: 100%; } }
  footer#footer .copyright {
    text-align: center;
    font-size: 12px;
    padding: 10px 0;
    background-color: #222; }
  footer#footer .social-media {
    font-size: 1.5rem; }
    footer#footer .social-media .fa-inverse {
      color: #222; }
  @media only screen and (max-width: 767px) {
    footer#footer .footer-navigation {
      text-align: center;
      display: block;
      padding: 5px; } }
  @media only screen and (max-width: 991px) {
    footer#footer .footer-nav ul {
      margin: 0;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      footer#footer .footer-nav ul a {
        font-size: 1.2rem;
        justify-content: center;
        text-align: center;
        display: flex;
        padding: 10px; }
        footer#footer .footer-nav ul a:hover {
          color: #744c28; } }
  footer#footer svg {
    max-width: 100%; }
    footer#footer svg path {
      fill: #fff; }

.footer-strip {
  min-height: 50px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  padding: 0.5rem 1rem;
  text-align: center;
  background-color: #1d1d1d;
  color: #fff; }
  @media only screen and (max-width: 991px) {
    .footer-strip {
      flex-direction: column; } }
  .footer-strip a {
    color: #a8a8ac; }
    .footer-strip a:hover {
      color: #fff; }
  .footer-strip p {
    margin: 0;
    padding: 0; }

.search-form input, .search-form button {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: #fff 1px solid;
  background-color: #222;
  color: #fff; }
.search-form input:focus {
  border-right: none; }
.search-form button {
  border-left: none; }
.search-form button:hover, .search-form button:focus {
  background-color: transparent;
  color: #fff;
  border: #fff 1px solid;
  border-left: none; }
.search-form [placeholder]::-webkit-input-placeholder {
  color: #fff; }
.search-form [placeholder]:-moz-placeholder {
  color: #fff; }
.search-form [placeholder]::-moz-placeholder {
  color: #fff; }
.search-form [placeholder]:-ms-input-placeholder {
  color: #fff; }

.btn-primary, .btn-primary:focus, .btn-primary:active, .btn-primary[disabled]:hover {
  background-color: #222;
  border-color: #222; }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:focus:hover, .btn-primary:focus:focus, .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary[disabled]:hover:hover, .btn-primary[disabled]:hover:focus {
    background-color: #090909;
    border-color: #090909; }

.form-container label {
  color: #744c28;
  font-weight: normal;
  display: none; }
.form-container .contact-form textarea {
  height: 182px; }
.form-container [placeholder]::-webkit-input-placeholder {
  color: #222; }
.form-container [placeholder]:-moz-placeholder {
  color: #222; }
.form-container [placeholder]::-moz-placeholder {
  color: #222; }
.form-container [placeholder]:-ms-input-placeholder {
  color: #222; }
.form-container input, .form-container input[readonly], .form-container textarea {
  font-family: "Open Sans", sans-serif;
  letter-spacing: .05em;
  background-color: #fff;
  border: 1px solid #222;
  outline: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  text-align: left;
  font-size: 0.8rem; }
  .form-container input:focus, .form-container input[readonly]:focus, .form-container textarea:focus {
    border: 1px solid #744c28; }
  .form-container input .input-daterange input, .form-container input[readonly] .input-daterange input, .form-container textarea .input-daterange input {
    text-align: left; }
.form-container button {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: #fff;
  padding: 10px 40px;
  text-transform: uppercase;
  background-color: #744c28;
  border-color: #744c28;
  font-family: "Open Sans", sans-serif;
  font-size: 14px; }
  .form-container button:hover, .form-container button:focus, .form-container button:active {
    background-color: #fff;
    border-color: #744c28;
    color: #744c28; }
.form-container h2 {
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 36px;
  font-weight: 300; }
.form-container h3 {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300; }

.input-daterange input {
  background: url("../images/common/ico_cal.png") no-repeat center right; }
  @media only screen and (max-width: 991px) {
    .input-daterange input {
      background-image: none; } }

#reservation_form_email {
  background: url("../images/common/ico_envelope.png") no-repeat center right; }
  @media only screen and (max-width: 991px) {
    #reservation_form_email {
      background-image: none; } }

#reservation_form_persons {
  background: url("../images/common/ico_person.png") no-repeat center right; }
  @media only screen and (max-width: 991px) {
    #reservation_form_persons {
      background-image: none; } }

.reservation-inline-form {
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  max-width: 360px;
  top: 100%;
  right: 0;
  position: fixed;
  width: 100%;
  background-color: #3291c7;
  text-align: center;
  padding: 10px;
  z-index: 999;
  margin-top: -40px; }
  .reservation-inline-form.form-open {
    margin-top: 0;
    top: auto;
    bottom: 0; }
  @media only screen and (max-width: 991px) {
    .reservation-inline-form {
      display: block;
      max-width: none;
      margin-top: 0; } }
  .reservation-inline-form .form-switcher {
    color: #fff; }
    .reservation-inline-form .form-switcher span {
      position: absolute;
      right: 0;
      top: 0; }
      .reservation-inline-form .form-switcher span i {
        font-size: 20px; }
  .reservation-inline-form h3 {
    margin-top: 5px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    padding-bottom: 10px; }
  .reservation-inline-form form.form-inline .form-group {
    position: relative;
    margin: 3px 0; }
  .reservation-inline-form form.form-inline input, .reservation-inline-form form.form-inline button {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    width: 100%;
    text-align: left; }
  .reservation-inline-form form.form-inline i {
    position: absolute;
    top: 11px;
    right: 24px;
    color: #744c28; }
  .reservation-inline-form form.form-inline .button .form-group {
    display: block; }
  .reservation-inline-form form.form-inline .form-group {
    display: block; }
  .reservation-inline-form form.form-inline .form-control {
    width: 100%; }
  .reservation-inline-form form.form-inline button {
    text-align: center;
    width: 100%;
    display: block;
    background-color: #744c28;
    color: #fff; }
    .reservation-inline-form form.form-inline button:hover, .reservation-inline-form form.form-inline button:focus {
      background-color: #3b2714;
      color: #fff; }

.top-content .social-media a {
  font-size: 1.2rem; }
@media only screen and (max-width: 991px) {
  .top-content .social-media {
    text-align: center; }
    .top-content .social-media a {
      padding: 0 0.5rem;
      font-size: 1.2rem; } }
.top-content .social-media p {
  display: none; }

.guest-book .buttons {
  text-align: right; }
  @media only screen and (max-width: 767px) {
    .guest-book .buttons {
      text-align: center;
      display: block; } }
.guest-book label {
  display: none; }
.guest-book em {
  text-align: center;
  width: 100%;
  display: block;
  padding: 7px;
  font-weight: bold; }

.form-container-border .guest-book.form-container {
  color: #fff; }
  .form-container-border .guest-book.form-container h2 {
    font-family: "Cinzel", serif;
    color: #744c28;
    font-weight: 400; }
  .form-container-border .guest-book.form-container button {
    background-color: #744c28;
    border-color: #744c28; }
  .form-container-border .guest-book.form-container button:hover {
    background-color: #87582f;
    border-color: #87582f; }

section.section .slider.comments .slide {
  background-color: transparent; }

.comments .comment-text {
  font-style: italic;
  text-align: center;
  font-size: 1rem;
  border-bottom: 1px solid #a8a8ac;
  padding-bottom: 1rem;
  font-weight: normal; }
.comments .owl-navigation {
  position: relative;
  width: 100%;
  margin: 0 auto; }
  .comments .owl-navigation .owl-next, .comments .owl-navigation .owl-prev {
    position: relative;
    padding: 5px;
    cursor: pointer; }
    .comments .owl-navigation .owl-next i, .comments .owl-navigation .owl-prev i {
      font-size: 28px; }
  .comments .owl-navigation .owl-prev {
    float: left; }
  .comments .owl-navigation .owl-next {
    float: right; }

section.section .comment-container {
  margin: 1rem 0;
  padding: 1rem 0;
  background-color: #fff;
  width: 100%; }
  section.section .comment-container .comment:after {
    bottom: 0;
    left: 25%;
    position: absolute;
    content: '';
    height: 1px;
    width: 50%;
    background: #a8a8ac; }
  section.section .comment-container .comment {
    position: relative;
    padding: 1rem;
    display: flex; }
    @media only screen and (max-width: 991px) {
      section.section .comment-container .comment {
        flex-direction: column;
        align-items: center; } }
    section.section .comment-container .comment .icon {
      color: #eee;
      flex: 1;
      font-size: 3rem; }
    section.section .comment-container .comment .content {
      flex: 4;
      width: 100%; }
      section.section .comment-container .comment .content .datetime {
        font-size: 0.7rem; }
      section.section .comment-container .comment .content blockquote {
        padding: 0;
        text-align: left;
        font-style: normal; }

#cookie-container {
  text-align: center;
  font-size: 12px;
  position: fixed;
  display: block;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 99999;
  color: #fff;
  background-color: #222;
  padding: 5px; }
  #cookie-container a {
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    display: inline-block;
    border: 1px solid #fff;
    padding: 0 7px;
    color: #fff;
    text-align: center; }
    #cookie-container a:hover {
      background-color: #d9d9d9;
      color: #222; }
    #cookie-container a i {
      display: none; }
  #cookie-container p {
    display: inline; }

.popup-content {
  position: fixed;
  background-color: #fff;
  padding: 10px; }
  @media only screen and (max-width: 767px) {
    .popup-content {
      width: 100%; } }
  .popup-content img {
    display: inline-block;
    max-width: 100%;
    height: auto; }

table.table-responsive-cms {
  border: 0; }
  table.table-responsive-cms td {
    width: 20%;
    vertical-align: top;
    border: none;
    padding: 0.5rem; }
    table.table-responsive-cms td h3 {
      word-break: break-word;
      font-size: 1.3rem;
      letter-spacing: normal;
      color: #744c28; }
  @media only screen and (max-width: 991px) {
    table.table-responsive-cms {
      width: 100%;
      display: flex;
      flex-direction: row; }
      table.table-responsive-cms tbody tr {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: auto !important; }
        table.table-responsive-cms tbody tr td {
          width: 100% !important;
          height: auto !important; } }
  table.table-responsive-cms tr:first-child td {
    background: none; }

table.table thead th {
  background-color: #f9f9f9;
  color: #222; }
table.table tr:nth-child(even) {
  background-color: #f9f9f9; }
table.table tr:nth-child(odd) {
  background-color: #fff; }
table.table tr td {
  padding: 10px; }
table.table tr td:first-child strong {
  font-weight: normal; }
table.table tr td {
  border: 3px solid #fff; }

.decor table {
  border: none; }
.decor table.table tr td {
  border: none; }
.decor table.table tr:nth-child(odd),
.decor table.table tr:first-child td {
  background: none; }
@media only screen and (max-width: 767px) {
  .decor table.table tr td {
    text-align: center;
    justify-content: center;
    display: inline-flex;
    width: 100% !important; } }

.video-background {
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99; }

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; }

#vidtop-content {
  top: 0;
  color: #fff; }

.vid-info {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 1rem;
  font-family: Avenir, Helvetica, sans-serif; }

.vid-info h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2; }

.vid-info a {
  display: block;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  transition: .6s background;
  border-bottom: none;
  margin: 1rem auto;
  text-align: center; }

@media (min-aspect-ratio: 16 / 9) {
  .video-foreground {
    height: 300%;
    top: -100%; } }
@media (max-aspect-ratio: 16 / 9) {
  .video-foreground {
    width: 300%;
    left: -100%; } }
@media all and (max-width: 600px) {
  .vid-info {
    width: 50%;
    padding: .5rem; }

  .vid-info h1 {
    margin-bottom: .2rem; } }
@media all and (max-width: 500px) {
  .vid-info .acronym {
    display: none; } }
section.section .item-group-list {
  position: relative; }
  section.section .item-group-list .box-item {
    margin: 10px 0;
    position: relative;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
    background-color: #fff;
    border: 1px solid #a8a8ac; }
    section.section .item-group-list .box-item a {
      display: block; }
      section.section .item-group-list .box-item a figure {
        position: relative;
        overflow: hidden; }
        section.section .item-group-list .box-item a figure img {
          -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
          display: block; }
        section.section .item-group-list .box-item a figure .stick {
          position: absolute;
          left: 0;
          top: 10%;
          padding: 7px 12px;
          background-color: #3b2314;
          color: #222;
          font-size: 16px;
          text-transform: uppercase; }
    section.section .item-group-list .box-item .item-data {
      padding: 1rem;
      text-align: center; }
      section.section .item-group-list .box-item .item-data hr {
        height: 1px;
        width: 80%;
        background-color: #a8a8ac; }
      section.section .item-group-list .box-item .item-data p {
        height: 83px;
        overflow: hidden; }
      section.section .item-group-list .box-item .item-data .buttons .button-details, section.section .item-group-list .box-item .item-data .buttons .button-hotres {
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        font-size: 12px;
        display: inline-block;
        padding: 7px 25px;
        border: none;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin: 2px; }
        @media only screen and (max-width: 991px) {
          section.section .item-group-list .box-item .item-data .buttons .button-details, section.section .item-group-list .box-item .item-data .buttons .button-hotres {
            display: block;
            padding: 10px 25px; } }
      section.section .item-group-list .box-item .item-data .buttons .button-hotres {
        background-color: #744c28; }
        section.section .item-group-list .box-item .item-data .buttons .button-hotres:hover {
          background-color: #9a6535; }
      section.section .item-group-list .box-item .item-data .buttons .button-details {
        background-color: #222; }
        section.section .item-group-list .box-item .item-data .buttons .button-details:hover {
          background-color: #090909; }
    section.section .item-group-list .box-item:hover {
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
      -khtml-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
      -ms-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
      -o-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1); }
      section.section .item-group-list .box-item:hover figure img {
        -moz-transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -o-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
section.section .item-list .buttons {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: row;
  justify-content: space-around; }
  section.section .item-list .buttons a {
    margin: 1px;
    flex: 50%;
    font-size: 0.8rem; }
    section.section .item-list .buttons a:hover {
      background-color: #090909; }
  section.section .item-list .buttons a:first-child:hover {
    background-color: #9a6535; }
section.section .item-list small.info {
  color: #e0412a;
  font-weight: bold; }
section.section .item-list > .row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch; }
  @media only screen and (max-width: 767px) {
    section.section .item-list > .row {
      flex-direction: column; } }
  section.section .item-list > .row .item {
    line-height: 1.8rem;
    height: 96%; }
    @media only screen and (max-width: 991px) {
      section.section .item-list > .row .item {
        height: 100%; } }
section.section .item-list .item {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
  border: 1px solid #a8a8ac; }
  @media only screen and (max-width: 991px) {
    section.section .item-list .item {
      margin: 0.5rem 0; } }
  section.section .item-list .item figure {
    background-color: #744c28;
    overflow: hidden;
    position: relative; }
    section.section .item-list .item figure i {
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=0);
      -moz-opacity: 0;
      -khtml-opacity: 0;
      opacity: 0;
      margin-top: -15px;
      margin-left: -15px;
      font-size: 40px;
      color: #fff;
      position: absolute;
      left: 50%;
      top: 100%; }
    section.section .item-list .item figure img {
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    section.section .item-list .item figure .price-section {
      right: 0;
      bottom: 0;
      position: absolute;
      background: rgba(34, 34, 34, 0.9);
      color: #fff;
      padding: 3px 10px; }
      section.section .item-list .item figure .price-section .price {
        font-size: 1rem; }
        section.section .item-list .item figure .price-section .price span {
          font-size: 1.6rem; }
      section.section .item-list .item figure .price-section .discountBox {
        display: flex;
        justify-content: flex-end; }
        section.section .item-list .item figure .price-section .discountBox .discountPrice, section.section .item-list .item figure .price-section .discountBox .discountPrice span {
          text-decoration: line-through;
          color: #222;
          display: inline-block;
          font-weight: normal;
          font-size: 1em;
          margin-right: 4px; }
      section.section .item-list .item figure .price-section span {
        font-weight: bold;
        font-size: 22px; }
  section.section .item-list .item .item-data {
    position: relative;
    margin: 0.8rem; }
    section.section .item-list .item .item-data h3.tile-header {
      font-size: 1.4rem;
      font-family: "Cinzel", serif;
      text-align: center;
      color: #222;
      margin: 0;
      line-height: 2rem;
      text-transform: none;
      overflow: hidden; }
      @media only screen and (max-width: 991px) {
        section.section .item-list .item .item-data h3.tile-header {
          font-size: 1.2rem;
          line-height: 1.8rem; } }
      @media only screen and (max-width: 767px) {
        section.section .item-list .item .item-data h3.tile-header {
          font-size: 1rem;
          line-height: 1.4rem; } }
    section.section .item-list .item .item-data address {
      margin-bottom: 10px;
      color: #000; }
    section.section .item-list .item .item-data .item-properties {
      text-align: center;
      border-top: 1px solid #a8a8ac;
      color: #222;
      padding-top: 0.6rem;
      margin-top: 0.6rem; }
      section.section .item-list .item .item-data .item-properties .prop {
        display: inline-block;
        padding: 0 10px;
        font-size: 1.2rem; }
  section.section .item-list .item:hover .tile-header {
    color: #744c28; }
  section.section .item-list .item:hover figure i {
    top: 50%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8; }
  section.section .item-list .item:hover figure img {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=30);
    -moz-opacity: 0.3;
    -khtml-opacity: 0.3;
    opacity: 0.3;
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }

.item-show {
  /**hotress plugin*/ }
  .item-show .main-properties {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row; }
    .item-show .main-properties h1 {
      font-family: "Cinzel", serif;
      font-size: 1.8rem; }
      @media only screen and (max-width: 991px) {
        .item-show .main-properties h1 {
          font-size: 1.6rem; } }
    @media only screen and (max-width: 991px) {
      .item-show .main-properties {
        flex-direction: column;
        align-items: center; } }
    .item-show .main-properties .social {
      font-size: 1rem; }
  .item-show .popupDiscount {
    text-decoration: line-through; }
  .item-show .help-reservation ul {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0; }
  .item-show .help-reservation .list-group-item {
    display: flex;
    border: 0 !important;
    position: relative;
    overflow: visible;
    padding: 1rem 0;
    align-items: flex-start;
    justify-content: center; }
  .item-show .help-reservation .gh-icon-bg {
    display: flex;
    justify-content: center;
    align-items: center; }
  .item-show .help-reservation .gh-icon-bg {
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: #3b2314;
    position: relative;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center; }
    .item-show .help-reservation .gh-icon-bg i {
      transform: scale(0.5); }
  .item-show .help-reservation .flex-grow-1 {
    margin-left: 1rem !important;
    flex-grow: 1; }
  .item-show .help-reservation .list-group-help .list-group-item:not(:last-child)::before {
    content: " ";
    position: absolute;
    top: 1rem;
    left: 1rem;
    bottom: 0;
    width: 1px;
    height: calc(100% - 1rem);
    height: 100%;
    border-left: 1px dashed #b7bcbc;
    z-index: 0; }
  .item-show .notAvailableItems {
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
    flex-direction: column;
    width: 100%; }
  .item-show .columns {
    width: 100%;
    display: block;
    padding-right: 15px;
    padding-left: 15px; }
  .item-show .search-panel {
    background: #f9f9f9; }
    .item-show .search-panel h3 {
      padding: 1rem;
      margin: 0; }
    .item-show .search-panel .search-box {
      background: none;
      margin: 0;
      max-width: 100%; }
      .item-show .search-panel .search-box .alert-success {
        background-color: #3b2314; }
      .item-show .search-panel .search-box .sb-panel {
        flex-direction: column;
        width: 100%; }
      .item-show .search-panel .search-box .sb-panel .panel-handle span.label {
        color: #744c28; }
    .item-show .search-panel button.search-btn.btn-small {
      display: none; }
    .item-show .search-panel .alert-inline {
      padding: 1rem;
      display: flex;
      align-items: center; }
      .item-show .search-panel .alert-inline i.fa {
        font-size: 2.4rem; }
      .item-show .search-panel .alert-inline p {
        color: #744c28;
        margin-left: 1rem;
        margin-bottom: 0; }
    .item-show .search-panel .search-button-container {
      padding: 1rem;
      width: 100%; }
    .item-show .search-panel button.search-btn.btn-large {
      font-size: 1rem;
      letter-spacing: 2px;
      border: none;
      text-transform: uppercase;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      color: #fff;
      padding: 0.7rem 2.2rem;
      display: block;
      width: 100%;
      background: #222; }
      .item-show .search-panel button.search-btn.btn-large:hover {
        background-color: #3b2314;
        color: #fff; }
  .item-show a.check-availability {
    display: block;
    background-color: #222;
    padding: 0.6rem;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem; }
    .item-show a.check-availability:hover {
      background-color: #744c28;
      color: #fff; }
  .item-show .contact-data {
    margin: 1rem 0; }
  .item-show .description {
    color: #222;
    font-size: 0.9rem;
    line-height: 1.6rem; }
  .item-show .item-properties {
    display: flex;
    flex-direction: column;
    color: #222; }
    .item-show .item-properties .contact-data {
      display: flex;
      justify-content: space-between; }
    .item-show .item-properties .list-details li {
      display: flex;
      flex-direction: row;
      justify-content: space-between; }
    .item-show .item-properties .prop {
      display: inline-block;
      padding: 0 10px;
      font-size: 18px; }
      .item-show .item-properties .prop i {
        font-size: 14px; }
  .item-show .item-photos .slider .owl-nav {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    margin-top: -1rem; }
    .item-show .item-photos .slider .owl-nav .owl-next, .item-show .item-photos .slider .owl-nav .owl-prev {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      background-color: #744c28; }
      .item-show .item-photos .slider .owl-nav .owl-next i, .item-show .item-photos .slider .owl-nav .owl-prev i {
        font-size: 2rem;
        color: #fff; }
      .item-show .item-photos .slider .owl-nav .owl-next:hover, .item-show .item-photos .slider .owl-nav .owl-prev:hover {
        background-color: #222; }
      .item-show .item-photos .slider .owl-nav .owl-next:focus, .item-show .item-photos .slider .owl-nav .owl-prev:focus {
        outline: none;
        border: none; }
  .item-show .item-photos .owl-item img {
    padding: 0 3px 3px; }
  .item-show .comment-container {
    margin-top: 2rem;
    background: #784729;
    padding: 1rem; }
    .item-show .comment-container .comment {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .item-show .comment-container .comment .icon {
        margin: 1rem;
        font-size: 4rem;
        color: #222; }
    .item-show .comment-container .datetime {
      font-size: 0.7rem; }
    .item-show .comment-container blockquote {
      font-size: 0.9rem; }
  .item-show a {
    color: #222; }
    .item-show a:hover {
      color: black; }
  .item-show #reservation-container a.button {
    padding: 1rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    display: block;
    background-color: #744c28;
    color: #fff; }
    .item-show #reservation-container a.button:hover {
      background-color: #9a6535; }
  .item-show .list-inline {
    margin: 0; }
  .item-show .simillar-items a {
    background-color: #fff;
    display: block;
    padding: 1rem;
    border: 1px solid #744c28;
    margin: 1rem 0; }
    .item-show .simillar-items a figure {
      padding: 2px;
      border: 1px solid #744c28; }
    .item-show .simillar-items a .item-data .tile-header {
      margin: 0;
      font-size: 16px;
      text-transform: uppercase;
      height: 72px;
      overflow: hidden;
      line-height: 22px;
      color: #744c28; }
  .item-show .main-container {
    padding: 20px;
    color: #222; }
  .item-show .breadcrumb {
    margin: 0; }
  .item-show header h1 {
    font-size: 3rem;
    font-family: "Cinzel", serif; }
  .item-show .section .gray {
    padding: 30px 0;
    margin: 20px 0; }
  .item-show .bigphoto {
    margin: 0 1%;
    border: 1px solid #744c28;
    padding: 3px;
    display: block; }
    .item-show .bigphoto img {
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    .item-show .bigphoto:hover img {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=80);
      -moz-opacity: 0.8;
      -khtml-opacity: 0.8;
      opacity: 0.8; }
  .item-show .thumbs a {
    margin: 1%;
    border: 1px solid #744c28;
    padding: 3px;
    display: block;
    float: left;
    width: 23%; }
    .item-show .thumbs a img {
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    .item-show .thumbs a:hover img {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=80);
      -moz-opacity: 0.8;
      -khtml-opacity: 0.8;
      opacity: 0.8; }
  .item-show .pictogram ul {
    display: block;
    width: 100%;
    padding: 10px; }
    .item-show .pictogram ul li {
      padding: 5px 5px 5px 15px;
      display: inline-block;
      vertical-align: middle; }
  .item-show #mainGallery a {
    background-position: center;
    background-size: cover;
    display: block;
    width: 100%;
    height: calc(100vh - 330px); }
    @media only screen and (max-width: 767px) {
      .item-show #mainGallery a {
        height: calc(100vh - 530px); } }
  .item-show .mobile-fixed {
    display: none;
    z-index: 999;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    right: auto;
    background-color: #fff;
    border-top: 1px solid #a8a8ac;
    -webkit-transform: translateZ(0); }
    @media only screen and (max-width: 767px) {
      .item-show .mobile-fixed {
        display: block; } }
    .item-show .mobile-fixed .mobile-fixed-container {
      display: table;
      width: 100%; }
      .item-show .mobile-fixed .mobile-fixed-container a {
        padding: 10px;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        border-right: 1px solid #a8a8ac; }
        .item-show .mobile-fixed .mobile-fixed-container a i {
          font-size: 24px; }
        .item-show .mobile-fixed .mobile-fixed-container a span {
          font-weight: bold;
          display: block;
          color: #222;
          font-size: 12px;
          text-transform: uppercase; }
  @media only screen and (max-width: 991px) {
    .item-show .list-inline.social {
      text-align: center;
      padding: 1rem;
      width: 100%;
      background-color: #eee; } }
  .item-show .list-inline.social li:hover .fa-square {
    color: #744c28; }
  .item-show #map {
    margin: 30px 0;
    display: block; }
  .item-show .smart-gallery a {
    width: 33.333%;
    float: left;
    display: inline-block;
    padding: 2px; }
    .item-show .smart-gallery a .img-container {
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      overflow: hidden;
      min-height: 300px;
      position: relative;
      display: table;
      width: 100%;
      background-color: #000; }
      @media only screen and (max-width: 767px) {
        .item-show .smart-gallery a .img-container {
          min-height: 150px; } }
      @media only screen and (max-width: 479px) {
        .item-show .smart-gallery a .img-container {
          min-height: 80px; } }
      .item-show .smart-gallery a .img-container .img-content {
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        color: #fff;
        z-index: 10;
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        display: table-cell;
        vertical-align: middle; }
      .item-show .smart-gallery a .img-container figure {
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background: no-repeat center; }
    .item-show .smart-gallery a:hover .img-content {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=100);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; }
    .item-show .smart-gallery a:hover figure {
      top: -3%;
      left: -3%;
      width: 106%;
      height: 106%;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
      filter: alpha(opacity=50);
      -moz-opacity: 0.5;
      -khtml-opacity: 0.5;
      opacity: 0.5; }
    .item-show .smart-gallery a:nth-child(1) {
      width: 50%; }
    .item-show .smart-gallery a:nth-child(2) {
      width: 50%; }
  .item-show #hotresContainer #hotresWrapper .objectInfo a {
    display: none !important; }

@media only screen and (max-width: 767px) {
  .bootstrap-datetimepicker-widget table td.day {
    width: 3rem;
    height: 3rem; } }
.start-page .search-box {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -150%); }
  @media only screen and (max-width: 767px) {
    .start-page .search-box {
      left: auto;
      position: relative;
      transform: translate(0, 0); } }

.search-box {
  z-index: 99998;
  position: relative;
  line-height: 1.6rem;
  max-width: 50rem;
  font-family: "Open Sans", sans-serif;
  background-color: rgba(34, 34, 34, 0.8);
  width: 100%;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
  .search-box:after {
    z-index: -1;
    top: 5px;
    left: 5px;
    content: '';
    position: absolute;
    border: 1px solid #744c28;
    width: calc(100% - 10px);
    height: calc(100% - 10px); }
  .search-box h2 {
    color: #744c28;
    margin-top: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 18px; }
  .search-box .sb-panel {
    width: 100%;
    flex-direction: row;
    display: flex;
    position: relative;
    padding: 1rem;
    justify-content: space-around; }
    .search-box .sb-panel .second-level {
      display: flex;
      flex: 50%;
      align-items: flex-end; }
    .search-box .sb-panel .inputdates {
      align-items: flex-end;
      display: flex;
      flex: 50%;
      flex-direction: row; }
    .search-box .sb-panel #person-field {
      display: flex;
      flex: 50%; }
    .search-box .sb-panel .panel-handle .chooserPersonBox {
      display: none; }
    @media only screen and (max-width: 991px) {
      .search-box .sb-panel {
        flex-direction: column;
        width: 100%; } }
    .search-box .sb-panel button.search-btn {
      outline: none;
      height: calc(3rem - 1px);
      width: 3rem;
      border: none;
      background-color: #744c28;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 1px;
      color: #fff; }
      .search-box .sb-panel button.search-btn:hover {
        background-color: #150c07;
        color: #fff; }
      .search-box .sb-panel button.search-btn span {
        margin: 0.2rem;
        color: #fff;
        display: none; }
    .search-box .sb-panel input {
      display: none; }
    .search-box .sb-panel .panel-handle {
      display: block;
      cursor: pointer;
      width: 100%; }
      .search-box .sb-panel .panel-handle span.label {
        -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
        text-align: center;
        display: none;
        color: #fff;
        font-size: 0.8rem;
        letter-spacing: 0;
        margin: 0;
        font-weight: normal;
        z-index: 9; }
        @media only screen and (max-width: 991px) {
          .search-box .sb-panel .panel-handle span.label {
            text-align: left; } }
      .search-box .sb-panel .panel-handle .input-group-addon {
        padding: 0;
        border: 0; }
      .search-box .sb-panel .panel-handle .hld {
        position: relative;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        background-color: #fff;
        height: 3rem;
        margin: 0;
        border: 1px solid #744c28;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center; }
        .search-box .sb-panel .panel-handle .hld.focused span.label {
          top: -1rem;
          font-size: 0.8rem;
          color: #222; }
        .search-box .sb-panel .panel-handle .hld i.fa {
          position: absolute;
          right: 1rem;
          font-size: 1.1rem;
          color: #744c28; }
          @media only screen and (max-width: 767px) {
            .search-box .sb-panel .panel-handle .hld i.fa {
              font-size: 1rem;
              right: 0.5rem; } }
        .search-box .sb-panel .panel-handle .hld .date-show {
          align-items: center;
          display: flex;
          font-size: 1rem;
          text-transform: uppercase;
          text-align: center;
          position: relative; }
          @media only screen and (max-width: 767px) {
            .search-box .sb-panel .panel-handle .hld .date-show {
              font-size: 0.7rem; } }
          .search-box .sb-panel .panel-handle .hld .date-show .day-number {
            font-size: 1.4rem;
            color: #222;
            display: block;
            margin-right: 0.2rem; }
          .search-box .sb-panel .panel-handle .hld .date-show .date-holder {
            font-size: 0.9rem;
            display: flex;
            padding: 0 0.3rem;
            color: #222;
            letter-spacing: .1em;
            position: relative;
            top: 2px;
            text-align: center; }
            @media only screen and (max-width: 767px) {
              .search-box .sb-panel .panel-handle .hld .date-show .date-holder {
                font-size: 0.7rem; } }
            .search-box .sb-panel .panel-handle .hld .date-show .date-holder .date-month {
              display: block;
              color: #744c28;
              letter-spacing: .1em;
              position: relative; }
            .search-box .sb-panel .panel-handle .hld .date-show .date-holder .date-year {
              font-size: 1.1rem;
              display: block;
              color: #744c28;
              padding-left: 0.3rem; }
      .search-box .sb-panel .panel-handle .person-show {
        display: flex; }
        .search-box .sb-panel .panel-handle .person-show > div {
          padding: 0 0.1rem; }
        @media only screen and (max-width: 991px) {
          .search-box .sb-panel .panel-handle .person-show {
            font-size: 0.8rem; } }
        .search-box .sb-panel .panel-handle .person-show .adults-cnt {
          font-size: 2rem; }
          @media only screen and (max-width: 991px) {
            .search-box .sb-panel .panel-handle .person-show .adults-cnt {
              font-size: 1rem; } }
      .search-box .sb-panel .panel-handle .personBox {
        font-size: 0.8rem;
        min-width: 100%;
        bottom: 3rem;
        position: absolute;
        padding: 1rem;
        background-color: #fff;
        display: none;
        z-index: 999;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); }
        .search-box .sb-panel .panel-handle .personBox.personBoxShow {
          display: block; }
          .search-box .sb-panel .panel-handle .personBox.personBoxShow.showBottom {
            top: 3rem;
            bottom: auto; }
        .search-box .sb-panel .panel-handle .personBox .personSummary {
          width: 100%;
          text-align: right;
          height: 1rem; }
          .search-box .sb-panel .panel-handle .personBox .personSummary a {
            position: absolute;
            right: 0.5rem;
            top: 0.3rem;
            display: inline-block; }
            .search-box .sb-panel .panel-handle .personBox .personSummary a i.fa {
              position: relative;
              right: auto; }
        .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem {
          padding: 0.5rem;
          border-bottom: 1px solid #f3e6db; }
          .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem > .row {
            justify-content: space-between;
            display: flex;
            align-items: center; }
            .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem > .row .chooserWrap {
              text-align: center;
              display: flex;
              flex-direction: row;
              align-items: center;
              justify-content: space-between; }
              .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem > .row .chooserWrap .chooserMinus, .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem > .row .chooserWrap .chooserPlus {
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                width: 1.6rem;
                height: 1.6rem;
                line-height: 1.6rem;
                border: 1px solid rgba(0, 0, 0, 0.15);
                box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
                border-radius: 100%;
                margin: 0;
                font-size: 10px;
                padding: 0; }
                .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem > .row .chooserWrap .chooserMinus:hover i.fa, .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem > .row .chooserWrap .chooserPlus:hover i.fa {
                  color: #222; }
              .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem > .row .chooserWrap i.fa {
                position: static;
                font-size: 1rem; }
              .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem > .row .chooserWrap input.chooserCnt {
                border: none;
                display: block;
                text-align: center;
                width: 2rem;
                font-size: 1.2rem; }
          .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem .chooserPersonLabel {
            display: flex;
            align-items: center; }
            .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem .chooserPersonLabel i.fa {
              width: 1rem;
              right: auto;
              font-size: 1rem;
              position: relative; }
            .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem .chooserPersonLabel .person-label {
              display: flex;
              flex-direction: column; }
              .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem .chooserPersonLabel .person-label span {
                line-height: 0.9rem; }
              .search-box .sb-panel .panel-handle .personBox .chooserPersonBoxItem .chooserPersonLabel .person-label small {
                line-height: 0.8rem;
                font-size: 0.6rem;
                font-weight: bold; }
  .search-box button.search-btn.btn-large, .search-box .alert-inline {
    display: none; }

.search-box.width-xxs .sb-panel, .search-box.width-xs .sb-panel {
  flex-direction: column; }
  .search-box.width-xxs .sb-panel .panel-handle span.label, .search-box.width-xs .sb-panel .panel-handle span.label {
    text-align: left; }
  .search-box.width-xxs .sb-panel .inputdates, .search-box.width-xxs .sb-panel .second-level, .search-box.width-xs .sb-panel .inputdates, .search-box.width-xs .sb-panel .second-level {
    flex-direction: column;
    width: 100%;
    align-items: unset; }
  .search-box.width-xxs .sb-panel button.search-btn, .search-box.width-xs .sb-panel button.search-btn {
    display: flex;
    width: 100%; }
    .search-box.width-xxs .sb-panel button.search-btn span, .search-box.width-xs .sb-panel button.search-btn span {
      display: flex; }

@media only screen and (max-width: 991px) {
  .slider .slider-description {
    padding: 0 2rem; } }
@media only screen and (max-width: 767px) {
  .slider .slider-description {
    padding: 0; } }
.slider .search-box {
  z-index: 9999;
  text-align: left;
  position: relative;
  bottom: 0;
  left: 0; }

.main-category-list .main-category {
  margin: 10px 0;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5); }
  .main-category-list .main-category figure {
    position: relative;
    overflow: hidden; }
    .main-category-list .main-category figure img {
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
    .main-category-list .main-category figure figcaption {
      position: absolute;
      display: table;
      width: 100%;
      bottom: 0;
      padding: 7px;
      background-color: rgba(0, 0, 0, 0.5);
      text-align: center;
      z-index: 1;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
      .main-category-list .main-category figure figcaption h2 {
        font-family: "Open Sans", sans-serif;
        display: table-cell;
        vertical-align: middle;
        width: 100%;
        font-size: 16px;
        font-weight: bold;
        margin: 0;
        color: #fff;
        text-transform: uppercase; }
  .main-category-list .main-category:hover, .main-category-list .main-category.active {
    -webkit-box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.5); }
    .main-category-list .main-category:hover figure img, .main-category-list .main-category.active figure img {
      -moz-transform: scale(1.05);
      -webkit-transform: scale(1.05);
      -o-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05); }
    .main-category-list .main-category:hover figure figcaption, .main-category-list .main-category.active figure figcaption {
      background-color: #222; }

.fbLikebox {
  cursor: pointer;
  position: fixed;
  width: 300px;
  height: 400px;
  top: 50%;
  margin-top: -43px;
  z-index: 9999;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -ms-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 0ms; }
  .fbLikebox .fb-button {
    position: absolute;
    width: 33px;
    height: 87px; }
  .fbLikebox .fbLikeboxContainer {
    width: 300px;
    height: 400px;
    float: left; }

.fbLikebox.right {
  right: -300px; }
  .fbLikebox.right.open {
    right: 0; }
  .fbLikebox.right .fb-button {
    float: left;
    margin-left: -33px;
    background: url("../images/common/facebook-right.png") no-repeat; }

.fbLikebox.left {
  left: -300px; }
  .fbLikebox.left.open {
    left: 0; }
  .fbLikebox.left .fb-button {
    right: -33px;
    background: url("../images/common/facebook-left.png") no-repeat; }

.mobile-fixed {
  display: none;
  z-index: 9999;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  right: auto;
  background-color: #f9f9f9;
  border-top: 1px solid #a8a8ac;
  -webkit-transform: translateZ(0); }
  @media only screen and (max-width: 991px) {
    .mobile-fixed {
      display: flex; } }
  .mobile-fixed .mobile-fixed-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%; }
    .mobile-fixed .mobile-fixed-container a {
      margin: 1px;
      width: 100%;
      display: block;
      background-color: #222;
      padding: 0.7rem;
      text-align: center;
      color: #744c28; }
      .mobile-fixed .mobile-fixed-container a i {
        font-size: 2rem; }
      .mobile-fixed .mobile-fixed-container a span {
        display: block;
        color: #744c28;
        font-size: 1.2rem;
        text-transform: uppercase; }
    .mobile-fixed .mobile-fixed-container .descp {
      font-size: 0.8rem;
      font-family: "Cinzel", serif; }

#loader-wrapper {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999999;
  background: #fff repeat center;
  /* display: none; */ }
  #loader-wrapper .loading {
    width: 12rem;
    height: 12rem;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border-top: 10px solid #744c28;
    position: relative;
    animation: a1 2s linear infinite; }
    #loader-wrapper .loading span {
      line-height: 12rem;
      position: absolute;
      width: 12rem;
      height: 12rem;
      text-align: center;
      animation: a2 2s linear infinite; }
    #loader-wrapper .loading:before, #loader-wrapper .loading:after {
      content: "";
      width: 12rem;
      height: 12rem;
      position: absolute;
      top: -10px;
      left: 0;
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%; }
    #loader-wrapper .loading:before {
      border-top: 10px solid #222;
      transform: rotate(120deg); }
    #loader-wrapper .loading:after {
      border-top: 10px solid #3b2314;
      transform: rotate(240deg); }

@keyframes a1 {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes a2 {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(-360deg); } }
.newsleter-component form {
  margin: 15px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; }
  .newsleter-component form label {
    display: none; }
  .newsleter-component form input, .newsleter-component form button {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0; }
  .newsleter-component form .form-group {
    margin: 0; }
  .newsleter-component form input.form-control {
    padding: 22px; }

.date-picker {
  width: 170px;
  height: 25px;
  padding: 0;
  border: 0;
  line-height: 25px;
  padding-left: 10px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  color: #744c28;
  position: relative;
  z-index: 2; }

.date-picker-wrapper {
  position: absolute;
  z-index: 1;
  border: 1px solid #bfbfbf;
  background-color: #fff;
  padding: 5px 12px;
  font-size: 1rem;
  line-height: 1.4rem;
  color: #aaa;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  box-sizing: initial; }

.dp-clearfix {
  clear: both;
  height: 0;
  font-size: 0; }

@media only screen and (max-width: 767px) {
  .date-picker-wrapper {
    left: 0 !important; } }
.date-picker-wrapper.inline-wrapper {
  position: relative;
  box-shadow: none;
  display: inline-block; }
.date-picker-wrapper.single-date {
  width: auto; }
.date-picker-wrapper.no-shortcuts {
  padding-bottom: 12px; }
.date-picker-wrapper.no-topbar {
  padding-top: 12px; }
.date-picker-wrapper .footer {
  font-size: 11px;
  padding-top: 3px; }
.date-picker-wrapper b {
  color: #666;
  font-weight: 700; }
.date-picker-wrapper a {
  color: #6bb4d6;
  text-decoration: underline; }
.date-picker-wrapper .select-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle; }
  .date-picker-wrapper .select-wrapper:hover {
    text-decoration: underline; }
.date-picker-wrapper .month-element {
  display: inline-block;
  vertical-align: middle; }
.date-picker-wrapper .select-wrapper select {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 0;
  top: -1px;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  text-transform: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  outline: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
  filter: alpha(opacity=1);
  opacity: 0.01; }
.date-picker-wrapper .month-wrapper {
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  background-color: #fff;
  padding: 5px;
  cursor: default;
  position: relative;
  _overflow: hidden; }
  @media only screen and (max-width: 767px) {
    .date-picker-wrapper .month-wrapper {
      width: 100% !important; } }
  .date-picker-wrapper .month-wrapper table {
    width: 14rem;
    float: left; }
    @media only screen and (max-width: 767px) {
      .date-picker-wrapper .month-wrapper table {
        width: 100%; } }
    .date-picker-wrapper .month-wrapper table.month2 {
      width: 14rem;
      float: left; }
      @media only screen and (max-width: 767px) {
        .date-picker-wrapper .month-wrapper table.month2 {
          width: 100%; } }
    .date-picker-wrapper .month-wrapper table th, .date-picker-wrapper .month-wrapper table td {
      width: 45px;
      vertical-align: middle;
      text-align: center;
      line-height: 14px;
      margin: 0px;
      padding: 0px;
      font-weight: normal; }
    .date-picker-wrapper .month-wrapper table .day {
      padding: 5px;
      line-height: 1.2rem;
      font-size: 1rem;
      margin-bottom: 1px;
      color: #ccc;
      cursor: default; }
    .date-picker-wrapper .month-wrapper table div.day.lastMonth, .date-picker-wrapper .month-wrapper table div.day.nextMonth {
      color: #999;
      cursor: default; }
    .date-picker-wrapper .month-wrapper table .day.checked {
      background-color: #f3e6db; }
    .date-picker-wrapper .month-wrapper table .week-name {
      height: 1.5rem;
      line-height: 20px;
      font-weight: 100; }
    .date-picker-wrapper .month-wrapper table .day.has-tooltip {
      cursor: help !important; }
      .date-picker-wrapper .month-wrapper table .day.has-tooltip .tooltip {
        white-space: nowrap; }
.date-picker-wrapper .time label {
  white-space: nowrap; }
.date-picker-wrapper .month-wrapper table .day.toMonth.valid {
  color: #333;
  cursor: pointer; }
.date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
  background-color: #888888; }
.date-picker-wrapper .month-wrapper table .day.nextMonth, .date-picker-wrapper .month-wrapper table .day.lastMonth {
  display: none; }
.date-picker-wrapper .month-wrapper table .day.real-today {
  background-color: #222; }
  .date-picker-wrapper .month-wrapper table .day.real-today.checked, .date-picker-wrapper .month-wrapper table .day.real-today.hovering {
    background-color: #090909; }
.date-picker-wrapper table .caption {
  height: 3rem;
  background-color: #f9f9f9; }
  .date-picker-wrapper table .caption > th:first-of-type, .date-picker-wrapper table .caption > th:last-of-type {
    width: 27px; }
  .date-picker-wrapper table .caption .next, .date-picker-wrapper table .caption .prev {
    padding: 0 5px;
    cursor: pointer; }
  .date-picker-wrapper table .caption .next:hover, .date-picker-wrapper table .caption .prev:hover {
    background-color: #ccc;
    color: white; }
.date-picker-wrapper .gap {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 100%;
  background-color: red;
  font-size: 0;
  line-height: 0;
  float: left;
  top: -5px;
  margin: 0 10px -10px;
  visibility: hidden;
  height: 0; }
  @media only screen and (max-width: 767px) {
    .date-picker-wrapper .gap {
      display: none; } }
  .date-picker-wrapper .gap .gap-lines {
    height: 100%;
    overflow: hidden; }
  .date-picker-wrapper .gap .gap-line {
    height: 15px;
    width: 15px;
    position: relative; }
    .date-picker-wrapper .gap .gap-line .gap-1 {
      z-index: 1;
      height: 0;
      border-left: 8px solid white;
      border-top: 8px solid #eee;
      border-bottom: 8px solid #eee; }
    .date-picker-wrapper .gap .gap-line .gap-2 {
      position: absolute;
      right: 0;
      top: 0px;
      z-index: 2;
      height: 0;
      border-left: 8px solid transparent;
      border-top: 8px solid white; }
    .date-picker-wrapper .gap .gap-line .gap-3 {
      position: absolute;
      right: 0;
      top: 8px;
      z-index: 2;
      height: 0;
      border-left: 8px solid transparent;
      border-bottom: 8px solid white; }
  .date-picker-wrapper .gap .gap-top-mask {
    width: 6px;
    height: 1px;
    position: absolute;
    top: -1px;
    left: 1px;
    background-color: #eee;
    z-index: 3; }
  .date-picker-wrapper .gap .gap-bottom-mask {
    width: 6px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 7px;
    background-color: #eee;
    z-index: 3; }
.date-picker-wrapper .selected-days {
  display: none; }
.date-picker-wrapper .drp_top-bar {
  line-height: 1.4;
  position: relative; }
  .date-picker-wrapper .drp_top-bar .error-top, .date-picker-wrapper .drp_top-bar .normal-top {
    display: none; }
  .date-picker-wrapper .drp_top-bar .default-top {
    display: block; }
  .date-picker-wrapper .drp_top-bar.error .default-top {
    display: none; }
  .date-picker-wrapper .drp_top-bar.error .error-top {
    display: block;
    color: red; }
  .date-picker-wrapper .drp_top-bar.normal .default-top {
    display: none; }
  .date-picker-wrapper .drp_top-bar.normal .normal-top {
    display: block; }
    .date-picker-wrapper .drp_top-bar.normal .normal-top .selection-top {
      color: #333; }
  .date-picker-wrapper .drp_top-bar .apply-btn {
    position: absolute;
    right: 0px;
    top: 6px;
    padding: 3px 5px;
    margin: 0;
    font-size: 1rem;
    cursor: pointer;
    color: #d9eef7;
    border: solid 1px #744c28;
    background: #744c28;
    background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
    background: -moz-linear-gradient(top, #00adee, #0078a5);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
    color: white;
    line-height: initial; }
    .date-picker-wrapper .drp_top-bar .apply-btn.disabled {
      cursor: pointer;
      color: #606060;
      border: solid 1px #b7b7b7;
      background: #fff;
      background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
      background: -moz-linear-gradient(top, #fff, #ededed);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed'); }
.date-picker-wrapper .time {
  position: relative; }
.date-picker-wrapper.single-month .time {
  display: block; }
.date-picker-wrapper .time input[type=range] {
  vertical-align: middle;
  width: 129px;
  padding: 0;
  margin: 0;
  height: 20px; }
.date-picker-wrapper .time1 {
  width: 180px;
  padding: 0 5px;
  text-align: center; }

/*time styling*/
.time2 {
  width: 180px;
  padding: 0 5px;
  text-align: center; }

.date-picker-wrapper .time1 {
  float: left; }
.date-picker-wrapper .time2 {
  float: right; }
.date-picker-wrapper .hour {
  text-align: right; }

.minute {
  text-align: right; }

.date-picker-wrapper .hide {
  display: none; }
.date-picker-wrapper .first-date-selected, .date-picker-wrapper .last-date-selected {
  background-color: #744c28 !important;
  color: white !important; }
.date-picker-wrapper .date-range-length-tip {
  position: absolute;
  margin-top: -4px;
  margin-left: -8px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  display: none;
  background-color: yellow;
  padding: 0 6px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 16px;
  -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -moz-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -ms-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -o-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3)); }
  .date-picker-wrapper .date-range-length-tip:after {
    content: '';
    position: absolute;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid yellow;
    left: 50%;
    margin-left: -4px;
    bottom: -4px; }
.date-picker-wrapper.two-months.no-gap .month1 .next, .date-picker-wrapper.two-months.no-gap .month2 .prev {
  display: none; }
.date-picker-wrapper .week-number {
  padding: 5px 0;
  line-height: 1;
  font-size: 12px;
  margin-bottom: 1px;
  color: #999;
  cursor: pointer; }
  .date-picker-wrapper .week-number.week-number-selected {
    color: #49e;
    font-weight: bold; }

/*!
 * modified Simple lightbox effect in pure JS
 * @see {@link https://github.com/squeral/lightbox}
 * @see {@link https://github.com/squeral/lightbox/blob/master/lightbox.js}
 * passes jshint
 */
.iframe-lightbox,
.iframe-lightbox .backdrop {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

.iframe-lightbox {
  display: none;
  position: fixed;
  opacity: 0;
  transition: opacity 0.2s ease;
  /*!
   * @see {@link https://github.com/englishextra/iframe-lightbox/issues/10}
   * @see {@link https://github.com/englishextra/iframe-lightbox/issues/14}
   */
  z-index: 999999; }

.iframe-lightbox .backdrop {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: default; }

.iframe-lightbox .content-holder {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-right: -50%; }
  @media only screen and (max-width: 991px) {
    .iframe-lightbox .content-holder {
      width: 90%;
      height: 90%;
      top: 5%;
      left: 5%;
      transform: translate(0, 0); } }

.iframe-lightbox .content {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #fff; }
  @media only screen and (max-width: 991px) {
    .iframe-lightbox .content {
      height: 100%; } }

.iframe-lightbox .content > .body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*!
 * another pure css spinner
 * @see {@link https://epic-spinners.epicmax.co/}
 */
.iframe-lightbox .content > .body .half-circle-spinner,
.iframe-lightbox .content > .body .half-circle-spinner * {
  box-sizing: border-box; }

.iframe-lightbox .content > .body .half-circle-spinner {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: relative;
  margin: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%); }

.iframe-lightbox .content > .body .half-circle-spinner .circle {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: calc(60px / 10) solid transparent; }

.iframe-lightbox .content > .body .half-circle-spinner .circle.circle-1 {
  border-top-color: #FFFFFF;
  animation: half-circle-spinner-animation 1s infinite; }

.iframe-lightbox .content > .body .half-circle-spinner .circle.circle-2 {
  border-bottom-color: #FFFFFF;
  animation: half-circle-spinner-animation 1s infinite alternate; }

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.iframe-lightbox .content > .body.is-loaded .half-circle-spinner {
  display: none; }

.iframe-lightbox iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: 0.267rem 0.267rem 0.267rem 0 rgba(3, 3, 3, 0.3);
  /*!
   * in js: iframe onload="this.style.opacity=1;" style="opacity:0;border:none;"
   */
  /* opacity: 0; */
  transition: opacity 0.2s ease; }

.iframe-lightbox.is-showing {
  display: block; }

.iframe-lightbox.is-opened {
  opacity: 1; }

.iframe-lightbox .btn-close {
  position: fixed;
  top: 1.000rem;
  right: 1.000rem;
  width: 1.500rem;
  height: 1.500rem; }

/*!
 * pure css version
 * @see {@link https://codepen.io/brissmyr/pen/egidw}
 */
.iframe-lightbox .btn-close:before,
.iframe-lightbox .btn-close:after {
  content: " ";
  width: 0.125em;
  height: 1.500em;
  position: absolute;
  right: 0.625em;
  background-color: #FFFFFF; }

.iframe-lightbox .btn-close:before {
  transform: rotate(45deg); }

.iframe-lightbox .btn-close:after {
  transform: rotate(-45deg); }

/*!
 * @see {@link https://github.com/englishextra/iframe-lightbox/issues/12}
 */
.iframe-lightbox--open {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  height: auto; }

.breadCrumbs .breadcrumb {
  justify-content: flex-start;
  background: none;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee; }
  .breadCrumbs .breadcrumb a {
    color: #744c28; }

/**the end*/

/*# sourceMappingURL=style.css.map */
