@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Golos+Text:wght@400..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --primary: #df937d;
  --secondary: #3a1919;
  --white: #fff;
  --dark: #101010;
  --graytext: #d4d4d4;
}

body {
  margin: 0;
  padding: 0 !important;
  font-family: "Golos Text", sans-serif;
  scroll-behavior: smooth;
  overflow: inherit !important;
  font-size: 15px;
  line-height: 1.5;
  color: #444444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
input[type="date"],
textarea,
select {
  background: none;
  border: solid 1px #eee;
  color: #444;
  font-size: 15px;
  line-height: 1;
  margin: 0 0 12px;
  padding: 13px 15px;
  width: 100%;
  outline: 0;
  border-radius: 10px;
}

input[type="submit"] {
  color: var(--white);
  background: var(--primary);
  text-transform: uppercase;
  line-height: 1;
  padding: 14px 26px;
  border: 0;
  letter-spacing: 0.8px;
  cursor: pointer;
  outline: none;
  font-weight: 600;
  border-radius: 14px;
}

input[type="submit"]:hover {
  background: var(--secondary);
  color: var(--white);
  transition: 0.8s;
}

textarea {
  height: 100px;
  margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  font-family: "Playfair Display", serif;
  color: #202020;
  font-weight: normal;
  text-transform: inherit;
  line-height: 1.18;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  padding: 0;
  margin: 0 0 12px 0;
}

img {
  margin: 0 !important;
}

ul,
li,
a {
  list-style-type: none;
  color: var(--dark);
}

a:hover {
  transition: 0.8s;
  text-decoration: none;
}

.heading,
.leftheading {
  margin-bottom: 35px;
  font-size: 42px;
  position: relative;
  line-height: 1.2;
}

.leftheading span,
.heading span {
  /* color: var(--primary);
  font-family: "Alex Brush", cursive;
  font-size: 50px;
  line-height: .5; */
}

.heading {
  text-align: center;
}

.subheading {
  margin: 0 auto 15px;
  font-weight: 400;
  font-size: 16px;
  color: var(--secondary);
  width: fit-content;
  font-family: "Golos Text", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.subdescription {
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

.zoomeffect {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}

.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}

.zoomeffect:hover img {
  transform: scale(1.1);
}


.btn {
  border: 2px solid transparent;
  letter-spacing: .2px;
  border-radius: 4px;
  padding: 12px 25px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--white);
}


.btn-secondary {
    background: var(--secondary);
    border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}



.btn-light-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-light-outline:hover {
  border-color: var(--primary);
  color: var(--secondary);
  background: var(--primary);
}


.bg-shape {
  position: relative;
  z-index: 0;
}

.bg-shape:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/wp-content/uploads/2026/02/bg-shape.webp')no-repeat center center/cover;
  opacity: .2;
  z-index: -1;
}



ul.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}

ul.slick-dots li button {
  padding: 0;
  line-height: 1;
  height: 12px;
  width: 12px;
  border: none;
  text-indent: 100px;
  overflow: hidden;
  border-radius: 50px;
  transition: .5s;
  background: #dfdfdf;
}

ul.slick-dots li {
  line-height: 1;
}

ul.slick-dots li.slick-active button {
  width: 20px;
  background: var(--primary);
}





button.slick-prev.slick-arrow,
button.slick-next.slick-arrow {
  position: absolute;
  right: -80px;
  height: 42px;
  width: 42px;
  overflow: hidden;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  transition: .5s;
  border-radius: 50%;
  border: none;
  z-index: 1;
}

button.slick-prev.slick-arrow {
  left: 10px;
}

button.slick-next.slick-arrow {
  right: 10px;
}

button.slick-prev.slick-arrow:after,
button.slick-next.slick-arrow:after {
  position: absolute;
  content: "\f053";
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  background: var(--white);
}

button.slick-next.slick-arrow:after {
  content: "\f054";
}





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

/* HEADER SECTION CSS */


.menubar>a img {
  height: 85px;
}

/* .menubar a img.whitelogo {
  display: none;
}

body.home .menubar a img.whitelogo {
  display: block;
}

body.home .menubar a img.darklogo {
  display: none;
} */

.menubar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav.menucontainer ul.menutop select.gt_selector.notranslate {
    color: #dcdddf;
    padding: 10px;
    max-width: 140px;
    border-radius: 6px;
    margin: 0;
    font-size: 13px;
}

header nav.menucontainer ul.menutop select.gt_selector.notranslate option {
    color: var(--dark);
}


header {
  border-bottom: 1px solid #ffffff14;
  z-index: 3;
}

header ul.header-cntct {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header ul.header-cntct li a:not(.btn) {
  font-size: 16px;
  font-weight: 500;
}

header .header-cntct a i {
  font-size: 22px;
  margin-left: 8px;
  line-height: .5;
}

header .header-cntct a.btn-secondary:before {
  background: var(--white);
}

header .header-cntct a.btn-secondary:hover {
  color: var(--secondary);
}

/* BANNER SECTION CSS */

.mainslider {
  position: relative;
  margin-top: -101px;
}

.mainslider .carousel-item {
  position: relative;
  z-index: 0;
}

.mainslider .carousel-item:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #000000b5, transparent);
  z-index: 0;
}

.mainslider #carouselExampleFade .carousel-item>img {
  aspect-ratio: 12/6.5;
  width: 100%;
  object-fit: cover;
  height: auto;
  filter: brightness(0.4);
  position: relative;
  z-index: -1;
}

.mainslider .carousel-caption h1 {
    max-width: 60%;
    font-size: 52px;
    margin: 15px auto 35px;
    display: block;
    color: var(--white);
}



.carousel-caption-info p {
  font-size: 18px;
  max-width: 780px;
  margin: 0 auto 30px;
  color: #d5d5d5;
  line-height: 1.7;
}

.carousel-caption-info img {
  height: 70px;
  margin-bottom: 30px !important;
}

.carousel-caption-info h4 {
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--primary);
  width: fit-content;
  line-height: 1;
  margin: 0 auto;
  font-family: "Alex Brush", cursive;
}


.carousel-indicators {
  margin: 0 auto;
  width: fit-content;
  background: #f3dfd7;
  padding: 10px 20px;
  border-radius: 30px;
  gap: 15px;
  bottom: -13px;
}

.carousel-indicators button {
  margin: 0 !important;
  padding: 2px !important;
  border-radius: 12px !important;
  border: none !important;
  background: #200e0e66 !important;
}

.carousel-indicators .active {
  background: var(--secondary) !important;
}



.bookingform-inner {
  background: var(--secondary);
  padding: 35px 31px;
  border-radius: 15px;
}

.bookingform-inner form input[type="submit"] {
  margin: 0;
  width: 100%;
  padding: 14.5px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14.5px;
}

.bookingform-inner form span.wpcf7-spinner {
  position: absolute;
  margin: 9px 0;
}

.bookingform-inner form input[type="text"],
.bookingform-inner form input[type="email"],
.bookingform-inner form input[type="tel"],
.bookingform-inner form input[type="number"],
.bookingform-inner form select,
.bookingform-inner form input[type="date"] {
  background: #ffffff;
  width: 100%;
  margin: 0;
  border: 1px solid #ffffff4a;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
}

.bookingform-inner form input[type="submit"]:hover {
  background: var(--white);
  color: var(--secondary);
}



/* HOMEABOUT SECTION CSS */

.homeabout-img img {
  aspect-ratio: 1 / 1.3;
  object-fit: cover;
  border-radius: 15px;
}

.counteritem h3 {
  margin-bottom: 10px;
  font-size: 26px;
  color: var(--secondary);
}


.homeabout img.homeabout-shape {
  filter: invert(1);
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  max-height: 89%;
  z-index: -1;
}



/* MARQUEE SLIDER CSS */


.marquee {
  background: var(--secondary);
  padding: 14px 0;
}

.marqueeinner {
  display: flex;
  width: 200%;
  /* enough to hold two lists side by side */
  animation: marqueeMove 30s linear infinite;
}

.marqueeinnerlist {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 50%;
  /* ADDED - each list takes exactly half */
  flex-shrink: 0;
  /* ADDED - prevents lists from shrinking */
}

.marqueeinnerlistitem {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-shrink: 0;
}

.marqueeinnerlistitem h4 {
  font-size: 46px;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--primary);
  letter-spacing: .5px;
}

.marqueeinnerlistitem:nth-child(even) h4 {
  color: transparent;
  -webkit-text-stroke: 1px #ffffffe3;
  font-family: "Golos Text", sans-serif;
  font-weight: 700;
}

.marqueeinnerlistitem i {
  font-size: 32px;
  color: var(--primary);
  display: inline-block;
  line-height: 0;
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 1549px) {
  .marqueeinnerlistitem h4 {
    font-size: 38px;
  }

  .marqueeinnerlistitem:nth-child(even) h4 {
    -webkit-text-stroke: .8px #f6e6e2;
  }

  .marqueeinnerlist,
  .marqueeinnerlistitem {
    gap: 40px;
  }
}


/* HOME ROOMS SECTION CSS */


.rooms-slider .slick-slide {
  margin: 0 12px;
}

.rooms-item {
  position: relative;
  background: var(--secondary);
  padding: 20px;
  border-radius: 10px;
}

.rooms-item .roomsitem-info {
  padding: 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

span.roomsitem-price {
  color: #dddddd;
}

span.roomsitem-price strong {
  color: var(--primary);
  font-size: 22px;
  margin-left: 7px;
  font-weight: 400;
}

.roomsitem-features {
  padding: 12px 0;
  margin: 20px 0;
  border-top: 1px solid #ffffff2e;
  border-bottom: 1px solid #ffffff2e;
}

.rooms-item>img {
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 5 / 3.5;
  transition: .5s;
  object-fit: cover;
}

.roomsitem-features ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.roomsitem-features ul li:not(:first-child) {
  border-left: 1px solid #ffffff30;
  padding-left: 12px;
}

.roomsitem-features ul li {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #dddddd;
    font-size: 13px;
    width: auto;
}

.roomsitem-features ul li i {
  color: #f1a590;
  font-size: 16px !important;
  line-height: .5;
}

.roomsitem-info h3 {
    font-size: 24px;
    color: var(--white);
    transition: .5s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 58px;
    width: 95%;
}

.roomsitem-info h3:hover {
  color: #f1a590;
}

.rooms-item figure {
  border-radius: 8px;
  overflow: hidden;
}

.rooms-item figure img {
  width: 100%;
  aspect-ratio: 1 / .7;
  object-fit: cover;
  border-radius: 8px;
  transition: .5s;
}

.rooms-item:hover figure img {
  transform: scale(1.1) rotate(-4deg);
}

.rooms-item a.btn-primary {
  font-size: 14px;
  padding: 10px 18px;
}


/* RESTAURANT SECTION CSS */


.restaurant {
  background: var(--secondary);
}

.restaurant h4.subheading {
  color: #f1a590;
}

.restaurant-wrapper .slick-slide img {
  width: 100% !important;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.restaurant-wrapper .slick-slide {
  margin: 0 12px;
}

.restaurant-wrapper {
  position: relative;
  margin-top: -70px;
  z-index: 1;
}

.restaurant-wrapper .restaurantslider_wave {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 5;
}

.restaurantslider_wave.bottom {
  bottom: 0;
  transform: rotateX(180deg);
}

.restaurantsldr-item {
  position: relative;
}

.restaurant-slider button.slick-prev.slick-arrow,
.restaurant-slider button.slick-next.slick-arrow {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  background: transparent;
  border: 1px solid #e5e2d426;
  background-color: #e5e2d40d;
  color: #e5e2d4;
  width: 3rem;
  height: 3rem;
  transition: .5s;
  position: absolute;
  cursor: pointer;
  padding: 8px;
  top: auto;
}

.restaurant-slider button.slick-prev.slick-arrow:after,
.restaurant-slider button.slick-next.slick-arrow:after {
  display: none;
}

.restaurant-slider button.slick-prev.slick-arrow:hover,
.restaurant-slider button.slick-next.slick-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.restaurant-slider button.slick-next.pull-right.slick-arrow {
  margin-left: 35px;
}

.restaurant-slider button.slick-prev.pull-left.slick-arrow {
  margin-left: -35px;
  transform: translateX(-50%) rotate(180deg);
}


/* SERVICES PAGE CSS */


.serviceslist {
  border-radius: 15px;
  transition: .5s;
  padding: 30px 20px 20px;
  background: #39181805;
  text-align: center;
  border: 2px dashed #3a191940;
}

.serviceslist h3 {
  margin: 15px 0 0 !important;
  transition: .5s;
  color: var(--secondary);
  font-size: 20px;
}

.serviceslist:hover h3 {
  color: var(--secondary);
}

.serviceslist figure {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: #3a19190f;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
}

.serviceslist figure i {
  font-size: 40px;
  color: var(--secondary);
  line-height: .5;
}

.serviceslist:hover figure {
  background: var(--secondary);
}

.serviceslist:hover figure i {
  color: var(--white);
}

.serviceslist:hover {
  transform: translateY(-10px);
  border: 2px solid var(--secondary);
}


/* TESTIMONIALS SECTION CSS */


.testimonials {
  background: linear-gradient(45deg, #0c0505, #00000069), url(../images/testimonials-bg.webp) no-repeat center center / cover;
  background-attachment: fixed;
  padding: 100px 0;
  position: relative;
  z-index: 0;
}

.testimonials:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  z-index: -1;
}

.testimonials h4.subheading {
  color: #f1a590;
}

.testimonials h2.heading {
  padding-bottom: 30px;
}

.testimonials h2.heading:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 3px;
  width: 80px;
  background: var(--primary);
  border-radius: 50px;
  opacity: .7;
}

.testimonials-counter {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ffffff24;
}

.testimonials-counter h3 {
  color: var(--primary);
  font-size: 40px;
  margin-bottom: 6px;
}

.testimonials-counter p {
  margin: 0;
  color: #c3c3c3;
  font-size: 16px;
}


.slider-arrows {
  width: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.slider-arrows button.slick-arrow {
  border-radius: 50%;
  overflow: hidden;
  font-size: 18px;
  line-height: .5;
  transition: .5s;
  position: static;
  transform: none;
  background: transparent;
  border: 1px solid #e5e2d426;
  background-color: #e5e2d40d;
  color: #e5e2d4;
  width: 3rem;
  height: 3rem;
}

.slider-arrows button.slick-arrow:after {
  display: none;
}

.slider-arrows button.slick-arrow:hover {
  background: var(--primary);
  color: var(--white);
}

.testimonials-rating {
  margin-bottom: 23px;
}

.testimonials-rating i {
  color: var(--primary);
  font-size: 17px;
}

.testimonials-item p {
  font-size: 17px;
  line-height: 1.65;
  color: #e9e9e9;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  font-style: italic;
  margin: 20px 0;
}

.testimonialsitem-btm {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonialsitem-btm span h3 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
}

.testimonialsitem-btm span h3 span {
  font-family: "Golos Text", sans-serif;
  color: var(--primary);
  font-size: 15px;
  margin-top: 3px;
  font-weight: 500;
  margin-top: 7px;
}



/* BLOG SECTION CSS */



.homebloglist {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.homebloglist>img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  transition: .5s;
  z-index: -1;
  position: relative;
}

.homebloglist-topinfo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 30px;
  z-index: 2;
}

.homebloglist-topinfo ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.homebloglist-btminfo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
}

.homebloglist:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #200e0e, transparent);
}

.homebloglist-btminfo h3 {
  margin-bottom: 22px;
}

.homebloglist-btminfo h3 a {
  color: var(--white);
  font-size: 24px;
  line-height: 1.3;
}

.homebloglist-btminfo a.btn {
  font-size: 15px;
  padding: 10px 20px;
}

.homebloglist-topinfo ul li {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 7px;
}

.homebloglist-topinfo ul li i {
  color: var(--primary);
  height: 30px;
  width: 30px;
  background: var(--white);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.homebloglist:hover img {
  transform: scale(1.1) rotate(-4deg);
}


/* FOOTER SECTION CSS */


.footer-details {
  padding: 20px 0;
  background: var(--primary);
}

.footer-details .footertop-item p {
  font-size: 18px;
}

.footer-details .footertop-item i {
  font-size: 19px;
  color: var(--white);
  line-height: .5;
  height: 50px;
  width: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--secondary);
}





footer {
    background: #200808;
    padding-top: 40px !important;
	z-index: 0;
}

footer img.footer-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  filter: brightness(0) invert(1);
  max-width: 100%;
  z-index: -1;
  opacity: .4;
}


.footer-newsletter {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ffe5de1a;
}

.footer-newsletter form.wpcf7-form.init input {
  background: #ffffff05;
  margin: 0;
  border: 1px solid #ffffff30;
  color: #e0e0e0;
  font-weight: 400;
}

.footer-newsletter form.wpcf7-form.init input::placeholder {
  color: #e0e0e0;
}

.footer-newsletter form.wpcf7-form.init input.wpcf7-form-control.wpcf7-submit {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    border: none;
    height: 46px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    padding: 0;
}

.footer-newsletter form.wpcf7-form.init {
  position: relative;
}

.footer-newsletter form.wpcf7-form.init span.wpcf7-spinner {
  position: absolute;
  margin: 10px 5px;
}


.footer-newsletter h2 {
  font-size: 32px;
}

.footer-newsletter h2 img {
  display: inline-block;
  width: 34px;
  margin-right: 5px !important;
}

.footer-newsletter form.newsletter-form input[type="email"]::placeholder {
  color: #bfbfbf;
}



footer figure {
  margin-bottom: 22px;
}

footer figure a img {
  height: 100px;
}

footer ul li.menu-item a {
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-left: 18px;
}

footer ul li.menu-item a:before {
  position: absolute;
  content: '\f192';
  font-family: "Font Awesome 5 Free";
  color: #df937d;
  left: 0;
  font-size: 11px;
  top: 4px;
}

footer ul li.menu-item a:hover {
  color: transparent;
  background: var(--primary);
  background-clip: text;
}

footer h3 {
  color: var(--white);
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 26px;
  position: relative;
  font-size: 20px;
  letter-spacing: .5px;
  font-family: "Golos Text", sans-serif;
  z-index: 0;
}

footer h3:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 65px;
  height: 2px;
  background: var(--primary);
  border-radius: 10px;
  z-index: -1;
}


footer ul.footer-smo li a {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 5px 0 5px 42px;
}

footer ul.footer-smo li:not(:last-child) {
  margin-bottom: 12px;
}

footer ul.footer-smo li a i {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: var(--white);
  position: absolute;
  left: 0;
  top: 0px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

footer ul.footer-details li {
  position: relative;
  margin-bottom: 12px;
  padding: 0 0 0 25px;
}

footer ul.footer-details li i {
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 15px;
}

footer ul.socialicon {
  display: flex;
  column-gap: 11px;
}

footer ul.socialicon li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: var(--primary);
  width: 35px;
  height: 35px;
  border-radius: 6px;
  color: var(--secondary);
  margin: 0;
}

footer ul.socialicon li:nth-child(1) a:hover {
  background: #1877F2;
  color: var(--white);
}

footer ul.socialicon li:nth-child(2) a:hover {
  background: #1DA1F2;
  color: var(--white);
}

footer ul.socialicon li:nth-child(3) a:hover {
  background: #d856d1;
  color: var(--white);
}

footer ul.socialicon li:nth-child(4) a:hover {
  background: #0A66C2;
  color: var(--white);
}

footer ul.socialicon li a:hover {
  background: linear-gradient(45deg, var(--secondary), var(--primary));
}

footer .ftdetails li i {
  margin-right: 8px;
}

footer ul li,
footer ul li a,
footer p,
footer p a {
  color: #e0e0e0;
}

.footer-about {
  background: var(--primary);
  padding: 33px;
  margin-top: -167px;
}

.footer-about p {
  color: var(--dark);
}

.footer-about .btn-secondary {
    font-size: 14px;
    padding: 13px 20px;
    border: none;
}

.footer-about .btn-secondary:hover {
  background: var(--white);
  color: var(--secondary) !important;
}

.facebook-widget iframe {
  width: 100% !important;
  height: 241px;
  margin-top: 7px;
}



.copyright {
  padding: 12px 0;
  border-top: 1px solid #ffe5de1a;
  margin-top: 30px;
}

.copyright p a {
  color: var(--primary);
}

ul.copyright-links li:not(:last-child) {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #ffe5de2e;
}






#GoToTop {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 35px;
    z-index: 99999999;
    padding: 0;
    background: var(--primary);
    width: 45px;
    height: 50px;
    cursor: pointer;
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    border-radius: 20px 20px 5px 5px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 0 #00000017;
    padding-top: 4px;
}

a#GoToTop.is-visible {
  display: flex;
}

#whatsappbtn {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  padding: 9px 9px 8px 11px;
  background: #4fcc5d;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 32px;
  color: var(--white);
  align-items: center;
  justify-content: center;
}

#whatsappbtn:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #4fcc5d;
  border-radius: 50%;
  z-index: -1;
  animation: wpscaling 2s ease-out forwards infinite;
}

@keyframes wpscaling {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(1.4);
    opacity: 0;
  }
}



#whatsappbtn img {
  display: block;
  width: 30px;
}

@media only screen and (min-width: 991px) {
  footer ul.footer-details li:last-child {
    margin: 0;
  }
}

/* BREADCRUMB SECTION CSS */

.breadcrumb {
    padding: 280px 0 0;
    margin-bottom: 0;
    display: block;
    margin-top: -100px;
}
body.archive.post-type-archive.post-type-archive-rooms .breadcrumb {
    background: linear-gradient(0deg, #270b0b99, #000000b8), url('/wp-content/uploads/2026/01/double-bed-luxury-sea-facing1.webp')no-repeat center bottom/cover !important;
}
.breadcrumb-menu {
  background: #df937d;
  width: fit-content;
  margin: 0 auto;
  padding: 6px 20px;
  border-radius: 8px 8px 0 0;
  border: 1px solid #f9d6af38;
}

.breadcrumb h1 {
  margin: 0 0 160px;
}

.breadcrumb p {
  margin: 0;
}

.breadcrumb p,
.breadcrumb span,
.breadcrumb p a {
  color: var(--secondary);
  font-weight: 500;
}

.breadcrumb p a {
  padding-right: 18px;
  margin-right: 5px;
  position: relative;
}

.breadcrumb h1 span {
  font-size: 50px;
  letter-spacing: 1px;
  color: transparent;
  text-transform: capitalize;
  background: linear-gradient(45deg, var(--primary), #fff);
  background-clip: text;
  line-height: 1.2;
}

.breadcrumb h1 .breadcrumbs_last {
  font-size: 28px;
  margin: 0 0 15px;
  font-weight: 800;
}

.breadcrumb h1 span a {
  display: none;
}

.breadcrumb a:after {
  position: absolute;
  content: "\f101" !important;
  font-size: 12px !important;
  font-weight: 600;
  font-family: "Font Awesome 5 Free" !important;
  color: var(--secondary);
  right: 0;
  top: 2px;
}

p#breadcrumbs span>span:nth-child(1) a {
  padding-left: 22px;
}

p#breadcrumbs span>span:nth-child(1) a:before {
  position: absolute;
  content: '\f015';
  top: -1px;
  left: 0;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  color: var(--secondary);
  font-size: 14px;
}

/* ABOUT US PAGE CSS */



.aboutus-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / .4;
  object-fit: cover;
  border-radius: 15px;
}

.aboutus-content {
  padding: 30px;
  box-shadow: 3px 3px 25px #00000014;
  border-radius: 15px;
  max-width: 90%;
  margin: -50px auto 0;
  background: var(--white);
  text-align: center;
}

.mvg-card {
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  background: #df937d05;
  padding: 25px 20px;
  border-radius: 15px;
  border: 1px solid #3a19191f;
  z-index: 0;
}

.mvg-card:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--secondary);
  transition: .5s;
  z-index: -1;
}

.mvg-card:hover:before {
  height: 100%;
}

.mvg-card:hover h3 {
  color: var(--primary);
}

.mvg-card:hover p {
  color: #dbdbdb;
}

.mvg-card:hover .mvg-icon {
  background: var(--white);
}

.mvg-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid #b9946a2e;
  transition: .5s;
}

.mvg-icon i {
  font-size: 45px;
  color: var(--primary);
  line-height: .5;
}

.mvg-card h3 {
  margin: 20px 0 12px;
  color: var(--secondary);
  transition: .5s;
}

.mvg-card p {
  margin: 0;
  transition: .5s;
}

.goals-list li,
.mvg-card ul li {
  color: #555;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.mvg-card ul li:not(:last-child) {
  margin-bottom: 10px;
}

.goals-list li::before,
.mvg-card ul li::before {
  content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“';
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  line-height: 1;
}



.secondary-container.aboutus .services.section-padding {
  background: var(--secondary);
}

.secondary-container.aboutus .services.section-padding h4.subheading {
  color: var(--primary);
}

.secondary-container.aboutus .services.section-padding h2.heading {
  color: var(--white);
}

.secondary-container.aboutus .services.section-padding .serviceslist {
  background: #ffffff12;
  border: 1px solid #ffffff29;
}

.secondary-container.aboutus .services.section-padding .serviceslist h3 {
  color: var(--white);
}

.secondary-container.aboutus .services.section-padding .serviceslist figure {
  background: var(--primary);
}




.teamcard img {
  border-radius: 50%;
  border: 2px dashed var(--secondary);
  outline: 1px solid #3a191957;
  outline-offset: -15px;
  transition: .5s;
}

.teamcard:hover img {
  border: 2px dotted var(--secondary);
}


/* CONTACT PAGE CSS */



.contact-location {
  margin-bottom: 40px;
  padding: 30px 0;
  background: var(--secondary);
  border-radius: 15px;
  text-align: center;
}

.contact-location .row {
  row-gap: 15px;
}

.contact-location .col-lg-4.col-12:not(:last-child) .contact-details-cnt {
  border-right: 1px dashed #ffffff26;
}

.contactus .contact-details-cnt {
  height: 100%;
  padding: 0 20px;
}

.contactus-form p {
  margin: 0;
}

.contact-details-cnt strong {
  display: block;
  font-weight: 500;
  font-size: 22px;
  margin: 15px 0 10px;
  color: var(--white);
}

.contact-details-cnt figure {
  color: var(--secondary);
  background: var(--primary);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-details-cnt figure img {
  width: 48px;
  display: block;
}

.contactus .contact-details-cnt p,
.contactus .contact-details-cnt p a {
  margin: 0;
  color: #f7f7f7;
}

.contact-details-cnt p strong {
  font-size: 20px;
}

.contactus .contact-details-cnt h3 a,
.contactus .contact-details-cnt h3 {
  color: #626262;
  font-size: 15px;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
}

.contactus .contact-details-cnt h3 {
  margin: 0;
  line-height: 25px;
}




.contactform {
  padding: 30px;
  box-shadow: 3px 3px 25px #00000014;
  border-radius: 15px;
}

.contactform h2 {
  color: var(--secondary);
  font-size: 32px;
  margin-bottom: 25px;
}

.contactform form input[type="text"],
.contactform form input[type="email"],
.contactform form input[type="tel"],
.contactform form textarea {
  padding: 13px 15px;
  border: 1px solid #3a191926;
  resize: none;
  background: #3a191903;
  margin-bottom: 15px;
}

.contactus input[type="submit"]:hover {
  background: var(--primary);
}

.contactus form span.wpcf7-spinner {
  position: absolute;
  margin: 12px 5px;
}

.contact-form iframe {
  border: 1px dashed #ffc8b8 !important;
  border-radius: 15px;
  padding: 3px;
  background: var(--secondary);
}

.contactus form label {
  width: 100%;
}

.contactus form label textarea {
  height: 110px;
}

.contactus form p>label {
  font-weight: 500;
  color: var(--secondary);
}

.contactus form p input[type="text"],
.contactus form p input[type="email"],
.contactus form p input[type="tel"],
.contactus form p textarea {
  border: 1px solid #0000001a;
  border-radius: 15px;
  padding: 13px 20px;
  font-size: 14px;
  resize: none;
  background: var(--white);
  margin-top: 5px;
}



.contactus input[type="submit"] {
  width: 100%;
  padding: 16px;
  background: var(--secondary);
}

.contactus form p {
  margin: 0;
}


.contact h3 {
  font-size: 30px;
  margin-bottom: 20px;
}


.contact_us_bg {
  background: var(--white);
  box-shadow: 0 10px 40px -10px rgb(0 0 0 / 8%);
  padding: 30px 18px;
  border-radius: 15px;
}

.contactaddress-top {
  background: var(--secondary);
  padding: 29px;
  border-radius: 15px;
}

.contactaddress-top p {
  color: var(--white);
  margin-bottom: 16px;
}

.contactaddress-top p:last-child {
  margin: 0;
}

.addresslist {
  display: flex;
  gap: 18px;
  padding: 10px;
  border-radius: 12px;
  backdrop-filter: blur(3px);
  margin-bottom: 12px;
  background: #b9946a0d;
  border: 1px solid #00000014;
}

.addresslist:last-child {
  margin: 0;
}

.address-map {
  flex: 1;
}

.address-info {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-map iframe {
  width: 100%;
  height: 100%;
  margin-bottom: -6px;
  border-radius: 10px;
  border: 1px solid #00000014 !important;
  aspect-ratio: 1 / 1;
}

.address-info p {
  margin: 0 0 8px;
  position: relative;
  padding-left: 22px;
}

.address-info p i {
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--primary);
  font-size: 15px;
}

.address-info h3 {
  color: var(--secondary);
  font-weight: 500;
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-bottom: 18px;
}

.address-info h4 {
  font-size: 15px;
  background: var(--primary);
  width: fit-content;
  color: var(--white);
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 16px;
}

.address-info h4 strong {
  font-weight: 500;
}

.address-info p:last-child {
  margin: 0;
}

.qrcodes {
  width: fit-content;
  margin: 0 auto;
  background: var(--white);
  padding: 20px 40px;
  border-radius: 15px;
  border: 1px solid #b9946a54;
}

.qrcodes-item img {
  height: 200px;
}

.google-map iframe {
  aspect-ratio: 5 / 2;
  border-radius: 15px;
}




/* ROOMS PAGE CSS CODE */

.pagetop-content {
  padding: 30px;
  text-align: center;
  background: var(--secondary);
  border-radius: 10px;
  position: relative;
}

.pagetop-content:before {}

.pagetop-content p.subdescription {
  color: #dddddd;
}





/* SINGLE ROOMS PAGE CSS */


.roomgallery-slider .slick-slide {
  margin: 0 12px;
}

.roomgallery-slider .slick-slide img {
  width: 100%;
  display: inline-block;
  height: auto;
  aspect-ratio: 4 / 2.4;
  object-fit: cover;
  border-radius: 15px;
}
/* .secondary-container.single-room .slick-slide:last-child img {
    object-fit: contain;
        background: #f2ede6;
} */
.roomgallery-nav .slick-track {
    margin-left: 0;
}
.roomgallery-nav .slick-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / .7;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
}

.roomgallery-slider .slick-slide {
  margin: 0 5px !important;
}

.roomgallery-nav .slick-slide {
  margin: 0 5px !important;
}

.roomgallery-nav {
  margin-top: 10px;
}

.roomgallery-img {
  margin: 0 -5px;
}

.room-types {
  padding: 30px;
  background: var(--secondary);
  border-radius: 15px;
}

.room-types .col {
  border-right: 1px solid #ffffff4d;
}

.room-types .col:last-child {
  border: none;
}

.singleroom-content {
  padding: 25px;
  border-radius: 12px;
  border: 1px dashed #3a191947;
  background: #fefcfb;
}

.overview-sec p:last-child {
  margin: 0;
}

.singleroom-content p,
.singleroom-content li {
  line-height: 1.6;
}

.singleroom-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--secondary);
}


.singleroom-content h1.leftheading {
  margin: 10px 0 20px !important;
  font-size: 34px;
}

.singleroom-content ul.room-features {
  background: var(--white);
  padding: 12px 15px;
  border: 1px solid #3a19191c;
  border-radius: 15px;
}

.singleroom-content ul li:not(:last-child) {
  border-right: 1px solid #3a19191a;
}


span.singleroom-pricing {
  position: absolute;
  top: 15px;
  left: 20px;
  background: var(--secondary);
  z-index: 9;
  padding: 5px 12px 6px;
  border-radius: 10px;
  line-height: 1;
  color: #e7e7e7;
  border: 1px solid #f9ae9894;
  font-size: 14px;
}

span.singleroom-pricing span {
  font-size: 22px;
  color: #f9ae98;
}

.room-titlesec i {
  transform: translateY(1px);
}

.roomtype-item>i {
  font-size: 33px !important;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dfba8f;
}

.room-price p span {
  font-size: 35px;
  color: #dfba8f;
  font-family: "Gilda Display", serif;
  font-weight: 600;
}

.roomtype-item p {
  color: #e5e5e5;
  line-height: 1;
}

.roomplan-sec .accordion-item {
  background: #ebe7e4;
  border-radius: 8px !important;
  overflow: hidden;
  border: 1px solid #e3e3e3;
}

.roomplan-sec .accordion-button {
  background-color: #faf8f6;
  padding: 14px 20px;
  font-size: 18px;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  position: relative;
}

.roomplan-sec .accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: var(--primary);
}

.roomplan-sec .accordion-button:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-size: 1rem;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: auto;
}

.roomplan-sec .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b6b'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  filter: brightness(0) invert(1);
}

.roomplan-sec .accordion-body {
  padding: 15px 20px;
  background-color: #faf8f6;
  line-height: 1.7;
  color: #555;
}

.roomplan-sec .accordion-body p:last-child {
  margin: 0;
}

.room-plan-title {
  text-align: left;
  flex-grow: 1;
}

.roomplan-sec .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.roomplan-sec .accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--primary);
}

.singleroom-sidebar {
  position: sticky;
  top: 5px;
}

.singleroom-sidebar-wp a.whatsapp-button {
    background: #27ad32;
    color: var(--white);
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
    letter-spacing: .2px;
    border-radius: 4px;
    padding: 12.5px 20px;
    line-height: 1;
}

.singleroom-sidebar-wp {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 23px;
  border: 1px dashed #3a191947;
  background: #fefcfb;
}

.singleroom-sidebar-form {
  padding: 30px;
  border-radius: 12px;
  border: 1px dashed var(--secondary);
  background: var(--secondary);
}

.singleroom-sidebar h3 {
  line-height: 1;
  margin-bottom: 25px;
  color: var(--white);
}

.singleroom-sidebar form input,
.singleroom-sidebar form textarea {
  padding: 12px 16px;
  font-size: 15px;
  border-radius: 12px !important;
  resize: none;
  background: #ffffff21;
  border: 1px solid #ffffff29;
  color: #dfdfdf;
  font-weight: 400;
}

.singleroom-sidebar form p {
  margin: 0;
}

.singleroom-sidebar form input[type="submit"] {
  margin-top: 12px;
  padding: 14px 26px;
  border: none;
  background: var(--primary);
  font-weight: 400;
  color: var(--white);
}

.singleroom-sidebar form input[type="submit"]:hover {
  background: var(--secondary);
}

.singleroom-sidebar form input::placeholder,
.singleroom-sidebar form textarea::placeholder {
  color: #2b2b2b8c;
}

.singleroom-sidebar form input[type="submit"]:hover {
  background: var(--white);
  color: var(--secondary);
}

.singleroom-sidebar form input::placeholder,
.singleroom-sidebar form textarea::placeholder {
  color: #dfdfdf;
  font-weight: 400;
}



.singleroom-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.singleroom-content ul li i {
  color: #eba18c;
  line-height: 0;
  height: 45px;
  width: 45px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.amenities-sec ul li i {
  font-size: 12px;
  transform: translateY(2px);
}


.amenities-wrapper .amenity-item {
  width: calc(33.3% - 6px);
  gap: 0 11px !important;
  background: #ffffff;
  padding: 25px 18px 20px;
  border-radius: 10px;
  border: 1px solid #3a19191f;
  flex-direction: column;
}

.amenities-wrapper .amenity-item p {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  line-height: 1.3;
  color: var(--secondary);
}

.amenities-wrapper .amenity-item i {
  font-size: 40px;
  color: var(--secondary);
  line-height: .5;
  margin-bottom: 12px;
}


.roomstravelslist {
  background: #b9946a14;
  border-radius: 8px !important;
  overflow: hidden;
  border: 1px solid #b9946a29;
}

.roomstravels-info {
  padding: 20px;
  text-align: center;
}

.roomstravelslist figure {
  margin: 0;
}

.roomstravels-info h4 {
  font-size: 22px;
}





.related-rooms {
  background: #fbf1ee;
}







.secondary-container.single-room .slick-slide {
  margin: 0 12px;
}

.secondary-container.single-room button.slick-arrow:after {
  display: none;
}

.secondary-container.single-room button.slick-arrow {
  background: var(--primary);
  color: var(--white);
  line-height: 1;
}

.secondary-container.single-room button.slick-arrow:hover {
  background: var(--secondary);
}

.secondary-container.single-room button.slick-prev.slick-arrow {
  left: -40px;
}

.secondary-container.single-room button.slick-next.slick-arrow {
  right: -40px;
}

.secondary-container.single-room button.slick-arrow i {
  font-size: 17px;
}










/* RESTAURANT PAGE CSS */


.restaurantlist {
  border-radius: 15px;
  clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
}

.restaurantlist:before,
.restaurantlist:after {
  position: absolute;
  content: '';
  width: 0;
  height: 100%;
  background: var(--secondary);
  transition: .5s;
  opacity: .5;
}

.restaurantlist:before {
  top: 0;
  left: 0;
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
}

.restaurantlist:after {
  top: 0;
  right: 0;
  clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
}

.restaurantlist:hover:before,
.restaurantlist:hover:after {
  width: 100%;
}

.restaurantlist img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}


/* TESTIMONIALS PAGE CSS */


.secondary-container.testimonials-page .testimonials-item p {
  color: #d5d5d5;
  margin: 15px 0;
}

.secondary-container.testimonials-page .testimonials-item {
  background: var(--secondary);
  padding: 30px;
  border-radius: 15px;
  position: relative;
}

.secondary-container.testimonials-page .testimonials-item h3 {
  color: var(--white);
  margin: 20px 0 0;
}

.secondary-container.testimonials-page .testimonials-item:not(:last-child) {
  margin-bottom: 23px;
}

.secondary-container.testimonials-page .testimonials-item:nth-child(even) .row {
  flex-direction: row-reverse;
}

.secondary-container.testimonials-page .testimonials-item h3 span.d-block {
  color: var(--primary);
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ffffff17;
  width: fit-content;
  margin: 15px auto 0;
  padding: 7px 17px;
  line-height: 1;
  font-weight: 500;
  border-radius: 10px;
}

.secondary-container.testimonials-page .testimonials-item .testimonials-rating {
  margin: 0;
}

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

.secondary-container.testimonials-page .testimonials-item i.fas.fa-quote-right {
  color: transparent;
  font-size: 42px;
  -webkit-text-stroke: 1px var(--primary);
}

.secondary-container.testimonials-page .testimonials-item:nth-child(even) .testimonialsitem-info {
  text-align: right;
}

.secondary-container.testimonials-page .testimonials-item:nth-child(even) .testimonialsitem-info .testimonials-rating {
  justify-content: end;
}










/* a.googlereview img {
  height: 100px;
}

.video-reviews-item iframe {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 15px;
} */



/* CAREERS PAGE CSS */



.careers-content {
  padding: 25px 30px 30px;
  border-radius: 15px;
  background: var(--secondary);
  position: relative;
}

.careers-content:before {}

.careers-content p:last-child {
  margin: 0;
}

.careers-content h2 {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 20px !important;
  color: var(--white);
}

.careers-content p {
  color: #e7e5e5;
  text-align: justify;
}

.careers-content h3 {
  color: #e9a490;
  margin: 15px 0;
}

.careers-content p a {
  color: #e9a490;
}

.careers-top figure img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.careers-content p strong {
  font-weight: 600;
  color: var(--secondary);
}

.careersform form input[type="text"],
.careersform form input[type="number"],
.careersform form input[type="email"],
.careersform form input[type="tel"],
.careersform form select,
.careersform form input[type="file"],
.careersform form textarea {
  background: var(--white);
  border-radius: 8px;
  padding: 10px 16px 11px;
  margin: 5px 0 12px;
  font-size: 16px;
  border: 1px solid #3a191921;
  width: 100%;
  line-height: 1;
}

.careersform form input[type="file"] {
  padding: 9px;
}

.careersform {
  background: #fffcfc;
  padding: 25px 30px 30px;
  border-radius: 15px;
  border: 2px dashed #df937d;
}

.careersform form input[type="submit"] {
  background: var(--primary);
  margin-top: 10px;
  padding: 14px;
  width: 100%;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 8px;
}

.careersform form input[type="submit"]:hover {
  background: var(--secondary);
}

.careersform form label {
  width: 100%;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
}

.careersform form label span.required-symbol {
  color: #e12626;
}

.careersform form .wpcf7-spinner {
  position: absolute;
  margin: 20px 0 0 3px;
}



.workwithus-item {
  border: 1px solid #3a191921;
  padding: 25px 20px;
  height: 100%;
  text-align: center;
  border-radius: 15px;
  background: #df937d05;
}

.workwithus-item h3 {
  color: var(--secondary);
}


/* BANQUET HALL PAGE CSS */

.seating-arrangement img {
  border-radius: 8px;
  max-width: 100%;
}


.banquet-hallsitem:not(:last-child) {
  margin-bottom: 30px;
}

.banquet-hallsitem:nth-child(even) .row {
  flex-direction: row-reverse;
}

.banquethallsitem-details table th,
.banquethallsitem-details table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #8d8d8d29;
}

.banquethallsitem-details table {
  width: 100%;
}

.banquethallsitem-details table th {
  background: var(--secondary);
  color: var(--white);
  border-color: #ffffff3b;
  font-weight: 500;
  letter-spacing: .3px;
}

.banquethallsitem-details {
  margin-top: 20px;
}

.banquet-hallsitem {
  padding: 25px;
  background: var(--white);
  box-shadow: 0 10px 40px -10px rgb(0 0 0 / 8%);
  border-radius: 8px;
  border: 1px solid #1f4a4a21;
}

.banquet-hallsitem-image img {
  border-radius: 15px;
  aspect-ratio: 1 / .81;
}

.banquet-hallsitem-info h3 {
  font-size: 32px;
  color: var(--secondary);
}

.banquet-hallsitem-info p {
  margin: 15px 0 25px;
}

.banquethallsitem-wrapper {
  display: flex;
  gap: 20px;
}

.banquethallsitem-wrapper h4 {
  font-size: 22px;
  color: var(--secondary);
}

.banquethallsitem-wrapper>div {
  width: calc(50% - 10px);
}

.banquethallsitem-wrapper ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1f4a4a1f;
}

.banquethallsitem-wrapper ul li:first-child {
  border-top: 1px solid #1f4a4a1f;
  margin-top: 10px;
  padding-top: 10px;
}


.custompopup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
}

.custompopup.active {
  display: flex;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.popup-content {
  position: relative;
  max-width: 900px;
  margin: 15px auto;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}




/* LAWN PAGE CSS CODE */


.overview-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px -10px rgb(0 0 0 / 8%);
  height: 100%;
  border: 1px solid #00000012;
}

.lawn-image img {
  width: 100%;
  aspect-ratio: 1 / .76;
  border-radius: 15px;
  object-fit: cover;
}


/* Event Types */
.event-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px -10px rgb(0 0 0 / 8%);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.event-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgb(6 26 26));
  display: flex;
  align-items: flex-end;
  padding: 15px 25px;
}

.event-overlay h3 {
  color: #d9b183;
  margin: 0;
  font-size: 1.8rem;
}

.event-content {
  padding: 20px 25px;
}

.event-content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.event-content ul li {
  position: relative;
  padding-left: 20px;
}

.event-content ul li i {
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--secondary) !important;
  font-size: 12px;
}

/* Features */

.lawn-features {
  background: linear-gradient(45deg, black, #0000009c), url('/wp-content/uploads/2026/01/wedding-image1.webp') no-repeat center center / cover;
  background-attachment: fixed;
}

.feature-item {
  display: flex;
  align-items: start;
  padding: 30px;
  background: #ffffff03;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #ffffff2e;
  backdrop-filter: blur(5px);
}

.feature-item:not(:last-child) {
  margin-bottom: 23px;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-right: 1rem;
  min-width: 40px;
}

.feature-item h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.feature-item p {
  color: #c9c9c9;
}

/* Gallery */

.lawngallery-sec {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.lawngallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  aspect-ratio: 1;
}

.lawngallery-item:hover {
  transform: translateY(-10px);
}

.lawngallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lawngallery-item:hover img {
  transform: scale(1.1);
}

.lawngallery-item:hover::before {
  opacity: 1;
}

.lawngallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lawngallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {

  .lawngallery-sec {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
}

/* PHOTO GALLERY PAGE CSS */


.photogallery-sec {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}

.photogallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
}

.photogallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photogallery-item:hover img {
  transform: scale(1.1);
}

.photogallery-item:hover::before {
  opacity: 1;
}

.photogallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photogallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {

  .photogallery-sec {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
  }
}



/* VIDEO GALLERY PAGE CSS */



.videogallery-sec {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.videogallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  aspect-ratio: 1;
}

.videogallery-item:hover {
  transform: translateY(-10px);
}

.videogallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.videogallery-item:hover img {
  transform: scale(1.1);
}

.videogallery-item:hover::before {
  opacity: 1;
}

.videogallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.videogallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {

  .videogallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
}



/* TOURIST PLACE PAGE CSS */


.touristplace-top figure img {
    width: 100%;
    height: auto;
    border-radius: 11px;
    aspect-ratio: 1 / .75;
    object-fit: cover;
    object-position: top;
}

.touristplace-top {
  padding: 30px;
  background: var(--secondary);
  border-radius: 15px;
}

.touristplace-top p {
  margin: 0;
  color: #fafafa;
  line-height: 1.6;
}

.touristplace-top h4.subheading {
  color: var(--primary);
}


.touristplacelist img {
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 8px;
}

.touristplacelist h3 {
  color: var(--white);
  font-size: 24px;
  padding-bottom: 5px;
}

.touristplacelist-info {
  padding: 0 10px;
}

.touristplacelist {
    border-radius: 10px;
    background: var(--secondary);
    padding: 12px;
    transition: .5s;
}

.touristplacelist span.number {
  font-size: 41px;
  font-weight: 700;
  position: absolute;
  top: 10px;
  right: 10px;
  color: transparent;
  -webkit-text-stroke: 1px #dbb283;
  height: 70px;
  width: 70px;
  background: var(--secondary);
  border-radius: 50% 15px 50% 50%;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.touristplacelist-info {
  padding: 0 15px 0 0;
}

.touristplacelist figure {
  flex: 2;
}

.touristplacelist .touristplacelist-info {
  flex: 3;
}

.touristplacelist-info p.description {
  margin: 0;
  color: var(--white);
}



/* POLICY PAGE CSS */

.policy-title {
  padding: 15px;
  background: var(--secondary);
  border-radius: 12px 12px 0 0;
}

.policy-title h1.heading {
  font-size: 36px;
}

.policy-content {
  background: #df937d0a;
  padding: 25px;
  border: 1px solid var(--secondary);
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.policy-content h3 {
  margin: 20px 0 12px;
  color: var(--secondary);
}

.policy-content h3:first-child {
  margin-top: 0;
}

.policy-content ul li {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 20px;
  position: relative;
  color: #484848;
  flex-wrap: wrap;
}

.policy-content ul li strong {
  font-weight: 500;
}

.policy-content ul li:before {
  position: absolute;
  content: '\f0a4';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  color: var(--primary);
  left: 0;
  top: 3px;
  font-size: 12px;
}

.policy-content p:last-child {
  margin: 0;
}


/* AUTO POPUP CSS */





/* RESPONSIVENESS CSS */

@media only screen and (min-width: 1549px) {
.footer-about {
    padding: 55px 35px;
}
}

@media only screen and (max-width: 1449px) {
.menutop li a {
    padding: 36px 20px;
    font-size: 13px;
}
header nav.menucontainer ul.menutop select.gt_selector.notranslate {
    padding: 6px;
    font-size: 13px;
}	
.header-cntct{
	display: none !important;
}	
}

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

}

@media only screen and (max-width: 991px) {
.menubar>a img {
    height: 65px;
}
	
	
.mainslider #carouselExampleFade .carousel-item>img {
    aspect-ratio: 12/9;
}	
.carousel-caption-info img {
    height: 50px;
}	
.carousel-caption-info h4 {
    font-size: 24px;
}	
.mainslider .carousel-caption h1 {
    max-width: 100%;
    font-size: 30px;
    margin: 15px auto 25px;
}
.carousel-control-next img, .carousel-control-prev img {
    width: 40px;
    height: 40px;
}
.btn, .singleroom-sidebar-wp a.whatsapp-button {
    padding: 9px 20px;
    font-size: 14px;
}
.carousel-control-next, .carousel-control-prev {
    width: 40px;
    height: 40px;
}
.carousel-control-prev {
    left: 12px;
}	
.carousel-control-next {
    right: 12px;
}	
.bookingform-inner {
    padding: 20px;
}
.bookingform-inner form input[type="text"], .bookingform-inner form input[type="email"], .bookingform-inner form input[type="tel"], .bookingform-inner form input[type="number"], .bookingform-inner form select, .bookingform-inner form input[type="date"] {
    padding: 11px 15px;
}	
.bookingform-inner form input[type="submit"] {
    padding: 12.5px;
}	
	
.homeabout-img img {
    aspect-ratio: 1;
}
	
.roomsitem-info h3 {
    font-size: 22px;
    display: block;
    min-height: fit-content;
    width: 100%;
}	
	
.restaurant-wrapper {
    margin-top: -30px;
}
.restaurant-wrapper .slick-slide {
    margin: 0 6px;
}
.restaurant-slider button.slick-prev.slick-arrow, .restaurant-slider button.slick-next.slick-arrow {
    bottom: -30px;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}	
.restaurant-slider button.slick-prev.pull-left.slick-arrow {
    margin-left: -25px;
}	
.restaurant-slider button.slick-next.pull-right.slick-arrow {
    margin-left: 25px;
}	
	
.heading, .leftheading {
    margin-bottom: 30px;
    font-size: 32px;
}	
.subheading {
    font-size: 14px;
}
.breadcrumb {
    padding: 150px 0 0;
    margin-top: -85px;
}	
.breadcrumb h1 span {
    font-size: 28px;
}	
.breadcrumb h1 {
    margin: 0 0 60px;
}	
.breadcrumb p, .breadcrumb span, .breadcrumb p a {
    font-size: 14px;
}	

	
.contact-location {
    padding: 20px 0;
}	
.contact-details-cnt strong {
    font-size: 20px;
    margin: 10px 0 8px;
}
.secondary-container.testimonials-page .testimonials-item {
    padding: 20px;
}	
.secondary-container.testimonials-page .testimonials-item .testimonialsitem-info {
    text-align: center !important;
}	
.secondary-container.testimonials-page .testimonials-item .testimonials-rating {
    justify-content: center !important;
}	
.secondary-container.testimonials-page .testimonials-item p {
    margin: 10px 0 15px;
    display: block;
	font-size: 14px;
}	
	
	
.aboutus-image img {
    aspect-ratio: 1 / .8;
}	
.aboutus-content {
    padding: 25px;
    max-width: 100%;
    margin: 20px auto 0;
}	
	
	
.careers-content, .careersform {
    padding: 20px 25px 25px;
}
.careers-content h2 {
    font-size: 26px;
}
	
.singleroom-content h1.leftheading {
    margin: 15px 0 20px !important;
    font-size: 26px;
}	
.singleroom-content {
    padding: 20px;
}	
.singleroom-sidebar-form {
    padding: 20px;
}	
span.singleroom-pricing {
    font-size: 13px;
}
span.singleroom-pricing span {
    font-size: 18px;
}	

}



@media only screen and (max-width: 767px) {
.footer-about {
    padding: 25px;
    margin-top: 0;
}	
.copyright {
    padding: 20px 0;
}	
	
	
.section-padding {
    padding: 40px 0;
}
.contactform {
    padding: 20px;
}
.contactform h2 {
    font-size: 24px;
    margin-bottom: 18px;
}
.contact-form iframe {
    aspect-ratio: 3 / 2;
}
	
.touristplace-top {
    padding: 25px;
}	
	
	
#GoToTop {
    bottom: 40px;
    right: 15px;
}	
#whatsappbtn {
    bottom: 30px;
    left: 15px;
}	
	
	
.singleroom-content ul li.col {
    flex: 0 0 48%;
    border: none;
    gap: 5px;
}
	
	
	
}

@media only screen and (max-width: 667px) {
.mainslider #carouselExampleFade .carousel-item>img {
    aspect-ratio: 1;
}
.marqueeinnerlistitem h4 {
    font-size: 24px;
  }

  .marqueeinnerlistitem:nth-child(even) h4 {
    -webkit-text-stroke: .5px #f6e6e2;
  }

  .marqueeinnerlist,
  .marqueeinnerlistitem {
    gap: 15px;
  }	
.marqueeinnerlistitem i {
    font-size: 22px;
}	
	
	
	
.contact-details-cnt figure {
    width: 70px;
    height: 70px;
}	
.contact-details-cnt figure img {
    width: 35px;
}
	
.secondary-container.single-room button.slick-prev.slick-arrow, .secondary-container.single-room button.slick-next.slick-arrow {
    top: 47%;
}
.secondary-container.single-room .slick-slide {
    margin: 0;
}	
.secondary-container.single-room button.slick-prev.slick-arrow {
    left: 5px;
}
.secondary-container.single-room button.slick-next.slick-arrow {
    right: 5px;
}	
	
	
}

@media only screen and (max-width: 580px) {
	
	
.serviceslist figure {
    height: 70px;
    width: 70px;
}	
.serviceslist figure i {
    font-size: 25px;
}	
	
	
	.touristplacelist {
    flex-direction: column;
    gap: 14px !important;
}	
.touristplacelist img {
    aspect-ratio: 1 / .6;
}
.touristplacelist-info {
    padding: 5px 10px 10px;
}	
.touristplacelist h3 {
    font-size: 22px;
    padding: 0;
}		
.rooms-item a.btn-primary {
    font-size: 13px;
    padding: 8px 18px;
}	
	
.slider-arrows button.slick-arrow {
    font-size: 14px;
    width: 2.5rem;
    height: 2.5rem;
}	
.testimonials-btns a.btn {
    padding: 10px 16px;
    font-size: 13px;
    border-width: 1px;
}	
	
.homebloglist-topinfo {
    padding: 25px;
}	
.homebloglist-topinfo ul li {
    font-size: 14px;
}	
.homebloglist-btminfo {
    padding: 25px;
}	
.homebloglist-btminfo h3 a {
    font-size: 22px;
}	
.homebloglist>img {
    aspect-ratio: 1 / 1.1;
}
	
.footer-newsletter h2 img {
    width: 26px;
}	
.footer-newsletter h2 {
    font-size: 26px;
}	

.footer-details {
    padding: 25px 0;
}	
.footer-details .col {
    flex: 0 0 100%;
}	
.footertop-item {
    gap: 7px !important;
}
.footer-details .footertop-item i {
    font-size: 15px;
    height: 40px;
    width: 40px;
}	
.footer-details .footertop-item p {
    font-size: 16px;
}	


.pagetop-content {
    padding: 20px;
}	
.subdescription {
    font-size: 14px;
}	
	
	
.amenities-wrapper .amenity-item {
    width: calc(50% - 6px);
	padding: 18px 18px 10px;
}
.amenities-wrapper .amenity-item i {
    font-size: 28px;
}	
.amenities-wrapper .amenity-item p {
    font-size: 13px;
	
}
	
.policy-title {
    padding: 10px;
}	
.policy-title h1.heading {
    font-size: 22px;
}
.policy-content {
    padding: 20px;
}
.policy-content h3 {
    margin: 15px 0 10px;
    font-size: 18px;
}	
}


@media only screen and (max-width: 480px) {
.mainslider #carouselExampleFade .carousel-item>img {
    aspect-ratio: 1 / 1.2;
}	
.carousel-control-next, .carousel-control-prev {
    bottom: 0;
    top: auto;
}
	
span.roomsitem-price {
    font-size: 12px;
}
span.roomsitem-price strong {
    font-size: 18px;
}	
	
	
	
.testimonials-counter h3 {
    font-size: 30px;
}	
.testimonials-counter p {
    font-size: 14px;
}
.testimonials-item img.quotation {
    width: 42px;
}
.testimonials-item p {
    font-size: 15px;
    margin: 10px 0 15px;
}	
.testimonialsitem-btm span h3 {
    font-size: 18px;
}	
.testimonialsitem-btm span h3 span {
    font-size: 14px;
}	
	
.roomsitem-info h3 {
    font-size: 20px;
}	
.roomsitem-features ul {
    flex-wrap: wrap;
    gap: 15px;
}	
.roomsitem-features ul li:not(:first-child) {
    border-left: none;
    padding-left: 0;
}	
	
.heading, .leftheading {
    margin-bottom: 25px;
    font-size: 24px;
}	
	
	
.breadcrumb-menu {
    padding: 6px 12px;
}	
.breadcrumb p, .breadcrumb span, .breadcrumb p a {
    line-height: 1;
}
p#breadcrumbs span>span:nth-child(1) a {
    padding-left: 17px;
}	
p#breadcrumbs span>span:nth-child(1) a:before {
    top: 3px;
    font-size: 12px;
}	
.breadcrumb a:after {
    font-size: 11px !important;
    top: 4px;
}	
	
.singleroom-content h1.leftheading {
    font-size: 24px;
}	
.singleroom-content ul li i {
    font-size: 14px !important;
}
.singleroom-content ul li.col span {
    font-size: 13px;
}
	
.singleroom-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}	
	
	
	
}