:root {
  --primary-color: #1e1e1e;
  --secondary-color: #f7fdff;
  --cta-color: #ffc30f;
  --primary-text-color: #f7fdff;
  --secondary-text-color: #212121;
  --para-color: #4a4a4a;
  --white: #ffffff;
  --off-white: #d6d0d0;
}

/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-text-color);
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 600;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 21px;
  color: var(--off-white);
}

img {
  max-width: 100%;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background-color: var(--primary-color);
}
::selection {
  background: var(--cta-color);
  color: var(--primary-text-color);
}

::-moz-selection {
  background: var(--cta-color);
  color: var(--primary-text-color);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  font-weight: 500;
  font-size: 40px;
  text-transform: capitalize;
  margin-top: 10px;
  color: var(--primary-text-color);
  line-height: 50px;
}

.section-heading h2 em {
  font-style: normal;
  color: var(--cta-color);
}

.section-heading h6 {
  color: var(--cta-color);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.icon-button button {
  border: none;
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 30px;
  border-radius: 25px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.icon-button button::after {
  position: absolute;
  content: "";
  background-color: var(--cta-color);
  height: 100%;
  width: 100%;
  top: 0;
  left: -70%;
  border-radius: 25px;
  z-index: -1;
  transition: all 0.3s ease;
}

.icon-button button i {
  color: var(--white);
  font-size: 20px;
  position: relative;
  left: -15px;
}

.icon-button button:hover {
  color: var(--primary-text-color);
  box-shadow: 2px 2px 7px #ffdb6e;
}
.icon-button button:hover::after {
  left: 0;
}

.main-button a {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--primary-text-color);
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all 0.3s;
}

.main-button a:hover {
  background-color: var(--cta-color);
  color: var(--primary-text-color);
}
.custom-container {
  width: 90%;
  margin: 0 auto;
}
/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: var(--cta-color);
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: var(--cta-color);
  border-radius: 50%;
}

/* 
---------------------------------------------
Booking Modal Style
--------------------------------------------- 
*/

/* Popup container */
.popup-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dim background */
  z-index: 99999;
  transform: scale(0);
  transition: all 0.3s ease;
}

/* Popup content */
.popup-banner-content {
  position: relative;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  background-color: white;
  text-align: center;
  transform-origin: center;
  border-radius: 8px;
  left: 50%;
  top: 50%;
  transform: scale(0);
  transition: all 0.5s ease;
}

/* Close button */
.close-banner-btn i {
  padding: 10px 15px;
}
.close-banner-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 30px;
  cursor: pointer;
  color: var(--white);
  background-color: var(--cta-color);
  border-radius: 50%;
}

/* Image styling */
.popup-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* 
---------------------------------------------
Booking Modal Style
--------------------------------------------- 
*/
#bookingModalLabel {
  font-size: 1.5rem;
  color: var(--secondary-text-color);
  font-weight: 600;
}
.modal-header,
.modal-footer {
  background-color: var(--cta-color);
}

.modal-body {
  background-color: var(--primary-color);
}
.modal-body label {
  color: var(--primary-text-color);
}

.modal-body span {
  color: var(--cta-color);
}
#booking-form > .row {
  margin-top: 7px;
}
#booking-form label {
  margin-bottom: 3px;
  font-size: 18px;
  font-weight: 500;
}

#booking-form select option {
  font-family: "Poppins", sans-serif;
}

.form-check-input {
  font-size: 16px;
}

#booking-form .form-check-label {
  font-size: 14px;
}
.submit-booking {
  color: var(--primary-text-color);
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.submit-booking:hover {
  color: var(--primary-text-color);
  margin-top: -2px;
  scale: 1.02;
  box-shadow: 3px 3px 10px var(--primary-color);
}


/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.header-area {
  position: fixed;
  width: 100%;
  background-color: var(--secondary-color);
  z-index: 100;
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header-area .main-nav {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-area .main-nav .logo img {
  height: 60px;
  transition: transform 0.5s ease;
}
.header-area .main-nav .nav li {
  padding: 10px 15px;
}
.header-area .main-nav .nav li:nth-last-child(1) {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  text-transform: capitalize;
  color: var(--secondary-text-color);
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: 0.25px;
}

.header-area .main-nav .nav li a:hover {
  color: var(--cta-color);
}

.header-area .main-nav .nav li a.active {
  color: var(--cta-color);
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 10%;
  display: none;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--primary-color);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--primary-color);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: var(--primary-color);
}

.header-area .main-nav .menu-trigger.active span:after {
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: var(--primary-color);
}

.visible {
  display: inline !important;
}

.sub-header {
  background-color: var(--primary-color);
  padding: 10px 0px;
  border-bottom: 1px solid var(--white);
  transition: all 0.5s ease;
}

.sub-header ul li {
  display: inline-block;
}

.sub-header ul.social-links {
  text-align: right;
}

.sub-header ul.social-links li {
  margin-left: 8px;
}

.sub-header ul.social-links li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: var(--primary-color);
  font-size: 14px;
  transition: all 0.3s;
}

.sub-header ul.social-links li a:hover {
  background-color: var(--cta-color);
  color: var(--primary-text-color);
}

.sub-header ul.info li {
  font-size: 14px;
  color: var(--primary-text-color);
  border-right: 1px solid var(--off-white);
  margin-right: 25px;
  padding-right: 25px;
}

.sub-header ul.info li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}

.sub-header ul.info li i {
  font-size: 20px;
  color: var(--cta-color);
  margin-right: 8px;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/
.main-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 40vh;
  padding-left: 15%;
  min-height: 100vh;
  position: relative;
}
.main-banner .item-1 img,
.main-banner .item-2 img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  min-height: 100vh;
  object-fit: cover;
}

.main-banner .item span.category {
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 15px;
  display: inline-block;
  margin-bottom: 30px;
}

.main-banner .item span.category em {
  font-style: normal;
  color: var(--cta-color);
}

.main-banner .item h1,
.main-banner .item h2 {
  font-weight: 700;
  font-size: 55px;
  text-transform: uppercase;
  color: var(--primary-text-color);
  line-height: 60px;
  margin-bottom: 0px;
  text-shadow: 3px 2px 5px #1d1d1c;
}

.main-banner .item .btn {
  all: unset;
  margin-top: 30px;
  transition: all 0.3s ease;
  width: 100px;
  height: 30px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: var(--primary-text-color);
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.main-banner .item .btn::after,
.main-banner .item .btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all 0.4s;
}

.main-banner .item .btn::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: var(--cta-color);
  border-radius: 10px;
}

.main-banner .item .btn::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #00000015;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.main-banner .item .btn:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.main-banner .item .btn:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.main-banner .item .btn:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

.main-banner .owl-dots {
  position: absolute;
  bottom: 40px;
  right: 20%;
}

.main-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.5s;
}

.main-banner .owl-dots .active {
  background-color: var(--cta-color);
  width: 30px;
  border-radius: 50px;
}

.main-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: var(--primary-text-color);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}

.main-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}

.main-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}

/* 
---------------------------------------------
Featured Style
--------------------------------------------- 
*/
.featured {
  position: relative;
}

.featured .section-heading {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 60px;
}

.featured .section-heading h2 {
  width: 70%;
  color: var(--primary-text-color);
}

.featured .accordion {
  margin-left: 10px;
  margin-right: 10px;
  --bs-accordion-border-radius: 10px;
  --bs-accordion-inner-border-radius: 10px;
  --bs-accordion-bg: var(--white);
  --bs-accordion-border-color: none;
  border: none;
}

.featured .accordion-item {
  border-bottom: 1px solid var(--off-white);
}

.featured .accordion-button {
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  color: var(--secondary-text-color);
}

.featured .accordion-button:not(.collapsed) {
  color: var(--cta-color);
  background-color: var(--white);
  outline: none;
}

.featured .accordion-button::after {
  display: none;
}

.featured #headingThree {
  border-bottom: none;
}

.featured .accordion-item:last-of-type .accordion-collapse {
  border-top: 1px solid var(--white);
}
.featured .aminities-info-detail .aminities-info-image {
  position: relative;
}
.featured .aminities-info-detail .main-img {
  height: 200px;
  object-fit: cover;
  width: 80%;
}

.featured .aminities-info-detail .left-img,
.featured .aminities-info-detail .right-img {
  height: 80px;
  position: absolute;
  border: 2px solid var(--cta-color);
  border-radius: 4px;
}

.featured .aminities-info-detail .right-img {
  right: 0;
  top: 0px;
}
.featured .aminities-info-detail .left-img {
  right: 0;
  bottom: 0px;
}

.featured .aminities-info-detail .featured-info h3 {
  margin: 30px 0 10px 0;
  color: var(--cta-color);
}

.featured .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px var(--cta-color);
}

.featured .info-table ul li {
  border-bottom: 1px solid var(--cta-color);
  transition: all 0.3s ease;
  padding: 20px;
}

.featured .info-table ul li img,
.featured .info-table ul li h4,
.featured .info-table ul li p {
  cursor: pointer;
}

.featured .info-table ul li:first-child.active {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.featured .info-table ul li:last-child.active {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.featured .info-table ul li:last-child {
  border-bottom: none;
}

.featured .info-table ul li img {
  float: left;
  margin: 0 25px 10px 0;
}

.featured .info-table ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.featured .info-table ul li p {
  font-size: 14px;
  color: var(--primary-text-color);
  font-weight: 400;
}

.featured .info-table ul li.active {
  background-color: var(--cta-color);
}
.featured .info-table ul li.active img {
  mix-blend-mode: difference;
}
.featured .info-table ul li.active h4,
.featured .info-table ul li.active p {
  color: var(--secondary-text-color);
}

.aminities-info-detail {
  display: none;
  transition: all 0.3s ease;
}

.aminities-info-detail.active {
  display: block;
}

/* 
---------------------------------------------
Video Style
--------------------------------------------- 
*/

.video {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 250px 0px;
  position: relative;
}

.video-content {
  margin-top: -240px;
}

.video .section-heading h2 {
  color: var(--primary-text-color);
}

.video-content .video-frame {
  position: relative;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-content .video-frame i {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--cta-color);
  font-size: 40px;
}
.video-content .video-frame .play-enlarge,
.video-content .video-frame .play-enlarge-2 {
  font-size: 40px;
  color: #fbdf8c94;
  position: fixed;
  top: 46%;
  left: 48.5%;
  animation: thumbnail 2s ease-in-out infinite;
}

@keyframes thumbnail {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(3.5);
  }
}
.video-content .video-frame i.play-enlarge-2 {
  animation-delay: 0.8s;
}

.video-content .video-frame img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

/* 
---------------------------------------------
Fun Facts Style
--------------------------------------------- 
*/

.fun-facts {
  text-align: center;
  margin-top: 125px;
}

.fun-facts .counter {
  background-color: var(--secondary-color);
  position: relative;
  border-radius: 10px;
  width: 270px;
  padding: 20px 0px;
  display: inline-block;
}

.fun-facts .counter h2,
.fun-facts .counter p {
  display: inline-flex;
  vertical-align: middle;
}

.fun-facts .counter p {
  text-align: left;
  font-size: 16px;
  color: var(--secondary-text-color);
  font-weight: 600;
  line-height: 28px;
}

.fun-facts .counter h2 {
  margin-right: 25px;
  font-size: 40px;
  color: var(--cta-color);
}

.fun-facts .counter:after {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--cta-color);
  border-radius: 50%;
  content: "";
  right: -25px;
  top: -25px;
}

/* 
---------------------------------------------
Best Deal Style
--------------------------------------------- 
*/

.best-deal {
  padding: 100px 0px;
}

.best-deal .tabs-content .nav-link {
  font-size: 16px;
  font-weight: 500;
  background-color: var(--secondary-color) !important;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding: 0px 25px;
  color: var(--secondary-text-color);
}

.best-deal .tabs-content .nav-tabs .nav-link.active {
  background-color: var(--cta-color) !important;
  color: var(--primary-text-color);
}

.best-deal .tabs-content ul.nav-tabs {
  border-bottom: none !important;
  margin-bottom: 80px;
  align-items: end;
  justify-content: end;
  margin-top: -130px;
}

.best-deal .tabs-content ul.nav-tabs li {
  padding-right: 0px;
  border-right: none;
  margin-left: 20px;
}

.best-deal .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.4);
  padding: 35px 30px;
}

.best-deal .info-table ul li {
  display: block;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--white);
  text-align: left;
  font-size: 15px;
  color: var(--primary-text-color);
  font-weight: 400;
}

.best-deal .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.best-deal .info-table ul li span {
  font-size: 20px;
  color: var(--primary-text-color);
  font-weight: 700;
  float: right;
  display: inline-block;
}

.best-deal .tabs-content {
  padding: 0px;
  background-color: transparent;
}

.best-deal .tabs-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 30px;
}
.best-deal .prop img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

/* 
---------------------------------------------
Room Page Style
--------------------------------------------- 
*/

.room-page img {
  border-radius: 12px 0 0 12px;
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.room-page h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.room-page .room-details {
  position: relative;
}

.room-page .room-img {
  overflow: hidden;
}
.room-page .room-img img {
  transition: all 0.5s ease;
  cursor: pointer;
}
.room-page .room-img img:hover {
  transform: scale(1.1);
}

.room-page .facility {
  display: flex;
  justify-content: center;
  align-items: center;
}

.room-page .room-details .facility i {
  color: var(--off-white);
  border: 1px solid var(--off-white);
  padding: 10px;
  border-radius: 6px;
}

.room-page .room-details .facility img {
  height: 40px;
  width: 40px;
}

.room-page .room-details .more-details {
  margin: 0;
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid #ffdb6e;
  width: max-content;
  padding: 7px 10px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.room-page .room-details .more-details i {
  color: var(--white);
  margin-left: 5px;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.3s ease;
}

.room-page .room-details .more-details:hover {
  background-color: #ffdb6e;
}
.room-page .room-details a {
  color: var(--off-white);
  font-size: 14px;
}
.room-page .room-details .more-details:hover {
  color: var(--primary-color);
}

.room-page .room-details .more-details:hover i {
  margin-left: 15px;
  color: var(--primary-color);
}

/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact {
  background-image: url(../images/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 250px 0px;
  position: relative;
}

.contact .section-heading h2 {
  color: var(--primary-text-color);
}

.contact-content {
  margin-top: -240px;
  position: relative;
  z-index: 1;
}

.contact-content .map {
  box-shadow: 0px 0px 15px #2a2a2a;
}

.contact-content .map a {
  transition: all 0.3s ease;
  filter: grayscale(0);
}
.contact-content .map a:hover {
  filter: grayscale(0.5);
}
.contact-content .map img {
  object-fit: cover;
}
.contact-content .row {
  padding-left: 0;
  padding-right: 0;
}

.contact-content .call-us {
  z-index: -100;
  height: max-content;
  padding: 40px 0 30px 20px;
  border-radius: 0 12px 12px 0;
}

.contact-content ul li {
  padding-left: 10px;
}
.contact-content ul li i {
  width: 5%;
  text-align: right;
}

.contact-content ul li i.location-dot {
  font-size: 20px;
  text-align: right;
}
.contact-content .call-us {
  background-color: var(--cta-color);
}
.contact-content .call-us h6 {
  font-size: 20px;
  font-weight: 500;
  color: var(--para-color);
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  background-color: var(--primary-color);
}
footer h4 {
  color: var(--off-white);
}
footer .upper-footer p {
  font-size: 16px;
  font-weight: 400;
  color: var(--off-white);
}

footer a {
  color: var(--off-white);
  transition: all 0.3s;
  position: relative;
  z-index: 3;
}

footer a:hover {
  color: var(--cta-color);
  padding-left: 5px;
}

footer .upper-footer {
  padding-top: 50px;
  background-color: #1b1a1a;
}

footer .upper-footer i {
  width: 30px;
  font-size: 25px;
  color: var(--off-white);
}
@media (max-width: 300px) {
  footer .upper-footer i {
    width: 25px;
  }
}
footer .upper-footer img {
  height: 80px;
}

footer .lower-footer {
  color: var(--primary-text-color);
}
footer .lower-footer a {
  color: var(--primary-text-color);
}

@media (max-width: 360px) {
  footer .lower-footer p {
    font-size: 12px;
  }
  .contact-content .call-us ul li {
    font-size: 12px;
  }

  footer .reach p {
    font-size: 12px !important;
  }
  footer .reach ul {
    padding-left: 10px;
  }
  footer .reach ul li {
    margin-right: 0px;
  }
}

/* 
---------------------------------------------
Page Header Style
--------------------------------------------- 
*/

.page-heading {
  background-image: url(../images/page-heading-bg.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0px 100px;
  text-align: center;
}

.page-heading span {
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.page-heading span a {
  color: var(--secondary-text-color);
}

.page-heading h3 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-text-color);
}

.book-now-section {
  background-color: var(--cta-color);
}
.book-now-section h3 {
  font-size: 30px;
  color: var(--secondary-text-color);
}

@media (max-width: 300px) {
  .book-now-section h3 {
    font-size: 18px;
  }
}

.book-now-section .book-now-button {
  border: none;
  color: var(--primary-text-color);
  padding: 7px 15px;
  border-radius: 12px;
  position: relative;
  background-color: var(--primary-color);
  z-index: 10;
  transition: all 0.3s ease;
}
.book-now-section .book-now-button::after {
  position: absolute;
  border: 2px solid var(--white);
  content: "";
  height: 100%;
  width: 100%;
  top: -2px;
  left: -2px;
  border-radius: 12px;
  z-index: -1;
  transition: all 0.3s ease;
}

.book-now-section .book-now-button:hover::after {
  top: 0px;
  left: 0px;
}

@media (max-width: 290px) {
  .book-now-section .book-now-button {
    margin-left: -100px;
  }
}

/* 
---------------------------------------------
Aminities Style
--------------------------------------------- 
*/

.aminities .aminities-detail .aminities-info .info-item {
  border: 2px solid #ffc30f47;
  padding: 7px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.aminities .aminities-detail .aminities-info .info-item.active {
  background-color: #000;
}

.aminities .aminities-detail .aminities-image img {
  height: 450px;
  object-fit: cover;
  width: 100%;
}
.aminities .aminities-detail .aminities-info .info-item {
  cursor: pointer;
}
.aminities .aminities-detail .aminities-info .info-item .aminities-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 7px;
}
/* 
----------------------------------
Services Section
----------------------------------

*/

.services .services-item {
  border: 1px solid #ffc30f47;
  margin-top: 20px;
  padding: 20px;
  box-shadow: 0px 0px 10px #000000;
  transition: all 0.5s ease;
  text-transform: capitalize;
  height: 250px;
}

.services .services-item:hover {
  background-color: #000;
}

.services .services-item img {
  height: 50px;
  margin-bottom: 10px;
}
.services .services-item i.fa-arrow-right-arrow-left {
  font-size: 20px;
}

.services .services-item .services-title {
  margin: 10px 0 15px 0;
  font-size: 20px;
  color: var(--white);
}

.services .services-item p {
  text-transform: capitalize;
}

.services .see-more-button {
  color: var(--cta-color);
  background-color: transparent;
  border: 2px solid var(--cta-color);
  padding: 7px 15px;
  font-size: 18px;
  box-shadow: 0px 2px 10px var(--cta-color);
  transition: all 0.5s ease;
}

.services .see-more-button:hover {
  background-color: var(--cta-color);
  color: var(--white);
  box-shadow: 0px 0px 5px var(--cta-color);
}

/* 
---------------------------------------------
Near Places
---------------------------------------------
*/
.places-near .place {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #0b0a0a;
  box-shadow: 0px 0px 5px #525252;
}

.places-near .place img {
  height: 300px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  overflow: hidden;
  transition: all 0.5s ease;
}

.places-near .places-info {
  padding: 20px 0px 20px 50px;
  transition: all 0.5s ease;
  z-index: 3;
}
.places-near .place-title {
  color: var(--primary-text-color);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
  margin-top: -10px;
  position: relative;
}

.places-near .place-title::after {
  position: absolute;
  content: "";
  height: 2px;
  background-color: var(--white);
  width: 25px;
  left: -40px;
  top: 40%;
}

@media (min-width: 567px) and (max-width: 767px) {
  .places-near .place:nth-child(3) {
    margin-top: 30px;
  }
}

/* 
---------------------------------------------
Contact Page Style
--------------------------------------------- 
*/

.contact-page #map {
  margin-top: 100px;
}

.contact-page .section-heading {
  margin-bottom: 40px;
  margin-right: 280px;
}

.contact-page p {
  margin-bottom: 50px;
}

.contact-page .item {
  display: inline-block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #797979;
  color: var(--primary-text-color);
}

.contact-page .item i {
  font-size: 20px;
  float: left;
}

@media (max-width: 310px) {
  .contact-page .item {
    text-align: center;
  }
  .contact-page .item i {
    font-size: 30px;
    margin-bottom: 10px;
    float: none;
  }
  .contact-page .item h6 {
    border: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}

.contact-page .item h6 {
  font-weight: 400;
  vertical-align: middle;
  border-left: 1px solid #aaa;
  margin-left: 35px;
  padding-left: 15px;
}

.contact-page .contact-socials a {
  color: var(--primary-text-color);
  border: 1px solid var(--primary-text-color);
  padding: 5px 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.contact-page .contact-socials a:hover {
  color: var(--secondary-text-color);
  background-color: var(--secondary-color);
}

.contact-page #contact-form {
  margin-left: 30px;
  box-shadow: 0px 0px 15px #000000;
  border-radius: 10px;
  padding: 35px 30px;
  background-color: var(--primary-color);
}
.contact-page #contact-form label span {
  color: red;
}
.contact-page #contact-form label {
  font-size: 15px;
  color: var(--primary-text-color);
  margin-bottom: 15px;
}

.contact-page #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}

.contact-page #contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}

.contact-page #contact-form button {
  background-color: var(--cta-color);
  height: 44px;
  padding: 0px 20px;
  color: var(--secondary-text-color);
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s;
}

.contact-page #contact-form button:hover {
  background-color: var(--cta-color);
  border-radius: 22px;
  box-shadow: 0px 0px 10px #ffdb6e;
}

/* 
---------------------------------------------
Gallery Page
--------------------------------------------- 
*/

.image-gallery-section .gallery {
  display: flex;
  gap: 20px;
}

.image-gallery-section .gallery {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}

.image-gallery-section .gallery .wide {
  grid-column: span 2;
}

.image-gallery-section .gallery .tall {
  grid-row: span 2;
}

.image-gallery-section .gallery .big {
  grid-row: span 2;
  grid-column: span 2;
}
.image-gallery-section .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

@media (max-width: 992px) {
  .main-banner .item h1,
  .main-banner .item h2 {
    width: 100%;
  }
  .featured .section-heading {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 100px;
  }
  .featured .accordion {
    margin-left: 0px;
    margin-right: 0px;
  }
  .featured .info-table {
    margin-top: 45px;
  }
  .fun-facts .counter {
    margin-bottom: 45px;
  }
  .best-deal .section-heading {
    text-align: center;
  }
  .best-deal .tabs-content ul.nav-tabs {
    margin-top: 0px;
    justify-content: center;
  }
  .best-deal .info-table {
    margin-bottom: 45px;
  }
  .best-deal .tab-content img {
    padding: 0px;
  }
  .best-deal .tabs-content h4 {
    margin-top: 45px;
  }
  .properties .item h6 {
    text-align: center;
    margin-bottom: 15px;
  }
  .properties .item .main-button {
    text-align: center;
  }
  .properties .item ul li {
    margin-right: 10px;
    font-size: 13px;
  }
  .contact-content .phone {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .contact-content .email {
    margin-left: 0px;
    margin-bottom: 45px;
  }
  .contact-content #contact-form {
    margin-left: 0px;
  }
  .single-property .info-table {
    margin-left: 0px;
    margin-top: 45px;
  }
  .contact-page .section-heading {
    margin-right: 0px !important;
  }
  .contact-page #contact-form {
    margin-left: 0px;
    margin-top: 60px;
  }
  .best-deal .info-table ul li span {
    float: right !important;
    width: auto !important;
  }
  footer .reach {
    margin-top: 20px;
  }
}

/* 
-------------------------
About Page
-------------------------
 */
.title {
  font-size: 40px;
  color: var(--cta-color);
  font-weight: 600;
}
.about-section span {
  color: var(--primary-text-color);
}

.about-section .about-picture {
  position: relative;
}
.about-section .big-picture {
  height: 450px;
  object-fit: cover;
}
.about-section .small-picture {
  width: 70%;
  position: absolute;
  left: 0;
  bottom: -50px;
  z-index: 10;
  padding: 10px;
  background-color: var(--primary-color);
}
.about-section .small-picture img {
  height: 200px;
  object-fit: cover;
}

.about-section .about-content i {
  color: #ffffff;
  font-size: 30px;
}

.about-section .about-content a {
  color: var(--cta-color);
}

.room-section .see-more a {
  color: var(--cta-color);
  transition: all 0.5s ease;
  position: relative;
}
.room-section .see-more a::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 2px;
  left: -30%;
  top: 25px;
  background-color: var(--cta-color);
  border-radius: 12px;
  opacity: 0;
  transition: all 0.3s ease;
}
.room-section .see-more a:hover {
  letter-spacing: 0.5px;
}
.room-section .see-more a:hover::after {
  left: 0;
  opacity: 1;
}

/* Aminities Page */

.our-aminities .cta-bg {
  background-color: #ffdb6e;
  padding: 20px;
  position: relative;
  border-radius: 20px;
}

.our-aminities .cta-bg-left::after {
  content: "";
  position: absolute;
  background-color: #ffdb6e;
  height: 100%;
  width: 120px;
  top: 0;
  left: -100px;
  border-radius: 20px 0 0 20px;
  z-index: 1;
}
.our-aminities .cta-bg-right::after {
  content: "";
  position: absolute;
  background-color: #ffdb6e;
  height: 100%;
  width: 120px;
  top: 0;
  left: 95%;
  border-radius: 0px 20px 20px 0;
  z-index: 1;
}

/* Hidden on Small Devices */

.our-aminities .cta-bg h3 {
  color: var(--secondary-text-color);
}
.our-aminities .cta-bg p {
  color: var(--para-color);
}

/* Room Detail Page */

.room-banner {
  background-color: #e3dace;
}

.room-banner .room-owl-banner {
  display: flex;
  flex-direction: row;
}

.room-banner .room-owl-banner img {
  height: 500px;
  object-fit: cover;
  border-radius: 5px;
}

.room-banner .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.room-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.5s;
}

.room-banner .owl-dots .active {
  background-color: var(--cta-color);
  width: 30px;
  border-radius: 50px;
}

.room-details-area h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.room-details-area .room-select {
  max-width: max-content;
  border: none;
  background: var(--cta-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 25px;
}

@media (max-width: 320px) {
  .room-details-area .room-services {
    display: block;
  }
}
.room-details-area .room-services .room-service-item p {
  font-size: 14px;
}

.room-details-area i.float-start {
  font-size: 18px;
  color: var(--white);
}
.room-details-area .float-start {
  margin-right: 20px;
}

.room-details-area .room-services i {
  font-size: 20px;
  color: var(--secondary-text-color);
  background-color: var(--white);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 2px 0px 5px #000000;
}
.room-details-area .room-services p {
  font-size: 20px;
}

.room-details-area .room-service-item {
  margin-top: 20px;
}

.room-details-area .other-rooms {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.room-details-area .other-rooms img {
  height: 350px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.room-details-area .other-rooms .other-rooms-desc {
  position: absolute;
  left: 0px;
  bottom: -30px;
  padding: 10px 0 10px 30px;
  backdrop-filter: blur(10px);
  width: 100%;
  transition: all 0.5s ease;
}

.room-details-area .other-rooms:hover .other-rooms-desc {
  bottom: -1px;
}
.room-details-area .other-rooms .other-rooms-desc p {
  color: var(--white);
  margin-top: 5px;
  opacity: 0;
  transition: all 0.5s;
}
.room-details-area .other-rooms:hover img {
  transform: scale(1.05);
}

.room-details-area .other-rooms .other-rooms-desc h5 {
  font-weight: 500;
}

.room-details-area .other-rooms:hover .other-rooms-desc p {
  opacity: 1;
}

.room-details-area .book-fixed {
  background-color: var(--cta-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.room-details-area .book-fixed h3 {
  font-size: 40px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  position: relative;
}
.room-details-area .book-fixed h3::after {
  content: "Book Your Stay at Best Hotel In Bhairahawa";
  position: absolute;
  height: 100%;
  top: 0;
  left: -40px;
  opacity: 0.4;
}
.room-details-area .book-fixed h3::before {
  content: "Book Your Stay at Best Hotel In Bhairahawa";
  position: absolute;
  height: 100%;
  top: 0;
  left: 40px;
  opacity: 0.4;
}

/* Email Loader & Popup Styles */

/* Loader styles */
#email-loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #00000048;
  z-index: 9999;
  display: none;
}
#email-loader.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid var(--cta-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999999;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#popup-success,
#popup-error {
  height: 100%;
  width: 100%;
  background-color: #0000003b;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  transition: all 0.3s ease;
  text-align: center;
}

#popup-success .message,
#popup-error .message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: var(--cta-color);
  font-size: 20px;
  max-width: 400px;
  z-index: 99999;
  padding: 30px 40px 20px 40px;
  border-radius: 12px;
}

#popup-success .message i,
#popup-error .message i {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  top: -30px;
  background-color: var(--white);
  border-radius: 50%;
}
#popup-success .message i {
  color: limegreen;
}
#popup-error .message i {
  color: orangered;
}

#ok-button,
#ok-error-button {
  margin-top: 20px;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#ok-button {
  background-color: limegreen;
  border: none;
}

#ok-button:hover {
  background-color: rgb(29, 153, 29);
}

#ok-error-button {
  background-color: orangered;
  border: none;
}
#ok-error-button:hover {
  background-color: rgb(168, 53, 11);
}

.floating-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.main-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.social-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.social-btn a i{
  color: #fff;
}

.social-btn.facebook {
  background: #1877f2;
}
.social-btn.instagram {
  background: #e1306c;
}
.social-btn.whatsapp {
  background: #25d366;
}
.social-btn.clock {
  background: #444;
}

.floating-wrapper.active .social-btn {
  opacity: 1;
  transform: scale(1);
}

/* turn-by-turn animation */
.floating-wrapper.active .social-btn:nth-child(1) {
  bottom: 70px;
  transition-delay: 0.05s;
}

.floating-wrapper.active .social-btn:nth-child(2) {
  bottom: 130px;
  transition-delay: 0.15s;
}

.floating-wrapper.active .social-btn:nth-child(1) {
  bottom: 70px;
  transition-delay: 0.05s;
}

.floating-wrapper.active .social-btn:nth-child(2) {
  bottom: 130px;
  transition-delay: 0.15s;
}

.floating-wrapper.active .social-btn:nth-child(3) {
  bottom: 190px;
  transition-delay: 0.25s;
}

.floating-wrapper.active .social-btn:nth-child(4) {
  bottom: 250px;
  transition-delay: 0.35s;
}

/* Media query */

/* Screen < 1200px */
@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 5px;
  }
  .best-deal .info-table ul li span {
    float: none;
    width: 100%;
  }
  .contact-page .section-heading {
    margin-right: 100px;
  }
}

/* Screen < 991px */
@media (max-width: 991px) {
  .best-deal img {
    width: 100%;
  }
  .best-deal .prop {
    margin-top: 20px;
  }
  .services .services-item {
    height: 280px;
  }

  /* Booking Modal */
  .modal-lg {
    max-width: 80%;
    margin: 0 auto;
  }

  /* Featured Info  */
  .featured .aminities-info-detail .main-img {
    height: 300px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
  }

  .our-aminities .cta-bg-left::after,
  .our-aminities .cta-bg-right::after {
    display: none;
  }

  .our-aminities .cta-bg {
    margin: 20px 0;
  }

  .contact-content .call-us {
    padding: 40px 0 30px 20px;
  }
}

/* Screen < 767px */
@media (max-width: 767px) {
  .header-area .main-nav .nav {
    background-color: var(--secondary-color);
  }
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: var(--secondary-text-color);
    background-color: var(--secondary-color);
    border-radius: 0px 0px 25px 25px;
  }
  .header-area .main-nav .nav li {
    border-top: 1px solid var(--off-white);
    background-color: var(--secondary-color);
    height: 50px;
    border-radius: 0px 0px 25px 25px;
  }

  .header-area .main-nav .logo img {
    height: 60px;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: var(--cta-color) !important;
    opacity: 1;
  }
  .header-area {
    padding: 0px 15px;
    box-shadow: none;
    text-align: center;
    height: auto;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
    top: 19px !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .logo {
    z-index: 999;
  }
  .header-area .main-nav .logo img {
    height: 50px;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 50%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid var(--white);
  }
  .header-area.header-sticky .nav {
    margin-top: 50px;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: var(--secondary-color);
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .featured .aminities-info-detail .right-img {
    right: 0;
  }
  .featured .aminities-info-detail .left-img {
    right: 0;
  }

  .room-page h4 {
    margin-top: 10px;
  }

  .room-page .border-right-none {
    border: 2px solid #ffc30f47;
    border-left: none;
  }
  .room-page .border-right-none.border-left-radius {
    border-radius: 0 12px 12px 0;
  }

  .room-page .room-details {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .room-page .room-details .more-details {
    margin-top: 40px;
  }
  .room-banner .room-owl-banner img {
    height: 300px;
  }
  .room-banner .owl-dots {
    left: 45%;
  }

  .main-banner .item h1,
  .main-banner .item h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .main-banner .owl-nav .owl-prev i {
    left: 10px;
  }
  .main-banner .owl-nav .owl-next i {
    right: 10px;
  }
  .best-deal .tabs-content .nav-link {
    font-size: 14px;
    padding: 0px 15px;
    height: 44px;
    line-height: 44px;
  }
  .best-deal .tabs-content ul.nav-tabs li {
    margin: 5px 5px;
  }
  .properties ul.properties-filter li a {
    font-size: 14px;
    padding: 10px 15px;
  }
  .properties ul.properties-filter li {
    margin: 5px;
  }

  .about-section .small-picture {
    left: 40%;
  }
  .about-section .about-content {
    padding-top: 50px;
  }
  .about-section .about-content .about-title {
    font-size: 35px;
  }
}

/* Screen < 576px */
@media (max-width: 576px) {
  /* popup */
  .popup-banner-content {
    padding: 10px;
  }
  .close-banner-btn i {
    padding: 10px 12px;
  }
  .close-banner-btn {
    top: -20px;
    right: -20px;
    font-size: 20px;
  }

  .main-banner .owl-dots {
    left: 20%;
  }
  .main-banner .item h1,
  .main-banner .item h2 {
    font-size: 30px;
    line-height: 40px;
  }

  /* Booking Modal */
  .modal-lg {
    max-width: 90%;
  }

  .section-heading h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .video-content .video-frame img {
    height: 350px;
  }

  .featured .aminities-info-detail .main-img {
    width: 90%;
  }

  .book-now-section h3 {
    font-size: 20px;
  }

  .services .services-item {
    height: 260px;
  }

  .room-banner .owl-dots {
    left: 40%;
  }

  .places-near .place:nth-child(2),
  .places-near .place:nth-child(3) {
    margin-top: 30px;
  }

  footer .quick-links {
    margin-top: 20px;
  }
  .image-gallery-section .gallery {
    display: block;
  }
  .image-gallery-section .photo {
    margin: 20px 10px;
  }
  /* Lightbox gallery Custom */

  #lightboxOverlay {
    height: 100% !important;
    width: 100% !important;
    position: fixed;
  }

  #lightbox {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
    position: fixed;
  }

  .room-details-area h3 {
    font-size: 20px;
  }
  .room-details-area i.float-start,
  .room-details-area .float-start {
    margin-right: 10px;
  }

  #popup-success .message i,
  #popup-error .message i {
    font-size: 40px;
  }
  #popup-success .message,
  #popup-error .message {
    font-size: 20px;
  }
  #popup-success .message,
  #popup-error .message {
    width: 100%;
  }
}

/* Screen > 991px */
@media (min-width: 991px) {
  .featured .left-image img {
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
  }
  .best-deal .prop-image img {
    margin-top: 10px;
  }

  .our-aminities img {
    border-radius: 6px;
  }

  .icon-button button i {
    display: none;
  }

  .our-aminities .cta-bg-right {
    padding-left: 30px;
  }
  .our-aminities .cta-bg-right h3,
  .our-aminities .cta-bg-right p {
    width: 120%;
    position: relative;
    z-index: 10;
  }
  .our-aminities .cta-bg-left h3,
  .our-aminities .cta-bg-left p {
    position: relative;
    left: -95px;
    z-index: 10;
    width: 120%;
  }
}
