:root{
  --dark-saffron:#ed4d00;
  --light-saffron:#ed6900;
  --white-color:#fff;
  --black-color:#000;
  --light-grey:#efefef;
  --yellow-color:#fff700;
  --default-shadow-color:#c9c9c9;
  --default-item-border-color:#fbd69f;
  --dark-saffron-border-color: #fbac5e;
  --nav-bg-light:rgb(255 255 255 / 80%);
  --page-nav-bg:#ffb700;
  --brand-color:#000;
  --main-nav-item-color:#000;
  --main-nav-item-active-color:var(--dark-saffron);
  --main-nav-drop-bg:#ffb700;
  --main-nav-drop-item-color:#000;
  --main-nav-item-hover-color:var(--dark-saffron);
  --main-nav-drop-item-hover-bg:transparent;
  --main-nav-drop-item-hover-color:var(--dark-saffron);
  /* --main-banner-overlay-gradient:linear-gradient(45deg, rgb(255 0 0 / 50%), rgb(255 188 0 / 50%));  old overlay hero orange color*/
  /* --main-banner-overlay-gradient:linear-gradient(45deg, rgb(255 0 0 / 85%), rgb(255 188 0 / 80%));  overlay hero edit */
    --main-banner-overlay-gradient:linear-gradient(45deg, rgb(255 0 0 / 0%), rgb(255 188 0 / 0%)); 

  --banner-img:url(../images/banner4.webp);
  --banner-img2:url(../images/banner.webp); 
  --banner-img6:url(../images/gal_blueroom.webp);
  --booking-bg:rgb(255 113 0 / 30%);
  --button-pad-x:0.75rem;
  --button-pad-y:0.5rem;
  --title-color:var(--dark-saffron);
  --room-rate-color: #bb2200;
  --our-rooms-gradient-overlay:linear-gradient(45deg, rgb(255 68 0 / 50%), rgb(255 94 0 / 90%));
  --our-rooms-bg-img:url(../images/our-rooms-bg.webp);
  --our-rooms-heading-color:#fff;
  --room-desc-bg-color:#e1e1e1;
  --room-desc-heading-color:#000;
  --amenities-item-wrap-hover-bg-color:#ffeedf;
  --amenities-icon-color:#ff7600;
  --testimonial-overlay-gradient:rgb(255 144 7 / 75%), rgb(237 77 0 / 90%);
  --testimonial-bg-img:url(../images/testimonial-bg.webp);
  --contact-gradient-overlay:linear-gradient(45deg, rgb(255 255 255 / 95%), rgb(255 255 255 / 95%));
  --contact-bg-img:url(../images/contact-bg.webp);
}
html, body{
  scroll-behavior: auto;
  height: 100%;
}
body{
  font-family: 'Nunito Sans', sans-serif;
}
.navbar-brand{
  font-weight:900;
  color:var(--brand-color);
}
.navbar{
  --bs-navbar-brand-font-size:2rem;
  --bs-navbar-nav-link-padding-x:1.5rem;
  --bs-navbar-active-color:var(--main-nav-item-active-color);
  --bs-navbar-hover-color:var(--main-nav-item-hover-color);
  z-index: 9;
  position: absolute;
  width: 100%;
  --bs-navbar-padding-y:0;
  clear: both;
}

/*  logo  design with me  */




.bg-light{
  background-color:var(--nav-bg-light) !important;
}
.navbar-nav{
  --bs-nav-link-color:var(--main-nav-item-color);
}
.navbar-expand-lg .navbar-nav .nav-link {
  font-size: 0.875rem;
  text-transform:uppercase;
  font-weight: 800;
  letter-spacing:0.25px;
}
.dropdown-menu {
  border:none;
  border-radius: 0;
  --bs-dropdown-spacer:1.625rem;
  --bs-dropdown-bg:var(--main-nav-drop-bg);
  --bs-dropdown-link-color:var(--main-nav-drop-item-color);
  --bs-dropdown-link-hover-bg:var(--main-nav-drop-item-hover-bg);
  --bs-dropdown-link-hover-color:var(--main-nav-drop-item-hover-color);
}
.dropdown-item.active, .dropdown-item:active {
  color:var(--dark-saffron);
  background-color: transparent;
}
.dropdown-item {
  font-size: 0.875rem;
  text-transform:uppercase;
  font-weight: 800;
  letter-spacing:0.25px;
  line-height: 30px;
}
.banner, .banner2 {
  width: 100%;
  height: 800px;
}
.banner6{
  height: 800px;
  /* width: 100%; */
}
@media (max-width: 768px){
  .banner6{
    height: 350px;
  }
}
.banner{
  background:var(--main-banner-overlay-gradient), var(--banner-img) no-repeat scroll border-box center/cover;
}
.banner2{
  background:var(--main-banner-overlay-gradient), var(--banner-img2) no-repeat scroll border-box center/cover;
}
.banner6{
  background:var(--main-banner-overlay-gradient), var(--banner-img6) no-repeat scroll border-box center/cover;
}
 


.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.carousel-caption{
  position: absolute;
  bottom: 275px;
}
.carousel-caption h2{
  font-size: 3rem;
}
.carousel-caption p{
  font-size: 1.25rem;
  font-weight: 400;
}
.booking{
  padding: 35px;
  background-color: var(--booking-bg);
}
.booking .form-select, .booking .form-control, .booking .input-group-text, .booking button{
  border-radius: 0;
  border:0;
  padding: 1rem 0.75rem;
}
.intro{
  padding: 80px 0;
}
.IntroDesc{
  max-width: 500px;
}
.IntroDesc h1{
  color:var(--title-color);
}
.IntroDesc p{
  line-height: 30px;
}
.IntroDesc ul{
  list-style: none;
  line-height: 35px;
}
.IntroImg{
}

.BtnBox{
}
button .btn, a.btn{
  width: 180px;
  border-radius: 35px;
  --bs-btn-padding-x:var(--button-pad-x);
  --bs-btn-padding-y:var(--button-pad-y);
}
.OurRooms{
  padding: 100px 0;
  background:var(--our-rooms-gradient-overlay), var(--our-rooms-bg-img) no-repeat fixed border-box center/cover;
  color:var(--our-rooms-heading-color);
  text-align: center;
}
.OurRooms h2{
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.RoomDesc{
  background:var(--room-desc-bg-color);
  padding: 15px;
  text-align: left;
}
.RoomDesc h3{
  color:var(--room-desc-heading-color);
  font-weight: 700;
  margin: 0;
}
.RoomRate{
  color:var(--room-rate-color);
}
.amenities{
  padding: 80px 0;
  text-align: center;
}
.amenities h2{
  font-weight: 700;
  font-size: 3rem;
  color: var(--title-color);
}
.amenities-item-Wrap{
  text-align: center;
  margin: 25px 0;
  padding: 25px;
  border: 1px solid var(--default-item-border-color);
  transition:0.5s;
}
.amenities-item-Wrap:hover{
  background-color:var(--amenities-item-wrap-hover-bg-color);
}
.amenities-item-icon{
  margin: auto;
  font-size: 3rem;
  border-radius: 50%;
  text-align: center;
  color:var(--amenities-icon-color);
}
.amenities-item-Wrap p{
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.Testimoinal{
  padding: 100px 0;
  background:linear-gradient(45deg, var(--testimonial-overlay-gradient)), var(--testimonial-bg-img) no-repeat scroll border-box center/cover;
}
.Testimoinal .item{
  text-align: center;
  border: 1px solid var(--dark-saffron-border-color);
  padding: 30px;
  margin: 50px;
  border-radius: 15px;
}
.Testimoinal img{
  max-width: 150px;
  border-radius: 50%;
  margin: 0 auto;
}
.Testimoinal h2{
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.5px;
  margin: 50px 0;
  text-align: center;
  color:var(--white-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.Testimoinal h3{
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  margin: 15px 0 3px 0;
  color:var(--yellow-color);
}
.Testimoinal p{
  line-height: 25px;
  color:var(--white-color);
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 400;
}
.Testimoinal p i:last-child::before{
  transform: rotate(180deg);
}
footer{
  padding: 100px 0 0 0;
  background-color:var(--white-color);
}
footer h2{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--title-color);
}
footer h2 span{
  width: 30px;
  height: 30px;
  display: inline-block;
  background-color:var(--white-color);
  position: relative;
  top: -3px;
  border-radius: 50%;
}
footer h2 span img{
  width: 25px;
  height: 25px;
  margin-bottom: 2px;
}
footer ul{
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 40px;
}
footer ul li{
  color:var(--black-color);
}
footer ul li a{
  color:var(--black-color);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}
footer ul li a:hover{
  color:var(--dark-saffron);
}
footer ul li a span{
  padding-left: 18px;
}
.Subscribe{
  margin-top: 5px;
}
.Subscribe .form-control, .Subscribe .btn{
  padding: 0.5rem 0.375rem;
}
.copyright{
  background-color:var(--light-saffron);
  margin-top: 100px;
  padding: 10px 0;
  color:var(--white-color);
  font-size: 0.875rem;
}
.rights{
  padding-top: 7px;
}
.pages{
  padding: 50px 0;
}
.PageNav .navbar{
  position: relative;
  border-bottom: 1px solid var(--light-grey);
}
.PageNav .bg-light{
  background-color: var(--page-nav-bg) !important;
}
.pages h1, .pages h2{
  color:var(--title-color);
}
.pages p{
  line-height: 30px;
  text-align: justify;
}
.pages ul{
  line-height: 30px;
}
.PageFooter footer{
  background-color: var(--light-grey);
}
.awards{
  padding: 50px 0;
  background-color: var(--light-grey);
}
.awards h2{
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.AwardItem{
  text-align: center;
  padding: 25px;
  margin: 15px 0;
  border:1px solid var(--default-item-border-color);
}
.AwardItem img{
  max-width: 180px;
  height: auto;
  margin-bottom: 15px;
}
.AwardItem p{
  font-weight: 600;
}
.StandardRoom h1, .DeluxeRoom h1, .SuperDeluxeRoom h1, .SuiteRoom h1, .DiningRoom h1, .Banquet h1{
  margin: 15px 0;
}
.RoomBooking{
  padding: 33px;
  box-shadow: 0 0 5px var(--default-shadow-color);
  position: sticky;
  top:10px;
}
.RoomBooking h2{
  padding: 15px;
  border: 1px solid;
  text-align: center;
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
}
.RoomBooking .form-select, .RoomBooking .form-control, .RoomBooking .input-group-text, .RoomBooking button{
  padding: 1rem 0.75rem;
}
.RoomsAmenities h2{
  text-align: left;
}
.RoomsAmenities .amenities-item-Wrap{
  text-align: center;
  padding: 10px;
  margin: 12px 0;
}
.RoomsAmenities .amenities-item-Wrap p{
  text-align: center;
  font-size: 0.75rem;
}
.RoomsAmenities .amenities-item-icon {
  font-size: 1.75rem;
}
.review{
  padding: 30px;
  margin: 50px 0 0 0;
  background-color: var(--white-color);
  box-shadow: 0 0 5px var(--default-shadow-color);
}
.rating{
  margin-top: 60px;
}

.rating h2 span{
  font-size: 1.25rem;
  color:var(--black-color);
}
.rating p{
  color:var(--light-saffron);
}
.rating-list p{
  padding: 0;
  margin: 0;
  text-align: right;
  line-height: 15px;
}
.ContactDetails{
  background:var(--contact-gradient-overlay), var(--contact-bg-img) no-repeat scroll border-box center/cover;
  padding: 100px 0;
}
.ContactDetailsItem{
  border: 1px dashed var(--default-item-border-color);
  padding: 25px;
}
.ContactDetailsItem h5{
  color:var(--dark-saffron);
  font-weight: 600;
}
.ContactDetailsItem p{
  margin: 0;
  padding: 0;
  text-align: left;
}
.ContactForm{
  padding: 100px 0;
}
.ContactForm h1{
  text-align: center;
  margin-bottom: 50px;
  color:var(--title-color);
}
.ContactForm .form-floating textarea{
  height: 132px;
}
.ContactForm .btn{
  padding: 1rem 0.75rem;
}
.map iframe{
  width: 100%;
  height: 450px;
  border: 0;
}
.gallery img{
  margin:12px 0;
}
/* start lightbox */
.lightbox img:not(.lightbox-disabled) {
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.lightbox-gallery {
    visibility: hidden;
    position: fixed;
    left: 0/*!rtl:ignore*/
    ;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    background-color: rgba(0, 0, 0, .9);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.lightbox-gallery .lightbox-gallery-toolbar {
    position: absolute;
    top: 0;
    left: 0/*!rtl:ignore*/
    ;
    width: 100%;
    height: 50px;
    z-index: 1110;
    -webkit-transition: opacity .4s;
    transition: opacity .4s
}

.lightbox-gallery .lightbox-gallery-toolbar .lightbox-gallery-left-tools {
    float: left;
    height: 100%
}

.lightbox-gallery .lightbox-gallery-toolbar .lightbox-gallery-right-tools {
    float: right
}

.lightbox-gallery .lightbox-gallery-toolbar button {
    border: none;
    background: none;
    width: 50px;
    height: 50px;
    color: #b3b3b3;
    -webkit-transition: color .2s;
    transition: color .2s
}

.lightbox-gallery .lightbox-gallery-toolbar button:hover {
    color: #fff
}

.lightbox-gallery .lightbox-gallery-toolbar button:before {
    font-family: Font Awesome\ 5 Free;
    font-weight: 900
}

.lightbox-gallery .lightbox-gallery-toolbar button.fontawesome-pro:before {
    font-family: Font Awesome\ 5 Pro
}

.lightbox-gallery .lightbox-gallery-toolbar button.lightbox-gallery-fullscreen-btn:before {
    content: ""
}

.lightbox-gallery .lightbox-gallery-toolbar button.lightbox-gallery-fullscreen-btn.active:before {
    content: ""
}

.lightbox-gallery .lightbox-gallery-toolbar button.lightbox-gallery-zoom-btn:before {
    content: ""
}

.lightbox-gallery .lightbox-gallery-toolbar button.lightbox-gallery-zoom-btn.active:before {
    content: ""
}

.lightbox-gallery .lightbox-gallery-toolbar button.lightbox-gallery-close-btn:before {
    content: ""
}

.lightbox-gallery .lightbox-gallery-counter {
    height: 100%;
    color: #b3b3b3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 0;
    direction: ltr/*!rtl:ignore*/
}

.lightbox-gallery .lightbox-gallery-content {
    position: fixed;
    top: 50px;
    left: 50px/*!rtl:ignore*/
    ;
    width: calc(100% - 100px);
    height: calc(100% - 100px)
}

.lightbox-gallery .lightbox-gallery-content .lightbox-gallery-image {
    position: absolute;
    left: 0/*!rtl:ignore*/
    ;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    pointer-events: none
}

.lightbox-gallery .lightbox-gallery-content .lightbox-gallery-image img {
    position: absolute;
    left: 0/*!rtl:ignore*/
    ;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    cursor: pointer;
    pointer-events: auto
}

.lightbox-gallery .lightbox-gallery-content .lightbox-gallery-image img.vertical {
    height: 100%;
    max-height: 100%;
    width: auto;
    max-width: none
}

.lightbox-gallery .lightbox-gallery-arrow-right {
    position: fixed;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: opacity .4s;
    transition: opacity .4s
}

.lightbox-gallery .lightbox-gallery-arrow-right button {
    border: none;
    background: none;
    width: 50px;
    height: 50px;
    color: #b3b3b3;
    -webkit-transition: color .2s;
    transition: color .2s
}

.lightbox-gallery .lightbox-gallery-arrow-right button:hover {
    color: #fff
}

.lightbox-gallery .lightbox-gallery-arrow-right button:before {
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    content: ""
}

.lightbox-gallery .lightbox-gallery-arrow-right button.fontawesome-pro:before {
    font-family: Font Awesome\ 5 Pro
}

.lightbox-gallery .lightbox-gallery-arrow-left {
    position: fixed;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: opacity .4s;
    transition: opacity .4s
}

.lightbox-gallery .lightbox-gallery-arrow-left button {
    border: none;
    background: none;
    width: 50px;
    height: 50px;
    color: #b3b3b3;
    -webkit-transition: color .2s;
    transition: color .2s
}

.lightbox-gallery .lightbox-gallery-arrow-left button:hover {
    color: #fff
}

.lightbox-gallery .lightbox-gallery-arrow-left button:before {
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    content: ""
}

.lightbox-gallery .lightbox-gallery-arrow-left button.fontawesome-pro:before {
    font-family: Font Awesome\ 5 Pro
}

.lightbox-gallery .lightbox-gallery-caption-wrapper {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.lightbox-gallery .lightbox-gallery-caption-wrapper .lightbox-gallery-caption {
    color: #fff;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 10px;
    text-align: center
}

.lightbox-gallery .lightbox-gallery-loader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
    -webkit-transition: opacity 1s;
    transition: opacity 1s
}

.lightbox-gallery button:focus {
    outline: none;
    color: #fff
}

.disabled-scroll {
    overflow-y: hidden;
    position: relative
}
/* end lightbox */

/* start owl */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.no-js .owl-carousel {
  display: block;
}
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
  opacity: 1; }
  100% {
  opacity: 0; }
}
.owl-height {
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/* end owl */
/* start owltheming */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
 }
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(yellow-color);
}
/* end owl theming */


@media (max-width:1200px){
.banner, .banner2 {
  height: 550px;
}
.carousel-caption {
  bottom: 140px;
}
.RoomDesc h3 {
  font-size: 1.375rem;
}
.amenities h2 {
  font-size: 2.5rem;
}
.amenities-item-icon {
  font-size: 2.5rem;
}
.amenities-item-Wrap p {
  font-size: 0.8rem;
}
.Testimoinal {
  padding: 50px 0;
}
.Testimoinal .item {
  margin: 15px;
}
.RoomsAmenities .amenities-item-Wrap {
  padding: 5px;
}
.RoomsAmenities .amenities-item-Wrap p {
  font-size: 0.675rem;
}
.ContactForm {
  padding: 60px 0;
}
.ContactDetails {
  padding: 60px 0;
}
.ContactDetailsItem p {
  font-size: 0.875rem;
}

}
@media (max-width:768px) {
.navbar-brand img{
  max-width: 60px;
  height: auto;
}
.carousel-caption h2 {
  font-size: 2.35rem;
}
.amenities h2 {
  font-size: 2.35rem;
}
.amenities-item-Wrap {
  margin: 12px 0;
  padding: 12px;
}
.amenities-item-Wrap p {
  font-size: 0.75rem;
}
.amenities-item-icon {
  font-size: 2rem;
}
.RoomBooking {
  padding: 20px;
}
.RoomBooking h2 {
  padding: 10px;
  font-size: 1.5rem;
}
.RoomBooking .form-select, .RoomBooking .form-control, .RoomBooking .input-group-text, .RoomBooking button {
  padding: 0.75rem 0.75rem;
}
.RoomsAmenities .amenities-item-Wrap {
  padding: 2px;
}
.RoomsAmenities .amenities-item-Wrap p {
  font-size: 0.5rem;
  letter-spacing: 0.5px;
  line-height: 20px;
}
.RoomsAmenities .amenities-item-icon {
  font-size: 1.5rem;
}
.rating {
  margin-top: 40px;
}
.rating p {
  font-size: 0.75rem;
}
.rating-list p {
  font-size: 0.875rem;
}
.ContactDetailsItem p {
  font-size: 0.75rem;
}
.ContactDetailsItem {
  padding: 12px;
}
}
@media (max-width:767px){
.banner, .banner2{
  height: 350px;
}
.carousel-caption {
  bottom: 52px;
}
.carousel-caption h2 {
  font-size: 1.5rem;
}
.carousel-caption p {
  font-size: 1rem;
}
.carousel-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
}
button .btn, a.btn {
  width: 160px;
}
.booking .form-select, .booking .form-control, .booking .input-group-text, .booking button {
  padding: 0.75rem 0.75rem;
}
.intro {
  padding: 35px 0;
}
.IntroDesc {
  max-width: 100%;
  margin: 25px 0 0 0;
}
.OurRooms {
  padding: 50px 0;
}
.RoomDesc {
  margin-bottom:30px;
}
.amenities {
  padding: 50px 0;
}
.Testimoinal {
  padding: 25px 0;
}
footer {
  padding: 35px 0 0 0;
}
.copyright {
  margin-top: 35px;
}
.pages {
  padding: 15px 0;
}
.about h1{
  margin-top: 15px;
}
.RoomsAmenities .amenities-item-Wrap {
  padding: 10px;
}
.RoomsAmenities .amenities-item-icon {
  font-size: 1.75rem;
}
.RoomsAmenities .amenities-item-Wrap p {
  font-size: 0.675rem;
}
.RoomBooking {
  padding: 35px;
}
.ContactDetailsItem {
  margin: 10px 0;
}
}

/* rooms image  scratch  */

.room-img{
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Mobile View */
@media (max-width: 576px){

    .room-img{
        height: 250px;
    }

    .RoomDesc h3{
        font-size: 1.2rem;
        text-align: center;
        margin-top: 10px;
    }
}

/* about css */
