@font-face {
  font-family: "Oswald-Medium";
  src: url("../fonts/Oswald-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Light";
  src: url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-ExtraLight";
  src: url("../fonts/Montserrat-ExtraLight.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
html, body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Montserrat-Light";
  font-size: 16px;
  color: #585858;
  background: #0b0d09;
}

a, a:link, a:visited {
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

img {
  border: none;
  margin: 0px;
  max-width: 100%;
}

h1 {
  font-size: 2em;
  font-weight: bold;
  margin: 0px;
  padding: 0px;
}

h2 {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0px;
  padding: 0px;
}

form, input, select, textarea, p {
  margin: 0px;
  padding: 0;
}

textarea {
  resize: none;
}

input:focus, textarea:focus {
  outline: none;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, time {
  display: block;
  margin: 0px;
  padding: 0;
}

a, button, div {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  outline: none;
}

* {
  box-sizing: border-box;
}

#main-container {
  background: #FFF;
}
#main-container::before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: none;
  opacity: 0;
  transition: all 0.3s linar;
}
#main-container.bg-white::before {
  opacity: 1;
  z-index: 1;
}

.preloader {
  background: #FFF;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2500;
}
.preloader .pre-image {
  content: "";
  width: 100px;
  height: 100px;
  background: url(../images/loader.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: preloader 3s infinite;
          animation: preloader 3s infinite;
  transform: scale(0);
}
.preloader .pre-image .d-flex {
  position: absolute;
  bottom: -30px;
  flex-flow: row nowrap;
}
.preloader .pre-image .d-flex span {
  padding-left: 5px;
  display: none;
}

@-webkit-keyframes preloader {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}

@keyframes preloader {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
.container {
  max-width: 1300px;
  width: 100%;
}

.main-header {
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 24px 0 23px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  border-bottom: 5px solid #CDDA36;
  transition: all 0.3s ease-in-out;
}
.main-header .container {
  justify-content: space-between;
  align-items: center;
}
.main-header .container .main-logo figure {
  height: 83px;
  transition: all 0.3s ease-in-out;
  overflow-y: hidden;
  display: block;
}
.main-header .container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row;
}
.main-header .container ul li {
  font-family: "Montserrat-Light";
  font-size: 14px;
  margin: 0 0 0 24px;
}
.main-header .container ul li a {
  color: #030303;
  position: relative;
}
.main-header .container ul li a::after {
  content: "";
  background: #CDDA36;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
.main-header .container ul li a:hover::after {
  width: 100%;
}
.main-header .container ul li a:hover {
  color: #CDDA36;
}
.main-header .container ul li.active a {
  color: #CDDA36;
}
.main-header .container ul li.active a::after {
  width: 100%;
}
.main-header .container .main-nav {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.main-header.sticky {
  background: #FFF;
  padding: 10px 0;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
  border: none;
  z-index: 160;
}
.main-header.sticky .main-logo figure {
  height: 50px;
}
.main-header .mob-nav {
  width: 160px;
  height: 123px;
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: -23px;
  bottom: 0;
  right: -47px;
  cursor: pointer;
  transform: scale(0.4);
}
.main-header .stick {
  width: 80px;
  height: 8px;
  border-radius: 4px;
  margin-bottom: 15px;
  background-color: #000;
  display: inline-block;
}
.main-header .stick:last-child {
  margin-bottom: 0px;
}
.main-header .stick-1.open {
  -webkit-animation: stick-1-open 0.6s ease-out forwards;
          animation: stick-1-open 0.6s ease-out forwards;
}
.main-header .stick-2.open {
  -webkit-animation: stick-2-open 0.6s linear forwards;
          animation: stick-2-open 0.6s linear forwards;
}
.main-header .stick-3.open {
  -webkit-animation: stick-3-open 0.6s linear forwards;
          animation: stick-3-open 0.6s linear forwards;
}
@-webkit-keyframes stick-1-open {
  0% {
    width: 80px;
  }
  40% {
    background-color: #CDDA36;
    width: 8px;
    transform: translate(40px, 0px);
  }
  75%, 80% {
    width: 8px;
    transform: translate(40px, -50px);
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 1);
            animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  100% {
    background-color: #CDDA36;
    width: 8px;
    transform: translate(35px, 46px);
  }
}
@keyframes stick-1-open {
  0% {
    width: 80px;
  }
  40% {
    background-color: #CDDA36;
    width: 8px;
    transform: translate(40px, 0px);
  }
  75%, 80% {
    width: 8px;
    transform: translate(40px, -50px);
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 1);
            animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  100% {
    background-color: #CDDA36;
    width: 8px;
    transform: translate(35px, 46px);
  }
}
@-webkit-keyframes stick-2-open {
  80% {
    background-color: #CDDA36;
    transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
    background-color: #CDDA36;
    transform: translate(8px, 0px) rotate(40deg);
  }
}
@keyframes stick-2-open {
  80% {
    background-color: #CDDA36;
    transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
    background-color: #CDDA36;
    transform: translate(8px, 0px) rotate(40deg);
  }
}
@-webkit-keyframes stick-3-open {
  80% {
    background-color: #CDDA36;
    transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
    background-color: #CDDA36;
    transform: translate(8px, -23px) rotate(-40deg);
  }
}
@keyframes stick-3-open {
  80% {
    background-color: #CDDA36;
    transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
    background-color: #CDDA36;
    transform: translate(8px, -23px) rotate(-40deg);
  }
}
.main-header .stick-1.close {
  width: 8px;
  transform: translate(27px, 26px);
  -webkit-animation: stick-1-close 0.6s ease-out forwards;
          animation: stick-1-close 0.6s ease-out forwards;
}
.main-header .stick-2.close {
  transform: translate(0px, 0px) rotate(40deg);
  -webkit-animation: stick-2-close 0.6s ease-out forwards;
          animation: stick-2-close 0.6s ease-out forwards;
}
.main-header .stick-3.close {
  transform: translate(0px, -23px) rotate(-40deg);
  -webkit-animation: stick-3-close 0.6s ease-out forwards;
          animation: stick-3-close 0.6s ease-out forwards;
}
@-webkit-keyframes stick-1-close {
  0%, 70% {
    width: 0px;
  }
  100% {
    width: 80px;
    transform: translate(0, 0);
  }
}
@keyframes stick-1-close {
  0%, 70% {
    width: 0px;
  }
  100% {
    width: 80px;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes stick-2-close {
  0% {
    background-color: #CDDA36;
    width: 80px;
  }
  20% {
    background-color: #CDDA36;
    width: 8px;
    transform: translate(0, 0px) rotate(40deg);
  }
  40% {
    background-color: #CDDA36;
    width: 0px;
  }
  65% {
    transform: translate(0, -70px);
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 1);
            animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  80% {
    width: 0px;
  }
  100% {
    width: 80px;
    transform: translate(0, 0px);
  }
}
@keyframes stick-2-close {
  0% {
    background-color: #CDDA36;
    width: 80px;
  }
  20% {
    background-color: #CDDA36;
    width: 8px;
    transform: translate(0, 0px) rotate(40deg);
  }
  40% {
    background-color: #CDDA36;
    width: 0px;
  }
  65% {
    transform: translate(0, -70px);
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 1);
            animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  80% {
    width: 0px;
  }
  100% {
    width: 80px;
    transform: translate(0, 0px);
  }
}
@-webkit-keyframes stick-3-close {
  0% {
    background-color: #CDDA36;
    width: 80px;
  }
  20% {
    background-color: #CDDA36;
    width: 8px;
    transform: translate(0, -23px) rotate(-40deg);
  }
  40% {
    background-color: #CDDA36;
  }
  65% {
    transform: translate(0, -93px);
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 1);
            animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  90% {
    width: 8px;
  }
  100% {
    width: 80px;
    transform: translate(0, 0px);
  }
}
@keyframes stick-3-close {
  0% {
    background-color: #CDDA36;
    width: 80px;
  }
  20% {
    background-color: #CDDA36;
    width: 8px;
    transform: translate(0, -23px) rotate(-40deg);
  }
  40% {
    background-color: #CDDA36;
  }
  65% {
    transform: translate(0, -93px);
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 1);
            animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  90% {
    width: 8px;
  }
  100% {
    width: 80px;
    transform: translate(0, 0px);
  }
}

.btn-green {
  font-size: 16px;
  color: #FFF;
  background: #CDDA36;
  padding: 9px 22px;
  white-space: nowrap;
  transition: all ease-in-out 0.4s;
}
.btn-green:hover {
  background: #000;
  color: #FFF;
}

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

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

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

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

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

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

.slick-dots {
  width: 100%;
  position: absolute;
  z-index: 1;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.slick-dots li {
  display: inline-flex;
  cursor: pointer;
  margin-right: 5px;
}
.slick-dots li button {
  background: transparent;
  text-indent: -9999px;
  border-radius: 100%;
  outline: none;
  border: none;
  width: 15px;
  height: 15px;
  padding: 0;
  border: 2px solid #CDDA36;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background: #CDDA36;
}

.home-hero {
  width: 100%;
  position: relative;
}
.home-hero img {
  visibility: hidden;
  display: block;
  width: 100%;
}
.home-hero figure {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.home-hero .item {
  position: relative;
  height: 100vh;
  overflow-y: hidden;
}
.home-hero .item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-hero .item.video-item::before {
  display: none;
}
.home-hero .item.video-item .container {
  display: none;
}
.home-hero .item.video-item .icon-play {
  background: url(../images/icon-play.png) no-repeat center center;
  background-size: cover;
  width: 108px;
  height: 108px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.home-hero .item.video-item .icon-pause {
  background: url(../images/icon-pause.png) no-repeat center center;
  background-size: cover;
  width: 108px;
  height: 108px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.home-hero .item.video-item:hover .icon-play {
  opacity: 1;
}
.home-hero .item.video-item:hover .icon-pause {
  opacity: 1;
}
.home-hero .item video {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home-hero .item video ::-webkit-media-controls {
  display: none;
}
.home-hero .item .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -12%);
  display: flex;
  flex-flow: row nowrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.home-hero .item .container h1 {
  font-family: "Montserrat-SemiBold";
  font-size: 95px;
  color: #FFF;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  line-height: 72px;
  width: 100%;
  position: relative;
  bottom: 0;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  padding: 30px 23px 23px;
  transition: all 0.4s ease-in-out;
}
.home-hero .item .container h1 span {
  font-family: "Montserrat-Regular";
  font-weight: normal;
  text-transform: capitalize;
  font-size: 60px;
  text-shadow: none !important;
  position: relative;
  top: 0;
  display: block;
  transition: all 0.4s ease-in-out;
}
.home-hero .slick-dots {
  bottom: -70px;
}

.search-wrapper {
  background: rgba(205, 218, 54, 0.5);
  margin: -102px 0 0;
  width: 100%;
  position: relative;
  z-index: 150;
}
.search-wrapper .search-wrap {
  padding: 30px 25px 30px;
  position: relative;
  min-height: 75px;
  margin-bottom: 0;
  border-radius: 60px;
  width: 100%;
}
.search-wrapper .search-wrap::before {
  background-image: url("../images/best-tag.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: inherit;
  content: "";
  height: 111px;
  position: absolute;
  left: 0;
  top: -92px;
  margin-left: 0;
  z-index: 2;
  width: 100%;
}
.search-wrapper .search-wrap h2 {
  font-size: 20px;
  margin: 0 0 5px;
  text-transform: uppercase;
  color: #161047;
  width: 100%;
  display: block;
}
.search-wrapper .search-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
}
.search-wrapper .search-wrap ul li {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  width: 15%;
  justify-content: flex-end;
  position: relative;
}
.search-wrapper .search-wrap ul li:last-child {
  max-width: 155px;
  margin-left: auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  z-index: 12 !important;
}
.search-wrapper .search-wrap ul li:last-child img {
  position: absolute;
  top: 44px;
  left: -14px;
}
.search-wrapper .search-wrap ul li:not(:last-child) {
  margin: 0 15px 0 0;
}
.search-wrapper .search-wrap ul li label {
  position: absolute;
  opacity: 0;
  left: 10px;
  z-index: 2;
  pointer-events: none;
  top: 15px;
  border-radius: 10px;
  padding: 1px 10px 0px;
  color: #003462;
  font-weight: normal;
  font-size: 10px;
  transition: all ease-in-out 0.5;
}
.search-wrapper .search-wrap ul li.label-view label {
  width: 100%;
  opacity: 1;
  top: 45px;
  left: 0;
  text-align: center;
  color: #FFF;
  transition: all ease-in-out 0.5;
}
.search-wrapper .search-wrap ul li input {
  border: none !important;
  color: #000;
  border-left: none !important;
  height: 42px;
  outline: none;
  width: 100% !important;
  padding: 0 19px;
  font-size: 13px;
  background: #FFF;
  -webkit-appearance: none;
  border-radius: 2px;
  cursor: default;
}
.search-wrapper .search-wrap ul li .btn {
  border-radius: 0 !important;
  color: #CDDA36;
  padding: 9px 22px;
  line-height: 24px;
  height: 42px;
  border: none;
  font-size: 16px;
  outline: none;
  text-shadow: none;
  text-decoration: none;
  transition: all ease 0.3s;
  cursor: pointer;
}
.search-wrapper .search-wrap ul li .btn:hover {
  background: #000;
  color: #FFF;
  transition: all ease 0.3s;
}
.search-wrapper .search-wrap ul li .btn:focus {
  box-shadow: none;
}
.search-wrapper .search-wrap ul li select {
  font-size: 13px;
  border: none !important;
  color: #333333;
  border-left: none !important;
  height: 42px;
  outline: none;
  width: 100% !important;
  padding: 0 30px 0 20px;
  background: #FFF url(../images/icon-dropdown.png) no-repeat 95% center;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 2px;
  cursor: default;
}
.search-wrapper .search-wrap ul li select::after {
  content: "";
  width: 14px;
  height: 14px;
}
.search-wrapper .search-wrap ul li input[type=submit] {
  width: 110px !important;
  background: #FFF;
  color: #000;
}
.search-wrapper .search-wrap ul li span {
  width: 230px;
  position: absolute;
  font-size: 11px;
  line-height: 0;
  color: white;
  text-align: left;
  left: 0;
  bottom: -13px;
}
.search-wrapper .search-wrap .child-plan {
  cursor: pointer;
}
.search-wrapper .search-wrap .child-plan .plan-view {
  position: absolute;
  width: 260px;
  z-index: 9;
  opacity: 0;
  background: rgba(31, 47, 85, 0.9);
  top: -143px;
  color: #fff;
  padding: 10px 10px;
  pointer-events: none;
  right: 169px;
  transition: all ease 0.5s;
}
.search-wrapper .search-wrap .child-plan .plan-view:after {
  left: 100%;
  top: 45%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(22, 16, 71, 0);
  border-left-color: rgba(31, 47, 85, 0.9);
  border-width: 10px;
  margin-top: -10px;
}
.search-wrapper .search-wrap .child-plan .plan-view p {
  font-size: 12px;
}
.search-wrapper .search-wrap .child-plan .plan-view strong {
  font-size: 12px !important;
}
.search-wrapper .search-wrap .child-plan.active .plan-view {
  opacity: 1;
  right: 175px;
  transition: all ease 0.5s;
}
.search-wrapper .search-wrap .child-plan.active .plan-view p {
  margin: 0px;
  font-size: 12px;
}
.search-wrapper .search-wrap .child-plan.active .plan-view p strong {
  font-family: "Montserrat-Medium";
}
.search-wrapper .search-wrap .child-plan.active .plan-view h3 {
  margin: 0 0 2px;
  font-family: "Montserrat-SemiBold";
}
.search-wrapper .search-wrap .child-plan i {
  width: 35px;
  height: 35px;
  background: #FFF url(../images/icon-child.png) no-repeat center center;
  background-size: 46%;
  border-radius: 50px;
  text-align: center;
  line-height: 35px;
  font-size: 20px;
  color: #fff;
  margin-right: 10px;
  display: block;
}
.search-wrapper .search-wrap .icon-calendar {
  color: #243557;
  cursor: pointer;
  font-size: 21px;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 11px;
  width: 20px;
  height: 20px;
}
.search-wrapper .search-wrap .icon-calendar::before {
  background-image: url(../images/calendar.svg);
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  background-size: contain;
  content: "";
  display: block;
}
.search-wrapper .search-wrap input::-webkit-input-placeholder {
  color: #333333 !important;
  font: 13px/16px;
  text-transform: inherit;
}
.search-wrapper .search-wrap input:-moz-placeholder {
  color: #333333 !important;
  font: 13px/16px;
  text-transform: inherit;
}
.search-wrapper .search-wrap input::-moz-placeholder {
  color: #333333 !important;
  font: 13px/16px;
  text-transform: inherit;
}
.search-wrapper .search-wrap input:-ms-input-placeholder {
  color: #333333 !important;
  font: 13px/16px;
  text-transform: inherit;
}

h2 {
  font-family: "Oswald-Medium";
  font-weight: normal;
  font-size: 45px;
  color: #000;
}

.ui-datepicker {
  margin: 8px 0 0 !important;
  top: 0;
  left: 0;
  background: #fff;
  position: relative;
  width: 230px;
  display: none;
  border: 1px solid #dee1e6;
  padding: 10px;
  font-size: 12px;
  margin-top: 5px;
  border-radius: 4px;
}
.ui-datepicker:before {
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #FFF;
  border-bottom-color: #FFF;
  position: absolute;
  top: -7px;
  left: 6px;
}
.ui-datepicker .ui-datepicker-prev {
  background: url(../images/icon-left-cal.png) no-repeat center center;
  opacity: 1 !important;
}
.ui-datepicker .ui-datepicker-prev.ui-datepicker-prev-hover {
  border: none !important;
}
.ui-datepicker .ui-datepicker-prev.ui-datepicker-prev-hover span {
  display: none;
}
.ui-datepicker .ui-datepicker-next {
  background: url(../images/icon-right-cal.png) no-repeat center center;
  opacity: 1 !important;
}
.ui-datepicker .ui-datepicker-next.ui-datepicker-next-hover {
  border: none !important;
}
.ui-datepicker .ui-datepicker-next.ui-datepicker-next-hover span {
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  background: #CDDA36;
  border: none;
}

.what-we-do {
  margin: 120px 0 0;
}
.what-we-do .outer-holder {
  position: relative;
}
.what-we-do .outer-holder span {
  background: #CDDA36;
  width: 192px;
  height: 192px;
  border: 20px solid #FFF;
  position: absolute;
  bottom: -50px;
  left: -75px;
  z-index: 10;
}
.what-we-do .outer-holder span::before {
  content: attr(data-number);
  font-family: "Oswald-Medium";
  font-size: 80px;
  line-height: 90px;
  color: #FFF;
  text-align: center;
  padding: 10px 0 0;
  display: block;
}
.what-we-do .outer-holder span::after {
  content: attr(data-text);
  font-family: "Montserrat-Light";
  font-size: 18px;
  line-height: 16px;
  color: #FFF;
  text-align: center;
  display: block;
}
.what-we-do figure {
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s ease-in-out;
}
.what-we-do figure img {
  visibility: hidden;
}
.what-we-do figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 30px solid rgba(255, 255, 255, 0);
  transition: all 0.3s ease-in-out;
}
.what-we-do .welcome-content {
  padding-left: 60px;
  display: flex;
  flex-flow: row nowrap;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
}
.what-we-do .welcome-content h2 {
  margin: 0 0 25px;
}
.what-we-do .welcome-content .btn-green {
  margin: 32px 0 0;
}
.what-we-do:hover::after {
  width: 85%;
  height: 85%;
  border: 30px solid rgba(255, 255, 255, 0.2);
}
.what-we-do .container {
  padding-left: 55px;
}
.what-we-do .container:hover figure {
  background-size: 105% 105%;
}
.what-we-do .container:hover figure::after {
  width: 85%;
  height: 85%;
  border: 30px solid rgba(255, 255, 255, 0.2);
}

.reserve-room {
    background-size: cover;
  margin: 100px 0 0;
  position: relative;
  min-height: 321px;
}
.reserve-room figure{ background-position: center; background-repeat: no-repeat; background-size:cover;min-height: 321px;}
.reserve-room::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.reserve-room img {
  visibility: hidden;
}
.reserve-room .reserve-room-holder {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -32%);
}
.reserve-room .reserve-room-holder span {
  font-size: 43px;
  color: #FFF;
  line-height: 31px;
  display: block;
}
.reserve-room .reserve-room-holder p {
  font-family: "Montserrat-Medium";
  font-size: 50px;
  color: #FFF;
  text-align: center;
  display: inline;
  position: relative;
}
.reserve-room .reserve-room-holder p::before {
  content: "";
  background: url(../images/icon-call.png) no-repeat;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 14px;
  left: -57px;
}

.room-wrapper {
  background: #f3f3f3;
  width: 100%;
  padding: 60px 0 145px;
}
.room-wrapper .container {
  position: relative;
}
.room-wrapper .container h2 {
  font-family: "Oswald-Medium";
  font-size: 45px;
  color: #222222;
  display: block;
  line-height: 68px;
  position: static;
  width: 100%;
  margin: 0 0 60px;
}
.room-wrapper .container .btn-green {
  position: absolute;
  top: 20px;
  right: 11px;
}
.room-wrapper .item {
  position: relative;
  margin: 0 20px;
}
.room-wrapper .item .slick-slide img {
  visibility: hidden;
}
.room-wrapper .item figure {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s ease-in-out;
}
.room-wrapper .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.room-wrapper .item:hover::before {
  background: rgba(205, 218, 54, 0.78);
}
.room-wrapper .item img {
  width: 100% !important;
  visibility: hidden;
}
.room-wrapper .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 30px solid rgba(255, 255, 255, 0);
  transition: all 0.3s ease-in-out;
}
.room-wrapper .item:hover::after {
  width: 90%;
  height: 85%;
  border: 30px solid rgba(255, 255, 255, 0.2);
}
.room-wrapper .item:hover figure {
  background-size: 105% 105%;
}
.room-wrapper .item a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.room-wrapper .item .room-details {
  color: #FFF;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 100%;
  padding: 0 15px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.room-wrapper .item .room-details h3 {
  font-family: "Montserrat-ExtraLight";
  font-size: 50px;
  line-height: 28px;
  padding-bottom: 10px;
  z-index: 1;
}
.room-wrapper .item .room-details span {
  font-size: 15px;
  color: #FFF;
}
.room-wrapper .item:hover .room-details {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.room-wrapper .slick-dots {
  bottom: -60px;
}

.dining {
  margin: 100px 0 0;
}
.dining .container {
  padding-left: 25px;
}
.dining .row {
  flex-direction: row-reverse;
}
.dining .welcome-content {
  padding-right: 55px;
  padding-left: inherit;
}

.meeting-event-wrapper {
  margin: 100px 0 0;
  position: relative;
}
.meeting-event-wrapper::before {
  content: "";
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.meeting-event-wrapper img {
  visibility: hidden;
}
.meeting-event-wrapper figure {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.meeting-event-wrapper .container {
  max-width: 945px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.meeting-event-wrapper .container h2 {
  font-size: 65px;
  color: #FFF;
  text-align: center;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
}
.meeting-event-wrapper .container h2 span {
  font-family: "Ribbon";
}
.meeting-event-wrapper .container p {
  font-size: 24px;
  color: #FFF;
  text-align: center;
  line-height: 30px;
  padding: 30px 0 0;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
}
.meeting-event-wrapper .container .btn-holder {
  justify-content: center;
  margin: 40px 0 0;
}
.meeting-event-wrapper .container .btn-holder .btn-green {
  margin-left: 5px;
}
.meeting-event-wrapper .container .btn-holder .btn-green:last-child {
  color: #000;
  background: #FFF;
}
.meeting-event-wrapper .container .btn-holder .btn-green:last-child:hover {
  background: black;
  color: #FFF;
}

.main-footer {
  padding: 50px 0;
  color: #646464;
}
.main-footer .container {
  justify-content: space-between;
  align-items: center;
}
.main-footer p {
  font-size: 12px;
  color: #646464;
}
.main-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-footer ul li {
  margin-left: 5px;
}
.main-footer ul li img {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.main-footer ul li img:hover {
  opacity: 0.8;
}

/*----------About-----------*/
.inner-template .main-header {
  background: #FFF;
  padding: 10px 0;
  position: static;
}
.inner-template .main-header .container ul li {
  font-size: 14px;
}
.inner-template h3 {
  font-family: "Oswald-Medium";
  font-size: 35px;
  color: #000;
}

.inner-hero {
  position: relative;
}
.inner-hero h1 {
  font-family: "Montserrat-SemiBold";
  font-size: 70px;
  color: #FFF;
  text-align: center;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}
.inner-hero figure {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.inner-hero figure::before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.inner-hero figure img {
  visibility: hidden;
}

.common-wrapper {
  padding: 0 0 100px;
}
.common-wrapper p {
  padding-bottom: 20px;
}

.what-we-do-wrapper {
  margin: 80px 0 0;
  padding-bottom: 0;
}
.what-we-do-wrapper img {
  width: 100%;
}
.what-we-do-wrapper h2 {
  margin-bottom: 20px;
}
.what-we-do-wrapper .row:nth-child(even) {
  flex-direction: row-reverse;
  margin: 80px 0 0;
}

.vision-mission-wrapper {
  background: #f9f9f9;
  margin: 100px 0 0;
  padding: 100px 0;
}
.vision-mission-wrapper .our-mission, .vision-mission-wrapper .our-vision {
  background: #FFF;
  padding: 50px;
  height: 100%;
  box-shadow: 0px 0px 20px 0px rgba(38, 96, 96, 0.2);
  border-top: 5px solid #CDDA36;
}
.vision-mission-wrapper .our-mission h3, .vision-mission-wrapper .our-vision h3 {
  text-align: center;
  margin: 0 0 40px;
}
.vision-mission-wrapper .our-mission a, .vision-mission-wrapper .our-vision a {
  font-family: "Montserrat-Regular";
  color: #000;
  margin-left: auto;
  white-space: nowrap;
}
.vision-mission-wrapper .our-mission a:hover, .vision-mission-wrapper .our-vision a:hover {
  color: #CDDA36;
}
.vision-mission-wrapper .our-mission p, .vision-mission-wrapper .our-vision p {
  padding: 0;
}

.no-reverse {
  flex-direction: inherit !important;
}

#html5lightbox-watermark {
  display: none !important;
}

.html5-next {
  background: url(../images/lightbox-next.png) no-repeat center center;
}

.html5-prev {
  background: url(../images/lightbox-prev.png) no-repeat center center;
}

#html5-close {
  background: url(../images/lightbox-close.png) no-repeat center center !important;
  width: 32px;
  height: 32px;
}

.html5-play {
  background: url(../images/lightbox-play.png) no-repeat center center !important;
  width: 32px;
  height: 32px;
}

.html5-pause {
  background: url(../images/lightbox-pause.png) no-repeat center center !important;
  width: 32px;
  height: 32px;
}

.html5-timer {
  background: #CDDA36 !important;
}

/*----------Gallery-----------*/
.gallery-wrapper {
  padding: 80px 0;
}
.gallery-wrapper.common-wrapper .container {
  padding: 0;
}
.gallery-wrapper.common-wrapper .block-wrapper-two {
  margin-top: 30px;
}
.gallery-wrapper.common-wrapper .block-wrapper-two.container {
  flex-direction: row-reverse;
}
.gallery-wrapper.common-wrapper .block-wrapper-two.container .common-left {
  margin-right: 0;
}
.gallery-wrapper.common-wrapper .block-wrapper-two.container .common-right {
  margin-left: 0;
  margin-right: 30px;
}
.gallery-wrapper.common-wrapper .common-left {
  max-width: 860px;
  width: 100%;
  margin-right: 30px;
  display: flex;
  flex-flow: row nowrap;
  flex-flow: column wrap;
  flex-direction: row;
}
.gallery-wrapper.common-wrapper .common-left .top-img-handle {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}
.gallery-wrapper.common-wrapper .common-left .top-img-handle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.gallery-wrapper.common-wrapper .common-left .top-img-handle:hover::before {
  background: rgba(0, 0, 0, 0);
}
.gallery-wrapper.common-wrapper .common-left .top-img-handle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 95%;
  height: 90%;
  border: 30px solid rgba(255, 255, 255, 0);
  transition: all 0.3s ease-in-out;
}
.gallery-wrapper.common-wrapper .common-left .top-img-handle:hover::after {
  width: 90%;
  height: 80%;
  border: 30px solid rgba(255, 255, 255, 0.2);
}
.gallery-wrapper.common-wrapper .common-left .top-img-handle figure {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: all 0.3s ease-in-out;
}
.gallery-wrapper.common-wrapper .common-left .top-img-handle figure img {
  visibility: hidden;
}
.gallery-wrapper.common-wrapper .common-left .top-img-handle:hover figure {
  background-size: 105%;
}
.gallery-wrapper.common-wrapper .common-left .top-img-handle a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.gallery-wrapper.common-wrapper .common-left .bottom-img-handle {
  max-width: 413px;
  width: 100%;
  margin-right: 30px;
  position: relative;
}
.gallery-wrapper.common-wrapper .common-left .bottom-img-handle figure {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s ease-in-out;
}
.gallery-wrapper.common-wrapper .common-left .bottom-img-handle figure img {
  visibility: hidden;
}
.gallery-wrapper.common-wrapper .common-left .bottom-img-handle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.gallery-wrapper.common-wrapper .common-left .bottom-img-handle:hover::before {
  background: rgba(0, 0, 0, 0);
}
.gallery-wrapper.common-wrapper .common-left .bottom-img-handle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 90%;
  height: 90%;
  border: 30px solid rgba(255, 255, 255, 0);
  transition: all 0.3s ease-in-out;
}
.gallery-wrapper.common-wrapper .common-left .bottom-img-handle:hover::after {
  width: 85%;
  height: 85%;
  border: 30px solid rgba(255, 255, 255, 0.2);
}
.gallery-wrapper.common-wrapper .common-left .bottom-img-handle:hover figure {
  background-size: 105% 105%;
}
.gallery-wrapper.common-wrapper .common-left .bottom-img-handle:last-child {
  margin: 0;
}
.gallery-wrapper.common-wrapper .common-left .bottom-img-handle a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.gallery-wrapper.common-wrapper .common-right {
  max-width: 414px;
  width: 100%;
  position: relative;
}
.gallery-wrapper.common-wrapper .common-right figure {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.gallery-wrapper.common-wrapper .common-right figure img {
  visibility: hidden;
}
.gallery-wrapper.common-wrapper .common-right:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.gallery-wrapper.common-wrapper .common-right:hover::before {
  background: rgba(0, 0, 0, 0);
}
.gallery-wrapper.common-wrapper .common-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 90%;
  height: 95%;
  border: 30px solid rgba(255, 255, 255, 0);
  transition: all 0.3s ease-in-out;
}
.gallery-wrapper.common-wrapper .common-right:hover::after {
  width: 85%;
  height: 90%;
  border: 30px solid rgba(255, 255, 255, 0.2);
}
.gallery-wrapper.common-wrapper .common-right:hover figure {
  background-size: 105% 105%;
}
.gallery-wrapper.common-wrapper .common-right a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.gallery-wrapper.common-wrapper .common-right .bottom-img-handle {
  height: 100%;
}
.gallery-wrapper .pagination {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin: 35px 0 0;
}
.gallery-wrapper .pagination .page-item:last-child .page-link, .gallery-wrapper .pagination .page-item:first-child .page-link {
  border-radius: 0;
}
.gallery-wrapper .pagination .page-item .page-link {
  color: #000;
  border: 1px solid #efefef;
  padding: 6px 14px;
}
.gallery-wrapper .pagination .page-item .page-link:focus {
  box-shadow: none;
}
.gallery-wrapper .pagination .page-item.prev, .gallery-wrapper .pagination .page-item.next {
  display: none;
}
.gallery-wrapper .pagination .page-item.active .page-link {
  background: #CDDA36;
  color: #FFF;
  border: 1px solid #CDDA36;
}

/*------------------contact----------------*/
.contact-wrapper {
  padding: 80px 0 0;
}
.contact-wrapper h2 {
  margin-bottom: 30px;
}
.contact-wrapper fieldset {
  margin: 0 0 15px;
  position: relative;
}
.contact-wrapper fieldset::before {
  content: "";
  background: #000;
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all ease-in-out 0.2s;
}
.contact-wrapper fieldset :focus-within {
  background: #f9f9f9;
  transition: all ease-in-out 0.2s;
}
.contact-wrapper fieldset.active::before {
  background: #CDDA36;
}
.contact-wrapper input[type=text], .contact-wrapper input[type=email], .contact-wrapper input[type=number], .contact-wrapper textarea {
  font-family: "Montserrat-Light";
  font-size: 16px;
  max-width: 650px;
  width: 100%;
  padding: 0 30px;
  height: 64px;
  border: 1px solid #e5e5e5;
}
.contact-wrapper textarea {
  height: 150px;
  padding: 15px 30px;
  display: block;
}
.contact-wrapper .btn-green {
  font-family: "Montserrat-Light";
  text-transform: uppercase;
  border: none;
  display: block;
  margin-left: auto;
  height: 50px;
  padding: 0 40px;
  transition: all ease-in-out 0.2s;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

::placeholder {
  opacity: 1;
  transition: opacity 0.15s;
}

*:focus::-moz-placeholder {
  opacity: 0;
}

*:focus:-ms-input-placeholder {
  opacity: 0;
}

*:focus::placeholder {
  opacity: 0;
}

.contact-right {
  max-width: 415px;
  width: 100%;
}
.contact-right ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-right ul li {
  font-size: 16px;
  color: #000;
}
.contact-right ul li:first-child {
  background: url(../images/icon-Gm.png) no-repeat 0 0;
  padding: 8px 0 40px 60px;
  border-bottom: 1px dashed #efefef;
}
.contact-right ul li:last-child {
  background: url(../images/icon-location.png) no-repeat 0 13px;
  margin-top: 20px;
  padding: 20px 0 0 60px;
}
.contact-right ul li:last-child a {
  color: #000;
}
.contact-right ul li:last-child a:hover {
  color: #CDDA36;
}
.contact-right ul li h4 {
  font-weight: normal;
  font-size: 30px;
}

.map-wrapper {
  margin: 100px 0 0;
}

.rooms-wrapper {
  padding: 80px 0 50px;
}
.rooms-wrapper .container {
  background: #FFF;
  box-shadow: 0px 2px 27px 0px rgba(0, 0, 0, 0.18);
  padding: 28px;
  margin-bottom: 35px;
}
.rooms-wrapper .container p {
  font-family: "Montserrat-Light";
}
.rooms-wrapper .container h2 {
  font-family: "Oswald-Medium";
  font-size: 32px;
  padding: 0 0 30px;
}
.rooms-wrapper .container .benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-flow: column wrap;
  flex-direction: row;
}
.rooms-wrapper .container .benefits li {
  font-family: "Montserrat-Regular";
  margin-right: 15px;
  padding: 0 0 0 20px;
  position: relative;
}
.rooms-wrapper .container .benefits li::before {
  content: "";
  background: #CDDA36;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 8px;
  left: 0;
}
.rooms-wrapper .container .price {
  padding-top: 20px !important;
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.rooms-wrapper .container .price li {
  font-family: "Montserrat-Regular";
  margin: 0 0 5px;
  padding: 0;
}
.rooms-wrapper .container .price li::before {
  display: none;
}
.rooms-wrapper .container .item img {
  width: 100%;
}
.rooms-wrapper .container .slick-dots {
  padding: 0 !important;
  bottom: 10px;
}
.rooms-wrapper .container .slick-dots li {
  margin: 0 5px 0 0 !important;
}
.rooms-wrapper .container .price-tag {
  font-family: "Montserrat-Regular";
  font-size: 20px;
  color: #000;
  margin: 20px 0 0;
}
.rooms-wrapper .container .price-tag strong {
  font-family: "Montserrat-SemiBold";
}
.rooms-wrapper .container .btn-viewmore {
  font-family: "Oswald-Medium";
  text-transform: uppercase;
  font-size: 21px;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #000;
  padding: 0 40px 0 35px;
}
.rooms-wrapper .container .btn-viewmore::after {
  content: "";
  background: url(../images/icon-viewmore.png) no-repeat center center;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all ease-in-out 0.2s;
}
.rooms-wrapper .container .btn-viewmore.active::after {
  transform: rotate(135deg);
}
.rooms-wrapper .container .rooms-left {
  padding: 0;
}
.rooms-wrapper .container .row {
  margin: 0;
}
.rooms-wrapper .container .rooms-right {
  padding-left: 30px;
  padding-bottom: 45px;
  position: relative;
}
.rooms-wrapper .container .rooms-right .btn-green {
  border: none;
  margin: 20px 0 0;
}
.rooms-wrapper .container .accordion-content {
  background-color: #f7f7f7;
  margin-top: 25px;
  padding: 40px 25px 25px;
  position: relative;
  display: none;
}
.rooms-wrapper .container .accordion-content ul {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rooms-wrapper .container .accordion-content ul li {
  padding: 0 0 5px 20px;
  position: relative;
}
.rooms-wrapper .container .accordion-content ul li::before {
  content: "";
  background: #CDDA36;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 8px;
  left: 0;
}
.rooms-wrapper .container .accordion-content h2 {
  padding: 0 0 30px;
}

/*----------Dining-------*/
.dining-wrapper {
  margin: 80px 0 0;
  padding-bottom: 80px;
}
.dining-wrapper img {
  width: 100%;
}
.dining-wrapper h2 {
  margin-bottom: 20px;
}
.dining-wrapper .row {
  margin: 80px 0 0;
}
.dining-wrapper .row:nth-child(even) {
  flex-direction: row-reverse;
}

/*----------Meeting-------*/
.meeting-wrapper {
  margin: 80px 0 0;
  padding-bottom: 80px;
}
.meeting-wrapper img {
  width: 100%;
}
.meeting-wrapper h2 {
  margin-bottom: 20px;
}
.meeting-wrapper .row {
  margin: 80px 0 0;
}
.meeting-wrapper .row:nth-child(even) {
  flex-direction: row-reverse;
}

.content-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-flow: column wrap;
  flex-direction: row;
}
.content-list li {
  font-family: "Montserrat-Regular";
  margin-right: 15px;
  padding: 0 0 0 20px;
  position: relative;
}
.content-list li::before {
  content: "";
  background: #CDDA36;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 8px;
  left: 0;
}

@media screen and (max-width: 1366px) {
  .home-hero .item .container {
    transform: translate(-50%, -49%);
  }
  .home-hero .item .container h1 {
    font-size: 85px;
  }

  .gallery-wrapper.common-wrapper .common-left .bottom-img-handle {
    width: 48%;
    margin-right: 4%;
  }
  .gallery-wrapper.common-wrapper .common-right {
    max-width: 413px;
    width: 48%;
  }

  .row {
    margin: 0;
  }

  .rooms-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .inner-hero h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .main-header {
    padding: 8px 0 10px;
  }
  .main-header img {
    max-width: 85%;
  }
  .main-header .container ul li {
    font-size: 14px;
    margin: 0 9px 0 0;
  }

  .home-hero .item {
    height: 572px;
  }
  .home-hero .item .container h1 {
    font-size: 60px;
    line-height: 60px;
  }
  .home-hero .item .container h1 span {
    font-size: 35px;
  }
  .home-hero .item.video-item .icon-play {
    width: 65px;
    height: 65px;
  }
  .home-hero .item.video-item .icon-pause {
    width: 65px;
    height: 65px;
  }
  .home-hero .slick-dots {
    bottom: -45px;
  }

  .search-wrapper {
    margin: -76px 0 0;
  }

  .what-we-do {
    overflow: hidden;
    margin: 70px 0 0;
  }
  .what-we-do .container .welcome-content {
    padding-left: 25px;
  }
  .what-we-do .container .welcome-content h2 {
    font-size: 40px;
  }
  .what-we-do .container .outer-holder span {
    width: 140px;
    height: 140px;
    left: 0;
    bottom: 0;
    border-width: 10px;
    border-left: 0;
    border-bottom: 0;
  }
  .what-we-do .container .outer-holder span::before {
    font-size: 56px;
    line-height: 50px;
    padding: 18px 0 0;
  }
  .what-we-do .container .outer-holder span::after {
    font-size: 16px;
    line-height: 13px;
    padding: 13px 0 0;
  }

  .reserve-room {
    min-height: 265px;
    margin: 50px 0 0;
  }
  .reserve-room .reserve-room-holder p {
    font-size: 42px;
  }
  .reserve-room .reserve-room-holder p::before {
    width: 38px;
    height: 38px;
    position: absolute;
    top: 14px;
    left: -47px;
    background-size: contain;
  }
  .reserve-room .reserve-room-holder span {
    font-size: 35px;
  }

  .room-wrapper {
    padding: 25px 0 80px;
  }
  .room-wrapper .container h2 {
    font-size: 42px;
    margin-bottom: 40px;
  }
  .room-wrapper .item {
    margin: 0 10px;
  }
  .room-wrapper .item .room-details h3 {
    font-size: 30px;
  }
  .room-wrapper .item:hover::after {
    width: 89%;
    border-width: 14px;
  }

  .dining {
    margin: 50px 0 0;
  }
  .dining .container .welcome-content {
    padding-left: 0;
    padding-right: 25px;
  }

  .meeting-event-wrapper {
    margin-top: 50px;
  }
  .meeting-event-wrapper .container h2 {
    font-size: 42px;
  }
  .meeting-event-wrapper .container p {
    font-size: 18px;
    line-height: 22px;
  }
  .meeting-event-wrapper figure {
    min-height: 450px;
  }

  .search-wrapper .search-wrap {
    padding: 17px 0px 17px !important;
  }
  .search-wrapper .search-wrap ul li:not(:last-child) {
    margin-right: 5px !important;
  }

  .what-we-do-wrapper h2 {
    font-size: 40px;
  }

  .dining-wrapper h2 {
    font-size: 40px;
  }

  .meeting-wrapper h2 {
    font-size: 40px;
  }

  #main-container.inner-template {
    padding: 0;
  }
  #main-container.inner-template h1 {
    font-size: 60px;
  }
  #main-container.inner-template .inner-hero figure {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  #main-container {
    padding: 78px 0 0;
  }
  #main-container::before {
    display: block;
  }

  .preloader .pre-image {
    width: 50px;
    height: 50px;
  }
  .preloader .pre-image .d-flex {
    font-size: 13px;
    left: -15px;
    bottom: -20px;
  }
  .preloader .pre-image .d-flex .single {
    font-size: 13px;
  }

  .main-header {
    background: white;
    padding: 10px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
  }
  .main-header.sticky {
    padding: 10px;
    border-bottom: 5px solid #CDDA36;
  }
  .main-header .main-logo figure {
    height: auto !important;
  }
  .main-header .main-logo img {
    max-width: 70%;
  }
  .main-header .mob-nav {
    z-index: 10;
    display: flex;
  }
  .main-header .container .main-nav {
    padding: 0;
    z-index: 10;
  }
  .main-header .container .main-nav ul {
    flex-direction: column;
    width: 100%;
    display: none;
    background: #CDDA36;
    position: absolute;
    top: 83px;
    left: 0;
    width: 100%;
  }
  .main-header .container .main-nav ul li {
    margin: 0;
  }
  .main-header .container .main-nav ul li a {
    color: #FFF;
    padding: 8px 20px;
    display: block;
  }
  .main-header .container .main-nav ul li a::after {
    display: none;
  }
  .main-header .container .main-nav ul li a:hover {
    color: #000;
    background: rgba(255, 255, 255, 0.6);
  }
  .main-header .container .main-nav ul li:not(:last-child) {
    border-bottom: 1px solid #efefef;
  }
  .main-header .container .main-nav ul li.active a {
    color: #000;
    background: rgba(255, 255, 255, 0.6);
  }
  .main-header .container .main-nav .btn-green {
    font-size: 14px;
    padding: 6px 16px;
    position: absolute;
    top: 23px;
    right: 65px;
  }

  .home-hero .item {
    height: 300px;
  }
  .home-hero .item .container {
    transform: translate(-50%, -48%);
  }
  .home-hero .item .container h1 {
    font-size: 60px;
    line-height: 45px;
  }
  .home-hero .slick-dots {
    display: none !important;
  }

  .search-wrapper {
    background: #cdda36;
    margin: 0;
  }
  .search-wrapper .search-wrap::before {
    background-size: 100%;
    width: 75px;
    height: 75px;
    top: -60px;
    right: 0;
    left: 0;
    margin: auto;
  }
  .search-wrapper .search-wrap {
    padding-top: 28px !important;
  }
  .search-wrapper .search-wrap ul li.label-view label {
    text-align: right;
    padding: 0 43px 0 0;
    top: 14px;
    color: #000;
  }
  .search-wrapper .search-wrap ul li span {
    color: #000;
    bottom: 51px;
  }

  .what-we-do .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .what-we-do .container .outer-holder {
    margin-bottom: 30px;
  }
  .what-we-do .container .welcome-content {
    padding-left: 0;
    padding-right: 0;
  }
  .what-we-do .container .welcome-content h2 {
    font-size: 50px;
    width: 100%;
  }
  .what-we-do .container .outer-holder span {
    width: 120px;
    height: 120px;
  }
  .what-we-do .container .outer-holder span::before {
    font-size: 40px;
    padding-top: 12px;
  }
  .what-we-do .container .outer-holder span::after {
    padding: 4px 0 0;
  }

  .room-wrapper {
    padding-top: 11px;
  }
  .room-wrapper .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .room-wrapper .container .btn-green {
    right: 24px;
  }
  .room-wrapper .container h2 {
    margin-bottom: 25px;
  }

  .meeting-event-wrapper .container p {
    padding-left: 12px;
    padding-right: 12px;
  }

  .main-footer {
    padding: 25px;
  }

  .search-wrapper .search-wrap ul {
    flex-flow: column wrap !important;
  }
  .search-wrapper .search-wrap ul li {
    width: 100% !important;
    margin-bottom: 10px !important;
  }
  .search-wrapper .search-wrap ul li:last-child {
    margin-right: 5px;
  }
  .search-wrapper .search-wrap ul li:last-child {
    z-index: 1;
    margin-bottom: 0 !important;
  }
  .search-wrapper .search-wrap ul li select {
    background-position: 97.5% center;
  }
  .search-wrapper .search-wrap .child-plan .plan-view {
    right: 20px !important;
    top: 68px !important;
  }
  .search-wrapper .search-wrap .child-plan .plan-view::after {
    left: 50% !important;
    top: -10px !important;
    transform: rotate(-90deg);
  }
  .search-wrapper .search-wrap .child-plan.active .plan-view {
    top: 60px !important;
  }

  #main-container.inner-template .inner-hero h1 {
    font-size: 55px;
  }
  #main-container.inner-template .inner-hero figure {
    height: 300px;
  }

  .what-we-do-wrapper {
    margin: 30px 0 0;
  }

  .dining-wrapper {
    margin: 30px 0 0;
  }
  .dining-wrapper .row {
    margin: 30px 0 0;
  }

  .meeting-wrapper {
    margin: 30px 0 0;
  }
  .meeting-wrapper .row {
    margin: 30px 0 0;
  }

  .common-wrapper {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 50px;
  }

  .gallery-wrapper {
    padding: 30px 0;
  }
  .gallery-wrapper .container {
    flex-direction: column;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .gallery-wrapper .container .common-left .bottom-img-wrapper {
    flex-direction: column;
  }
  .gallery-wrapper .container .common-left .bottom-img-wrapper figure {
    background-size: 100% 100%;
  }
  .gallery-wrapper .container .common-left .bottom-img-wrapper .bottom-img-handle {
    max-width: 100%;
    margin: 0 0 20px;
  }
  .gallery-wrapper .container .common-left .bottom-img-wrapper .bottom-img-handle:last-child {
    margin-bottom: 0;
  }
  .gallery-wrapper .container .common-right {
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
  }
  .gallery-wrapper .container .common-right figure {
    background-size: 100% 100%;
  }
  .gallery-wrapper.common-wrapper .block-wrapper-two.container {
    flex-direction: column;
  }

  .contact-wrapper {
    padding: 50px 0 0;
  }
  .contact-wrapper input[type=text], .contact-wrapper input[type=email], .contact-wrapper input[type=number], .contact-wrapper textarea {
    max-width: 100%;
  }

  .map-wrapper {
    margin: 60px 0 0;
  }
  .map-wrapper iframe {
    height: 300px;
  }

  .what-we-do-wrapper .row:nth-child(even) {
    margin: 15px 0 0;
  }

  .dinig-wrapper .row:nth-child(even) {
    margin: 15px 0 0;
  }

  .vision-mission-wrapper {
    margin: 0;
    padding: 50px 0;
  }
  .vision-mission-wrapper .our-mission {
    margin-bottom: 20px;
  }
  .vision-mission-wrapper .our-mission, .vision-mission-wrapper .our-vision {
    height: auto;
    padding: 40px 25px;
  }
  .vision-mission-wrapper .our-mission h3, .vision-mission-wrapper .our-vision h3 {
    margin: 0 0 30px;
  }

  .rooms-wrapper {
    padding: 50px 24px 30px;
  }
  .rooms-wrapper .container .row > * {
    padding: 0;
  }
  .rooms-wrapper .container h2 {
    padding: 20px 0;
  }
  .rooms-wrapper .container .rooms-right {
    padding-left: 0;
    padding-bottom: 45px;
  }
  .rooms-wrapper .container .accordion-content h2 {
    padding-top: 0;
  }
  .rooms-wrapper .container .accordion-content .d-flex {
    flex-direction: column;
  }
  .rooms-wrapper .container .accordion-content ul {
    flex: auto;
  }
}
@media screen and (max-width: 576px) {
  .btn-green {
    font-size: 14px;
    padding: 7px 19px;
  }

  .home-hero .item .container h1 {
    font-size: 42px;
    line-height: 35px;
  }
  .home-hero .item .container h1 span {
    font-size: 24px;
  }

  .what-we-do {
    margin-top: 25px;
  }
  .what-we-do figure::after {
    border-width: 14px;
  }
  .what-we-do .container .welcome-content {
    padding-left: 12px;
  }
  .what-we-do .container .welcome-content h2 {
    font-size: 28px;
  }
  .what-we-do .container:hover figure::after {
    border-width: 14px;
  }
  .what-we-do .outer-holder span {
    width: 100px;
    height: 100px;
  }
  .what-we-do .outer-holder span::before {
    font-size: 35px;
    padding-top: 0;
  }
  .what-we-do .outer-holder span::after {
    font-size: 14px;
    padding: 4px 0 0;
  }

  .reserve-room {
    margin-top: 25px;
  }
  .reserve-room .reserve-room-holder span {
    font-size: 25px;
  }
  .reserve-room .reserve-room-holder p {
    font-size: 32px;
  }
  .reserve-room .reserve-room-holder p::before {
    width: 32px;
    height: 32px;
    top: 7px;
    left: -37px;
  }

  .room-wrapper .container h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }
  .room-wrapper .slick-dots {
    bottom: -66px;
  }
  .room-wrapper .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
  }

  .meeting-event-wrapper {
    margin-top: 25px;
  }
  .meeting-event-wrapper figure {
    min-height: 390px;
  }
  .meeting-event-wrapper .container h2 {
    font-size: 28px;
  }
  .meeting-event-wrapper .container p {
    font-size: 16px;
    padding-top: 17px;
  }

  .search-wrapper .search-wrap ul li select {
    background-position: 96% center;
  }

  .main-footer .container {
    flex-direction: column;
    text-align: center;
  }
  .main-footer .container ul {
    margin: 15px 0 0;
  }

  #main-container.inner-template .inner-hero h1 {
    font-size: 35px;
  }

  .what-we-do-wrapper h2 {
    font-size: 28px;
  }

  .dining-wrapper h2 {
    font-size: 28px;
  }

  .meeting-wrapper h2 {
    font-size: 28px;
  }

  .gallery-wrapper.common-wrapper .block-wrapper-two {
    margin-top: 20px;
  }
  .gallery-wrapper.common-wrapper .common-left {
    flex-direction: column;
  }
  .gallery-wrapper.common-wrapper .common-left .top-img-handle {
    height: 300px;
    margin-bottom: 20px;
  }
  .gallery-wrapper.common-wrapper .common-left .top-img-handle figure {
    height: 100%;
    background-size: cover;
  }
  .gallery-wrapper.common-wrapper .common-left .bottom-img-handle {
    margin-right: 0;
    margin-bottom: 20px;
    max-width: 100%;
    width: 100%;
  }

  .vision-mission-wrapper .our-mission h3, .vision-mission-wrapper .our-vision h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .contact-wrapper h2 {
    font-size: 28px;
  }
  .contact-wrapper .contact-right ul li {
    background-size: 12%;
  }
  .contact-wrapper .contact-right ul li:first-child {
    background-position: 0 3px;
    padding-bottom: 30px;
  }
  .contact-wrapper .contact-right ul li:first-child:last-child {
    padding-top: 6px;
  }
  .contact-wrapper input[type=text], .contact-wrapper input[type=email], .contact-wrapper input[type=number] {
    height: 50px;
  }
  .contact-wrapper textarea {
    height: 100px;
  }

  .inner-template h3 {
    font-size: 25px;
  }

  .rooms-wrapper .container {
    padding: 15px;
  }
  .rooms-wrapper .container h2 {
    font-size: 28px;
  }
  .rooms-wrapper .container .accordion-content {
    padding: 30px 15px 25px;
  }
}/*# sourceMappingURL=styles.css.map */