.loader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #ffffff;
  background-size: 100px 100px;
}
.loader img {
  width: 150px;
  object-fit: cover;
  animation: bounce infinite;
}

* {
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #(--primary);
  --primary-color-rgb: #(--primary-rgb);
  --bs-secondary: #(--secondary);
  --bs-secondary-rgb: #(--secondary-rgb);
  --white-color: #(--white);
  --white-color-rgb: #(--white-rgb);
  --gray-color: #(--gray);
  --gray-dark-color: #(--gray-dark);
  --success-color: #(--succes);
  --info-color: #(--info);
  --warning-color: #(--warning);
  --danger-color: #(--danger);
  --text-color: #(--text)
  --btn-color: #(--btn);
  --dark-color: #(--dark);
  --fs: #($fs);
  --lh: #($lh);
  --fw: #($fw);
  --gutter-width: #($gutter-width);
}

html,
body {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

body {
  font-size: var(--fs);
  font-weight: var(--fw);
  font-family: noto sans;
  line-height: var(--lh);
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  width: 1320px;
  padding-left: var(--gutter-width);
  padding-right: var(--gutter-width);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--gutter-width));
  margin-right: calc(-1 * var(--gutter-width));
}

.w-1 {
  width: 8.3333%;
}

.w-2 {
  width: 16.6666%;
}

.w-3 {
  width: 25%;
}

.w-4 {
  width: 33.3333%;
}

.w-5 {
  width: 41.6666%;
}

.w-6 {
  width: 50%;
}

.w-7 {
  width: 58.3333%;
}

.w-8 {
  width: 66.6666%;
}

.w-9 {
  width: 75%;
}

.w-10 {
  width: 83.3333%;
}

.w-11 {
  width: 91.6666%;
}

.w-12 {
  width: 100%;
}

.w-1,
.w-2,
.w-3,
.w-4,
.w-5,
.w-6,
.w-7,
.w-8,
.w-9,
.w-10,
.w-11,
.w-12 {
  padding-left: var(--gutter-width);
  padding-right: var(--gutter-width);
}

ul,
ol {
  list-style: none;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.align-start {
  align-content: flex-start;
}

.align-center {
  align-content: center;
}

.align-end {
  align-content: flex-end;
}

.align-between {
  align-content: space-between;
}

.align-around {
  align-content: space-around;
}

.align-evenly {
  align-content: space-evenly;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

.text-start {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: right;
}

.row-gap-30 {
  row-gap: 30px;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.pb {
  padding: 100px;
}

.w-c {
  margin: 0 auto;
}

.w-n {
  display: none;
}

.btn {
  color: #222222;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 10px 15px;
  margin-left: 10px;
  transition: all 0.4s linear;
}

.btn a {
  color: #222222;
  padding: 11px 30px 10px;
  font-size: 18px;
}

.btn:hover {
  background: #c77a63;
  border-radius: 30px;
}

html,
body {
  cursor: none;
}

header {
  background-color: var(--white-color);
  box-shadow: 0px 4px 20px rgba(var(--white-color), 0.05);
  padding: 20px;
}
header nav ul {
  display: flex;
  justify-content: center;
  padding-left: 10px;
}
header nav ul li span {
  display: inline-block;
  text-transform: uppercase;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #2c2a49;
}
header nav ul li span:hover {
  color: #c77a63;
}
header nav ul li i {
  margin-right: 2px;
  color: #2c2a49;
}
header nav ul li:hover {
  color: #c77a63;
}
header nav ul li.dropdown {
  position: relative;
}
header nav ul li.dropdown .dropdown-menu {
  position: absolute;
  background-color: #2c2a49;
  transform: translateY(30px);
  transition: 0.5s;
  padding: 30px;
  border-radius: 5px;
  min-width: 200px;
  left: 0;
  top: 110%;
  transform: translateY(40px) scale(0.8);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  opacity: 0;
  visibility: hidden;
  border-top: 4px solid #c77a63;
}
header nav ul li.dropdown .dropdown-menu a {
  padding: 10px 0px;
  color: white;
  display: block;
}
header nav ul li.dropdown .dropdown-menu a:hover {
  color: #c77a63;
}
header nav ul li.dropdown .dropdown-menu::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
}
header nav ul li.dropdown:hover .dropdown-menu {
  transform: translateY(0px) scale(1);
  opacity: 1;
  visibility: visible;
}

.banner {
  background-image: url("../images/banner/banner.png");
  height: 650px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.banner .banner-contant {
  padding-right: 110px;
  margin-top: 50px;
}
.banner .banner-contant span {
  color: #c77a63;
  margin: 0p 0px 15px;
  text-transform: uppercase;
}
.banner .banner-contant h1 {
  font-size: 65px;
  color: #2c2a49;
}
.banner .banner-contant p {
  margin: 0p 0px 15px;
  color: #2c2a49;
}
.banner .banner-contant .btn-2 {
  width: 175px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c77a63;
  margin-top: 20px;
  transition: all 0.1s ease;
}
.banner .banner-contant .btn-2 a {
  color: white;
}
.banner .banner-contant .btn-2:hover {
  background-color: #2c2a49;
}

.from {
  background-color: #FAF5F2;
  padding: 48px 40px 28px;
  width: 100%;
  height: 100%;
}
.from p {
  padding-bottom: 1px;
}
.from input, .from select {
  outline: none;
  border: none;
  padding: 7px 15px;
}
.from .btn-2 {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c77a63;
  transition: all 0.1s ease;
}
.from .btn-2 a {
  color: white;
}
.from .btn-2:hover {
  background-color: #2c2a49;
}

.section-titel span,
.section-titel h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
}
.section-titel span {
  color: #c77a63;
  text-transform: uppercase;
}
.section-titel h2 {
  font-size: 40px;
  color: #2b2d42;
  font-family: "Cormorant_Fallback_968cd1" !important;
}

.featured-itmes {
  padding: 60px;
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.1);
  margin-left: 11px;
}
.featured-itmes .featured-p {
  position: relative;
}
.featured-itmes .featured-p .featured-img {
  position: absolute;
  bottom: 0;
}
.featured-itmes .featured-img img {
  transition: 0.7s;
  width: 100%;
}
.featured-itmes .featured-img img:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.featured-itmes .featured-contant {
  margin-top: 80px;
  position: relative;
}
.featured-itmes .featured-contant h3 {
  font-size: 24px;
  font-family: "Cormorant_Fallback_968cd1" !important;
  color: #2b2d42;
  margin-bottom: 30px;
}
.featured-itmes .featured-contant h3 p {
  font-size: 16px;
  color: var(--gray-color);
}

.featured-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-btn a {
  padding: 25px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2);
  background-color: white;
  color: black;
  border-radius: 50%;
  transition: all 0.2s linear;
  display: inline-block;
  position: absolute;
}
.featured-btn a:hover {
  background: #c77a63;
  color: #fff;
}

.about .about-img img {
  transition: 0.7s;
  margin-right: 0px;
  height: 600px;
  margin-top: 30px;
  background-size: cover;
}
.about .about-img img:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.about .about-img .about-shap {
  position: relative;
  z-index: 1;
}
.about .about-img .about-shap .shap-about {
  position: absolute;
  width: 200px;
  height: 200px;
  left: -100px;
  top: -50px;
  bottom: -100px;
  border: 30px solid #fff;
  border-radius: 50%;
  z-index: -1;
}

.about-contant {
  text-align: center;
  margin-top: 20px;
  padding: 0px 15px 0px 40px;
  padding-top: 40px;
}
.about-contant span {
  color: #c77a63;
  margin: 0px 0px 6px;
}
.about-contant h2 {
  font-size: 60px;
  color: #2b2b2b;
}
.about-contant p {
  color: #6e6e6e;
  margin: 10px 10px 30px;
}

.about-btn {
  padding: 22px;
  background-color: #c77a63;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.2s;
}
.about-btn a {
  color: white;
}
.about-btn:hover {
  background-color: #2c2a49;
}

.section-titel span,
.section-titel h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
}
.section-titel span {
  color: #c77a63;
  text-transform: uppercase;
}
.section-titel h2 {
  font-size: 40px;
  color: #2b2d42;
  font-family: "Cormorant_Fallback_968cd1" !important;
}

.rooms-itmes-img {
  margin-left: 30px;
}
.rooms-itmes-img .rooms-img {
  transition: 0.7s;
  width: 100%;
}
.rooms-itmes-img .rooms-img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.featured-itmes-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.rooms-items {
  padding: 10px 45px;
  background: #fff;
  box-shadow: 0 5px 80px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: absolute;
  bottom: 10px;
  border-radius: 30px;
}
.rooms-items .room-contant span {
  color: #6E6E6E;
  margin: 3px;
  display: inline-block;
}
.rooms-items .room-contant h6 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c77a63;
  font-size: 17px;
  margin-right: 3px;
}

.rooms-items-2 {
  padding: 20px;
  background-color: white;
  box-shadow: 0 5px 80px rgba(0, 0, 0, 0.15);
}
.rooms-items-2 .rooms-info-contant i {
  color: #c77a63;
  margin: 0px 0px 15px;
}
.rooms-items-2 .rooms-info-contant a {
  display: block;
  color: #2b2d42;
  font-size: 30px;
  transition: all 0.2s ease;
}
.rooms-items-2 .rooms-info-contant a:hover {
  color: #c77a63;
}
.rooms-items-2 .rooms-info-contant p {
  margin-top: 17px;
}
.rooms-items-2 .rooms-info-contant .btn {
  padding: 10px;
  display: inline-block;
  margin-top: 17px;
}
.rooms-items-2 .rooms-info-contant .btn a {
  font-size: 17px;
  color: #222222;
}

.discover-img {
  height: 600px;
  width: 1140px;
  margin-right: 30px;
  background-repeat: no-repeat;
  margin-left: 50%;
}

.discover-p {
  position: relative;
}

.discover-items {
  background: white;
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 550px;
  padding: 45px 50px;
  transform: perspective(400px) rotateX(0deg);
  opacity: 1;
  transform-origin: top;
  transition: 0.7s;
  transition-delay: 0.3s;
  margin-left: 50%;
}
.discover-items .discover-contant span {
  text-transform: uppercase;
  color: #c77a63;
}
.discover-items .discover-contant h3 {
  font-size: 50px;
  color: #2B2D42;
  margin: 0px 0px 20px;
}

.amenities-itmes {
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 73px 70px;
  transition: 0.5s;
}
.amenities-itmes .amentiies-contant i {
  font-size: 64px;
  transition: all 0.2s;
  color: #6e6e6e;
  cursor: pointer;
}
.amenities-itmes .amentiies-contant i:hover {
  color: #c77a63;
}
.amenities-itmes .amentiies-contant p {
  color: #6e6e6e;
  margin-top: 10px;
}
.amenities-itmes .amentiies-contant h6 {
  color: #6e6e6e;
  font-size: 12px;
  margin-top: 10px;
}

.about-contant-us span {
  color: #c77a63;
  text-transform: uppercase;
}
.about-contant-us h3 {
  font-size: 40px;
  margin-bottom: 10px;
}
.about-contant-us p {
  color: #222222;
  font-size: 17px;
}

.about-us-itmes {
  padding: 50px 50px 50px;
  background-color: white;
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.1);
  margin-left: 17px;
  text-align: center;
}
.about-us-itmes .about-icon-itmes {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #c77a63;
  margin: 0 auto;
}
.about-us-itmes .about-icon-itmes::before {
  content: ",,";
  color: white;
  font-size: 20px;
}
.about-us-itmes .about-us-contant p {
  margin-bottom: 20px;
  color: #6E6E6E;
}
.about-us-itmes .about-us-contant h4 {
  font-size: 30px;
  margin-top: 20px;
}
.about-us-itmes .about-img-postion {
  position: relative;
}
.about-us-itmes .about-img-postion .about-us-img {
  position: absolute;
  left: 35%;
}

.about-us-img-2 {
  position: relative;
}
.about-us-img-2 img {
  width: 200px;
  height: 200px;
  position: absolute;
  left: -10px;
  bottom: -120px;
  z-index: -1;
}

.vacation {
  background-image: url("../images/Vacation/parallax-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 700px;
  display: flex;
  align-items: center;
}

.vacation-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vacation-btn .btn-2 {
  display: inline-flex;
  padding: 20px;
  background-color: #c77a63;
  margin-top: 20px;
  transition: all 0.1s ease;
}
.vacation-btn .btn-2 a {
  color: white;
}
.vacation-btn .btn-2:hover {
  background-color: #2c2a49;
}

.update-img img {
  margin-left: 10px;
}

.blog-p {
  position: relative;
}

.blog-items {
  padding: 10px 45px;
  background: #fff;
  box-shadow: 0 5px 80px rgba(0, 0, 0, 0.15);
  position: absolute;
  margin-top: -110px;
}
.blog-items .blogo-btn {
  padding: 5px 15px;
  background-color: rgba(199, 122, 99, 0.2);
  display: inline-block;
}
.blog-items .blogo-btn span {
  color: #c77a63;
}
.blog-items .blog-info-contant a {
  display: inline-block;
  color: #2c2a49;
  font-size: 24px;
  transition: all 0.2s ease;
  margin-bottom: 20px;
}
.blog-items .blog-info-contant a:hover {
  color: #c77a63;
}
.blog-items .blog-info-contant h6 {
  margin-bottom: 10px;
  font-size: 14px;
  color: #6e6e6e;
}
.blog-items .blog-info-contant .blog-btn a {
  padding: 15px 15px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2);
  background-color: white;
  color: black;
  border-radius: 50%;
  transition: all 0.2s linear;
  display: inline-block;
  margin-top: 10px;
}
.blog-items .blog-info-contant .blog-btn a:hover {
  background: #c77a63;
  color: #fff;
}

.section-titel h6 {
  color: #c77a63;
  font-size: 16px;
}
.section-titel h6 p {
  padding-top: 10px;
}

.form-itmes {
  padding: 50px 70px;
  margin: 0px 0px 30px 70px;
  background: #fff;
  box-shadow: 0 5px 80px rgba(0, 0, 0, 0.15);
}
.form-itmes input {
  outline: none;
  border: none;
  padding: 20px;
}
.form-itmes textarea {
  outline: none;
  border: none;
  padding: 25px;
}
.form-itmes .broder-bottom {
  border-bottom: 1px solid #e5e5e5;
}
.form-itmes .chekbox {
  margin-top: 50px;
}
.form-itmes .from-btn button {
  outline: none;
  border: none;
  padding: 25px 45px;
  margin-top: 10px;
  text-align: center;
  background-color: #c77a63;
  color: white;
  transition: all 0.2s linear;
}
.form-itmes .from-btn button:hover {
  background-color: #2c2A49;
}

.form-img {
  position: relative;
}
.form-img img {
  width: 200px;
  height: 200px;
  position: absolute;
  right: -10px;
  bottom: -px;
  z-index: 1;
}

footer {
  padding: 120px 0 60px;
  background-color: #252638;
}
footer .footer-contant h4 {
  color: white;
  margin-bottom: 10px;
  text-align: center;
}
footer .footer-contant p {
  color: #BEBEc3;
  text-align: center;
  margin-top: 10px;
}
footer .footer-contant .footer-icon i {
  color: white;
  margin-left: 10px;
}
footer li a {
  margin-right: 10px;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  color: #BEBEc3;
}
footer li a:hover {
  color: #c77a63;
}
footer form {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer form input {
  outline: none;
  background: transparent;
  border-color: hsla(0, 0%, 100%, 0.15);
  color: #bebec3;
  padding: 20px;
  margin-top: 10px;
}
footer .footer-btn {
  display: flex;
}
footer .btn-2 {
  width: 175px;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c77a63;
  transition: all 0.1s ease;
}
footer .btn-2 a {
  color: white;
  font-size: 12px;
  display: inline-block;
}
footer .btn-2:hover {
  background-color: #2c2a49;
}

#button {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: #c77a63;
  border-radius: 100%;
  pointer-events: none;
  z-index: 1000;
  transition: transform ease-out 10ms;
}

#stalker {
  position: fixed;
  margin-top: -15px;
  margin-left: -15px;
  width: 40px;
  height: 40px;
  background-color: #8ef1f3;
  opacity: 30%;
  border-radius: 100%;
  pointer-events: none;
  transition: transform ease-out 100ms;
  z-index: 999;
}

header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0px 0px 5px #ddd;
  transition: 0.2s linear;
  display: flex;
  background-color: white;
}

/*# sourceMappingURL=style.css.map */
