/*======================
   01. Theme Base CSS
=========================*/
html,
body {
  width: 100%;
  height: 100%;
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background: rgb(228, 168, 83);
  background: linear-gradient(0deg, rgb(228, 168, 83) 0%, rgb(170, 132, 83) 40%);
  border-radius: 50px;
}

::-moz-selection {
  color: #ffffff;
  background: #aa8453;
}

::selection {
  color: #ffffff;
  background: #aa8453;
}

::-moz-selection { /* Code for Firefox */
  color: #ffffff;
  background: #aa8453;
}

body {
  position: relative;
  font-family: "Barlow", sans-serif;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  background: #ffffff;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section {
  overflow: hidden;
}

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

.container-fluid {
  padding: 0px;
  height: 100%;
}

p, tr td {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.26px;
  line-height: 26px;
  color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-family: "Gilda Display", serif;
  color: #333333;
  text-transform: capitalize;
  font-size: 28px;
  font-weight: 500;
}

a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  text-decoration: none;
  display: block;
  margin: 0px;
  color: #333333;
  text-transform: uppercase;
}

a:hover {
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
  color: none !important;
}

.moreinfo {
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  margin: 0;
  background: #aa8453;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 15px;
  letter-spacing: 3px;
  display: inline-block;
  border: 1px solid #aa8453;
  transition: all 0.2s ease-in-out;
  z-index: 6;
}

.moreinfo::after {
  position: absolute;
  content: "";
  width: 0;
  background: rgb(255, 255, 255);
  left: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: all 0.2s ease-in-out;
}

.moreinfo:hover {
  color: #333333;
}

.moreinfo:hover::after {
  width: 100%;
  left: 0;
  transition: width 0.3s ease;
}

button {
  cursor: pointer;
}

button:focus {
  outline: none;
  box-shadow: none;
}

section {
  position: relative;
}

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

li {
  display: inline-block;
}

.section-title {
  font-size: 45px;
  font-family: "Gilda Display", serif;
  font-weight: 400;
  color: #222;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.25em;
}

.section-subtitle {
  font-size: 15px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 6px;
  margin-bottom: 5px;
}

.title_border {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 50px;
}

.o_zero {
  opacity: 0;
}

.d_none {
  display: none;
}

.bold_p {
  font-weight: 700;
}

/*=====basce css end here=========*/
/* =====================================
MARGIN TOP
===================================== */
.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-150 {
  margin-top: 150px;
}

/* =====================================
MARGIN RIGHT,LEFT
===================================== */
.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-80 {
  margin-right: 80px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-80 {
  margin-left: 80px;
}

/* =====================================
MARGIN BOTTOM
===================================== */
.mb-0 {
  margin-bottom: 0;
}

.mb-5 {
  margin-bottom: 5;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-150 {
  margin-bottom: 150px;
}

/*===================================== 
PADDING TOP
===================================== */
.pt-0 {
  padding-top: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-260 {
  padding-top: 260px;
}

.pt-300 {
  padding-top: 300px;
}

/* =====================================
PADDING RIGHT
===================================== */
.pr-0 {
  padding-right: 0;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-140 {
  padding-right: 140px;
}

/* =====================================
PADDING BOTTOM
===================================== */
.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-250 {
  padding-bottom: 250px;
}

.pb-300 {
  padding-bottom: 300px;
}

/* =====================================
PADDING LEFT
===================================== */
.pl-0 {
  padding-left: 0;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-150 {
  padding-left: 150px;
}

/* =====================================
1.3. PAGE SECTION PADDING
===================================== */
.ptb-0 {
  padding: 0;
}

.ptb-10 {
  padding: 10px 0;
}

.ptb-20 {
  padding: 20px 0;
}

.ptb-30 {
  padding: 30px 0;
}

.ptb-40 {
  padding: 40px 0;
}

.ptb-50 {
  padding: 50px 0;
}

.ptb-60 {
  padding: 60px 0;
}

.ptb-70 {
  padding: 70px 0;
}

.ptb-80 {
  padding: 80px 0;
}

.ptb-90 {
  padding: 90px 0;
}

.ptb-100 {
  padding: 100px 0;
}

.ptb-110 {
  padding: 110px 0;
}

.ptb-120 {
  padding: 120px 0;
}

.ptb-130 {
  padding: 130px 0;
}

.ptb-140 {
  padding: 140px 0;
}

.ptb-150 {
  padding: 150px 0;
}

.p-100 {
  padding: 100px;
}

/* =====================================
1.4. PAGE SECTION MARGIN
===================================== */
.mtb-0 {
  margin: 0;
}

.mtb-10 {
  margin: 10px 0;
}

.mtb-15 {
  margin: 15px 0;
}

.mtb-20 {
  margin: 20px 0;
}

.mtb-30 {
  margin: 30px 0;
}

.mtb-40 {
  margin: 40px 0;
}

.mtb-50 {
  margin: 50px 0;
}

.mtb-60 {
  margin: 60px 0;
}

.mtb-70 {
  margin: 70px 0;
}

.mtb-80 {
  margin: 80px 0;
}

.mtb-90 {
  margin: 90px 0;
}

.mtb-100 {
  margin: 100px 0;
}

.mtb-110 {
  margin: 110px 0;
}

.mtb-120 {
  margin: 120px 0;
}

.mtb-130 {
  margin: 130px 0;
}

.mtb-140 {
  margin: 140px 0;
}

.mtb-150 {
  margin: 150px 0;
}

.mr-60 {
  margin: 0px 60px 0px 0px;
}

header .menu {
  position: absolute;
  top: 0px;
  z-index: 999;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}
header .menu nav.navbar a.navbar-brand {
  width: 120px;
  margin: 0px;
}
header .menu .navbar-collapse .nav-item a.nav-link {
  color: rgb(255, 255, 255);
  letter-spacing: 3px;
  padding: 5px 10px;
  margin: 0px 5px;
  font-size: 16px;
}
header .menu .navbar-collapse .nav-item a.nav-link:hover, header .menu .navbar-collapse .nav-item a.nav-link.active {
  color: #aa8453;
  transition: all 0.2s ease-in-out;
}
header .menu.navbar-fixed {
  background: #fff;
  padding: 0 0 0 0;
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  transition: transform 0.5s;
  transform: translateY(100px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}
header .menu.navbar-fixed .navbar-collapse .nav-item a.nav-link {
  color: #333333;
}
header .menu.navbar-fixed .navbar-collapse .nav-item a.nav-link:hover, header .menu.navbar-fixed .navbar-collapse .nav-item a.nav-link.active {
  color: #aa8453;
  transition: all 0.2s ease-in-out;
}
header .item {
  height: 100vh;
  position: relative;
}
header .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .item .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  padding-top: 50px;
}
header .item .cover .header-content {
  position: relative;
  overflow: hidden;
  text-align: center;
}
header .item .cover .header-content .star_icon {
  display: block;
  text-align: center;
}
header .item .cover .header-content .star_icon ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .item .cover .header-content .star_icon ul li {
  font-size: 18px;
  margin: 0px 5px;
  display: inline-block;
}
header .item .cover .header-content .star_icon ul li i {
  color: #e4a853;
}
header .item .cover .header-content h1 {
  font-size: 40px;
  font-weight: 400;
  margin: 30px 0px;
  word-spacing: 7px;
  line-height: 70px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgb(255, 255, 255);
}
header .item .cover .header-content h4 {
  font-size: 18px;
  margin-top: 25px;
  letter-spacing: 5px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Barlow Condensed", serif;
  line-height: 24px;
  color: rgb(255, 255, 255);
}
header .item .cover .header-content p {
  font-size: 18px;
  letter-spacing: 2px;
  word-spacing: 3px;
  line-height: 30px;
  color: rgb(255, 255, 255);
}
header .item .cover .header-content .room_button {
  margin-top: 10px;
  display: inline-block;
}
header .item .cover .header-content .room_button a {
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  background: transparent;
  color: rgb(255, 255, 255);
  padding: 14px 30px;
  margin: 0;
  position: relative;
  font-size: 18px;
  letter-spacing: 3px;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease-in-out;
  z-index: 6;
}
header .item .cover .header-content .room_button a::after {
  position: absolute;
  content: "";
  width: 0;
  background: rgb(255, 255, 255);
  left: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: all 0.2s ease-in-out;
}
header .item .cover .header-content .room_button a:hover::after {
  width: 100%;
  left: 0;
  transition: width 0.3s ease;
}
header .item .cover .header-content .room_button a:hover {
  color: #333333;
  transition: all 0.2s ease-in-out;
}
header .banner_slider .owl-item.active h1, header .banner_slider .owl-item.active p, header .banner_slider .owl-item.active h4, header .banner_slider .owl-item.active .star_icon li, header .banner_slider .owl-item.active .room_button {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
header .banner_slider .owl-dots {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%) rotate(90deg);
  right: 5%;
}
header .researvation_area {
  position: absolute;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translate(0, -50%) rotate(-90deg);
  z-index: 50;
}
header .researvation_area .icon_rsrv {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  border: 1px solid #dddddd;
  margin-right: 15px;
  transform: scale(1);
  position: relative;
  -webkit-animation: tel 3s infinite;
          animation: tel 3s infinite;
}
header .researvation_area .icon_rsrv i {
  font-size: 22px;
  color: #dddddd;
  transform: rotate(90deg);
}
@-webkit-keyframes tel {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tel {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
header .researvation_area .detail_rsrv p {
  margin-bottom: 0px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 3px;
}
header .researvation_area .detail_rsrv .telbtn {
  color: #e4a853;
  font-size: 20px;
  letter-spacing: 3px;
}
header .down_icon {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 50px;
  height: 50px;
  text-align: center;
  z-index: 100;
  line-height: 50px;
  -webkit-animation: scrolling 1s infinite;
          animation: scrolling 1s infinite;
}
@-webkit-keyframes scrolling {
  0% {
    bottom: 50px;
  }
  70% {
    bottom: 20px;
  }
  100% {
    bottom: 50px;
  }
}
@keyframes scrolling {
  0% {
    bottom: 50px;
  }
  70% {
    bottom: 20px;
  }
  100% {
    bottom: 50px;
  }
}
header .down_icon a {
  width: 100%;
  height: 100%;
  border: 1px solid #aa8453;
  border-radius: 50%;
}
header .down_icon a i {
  font-size: 20px;
  color: rgb(255, 255, 255);
}
header .impression_banner .item {
  height: auto;
}
header .impression_banner .item img {
  position: absolute;
  width: 100%;
  height: 100%;
}
header .impression_banner .item .cover {
  position: relative;
  display: block;
  padding: 200px 0px 100px;
}
header .impression_banner .item .cover .header-content {
  text-align: left;
}
header .impression_banner .item .cover .header-content .star_icon ul {
  justify-content: flex-start;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #e4a853;
  transition: all 0.2s ease-in-out;
  border: 1px solid #e4a853;
}

.owl-theme .owl-dots .owl-dot span {
  background: transparent;
  width: 12px;
  height: 12px;
  border: 1px solid #dddddd;
  transition: all 0.2s ease-in-out;
}

.icon_wc ul {
  display: flex;
  margin-bottom: 20px;
}
.icon_wc ul li {
  display: inline-block;
  margin: 0px 3px;
}
.icon_wc ul li i {
  font-size: 17px;
  color: #e4a853;
}

.wc_researvation {
  display: inline-flex;
  margin-top: 10px;
  align-items: center;
}
.wc_researvation .icon_rsrv {
  width: 35px;
  height: 35px;
  text-align: center;
  margin-right: 15px;
  line-height: 35px;
}
.wc_researvation .icon_rsrv i {
  font-size: 35px;
  color: #aa8453;
}
.wc_researvation .number_rsrv p, .wc_researvation .number_rsrv h5 {
  margin: 0px;
}
.wc_researvation .number_rsrv h5 {
  color: #aa8453;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1px;
  font-size: 22px;
}

.welcome_section .wc_img {
  display: flex;
  justify-content: space-between;
}
.welcome_section .wc_img .img_inner {
  padding: 0px 15px;
  flex: 1;
  width: 100%;
  height: 320px;
}
.welcome_section .wc_img .img_inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.room_section {
  background: #f8f5f0;
}
.room_section .room_coulmn {
  margin-bottom: 30px;
}
.room_section .room_coulmn.width_coulmn .room_area .room_img {
  height: 350px;
}
.room_section .room_coulmn.width_coulmn .room_area .room_img img {
  width: 100%;
}
.room_section .room_coulmn .room_area {
  position: relative;
  overflow: hidden;
}
.room_section .room_coulmn .room_area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(29, 27, 24, 0.2) 100%);
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
  top: 0;
  left: 0;
  z-index: 5;
}
.room_section .room_coulmn .room_area .room_img {
  height: 480px;
  width: 100%;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
.room_section .room_coulmn .room_area .room_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.room_section .room_coulmn .room_area .room_inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.room_section .room_coulmn .room_area .room_inner .book_link a {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  position: absolute;
  top: 35px;
  right: 10px;
  transform: rotate(-90deg);
  transition: all 0.2s ease-in-out;
}
.room_section .room_coulmn .room_area .room_inner .book_link a:hover {
  background: rgb(255, 255, 255);
  color: #333333;
  transition: all 0.2s ease-in-out;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room {
  position: absolute;
  width: 100%;
  bottom: -65px;
  left: 0;
  padding: 20px;
  transition: all 0.5s ease-in-out;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6194852941) 0%, rgba(29, 27, 24, 0) 100%);
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room p, .room_section .room_coulmn .room_area .room_inner .bottom_room h2, .room_section .room_coulmn .room_area .room_inner .bottom_room i, .room_section .room_coulmn .room_area .room_inner .bottom_room a {
  color: rgb(255, 255, 255);
}
.room_section .room_coulmn .room_area .room_inner .bottom_room .day_price p {
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 3px;
  word-spacing: 2px;
  font-size: 16px;
  margin-bottom: 0px;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room .day_price h2 {
  position: relative;
  font-size: 30px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room .day_price h2::before {
  position: absolute;
  content: "";
  width: 70px;
  bottom: 0px;
  left: 0;
  height: 1px;
  background: #dddddd;
  transition: all 0.5s ease-in-out;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room .room_details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room .room_details .icon_room li {
  padding-right: 10px;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room .room_details .icon_room li i {
  font-size: 18px;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room .room_details .detail_inner a {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room .room_details .detail_inner a i {
  margin-left: 0px;
  transition: all 0.2s ease-in-out;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room .room_details .detail_inner a:hover {
  color: #aa8453;
  transition: all 0.2s ease-in-out;
}
.room_section .room_coulmn .room_area .room_inner .bottom_room .room_details .detail_inner a:hover i {
  color: #aa8453;
  transition: all 0.2s ease-in-out;
  margin-left: 5px;
}
.room_section .room_coulmn .room_area:hover::before {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.room_section .room_coulmn .room_area:hover .room_inner .bottom_room {
  bottom: 0px;
  transition: all 0.5s ease-in-out;
}
.room_section .room_coulmn .room_area:hover .room_inner .bottom_room::before {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.room_section .room_coulmn .room_area:hover .room_inner .bottom_room .day_price h2::before {
  width: 100%;
  transition: all 1s ease-in-out;
}
.room_section .room_coulmn .room_area:hover .room_img {
  transform: scale(1.08);
  transition: all 1s ease-in-out;
}

.services .service_card {
  border: 1px solid #dddddd;
  padding: 30px 20px;
  position: relative;
  background: rgb(255, 255, 255);
  margin-bottom: 30px;
  transition: all 0.2s ease-in-out;
  z-index: 5;
}
.services .service_card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #f8f5f0;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transition: all 0.5s ease-in-out;
  z-index: -5;
}
.services .service_card:hover {
  border-color: #aa8453;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  transition: all 0.5s ease-in-out;
  transition-delay: 0.5s;
}
.services .service_card:hover::before {
  transform: scaleX(1);
  transition: all 0.7s ease-in-out;
}
.services .service_card .big_icon {
  position: absolute;
  font-size: 120px;
  opacity: 0.07;
  color: #aa8453;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.services .service_card .icon_service {
  margin-bottom: 20px;
}
.services .service_card .icon_service i {
  font-size: 35px;
  color: #aa8453;
}
.services .service_card .service_detail h3 {
  font-size: 24px;
}
.services .service_card .service_detail p {
  margin: 0px;
}

.testimonial {
  background: url("../images/room1.webp");
  background-size: cover;
  position: relative;
  background-position: 0% 60%;
  background-attachment: fixed;
}
.testimonial::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.testimonial .title_section .section-subtitle {
  font-size: 15px;
  color: rgb(255, 255, 255);
}
.testimonial .title_section .section-title {
  font-size: 28px;
  color: rgb(255, 255, 255);
  padding-bottom: 15px;
  margin-bottom: 10px;
  position: relative;
}
.testimonial .title_section .section-title::before {
  width: 70px;
  height: 1px;
  background: #dddddd;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}
.testimonial .testimonial_slider h4, .testimonial .testimonial_slider p {
  color: rgb(255, 255, 255);
}
.testimonial .testimonial_slider .review {
  margin-bottom: 20px;
}
.testimonial .testimonial_slider .icon_wc ul {
  margin-bottom: 5px;
}
.testimonial .testimonial_slider .icon_wc ul li i {
  font-size: 12px;
}
.testimonial .testimonial_slider .client_detail {
  display: inline-flex;
  align-items: center;
}
.testimonial .testimonial_slider .client_detail .client_profile {
  width: 77px;
  height: 77px;
  overflow: hidden;
  margin-right: 15px;
  border-radius: 50%;
}
.testimonial .testimonial_slider .client_detail .client_profile img {
  width: 100%;
  border-radius: 50%;
}
.testimonial .testimonial_slider .client_detail .client_info h4 {
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0px;
}
.testimonial .testimonial_slider .client_detail .client_info p {
  margin: 0px;
  font-size: 14px;
}
.testimonial .testimonial_slider .client_detail .quote {
  position: absolute;
  bottom: 0;
  right: 0;
}
.testimonial .testimonial_slider .client_detail .quote i {
  font-size: 70px;
  color: #aa8453;
  opacity: 0.3;
}

.information {
  background: #f8f5f0;
}
.information .info_img {
  height: 420px;
  overflow: hidden;
}
.information .info_img .info_slider .info_item {
  height: 420px;
  width: 100%;
  overflow: hidden;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
.information .info_img .info_slider .info_item:hover {
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}
.information .info_img .info_slider .info_item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.information .info_img .info_slider .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.information .info_area {
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  background: rgb(255, 255, 255);
}
.information .info_area .section-title {
  font-size: 34px;
  margin-bottom: 10px;
}
.information .info_area .moreinfo {
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  margin: 0;
  background: #aa8453;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 15px;
  letter-spacing: 3px;
  display: inline-block;
  border: 1px solid #aa8453;
  transition: all 0.2s ease-in-out;
  z-index: 6;
}
.information .info_area .moreinfo::after {
  position: absolute;
  content: "";
  width: 0;
  background: rgb(255, 255, 255);
  left: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: all 0.2s ease-in-out;
}
.information .info_area .moreinfo:hover {
  color: #333333;
}
.information .info_area .moreinfo:hover::after {
  width: 100%;
  left: 0;
  transition: width 0.3s ease;
}

.researve {
  background: url("../images/room7.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}
.researve::before {
  position: absolute;
  content: "";
  background: rgb(0, 0, 0);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.researve .reserve_area {
  position: relative;
  z-index: 10;
  text-align: center;
}
.researve .reserve_area .section-subtitle, .researve .reserve_area h2, .researve .reserve_area h5, .researve .reserve_area p, .researve .reserve_area a {
  color: rgb(255, 255, 255);
}
.researve .reserve_area h2.section-title {
  font-size: 32px;
}
.researve .reserve_area .icon_wc ul {
  justify-content: center;
}
.researve .reserve_area .number_rsrv {
  text-align: left;
}

footer {
  background: #aa8453;
  color: rgb(255, 255, 255);
}
footer h3, footer p, footer a, footer li {
  color: rgb(255, 255, 255);
}
footer h3 {
  letter-spacing: 2px;
}
footer .exploremenu li {
  display: block;
}
footer .exploremenu li a {
  display: inline-block;
  letter-spacing: 3px;
  padding: 5px 0px;
  transition: all 0.2s ease-in-out;
}
footer .exploremenu li a:hover {
  color: rgb(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
footer .dropdown-toggle {
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  padding: 8px 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
footer .dropdown-toggle i {
  margin-left: 6px;
}
footer .dropdown-toggle:hover {
  color: rgb(255, 255, 255);
}
footer .dropdown-toggle:focus {
  box-shadow: none;
}
footer .dropdown-toggle::after {
  display: none;
}
footer .dropdown-menu li {
  display: block;
}
footer .dropdown-menu li a {
  letter-spacing: 2px;
}
footer .wc_researvation {
  margin-bottom: 20px;
}
footer .wc_researvation .icon_rsrv i, footer .wc_researvation .number_rsrv h5 {
  color: rgb(255, 255, 255);
}
footer a.emaillink {
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-decoration: underline;
}
footer a.emaillink:hover {
  color: rgb(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
footer .social_link li a {
  font-size: 20px;
  margin-right: 10px;
  transition: all 0.2s ease-in-out;
}
footer .social_link li a:hover {
  color: rgb(0, 0, 0);
  transition: all 0.2s ease-in-out;
}

.scrolltop p {
  bottom: 20px;
  margin: 0px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  display: none;
  font-size: 18px;
  height: 45px;
  line-height: 42px;
  position: fixed;
  right: 20px;
  width: 45px;
  text-align: center;
  z-index: 500;
  border-radius: 50%;
  border: 1px solid #e4a853;
}
.preloader {
  width: 100%;
  display: block;
}

#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  text-align: center;
  background: #f8f5f0;
}

.loader {
  display: inline-block;
  width: 250px;
  height: 250px;
  position: fixed;
  z-index: 9999;
  border: 4px solid #aa8453;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
}
.loader.loader_1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.loader.loader_2 {
  -webkit-animation-delay: 0.3s;
  opacity: 0;
  animation-delay: 0.3s;
}
.loader.loader_3 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  opacity: 0;
}

@-webkit-keyframes loader {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    -webkit-transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
}

@keyframes loader {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    -webkit-transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
}
.appartment_section h5 {
  margin-bottom: 20px;
}
.appartment_section ul li {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.appartment_section ul li i {
  font-size: 20px;
  color: #aa8453;
  margin-right: 10px;
}
.appartment_section .appartment_list {
  margin-left: 70px;
}
.appartment_section .appartment_list ul li {
  padding: 5px 0px;
}

.impression_section .impression_area {
  position: relative;
  margin: 50px 0px;
}
.impression_section .impression_area .impression_img {
  width: 66%;
  margin-left: auto;
  position: relative;
  height: 450px;
  overflow: hidden;
}
.impression_section .impression_area .impression_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
.impression_section .impression_area .impression_img:hover img {
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}
.impression_section .impression_area .section-subtitle {
  letter-spacing: 2px;
}
.impression_section .impression_area .section-subtitle span {
  color: #aa8453;
  font-size: 20px;
}
.impression_section .impression_area .section-title {
  font-size: 34px;
}
.impression_section .impression_area .impression_detail {
  width: 50%;
  border: 1px solid #aa8453;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  background: rgb(255, 255, 255);
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.impression_section .impression_area .impression_detail ul li {
  padding: 5px 0px;
}
.impression_section .impression_area .impression_detail ul li i {
  font-size: 18px;
  color: #aa8453;
  margin-right: 10px;
}
.impression_section .impression_area .impression_detail .booking_imp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding: 20px 0px 0px;
  border-top: 1px solid #dddddd;
}
.impression_section .impression_area .impression_detail .booking_imp .detail {
  font-size: 17px;
  letter-spacing: 2px;
  color: #aa8453;
}
.impression_section .impression_area .impression_detail .booking_imp .detail i {
  margin-left: 5px;
}
.impression_section .impression_area .impression_detail .booking_imp .detail:hover {
  color: #aa8453;
}
.impression_section .impression_area.left_img .impression_img {
  margin-left: unset;
  margin-right: auto;
}
.impression_section .impression_area.left_img .impression_detail {
  right: 0;
}

.book_section .book_area .wc_researvation {
  display: flex;
  margin-top: 30px;
}
.book_section .book_img {
  margin-left: 50px;
}/*# sourceMappingURL=style.css.map */