/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  font-size: 17px;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #bf8d6a;
  text-decoration: none;
}

a:hover {
  color: #ff724a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #bf8d6a;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff6a40;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #bf8d6a;
  border-top-color: #ffe9e3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(21, 34, 43, 0.85);
  padding: 10px 0;
}

#header .logo {
  font-size: 60px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  /**font-family: Roundkey;*/
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 5px 5px;
}

.navbar a,
.navbar a:focus {
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #bf8d6a;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}



@media (min-width: 991px) {

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 76%;
  }

}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  border: 2px solid #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #3a4d4d;
  border-color: #bf8d6a;
}

.navbar>ul>li>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #15222b;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #bf8d6a;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;

  }

  .navbar ul {
    display: none;

  }

  .only-desktop {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 7, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  overflow-y: auto;
  transition: 0.3s;
  background-color: #394c4d;
  text-decoration: none;
  text-align: center;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;

  font-size: 25px;
  text-align: center;
  color: #be8d6a;
  text-decoration: none;
}



.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #bf8d6a;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background-size: cover;
  background-color: #fff;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8785889355742297) 0%, rgba(0, 0, 0, 0.6993172268907564) 21%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #bf8d6a;
  border: 2px solid #bf8d6a;
}

#hero .btn-get-started:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #bf8d6a;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.section-bg {
  background-color: #f0f4f8;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5c8eb0;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #3a4d4d;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #263d4d;
}


@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #bf8d6a;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #bf8d6a;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #bf8d6a;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #bf8d6a;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}


#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #bf8d6a;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff5e31;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #bf8d6a;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #bf8d6a;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff5e31;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  transition: 0.3s;
}

#owl-demo .item img {
  display: block;
  width: 100%;
  height: auto;
}

.owl-dots {
  background-color: #fff !important;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 0px !important;
  padding-top: 10px;
}

#hero {
  width: 100%;
  height: 100vh; 
  background-size: cover;
  position: relative;
  z-index: -1;
}

.rezervation {
  position: relative;
  height: 190px;
  background-color: #ebe8e2;
  --bs-gutter-x: 0 !important;
}

.rezervation .box {
  height: 190px;
  width: 60%;
  background-color: #0d1b1a;
  position: relative;
  top: -60px;

}

.rezervation-title {
  width: 100%;
  color: #fff;
  margin-top: -40px;
  font-size: 1.6rem;
}

.rezervation-label {
  color: #fff;
  font-size: 12px;
}

.rezervation-input {
  width: 80%;
}

.rezervation-send {
  width: 30%;
  background-color: #bd8c6a;
  padding: 10px;
}

.about-section {
  background-color: #ebe8e2;

}

.about-section-top {
  height: 50px;
}

.about-top-area1 {
  background-color: #fff;
  color: #bd8c6a;
  font-size: 2rem;

}

.about-top-area2 {
  background-color: #fff;
  color: #bd8c6a;
  font-size: 2rem;
}

.about-top-area1 .title {
  color: #bd8c6a;
  font-size: 3rem;
  position: relative;
  padding-left: 5rem !important;
  bottom: -1rem;
}

.about-top-area2 .title {
  color: #bd8c6a;
  font-size: 1.3rem;
  position: relative;
  bottom: -1rem;
}

.about-section-content {
  background-color: #fff;
  padding: 1.5rem 10rem 5rem 0;
}

.abount-content-img {
  position: relative;
  background-color: #000;
  background-repeat: no-repeat;
}

.abount-content-img::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9; 
  height: 460px;
  background-position: 0%;
}

.overlay-content {
  position: relative;
  background-color: #000;
}

.about-section-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: self-start;
}

.about-area1 {
  padding-left: 6rem;
}

.about-area2 {
  background-color: #e4e1d8;
  height: 140px;
}

.about-area2 .about-im1 {
  height: 210px;
  position: relative;
  top: -55px;
  left: 15px;
}

.about-area2 span {
  font-size: 5rem;
  color: #fff;
  position: relative;
  right: -12rem;
  z-index: 2;
}

.about-area3 {
  height: 220px;
}

.about-area3 h2 {
  font-size: 2rem;
  padding-left: 5rem;
}

.about-area3 h4 {
  font-size: 1rem;
  padding-left: 5rem;
}

.restaurant {
  height: 500px;
}

.restaurant-area1 {
  background-image: url('../img/restaurant-img1.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: 480px;
}

.restaurant-area2 {
  background-color: #ebe8e2;
  background-size: contain;
  background-repeat: no-repeat;
  height: 380px;
  position: relative;
}

.restaurant-area2 .restaurant-title {
  font-size: 5rem;
  color: #fff;
  position: relative;
  right: -12rem;
  z-index: 2;
  position: relative;
  left: -170px;
}

.restaurant .restaurant-subtitle {
  color: #be8d6a;
  font-size: 2rem;
  --bs-gutter-x: 0rem !important;
  z-index: 230;
}

.restaurant .restaurant-subcontent {
  font-size: 1rem;
  --bs-gutter-x: 0rem !important;
  z-index: 230;
}

.restaurant .restaurant-btn-menu {
  padding: 10px;
  background-color: #394e4d;
  color: #fff;
  font-size: 0.8rem;

}

.restaurant .restaurant-btn-alacarte {
  padding: 10px;
  background-color: #be8d6a;
  color: #fff;
  font-size: 0.8rem;
}

.restaurant .restaurant-img2 {
  height: 420px;
  position: absolute;
  right: 0px;
  z-index: 222;
  bottom: -22px;
}

.rooms {
  padding-top: 80px;
  padding-bottom: 45px;
}

.rooms .title {
  font-size: 4rem;
  color: #394d4e;
}

.rooms .subtitle {
  font-size: 1rem;
  color: #394d4e;
}

.rooms-area {
  height: 500px;
}

.rooms-area2 {
  background-image: url('../img/rooms-img2.png');
  background-size: cover;
  background-position: center;
}

.rooms-area1-top {
  background-color: #394c4d;
  margin-top: 70px;
}

.rooms-area1-top-title span {
  color: #be8d6a;
  font-size: 2rem;
}

.rooms-area1-top-subtitle span {
  color: #fff;
  font-size: 1rem;
}

.room-btn {
  padding: 10px;
  background-color: #fff !important;
  color: #be8d6a;
  font-size: 0.8rem;
}

.rooms-btn {
  padding: 10px;
  background-color: #be8d6a !important;
  color: #fff;
  font-size: 0.8rem;
}

.meetings {
  height: 500px;
  margin-top: 130px;
  position: relative;
}

.meetings .meetings-img1 {
  background-image: url('../img/meet-img1.png');
  background-position: center;
  background-repeat: no-repeat;
  height: 220px;
}

.meetings .meetings-img2 {
  background-image: url('../img/meet-img2.png');
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
  width: 500px;
  top: -200px;
  left: 180px;
}

.meetings-bottom-area {
  position: absolute;
}

.meetings .meetings-area2 {
  position: relative;
  left: 220px;
}

.meetings-area2 .title {
  font-size: 2rem;
  color: #be8c6a
}

.meetings-area2 .description {
  font-size: 1rem;
}

.comments {
  background-color: #ebe9e2;
  height: 600px;
  margin-top: 100px;
  position: relative;
}

.comments .comments-inner {
  background-image: url('../img/comments-bg.png');
  background-size: cover;
}

.comments-inner .title {
  font-size: 1.7rem;
  color: #be8c6a;
  opacity: 1;
}

.comments-inner .subtitle {
  font-size: 2rem;
  color: #be8c6a;
  opacity: 1;
}

.comments-inner .desctitle {
  font-size: 1.5rem;
  color: #000;
  opacity: 1;
}

.comments-inner .description {
  font-size: 1rem;
  color: #000;
  opacity: 1;
}

.comments-inner .comments-btn-area {
  width: 100%;
  font-size: 0.8rem;
}

.comments-inner .comments-btn {
  color: #fff;
  padding: 10px;
  background-color: #be8c6a;
}

.comments-inner2 .comments-rect {
  border: 2px solid #be8c6a;
  width: 375px;
  height: 300px;
  position: absolute;
}

.comments-inner2 .comments-rect .comments-rect-img1 {
  width: 150px;
  height: 150px;
  background-image: url('../img/comments1.png');
  background-size: cover;
  position: relative;
  top: -90px;
  left: -35px;
}

.comments-inner2 .comments-rect .comments-rect-img2 {
  width: 100px;
  height: 100px;
  background-image: url('../img/comments1.png');
  background-size: cover;
  position: relative;
  top: -90px;
  left: 70px;
}

.comments-inner2 .comments-rect .comments-rect-img3 {
  width: 300px;
  height: 300px;
  background-image: url('../img/comments1.png');
  background-size: cover;
  position: relative;
  top: -85px;
  left: 20px;
}

.comments-inner2 .comments-rect .comments-rect-img4 {
  width: 100px;
  height: 100px;
  background-image: url('../img/comments1.png');
  background-size: cover;
  position: relative;
  top: -385px;
  right: -325px;
}

.footer-topnew {
  background-color: #be8d6a;
}

.footer-top-inner {
  margin-top: 35px;
  margin-bottom: 35px;
}

.footer-top1 {
  padding: 10px;
  padding-left: 30px;
  font-size: 1.7rem;
  letter-spacing: 0.5rem;
}

.footer-top2 {
  padding: 20px;
  font-size: 1rem;
}

.footer-top3 {
  padding: 20px;
  font-size: 1.2rem;
}

.footer-bottom {
  height: 460px;
  background-color: #384e4c;
}


.footertitle {
  color: #fff;
  font-size: 1rem;
}

.footertext {
  color: #fff;
  font-size: 0.8rem;
}

.follow-us {
  font-size: 1rem;

}

.follow-us-icons {
  font-size: 35px;
  color: #be8d69;
}

.button {
  display: block;
  cursor: pointer;
  --c: #384e4c;
  --_g: linear-gradient(var(--c) 0 0) no-repeat;
  background:
    var(--_g) calc(var(--_p, 0%) - 100%) 0%,
    var(--_g) calc(200% - var(--_p, 0%)) 0%,
    var(--_g) calc(var(--_p, 0%) - 100%) 100%,
    var(--_g) calc(200% - var(--_p, 0%)) 100%;
  background-size: 50.5% calc(var(--_p, 0%)/2 + .5%);
  outline-offset: .1em;
  transition: background-size .4s, background-position 0s .4s;
}

.button:hover {
  --_p: 100%;
  transition: background-position .4s, background-size 0s;
  color: #fff;
}

.button:active {
  box-shadow: 0 0 9e9q inset #0009;
  background-color: var(--c);
  color: #fff;
  background-color: #FFFFFF;
}


.input {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  padding-top: 1.5rem;
  appearance: none;
  border-radius: 0;
  color: #fff;
}

.input+.input {
  margin-top: 1.5rem;

}

.input-label {
  color: #be8c6a;
  position: absolute;
  top: 1.5rem;
  transition: 0.25s ease;
}

.input-field {
  border: 0;
  z-index: 1;
  background-color: transparent;
  border-bottom: 1px solid #eee;
  font: inherit;
  font-size: 0.8rem;
  padding: 0.25rem 0;
  color: #fff;
}

.input-field:focus,
.input-field:valid {
  outline: 0;
  border-bottom-color: #fff;
}

.input-field:focus+.input-label,
.input-field:valid+.input-label {
  color: #be8c6a;
  transform: translateY(-1.5rem);
}

.action {
  margin-top: 2rem;
}

.action-button {
  font: inherit;
  font-size: 1.25rem;
  padding: 1em;
  width: 100%;
  font-weight: 500;
  background-color: #be8c6a;
  border-radius: 6px;
  color: #FFF;
  border: 0;
}

.action-button:focus {
  outline: 0;
}


@media (min-width: 991px) {

  .custom-navbar>li>a::after {
    content: '|';
    padding-left: 20px;
    color: #fff;
  }

}

@media (max-width: 991px) {

  .navbar>ul {
    padding-top: 25%;
  }
}


@media (max-width: 991px) {}


.custom-navbar>li:last-child>a::after {
  content: none;
}

.custom-navbar>li .qq::after {
  content: none;
  color: #be8c6a;
}

.custom-navbar>li:last-child>.qq::after {
  content: none;
  color: #be8c6a;
}

@font-face {
  font-family: Reey-Regular;
  src: url(../fonts/Reey-Regular.otf);
}

.font-reey-regular {
  font-family: Reey-Regular;
}

@font-face {
  font-family: NiagSol;
  src: url(../fonts/NiagSol.TTF);
}

.font-niag-sol {
  font-family: NiagSol;
}

@font-face {
  font-family: Roundkey;
  src: url(../fonts/Roundkey/Roundkey-Regular.otf);
}

.font-roundkey {
  font-family: Roundkey;
}

@font-face {
  font-family: Garabd;
  src: url(../fonts/GARABD.TTF);
}

.font-garabd {
  font-family: Garabd !important;
}

@font-face {
  font-family: Playfair;
  src: url(../fonts/PlayFair/PlayfairDisplay-Regular.ttf);

}

.font-playfair {
  font-family: Playfair;
}

.nav2-title {
  color: #fff;
  font-size: 14px;
}

.page-about-top {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/aboutbanner.jpeg');
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  width: 100%;
  margin-top: 100px;
}



.page-about-title {
  font-size: 1.7rem;
}

.page-about-description {
  font-size: 1.2rem;
}

.page-rooms-top {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/rooms-img2.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  margin-top: 100px;
}

.page-rooms-title {
  font-size: 1.9rem;
}

.page-rooms-description {
  font-size: 1.3rem;
}


.page-rooms-card-area {
  width: 100%;
}

.page-rooms-card-btn {
  color: #fff;
  padding: 10px;
  background-color: #be8c6a;
}

h2 {
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 100;
}


.tobo-gallery>ul {
  margin-bottom: 0;
}

.tobo-gallery>ul>li {
  float: left;
  margin-bottom: 15px;
}

.tobo-gallery>ul>li a {
  border: 3px solid #FFF;
  border-radius: 3px;
  display: block;
  overflow: hidden;
  position: relative;
  float: left;
}

.tobo-gallery>ul>li a>img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.tobo-gallery>ul>li a:hover>img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.tobo-gallery>ul>li a:hover .tobo-gallery-poster>img {
  opacity: 1;
}

.tobo-gallery>ul>li a .tobo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.tobo-gallery>ul>li a .tobo-gallery-poster>img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.tobo-gallery>ul>li a:hover .tobo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.tobo-gallery .justified-gallery>a>img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.tobo-gallery .justified-gallery>a:hover>img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.tobo-gallery .justified-gallery>a:hover .tobo-gallery-poster>img {
  opacity: 1;
}

.tobo-gallery .justified-gallery>a .tobo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.tobo-gallery .justified-gallery>a .tobo-gallery-poster>img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.tobo-gallery .justified-gallery>a:hover .tobo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.tobo-gallery .video .tobo-gallery-poster img {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
  width: 48px;
}

.tobo-gallery.dark>ul>li a {
  border: 3px solid #04070a;
}

.home .tobo-gallery {
  padding-bottom: 80px;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

input[type=number]::-webkit-inner-spin-button {
  width: 25px;
  height: 25px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {

  opacity: 1;

}

.room-detail-btn {
  padding: 5px;
  background-color: #394e4d;
  color: #fff;
  width: 130px;
  font-size: 1rem;
}

.page-room-top {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/meet-img1.png');
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 500px;
  margin-top: 85px;
}

.room-inner-container {
  max-width: 75%;
}

@media (max-width: 768px) {
  .room-inner-container {
    max-width: 100%;
  }
}


@media (max-width: 576px) {
  .page-about-top {
    height: 250px;
    padding-top: 125px;
  }
}

@media (min-width: 576px) {
  .page-about-top {
    height: 250px;
    padding-top: 125px;
  }
}

@media (min-width: 768px) {
  .page-about-top {
    height: 350px;
    padding-top: 175px;
  }
}

@media (min-width: 992px) {
  .page-about-top {
    height: 450px;
    padding-top: 225px;
  }
}

@media (min-width: 1200px) {
  .page-about-top {
    height: 600px;
    padding-top: 300px;
  }
}




@media (max-width: 576px) {
  .page-banner-top {
    height: 250px;
    padding-top: 125px;
  }
}

@media (min-width: 576px) {
  .page-banner-top {
    height: 250px;
    padding-top: 125px;
  }
}

@media (min-width: 768px) {
  .page-banner-top {
    height: 350px;
    padding-top: 175px;
  }
}

@media (min-width: 992px) {
  .page-banner-top {
    height: 450px;
    padding-top: 225px;
  }
}

@media (min-width: 1200px) {
  .page-banner-top {
    height: 600px;
    padding-top: 300px;
  }
}


@media (min-width: 992px) {

  .desktop-content {
    display: block;
  }

  .mobile-content {
    display: none;
  }
}


@media (max-width: 992px) {

  .rezervation {
    position: relative;
    height: 300px;
    background-color: #ebe8e2;
    --bs-gutter-x: 0 !important;
  }

  .rezervation .box {
    height: 300px;
    width: 80%;
  }

  .rezervation .topm {
    margin-top: 20px;
  }

  .rezervation-send {
    width: 80%;
    padding: 5px;
  }

  .rezervation-fontsize {
    font-size: 1rem;
  }

  .rezervation-title {
    font-size: 1.3rem;
  }

  .desktop-content {
    display: none;
  }

  .mobile-content {
    display: block;
  }

  #hero {
    width: 100%;
    height: 50vh;
  }

  .footer-top1 {
    padding: 10px;
    padding-left: 30px;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
  }


}


@media (max-width: 576px) {

  .rezervation {
    position: relative;
    height: 370px;
    background-color: #ebe8e2;
    --bs-gutter-x: 0 !important;
  }

  .rezervation .box {
    height: 370px;
    width: 80%;
  }

  .rezervation .topm {
    margin-top: 20px;
  }

  .rezervation-send {
    width: 80%;
    padding: 5px;
  }

  .rezervation-label {
    font-size: 1rem;
  }

  .rezervation-title {
    font-size: 1.3rem;
  }

  .desktop-content {
    display: none;
  }

  .mobile-content {
    display: block;
  }

  #hero {
    width: 100%;
    height: 50vh;
  }
}


.mobile-about {
  background-color: #fff;
  color: #bd8c6a;
  font-size: 2rem;
}

.mobile-about2 {
  padding-left: 0rem;
  background-color: #fff;
}

.abount-mobilecontent-img {
  position: relative;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 360px;
}

.abount-mobilecontent-img::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-image: url('../img/about-img.png');
  height: 360px;
  background-position: 0%;
}

.mobilecontent-restaurant {
  background-image: url('../assets/img/restaurant-img2.png');
  height: 300px;
}

.mobilerestaurant-subtitle {
  color: #be8d6a;
  font-size: 2rem;
  --bs-gutter-x: 0rem !important;
  z-index: 230;
}

.mobilerestaurant-btn-menu {
  padding: 10px;
  background-color: #394e4d;
  color: #fff;
  font-size: 0.8rem;
}

.mobilerestaurant-btn-alacarte {
  padding: 10px;
  background-color: #be8d6a;
  color: #fff;
  font-size: 0.8rem;
}

.mobilerooms-title {
  font-size: 2rem;
  color: #394d4e;
}

.mobilerooms-subtitle {
  font-size: 1rem;
  color: #394d4e;
}

.mobilerooms-area1-top-subtitle span {
  color: #fff;
  font-size: 1rem;
}

.mobilerooms-area2 {
  background-image: url('../img/rooms-img2.png');
  background-size: cover;
  background-position: center;
  height: 200px;
}



.mobilemeetings-bottom-area {
  position: block;
}


.mobilemeetings-img1 {
  background-image: url('../img/meet-img1.png');
  background-position: center;
  background-repeat: no-repeat;
  height: 220px;
}

.mobilemeetings-img2 {
  background-image: url('../img/meet-img2.png');
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;

  width: 500px;
}

.mobilemeetings-area2 .title {
  font-size: 2rem;
  color: #be8c6a
}

.mobilemeetings-area2 .description {
  font-size: 1rem;
}

.mobilecomments {
  background-color: #ebe9e2;
}

.mobilecomments-inner {
  background-image: url('../img/comments-bg.png');
  background-size: cover;
}

.mobilecomments-inner2 .comments-rect {
  border: 2px solid #be8c6a;
  width: 375px;
  position: absolute;
}

.mobilecomments-inner2 .comments-rect .comments-rect-img1 {
  width: 150px;
  height: 150px;
  background-image: url('../img/comments1.png');
  background-size: cover;
  position: relative;
  top: -90px;
  left: -35px;
}

.mobilecomments-inner2 .comments-rect .comments-rect-img2 {
  width: 100px;
  height: 100px;
  background-image: url('../img/comments1.png');
  background-size: cover;
  position: relative;
  top: -90px;
  left: 70px;
}

.mobilecomments-inner2 .comments-rect .comments-rect-img3 {
  width: 300px;
  height: 300px;
  background-image: url('../img/comments1.png');
  background-size: cover;
  position: relative;
  top: -85px;
  left: 20px;
}

.mobilecomments-inner2 .comments-rect .comments-rect-img4 {
  width: 100px;
  height: 100px;
  background-image: url('../img/comments1.png');
  background-size: cover;
  position: relative;
  top: -385px;
  right: -325px;
}

.mobilecomments-inner .title {
  font-size: 1.7rem;
  color: #be8c6a;
  opacity: 1;
}

.mobilecomments-inner .subtitle {
  font-size: 1.1rem;
  color: #be8c6a;
  opacity: 1;
}

.mobilecomments-inner .desctitle {
  font-size: 1.5rem;
  color: #000;
  opacity: 1;
}

.mobilecomments-inner .description {
  font-size: 1rem;
  color: #000;
  opacity: 1;
}

.mobilecomments-inner .comments-btn-area {
  width: 100%;
}

.mobilecomments-inner .comments-btn {
  color: #fff;
  padding: 10px;
  background-color: #be8c6a;
}

.mobilemeetings-title1 {
  font-size: 2rem;
  color: #394d4e;
}

.mobilemeetings-title2 {
  font-size: 2rem;
  color: #fff;
}



@media screen and (min-width: 992px) and (max-width: 1200px) {
  .about-area2 span {
    font-size: 5rem;
    color: #fff;
    position: relative;
    right: -6rem;
    z-index: 2;
    top: 5px;
  }
}

@media screen and (min-width: 1125px) and (max-width: 1500px) {
  .about-area2 span {
    font-size: 5rem;
    color: #fff;
    position: relative;
    right: -8rem;
    z-index: 2;
    top: 5px;
  }
}

@media screen and (min-width: 1230px) and (max-width: 1900px) {
  .about-area2 span {
    font-size: 5rem;
    color: #fff;
    position: relative;
    right: -11rem;
    z-index: 2;
    top: 5px;
  }
}

@media screen and (min-width: 1400px) and (max-width: 2900px) {
  .about-area2 span {
    font-size: 5rem;
    color: #fff;
    position: relative;
    right: -14rem;
    z-index: 2;
    top: 5px;
  }
}

@media screen and (min-width: 1600px) and (max-width: 2900px) {
  .about-area2 span {
    font-size: 5rem;
    color: #fff;
    position: relative;
    right: -16rem;
    z-index: 2;
    top: 5px;
  }
}

@media screen and (min-width: 1800px) and (max-width: 2900px) {
  .about-area2 span {
    font-size: 5rem;
    color: #fff;
    position: relative;
    right: -20rem;
    z-index: 2;
    top: 5px;
  }
}

@media screen and (min-width: 2125px) and (max-width: 2900px) {
  .about-area2 span {
    font-size: 5rem;
    color: #fff;
    position: relative;
    right: -24rem;
    z-index: 2;
    top: 5px;
  }
}

@media screen and (min-width: 978px) {
.tophero:before {
    content: "";
    background: rgb(15, 15, 15);
    background: linear-gradient(180deg, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 0.7721682422969187) 17%, rgba(0, 0, 0, 0.6797312675070029) 35%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }

         .slider-size {
           width: 100%;
           max-height: 100vh; 
         }
}

@media screen and (max-width: 978px) {
  .slider-size {
  width: 100%;
    max-height: 270px;
    height: 270px;
  }
}

.herotext {
  margin-bottom: 200px;
      z-index: 9999;
}
 
.herotext1 {
font-size: 2.2rem
}

.herotext2 {
font-size: 2rem
}
 

@media screen and (max-width: 1000px) { 

  .herotext {
      display: none;
    }

  .herotext1 {
    font-size: 1rem
  }

  .herotext2 {
    font-size: .7rem
  }


}

