@charset "UTF-8";
@font-face {
  font-family: Hexabit-thin;
  font-style: normal;
  src: url(../font/default/Hexabit-Thin.woff2)  format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Hexabit-light;
  font-style: normal;
  src: url(../font/default/Hexabit-Light.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Hexabit-book;
  font-style: normal;
  src: url(../font/default/Hexabit-Book.woff2)  format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Hexabit-bold;
  font-style: normal;
  src: url(../font/default/Hexabit-Bold.woff2)  format("woff2");
  font-display: swap;
}
@font-face {
  font-family: acfifindrel;
  font-style: normal;
  src: url(../font/acfifindrel/AC-Fifindrel.ttf)  format("truetype");
  font-display: swap;
}

/* FontAwesome Font Display Optimization */
@font-face {
  font-family: "Font Awesome 6 Brands";
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/webfonts/fa-brands-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/webfonts/fa-solid-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/*---------------------------
  # RESET CSS
---------------------------*/
*,
::after,
::before {
  box-sizing: border-box;
}
body,
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Hexabit-book, sans-serif;
  line-height: 1.6;
  letter-spacing: 1px;
  overflow-x: hidden;
}
main {
  position: relative;
  overflow: hidden;
}
header {
  z-index: 999;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
p {
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
}
figure {
  margin: 0;
}
.project_item {
  height: 700px;
  width: 25%;
}
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out;
  -o-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}
a:hover {text-decoration: none;}
.tab-content>.active{width:100%;}
.visually-hidden {
  color: #fff;
  background-color: #000;
}
/*---------------------------
  # Global CSS - General
---------------------------*/
/** BROWSER STYLING **/
::selection {
  text-shadow: none;
  background: #e3dbce;
  color: #90663d;
}
-moz-::selection {
  text-shadow: none;
  background: #e3dbce;
  color: #90663d;
}
/** KEYFRAME ANIMATIONS **/
@keyframes blinker {
  50% {
    background: #0e9fd6;
  }
}
/* ** PRELOADER ** */
#loader-wrapper{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1000;}
#loader{display:block;position:relative;left:50%;top:50%;width:150px;height:150px;margin:-75px 0 0 -75px;border-radius:50%;border:3px solid transparent;border-top-color:#d8b68a;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite;z-index:1001;}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #90663d;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f3d0a6;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: rgb(226, 226, 226);
  z-index: 1000;
  transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}
.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}
.no-js #loader-wrapper {display: none;}
.no-js h1 {color: #222222;}
/* ** END PRELOADER ** */

/*---------------------------
  # HOTELS EFFECT ANIMATION ON LOAD
---------------------------*/
body {
  -ms-animation-delay:8s;
  animation-delay:8s;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  -webkit-animation:imageAnimation 3s linear 0s;
  -moz-animation:imageAnimation 3s linear 0s;
  -o-animation:imageAnimation 3s linear 0s;
  animation:imageAnimation 3s linear 0s;
}
@-o-keyframes imageAnimation{
  0%{opacity:0;-o-animation-timing-function:ease-out}
  100%{opacity:1;-o-animation-timing-function:ease-in}
}
@keyframes imageAnimation{
  0%{opacity:0;animation-timing-function:ease-out}
  100%{opacity:1;animation-timing-function:ease-in}
}

/*---------------------------
  # JOOMLA MESSAGE
---------------------------*/
.joom_message {
  position: absolute;
  top: 160px;
  left: 0;
  right: 0;
  z-index: 100;
}
.alert-warning {
  color: #000;
  background-color: #fac51c;
  border-color: #5a9e49;
}
.alert-heading {font-size: 20px;}
.alert-message {font-size: 14px;}
.close {cursor: pointer;}

/*---------------------------
  # To Top Button
---------------------------*/
#myBtn {
  position: fixed;
  display: none;
  bottom: 30px;
  right: 30px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1em;
  background: #90663d;
  color: #fff;
  width: 35px;
  height: 40px;
  border-radius: 4px;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
  z-index: 999;
}
#myBtn:hover {
  background-color: #d8b68a;
  color: #90663d;
}
.to-top-btn {display: flex!important;}

/*---------------------------
  # BREADCRUMB
---------------------------*/
.breadcrumb {
  background-color: unset;
  width: 100%;
}
.breadcrumb-item + .breadcrumb-item::before {color: #d8b68a;}
.breadcrumb .pathway {color: #90663d;}

/*---------------------------
  # HOME - TOP BAR
---------------------------*/
.top-bar-wrapper {
  background-color: #6b4c35;
  padding: .25rem 0;
}
.top-bar-inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  flex: 0 1 auto;
}
.social-wrap a {
  background-color: rgba(255, 255, 255, 0.9);
  color: #806553;
  width: 28px;
  height: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 1.1em;
}
.social-wrap em {
  margin-left: 1px;
  margin-top: 1px;
}
.social-wrap a:hover {
  background-color: #a1826d;
  color: #fff;
}
.lang-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-number-a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: Hexabit-Bold;
  color: #fff;
  border-radius: 6px;
  padding: .25rem .5rem;
  background-color: rgba(0, 0, 0, 0.3);
}
.golden_dot {
  background-color: #8f653c;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: inline-flex;
  margin: 0 .25rem;
  transition: all .4s ease-in-out;
}
.phone-number-a:hover {
  background-color: rgba(144, 103, 61, 0.8);
  color: #fff;
}
.phone-number-a:hover .golden_dot {
  background-color: #d8b68a;
}
div.mod-languages a {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  padding: .25rem .5rem;
  border-radius: 4px;
}
/*---------------------------
  # HOME - MAIN MENU
---------------------------*/
#mainMenu {

}
.navbrand-wrap {
  position: relative;
  display: inline-flex;
  flex-basis: 20%;
  transition: all .4s ease-in-out;
}
#mainMenu .menu {
  display: inline-flex;
  flex-basis: 25%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mainMenu .menu:nth-child(1) {
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}
#mainMenu .menu:nth-child(3) {
  justify-content: flex-start;
  align-items: center;
  margin-right: auto;
}
.navbar-brand {
  margin: 0;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-basis: 20%;
  /* transform: translate(0, -12%); */
  transition:all .4s ease-in-out;
}
.navbar-brand img {
  width: 100%;
  /* max-height: 250px;
  max-width: 250px; */
  object-fit: scale-down;
  min-width: 100px;
  min-height: 100px;
  transition:all .4s ease-in-out;
}
.collapse {
  height: auto;
}
#mainMenu .nav-link {
  color: #633e1a;
  text-transform: uppercase;
  font-size: 1rem;
  border-radius: 4px;
}
#mainMenu .nav-link::first-letter {
  font-size: 1.2rem;
}
#mainMenu .nav-link:hover {
  background-color: #633e1a;
  color: #d8b68a;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #90663d;
}

.item-172 a,
.item-173 a  {
  background-color: #f4eade;
  color: #633e1a;
  font-family: Hexabit-Bold, sans-serif;
  text-align: center;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #633e1a;
  background-color: #f4eade;
}

/*---------------------------
  # HOME - Carousel
---------------------------*/
#carouselMain {
  /* margin-top: 8.5rem; */
  position: relative;
  height: 80vh;
}
.carousel-inner {
  height: 100%;
}
.carousel-item {
  height: 100%;
}
.carousel-item > img {
  width: 100%;
  height: 98%;
  max-width: 60%;
  margin-left: auto;
  margin-right: 10%;
  object-fit: cover;
}
.carousel-item::before {
  content: '';
  background-color: #f3d0a6;
  position: absolute;
  top: 2rem;
  right: 8rem;
  width: 150px;
  height: 100%;
  display: block;
  z-index: -1;
}
.carousel-control-next, .carousel-control-prev {
  width: 5%;
}
.carousel-caption {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 60%;
  bottom: 5rem;
  text-align: center;
  padding: 0 7rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  z-index: 999;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.carousel-caption > img {
  max-width: 60%;
}
.carousel-caption > p {
  text-align: center;
  text-align-last: center;
  line-height: 2;
}

/** BOOKING FORM SEARCH **/
.booking-field-wrap {
  position: relative;
}
.booking-input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.booking-input-with-icon input {
  padding-right: 40px !important;
}
.booking-input-with-icon::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
}
.booking-input-with-icon:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
}

/*---------------------------
  # HOME - ROOMS/OWL
---------------------------*/
.owl-carousel-wrapper {
  position: relative;
  margin-top: 4rem;
}
.c-owl-next, .c-owl-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 998;
  cursor: pointer;
  padding: 0 .5rem;
}
.c-owl-next em, .c-owl-prev em {
  font-size: 2rem;
  background-color: #633e1a;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .4s ease-in-out;
}
.c-owl-next {
  right: 0;
}
.c-owl-prev {
  left: 0;
}
.c-owl-next:hover em,
.c-owl-prev:hover em {
  background-color: #d8b68a;
  color: #633e1a;
}
.owl-item-wrap {
  transition: all .4s ease-in-out;
}
.owl-item-wrap:hover {
  opacity: .9;
}
.owl-item-wrap .newsflash-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.owl-newsflash-title-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: inline-flex;
  justify-content: stretch;
  align-items: flex-end;
  width: 100%;
  max-width: 70%;
}
.owl-newsflash-title {
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 4px solid #987a58;
  width: 100%;
  padding: 1rem;
  font-size: 1.25rem;
  margin-bottom: 4rem;
  text-align: right;
  transition: all .4s ease-in-out;
}
.owl-newsflash-link:hover {
  color: #fff;

}
.owl-newsflash-link:hover .owl-newsflash-title {
  background-color: #633e1acc;
}

/*---------------------------
  # HOME - WHO WE ARE
---------------------------*/
.whoweare-wrap {
  padding: 8rem 0;
}
.whoweare-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.whoweare-logo-wrap img {
  width: 100%;
  /* max-width: 250px; */
  mix-blend-mode: multiply;
}
.whoweare-logo-wrap::before {
  content: '';
  background-image: url(../../images/blob.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.whoweare-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.whoweare-text-wrap h2 {
  color: #fff;
  background-color: #a88961;
  font-family: Hexabit-Light;
  font-size: 1.5rem;
  display: inline-flex;
  padding: .5rem 1rem;
  margin-bottom: 1rem;
}
.whoweare-text-wrap p {
  margin-left: 1rem;
  text-align: left;
  margin-bottom: 1rem;
  line-height: 2;
}
.signature {
  position: relative;
  color: #a2764b;
  font-family: acfifindrel;
  font-size: 2.5rem;
  width: 100%;
}
.signature > p {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transform: rotate(-10deg);
  left: 0;
  text-align: right;
  line-height: 1;
}
/*------------------------------
  # HOME -Wellness - SPA
-------------------------------*/
.wellness-spa-wrap {
  margin-top: 5rem;
}
.wellness-spa-text-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wellness-spa-text-wrap h2 {
  color: #af0000;
  font-family: acfifindrel;
  font-size: 5rem;
}
.wellness-spa-text-wrap p {
  font-family: Hexabit-Book, sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.book-now-btn {
  background-color: #5a3d23;
  color: #fff;
  font-family: Hexabit-Bold, sans-serif;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex;
  padding: .5rem 2rem;
}
.book-now-btn:hover {
  background-color: #d8b68a;
  color: #5a3d23;
}

.wellness-spa-img-wrap {
  position: relative;
  height: 500px;
}
.wellness-spa-img-wrap > img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wellness-spa-img-wrap-2 {
  width: 350px;
  height: 350px;

  position: absolute;
  right: -2rem;
  bottom: -2rem;
}
.wellness-spa-img-wrap-2 img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}



/*------------------------------
  # HOME - AGION OROS/PARALLAX
-------------------------------*/
.bg-parallax-wrap {
  position: relative;
  background-image: url(../../images/parallax.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 35%;
  height: 80vh;
  border-radius: 6px;
  overflow: hidden;
}
.bg-parallax-wrap::before {
  /* content: '';
  background-image: url(../../images/layer-vignete.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%; */
}
.parallax-text-wrap {
  position: relative;
  z-index: 2;
  color: #fff;
  height: 100%;
  width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-left: auto;
  padding-right: 8rem;
  background: linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%);
}
.parallax-text-wrap h2 {
  font-family: acfifindrel;
  font-size: 6rem;
  margin-bottom: .5rem;
}
.parallax-text-wrap > p:nth-child(2) {
  font-family: Hexabit-Bold;
  font-size: .97rem;
  margin-bottom: 2rem;
}
.parallax-text-wrap p {
  margin-bottom: 1rem;
  line-height: 2;
}
.bg-loutra-pozar {
  background-image: url(../../images/loutra-pozar.webp);
}

/*---------------------------
  # HOME - BLOG NEWS
---------------------------*/
.blog-newsflash-link {

}
.newsflash-title > h3 {
  transition: all .4s ease-in-out;
}
.blog-newsflash-link:hover .newsflash-title > h3 {
  background-color: #633e1acc;
  color: #fff;
}
.blog-newsflash-link:hover {
  color: #000;
}
.blog-title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
  margin-bottom: 2rem;
}
.page-title {
  color: #fff;
  background-color: #90663d;
  font-family: Hexabit-Light;
  font-size: 1.8rem;
  display: inline-flex;
  padding: .5rem 5rem;
}
.blog-item-wrap {
  position: relative;
}
.blog-item-wrap .newsflash-title {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.blog-item-wrap .newsflash-title .newsflash-title-inner {
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 4px solid #987a58;
  width: 100%;
  padding: 1rem;
  font-size: 1.25rem;
  margin-bottom: 4rem;
}
.blog-item-wrap .newsflash-image {
  position: relative;
}
.blog-item-wrap .newsflash-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/*--------------------------------------------
  # HOME - BOOKING/TRIPADVISOR/TRIVAGO LOGOs
---------------------------------------------*/
.booking-tripadvisor-trivago-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  column-gap: 2rem;
  row-gap: 2rem;
  padding: 4rem 0;
  flex-wrap: wrap;
}

/*---------------------------
  # HOME - FOOTER
---------------------------*/
.footer-wrap {
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.footer-logo {
  width: 100%;
  max-width: 450px;
  margin: auto;
  margin-bottom: 1rem;
  mix-blend-mode: multiply;
}
.footer-phone {
  color: #5a3d23;
  font-family: Hexabit-Bold;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-phone:hover {
  color: #633e1a;
}
.pink_dot {
  background-color: #f3d0a6;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: inline-flex;
  margin: 0 .5rem;
  transition: all .4s ease-in-out;
}
.footer-email {
  color: #5a3d23;
  text-transform: uppercase;
  font-family: Hexabit-Bold;
  font-size: .9rem;
  margin: 1rem 0;
}
.footer-email:hover {
  color: #633e1a;
}
.footer-social-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  row-gap: 1rem;
  padding: .5rem 0;
}
.footer-social-wrap a {
  background-color: #d3a372;
  color: #fff;
  width: 28px;
  height: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.footer-social-wrap a:hover {
  background-color: #633e1a;
  color: #fff;
}
.footer-social-wrap em {
  margin-left: 1px;
}
.footer-wrap-menu .menu {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: .5rem 0;
}
.footer-wrap-menu .menu a {
  color: #333;
}
.footer-wrap-menu .menu a:hover {
  color: #d8b68a;
}
.eot-number {
  text-align: center;
  color: #5a5a5a;
}

.tutorial_link {
  display: none;
}

/*---------------------------
  # HOME - Copyright
---------------------------*/
.copyright-wrap {
  text-align: center;
}
.copyright-wrap,
.copyright-wrap a {
  background: #fff;
  color: #003b76;
}
.copyright-wrap {
  padding-left: 1rem;
}
.copyright-bank-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.web-signature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95em;
  padding: .25rem 0;
  color: #000;
}
.web-signature a {
  color: #000;
}
.web-signature a:hover {
  color: #d8b68a;
}
/*---------------------------
  # HOME - BOOKING FORM
---------------------------*/
.seperator-line-vertical {
  background-color: #ddd;
  padding: 1px;
  height: 100px;
  display: flex;
  margin: auto;
}
.booking-form-mega-wrap {
  position: relative;
  background: #fff;
  padding: 4rem 0;
}
#booking-form {
  background: #fff;
  margin: auto;
  margin-top: -6rem;
  box-shadow: 1px 1px 20px #999;
  position: relative;
  z-index: 100;
  border-radius: 6px;
  overflow: hidden;
  max-width: 80%;
}
#booking-form label {
  font-family: Hexabit-Book;
  font-size: .8rem;
}
#booking-form > form {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  padding: 0;
}
#booking-form > form > .booking-arrival-wrap,
#booking-form > form > .booking-departure-wrap,
#booking-form > form > .booking-rooms-wrap,
#booking-form > form > .booking-adults-wrap,
#booking-form > form > .booking-childs-wrap,
#booking-form > form > .booking-babies-wrap,
#booking-form > form > .booking-check-wrap {
  display: flex;
  flex-basis: 20%;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 1rem;
}
#booking-form > form > .booking-check-wrap {
  background-color: #ded1c0;
  justify-content: center;
  align-items: center;
}
.booking-arrival-wrap > input {
  border: 0;
  border-radius: 0;
  font-size: 1rem;
}
.booking-departure-wrap > select,
.booking-rooms-wrap > select,
.booking-adults-wrap > select,
.booking-childs-wrap > select,
.booking-babies-wrap > select {
  border: 0;
  border-radius: 0;
  font-size: 1.25rem;
}
.booking-departure-wrap option::first-letter,
.booking-rooms-wrap option::first-letter,
.booking-adults-wrap option::first-letter,
.booking-childs-wrap option::first-letter,
.booking-babies-wrap option::first-letter {
  font-family: Hexabit-Bold;
  font-size: 2rem;
}
.booking-check-wrap > .btn-primary {
  font-family: Hexabit-Bold;
  background: #b6996b;
  border-radius: 5px;
  border: 0;
  color: #fff;
  font-size: .95rem;
  padding: 1rem;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.booking-check-wrap > .btn-primary:hover {
  color: #fff;
  background-color: #90663d;
  border-color: #d8b68a;
}

/*---------------------------
  # MODERN BOOKING FORM
---------------------------*/
.modern-booking-form-wrap {
  background: linear-gradient(135deg, #f8f4f0 0%, #ede5d8 100%);
  margin: auto;
  /* margin-top: -6rem; */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
  border-radius: 12px;
  overflow: hidden;
  max-width: 90%;
  padding: 2rem;
  border: 1px solid rgba(216, 182, 138, 0.3);
}

.modern-booking-form-wrap form {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr 1fr 1.5fr;
  gap: 1.25rem;
  align-items: end;
}

.booking-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-label {
  font-family: Hexabit-Bold, sans-serif;
  font-size: 0.85rem;
  color: #6b4423;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

.booking-input,
.booking-select {
  border: 2px solid #e8ddd0;
  border-radius: 8px;
  padding: 1rem 0.75rem;
  font-size: 0.95rem;
  font-family: Hexabit-book, sans-serif;
  background: #fff;
  transition: all 0.3s ease;
  color: #333;
  width: 100%;
  height: 50px;
  line-height: 1.2;
  box-sizing: border-box;
}

/* Enhanced date input styling */
.booking-input[type="date"] {
  position: relative;
  cursor: pointer;
  padding: 1rem 0.75rem;
  height: 50px;
  line-height: 1.2;
  box-sizing: border-box;
}

/* Make the entire date input clickable */
.booking-input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Firefox date input support */
.booking-input[type="date"]::-moz-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Enhanced visual feedback for date inputs */
.booking-input[type="date"]:hover {
  border-color: #d8b68a;
  background-color: #fefcfa;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(216, 182, 138, 0.15);
}

.booking-input[type="date"]:focus {
  border-color: #d8b68a;
  box-shadow: 0 0 0 3px rgba(216, 182, 138, 0.2);
  background-color: #fff;
  transform: translateY(-1px);
}

/* Date helper text */
.date-helper-text {
  display: none;
}

.booking-input:focus,
.booking-select:focus {
  outline: none;
  border-color: #d8b68a;
  box-shadow: 0 0 0 3px rgba(216, 182, 138, 0.2), 0 2px 8px rgba(144, 102, 61, 0.1);
  background-color: #fff;
  transform: translateY(-1px);
}

.booking-input:hover,
.booking-select:hover {
  border-color: #d8b68a;
  background-color: #fefcfa;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(216, 182, 138, 0.15);
}

.booking-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b4423' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  cursor: pointer;
  padding-right: 2.5rem;
}

.booking-select:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8b68a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.booking-submit-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search-hotels {
  font-family: Hexabit-Bold, sans-serif;
  background: linear-gradient(135deg, #b6996b 0%, #90663d 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(144, 102, 61, 0.3);
  width: 100%;
  height: fit-content;
}

.btn-search-hotels:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(144, 102, 61, 0.4);
  background: linear-gradient(135deg, #90663d 0%, #6b4423 100%);
}

.btn-search-hotels:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(144, 102, 61, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .modern-booking-form-wrap form {
    grid-template-columns: 2fr 2fr 1fr 1fr 2fr;
    gap: 1rem;
  }

  .modern-booking-form-wrap form .booking-field-wrap:nth-child(5) {
    grid-column: 1 / 3;
  }

  .modern-booking-form-wrap form .booking-submit-wrap {
    grid-column: 3 / 6;
  }
}

@media (max-width: 992px) {
  .modern-booking-form-wrap {
    max-width: 95%;
    padding: 1.75rem;
    margin-top: -5rem;
  }

  .modern-booking-form-wrap form {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .modern-booking-form-wrap form .booking-field-wrap:nth-child(1),
  .modern-booking-form-wrap form .booking-field-wrap:nth-child(2) {
    grid-column: span 1;
  }

  .modern-booking-form-wrap form .booking-field-wrap:nth-child(3),
  .modern-booking-form-wrap form .booking-field-wrap:nth-child(4),
  .modern-booking-form-wrap form .booking-field-wrap:nth-child(5) {
    grid-column: span 1;
  }

  .modern-booking-form-wrap form .booking-submit-wrap {
    grid-column: 1 / 4;
  }

  .booking-label {
    font-size: 0.8rem;
  }

  .booking-input,
  .booking-select {
    padding: 0.875rem 0.75rem;
    font-size: 0.9rem;
    height: 46px;
  }

  .btn-search-hotels {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .modern-booking-form-wrap {
    max-width: 95%;
    padding: 1.5rem;
    margin-top: -4rem;
  }

  .modern-booking-form-wrap form {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .modern-booking-form-wrap form .booking-field-wrap:nth-child(1),
  .modern-booking-form-wrap form .booking-field-wrap:nth-child(2) {
    grid-column: span 1;
  }

  .modern-booking-form-wrap form .booking-field-wrap:nth-child(3),
  .modern-booking-form-wrap form .booking-field-wrap:nth-child(4),
  .modern-booking-form-wrap form .booking-field-wrap:nth-child(5) {
    grid-column: span 1;
  }

  .modern-booking-form-wrap form .booking-submit-wrap {
    grid-column: 1 / 3;
  }

  .booking-input,
  .booking-select {
    padding: 0.875rem 0.75rem;
    font-size: 0.9rem;
    height: 44px;
  }

  .booking-input[type="date"] {
    padding: 0.875rem 0.75rem;
    height: 44px;
  }

  .btn-search-hotels {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .modern-booking-form-wrap {
    margin-top: -2rem;
    padding: 1rem;
    max-width: 98%;
  }

  .modern-booking-form-wrap form {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .modern-booking-form-wrap form .booking-field-wrap,
  .modern-booking-form-wrap form .booking-submit-wrap {
    grid-column: 1;
  }

  .booking-label {
    font-size: 0.8rem;
  }

  .booking-input,
  .booking-select {
    padding: 0.75rem 0.625rem;
    font-size: 0.85rem;
    height: 42px;
  }

  .booking-input[type="date"] {
    padding: 0.75rem 0.625rem;
    height: 42px;
  }

  .date-helper-text {
    font-size: 0.65rem;
  }

  .btn-search-hotels {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}

/* Animation for form appearance */
.modern-booking-form-wrap {
  animation: slideUpFade 0.6s ease-out;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced responsive spacing */
@media (min-width: 1400px) {
  .modern-booking-form-wrap {
    max-width: 80%;
    padding: 2.5rem;
  }

  .modern-booking-form-wrap form {
    gap: 1.5rem;
  }

  .booking-input,
  .booking-select {
    padding: 1rem;
    font-size: 1rem;
  }

  .btn-search-hotels {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.booking-title {
  font-size: 1.1rem;
  text-transform: uppercase;
}

/** VIK BOOKING FORM SEARCH **/
#ui-datepicker-div {
  z-index: 999!important;
}
.vbmodhorsearchmaindiv {
  display: flex;
  width: 100%;
  height: 100%;
}
.vbmodhorsearchmaindiv form {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-left: 1.5rem;
}
.vbmodhorsearchmaindiv form > div {
  display: inline-block;
  float: unset;
  margin: 0;
  align-self: center;
  padding: .5rem 0;
}

.vbmodhorsearchmaindiv form .vbmodhorsearchbookdiv {
  background-color: #ded1c0;
  display: flex;
  justify-content: center;
  align-items: center;
  float: unset;
  margin: 0;
  align-self: auto;
  padding: 1.5rem;
}
.vbmodhorsearchmaindiv .input-group em {
  padding: 0 10px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  border: 1px solid #ccc;
  border-left: 0;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 32px;
  line-height: 31px;
  float: left;
  cursor: pointer;
  background: #F6F6F6;
}
.vbmodhorsearchrac > .vbmodhorsearchroomdentr > .vbmodhorsearchroomdentrfirst {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vbmodhorsearchrac > .vbmodhorsearchroomdentr > .vbmoreroomscontmod {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.vbmodhorsearchroomdentrfirst .horsrnum {
  display: inline-block;
  float: unset;
  margin: 0;
  margin-top: auto;
  margin-right: .5rem;
  font-size: .85rem;
}
.vbmoreroomscontmod .horsrnum {
  display: inline-block;
  margin: 0;
  float: unset;
  margin-top: auto;
  margin-right: .5rem;
  font-size: .85rem;
}
.horsanumdiv, .horscnumdiv {
  margin: 0;
}
.vbmodhorsearchroomdentrfirst > div:nth-child(2) {
  margin-right: .5rem;
}
.vbmoreroomscontmod .horsanumsel {
  margin: 0;
  margin-right: .5rem;
}
.vbsearchinputmodhors {
  font-family: Hexabit-Bold;
  background: #b6996b;
  border-radius: 5px;
  border: 0;
  margin: 0;
  color: #fff;
  font-size: .95rem;
  padding: 1rem;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.vbsearchinputmodhors:hover {
  color: #fff;
  background-color: #90663d;
  border-color: #d8b68a;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 .15rem rgba(0, 0, 0, 0.5);
}
.vbo-horizsearch-numnights-inner {
  font-size: .85rem;
}
.ui-datepicker table td {
  transition: all .4s ease-in-out;
}
.ui-datepicker table td:hover {
  border: 1px solid #b6996b;
  background: #b6996b;
  color: #fff;
}
.ui-datepicker table td:hover a {
  color: #fff;
}
.ui-widget-content .ui-state-disabled:last-child {
  background-color: #000;
  color: #fff;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  border: 1px solid #3e6372;
  background: #000 !important;
  font-weight: normal;
  color: #fff;
}
.ui-datepicker .ui-datepicker-today {
  color: #fff;
  background: #90663d;
}
.ui-datepicker .ui-datepicker-today a {
  color: #fff;
}
.vbsearchproominfo .vbsearchnroom, .vbo-showprc-room-head .vbshowprcroomnum {
  font-size: 14px;
  background: #90663d;
  padding: 9px 10px;
  display: inline-block;
  position: relative;
  color: #fff;
}
.vbsearchproominfo .vbsearchnroom::after, .vbo-showprc-room-head .vbshowprcroomnum::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-left: 16px solid #90663d;
  border-bottom: 21px solid transparent;
  top: 0;
  right: -16px;
  position: absolute;
  bottom: 0;
  height: 100%;
}
/* *** */
.datepicker {
  padding:15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  direction: ltr;
}
.datepicker-inline {
  width: 220px;
}
.datepicker-rtl {
  direction: rtl;
}
.datepicker-rtl.dropdown-menu {
  left: auto;
}
.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999;
  cursor: default;
}
.datepicker table tr td.highlighted {
  background: #d9edf7;
  border-radius: 0;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: -moz-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -ms-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
  background-image: -webkit-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069 \9;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eee;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: #f3d17a;
  background-image: -moz-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -ms-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3c17a), to(#f3e97a));
  background-image: -webkit-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -o-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  background-color: #f3e97a;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active {
  background-color: #efe24b \9;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: #9e9e9e;
  background-image: -moz-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -ms-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b3b3b3), to(#808080));
  background-image: -webkit-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -o-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: linear-gradient(to bottom, #b3b3b3, #808080);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: #808080 #808080 #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: #808080;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active {
  background-color: #666666 \9;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(to bottom, #ded1c0, #b6996b);
  background-image: -ms-linear-gradient(to bottom, #ded1c0, #b6996b);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ded1c0), to(#b6996b));
  background-image: -webkit-linear-gradient(to bottom, #ded1c0, #b6996b);
  background-image: -o-linear-gradient(to bottom, #ded1c0, #b6996b);
  background-image: linear-gradient(to bottom, #ded1c0, #b6996b);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ded1c0', endColorstr='#b6996b', GradientType=0);
  border-color: #b6996b #b6996b #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: #b6996b;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.datepicker table tr td span:hover,
.datepicker table tr td span.focused {
  background: #eee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(to bottom, #ded1c0, #b6996b);
  background-image: -ms-linear-gradient(to bottom, #ded1c0, #b6996b);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ded1c0), to(#b6996b));
  background-image: -webkit-linear-gradient(to bottom, #ded1c0, #b6996b);
  background-image: -o-linear-gradient(to bottom, #ded1c0, #b6996b);
  background-image: linear-gradient(to bottom, #ded1c0, #b6996b);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ded1c0', endColorstr='#b6996b', GradientType=0);
  border-color: #b6996b #b6996b #ded1c0;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #b6996b;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999;
}
.datepicker .datepicker-switch {
  width: 145px;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #eee;
}
.datepicker .prev.disabled,
.datepicker .next.disabled {
  visibility: hidden;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.input-append.date .add-on,
.input-prepend.date .add-on {
  cursor: pointer;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i,
.input-append.date .add-on em,
.input-prepend.date .add-on em
{
  margin-top: 3px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}
/* *** */
/*---------------------------
  # VikBooking - GENERAL
---------------------------*/
.vbdivsearch .vb-search-inner {
  display: flex;
  flex-wrap: wrap;
  font-size: .9em;
  justify-content: space-around;
  align-items: center;
}
.vbselectr a, .vbselectr-result {
  transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  background: #b6996b;
  cursor: pointer;
  border-radius: 4px;
  color: var(--vbo-contrast-text-color);
  margin: 8px 0 0;
  padding: 8px;
  width: 100%;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
}
.vbselectr a:hover, .vbselectr-result:hover {
  transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  color: var(--vbo-contrast-text-color);
  background: #90663D;
  text-decoration: none;
}
.vbo-closing-main {
  display: none;
}
.vbo-search-submit .btn {
  font-family: Hexabit-Bold;
  background: #b6996b;
  border-radius: 5px;
  border: 0;
  color: #fff;
  font-size: .95rem;
  padding: 1rem;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.vbo-search-submit .btn:hover {
  color: #fff;
  background-color: #90663d;
  border-color: #d8b68a;
}

ol.vbo-stepbar li.vbo-step-complete::before {
  content: "";
  color: var(--vbo-contrast-text-color);
  background-color: #90663d;
  height: 1.2em;
  width: 1.2em;
  line-height: 1.2em;
  border: none;
  border-radius: 1.2em;
}
ol.vbo-stepbar li.vbo-step-complete, ol.vbo-stepbar li.vbo-step-current {
  color: #90663d;
  border-bottom: 4px solid #d8b68a;
}
ol.vbo-stepbar li.vbo-step-current::before {
  content: "";
  color: var(--vbo-contrast-text-color);
  background-color: var(--vbo-white-bg-color);
  height: 1.2em;
  width: 1.2em;
  line-height: 1.2em;
  border-radius: 1.2em;
  border: 2px solid #90663d;
}
.vbo-results-head > div > i, .vbo-results-head > div > em {
  vertical-align: top;
  margin: 10px 10px 0 auto;
  font-size: 16px;
  color: #90663d;
}
.vbo-results-head > div {
  font-size: .9em;
  font-weight: normal;
  line-height: 1.2em;
}
.vbrowroomcapacity i, .vbrowroomcapacity em {
  font-size: 20px;
  margin-right: 0.5px;
  color: #90663d;
}
.vbsearchproominfo .vbsearchroomparty i, .vbsearchproominfo .vbsearchroomparty em,
.vbo-showprc-room-head .vbo-showprc-staydetails i, .vbo-showprc-room-head .vbo-showprc-staydetails em {
  font-size: 13px;
  color: #90663d;
  margin-right: 5px;
}
.vbo-showprc-roomname {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.vbo-showprc-roomname > h3 {
  color: #fff;
  background-color: #d8b68a;
  font-family: Hexabit-Light;
  font-size: 1.5rem;
  display: inline-flex;
  padding: .5rem 5rem;
  text-align: center;
}
.vbo-showprc-pricetable .vbo-showprc-price-entry {
  display: inline-flex;
  width: 100%;
  border: 1px solid var(--vbo-light-border-color);
  padding: 20px 0 20px 0;
  margin: 2px 0;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
.vbcustomfields .vbo-oconfirm-cfield-entry {
  display: inline-block;
  width: 44%;
  margin: 5px 20px;
}
.vbo-oconfirm-cfield-input textarea {
  background: var(--vbo-input-style);
  border: 1px solid var(--vbo-border-color);
  color: var(--vbo-text-color);
  width: 100%;
}
.vbcustomfields .vbo-oconfirm-cfield-entry {
  display: inline-block;
  width: 100%;
  margin: .5rem 0;
}
.vbo-showprc-pricetable .vbo-showprc-price-entry > .vbo-showprc-price-entry-radio {
  flex-basis: 10%;
}
.vbo-showprc-pricetable .vbo-showprc-price-entry > .vbo-showprc-price-entry-rateplan {
  flex-basis: 80%;
  text-align: left;
}
.vbo-showprc-pricetable .vbo-showprc-price-entry > .vbo-showprc-price-entry-cost {
  display: inline-flex;
  flex-basis: 5%;
}
.vbo-showprc-price-entry-cost {
  float: unset;
  text-align: right;
  font-size: 1.2em;
  font-weight: normal;
  font-family: Hexabit-Bold;
  color: #90663d;
  padding-right: 25px;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  flex-basis: 10%;
}
.room_carats h4 {
  text-align: left;
  font-size: 1.25rem;
  display: inline-flex;
  border-bottom: 2px solid #d8b68a;
  margin-bottom: 1rem;
}
.room_prices > h4 {
  text-align: left;
  font-size: 1.25rem;
  display: inline-flex;
  border-bottom: 2px solid #d8b68a;
  margin-bottom: 1rem;
}
.vbo-oconfirm-middlep {
  display: none;
}
.vbo-results-head {
  margin: 0 0 20px;
  border: 1px solid var(--vbo-light-border-color);
  box-shadow: 0 1px 10px rgba(0,0,0,.1);
  padding: 10px;
  display: inline-flex;
  width: 100%;
  align-items: center;
}
.vbroomimgdesc .vikfx-showprc-gallery-container, .vbroomimgdesc .vikfx-thumbslide-container {
  margin-right: 0;
}
.room_container img.vblistimg {
  height: 500px;
  object-fit: cover;
}
img.vblistimg {
  max-width: 100%;
  margin: 0;
  width: 100%;
}
.vbdescrlistdiv > h4 {
  color: #fff;
  background-color: #d8b68a;
  font-family: Hexabit-Light;
  font-size: 1.5rem;
  display: inline-flex;
  padding: .5rem .5rem;
  text-align: center;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.room_carats {
  width: 100%;
  margin: 0px 0 18px 0;
  display: inline-block;
  padding: 0;
}
.roomlist_carats .vbo-room-carat, .room_carats .vbo-room-carat {
  background-color: #af8b65;
  color: #fff;
  margin: 0;
  padding: .25rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.vbo-room-carats {
  row-gap: .5rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: .5rem;
}

.btn.btn-primary.booknow {
  font-size: 1.25rem;
}
.vbsrowprice .vbsrowpricediv .room_cost {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
.vbsrowprice .vbsrowpricediv .room_cost {
  font-size: 1.2em;
  font-weight: normal;
  font-family: Hexabit-Bold;
}
.vbcustomfields {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 5px 10px rgba(0,0,0,.5);
  border: 1px solid var(--vbo-light-border-color);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
  row-gap: 1rem;
}
.vbcustomfields .vbo-oconfirm-cfield-entry {
  display: inline-flex;
  width: 100%;
  margin: .5rem 0;
  flex-basis: 49%;
  flex-direction: column;
}
.vbcustomfields .vbo-oconfirm-cfield-entry-separator {
  display: inline-flex;
  flex-basis: 100%;
  width: 100%;
}
.vbcustomfields .vbo-oconfirm-cfield-entry-textarea {
  display: inline-flex;
  flex-basis: 100%;
  width: 100%;
}
.vbcustomfields .vbo-oconfirm-cfield-entry-checkbox {
  display: inline-flex;
  flex-basis: 100%;
  width: 100%;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
.vbo-oconfirm-roomname {
  color: #90663d;
  font-weight: normal;
  font-family: Hexabit-Bold;
  font-size: 1.5rem;
}
.vbo-oconfirm-summary-room-row:last-child, .vbo-oconfirm-summary-option-row {
  border: 0;
  /* background-color: #eee; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.vbo-results-chdates a:hover {
  color: #90663d;
}
.vbo-goback-link:hover {
  color: #fff;
  background-color: #90663d;
}
.vbo-showprc-price-entry-rateplan {
  width: 75%;
  float: unset;
  text-align: left;
}
.vbo-oconfirm-summary-room-head-cell {
  font-size: .9em;
  font-weight: normal;
  text-transform: uppercase;
  color: var(--vbo-text-color);
  margin-bottom: 5px;
  font-family: Hexabit-Bold;
}


/*---------------------------
  # J Contact
---------------------------*/
.eco_friendly  {
  display: none!important;
}
#contact_us {
  margin: 10rem 0;
}
.map-wrapper {
  display: flex;
  height: 100%;
  min-height: 450px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
}
#contact-form .col-md-6:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.form-control-feedback { color: red;font-size: .9rem;margin-left: .5rem; }
.btn-primary {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
#contact-form .btn-primary {
  font-size: 1.15rem;
  letter-spacing: 1px;
  padding: .5rem 2rem;
}
.btn-primary:hover {
  color: #000;
  background-color: #fff;
  border-color: #000;
}
.btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
  color: #000;
  background-color: #fff;
  border-color: #000;
}
.btn-check:active + .btn-primary:focus, .btn-check:checked + .btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .15rem rgba(0, 0, 0, 0.5);
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #000;
  background-color: #fff;
  border-color: #000;
  box-shadow: 0 0 0 .15rem rgba(0, 0, 0, 0.5);
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #000;
  background-color: #fff;
  border-color: #000;
  box-shadow: 0 0 0 .15rem rgba(0, 0, 0, 0.5);
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #000;
  outline: 0;
  box-shadow: 0 0 0 .15rem rgba(255, 255, 255, 0.25);
}
.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #f9f9f9;
  background-clip: padding-box;
  border: unset;
  border-bottom: 3px solid #90663d;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  transition: all .15s ease-in-out,box-shadow .15s ease-in-out;
}
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.contact-info_icon {
  color: #fff;
  background: linear-gradient(135deg, #d8b68a 0%, #90663d 100%);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  border-radius: 10px;
}
.contact-info-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 1rem;
  row-gap: 1rem;
}
.contact_contact-wrapper,
.contact_contact-wrapper a {
  color: #90663d;
  font-family: Hexabit-Bold;
  font-size: 1.1rem;
}
.contact_contact-wrapper a:hover {
  color: #000;
}
.contact_contact-wrapper {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  align-items: stretch;
  row-gap: 1rem;
  column-gap: 1rem;
}
.full_address_style, .telephone, .email, .fax {
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.telephone, .fax {
  flex-basis: 50%;
}
.contact-info_icon {
  font-size: 2rem;
  border-radius: 50%;
  /* border: 1px dashed #fff; */
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: .5rem;
}
/*---------------------------------------
  # CATEGORY - GENERAL
----------------------------------------*/
.blog {
  margin-top: 2rem;
}
.article-main-body h2 {
  display: inline-flex;
  font-size: 1.25rem;
  margin-bottom: .5rem;
  border-bottom: 2px solid #d8b68a;
}
.article-main-body h3 {
  display: inline-flex;
  font-size: 1.15rem;
  margin-bottom: .5rem;
  border-bottom: 2px solid #d8b68a;

}
.article-main-body p {
  margin-bottom: 1rem;
}
.introtext-wrap {
  font-family: Hexabit-Light;
  text-align: center;
  margin: 1rem;
}
/*---------------------------------------
  # CATEGORY - ROOMS
----------------------------------------*/
.room-item-content {
  position: relative;
  transition: all .4s ease-in-out;
}
.room-item-content:hover {
  opacity: .9;
}
.room-item-content img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.room-item-content .page-header {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.room-item-content .page-header h2 {
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 4px solid #987a58;
  width: 100%;
  padding: 1rem;
  margin-bottom: 4rem;
  transition: all .4s ease-in-out;
}
.room-item-content .page-header h2 a {
  font-size: 1.5rem;
}
.room-item-content:hover .page-header h2 a {
  color: #fff;
}
.room-item-content:hover .page-header h2 {
  background-color: #633e1acc;
}
/*---------------------------------------
  # CATEGORY - BLOG
----------------------------------------*/
.custom_blog-item-content {
  position: relative;
  transition: all .4s ease-in-out;
}
.custom_blog-item-content:hover {
  opacity: .9;
}
.custom_blog-item-content .page-header {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.custom_blog-item-content .page-header h2 {
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 4px solid #987a58;
  width: 100%;
  padding: 1rem;
  font-size: 1.25rem;
  margin-bottom: 4rem;
  transition: all .4s ease-in-out;
}
.custom_blog-item-content:hover .page-header h2 {
  background-color: #633e1acc;
}
.custom_blog-item-content:hover .page-header h2 a {
  color: #fff;
}
.custom_blog-item-content img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.intro-text-wrap {
  font-family: Hexabit-Light;
  text-align: center;
  margin: 1rem;
}
/*---------------------------
  # ARTICLE - GENERAL
---------------------------*/

/*---------------------------
  # ARTICLE - BLOG
---------------------------*/
.article-blog-img-wrap {
  position: relative;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  margin-bottom: 1.5rem;
}
.article-blog-img-wrap .item-image {
  /* overflow: hidden; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-blog-img-wrap .item-image img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
}
.article-blog-title-wrap {
  position: relative;
  text-align: center;
  padding-bottom: 1rem;
}
.article-blog-title-wrap::before{
  content: '';
  background-color: #d8b68a;
  height: 2px;
  width: 50px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  display: flex;
  margin: auto;
}
.article-blog-title-wrap h1 {
  font-size: 2rem;
  margin-bottom: .5rem;
}
.article-blog-title-wrap .date_time_article-wrap {
  background-color: #90663d;
  color: #fff;
  font-size: .8rem;
  border-radius: 50px;
  display: inline-flex;
  padding: .25rem 1rem;
}
.article-blog-main-body-inner p {
  margin-bottom: 1rem;
}
.article-blog-main-body-inner a {
  color: #90663d;
}
.article-blog-main-body-inner a:hover {
  color: #d8b68a;
}
.social-share-wrap {
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: .5rem;
  column-gap: .5rem;
  margin-bottom: 2rem;
}
.social-share-text-wrap h2{
  font-size: 1rem;
}
.share_social_media_icons_wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: .5rem;
}
.share_social_media_icons_wrapper a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.share_social_media_icons_wrapper a:hover {
  background-color: #000;
  color: #fff;
}
.share_social_media_icons_wrapper em {
  transform: translate(1px, 0);
}

/*---------------------------
  # ARTICLE - ROOM
---------------------------*/
.btn-book-now {
  text-transform: uppercase;
  font-family: Hexabit-Book;
  font-size: 1.5rem;
  padding: .5em;
  width: 90%;
  border-radius: 6px;
}
.room-cat-title-section {
  margin: 1.5rem 0;
  text-align: left;
  font-size: 1.25rem;
}
.room-cat-title-section {
  text-align: left;
  font-size: 1.25rem;
  display: inline-flex;
  border-bottom: 2px solid #d8b68a;
}
#room .item-image img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}
.room-amenities-items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  row-gap: 1rem;
  column-gap: 1rem;
  flex-wrap: wrap;
}
.room-amenities-items p {
  /* background-color: #efefef; */
  border-radius: 8px;
  border: 1px solid #efefef;
  color: #000;
  padding: .25rem 0.5rem;
  font-size: .85rem;
}
.room-amenities-items p > em {
  color: #d8b68a;
  margin-right: .25rem;
}
.gallery_img_style {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all .4s ease-in-out;
}
.gallery_img_style:hover {
  opacity: .8;
}

/*---------------------------
  # ENHANCED ROOM PAGE - CLEAN & ELEGANT
---------------------------*/

/* Main Room Container */
#room {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  min-height: 100vh;
  padding: 2rem 0;
}

/* Room Hero - Simple & Clean */
.room-hero-wrap {
  position: relative;
  margin-bottom: 3rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.room-hero-image img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

.room-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 3rem 2rem 2rem;
  color: white;
}

.room-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Content Cards */
.article-main-body {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* Enhanced Amenities - Simple Grid */
.room-amenities-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  background: white;
  border-radius: 12px;
  border: 2px solid #f8f9fa;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.amenity-item:hover {
  transform: translateY(-3px);
  border-color: #90663d;
  box-shadow: 0 8px 25px rgba(144,102,61,0.25);
}

.amenity-item i, .amenity-item em {
  color: #90663d;
  margin-right: 1rem;
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
}

.amenity-item span {
  font-size: 1rem;
  color: #495057;
  font-weight: 500;
}

/* Fallback Amenities Style */
.room-amenities-items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  row-gap: 1rem;
  column-gap: 1rem;
  flex-wrap: wrap;
}

.room-amenities-items p {
  background: white;
  border-radius: 10px;
  border: 2px solid #f8f9fa;
  color: #495057;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.room-amenities-items p:hover {
  border-color: #90663d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(144,102,61,0.2);
}

.room-amenities-items p > em {
  color: #90663d;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* Section Titles with Icons */
.room-cat-title-section {
  margin: 2rem 0 1.5rem;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid #90663d;
  padding-bottom: 0.8rem;
  width: 100%;
}

.room-cat-title-section i, .room-cat-title-section em {
  color: #90663d;
  margin-right: 0.75rem;
  font-size: 1.4rem;
}

/* Gallery Improvements */
.gallery-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  background: white;
  padding: 8px;
}

.gallery-img-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gallery_img_style {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
  border-radius: 8px;
}

.gallery_img_style:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Book Button */
.btn-book-now {
  background: #000;
  border: 2px solid #000;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-book-now:hover {
  background: #fff;
  border: 2px solid #000;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Page Header Improvements */
.page-header {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
  margin-bottom: 2rem;
}

.page-title {
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .room-title {
    font-size: 2.2rem;
  }

  .room-amenities-enhanced {
    grid-template-columns: 1fr;
  }

  .amenity-item {
    padding: 0.8rem 1rem;
  }

  .article-main-body {
    padding: 1.5rem;
  }

  #room {
    padding: 1rem 0;
  }
}

/*---------------------------
  # ARTICLE -
---------------------------*/

/*---------------------------
  # ARTICLE -
---------------------------*/

/*---------------------------
  # Media Queries
---------------------------*/
@media (min-width: 1440px){
  .container{max-width:1400px;}
}

@media (max-width: 1671px) {
  .carousel-caption {
    padding: 2rem;
  }
  .carousel-caption > img {
    /* max-width: 45%; */
  }
  .carousel-caption p {
    font-size: .85rem;
  }
}


@media (max-width: 1440px) {
  .carousel-item::before {
    right: 2rem;
  }
  .carousel-item > img {
    max-width: 60%;
    margin-right: 5%;
  }
  .carousel-caption {
    right: 60%;
    bottom: 5rem;
    padding: 1.25rem 4rem;
  }
}
@media (max-width: 1199.98px) {
  .carousel-caption > img {
    /* max-width: 30%; */
  }
  .carousel-caption {
    right: 20%;
  }
  .vbmodhorsearchmaindiv form {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    width: 100%;
    height: 100%;
    padding-left: 0;
    flex-wrap: wrap;
  }
  .vbmodhorsearchmaindiv form .vbmodhorsearchbookdiv {
    width: 100%;
  }
  .vbmodhorsearchmaindiv form > .vbmodhorsearchcheckindiv {
    display: inline-flex;
    flex-basis: 49%;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .vbmodhorsearchmaindiv form > .vbmodhorsearchcheckoutdiv {
    display: inline-flex;
    flex-basis: 49%;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .vbmodhorsearchmaindiv form > .vbmodhorsearchtotnights {
    text-align: center;
    flex-basis: 100%;
  }
  .vbmodhorsearchmaindiv form > .vbmodhorsearchrac {
    display: flex;
    justify-content: center;
    flex-basis: 100%;
    width: 100%;
  }
  .vbmodhorsearchcheckindiv .input-group,
  .vbmodhorsearchcheckoutdiv .input-group {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .vbmodhorsearchmaindiv form > div {
    padding: .5rem 1rem;
  }
  .vbo-horizsearch-standardformat-wrap.vbmodhorsearchmaindiv form > div {
    flex-basis: 100%;
    margin-right: 0 !important;
    margin-top: 5px;
    margin-bottom: 0;
  }
  .vbmodhorsearchroomdentrfirst > div:nth-child(2) {
    margin-right: 0;
  }
  .vbmoreroomscontmod .horsrnum {
    margin: auto;
  }
}
@media (max-width: 1049.98px) {

}
@media (min-width: 991.98px) {
  .nav-brand {
    display: none!important;
  }

}
@media (max-width: 991.98px) {
  #carouselMain {
    height: 100vh;
  }
  .navbar-brand {
    display: none!important;
  }
  .navbar-light .navbar-toggler {
    color: rgb(144, 102, 61);
    border-color: rgb(144, 102, 61);
  }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 .15rem;
  }
  #mainNavbar {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
    background: #efefef;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: .25rem;
  }
  #mainNavbar .menu {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end!important;
    flex-direction: column;
    flex-basis: 100%;
  }
  #mainNavbar .dropdown-menu {
    position: relative;
    text-align: right;
  }
  .carousel-caption {
    right: 30%;
  }
  #booking-form {
    max-width: 100%;
  }
  #booking-form > form {
    flex-wrap: wrap;
  }
  .seperator-line-vertical {
    display: none!important;
  }
  #booking-form > form > .booking-arrival-wrap, #booking-form > form > .booking-departure-wrap, #booking-form > form > .booking-rooms-wrap, #booking-form > form > .booking-adults-wrap, #booking-form > form > .booking-childs-wrap, #booking-form > form > .booking-babies-wrap {
    flex-basis: 49%;
    justify-content: flex-start;
    padding: 1rem 1rem;
  }
  #booking-form > form > .booking-check-wrap {
    flex-basis: 100%;
    padding: 1rem 1rem;
  }
  .parallax-text-wrap {
    padding-right: 4rem;
    text-shadow: 1px 1px 4px #000;
  }
  .vbcustomfields .vbo-oconfirm-cfield-entry {
    flex-basis: 100%;
  }

}
@media (max-width: 767.98px) {

  .carousel-item::before {
    right: 1rem;
  }
  .carousel-item > img {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .carousel-caption {
    background-color: rgba(255, 255, 255, 0.9);
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
  }

  .parallax-text-wrap {
    padding: 1rem;
    padding-right: 1rem;
  }

}
@media (max-width: 575.98px) {
  .parallax-text-wrap {
    text-align: center;
    align-items: center;
  }
  .footer-logo {
    max-width: 250px;
  }
  .footer-wrap-menu .menu {
    flex-direction: column;
  }
  .vbo-oconfirm-summary-room-wrapper-notaxes .vbo-oconfirm-summary-room-cell-tot, .vbo-oconfirm-summary-total-wrapper-notaxes .vbo-oconfirm-summary-room-cell-tot {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 440px) {
  .wellness-spa-img-wrap-2 {
    width: 250px;
    height: 250px;
    position: absolute;
    right: -2rem;
    bottom: -2rem;
  }
  .whoweare-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .whoweare-text-wrap p {
    margin-left: 0;
    text-align: justify;
  }
  .signature > p {
    text-align: center;
  }
  .contact_contact-wrapper {
    flex-wrap: wrap;
  }
  .telephone, .fax {
    flex-basis: 100%;
  }

}
@media only screen and (max-width: 550px) {
  .vboconfirmbottom {
    margin-top: 2rem;
  }
  .vbo-showprc-pricetable .vbo-showprc-price-entry > div {
    width: 100%;
    margin-right: 0;
    padding-right: .5rem;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .animated {
    /*CSS transitions*/
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
    /*CSS transforms*/
    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    /*CSS animations*/
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
  }
}

/*---------------------------
  # ABOUT PAGE - ETAIRIA
---------------------------*/
/* Hero Section */
.about-hero-section {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #f8f4f0 0%, #ede5d8 100%);
  position: relative;
}

.about-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../../images/layer-vignete.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.05;
  z-index: 1;
}

.about-hero-section .container {
  position: relative;
  z-index: 2;
}

.about-hero-title {
  font-family: acfifindrel, serif;
  font-size: 4rem;
  color: #af0000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-family: Hexabit-Bold, sans-serif;
  font-size: 1.5rem;
  color: #90663d;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-hero-description {
  font-family: Hexabit-Book, sans-serif;
  font-size: 1.1rem;
  color: #6b4423;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: acfifindrel, serif;
  font-size: 3rem;
  color: #d8b68a;
  font-weight: bold;
  line-height: 1;
}

.stat-label {
  font-family: Hexabit-Bold, sans-serif;
  font-size: 0.9rem;
  color: #90663d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(144, 102, 61, 0.2);
  transition: transform 0.3s ease;
}

.about-hero-image img:hover {
  transform: translateY(-5px);
}

/* Features Section */
.about-features-section {
  padding: 6rem 0;
  background: #fff;
}

.section-title {
  font-family: acfifindrel, serif;
  font-size: 3.5rem;
  color: #af0000;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-family: Hexabit-Book, sans-serif;
  font-size: 1.2rem;
  color: #6b4423;
  text-align: center;
  margin-bottom: 3rem;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(144, 102, 61, 0.15);
  border-color: #d8b68a;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8b68a 0%, #90663d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #90663d 0%, #6b4423 100%);
  transform: scale(1.1);
}

.feature-icon i, .feature-icon em {
  font-size: 2rem;
  color: #fff;
}

/* Special styling for new icons */
.feature-icon .fa-hands {
  color: #fff;
}

.feature-icon .fa-fire {
  color: #fff;
}

.feature-icon .fa-wifi {
  color: #fff;
}

.feature-icon .fa-gem {
  color: #fff;
}

.contact-icon i, .contact-icon em {
  font-size: 1.8rem;
  color: #fff;
}

/* Greek text support */
.feature-card h4,
.contact-card h5,
.about-hero-title,
.about-hero-subtitle,
.section-title,
.content-title {
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

/* Better line height for Greek text */
.feature-card p,
.contact-card p,
.about-hero-description,
.section-subtitle,
.highlight-content p {
  line-height: 1.7;
  word-spacing: 0.1em;
}

.feature-card h4 {
  font-family: Hexabit-Bold, sans-serif;
  font-size: 1.3rem;
  color: #90663d;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-family: Hexabit-Book, sans-serif;
  font-size: 1rem;
  color: #6b4423;
  line-height: 1.6;
  margin: 0;
}

/* Content Section */
.about-content-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f4f0 0%, #ede5d8 100%);
}

.content-title {
  font-family: acfifindrel, serif;
  font-size: 3.5rem;
  color: #af0000;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-highlights {
  margin-top: 3rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

.highlight-number {
  background: linear-gradient(135deg, #d8b68a 0%, #90663d 100%);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Hexabit-Bold, sans-serif;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-content h5 {
  font-family: Hexabit-Bold, sans-serif;
  font-size: 1.2rem;
  color: #90663d;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlight-content p {
  font-family: Hexabit-Book, sans-serif;
  color: #6b4423;
  margin: 0;
  line-height: 1.6;
}

.about-content-images {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 500px;
}

.grid-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: scale(1.02);
}

.grid-item.large {
  grid-row: 1 / 3;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
.about-contact-section {
  padding: 6rem 0;
  background: #fff;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(144, 102, 61, 0.15);
  border-color: #d8b68a;
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8b68a 0%, #90663d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, #90663d 0%, #6b4423 100%);
  transform: scale(1.1);
}

.contact-icon i, .contact-icon em {
  font-size: 1.8rem;
  color: #fff;
}

.contact-card h5 {
  font-family: Hexabit-Bold, sans-serif;
  font-size: 1.2rem;
  color: #90663d;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card p {
  font-family: Hexabit-Book, sans-serif;
  font-size: 1rem;
  color: #6b4423;
  line-height: 1.6;
  margin: 0;
}

/* Breadcrumbs Section */
.breadcrumbs-section {
  padding: 2rem 0;
  background: #f8f4f0;
}

/* Utility Classes */
.min-vh-75 {
  min-height: 75vh;
}

.rounded-lg {
  border-radius: 12px !important;
}

.shadow-lg {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .about-hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .content-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .about-hero-section {
    padding: 4rem 0 3rem;
  }

  .about-hero-title {
    font-size: 3rem;
    text-align: center;
  }

  .about-hero-subtitle {
    text-align: center;
  }

  .about-hero-description {
    text-align: center;
  }

  .about-hero-stats {
    justify-content: center;
    margin-bottom: 3rem;
  }

  .about-content-section {
    padding: 4rem 0;
  }

  .about-features-section {
    padding: 4rem 0;
  }

  .about-contact-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .content-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .about-highlights {
    margin-top: 2rem;
  }

  .image-grid {
    height: 400px;
    margin-top: 3rem;
  }
  .blog-item-wrap .newsflash-image img {
    height: 350px;
  }
}

@media (max-width: 767.98px) {
  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .content-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 200px 200px;
    height: auto;
  }

  .grid-item.large {
    grid-row: 1 / 2;
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  .about-hero-section {
    padding: 3rem 0 2rem;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1.2rem;
  }

  .about-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .content-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i, .feature-icon em {
    font-size: 1.5rem;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
  }

  .contact-icon i, .contact-icon em {
    font-size: 1.5rem;
  }

  .book-now-btn {
    display: block;
    margin: 0.5rem 0;
    text-align: center;
  }
}

/* Simple Template Enhanced Styling */
.simple-page-header {
    padding: 60px 0 40px;
    text-align: center;
    margin-bottom: 40px;
}

.simple-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #90663d, #8f653c);
    margin: 0 auto;
    border-radius: 2px;
}

.simple-content-wrap {
    margin-bottom: 60px;
}

.simple-content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(144, 102, 61, 0.1);
    padding: 50px 40px;
    border: 1px solid rgba(144, 102, 61, 0.05);
    position: relative;
    overflow: hidden;
}

.simple-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #90663d, #8f653c, #a1826d);
}

.content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.meta-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(144, 102, 61, 0.1);
}

.meta-item i, .meta-item em {
    color: #90663d;
    margin-right: 8px;
}

.simple-article-body {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
    text-align: justify;
}

.simple-article-body h1,
.simple-article-body h2,
.simple-article-body h3,
.simple-article-body h4,
.simple-article-body h5,
.simple-article-body h6 {
    color: #90663d;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.simple-article-body h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(144, 102, 61, 0.2);
    padding-bottom: 10px;
}

.simple-article-body h3 {
    font-size: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.simple-article-body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #90663d;
    border-radius: 2px;
}

.simple-article-body p {
    margin-bottom: 1.5rem;
    text-indent: 1.5rem;
}

.simple-article-body ul,
.simple-article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.simple-article-body li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.simple-article-body ul li::marker {
    color: #90663d;
}

.simple-article-body strong {
    color: #90663d;
    font-weight: 700;
}

.simple-article-body a {
    color: #90663d;
    text-decoration: none;
    border-bottom: 1px solid rgba(144, 102, 61, 0.3);
    transition: all 0.3s ease;
}

.simple-article-body a:hover {
    color: #633e1a;
    border-bottom-color: #633e1a;
}

.content-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f8f9fa;
}

.footer-decoration {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #90663d, #8f653c);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* Responsive Design for Simple Template */
@media (max-width: 768px) {
    .simple-page-header {
        padding: 40px 0 30px;
    }

    .simple-page-title {
        font-size: 2rem;
    }

    .title-underline {
        width: 60px;
    }

    .simple-content-card {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .content-meta {
        flex-direction: column;
        gap: 10px;
    }

    .simple-article-body {
        font-size: 1rem;
        text-align: left;
    }

    .simple-article-body p {
        text-indent: 0;
    }
}

@media (max-width: 480px) {
    .simple-page-title {
        font-size: 1.7rem;
    }

    .title-underline {
        width: 50px;
        height: 2px;
    }

    .simple-content-card {
        padding: 20px 15px;
    }

    .simple-article-body h2 {
        font-size: 1.5rem;
    }

    .simple-article-body h3 {
        font-size: 1.3rem;
    }
}

/* Simple Blog Template Styling */
.simple-blog-header {
    padding: 60px 0 40px;
    text-align: center;
}

.simple-blog-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.simple-blog-date {
    color: #90663d;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.simple-blog-image {
    margin-bottom: 50px;
}

.simple-featured-img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.simple-blog-content {
    margin-bottom: 60px;
}

.simple-content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.simple-content-body h1,
.simple-content-body h2,
.simple-content-body h3 {
    color: #90663d;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.simple-content-body h2 {
    font-size: 1.8rem;
    /* margin-top: 3rem; */
}

.simple-content-body h3 {
    font-size: 1.4rem;
}

.simple-content-body p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.simple-content-body ul,
.simple-content-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.simple-content-body li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.simple-content-body strong {
    color: #90663d;
    font-weight: 700;
}

.simple-content-body a {
    color: #90663d;
    text-decoration: underline;
    text-decoration-color: rgba(144, 102, 61, 0.4);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    height: 100%;
}

.simple-content-body a:hover {
    color: #633e1a;
    text-decoration-color: #633e1a;
}

.simple-content-body .card-title {
  font-size: 1.25rem;
}
.simple-content-body .card-img-top {
  object-fit: cover;
}

.simple-gallery-section {
    margin-bottom: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.simple-gallery-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #90663d;
    margin-bottom: 30px;
    text-align: center;
}

.simple-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.simple-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simple-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(144, 102, 61, 0.2);
}

.simple-gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.simple-gallery-item:hover .simple-gallery-img {
    transform: scale(1.05);
}

/* Simple Blog Responsive */
@media (max-width: 768px) {
    .simple-blog-title {
        font-size: 2.2rem;
    }

    .simple-content-body {
        font-size: 1rem;
    }

    .simple-content-body h2 {
        font-size: 1.6rem;
    }

    .simple-content-body h3 {
        font-size: 1.3rem;
    }

    .simple-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .simple-gallery-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .simple-blog-title {
        font-size: 1.9rem;
    }

    .simple-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .simple-gallery-img {
        height: 180px;
    }
}

.blog-social-section {
    margin-bottom: 40px;
}

.social-share-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(144, 102, 61, 0.1);
}

.social-header {
    margin-bottom: 30px;
}

.social-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-title i, .social-title em {
    color: #90663d;
    margin-right: 12px;
}

.social-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn i, .social-btn em {
    margin-right: 8px;
    font-size: 1.1rem;
}

.facebook-btn {
    background: #3b5998;
    color: white;
}

.facebook-btn:hover {
    background: white;
    color: #3b5998;
    border-color: #3b5998;
    transform: translateY(-2px);
}

.twitter-btn {
    background: #1da1f2;
    color: white;
}

.twitter-btn:hover {
    background: white;
    color: #1da1f2;
    border-color: #1da1f2;
    transform: translateY(-2px);
}

.email-btn {
    background: #90663d;
    color: white;
}

.email-btn:hover {
    background: white;
    color: #90663d;
    border-color: #90663d;
    transform: translateY(-2px);
}

.linkedin-btn {
    background: #0077b5;
    color: white;
}

.linkedin-btn:hover {
    background: white;
    color: #0077b5;
    border-color: #0077b5;
    transform: translateY(-2px);
}

/* Blog Template Responsive Design */
@media (max-width: 992px) {
    .blog-title {
        font-size: 2.5rem;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .featured-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-date {
        font-size: 0.85rem;
        padding: 6px 15px;
    }

    .title-decoration {
        width: 60px;
        height: 2px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .blog-content-card {
        padding: 30px 25px;
    }

    .blog-content-card .article-main-body {
        font-size: 1rem;
    }

    .blog-content-card .article-main-body h2 {
        font-size: 1.6rem;
    }

    .blog-content-card .article-main-body h3 {
        font-size: 1.3rem;
    }

    .gallery-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .gallery-image {
        height: 200px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 200px;
        justify-content: center;
    }

    .featured-img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 1.8rem;
    }

    .blog-date {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .title-decoration {
        width: 50px;
    }

    .blog-content-card {
        padding: 20px 15px;
    }

    .blog-content-card .article-main-body {
        font-size: 0.95rem;
    }

    .blog-content-card .article-main-body h3 {
        padding-left: 15px;
    }

    .social-share-card {
        padding: 30px 20px;
    }

    .gallery-title {
        font-size: 1.5rem;
    }

    .social-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 8px;
    }

    .featured-img {
        height: 200px;
    }
    #myBtn {
      bottom: 80px;
      right: 20px;
    }
    .web-signature {
      font-size: .75em;
    }
}