@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
* {
  letter-spacing: 0.5px;
}

a {
  text-decoration: none !important;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

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

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

body {
  font-family: "Roboto", sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: #222020;
}
body::-webkit-scrollbar-thumb {
  background: #ffc43a;
}
body::-webkit-scrollbar-thumb:hover {
  background: white;
}
body section {
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
}

@-webkit-keyframes loader-anime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes loader-anime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
.whitesmoke-bg {
  background: #EDEDED;
}

.modal {
  z-index: 9999;
}
.modal .modal-content {
  border-radius: 0;
}
.modal form .form-group {
  margin-bottom: 15px;
}
.modal form .form-group label {
  display: block;
  margin: 0;
}
.modal form .form-group .style-one {
  border: none;
  border-bottom: 1px solid #182834;
  width: 100%;
  outline: none;
  color: #222020;
  padding: 3px 0;
  background: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}
.modal form .form-group .style-one:focus {
  border-color: #ffc43a;
  color: #ffc43a;
}
.modal form .btn-one {
  border-radius: 0;
  outline: 0;
  background: transparent;
  border: 1px solid #182834;
  color: #182834;
  padding: 10px 20px;
  font-size: 18px;
  letter-spacing: 1.5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modal form .btn-one:hover {
  background: #ffc43a;
  color: white;
  border-color: #ffc43a;
}

.breadcrumb {
  width: 100%;
  position: relative;
  border-radius: 0;
  margin: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffc43a), to(#EDEDED));
  background: linear-gradient(to bottom, #ffc43a, #EDEDED);
}
.breadcrumb .bg-image {
  height: 430px;
  width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.breadcrumb .bg-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.3);
          filter: brightness(0.3);
}
.breadcrumb .bg-image video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
  width: 100%;
}
.breadcrumb h1 {
  position: absolute;
  bottom: 50px;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 48px;
  display: inline-block;
  border-bottom: 2px solid #ffc43a;
  padding: 5px 15px;
}

.e-bulletin {
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(12deg, #222428, #3f3f3f, #222020);
}
.e-bulletin .e-bulletin-block {
  max-width: 992px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.e-bulletin .e-bulletin-block .content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 392px;
          flex: 0 0 392px;
  color: White;
}
.e-bulletin .e-bulletin-block .content h5 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 3px;
  color: #ffc43a;
  font-family: "Dancing Script", cursive;
  font-size: 24px;
}
.e-bulletin .e-bulletin-block .content p {
  font-size: 15px;
  margin: 0;
}
.e-bulletin .e-bulletin-form {
  padding: 40px 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 392px);
          flex: 0 0 calc(100% - 392px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.e-bulletin .e-bulletin-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.e-bulletin .e-bulletin-form form input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  outline: none !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.e-bulletin .e-bulletin-form form input[type=text] {
  background: transparent;
  border: 1px solid white;
  border-right: 0;
  padding: 10px 12px;
  color: white;
  border-radius: 0;
}
.e-bulletin .e-bulletin-form form input[type=text]:focus {
  border-color: #ffc43a;
}
.e-bulletin .e-bulletin-form form input[type=submit] {
  background: white;
  border: 1px solid white;
  padding: 10px 12px;
  color: #182834;
  border-radius: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
}
.e-bulletin .e-bulletin-form form input[type=submit]:hover {
  background-color: #ffc43a;
  border: 1px solid #ffc43a;
  color: White;
}

.divider-one {
  border-color: #7a6f68;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}
.divider-one:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 15px;
  background-image: url(../media/icons/header-shape.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.divider-one:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
  width: 60px;
  height: 15px;
  background-image: url(../media/icons/header-shape.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.scroll-down {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 15px;
  cursor: pointer;
  z-index: 6;
}
.scroll-down a {
  height: 90px;
  width: 120px;
}
.scroll-down span {
  font-weight: 500;
  font-size: 16px;
  color: #FEFEFD;
  position: absolute;
  letter-spacing: 2px;
  bottom: 0;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.scroll-down .chevron {
  position: absolute;
  width: 40px;
  height: 3px;
  left: 50%;
  opacity: 0;
  margin-left: -20px;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
  -webkit-animation: move 3s ease-out infinite;
          animation: move 3s ease-out infinite;
}
.scroll-down .chevron:first-child {
  -webkit-animation: move 3s ease-out 1s infinite;
          animation: move 3s ease-out 1s infinite;
}
.scroll-down .chevron:nth-child(2) {
  -webkit-animation: move 3s ease-out 2s infinite;
          animation: move 3s ease-out 2s infinite;
}
.scroll-down .chevron:before,
.scroll-down .chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}
.scroll-down .chevron:before {
  left: 0;
  -webkit-transform: skew(0deg, 30deg);
          transform: skew(0deg, 30deg);
}
.scroll-down .chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skew(0deg, -30deg);
          transform: skew(0deg, -30deg);
}
@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  padding-top: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 125px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
header .top-header:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
header .top-header .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
header .top-header .logo:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -13px;
  left: 0;
  border-bottom: 3px solid rgb(255, 255, 255);
}
header .top-header .logo a {
  height: 100px;
}
header .top-header .logo img {
  -webkit-filter: drop-shadow(0 2px 12px rgba(10, 15, 10, 0.6));
          filter: drop-shadow(0 2px 12px rgba(10, 15, 10, 0.6));
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
header .top-header .top-left a {
  color: white;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 3px;
  margin: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
header .top-header .top-left a:first-of-type {
  margin-left: 0;
}
header .top-header .top-left a:first-of-type i {
  margin-right: 4px;
}
header .top-header .top-left a:hover {
  color: #ffc43a;
}
header .top-header .top-left a i {
  font-size: 24px;
  color: #ffc43a;
}
header .top-header .top-left .social-icons {
  padding: 0 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}
header .top-header .top-left .social-icons a {
  padding: 2px;
  margin: 2px;
}
header .top-header .top-right .header-language {
  display: inline-block;
  margin-right: 10px;
}
header .top-header .top-right .header-language button {
  background: none;
  border: none;
  font-size: 15px;
  letter-spacing: 1px;
}
header .top-header .top-right .header-language .dropdown-menu {
  background: rgba(0, 0, 0, 0.15);
  border-color: white;
  border-radius: 2px;
  min-width: auto;
}
header .top-header .top-right .header-language .dropdown-menu a {
  color: White;
  background: none !important;
  text-align: center;
}
header .top-header .top-right .header-language .dropdown-menu a:hover {
  color: #ffc43a;
}
header .top-header .top-right .booking-button {
  display: inline-block;
}
header .top-header .top-right .booking-button a {
  padding: 8px 12px;
  border: 1px solid;
  font-size: 14px;
  border-radius: 2px;
  color: White;
  background: rgba(15, 15, 15, 0.3);
}
header .top-header .top-right .booking-button a i {
  margin-left: 5px;
  color: #ffc43a;
}
header .top-header .top-right .booking-button a:hover {
  background: #182834;
  color: #ffc43a;
}
header .main-menu {
  text-align: center;
  position: relative;
  padding: 20px 60px;
}
header .main-menu:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 80px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  max-width: calc(100% - 160px);
}
header .main-menu .shapes {
  opacity: 0.7;
}
header .main-menu .shapes:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 15px;
  background-image: url(../media/icons/header-shape.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
header .main-menu .shapes:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
  width: 60px;
  height: 15px;
  background-image: url(../media/icons/header-shape.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
header .main-menu nav ul li {
  display: inline-block;
}
header .main-menu nav ul li a {
  font-size: 15px;
  color: White;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 10px 5px;
  margin: 3px;
}
header .main-menu nav ul li a.active-page {
  color: #ffc43a;
  font-weight: 600;
}
header.affix {
  padding: 0;
  background: rgba(0, 0, 0, 0.95);
  position: fixed;
  -webkit-box-shadow: 0 0 20px rgba(10, 10, 10, 0.5);
          box-shadow: 0 0 20px rgba(10, 10, 10, 0.5);
}
header.affix .top-header {
  height: 0;
  visibility: hidden;
}

.mobile-header {
  position: fixed;
  padding: 10px 15px;
  display: none;
  z-index: 9000;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  background: linear-gradient(15deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.83));
}
.mobile-header .logo a {
  max-width: 200px;
}
.mobile-header .menu-button {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 35px 20px;
  width: 40px;
  height: 18px;
  cursor: pointer;
}
.mobile-header .menu-button .hamburger-menu,
.mobile-header .menu-button .hamburger-menu:after,
.mobile-header .menu-button .hamburger-menu:before {
  width: 40px;
  height: 2px;
}
.mobile-header .menu-button .hamburger-menu {
  position: relative;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  background: white;
  -webkit-transition: all 0ms 300ms;
  transition: all 0ms 300ms;
}
.mobile-header .menu-button .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
.mobile-header .menu-button .hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: white;
  -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-header .menu-button .hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: white;
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-header .menu-button .hamburger-menu.animate:after {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-header .menu-button .hamburger-menu.animate:before {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.panel-menu {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: -100%;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 242, 250, 0.94)));
  background: linear-gradient(to bottom, white, rgba(255, 242, 250, 0.94));
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100vh;
  z-index: 8999;
  padding: 160px 20px 20px 20px;
}
.panel-menu .logo a {
  max-width: 200px;
}
.panel-menu .menu-button {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 35px 20px;
  width: 40px;
  height: 18px;
  cursor: pointer;
}
.panel-menu .menu-button .hamburger-menu,
.panel-menu .menu-button .hamburger-menu:after,
.panel-menu .menu-button .hamburger-menu:before {
  width: 40px;
  height: 2px;
}
.panel-menu .menu-button .hamburger-menu {
  position: relative;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  background: #ffc43a;
  -webkit-transition: all 0ms 300ms;
  transition: all 0ms 300ms;
}
.panel-menu .menu-button .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
.panel-menu .menu-button .hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: #ffc43a;
  -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.panel-menu .menu-button .hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: #ffc43a;
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.panel-menu .menu-button .hamburger-menu.animate:after {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.panel-menu .menu-button .hamburger-menu.animate:before {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.panel-menu nav {
  max-width: 720px;
  margin: 20px auto;
  padding-bottom: 20px;
  border-bottom: 2px solid #182834;
}
.panel-menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.panel-menu nav ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  text-align: center;
  padding: 5px;
}
.panel-menu nav ul li a {
  color: #182834;
  font-weight: 600;
  padding: 3px;
}
.panel-menu nav ul li a.active-page {
  color: #ffc43a;
}
.panel-menu .menu-bottom .menu-contact {
  margin: 10px 0;
}
.panel-menu .menu-bottom .menu-contact a {
  font-size: 24px;
  color: #182834;
  padding: 10px;
  margin: 5px;
}
.panel-menu .menu-bottom .menu-contact a:hover {
  color: #ffc43a;
}
.panel-menu .menu-bottom .menu-contact .social-icons a {
  font-size: 32px;
}
.panel-menu .menu-bottom .header-language {
  display: inline-block;
  margin-right: 10px;
}
.panel-menu .menu-bottom .header-language button {
  background: none;
  border: 2px solid #ffc43a;
  font-size: 15px;
  letter-spacing: 1px;
  color: #ffc43a;
  border-radius: 0;
}
.panel-menu .menu-bottom .header-language .dropdown-menu {
  background: rgba(0, 0, 0, 0.15);
  border-color: #182834;
  border-radius: 2px;
  min-width: auto;
}
.panel-menu .menu-bottom .header-language .dropdown-menu a {
  color: #182834;
  background: none !important;
  text-align: center;
}
.panel-menu .menu-bottom .header-language .dropdown-menu a:hover {
  color: #ffc43a;
}
.panel-menu .menu-bottom .booking-button {
  display: inline-block;
}
.panel-menu .menu-bottom .booking-button a {
  padding: 8px 12px;
  border: 1px solid;
  font-size: 14px;
  border-radius: 2px;
  color: White;
  background: rgba(15, 15, 15, 0.8);
}
.panel-menu .menu-bottom .booking-button a i {
  margin-left: 5px;
  color: #ffc43a;
}
.panel-menu .menu-bottom .booking-button a:hover {
  background: #182834;
  color: #ffc43a;
}
.panel-menu.opened {
  top: 0;
  opacity: 1;
  visibility: visible;
}

footer {
  background: #1c1c1c;
}
footer .main-footer {
  padding: 60px 0;
}
footer .main-footer .logo {
  margin: 15px 0;
  padding: 10px;
}
footer .main-footer .footer-block {
  padding: 10px;
  margin: 15px 0;
  position: relative;
  height: calc(100% - 30px);
}
footer .main-footer .footer-block:before {
  content: "";
  position: absolute;
  left: -15px;
  height: 100%;
  top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
footer .main-footer .footer-block strong {
  color: #ffc43a;
  display: block;
  margin-bottom: 5px;
}
footer .main-footer .footer-block address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin: 0;
}
footer .main-footer .footer-block .contact-infos a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin: 3px 0;
  display: block;
}
footer .main-footer .footer-block .contact-infos a:hover {
  color: White;
}
footer .main-footer .footer-block .footer-socials a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin: 3px;
}
footer .main-footer .footer-block .footer-socials a:hover {
  color: White;
}
footer .copyright {
  position: relative;
  text-align: center;
  padding: 30px 0;
}
footer .copyright:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), color-stop(white), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), white, rgba(255, 255, 255, 0.2), transparent);
  height: 2px;
  border-radius: 50px;
}
footer .copyright a, footer .copyright p {
  font-size: 14px;
  color: white;
  margin: 5px 0;
}
footer .copyright a:hover, footer .copyright p:hover {
  color: #ffc43a;
}

.welcome-section {
  min-height: 100vh;
  position: relative;
}
.welcome-section:after {
  content: "";
  position: absolute;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.welcome-section .slogan-area {
  position: absolute;
  left: 50%;
  top: 350px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 6;
  text-align: center;
}
.welcome-section .slogan-area small {
  font-size: 20px;
  color: White;
  display: block;
  margin-top: 5px;
  padding-top: 5px;
  font-weight: 300;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.welcome-section .slogan-area h1 {
  font-family: "Dancing Script", cursive;
  font-size: 78px;
  line-height: 1.1;
  color: #ffc43a;
  text-align: center;
  letter-spacing: 3px;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
}
.welcome-section .slogan-area a {
  font-size: 20px;
  border: 2px solid #ffc43a;
  color: White;
  padding: 8px 18px;
  margin-top: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 2px;
}
.welcome-section .slogan-area a:before {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  width: 100%;
  height: 100%;
  -webkit-transition: inherit;
  transition: inherit;
  z-index: -1;
}
.welcome-section .slogan-area a:hover {
  color: #ffc43a;
}
.welcome-section .slogan-area a:hover:before {
  left: 0;
  top: 0;
  background: rgb(255, 255, 255);
}
.welcome-section .welcome-slider .item-list .item {
  height: 100vh;
  width: 100%;
}
.welcome-section .welcome-slider .item-list .item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 5.5s linear;
  transition: 5.5s linear;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  width: 100%;
}
.welcome-section .welcome-slider .item-list .item video {
  height: 100%;
  width: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.welcome-section .welcome-slider .item-list .item.slick-current img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-animation: welcome-anime 5s linear;
          animation: welcome-anime 5s linear;
}
@-webkit-keyframes welcome-anime {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes welcome-anime {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.welcome-section .welcome-slider .item-list .slick-dots {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 7;
}
.welcome-section .welcome-slider .item-list .slick-dots li {
  text-align: right;
}
.welcome-section .welcome-slider .item-list .slick-dots li button {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.welcome-section .welcome-slider .item-list .slick-dots li button:before {
  content: "";
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  display: inline-block;
  position: relative;
  right: 4px;
  top: -5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.welcome-section .welcome-slider .item-list .slick-dots li.slick-active button {
  font-weight: 600;
  color: #ffc43a;
}
.welcome-section .welcome-slider .item-list .slick-dots li.slick-active button:before {
  width: 35px;
  background: #ffc43a;
}

.home-about {
  padding: 120px 0;
  background: #EDEDED;
}
.home-about .general-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.home-about .general-content .image {
  width: 100%;
  max-width: 55rem;
  position: relative;
  z-index: -2;
}
.home-about .general-content .content-entity {
  right: auto;
  left: 0;
  font-size: 1.125rem;
  line-height: 2rem;
  position: absolute;
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 7.5rem 6rem;
  max-width: 45.5rem;
  width: 100%;
  z-index: 1;
  background: white;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-box-shadow: -1px 5px 12px rgba(0, 0, 0, 0.15);
          box-shadow: -1px 5px 12px rgba(0, 0, 0, 0.15);
}
.home-about .general-content .content-entity:before {
  content: "";
  position: absolute;
  right: auto;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -2;
  -webkit-transform: translateZ(-1em);
          transform: translateZ(-1em);
  border: 1px solid #bf8b5b;
  bottom: auto;
  top: 1.5rem;
}
.home-about .general-content .content-entity:after {
  content: "";
  position: absolute;
  right: auto;
  left: 1.1875rem;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -2;
  -webkit-transform: translateZ(-1em);
          transform: translateZ(-1em);
  border: 2px solid #bf8b5b;
  bottom: auto;
  top: 1.1875rem;
}
.home-about .general-content .content-entity small {
  font-family: "Dancing Script", cursive;
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffc43a;
  letter-spacing: 1px;
}
.home-about .general-content .content-entity h2 {
  font-weight: 600;
  margin: 0;
  color: #182834;
  font-size: 36px;
}
.home-about .general-content .content-entity .under-title {
  color: rgba(0, 0, 0, 0.9);
  padding-bottom: 5px;
  margin-bottom: 40px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
}
.home-about .general-content .content-entity p {
  margin: 7px 0;
  line-height: 1.4;
  font-size: 17px;
  color: rgba(10, 10, 10, 0.8);
  text-align: justify;
}

.holiday-infos {
  padding: 120px 0;
  background: #EDEDED;
}
.holiday-infos .section-title-box {
  height: calc(100% - 30px);
  margin: 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 80px 25px;
  background-color: white;
  background-image: url(../media/general/content-shape.jpg);
  background-position-y: bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 10px 10px 0px 0px #ffc43a;
          box-shadow: 10px 10px 0px 0px #ffc43a;
}
.holiday-infos .section-title-box h2 {
  color: #182834;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 36px;
  width: 100%;
}
.holiday-infos .section-title-box small {
  font-family: "Dancing Script", cursive;
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffc43a;
  letter-spacing: 1px;
}
.holiday-infos .info-box {
  height: calc(100% - 30px);
  margin: 15px 0;
  position: relative;
  padding: 60px 25px 40px 25px;
}
.holiday-infos .info-box .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.holiday-infos .info-box .bg-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: -webkit-gradient(linear, left bottom, left top, from(#182834), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(to top, #182834, rgba(0, 0, 0, 0.1));
  opacity: 0.9;
}
.holiday-infos .info-box .bg-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.holiday-infos .info-box .box-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
  text-align: center;
}
.holiday-infos .info-box .box-content h3 {
  color: White;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
.holiday-infos .info-box .box-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  letter-spacing: 0.5px;
  font-size: 15px;
}
.holiday-infos .info-box .box-content a {
  background: #ffc43a;
  color: black;
  padding: 6px 10px;
  font-weight: 500;
}
.holiday-infos .info-box .box-content a:hover {
  background: black;
  color: #ffc43a;
}
.holiday-infos .info-box:hover .bg-image:after {
  opacity: 1;
}
.holiday-infos .info-box:hover .bg-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.home-rooms {
  padding: 120px 0;
  background: #EDEDED;
}
.home-rooms .section-title {
  text-align: center;
  margin-bottom: 35px;
}
.home-rooms .section-title small {
  font-family: "Dancing Script", cursive;
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffc43a;
  letter-spacing: 1px;
}
.home-rooms .section-title h3 {
  font-size: 48px;
  font-weight: 600;
  color: #182834;
  letter-spacing: 1px;
}
.home-rooms .home-room-slider {
  margin: 15px 0;
  position: relative;
}
.home-rooms .home-room-slider .item-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home-rooms .home-room-slider .item-list .item {
  height: 100%;
  max-height: 600px;
  outline: none;
}
.home-rooms .home-room-slider .item-list .item a {
  display: block;
  height: 100%;
}
.home-rooms .home-room-slider .item-list .item a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-rooms .home-room-slider .arrows {
  position: absolute;
  z-index: 2;
  left: 15px;
  bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home-rooms .home-room-slider .arrows .slick-arrow {
  background: white;
  color: #182834;
  font-size: 24px;
  padding: 8px 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.home-rooms .home-room-slider .arrows .slick-arrow:hover {
  background: #ffc43a;
}
.home-rooms .info-content {
  margin: 15px 0;
  height: calc(100% - 30px);
  background: white;
  padding: 50px 75px;
}
.home-rooms .info-content ul {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.home-rooms .info-content ul li {
  font-size: 18px;
  padding: 5px 0;
}
.home-rooms .info-content ul li i {
  color: #ffc43a;
}
.home-rooms .info-content a {
  padding: 10px 20px;
  font-weight: 600;
  margin: 10px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px rgba(0, 0, 0, 0.15);
  background: #ffc43a;
  color: black;
  border: 2px solid #ffc43a;
}
.home-rooms .info-content a i {
  margin-left: 5px;
}
.home-rooms .info-content a:hover {
  background: transparent;
  border: 2px solid #ffc43a;
  color: #ffc43a;
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 rgba(0, 0, 0, 0.15);
}

.home-gallery {
  padding: 120px 0;
  background: #EDEDED;
}
.home-gallery .section-title {
  text-align: center;
  margin-bottom: 35px;
}
.home-gallery .section-title small {
  font-family: "Dancing Script", cursive;
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffc43a;
  letter-spacing: 1px;
}
.home-gallery .section-title h3 {
  font-size: 48px;
  font-weight: 600;
  color: #182834;
  letter-spacing: 1px;
}
.home-gallery .gallery-item {
  height: 100%;
}
.home-gallery .gallery-item a {
  margin: 15px 0;
  padding: 15px;
  height: calc(100% - 30px);
  background: white;
  display: block;
  max-height: 330px;
}
.home-gallery .gallery-item a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-top: 2px solid #ffc43a;
  border-left: 2px solid #ffc43a;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-gallery .gallery-item a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid #ffc43a;
  border-right: 2px solid #ffc43a;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-gallery .gallery-item a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-gallery .gallery-item a:hover:before, .home-gallery .gallery-item a:hover:after {
  width: 50px;
  height: 50px;
}
.home-gallery .gallery-item a:hover img {
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
.home-gallery .more-btn {
  padding: 10px 20px;
  font-weight: 600;
  margin: 10px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px rgba(0, 0, 0, 0.15);
  background: #ffc43a;
  color: black;
  border: 2px solid #ffc43a;
}
.home-gallery .more-btn i {
  margin-left: 5px;
}
.home-gallery .more-btn:hover {
  background: transparent;
  border: 2px solid #ffc43a;
  color: #ffc43a;
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 rgba(0, 0, 0, 0.15);
}

.rooms-page {
  padding: 80px 0;
  background: #EDEDED;
}
.rooms-page .room-gallery {
  position: relative;
}
.rooms-page .room-gallery .item-list .item a {
  display: block;
  height: 500px;
  overflow: hidden;
}
.rooms-page .room-gallery .item-list .item a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-12deg, #182834, transparent, transparent);
}
.rooms-page .room-gallery .item-list .item a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: roomZoom 6s linear infinite;
          animation: roomZoom 6s linear infinite;
}
@-webkit-keyframes roomZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes roomZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.rooms-page .room-gallery .item-list .slick-dots {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
}
.rooms-page .room-gallery .item-list .slick-dots li {
  padding: 0 3px;
}
.rooms-page .room-gallery .item-list .slick-dots li button {
  width: 36px;
  height: 36px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #182834;
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rooms-page .room-gallery .item-list .slick-dots li.slick-active button {
  background: #ffc43a;
  font-weight: 600;
}
.rooms-page .room-info {
  padding: 40px 30px;
  background: white;
  position: sticky;
  top: 50px;
  margin-bottom: 65px;
}
.rooms-page .room-info:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 100px 0 0;
  border-color: white transparent transparent transparent;
}
.rooms-page .room-info small {
  font-family: "Dancing Script", cursive;
  font-size: 32px;
  margin-bottom: 10px;
  color: #ffc43a;
  letter-spacing: 1px;
}
.rooms-page .room-info h2 {
  font-size: 36px;
  font-weight: 600;
  color: #182834;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.rooms-page .room-info p {
  line-height: 1.3;
  font-size: 14px;
  text-align: justify;
  opacity: 0.75;
  font-weight: 500;
}
.rooms-page .room-info .feature-icons ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rooms-page .room-info .feature-icons ul li {
  display: inline-block;
  padding: 5px 10px;
  font-size: 14px;
}
.rooms-page .room-info .feature-icons ul li svg {
  max-width: 1.3rem;
  height: 1.3rem;
  margin-right: 2px;
}
.rooms-page .room-info .feature-icons ul li svg path {
  stroke: #222428;
}
.rooms-page .rooms-list {
  margin: 30px 0;
}
.rooms-page .rooms-list h2 {
  font-size: 36px;
  font-weight: 600;
  color: #182834;
  letter-spacing: 1px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.rooms-page .rooms-list table th {
  color: #ffc43a;
}
.rooms-page .room-content {
  margin: 30px 0;
}
.rooms-page .room-content h3 {
  font-size: 36px;
  font-weight: 600;
  color: #182834;
  letter-spacing: 1px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.rooms-page .room-content .content-items .item {
  line-height: 1.3;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.rooms-page .room-content .content-items .item i {
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
  color: #ffc43a;
}
.rooms-page .room-content .content-items .item p {
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
}

.transportation-page {
  padding: 80px 0;
  background: #EDEDED;
}
.transportation-page .route-item {
  padding: 30px 0;
}
.transportation-page .route-item small {
  font-family: "Dancing Script", cursive;
  font-size: 32px;
  margin-bottom: 10px;
  color: #ffc43a;
  letter-spacing: 1px;
}
.transportation-page .route-item h2 {
  font-size: 36px;
  font-weight: 600;
  color: #182834;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.transportation-page .route-item .frame-area iframe {
  width: 100%;
  height: 450px;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35);
          box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35);
}

.about-us-page {
  padding: 80px 0;
  background: #EDEDED;
}
.about-us-page .about-head .general-info {
  padding: 20px 30px;
}
.about-us-page .about-head .general-info small {
  font-family: "Dancing Script", cursive;
  font-size: 40px;
  color: #ffc43a;
}
.about-us-page .about-head .general-info h2 {
  color: #182834;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 30px;
}
.about-us-page .about-head .general-info p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.8);
}
.about-us-page .about-head .general-info a {
  color: #182834;
}
.about-us-page .about-head .general-info a .icon {
  font-size: 40px;
  color: #ffc43a;
  padding: 5px;
  margin-right: 5px;
}
.about-us-page .about-head .general-info a .content {
  padding: 11px 0;
}
.about-us-page .about-head .general-info a .content span {
  display: block;
  width: 100%;
}
.about-us-page .about-head .general-info a .content span:first-of-type {
  font-weight: 700;
}
.about-us-page .about-head .images .image-item {
  -webkit-box-shadow: 4px 4px 16px 1px rgba(10, 10, 10, 0.5);
          box-shadow: 4px 4px 16px 1px rgba(10, 10, 10, 0.5);
}
.about-us-page .about-head .images .item-selector:first-of-type {
  margin-top: 70px;
}
.about-us-page .section-title {
  text-align: center;
  margin-bottom: 35px;
}
.about-us-page .section-title h3 {
  font-size: 48px;
  font-weight: 600;
  color: #182834;
  letter-spacing: 1px;
}
.about-us-page .about-videos {
  padding: 30px 0;
}
.about-us-page .about-videos .video-item {
  padding: 20px;
  height: calc(100% - 30px);
  margin: 15px 0;
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 13px rgba(0, 0, 0, 0.25);
  position: relative;
}
.about-us-page .about-videos .video-item video {
  max-width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us-page .about-videos .video-item strong {
  text-align: center;
  display: block;
  color: #182834;
  border-top: 2px solid #ffc43a;
  padding-top: 10px;
  margin-top: 5px;
}
.about-us-page .about-videos .video-item .control-buttons {
  position: absolute;
  top: 30px;
  right: 30px;
  text-align: right;
  z-index: 2;
}
.about-us-page .about-videos .video-item .control-buttons button {
  background: #222020;
  color: #ffc43a;
  font-size: 18px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding: 5px;
  width: 41px;
  text-align: center;
  border-radius: 2px;
}
.about-us-page .more-infos {
  padding: 30px 0;
}
.about-us-page .more-infos .info-item {
  margin: 30px 0;
  padding: 20px 10px;
  -webkit-box-shadow: 2px 2px 16px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 16px 2px rgba(0, 0, 0, 0.25);
  text-align: center;
  border-left: 4px solid #ffc43a;
}
.about-us-page .more-infos .info-item p {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.gallery-page {
  padding: 80px 0;
  background: #EDEDED;
}
.gallery-page .gallery-item {
  height: 100%;
}
.gallery-page .gallery-item a {
  margin: 15px 0;
  padding: 15px;
  height: calc(100% - 30px);
  background: white;
  display: block;
  max-height: 330px;
}
.gallery-page .gallery-item a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-top: 2px solid #ffc43a;
  border-left: 2px solid #ffc43a;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gallery-page .gallery-item a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid #ffc43a;
  border-right: 2px solid #ffc43a;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gallery-page .gallery-item a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gallery-page .gallery-item a:hover:before, .gallery-page .gallery-item a:hover:after {
  width: 50px;
  height: 50px;
}
.gallery-page .gallery-item a:hover img {
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.contact-page {
  padding: 80px 0;
  background: #EDEDED;
}
.contact-page .info-box {
  padding: 40px 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  margin: 34px 0;
}
.contact-page .contact-info {
  padding: 40px 30px;
  background: white;
  position: sticky;
  top: 50px;
  margin-bottom: 65px;
  margin-top: 15px;
}
.contact-page .contact-info:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 100px 0 0;
  border-color: white transparent transparent transparent;
}
.contact-page .contact-info small {
  font-family: "Dancing Script", cursive;
  font-size: 28px;
  margin-bottom: 10px;
  color: #ffc43a;
  letter-spacing: 1px;
}
.contact-page .contact-info h2 {
  font-size: 32px;
  font-weight: 600;
  color: #182834;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.contact-page .contact-info ul li a {
  color: #182834;
}
.contact-page .contact-info ul li a .icon {
  font-size: 40px;
  color: #ffc43a;
  margin-right: 15px;
  padding: 4px 0;
  width: 45px;
  text-align: center;
}
.contact-page .contact-info ul li a .content {
  padding: 9px 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 60px);
          flex: 0 0 calc(100% - 60px);
}
.contact-page .contact-info ul li a .content span {
  display: block;
  width: 100%;
}
.contact-page .contact-info ul li a .content span:first-of-type {
  font-weight: 700;
}
.contact-page .map {
  margin: 15px 0;
}
.contact-page .map iframe {
  width: 100%;
  height: 500px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.contact-page .contact-form .section-title {
  text-align: center;
  margin-bottom: 35px;
}
.contact-page .contact-form .section-title h3 {
  font-size: 48px;
  font-weight: 600;
  color: #182834;
  letter-spacing: 1px;
}
.contact-page .contact-form form {
  max-width: 992px;
  margin: 0 auto;
  padding: 20px;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}
.contact-page .contact-form .border-bottom {
  border-bottom: 1px solid #182834 !important;
}
.contact-page .contact-form .form-group {
  margin-bottom: 15px;
}
.contact-page .contact-form .form-group label {
  display: block;
  margin: 0;
}
.contact-page .contact-form .form-group .style-one {
  border: none;
  border-bottom: 1px solid #182834;
  width: 100%;
  outline: none;
  color: #222020;
  padding: 3px 0;
  background: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}
.contact-page .contact-form .form-group .style-one:focus {
  border-color: #ffc43a;
  color: #ffc43a;
}
.contact-page .contact-form .form-group .btn-one {
  border-radius: 0;
  outline: 0;
  background: transparent;
  border: 1px solid #182834;
  color: #182834;
  padding: 10px 20px;
  font-size: 18px;
  letter-spacing: 1.5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact-page .contact-form .form-group .btn-one:hover {
  background: #ffc43a;
  color: white;
  border-color: #ffc43a;
}

.province-page {
  padding: 80px 0;
  background: #EDEDED;
}
.province-page .info-box {
  padding: 40px 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  margin: 34px 0;
}
.province-page .info-box .info-content h2 {
  color: #ffc43a;
  border-bottom: 2px solid;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.province-page .info-box .info-content p {
  margin: 0;
  font-weight: 600;
  opacity: 0.8;
  color: #182834;
}
.province-page .info-box .image {
  background: #ffc43a;
  padding: 15px;
}
.province-page .info-box .image img {
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1440px) {
  .container {
    max-width: 1380px;
  }
}
@media (max-width: 1550px) {
  .welcome-section .slogan-area {
    top: 320px;
  }
  .welcome-section .slogan-area h1 {
    font-size: 68px;
  }
}
@media (max-width: 1439px) {
  .welcome-section .slogan-area {
    top: 300px;
  }
  .welcome-section .slogan-area h1 {
    font-size: 62px;
  }

  .home-about .general-content .image {
    max-width: 45rem;
  }

  .home-about .general-content .content-entity {
    padding: 6rem 4.5rem;
    max-width: 43.5rem;
  }

  .holiday-infos .section-title-box h2 {
    font-size: 32px;
  }

  .holiday-infos .info-box .box-content h3 {
    font-size: 18px;
  }

  .section-title h3, .section-title h2 {
    font-size: 42px !important;
  }

  .home-rooms .info-content {
    padding: 10px 50px;
  }

  .home-gallery .gallery-item a {
    max-height: 280px;
  }

  .breadcrumb h1 {
    font-size: 44px;
    white-space: nowrap;
  }
}
@media (max-width: 1199px) {
  .welcome-section .slogan-area h1 {
    font-size: 48px;
  }
  .welcome-section .slogan-area small, .welcome-section .slogan-area a {
    font-size: 18px;
  }

  .scroll-down span {
    font-size: 14px;
  }

  .home-about, .holiday-infos, .home-rooms, .home-gallery {
    padding: 80px 0;
  }

  .home-about .general-content .image {
    max-width: 40rem;
  }

  .home-about .general-content .content-entity {
    padding: 4rem 2rem;
    max-width: 35rem;
  }
  .home-about .general-content .content-entity small {
    font-size: 32px;
  }
  .home-about .general-content .content-entity h2 {
    font-size: 28px;
  }
  .home-about .general-content .content-entity p {
    font-size: 16px;
  }

  .holiday-infos .info-box {
    margin: 15px;
    padding: 100px 20px 40px 20px;
  }

  .section-title h3, .section-title h2 {
    font-size: 36px !important;
  }

  .home-gallery .gallery-item a {
    max-height: 240px;
  }

  .breadcrumb h1 {
    font-size: 38px;
  }

  .breadcrumb .bg-image {
    height: 380px;
  }

  .about-us-page .about-head .general-info h2 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  header {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .scroll-down {
    display: none;
  }

  .e-bulletin .e-bulletin-block {
    display: block;
    text-align: center;
  }

  .home-about .general-content .content-entity {
    padding: 3rem 2rem;
    max-width: 24rem;
  }
  .home-about .general-content .content-entity h2 {
    font-size: 24px;
  }
  .home-about .general-content .content-entity .under-title {
    font-size: 18px;
    line-height: 1.1 !important;
    margin: 5px 0;
  }

  .holiday-infos .info-box {
    padding: 160px 20px 40px 20px;
  }

  .section-title h3, .section-title h2 {
    font-size: 28px !important;
  }

  .home-rooms .section-title small {
    font-size: 36px;
  }

  footer .copyright a, footer .copyright p {
    font-size: 13px;
  }

  .about-us-page .about-head .images .image-item {
    margin: 15px 0;
  }

  .about-us-page .about-head .images .item-selector:first-of-type {
    margin-top: 0;
  }

  .about-us-page .about-head {
    margin-bottom: 30px;
  }

  .about-us-page .about-head .general-info h2 {
    font-size: 40px;
  }

  .breadcrumb h1 {
    font-size: 32px;
  }

  .transportation-page .route-item h2 {
    font-size: 32px;
  }

  .province-page .info-box .image {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .home-about .general-content article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .home-about .general-content .content-entity {
    position: relative;
    margin: 0 0 50px 0;
    top: 0;
    -webkit-transform: none;
            transform: none;
    max-width: 100%;
  }

  .home-about .general-content .image {
    max-width: 100%;
  }

  .section-title h3, .section-title h2 {
    font-size: 24px !important;
  }

  .welcome-section .slogan-area h1 {
    font-size: 34px;
  }

  .welcome-section .slogan-area {
    top: 240px;
  }

  footer .copyright a, footer .copyright p {
    text-align: center;
    display: block;
  }

  .home-gallery .gallery-item a {
    max-height: 320px;
  }

  .divider-one {
    max-width: 90% !important;
  }
  .divider-one:after, .divider-one:before {
    display: none;
  }

  .home-about, .holiday-infos, .home-rooms, .home-gallery {
    padding: 50px 0;
  }

  .about-us-page .about-head .general-info h2 {
    font-size: 32px;
  }

  .about-us-page, .rooms-page, .transportation-page, .contact-page, .gallery-page, .province-page {
    padding: 40px 0;
  }

  .breadcrumb h1 {
    font-size: 28px;
  }

  .breadcrumb .bg-image {
    height: 360px;
  }

  .transportation-page .route-item h2 {
    font-size: 28px;
  }

  .contact-page .contact-form .form-group .style-one {
    font-size: 14px;
  }

  .province-page .info-box .info-content h2 {
    font-size: 24px;
  }

  .province-page .info-box .info-content p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .welcome-section .slogan-area h1 {
    font-size: 28px;
  }

  .welcome-section .slogan-area {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 90%;
    margin-top: 40px;
  }

  .welcome-section .welcome-slider .item-list .item {
    height: 75vh;
  }

  .welcome-section {
    min-height: auto;
  }

  .mobile-header .logo a {
    max-width: 170px;
  }

  .home-rooms .info-content {
    padding: 20px;
  }

  .home-rooms .info-content ul li {
    font-size: 16px;
  }

  .home-rooms .info-content a {
    padding: 10px;
    font-size: 14px;
  }

  .e-bulletin .e-bulletin-form {
    padding: 20px 10px;
  }

  .e-bulletin .e-bulletin-form form input[type=submit] {
    padding: 10px 6px;
    font-size: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
  }

  .e-bulletin .e-bulletin-form form input[type=text] {
    font-size: 14px;
  }

  footer .main-footer {
    padding: 40px 10px;
  }

  .about-us-page .about-head .general-info h2 {
    font-size: 24px;
  }

  .about-us-page .about-head .general-info small {
    font-size: 30px;
  }

  .about-us-page, .rooms-page, .transportation-page, .contact-page, .gallery-page, .province-page {
    padding: 30px 0;
  }

  .breadcrumb h1 {
    font-size: 24px;
  }

  .breadcrumb .bg-image {
    height: 280px;
  }

  .table td, .table th {
    font-size: 14px;
  }

  .transportation-page .route-item h2 {
    font-size: 24px;
  }
}