@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rajdhani:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/***** General CSS *****/

body {
  word-break: break-word;
  font-family: "Montserrat", serif;
  color: #9b9b9b;
  overflow-x: hidden;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

a {
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

p {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

h1 {
  font-size: 40px;
  line-height: 50px;
  font-family: "poppins";
  font-weight: 600;
  text-transform: uppercase;
}

h2 {
  font-size: 42px;
  line-height: 52px;
  font-family: "poppins";
  font-weight: 400;
  text-transform: uppercase;
}

h3 {
  font-size: 30px;
  line-height: 34px;
  font-family: "poppins";
  font-weight: 400;
  text-transform: uppercase;
}

h4 {
  font-size: 24px;
  line-height: 29px;
  font-family: "poppins";
  font-weight: 400;
  text-transform: uppercase;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 23px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */

.menuSec {
  padding: 14px 0;
  position: relative;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  align-items: center;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #a89c85;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

/* General site btn css */

.site-btn {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  padding: 14px 34px;
  transition: 0.9s;
  display: inline-block;
  text-transform: uppercase;
  background: #aa9e87;
  font-weight: 600;
  font-family: "poppins";
}

.site-btn:hover {
  transform: translate(0px, -2px);
  opacity: 0.7;
  color: #fff;
}

/* ============ */

header {
  position: absolute;
  overflow: hidden;
  width: 100%;
  z-index: 3;
  top: 0;
}

header .menuSec .row {
  align-items: center;
}

header .menuSec:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 18%;
  bottom: 0;
}

section.main_slider {
  position: relative;
}

section.main_slider p {
  opacity: 50%;
  margin: 24px 0;
}

.sitBtnParent {
  display: inline-block;
}

section.main_slider .sitBtnParent {
  margin-top: 10px;
}

section.main_slider img.img-fluid.bannerImg {
  width: 100%;
}

/* Destination form css start  */

section.detination {
  position: relative;
  margin-top: -100px;
}

section.detination .fromwraper {
  width: 90%;
  margin: 0px auto;
}

section.detination .fromwraper form {
  position: relative;
}

section.detination .fromwraper form .row {
  align-items: center;
}

section.detination .fromwraper form .col-lg-2.tophead {
  background: #aa9e87;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

section.detination .fromwraper form .col-lg-2.tophead h4 {
  line-height: 34px;
  letter-spacing: 3px;
}

section.detination .fromwraper form .col-lg-10.tobody {
  padding: 24px 160px 28px 24px;
  position: relative;
  background-image: url(../images/formbg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

section.detination .fromwraper form label {
  font-size: 14px;
  line-height: 24px;
  font-family: "Poppins";
  color: #000;
  text-transform: uppercase;
  margin-bottom: 14px;
}

section.detination .fromwraper form .row.inner {
  align-items: flex-end;
}

section.detination .fromwraper form input {
  width: 100%;
  background: #d5d3d3;
  border: 1px solid #c5c1bb;
  padding: 10px 12px;
  font-size: 12px;
  font-family: "Poppins";
}

section.detination .fromwraper form .inputGp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #d5d3d3;
  border: 1px solid #c5c1bb;
}

section.detination .fromwraper form .inputGp input {
  border: 0px;
}

section.detination .fromwraper form button.site-btn {
  position: relative;
  border: 0px;
  padding: 11px 30px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins";
}

section.detination .fromwraper form .col-lg-3.col-md-3.col12 {
  width: 32%;
}

section.detination .fromwraper form .col-lg-3.col-md-3.col12.cobtns {
  width: auto;
  position: absolute;
  right: 20px;
}

section.detination .fromwraper .row {
  margin: 0px;
  padding: 0px;
}

/* About css start  */

section.about-us {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

section.about-us img {
  position: relative;
  transition: 0.8s;
  cursor: pointer;
  z-index: 2;
}

section.about-us img:hover {
  filter: brightness(0.7);
  transform: translate(0px, -3px);
}

section.about-us .col-lg-6.col-md-6.col12 {
  padding: 0;
}

section.about-us .ab-wrpaerRight {
  position: relative;
  margin: 0px;
  overflow: hidden;
}

section.about-us .row {
  margin: 0px auto;
  padding: 0px;
}

section.about-us .abtext {
  padding: 40px 50px;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 20px #6e6e6e17;
  margin-top: 15%;
  margin-left: 50px;
  margin-right: 50px;
  position: relative;
  background: #fff;
}

section.about-us .abtext h3 {
  color: #000;
  line-height: 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

section.about-us .abtext h3:before {
  position: absolute;
  content: "";
  width: 24%;
  height: 2px;
  background: #a79b84;
  left: 0;
  bottom: 0;
}

section.about-us .abtext p {
  color: #7b7a7a;
}

section.about-us .abtext .sitBtnParent {
  margin-top: 10px;
}

section.about-us .abtext .sitBtnParent a {
  font-family: "Poppins";
  font-weight: 600;
}

section.about-us .abtext:before {
  position: absolute;
  content: "";
  width: 38%;
  height: 3px;
  background: #a79b84;
  left: 0;
  top: -2px;
}

section.about-us .abtext:after {
  position: absolute;
  content: "";
  width: 38%;
  height: 130px;
  background: #aa9e87;
  bottom: -130px;
  left: 0;
  /* z-index: -1; */
}

section.about-us .ab-wrpaerRight .abtext {
  text-align: right;
}

section.about-us .ab-wrpaerRight .abtext:before {
  right: 0;
  left: unset;
}

section.about-us .ab-wrpaerRight .abtext:after {
  right: 0;
  left: unset;
}

section.about-us .ab-wrpaerRight .abtext h3:before {
  right: 0;
  left: unset;
}

section.about-us .container {
  background-image: url(../images/aboutBg.png);
  background-repeat: no-repeat;
  padding: 0;
}

/* Comfort & Elegance css start */
section.confort {
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

section.confort .headtxt {
  margin-bottom: 40px;
}

section.confort .headtxt h2 {
  color: #000;
  position: relative;
  width: 80%;
  margin: 0px auto;
}

section.confort .headtxt h2 span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0px 50px;
  background: #fff;
}

section.confort .headtxt h2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #aa9e87;
  top: 27px;
  left: 0;
  right: 0;
  margin: 0px auto;
}

section.confort .headtxt p {
  color: #7b7a7a;
  margin-top: 10px;
}

section.confort .row {
  background-image: url(../images/comfortBG.png);
  background-repeat: no-repeat;
  margin: 0px auto;
  height: 550px;
  position: relative;
  background-size: 100% 100%;
}

section.confort .col-lg-3.col-md-3.coloBox {
  padding: 0px;
  position: relative;
  border: 1px solid #ffffff42;
  transition: 0.9s;
  cursor: pointer;
}

section.confort .col-lg-3.col-md-3.coloBox:hover {
  border: 1px solid white;
}

section.confort .fomfort-txt {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 20px;
  position: relative;
  transform: translate(0px, 100%);
  z-index: -1;
  background: #ffffffbd;
  transition: 1.3s;
}

section.confort .fomfort-txt h4 {
  color: #000;
  line-height: 35px;
  position: relative;
}

section.confort .fomfort-txt p {
  font-size: 13px;
  color: #0f0e0e94;
  line-height: 22px;
  position: relative;
}

section.confort .btmText {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  transition: 0.9s;
  z-index: 2;
}

section.confort .btmText h5 {
  font-size: 17px;
  color: #ffff;
  text-transform: uppercase;
  font-family: "Poppins";
}

section.confort .col-lg-3.col-md-3.coloBox:hover .fomfort-txt {
  transform: translate(0px, 0px);
  z-index: 2;
  cursor: pointer;
}

section.confort .col-lg-3.col-md-3.coloBox:hover .btmText {
  z-index: -1;
  transform: translate(0px, 37px);
  cursor: pointer;
}

/* Experience section start  */

section.experience {
  background-image: url(../images/experienceImg.png);
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0;
  background-attachment: fixed;
}

section.experience .exp-txt {
  padding: 50px 50px;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 20px #6e6e6e17;
  position: relative;
  background: #fff;
  width: 71%;
  margin: 0px auto;
}

section.experience .exp-txt h2 {
  color: #000;
}

section.experience .exp-txt h2 span {
  color: #aa9e87;
}

section.experience .exp-txt p {
  color: #7b7a7a;
  margin: 16px 0 30px;
}

/* Discover Nature Css start  */

section.nature {
  position: relative;
  overflow: hidden;
}

section.nature .natureImg {
  position: relative;
  padding-bottom: 10px;
}

section.nature .natureImg img {
  transition: 0.9s;
  position: relative;
}

section.nature .natureImg img:hover {
  filter: brightness(0.6);
  transform: translate(3px, 0px);
  cursor: pointer;
}

section.nature .natureImg:before {
  position: absolute;
  content: "";
  width: 38%;
  height: 130px;
  background: #aa9e87;
  bottom: 0px;
  left: 0;
  z-index: -1;
}

section.nature .row {
  align-items: center;
}

section.nature .nature-txt {
  position: relative;
}

section.nature .nature-txt .sitBtnParent {
  margin-top: 10px;
}

section.nature .nature-txt h2 {
  color: #000;
  padding-bottom: 5px;
}

section.nature .nature-txt h2 span {
  color: #aa9e87;
}

section.connect {
  position: relative;
  margin-top: -10px;
}

section.connect .colCenter {
  position: relative;
  padding-left: 40px;
}

section.connect ul.slick-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: -120px;
  top: 29%;
  flex-direction: column;
  width: 40px;
  justify-content: space-between;
  height: 50%;
  padding: 20px;
}

section.connect .slick-dots li button {
  padding: 0px !important;
  margin: 0px;
  width: 0px;
  height: 0px;
  border: 0px;
}

section.connect .slick-dots li button:before {
  display: none;
}

section.connect .slick-dots li {
  width: 10px;
  height: 8px;
  background: #d4cec3;
  opacity: 1 !important;
}

section.connect .slick-dots li.slick-active {
  outline: 1px solid #aa9e87;
  background: #aa9e87;
  outline-offset: 9px;
  position: relative;
}

section.connect .slick-dots li.slick-active:before {
  position: absolute;
  content: "";
  width: 160px;
  height: 1px;
  background: #aa9e87;
  left: -169px;
  top: 40%;
  z-index: -1;
}

.connectImg {
  position: relative;
}

.connectImg img {
  width: 100%;
  transition: 0.9s;
  cursor: pointer;
}

.connectImg img:hover {
  filter: brightness(0.6);
  transform: translate(0px, 2px);
}

section.connect .colCenter:before {
  position: absolute;
  content: "";
  width: 19%;
  height: 110px;
  background: #aa9e87;
  z-index: -1;
  top: -5px;
  right: 31px;
}

/* Contact Form  */

section.connect .hedext h1 {
  position: absolute;
  left: 30px;
  bottom: -10%;
  font-size: 105px;
  writing-mode: tb;
  height: 100%;
  font-weight: 400;
  color: #000;
}

section.connect .hedext h1 span {
  color: #aa9e87;
}

section.connect form {
  position: relative;
}

section.connect form label {
  display: block;
  margin-bottom: 14px;
  color: #1c1c1c;
  font-family: "Poppins";
  text-transform: uppercase;
}

section.connect form input {
  width: 100%;
  border: 0px;
  border: 1px solid #d7d7d7;
  padding: 12px 20px;
  font-family: "Poppins";
}

/* contact form sec  */

section.connect .contact .colCenter:before {
  display: none;
}

section.connect .contact form {
  margin-left: 22px;
  margin-right: 80px;
}

section.connect form .formField {
  margin-bottom: 20px;
}

section.connect form select {
  width: 100%;
  border: 1px solid #d7d7d7;
  padding: 12px 20px;
  font-family: "Poppins";
  color: #727070;
  appearance: auto;
}

section.connect form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  padding: 12px 20px;
  font-family: "Poppins";
  position: relative;
  height: 120px;
  resize: unset;
}

section.connect form textarea::placeholder {
  position: absolute;
  bottom: 15px;
  text-transform: capitalize;
}

section.connect .contact form button.site-btn {
  border: 0px;
}

section.connect .contact .colRighter {
  position: relative;
}

section.connect .contact .colRighter .contactImg {
  position: absolute;
  right: 0;
  height: 100%;
  width: 112%;
  top: -30px;
}

section.connect .contact .colRighter .contactImg img {
  width: 100%;
  transition: 0.9s;
  cursor: pointer;
}

section.connect .contact .colRighter .contactImg img:hover {
  filter: brightness(0.6);
  transform: translate(0px, 2px);
}

/* CLIENTS SLIDER SECTION START  */
/* CLIENTS SLIDER SECTION END  */

/* Footer styling start here  */

footer {
  background: #1f1e21;
  color: #fff;
  padding: 80px 80px 0px 106px;
}

footer .padds {
  padding: 70px 0px 110px 0px;
}

footer .ft-logo {
  margin-bottom: 24px;
}

footer p {
  font-family: "roboto";
  font-weight: 400;
  color: #ffffff;
  opacity: 60%;
  letter-spacing: 1px;
}

footer h3 {
  font-size: 24px;
  line-height: 34px;
  padding-bottom: 10px;
}

footer ul {
  margin: 0px;
  position: relative;
}

footer ul li:first-child {
  display: inline-block !important;
}

footer ul li {
  line-height: 35px;
}

footer ul li a {
  text-transform: uppercase;
  color: #fff;
  transition: 0.5s;
  font-size: 13px;
}

footer ul li a:hover {
  opacity: 1;
  text-decoration: underline;
  color: #bfa48f;
  font-weight: 600;
}

footer .foot-links ul li:nth-child(5) {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 100px;
}

footer .foot-links ul {
  position: relative;
  width: 70%;
  column-count: 2;
}

footer .follow ul {
  display: flex;
  align-items: center;
  gap: 16px;
}

footer .follow ul li a i {
  width: 40px;
  height: 40px;
  border-radius: 45px;
  color: #fff;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  font-size: 17px;
}

footer .follow ul li a i:hover {
  background: #bfa48f;
  border: 1px solid #bfa48f;
  color: #fff;
}

footer .follow ul li a:hover {
  text-decoration: unset !important;
}

.footer-btm {
  padding: 20px 0;
  position: relative;
}

.footer-btm p {
  margin: 0px;
  color: #fff;
}

footer .foot-links {
  position: relative;
  padding: 72px 70px 70px 90px;
}

footer .foot-links:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 125%;
  background: #363537;
  left: 0px;
  bottom: -104px;
}

footer .foot-links:after {
  position: absolute;
  content: "";
  width: 1px;
  right: 54px;
  height: 125%;
  background: #363537;
  bottom: -104px;
}

.footer-btm:before {
  position: absolute;
  content: "";
  width: 115%;
  left: -120px;
  top: 0;
  background: #363537;
  height: 1px;
}

footer .ft-logo h2 {
  font-weight: 500;
}

/* ================================== */

/* Footer Mail section css st  */

section.mail-ft {
  position: relative;
  margin-bottom: -50px;
}

section.mail-ft .mailWraper {
  width: 80%;
  margin: 0px auto;
}

section.mail-ft .col-lg-4.col-md-4.col-12 {
  padding: 0;
}

section.mail-ft .connectLinks {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #161617;
  padding: 20px 20px 20px 0px;
  transition: 0.9s;
  cursor: pointer;
}

section.mail-ft .connectLinks .connecIcon {
  width: 50px;
  height: 50px;
  background: #292929;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.9s;
  cursor: pointer;
}

section.mail-ft .connectLinks .connecIcon i {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  transition: 0.9s;
}

section.mail-ft .connectLinks .conneTxt {
  position: relative;
}

section.mail-ft .connectLinks .conneTxt h6 {
  font-size: 14px;
  letter-spacing: 3px;
  margin: 0px;
  text-transform: uppercase;
  color: #c1c1c3;
  font-family: "Rajdhani", sans-serif;
}

section.mail-ft .connectLinks .conneTxt a {
  transition: 0.9s;
  color: #c1c1c3;
}

section.mail-ft .connectLinks:hover .connecIcon {
  transform: translate(0px, -2px);
  background: #fff;
}

section.mail-ft .connectLinks:hover .connecIcon i {
  color: #000;
}

section.mail-ft .connectLinks:hover a {
  text-decoration: underline;
  color: #fff;
}

section.mail-ft .connectLinks:hover h6 {
  color: #fff;
}

section.mail-ft .mailWraper .row {
  margin: 0px auto;
  padding: 0;
  box-shadow: 0px 0px 20px 20px #1211110a;
}

section.mail-ft .differCol .connectLinks {
  background: #aa9e87;
}

section.mail-ft .differCol .connectLinks h6 {
  color: #fff;
}

section.mail-ft .differCol .connectLinks a {
  color: #fff;
}

/* ================================== */
/* ================================== */
/* ================================== */
/* customer section start  */

section.slidersec {
  padding-bottom: 60px;
  padding-top: 100px;
  position: relative;
}

section.special-deals .heatest.row p {
  float: right;
  opacity: 0.6;
}

section.slidersec .headtext {
  text-align: center;
}

section.slidersec .headtext p {
  color: #0e0d0d94;
  font-weight: 500;
  padding-top: 5px;
}

section.slidersec .customs {
  position: relative;
  padding-left: 70px;
  padding-top: 30px;
  padding-bottom: 50px;
}

section.slidersec .customs h3 {
  margin: 0;
  font-size: 25px;
  line-height: 35px;
  font-family: "Montserrat";
  color: #000;
  letter-spacing: 2px;
}

section.slidersec .customs h6 {
  font-size: 12px;
  color: #bfa48f;
  font-family: "Poppins";
}

section.slidersec .customs p {
  color: #0e0d0d94;
  font-weight: 500;
  padding-top: 5px;
}

section.slidersec .customs img.rate {
  display: block;
  width: auto;
}

section.slidersec .customs:after {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(../images/bottomQuote.png);
  background-size: 100% 100%;
  left: -12px;
  bottom: -30px;
  z-index: 12;
}

section.slidersec .product-slider .imgwrap img {
  width: 90%;
  display: table;
  margin: 0 auto;
}

section.slidersec .customs:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 60px;
  background-image: url(../images/topQuote.png);
  background-size: 100% 100%;
  right: -10px;
  top: -10px;
}

section.slidersec .slick-list {
  padding: 70px 10px;
  position: relative;
}

section.slidersec .row {
  align-items: center;
}

/* slider settings  */

section.slidersec .itme {
  opacity: 1;
}

section.slidersec .product-slider-1 {
  position: relative;
  padding-left: 40px;
}

section.slidersec .product-slider-1 .slick-active .imgwrap {
  position: relative;
  margin: 10px 10px 10px;
  margin-top: 80px;
  width: 60%;
  float: right;
}

section.slidersec .product-slider .imgwrap {
  position: relative;
}

section.slidersec .product-slider .imgwrap:before {
  position: absolute;
  content: "";
  right: 20px;
  top: -11px;
  height: 109%;
  width: 56%;
  border: 1px solid #bfa48f;
  z-index: -1;
  border-left: 0px;
  border-radius: 0px 10px 10px 0px;
}

section.slidersec .product-slider-1:before {
  position: absolute;
  content: "";
  width: 78px;
  right: 0px;
  height: 1px;
  top: 52%;
  background: #a1a1a152;
  left: 111px;
  margin: 0px auto;
  display: inline-block;
}

section.slidersec .product-slider-1 button.slick-prev.slick-arrow {
  display: none !important;
}

section.slidersec .product-slider button.slick-next.slick-arrow {
  display: none !important;
}

section.slidersec .product-slider-1 ul.slick-dots {
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: absolute;
  top: 0;
  left: 10px;
  width: 0;
}

section.slidersec .row {
  align-items: center;
}

section.slidersec ul.slick-dots li.slick-active button {
  background: rgb(183, 134, 40);
  background: linear-gradient(356deg,
      rgba(183, 134, 40, 1) 15%,
      rgba(218, 164, 21, 1) 52%,
      #b78628 99%);
}

section.slidersec ul.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
}

section.slidersec .slick-dots li.slick-active button:before {
  display: none;
}

section.slidersec .slick-dots li button:before {
  display: none;
}

section.slidersec .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #b7b7b7;
  border: 1px solid #fff;
  border-radius: 65px;
  box-sizing: border-box;
}

section.slidersec ul.slick-dots li.slick-active button {
  background: #b7b7b7;
  opacity: 1;
  border-radius: 65px;
  outline: 1px solid #b78628;
  margin: 0px;
  padding: 0;
  outline-offset: 8px;
}

/* customere section end  */

section.slidersec h2 {
  color: #000;
}

/* GENERAL BUTTON SECTION STYLING  */

/* Arrows  */

.slick-prev:before {
  content: "\f0d9";
  /* Unicode for a left arrow */
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 29%;
  color: #000;
  font-family: "Font Awesome 5 Free";
  /* Correct font family */
  font-weight: 900;
  /* Needed for solid icons */
  font-size: 30px;
}

.slick-next:before {
  content: "\f0da";
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 29%;
  color: #000;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 30px;
}

.slick-prev:hover {
  background: #aa9e87;
  border: 1px solid #aa9e87;
  opacity: 1;
  cursor: pointer;
}

.slick-next:hover {
  background: #aa9e87;
  border: 1px solid #aa9e87;
  opacity: 1;
  cursor: pointer;
}

.slick-prev,
.slick-next {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 1px solid #fff;
  transition: 0.5s;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 10px 11px 20px 3px #44444461;
}

section.slidersec button.slick-prev.slick-arrow {
  left: 10px;
  z-index: 12;
  top: 57%;
}

section.slidersec .product-slider .item .imgwrap {
  padding-right: 20px;
}

/* ======== */
footer .follow ul li a i.fab.fa-twitter {
  position: relative;
}

footer .follow ul li a i.fab.fa-twitter:before {
  position: absolute;
  content: url(../images/twiiterImg.png);
}

section.slidersec .product-slider-1 .slick-current {
  position: relative;
}

section.slidersec .product-slider-1 .slick-current .imgwrap {
  width: auto;
  transform: scale(1.2) translate(0px, -20px);
  float: unset;
}

/* =============================== */

section.slidersec .product-slider-1 .slick-current::before {
  bottom: -12px;
  position: absolute;
  content: "";
  right: -24px !important;
  top: 17px;
  height: 95%;
  width: 58%;
  border: 1px solid #bfa48f;
  z-index: -1;
  border-left: 0px;
  border-radius: 0px 10px 10px 0px;
  display: inline-block;
}

section.slidersec .product-slider-1:after {
  position: absolute;
  content: "";
  width: 70px;
  right: 113px;
  top: 140px;
  height: 140px;
  background: transparent;
  border: 1px solid #bfa48f;
  border-right: 0px;
  border-radius: 10px 0px 0px 10px;
}

section.detination .fromwraper form span {
  font-size: 14px;
  line-height: 24px;
  font-family: "Poppins";
  color: #000;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

section.detination .fromwraper form button.site-btn span {
  margin: 0px;
}

@media (max-width: 1366px) {
  section.about-us .abtext {
    margin-top: 14%;
    margin-left: 40px;
    margin-right: 50px;
    padding: 30px 30px;
  }

  section.confort .headtxt h2 span {
    padding: 0px 20px;
  }

  section.confort .row {
    height: 500px;
  }

  section.nature .natureImg {
    padding-right: 32px;
  }

  section.connect .ul.slick-dots li.slick-active button {
    outline: unset !important;
  }

  section.slidersec .product-slider .item .imgwrap {
    padding-right: 0px;
  }

  section.slidersec .customs {
    position: relative;
    padding-left: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  section.slidersec button.slick-prev.slick-arrow {
    left: -10px;
    z-index: 12;
    top: 57%;
  }

  section.slidersec .customs:after {
    width: 50px;
    height: 50px;
  }

  section.slidersec .customs:before {
    width: 50px;
    height: 50px;
  }

  section.slidersec .product-slider-1 .slick-current::before {
    height: 92%;
    width: 58%;
  }

  section.slidersec .product-slider-1:after {
    width: 70px;
    right: 90px;
    top: 140px;
    height: 120px;
  }

  section.slidersec .product-slider .imgwrap:before {
    right: 0px;
  }

  footer .foot-links {
    position: relative;
    padding: 60px 0px 40px 60px !important;
  }

  footer .padds {
    padding: 50px 0px 40px 0px;
  }

  footer .foot-links:before {
    height: 113%;
    left: -30px;
    bottom: -57px;
  }

  footer .foot-links:after {
    height: 113%;
    bottom: -57px;
    right: 54px;
  }

  section.connect .hedext h1 {
    font-size: 95px;
  }

  footer .foot-links {
    padding: 60px 0px 40px 30px !important;
  }
}

@media (max-width: 1024px) {
  section.main_slider h1 {
    font-size: 30px;
    line-height: 40px;
    margin: 0px;
  }

  .menuSec {
    padding: 10px 0;
  }

  section.main_slider p {
    font-size: 13px;
    opacity: 1;
    margin: 10px 0;
  }

  section.detination .fromwraper form .col-lg-2.tophead h4 {
    letter-spacing: 1px;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
  }

  section.detination .fromwraper form .col-lg-10.tobody {
    padding: 16px 135px 20px 10px;
  }

  section.detination .fromwraper form button.site-btn {
    font-size: 11px;
    width: 110px;
    padding: 9px 0;
  }

  section.detination .fromwraper form .col-lg-3.col-md-3.col12.cobtns {
    right: 10px;
  }

  section.detination .fromwraper {
    width: 100%;
  }

  section.detination .fromwraper form .col-lg-3.col-md-3.col12 {
    width: 33%;
  }

  section.detination {
    margin-top: -60px;
  }

  section.about-us .abtext {
    margin-top: 9%;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px 20px;
  }

  section.about-us .abtext p {
    font-size: 12px;
    line-height: 21px;
  }

  section.confort .headtxt h2 {
    width: 100%;
    font-size: 40px;
    line-height: 50px;
  }

  section.confort .row {
    height: 420px;
  }

  section.confort .fomfort-txt h4 {
    font-size: 20px;
    line-height: 28px;
  }

  section.confort .fomfort-txt {
    padding: 20px 10px;
  }

  section.experience .exp-txt p {
    font-size: 13px;
  }

  section.experience .exp-txt p br {
    display: none;
  }

  section.nature .nature-txt h2 {
    font-size: 30px;
    line-height: 40px;
    padding: 0;
  }

  section.nature .nature-txt p br {
    display: none;
  }

  section.nature .nature-txt p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .site-btn {
    font-size: 12px;
    padding: 10px 20px;
  }

  section.nature .natureImg {
    padding-right: 0px;
  }

  section.connect .hedext h1 {
    font-size: 85px;
  }

  section.slidersec .headtext p br {
    display: none;
  }

  section.slidersec .headtext p {
    font-size: 13px;
    line-height: 23px;
    margin: 0 40px;
  }

  section.slidersec .customs h3 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0px;
  }

  section.slidersec .customs {
    position: relative;
    padding-left: 0px;
    padding-top: 0px;
    padding-bottom: 10px;
  }

  section.slidersec button.slick-prev.slick-arrow {
    display: none;
  }

  section.slidersec button.slick-next.slick-arrow {
    display: none;
  }

  section.slidersec .product-slider-1 .slick-current::before {
    height: 81%;
    width: 55%;
    top: 27px;
    right: -15px !important;
  }

  section.slidersec .product-slider-1:after {
    right: 70px;
    top: 140px;
    height: 100px;
  }

  section.slidersec .product-slider-1:before {
    width: 55px;
    right: 0px;
    height: 1px;
    top: 52%;
    left: 65px;
  }

  section.mail-ft .mailWraper {
    width: 100%;
  }

  footer {
    padding: 60px 40px 0px 50px;
  }

  footer p br {
    display: none;
  }

  footer p {
    font-size: 13px;
    line-height: 22px;
  }

  footer .foot-links {
    padding: 60px 0px 40px 0px !important;
  }

  footer .foot-links ul {
    width: auto;
  }

  footer .foot-links:before {
    height: 106%;
    left: -20px;
    bottom: -47px;
  }

  footer .foot-links:after {
    height: 104%;
    bottom: -48px;
    right: 30px;
  }
}

@media (max-width: 480px) {
  header {
    position: unset;
    background: #000;
  }

  header .menuSec img {
    display: table;
    margin: 0px auto;
  }

  section.main_slider img.img-fluid.bannerImg {
    height: 400px;
  }

  section.main_slider {
    text-align: center;
  }

  section.main_slider .banner_text {
    text-align: center;
  }

  section.main_slider p br {
    display: none;
  }

  section.main_slider p {
    font-size: 12px;
    line-height: 23px;
    padding: 0px 10px;
  }

  section.detination {
    margin: 0px;
    padding: 40px 0;
  }

  section.detination .fromwraper form .col-lg-2.tophead h4 {
    font-size: 24px;
    line-height: 35px;
  }

  section.detination .fromwraper form .col-lg-3.col-md-3.col12 {
    width: 100%;
    text-align: center;
  }

  section.detination .fromwraper form .col-lg-10.tobody {
    padding: 40px 20px;
    background-size: cover;
  }

  section.detination .fromwraper form .row.inner {
    justify-content: flex-start;
    gap: 30px;
    display: flex;
  }

  section.detination .fromwraper form label {
    display: block;
    text-align: left;
    font-size: 16px;
    margin-bottom: 10px;
  }

  section.detination .fromwraper form input {
    background: #fff;
    padding: 14px 10px;
    font-size: 13px;
  }

  section.detination .fromwraper form span {
    display: block;
    text-align: left;
    font-size: 16px;
    margin-bottom: 10px;
  }

  section.detination .fromwraper form .inputGp input {
    background: #fff;
    padding: 14px 10px;
    font-size: 13px;
  }

  section.detination .fromwraper form .col-lg-3.col-md-3.col12.cobtns {
    position: unset;
    width: 100%;
    text-align: center;
  }

  section.detination .fromwraper form button.site-btn {
    padding: 16px 24px;
    width: auto;
  }

  section.detination .fromwraper form .col-lg-3.col-md-3.col12.cobtns .sitBtnParent {
    width: 100%;
    display: block;
  }

  section.about-us {
    padding: 60px 0;
    text-align: center;
  }

  section.about-us .abtext {
    margin: 20px;
  }

  section.about-us .ab-img {
    margin: 30px 0;
  }

  section.about-us .ab-wrpaerRight .abtext {
    text-align: center;
    margin-bottom: 50px;
  }

  section.about-us .abtext:before {
    right: 0;
    left: 0;
    margin: 0px auto;
  }

  section.about-us .abtext h3:before {
    right: 0;
    left: 0;
    margin: 0px auto;
  }

  section.about-us .ab-wrpaerRight .abtext:before {
    right: 0;
    left: 0;
  }

  section.about-us .ab-wrpaerRight .abtext h3:before {
    right: 0;
    left: 0;
  }

  section.confort .headtxt h2 {
    font-size: 25px;
    line-height: 35px;
  }

  section.confort .row {
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
  }

  section.confort .fomfort-txt p br {
    display: none;
  }

  section.confort .fomfort-txt {
    padding: 40px 50px;
  }

  section.experience {
    padding: 60px 0;
  }

  section.experience .exp-txt {
    width: 90%;
    padding: 30px 20px;
  }

  section.experience .exp-txt h2 {
    font-size: 24px;
    line-height: 30px;
  }

  section.experience .exp-txt p {
    margin: 10px 10px 15px;
    font-size: 12px;
    line-height: 19px;
  }

  section.nature .natureImg img {
    display: table;
    margin: 0px auto;
  }

  section.nature {
    padding-top: 50px;
    text-align: center;
  }

  section.nature .nature-txt {
    padding-top: 20px;
    margin-bottom: 40px;
  }

  section.nature .nature-txt h2 {
    font-size: 24px;
    line-height: 34px;
  }

  section.connect .colCenter {
    padding: 0px;
  }

  section.connect {
    position: relative;
    margin: 0px;
    padding: 30px 30px;
  }

  section.connect ul.slick-dots {
    display: none;
  }

  section.connect .hedext h1 {
    position: unset;
    writing-mode: unset;
    font-size: 35px;
    line-height: 43px;
  }

  section.connect .contact form {
    margin: 0px auto;
  }

  section.connect .item {
    margin: 0px;
  }

  section.connect .contact form .row {
    margin: 0px auto;
  }

  section.connect .contact .colRighter .contactImg {
    position: unset;
    width: auto;
    margin-top: 40px;
  }

  section.slidersec {
    padding-top: 50px;
  }

  section.slidersec h2 {
    font-size: 25px;
    line-height: 35px;
  }

  section.slidersec .headtext p {
    margin: 0px;
    font-size: 12px;
    line-height: 22px;
  }

  section.slidersec .customs p {
    font-size: 12px;
    line-height: 23px;
  }

  section.slidersec .customs {
    margin-bottom: 40px;
  }

  section.slidersec .slick-list {
    padding: 30px 10px;
  }

  section.slidersec .product-slider-1 ul.slick-dots {
    display: none !important;
  }

  section.slidersec .product-slider-1 .slick-current::before {
    display: none;
  }

  section.slidersec .product-slider-1:before {
    display: none;
  }

  section.slidersec .product-slider-1 .slick-current .imgwrap {
    transform: unset;
  }

  section.slidersec .product-slider-1:after {
    display: none;
  }

  section.slidersec .product-slider-1 .slick-active .imgwrap {
    width: auto;
    float: unset;
    margin-top: 20px;
  }

  section.slidersec .product-slider-1 {
    padding-left: 0px;
  }

  footer {
    padding: 60px 40px 0px;
    overflow: hidden;
  }

  section.mail-ft {
    margin: 0px;
  }

  footer .padds {
    padding: 0px;
  }

  footer .foot-links:before {
    display: none;
  }

  footer .foot-links:after {
    display: none;
  }

  .footer-btm {
    margin-top: 50px;
  }

  .footer-btm:before {
    width: 125%;
    left: -50px;
  }

  section.slidersec button.slick-next.slick-arrow {
    display: none !important;
  }

  section.slidersec button.slick-prev.slick-arrow {
    display: none !important;
  }
}







/*new css*/


footer .container {
  width: 100%;
  margin: auto !important;
}

button.slick-prev.slick-arrow {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 1px solid #fff;
  transition: 0.5s;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 10px 11px 20px 3px #44444461;
}


button.slick-next.slick-arrow {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 1px solid #fff;
  transition: 0.5s;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 10px 11px 20px 3px #44444461;
  right: -40px;
}




ul.slick-dots {
  margin-top: 180px;
}



section.connect form .formField {
  margin-bottom: 0px;
}



section.confort .col-lg-3.col-md-3.coloBox {
  margin-bottom: 0px;
}



.container {
  width: 1320px;
}

footer#colophon {
  display: none;
}



.post-content footer.post-footer.item-footer {
  background: transparent;
  padding: 0px !important;
}



.search03 input {
  background: transparent !important;
}

.search03 span.btn-text {
  margin-bottom: 0px !important;
  color: white !important;
  background: #aa9e87;
}

.search03 button.button {
  background: #aa9e87;
}


section.detination {
  z-index: 2;
}


header.post-header {
  position: relative;
}



.room-top-section button.slick-next.slick-arrow {
  right: 20px;
}



.room-top-section {}

.room-top-section button.slick-next.slick-arrow {
  right: 20px;
}

.room-template-default .room-top-section {
  margin-top: 80px;
}

.room-template-default .menuSec {
  background: #f3eee7;
}




section.confort .row {
  background-image: url(https://demolinksphp8.com/shree-nikunj/wp/wp-content/uploads/2025/01/20250106210033_12-IMG-20241120-WA0031.png);
}



section.experience {
  background-image: url(https://demolinksphp8.com/shree-nikunj/wp/wp-content/uploads/2024/12/experienceImg.png);
}




section.main_slider p {
  color: white;
  opacity: 1;
}





.newfooter0 .footer-social.padds * {
  text-align: center !important;
  display: flex;
  justify-content: center;
}

.newfooter0 .footer-social.padds {
  padding: 0px !important;
}

.newfooter0 .footer-btm {
  padding-bottom: 0px !important;
  margin-bottom: -30px;
}

.newfooter0 .footer-btm .col-12.text-center {
  padding-bottom: 10px !important;
  margin: 0px;
}



section.gallerysect h5 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
}



.banner_text h1 {
  font-size: 35px;
}



section.gallerysect .sitBtnParent {
  text-align: center;
  align-items: center;
  display: block;
  margin-bottom: 50px;
}




.search03 span.btn-text:hover {
  background: #ab916c;
}


.woocommerce-page .slicknav_menu {
  display: block;
}






section.confort .col-lg-3.col-md-3.coloBox {
  width: 216px;
}

section.confort .container {
  width: 1600px !important;
}


section.confort .row {
  margin: 0px 2px !important;
}



.fomfort-txt {
  padding-top: 93px !important;
}



section.detination .fromwraper {
  width: 76%;
  margin-top: 60px;
}

section.detination .fromwraper .elementor-widget-container {
  padding: 20px !important;
}

section.detination .fromwraper .elementor-widget-container label.cs-form-label {
  font-size: 14px;
  padding-bottom: 0px !important;
  margin-bottom: 0px;
}




section.about-us .abtext:after {
  background: #d9d1c3;
}


section.about-us .abtext:before {
  background: #d9d1c3;
}

section.about-us .ab-wrpaerRight .abtext {
  text-align: left;
}

section.about-us .ab-wrpaerRight .abtext h3:before {
  right: 0;
  left: 0;
}



h3 {
  font-size: 25px !important;
}

section.gallerysect h5 {
  font-size: 25px;
}

section.confort .headtxt h2 span {
  font-size: 25px;
}


h1.entry-title {
  font-size: 25px !important;
}



a.site-btn {
  background: #aa9e87;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: var(--btn-height);
  border: none;
  border-radius: var(--btn-radius);
  color: var(--btn-color);
  font-family: var(--btn-font);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  line-height: 1;
  text-align: center;
  transition: 0.4s;
  cursor: pointer;
}



footer {
  background: #F3EEE7;
}



footer h3 {
  color: black;
}

footer .follow * {
  color: black !important;
  border-color: black !important;
}

footer i.fab.fa-twitter {
  color: black !important;
}

footer i.fab.fa-twitter::before {
  filter: brightness(0);
}



.footer-btm * {
  margin: 0px;
  color: #000000 !IMPORTANT;
  opacity: 1;
}



footer .container {
  width: 100%;
}



.htmlomain0 .container {
  width: 100%;
}



.htmlomain0 section.detination .fromwraper {
  width: 96%;
  margin-top: 60px;
}




.posts.cs-rooms .slider-arrows button.slick-arrow {
  padding: 0px !important;
  width: 10%;
  height: 10%;
  margin: 0px !important;
}

.posts.cs-rooms .slider-arrows button.slick-arrow::before {
  top: 2px !important;
  padding-top: 2px;
  padding: 0px !important;
  margin: 0px !important;
}



.post-content.cs-room-content h2.post-title.item-title a {
  font-size: 25px !important;
}



header.post-header {
  margin-bottom: 20px !important;
}






.room-availability .container {
  width: 90%;
}



.cs-room-booking .room-booking-title h4 {
  text-transform: capitalize;
}




header.page-title-large.page-title-section {
  z-index: 1;
}



a.site-btn {
  font-family: 'Poppins';
}



button.button.cs-btn-color-black.cs-btn-rounded {
  background: #aa9e87;
}





a.site-btn {
  font-family: 'Poppins';
  text-transform: uppercase;
}






.cs-room-booking-wrap .room-booking-title span.base-price {
  margin: 0px 5px;
}

footer h3 {
  font-size: 20px !important;
}




.room-template-default .menuSec .col-md-3 img {
  filter: invert(1);
}

.menuSec ul#menu li a {
  color: black !important;
}

.menuSec {
  background: #F3EEE7;
}








input.wpcf7-form-control.wpcf7-submit.has-spinner {
  font-size: 14px;
  line-height: 24px;
  font-family: "Poppins" !important;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
  margin-bottom: 0px !important;
  color: white !important;
  background: #aa9e87;
}



.contform0 label {
  font-size: 14px;
}

.contform0 input {
  height: 37px;
}



.aboutp020 .elementor-widget-text-editor {
  padding: 40px 50px;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 20px #6e6e6e17;
  margin-top: 15%;
  margin-right: 50px;
  position: relative;
  background: #fff;
}



.aboutp020 .e-con-inner {
  padding: 0px !important;
  max-width: 1290px !important;
}


.aboutp020 p {
  color: #7b7a7a;
  font-family: 'Jost';
  font-size: 16px;
}



.aboutp020 .elementor-widget-text-editor:before {
  position: absolute;
  content: "";
  width: 38%;
  height: 3px;
  background: #a79b84;
  left: 0;
  top: -2px;
  background: #d9d1c3;
}






.aboutp020 .elementor-widget-text-editor:after {
  position: absolute;
  content: "";
  width: 38%;
  height: 130px;
  background: #d9d1c3;
  left: 0px;
  top: 276px;
}





section.detination .fromwraper .elementor-widget-container {
  padding: 5px !important;
}



.sitBtnParent a.site-btn {
  padding: 9px 10px;
  font-size: 14px;
}


.post-content.cs-room-content h2.post-title.item-title a {
  font-size: 20px !important;
}



.room-template-default .entry-content h4.elementor-heading-title.elementor-size-default {
  font-size: 13px;
}


h4.room-availability-title {
  font-size: 13px !important;
}





.single-room .cs-info-box .cs-info-box-content h6 {
  font-size: 14px !important;
}



button.applyBtn.btn.btn-sm.btn-primary {
  background: #aa9e87 !important;
  border: 2px solid #aa9e87 !important;
}


.cs-room-booking .cs-room-booking-wrap .room-booking-title h4 {
  font-size: 13px;
}






.single-room aside#secondary {
  margin: 0px 220px;
}

.cs-room-booking button.button.cs-btn-color-black.cs-btn-rounded {
  width: 27%;
  font-size: 15px;
  padding: 0px !important;
  margin: 0px !important;
  height: 44px;
}


.room-availability .container {
  width: 60%;
}



footer h3 {
  font-size: 16px !important;
}

footer {
  padding-top: 30px !important;
}

footer .follow ul li a i {
  width: 30px;
  height: 30px;
}

.footer-btm p {
  font-size: 13px;
}






.single-room header.post-header .item-subtitle {
  display: none;
}



.cs-room-booking .cs-room-booking-wrap h5.csf-title {
  font-size: 13px;
}

.cs-room-booking .cs-room-booking-wrap label {
  font-size: 13px;
}

.cs-room-booking .cs-room-booking-wrap .total-price {
  font-size: 13px;
}



.cs-room-booking .room-booking-title span {
  font-size: 13px;
}

.cs-room-booking .room-booking-title span.base-price {
  font-size: 13px;
}


.cs-room-booking .cs-room-booking-wrap .csf-pd-label {
  font-size: 13px;
}

.cs-room-booking .cs-room-booking-wrap .csf-pd-value {
  font-size: 13px;
}



.cs-reservation-form.style-banner-2.style-banner.cs-form-square button.button {
  padding: 0px !important;
  height: 10px !important;
  min-height: 40px !important;
  width: 80%;
}




.aboutp020 .elementor-widget-text-editor h3:before {
  position: absolute;
  content: "";
  width: 24%;
  height: 2px;
  background: #a79b84;
  left: 10;
  bottom: 0;
  top: 88px;
}




button.button.cs-btn-color-black.cs-btn-rounded {
  border-radius: 0px !important;
  text-transform: uppercase;
  height: 40px !important;
  font-family: Poppins;
}




.bookbut03 a.elementor-button {
  background: #aa9e87;
  font-family: "Poppins";
  text-transform: uppercase;
  font-size: 14px;
  border: 0px !important;
  border-radius: 0px !important;
  padding: 10px;
}




.room-template-default .room-availability {
  display: none;
}

.room-template-default aside#secondary {
  display: none;
}



img.custom-logo {
  filter: invert(1);
}





a.custom-logo-link img.custom-logo {
  margin: 0;
}




footer .container {
  width: 100%;
  margin: auto !important;
}


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1500px) {
    
    
   .main {
    background: #f3eee7 !important;
}
    
    body.wp-singular.single.postid-2435{
   background: #f3eee7 !important;
    }
            .newfooter0 .footer-btm {
            padding-bottom: 0px !important;
            margin: 80px 0 0 0;
        }
        .footer-btm:before {
            position: absolute;
            content: "";
            width: 100%;
            left: 0;
            top: 0;
            background: #363537;
            height: 1px;
        }  

  .row>* {
    margin-bottom: 0 !important;
  }

  header {
    position: unset;
    overflow: hidden;
    width: 100%;
    z-index: 3;
    top: 0;
  }
      section.detination .fromwraper .elementor-widget-container {
    padding: 20px !important;
    margin: -30px 0 0 0;
    position: relative;
    z-index: 999;
}
 section.confort .container {
    width: 100% !important;
    padding: 0;
}
section.confort .col-lg-3.col-md-3.coloBox {
    width: 16.6%;
    overflow-x: hidden;
}



.aboutp020 .elementor-widget-text-editor:after {
    position: absolute;
    content: "";
    width: 38%;
    height: 130px;
    background: #d9d1c3;
    left: 0px;
    top: 256px;
}

.elementor .elementor-hidden-desktop {
    display: block !important;
    padding-bottom: 0 !important;
}
.aboutp020 .elementor-widget-text-editor {
    padding: 40px 50px;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 20px #6e6e6e17;
    margin-top: 15%;
    margin-right: 50px;
    position: relative;
    background: #fff;
    margin-bottom: 25% !important;
}
.elementor-73 .elementor-element.elementor-element-45a1740b > .elementor-container {
    min-height: 500px !important;
}



    .elementor-75 .elementor-element.elementor-element-4bda847 > .elementor-element-populated {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 80px 30px 80px 30px !important;
}

.elementor-75 .elementor-element.elementor-element-4c1eb2f5 > .elementor-element-populated {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 80px 30px 80px 30px !important;
}
.contform0 label {
    width: 100%;
    font-size: 14px;
}

}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    .elementor-75 .elementor-element.elementor-element-4bda847 > .elementor-element-populated {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 80px 30px 80px 30px !important;
}

.elementor-75 .elementor-element.elementor-element-4c1eb2f5 > .elementor-element-populated {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 80px 30px 80px 30px !important;
}
.contform0 label {
    width: 100%;
    font-size: 14px;
}
    
    
    
    section.confort .container {
    width: 100% !important;
    padding: 0;
}
section.confort .col-lg-3.col-md-3.coloBox {
    width: 16.6%;
    overflow-x: hidden;
}
            .newfooter0 .footer-btm {
            padding-bottom: 0px !important;
            margin: 80px 0 0 0;
        }
        .footer-btm:before {
            position: absolute;
            content: "";
            width: 100%;
            left: 0;
            top: 0;
            background: #363537;
            height: 1px;
        }   

  .row>* {
    margin-bottom: 0 !important;
  }

  header {
    position: unset;
    overflow: hidden;
    width: 100%;
    z-index: 3;
    top: 0;
  }
  
  
  
      section.detination .fromwraper .elementor-widget-container {
    padding: 20px !important;
    margin: -30px 0 0 0;
    position: relative;
    z-index: 999;
}



.aboutp020 .elementor-widget-text-editor:after {
    position: absolute;
    content: "";
    width: 38%;
    height: 130px;
    background: #d9d1c3;
    left: 0px;
    top: 316px;
}

.elementor .elementor-hidden-desktop {
    display: block !important;
    padding-bottom: 0 !important;
}
.aboutp020 .elementor-widget-text-editor {
    padding: 40px 50px;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 20px #6e6e6e17;
    margin-top: 15%;
    margin-right: 50px;
    position: relative;
    background: #fff;
    margin-bottom: 25% !important;
}
.elementor-73 .elementor-element.elementor-element-45a1740b > .elementor-container {
    min-height: 500px !important;
}


    .main {
    background: #f3eee7 !important;
}
    
    body.wp-singular.single.postid-2435{
   background: #f3eee7 !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main {
    background: #f3eee7 !important;
}
    
    body.wp-singular.single.postid-2435{
   background: #f3eee7 !important;
    }
    .elementor .elementor-hidden-mobile {
    display: block !important;
}
        .newfooter0 .footer-btm {
            padding-bottom: 0px !important;
            margin: 80px 0 0 0;
        }
        .footer-btm:before {
            position: absolute;
            content: "";
            width: 100%;
            left: 0;
            top: 0;
            background: #363537;
            height: 1px;
        }   
   .newfooter0 .footer-btm {
    padding-bottom: 0px !important;
    margin: 80px 0 0 0;
}
.footer-btm:before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    background: #363537;
    height: 1px;
}    
    
    
  .row>* {
    margin-bottom: 0 !important;
  }

  header {
    position: unset;
    overflow: hidden;
    width: 100%;
    z-index: 3;
    top: 0;
  }

  section.main_slider h1 {
    font-size: 40px;
    line-height: 40px;
    margin: 0px;
  }










  section.confort .row {
    margin: 0px 2px !important;
    flex-direction: column;
    background-position: center;
    height: auto;
    background-size: cover;
  }

  section.confort .container {
    width: 100% !important;
  }

  section.confort .col-lg-3.col-md-3.coloBox {
    width: 100%;
    overflow: hidden;
  }

  section.confort .btmText {
    position: absolute;
    bottom: 30%;
    right: 0;
    left: 0;
    transition: 0.9s;
    z-index: 2;
  }

  section.confort .fomfort-txt {
    padding: 80px 10px;
  }
      
    section.detination .fromwraper .elementor-widget-container {
    padding: 20px !important;
    margin: -30px 0 0 0;
    position: relative;
    z-index: 999;
}

.cs-reservation-form.style-banner-2.style-banner.cs-form-square button.button {
    padding: 0px !important;
    height: 10px !important;
    min-height: 40px !important;
    width: 100%;
}


    .elementor-73 .elementor-element.elementor-element-45a1740b > .elementor-container {
    min-height: 500px !important;
}
.e-con.e-con>.e-con-inner>.elementor-widget, .elementor.elementor .e-con>.elementor-widget {
    width: 100%;
    max-width: 100% !important;
    padding: 30px !important;
}
.aboutp020 .elementor-widget-text-editor:after {
    display: none;
}

.elementor-73 .elementor-element.elementor-element-6ac306c {
    padding: 0 !important;
}


  .elementor-2114 .elementor-element.elementor-element-54e91a1 {
    margin-top: -150px !important;
    margin-bottom: 0px;
    z-index: 2;
}
  .posts .post.format-gallery .thumbnail-gallery li {
    position: relative;
    margin: 0;
}
section.detination .fromwraper form span {
    display: block;
    text-align: left;
    font-size: 13px;
    margin-bottom: 10px;
}
.posts.cs-rooms .slider-arrows button.slick-arrow::before {
    top: 2px !important;
    padding-top: 2px;
    padding: 0px !important;
    margin: 0px !important;
    opacity: 0;
}
.posts.cs-rooms .slider-arrows button.slick-arrow {
    padding: 0px !important;
    width: 30px;
    height: 30px;
    margin: 0px !important;
}
header.post-header.item-header {
    background: transparent;
}
    .room-template-default .room-top-section {
    margin-top: 0 !important;
}
.contform0 label {
    font-size: 14px;
    width: 100%;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contform0 label {
    font-size: 14px;
    width: 100%;
}
        .room-template-default .room-top-section {
    margin-top: 0 !important;
}
    .elementor-2114 .elementor-element.elementor-element-54e91a1 {
    margin-top: -150px !important;
    margin-bottom: 0px;
    z-index: 2;
}
  .posts .post.format-gallery .thumbnail-gallery li {
    position: relative;
    margin: 0;
}
section.detination .fromwraper form span {
    display: block;
    text-align: left;
    font-size: 13px;
    margin-bottom: 10px;
}
.posts.cs-rooms .slider-arrows button.slick-arrow::before {
    top: 2px !important;
    padding-top: 2px;
    padding: 0px !important;
    margin: 0px !important;
    opacity: 0;
}
.posts.cs-rooms .slider-arrows button.slick-arrow {
    padding: 0px !important;
    width: 30px;
    height: 30px;
    margin: 0px !important;
}
header.post-header.item-header {
    background: transparent;
}
    
    
    
    
    
    .elementor-73 .elementor-element.elementor-element-45a1740b > .elementor-container {
    min-height: 500px !important;
}
.e-con.e-con>.e-con-inner>.elementor-widget, .elementor.elementor .e-con>.elementor-widget {
    width: 100%;
    max-width: 100% !important;
    padding: 30px !important;
}
.aboutp020 .elementor-widget-text-editor:after {
    display: none;
}

.elementor-73 .elementor-element.elementor-element-6ac306c {
    padding: 0 !important;
}






    section.detination .fromwraper .elementor-widget-container {
    padding: 20px !important;
    margin: -30px 0 0 0;
    position: relative;
    z-index: 999;
}

.cs-reservation-form.style-banner-2.style-banner.cs-form-square button.button {
    padding: 0px !important;
    height: 10px !important;
    min-height: 40px !important;
    width: 100%;
}
    .elementor .elementor-hidden-mobile {
    display: block !important;
}
    .newfooter0 .footer-btm {
    padding-bottom: 0px !important;
    margin: 80px 0 0 0;
}
.footer-btm:before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    background: #363537;
    height: 1px;
}    
    
    
  .row>* {
    margin-bottom: 0 !important;
  }

  header {
    position: unset;
    overflow: hidden;
    width: 100%;
    z-index: 3;
    top: 0;
  }

  section.main_slider h1 {
    font-size: 40px;
    line-height: 40px;
    margin: 0px;
  }










  section.confort .row {
    margin: 0px 2px !important;
    flex-direction: column;
    background-position: center;
    height: auto;
    background-size: cover;
  }

  section.confort .container {
    width: 100% !important;
  }

  section.confort .col-lg-3.col-md-3.coloBox {
    width: 100%;
    overflow: hidden;
  }

  section.confort .btmText {
    position: absolute;
    bottom: 30%;
    right: 0;
    left: 0;
    transition: 0.9s;
    z-index: 2;
  }

  section.confort .fomfort-txt {
    padding: 80px 10px;
  }
  
  
      .main {
    background: #f3eee7 !important;
}
    
    body.wp-singular.single.postid-2435{
   background: #f3eee7 !important;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
  .slicknav_nav a:hover {
    background: #f3eee7;
    color: #000;
  }

  a.custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .elementor .elementor-hidden-mobile {
    display: block !important;
  }

  section.main_slider h1 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0px;
  }

  section.main_slider img.img-fluid.bannerImg {
    height: 480px;
    object-fit: cover;
  }

  section.detination .fromwraper {
    width: 100%;
    margin-top: 0;
  }

  .cs-reservation-form.style-banner-2.style-banner.cs-form-square button.button {
    padding: 0px !important;
    height: 10px !important;
    min-height: 40px !important;
    width: 100%;
  }

  .cs-reservation-form.style-banner-2 .cs-form-wrap .field-wrap {
    flex: inherit;
  }

  .cs-form-field.cs-check-in {
    justify-content: center;
  }

  .cs-form-field.cs-check-out {
    justify-content: center;
  }

  .cs-form-field.cs-guests.cs-has-dropdown {
    justify-content: center;
  }

  section.detination .fromwraper .elementor-widget-container {
    padding: 20px !important;
    margin: -30px 0 0 0;
    position: relative;
    z-index: 999;
  }

  section.confort .col-lg-3.col-md-3.coloBox {
    width: 100%;
    overflow: hidden;
  }

  .newfooter0 .footer-btm {
    padding-bottom: 0px !important;
    margin-bottom: 0;
    margin: 60px 0 0 0;
  }

  footer {
    padding: 60px 0px 100px;
    overflow: hidden;
  }

  .footer-btm:before {
    width: 100%;
    left: 0;

  }

  .row>* {
    margin-bottom: 0 !important;
  }

  .menuSec {
    padding: 20px 0;
  }

  section.confort .row {
    margin: 0px 2px !important;
    flex-direction: column;
    background-position: center;
    height: auto;
    background-size: cover;
  }

  section.confort .container {
    width: auto !important;
  }

  section.confort .fomfort-txt {
    padding: 80px 0px;
  }

  section.confort .btmText {
    position: absolute;
    bottom: 50%;
    right: 0;
    left: 0;
    transition: 0.9s;
    z-index: 2;
    top: 50%;
  }

  a.custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header {
    position: unset;
    overflow: hidden;
    width: 100%;
    z-index: 3;
    top: 0;
  }

  .ab-wrpaerLeft {
    margin: 0 0 70px 0;
  }

  section.about-us {
    position: relative;
    padding: 100px 0 100px;
    overflow: hidden;
  }

  .elementor-image-gallery .gallery.gallery-columns-10 .gallery-item,
  .elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,
  .elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,
  .elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,
  .elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,
  .elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,
  .elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,
  .elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,
  .elementor-image-gallery .gallery.gallery-columns-9 .gallery-item {
    max-width: 33% !important;
  }

  section.confort .headtxt {
    margin-bottom: 10px;
  }
  .elementor-element.elementor-element-8640ed9.elementor-widget.elementor-widget-text-editor {
    padding: 10px 10px 10px 10px;
    width: 100%;
    margin: 0 0 100px 0;
}
.aboutp020 .elementor-widget-text-editor:after {
    position: absolute;
    content: "";
    width: 38%;
    height: 130px;
    background: #d9d1c3;
    left: 0px;
    top: unset;
    bottom: -120px;
}



 .elementor-element.elementor-element-8640ed9.elementor-widget.elementor-widget-text-editor {
    padding: 10px 10px 40px 10px;
    width: 100%;
    margin: 0 0 100px 0;
}
.aboutp020 .elementor-widget-text-editor:after {
    position: absolute;
    content: "";
    width: 38%;
    height: 130px;
    background: #d9d1c3;
    left: 0px;
    top: unset;
    bottom: -120px;
}
 .elementor-widget-cs_title .cs-title-text p {
    line-height: 1.2;
    margin: 0 0 10px 0 !important;
    color: #7b7a7a;
    font-family: 'Jost';
    font-size: 16px;
}
.elementor-widget-cs_title .cs-title-text {
    margin-top: 5px !important;
}

.elementor-73 .elementor-element.elementor-element-6ac306c {
    padding: 0px 0px 0px 0px !important;
}
.elementor-73 .elementor-element.elementor-element-45a1740b > .elementor-container {
    min-height: 360px !important;
}

  
  
  
  
  .posts .post.format-gallery .thumbnail-gallery li {
    position: relative;
    margin: 0;
}
section.detination .fromwraper form span {
    display: block;
    text-align: left;
    font-size: 13px;
    margin-bottom: 10px;
}
.posts.cs-rooms .slider-arrows button.slick-arrow::before {
    top: 2px !important;
    padding-top: 2px;
    padding: 0px !important;
    margin: 0px !important;
    opacity: 0;
}
.posts.cs-rooms .slider-arrows button.slick-arrow {
    padding: 0px !important;
    width: 30px;
    height: 30px;
    margin: 0px !important;
}
header.post-header.item-header {
    background: transparent;
}
    .room-template-default .room-top-section {
    margin-top: 0 !important;
}
header.post-header {
    background: transparent;
}

    .main {
    background: #f3eee7 !important;
}
    
    body.wp-singular.single.postid-2435{
   background: #f3eee7 !important;
    }
        
 section.elementor-section.elementor-top-section.elementor-element.elementor-element-44764146.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default {
    margin: 100px 0 ;
}   
    section.elementor-section.elementor-top-section.elementor-element.elementor-element-8913506.elementor-hidden-desktop.elementor-hidden-tablet.elementor-hidden-mobile.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default {
    margin: 0;
}
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    
 section.elementor-section.elementor-top-section.elementor-element.elementor-element-44764146.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default {
    margin: 100px 0 ;
}   
    section.elementor-section.elementor-top-section.elementor-element.elementor-element-8913506.elementor-hidden-desktop.elementor-hidden-tablet.elementor-hidden-mobile.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default {
    margin: 0;
}
    .main {
    background: #f3eee7 !important;
}
    
    body.wp-singular.single.postid-2435{
   background: #f3eee7 !important;
    }
    header.post-header {
    background: transparent;
}
    .room-template-default .room-top-section {
    margin-top: 0 !important;
}
.elementor-element.elementor-element-8640ed9.elementor-widget.elementor-widget-text-editor {
    padding: 10px 10px 40px 10px;
    width: 100%;
    margin: 0 0 100px 0;
}
.aboutp020 .elementor-widget-text-editor:after {
    position: absolute;
    content: "";
    width: 38%;
    height: 130px;
    background: #d9d1c3;
    left: 0px;
    top: unset;
    bottom: -120px;
}
 .elementor-widget-cs_title .cs-title-text p {
    line-height: 1.2;
    margin: 0 0 10px 0 !important;
    color: #7b7a7a;
    font-family: 'Jost';
    font-size: 16px;
}
.elementor-widget-cs_title .cs-title-text {
    margin-top: 5px !important;
}

.elementor-73 .elementor-element.elementor-element-6ac306c {
    padding: 0px 0px 0px 0px !important;
}
.elementor-73 .elementor-element.elementor-element-45a1740b > .elementor-container {
    min-height: 220px !important;
}





  a.custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .elementor .elementor-hidden-mobile {
    display: block !important;
  }

  section.main_slider h1 {
    font-size: 20px;
    line-height: 1.2;
    margin: 0px;
  }

  section.main_slider img.img-fluid.bannerImg {
    height: 280px;
    object-fit: cover;
  }

  section.detination .fromwraper {
    width: 100% !important;
    margin-top: 0 !important;
  }

  .cs-reservation-form.style-banner-2.style-banner.cs-form-square button.button {
    padding: 0px !important;
    height: 10px !important;
    min-height: 40px !important;
    width: 100%;
  }

  .cs-reservation-form.style-banner-2 .cs-form-wrap .field-wrap {
    flex: inherit;
  }

  .cs-form-field.cs-check-in {
    justify-content: center;
  }

  .cs-form-field.cs-check-out {
    justify-content: center;
  }

  .cs-form-field.cs-guests.cs-has-dropdown {
    justify-content: center;
  }

  section.detination .fromwraper .elementor-widget-container {
    padding: 20px !important;
    margin: -100px 0 0 0;
    position: relative;
    z-index: 999;
  }

  section.confort .col-lg-3.col-md-3.coloBox {
    width: 100%;
    overflow: hidden;
  }

.newfooter0 .footer-btm {
    padding-bottom: 0px !important;
    margin-bottom: 0;
    margin: 40px 0 0 0;
}

  footer {
    padding: 60px 0px 100px;
    overflow: hidden;
  }

  .footer-btm:before {
    width: 100%;
    left: 0;
  }

  .row>* {
    margin-bottom: 0 !important;
  }

  .menuSec {
    padding: 20px 0;
  }

  section.confort .row {
    margin: 0px 2px !important;
    flex-direction: column;
    background-position: right;
  }

  section.confort .container {
    width: auto !important;
  }

  section.confort .fomfort-txt {
    padding: 80px 0px;
  }

  section.confort .btmText {
    position: absolute;
    bottom: 50%;
    right: 0;
    left: 0;
    transition: 0.9s;
    z-index: 2;
    top: 50%;
  }

  .slicknav_nav a:hover {
    background: #f3eee7;
    color: #000;
  }

  section.confort .headtxt {
    margin-bottom: 10px;
  }
  
  
  
  
  
  
  .posts .post.format-gallery .thumbnail-gallery li {
    position: relative;
    margin: 0;
}
section.detination .fromwraper form span {
    display: block;
    text-align: left;
    font-size: 13px;
    margin-bottom: 10px;
}
.posts.cs-rooms .slider-arrows button.slick-arrow::before {
    top: 2px !important;
    padding-top: 2px;
    padding: 0px !important;
    margin: 0px !important;
    opacity: 0;
}
.posts.cs-rooms .slider-arrows button.slick-arrow {
    padding: 0px !important;
    width: 30px;
    height: 30px;
    margin: 0px !important;
}
header.post-header.item-header {
    background: transparent;
}
}

/*Media Query End*/