@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #4f4c9e;
    --primary-light: rgba(79, 76, 158, 0.6);
    --primary2: #19b4a0;
    --black: #0F141E;
    --secondary: #808080;
    --gray: #ebebeb;
    --white: #ffffff;
    --border1: #a2a2a2;
    --border2: #414141;
    --tailbg: #EEEDED;
    --yellow: #FFE05F;

    --raleway: "Raleway", sans-serif;
    --fjalla: "Fjalla One", sans-serif;
}

body {
    font-family: var(--raleway);
    margin: 0;
    padding: 0;
    color: var(--black);
    font-size: 20px;
    line-height: 36px;
    font-weight: 300;
}
.text-justify {
  text-align: justify;
}
.container-fluid {
  padding: 0 60px;
}
.navbar>.container-fluid {
  padding: 0 24px;
}
.bg_gray {
  background-color: var(--gray);
}

/* Section Heading */
.section_padding {
  padding: 80px 0;
}
.section_heading {
  margin-bottom: 30px;
}
.section_heading h2 {
  font-family: var(--raleway);
  font-size: 36px;
  font-weight: 600;
  color: var(--black);
  text-transform: capitalize;
}

/* ************************* */
/* Header */
/* ************************* */
.main_header{
    position: absolute;
    /* position: fixed; */
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: var(--white);
}
.main_header.fixed-top{
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    position: fixed;
    background-color: var(--white);
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
@keyframes fadeInDown {
	0% {
	  opacity: 0;
	  transform: translate3d(0, -100%, 0);
	}
	to {
	  opacity: 1;
	  transform: translateZ(0);
	}
}

/* Main Header */
.main_header .navbar {
  padding-top: 6px;
  padding-bottom: 6px;
}
.main_header .navbar-brand {
  padding: 0;
}
.main_header .navbar-brand img, .main_header.fixed-top .navbar-brand img{
    height: 100px;    
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.header_btn {
  font-size: 17px;
  font-weight: 500;
  padding: 10px 15px;
  text-transform: uppercase;
  border-radius: 36px;
  color: var(--white);
  background-color: var(--primary);
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.header_btn:hover {
  color: var(--white);
  background-color: var(--primary2);
}


/* ************************* */
/* Home Banner */
/* ************************* */
.home_banner_text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home_banner_text h1 {
  font-size: 80px;
  font-family: var(--fjalla);
  color: var(--white);
}

/* ************************* */
/* Home About */
/* ************************* */
.home_about {
  background-image: url('../images/aboutbg.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 320px;
}
.home_about .home_about_box {
  position: relative;
  background-color: var(--white);
  padding: 64px;
  margin-top: -15%;
}
.home_about .home_about_box p {
  line-height: 40px;
}

/* ************************* */
/* A gaze upon the grandeur within these walls */
/* ************************* */
.home_room .section_heading, .home_tales .section_heading, .home_guidelines .section_heading {
  margin-bottom: 70px;
}
.home_room .home_room_cards .col:nth-child(2) .home_room_card {
  margin-top: 15%;
}
.home_room_card {
  padding: 10px 0 0 10px;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.home_room_card img {
  width: 100%;
  opacity: 1;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.home_room_card img.b_img {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.home_room_card:hover img.r_img {
  opacity: 0;
}
.home_room_card:hover img.b_img {
  opacity: 1;
}
.home_room_card .home_room_border {
  position: absolute;
  top: 0;
  left: 0;
  right: 10px;
  bottom: 10px;
  border: 2px solid var(--primary);
  z-index: 1;
}


/* ************************* */
/* Home Why Choose Us */
/* ************************* */
.home_whychoose_heading {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  z-index: 2;
}
.home_whychoose_heading .section_heading h2, .home_whychoose_heading .section_heading p, .home_whychoose_text .section_heading h2, .home_whychoose_text .section_heading p {
  color: var(--white);
}
.home_whychoose_text .section_heading h2 {
  font-size: 28px;
}
.home_whychoose_text {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 16%;
}

.home_whychoose_slider .owl-carousel .owl-nav button.owl-next, .home_whychoose_slider .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 3%;
  bottom: 6%;
  width: 56px;
  height: 56px;
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 24px;
  color: var(--white);
}
.home_whychoose_slider .owl-carousel .owl-nav button.owl-next {
  left: unset;
  right: 3%;
}

/* ************************* */
/* Gallery */
/* ************************* */
.home_gallery_heading {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 2;
}
.home_gallery_heading .section_heading, .home_gallery_heading .section_heading h2 {
  margin-bottom: 0;
}
.home_gallery .home_gallery_heading .section_heading h2 {
  color: var(--white);
}

/* ************************* */
/* Tales from the patrons who graced us */
/* ************************* */
.tales_slider_img {
  position: relative;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  margin: 0 auto;
  background-color: var(--primary);
  padding: 12px;
}
.tales_slider_img img {
  position: relative;
  z-index: 1;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 50%;
}
.tales_slider_text {
  position: relative;
  background-color: var(--tailbg);
  border-radius: 35px;
  padding: 90px 12px 50px;
  margin-top: -86px;
  height: 83%;
}
.tales_slider_text h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
}
.tales_slider_text p {
  font-size: 16px;
  line-height: 30px;
}

.home_tales .owl-carousel {
  padding: 0 140px;
}
.home_tales .owl-carousel .owl-nav button.owl-next, .home_tales .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 0;
  bottom: 46%;
  width: 56px;
  height: 56px;
  border: 2px solid var(--black);
  border-radius: 50%;
  font-size: 24px;
}
.home_tales .owl-carousel .owl-nav button.owl-next {
  left: unset;
  right: 0;
}
.home_tales .owl-carousel .owl-nav button.owl-next i, .home_tales .owl-carousel .owl-nav button.owl-prev i {
  font-weight: 500;
}
.home_tales .owl-carousel .owl-stage{
  display: flex;
}
.home_tales .owl-carousel .item {
  display: flex;
  height: 100%;
  padding: 0 24px;
}
.home_tales .owl-carousel .owl-dots {
  margin-top: 20px;
  text-align: center;
}
.home_tales .owl-carousel button.owl-dot {
  margin: 0 4px;
}
.home_tales .owl-carousel button.owl-dot span {
  background-color: var(--tailbg);
  display: block;
  width: 60px;
  height: 16px;
  border-radius: 20px;
}
.home_tales .owl-carousel button.owl-dot.active span {
  background-color: var(--primary);
  width: 180px;
}

/* ************************* */
/* Book Now */
/* ************************* */
.home_booknow {
  background-color: var(--primary-light);
}
.home_booknow.section_padding {
  padding: 40px 0;
}
.home_booknow .section_heading {
  margin-bottom: 16px;
}
.home_booknow .section_heading h2 {
  text-transform: uppercase;
}
.home_booknow a.btn {
  font-size: 20px;
  font-weight: 800;
  padding: 8px 32px;
  border-radius: 60px;
  color: var(--primary);
  background-color: var(--white);
  -moz-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.home_booknow a.btn:hover, .home_booknow a.btn:hover {
  color: var(--white);
  background-color: var(--primary2);
}

/* ************************* */
/* Experience */
/* ************************* */
.home_experiences, .home_tales, .home_whychoose, .home_guidelines {
  overflow-x: hidden;
}
.experiencesSlider {
  position: relative;
}
.home_experiences_slider {
  position: relative;
}
.home_experiences_slider .owl-carousel .item {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}

.home_experiences_slider .owl-carousel .item .col {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.home_experiences_slider .owl-carousel .item .section_heading h2 {
  font-size: 60px;
  color: var(--primary);
}
.home_experiences_slider .owl-carousel .item .section_heading p {
  font-size: 26px;
  line-height: 46px;
}

.home_experiences_thumb {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 200px;
}
.home_experiences_thumb .owl-carousel .item {
  display: flex;
  height: 100%;
}
.home_experiences_thumb .owl-carousel .item .home_experience_img h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 15px;
  color: var(--white);
}
.home_experiences_thumb .owl-carousel .owl-item.synced.active .item .home_experience_img h3 {
  color: var(--yellow);
}
.home_experiences_thumb .owl-carousel .item .home_experience_img img {
  border-radius: 20px;
}

.home_experiences_slider .owl-carousel .owl-nav {
  position: absolute;
  bottom: 80px;
  left: 51%;
}
.home_experiences_slider .owl-carousel .owl-dots {
  text-align: center;
  position: absolute;
  right: 8%;
  bottom: 100px;
}
.home_experiences_slider .owl-carousel button.owl-dot span {
  background-color: var(--black);
  display: block;
  width: 101px;
  height: 3px;
}
.home_experiences_slider .owl-carousel button.owl-dot.active span {
  background-color: var(--yellow);
}

.home_experiences_slider .owl-carousel .owl-nav button.owl-next, .home_experiences_slider .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 62px;
  height: 62px;
  border: 2px solid var(--black);
  border-radius: 50%;
  font-size: 36px;
  color: var(--black);
}
.home_experiences_slider .owl-carousel .owl-nav button.owl-next {
  left: 80px;
}
.home_experiences_slider .owl-carousel .owl-nav button.owl-next i, .home_experiences_slider .owl-carousel .owl-nav button.owl-prev i {
  font-weight: 500;
}
.active-index {
  position: absolute;
  right: 4%;
  bottom: 96px;
  z-index: 2;
  font-size: 40px;
  font-weight: 600;
}

/* ************************* */
/* Amenities */
/* ************************* */
.home_amenities {
  background-image: url('../images/amenities/amenitiesbg.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.aminities_box {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 74px;
  padding: 80px;
}
.aminities_box .section_heading {
  margin-bottom: 80px;
}
.aminities_card {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
.aminities_inn .col:nth-child(5) .aminities_card, .aminities_inn .col:nth-child(6) .aminities_card, .aminities_inn .col:nth-child(7) .aminities_card, .aminities_inn .col:nth-child(8) .aminities_card {
  margin-bottom: 30px;
}
.aminities_card img {
  position: relative;
  text-align: center;
  width: 94px;
  margin-bottom: 12px;
}

/* ************************* */
/* Guidelines */
/* ************************* */
.home_guidelines {
  background-image: url('../images/guidelines/guidelinesbg.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.guidelines_box {
  position: relative;
}
.guidelines_inn .col:first-child {
  border-right: 2px solid var(--black);
}
.guidelines_list {
  padding: 40px 0;
}
.guidelines_list ul li {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 36px;
}

/* ************************* */
/* Footer */
/* ************************* */
footer {
  position: relative;
  background-image: url('../images/footer/footer.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

footer .footer_main {
  padding: 110px 0;
}
footer .footer_main .col:first-child, footer .footer_main .col:nth-child(2) {
  border-right: 2px solid var(--white);
}
footer .footer_logo img {
  height: 136px;
  margin-bottom: 24px;
}
.footer_logo_dealer p {
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  color: var(--white);
}
.footer_btn {
  font-size: 27px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 36px;
  color: var(--primary2);
  background-color: var(--white);
  border: 2px solid var(--white);
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.footer_btn:hover {
  color: var(--white);
  background-color: transparent;
}
footer .footer_address {
  color: var(--white);
}
footer .footer_address p b{
  font-weight: 600;
}
footer .footer_address h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
footer .footer_address p {
  margin-bottom: 0;
  display: flex;
}
footer .footer_address p a{
  color: var(--white);
  text-decoration: unset;
}
footer .footer_connect {
  text-align: center;
}
footer .footer_connect p {
  font-weight: 600;
}

footer .footer_btm {
  padding: 12px 0 24px;
}
.useful_link_list ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.useful_link_list ul a {
  color: var(--white);
  text-decoration: unset;
  font-size: 28px;
  font-weight: 500;
}
footer .footer_btm .footer_social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: end;
}
footer .footer_btm .footer_social ul li {
  margin-right: 8px;
}
footer .footer_btm .footer_social ul li a {
  display: block;
  text-decoration: none;
  font-size: 32px;
  color: var(--white);
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* Modal */
.enquiremodal .modal-content {
  background-color: rgba(79, 76, 158, 0.8);
  border-radius: 61px;
}
.enquiremodal .modal-body {
  padding: 30px 60px;
}
.enquiremodal .modal_close button {
  position: absolute;
  right: 30px;
  top: 24px;
  font-size: 24px;
}
.enquiremodal .enquire_form h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--white);
}
.enquiremodal .form-control {
  font-size: 24px;
  font-weight: 500;
}
.enquiremodal .footer_btn {
  background-color: var(--primary2);
  border-color: var(--primary2);
  color: var(--white);
}

.thanksmodal .enquire_thanks {
  text-align: center;
}
.thanksmodal .enquire_thanks h2 {
  font-size: 78px;
  font-family: var(--fjalla);
  text-transform: uppercase;
  color: var(--white);
}
.thanksmodal .enquire_thanks p {
  color: var(--primary2);
}

/* Privacy */
.privacy_policy_main h3 {
  font-size: 22px;
  font-weight: 600;
}
.privacy_policy_main a {
  color: var(--primary);
}
.privacy_policy_main strong {
  font-weight: 500;
}
.privacy_text {
  text-align: justify;
}
.privacy_policy_main ul li {
  margin-bottom: 12px;
}
.privacy_policy_main ul li:last-child {
  margin-bottom: 0;
}

/* ************************* */
/* Responsive */
/* ************************* */
@media (max-width: 1920px) and (resolution: 120dpi) {
  body {
    font-size: 18px;
    line-height: 34px;
  }
  .main_header .navbar-brand img, .main_header.fixed-top .navbar-brand img {
    height: 82px;
  }
  .header_btn {
    font-size: 16px;
    padding: 8px 15px;
  }
  .footer_btn {
    font-size: 28px;
  }
  .enquiremodal .form-control {
    font-size: 20px;
  }
  .home_banner_text h1 {
    font-size: 70px;
  }
  .thanksmodal .enquire_thanks h2 {
    font-size: 70px;
  }
  .home_about .home_about_box p {
    line-height: 40px;
  }
  .section_heading {
    margin-bottom: 36px;
  }
  .section_heading h2 {
    font-size: 30px;
  }
  .home_about {
    padding-bottom: 400px;
  }
  .home_about .home_about_box .section_heading {
    margin-bottom: 24px;
  }
  .home_whychoose_heading {
    top: 0px;
  }
  .home_whychoose_slider .owl-carousel .owl-nav button.owl-next, .home_whychoose_slider .owl-carousel .owl-nav button.owl-prev, .home_experiences_slider .owl-carousel .owl-nav button.owl-next, .home_experiences_slider .owl-carousel .owl-nav button.owl-prev {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  .home_whychoose_slider .owl-carousel .owl-nav button.owl-next i, .home_whychoose_slider .owl-carousel .owl-nav button.owl-prev i, .home_experiences_slider .owl-carousel .owl-nav button.owl-next i, .home_experiences_slider .owl-carousel .owl-nav button.owl-prev i {
    font-weight: 500;
  }
  .home_tales .owl-carousel .item {
    padding: 0;
}
  .tales_slider_img {
    width: 152px;
    height: 152px;
  }
  .tales_slider_text {
    padding: 90px 12px 50px;
    margin-top: -76px;
}
  .tales_slider_text h3 {
    font-size: 22px;
  }
  .home_tales .owl-carousel {
    padding: 0 120px;
  }
  .home_tales .owl-carousel button.owl-dot span {
    width: 50px;
    height: 14px;
  }
  .home_tales .owl-carousel button.owl-dot.active span {
    background-color: var(--primary);
    width: 146px;
  }
  .home_booknow a.btn {
    font-size: 15px;
  }
  .home_experiences_slider .owl-carousel .item .section_heading h2 {
    font-size: 52px;
  }
  .home_experiences_slider .owl-carousel .item .section_heading p {
    font-size: 24px;
    line-height: 40px;
  }
  .home_experiences_slider .owl-carousel button.owl-dot span {
    width: 75px;
  }
  .home_experiences_slider .owl-carousel .owl-nav button.owl-next {
    left: 70px;
  }
  .home_experiences_slider .owl-carousel .owl-dots {
    right: 9%;
    bottom: 97px;
  }
  .active-index {
    bottom: 95px;
    font-size: 36px;
  }
  .home_experiences_slider .owl-carousel .item {
    min-height: 110vh;
  }
  .experiencesSlider .item .section_heading {
    margin-top: 35%;
  }
  .home_experiences_thumb .owl-carousel .item .home_experience_img h3 {
    font-size: 22px;
  }
  .home_experiences_thumb {
    bottom: 180px;
}
  .aminities_card img {
    width: 91px;
  }
  .guidelines_list ul li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 32px;
  }
  footer .footer_logo img {
    height: 110px;
    margin-bottom: 20px;
  }
  .footer_logo_dealer p {
    font-size: 18px;
    line-height: 24px;
  }
  footer .footer_address h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  footer .footer_main {
    padding: 70px 0;
  }
  .useful_link_list ul a {
    font-size: 22px;
  }
  footer .footer_btm .footer_social ul li a {
    font-size: 28px;
  }
  .home_whychoose_text .section_heading h2 {
    font-size: 25px;
  }
  .privacy_policy_main h3 {
    font-size: 20px;
    font-weight: 600;
  }
}

@media (max-width: 1440px){
  body {
    font-size: 18px;
    line-height: 34px;
  }
  .main_header .navbar-brand img, .main_header.fixed-top .navbar-brand img {
    height: 60px;
  }
  .header_btn {
    font-size: 16px;
    padding: 6px 14px;
  }
  .footer_btn {
    font-size: 26px;
  }
  .enquiremodal .form-control {
    font-size: 20px;
  }
  .home_banner_text h1 {
    font-size: 70px;
  }
  .thanksmodal .enquire_thanks h2 {
    font-size: 70px;
  }
  .home_about .home_about_box .section_heading {
    margin-bottom: 24px;
  }
  .home_about .home_about_box p {
    line-height: 40px;
  }
  .section_heading {
    margin-bottom: 36px;
  }
  .section_heading h2 {
    font-size: 30px;
  }
  .home_about {
    padding-bottom: 400px;
  }
  .home_whychoose_heading {
    top: 0px;
  }
  .home_whychoose_slider .owl-carousel .owl-nav button.owl-next, .home_whychoose_slider .owl-carousel .owl-nav button.owl-prev, .home_experiences_slider .owl-carousel .owl-nav button.owl-next, .home_experiences_slider .owl-carousel .owl-nav button.owl-prev {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  .home_whychoose_slider .owl-carousel .owl-nav button.owl-next i, .home_whychoose_slider .owl-carousel .owl-nav button.owl-prev i, .home_experiences_slider .owl-carousel .owl-nav button.owl-next i, .home_experiences_slider .owl-carousel .owl-nav button.owl-prev i {
    font-weight: 500;
  }
  .home_tales .owl-carousel .item {
    padding: 0;
}
  .tales_slider_img {
    width: 152px;
    height: 152px;
  }
  .tales_slider_text {
    padding: 90px 12px 50px;
    margin-top: -76px;
}
  .tales_slider_text h3 {
    font-size: 22px;
  }
  .home_tales .owl-carousel {
    padding: 0 120px;
  }
  .home_tales .owl-carousel button.owl-dot span {
    width: 50px;
    height: 14px;
  }
  .home_tales .owl-carousel button.owl-dot.active span {
    background-color: var(--primary);
    width: 146px;
  }
  .home_booknow a.btn {
    font-size: 15px;
  }
  .home_experiences_slider .owl-carousel .item .section_heading h2 {
    font-size: 46px;
  }
  .home_experiences_slider .owl-carousel .item .section_heading p {
    font-size: 22px;
    line-height: 40px;
  }
  .home_experiences_slider .owl-carousel button.owl-dot span {
    width: 70px;
  }
  .home_experiences_slider .owl-carousel .owl-nav button.owl-next {
    left: 70px;
  }
  .home_experiences_slider .owl-carousel .owl-dots {
    right: 9%;
    bottom: 97px;
  }
  .active-index {
    bottom: 95px;
    font-size: 36px;
  }
  .home_experiences_slider .owl-carousel .item {
    min-height: 110vh;
  }
  .experiencesSlider .item .section_heading {
    margin-top: 35%;
  }
  .home_experiences_thumb .owl-carousel .item .home_experience_img h3 {
    font-size: 22px;
  }
  .home_experiences_thumb {
    bottom: 180px;
}
  .aminities_card img {
    width: 91px;
  }
  .guidelines_list ul li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 32px;
  }
  footer .footer_logo img {
    height: 110px;
    margin-bottom: 20px;
  }
  .footer_logo_dealer p {
    font-size: 18px;
    line-height: 24px;
  }
  footer .footer_address h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  footer .footer_main {
    padding: 70px 0;
  }
  .useful_link_list ul a {
    font-size: 22px;
  }
  footer .footer_btm .footer_social ul li a {
    font-size: 28px;
  }
  .home_whychoose_text .section_heading h2 {
    font-size: 25px;
}
.privacy_policy_main h3 {
  font-size: 20px;
}
}

@media (max-width: 1366px){
  body {
    font-size: 17px;
    line-height: 27px;
}
  .home_banner_text h1 {
    font-size: 60px;
}
.home_about .home_about_box {
  padding: 50px;
  margin-top: -10%;
}
.home_about {
  padding-bottom: 190px;
}
.home_tales .owl-carousel {
  padding: 0 100px;
}
/* .home_whychoose_slider .owl-carousel .owl-nav button.owl-next, .home_whychoose_slider .owl-carousel .owl-nav button.owl-prev, .home_experiences_slider .owl-carousel .owl-nav button.owl-next, .home_experiences_slider .owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
} */
.home_experiences_slider .owl-carousel .owl-nav button.owl-next {
  left: 58px;
}
.home_experiences_slider .owl-carousel .owl-dots {
  bottom: 94px;
}
.home_experiences_slider .owl-carousel button.owl-dot span {
  width: 68px;
}
.home_whychoose_slider .owl-carousel .owl-nav button.owl-next, .home_whychoose_slider .owl-carousel .owl-nav button.owl-prev {
  bottom: 10%;
}
.home_whychoose_slider .owl-carousel .owl-nav button.owl-next, .home_whychoose_slider .owl-carousel .owl-nav button.owl-prev, .home_experiences_slider .owl-carousel .owl-nav button.owl-next, .home_experiences_slider .owl-carousel .owl-nav button.owl-prev, .home_tales .owl-carousel .owl-nav button.owl-next, .home_tales .owl-carousel .owl-nav button.owl-prev {
  width: 48px;
  height: 48px;
  font-size: 22px;
}
.home_about .home_about_box p {
  line-height: 34px;
}
.tales_slider_img {
  width: 150px;
  height: 150px;
  padding: 10px;
}
.tales_slider_text {
  padding: 100px 8px 60px;
  margin-top: -80px;
}
.home_experiences_slider .owl-carousel .item .section_heading p {
  font-size: 20px;
  line-height: 36px;
}
.home_experiences_slider .owl-carousel .item .section_heading h2 {
  font-size: 44px;
}
.home_experiences_thumb .owl-carousel .item .home_experience_img h3 {
  font-size: 18px;
}
.guidelines_list ul li {
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 24px;
}
.footer_btn, footer .footer_address h3 {
  font-size: 24px;
}
.aminities_card img {
  width: 80px;
}
.privacy_policy_main h3 {
  font-size: 19px;
}
}

@media (max-width: 1280px) {
  .home_experiences_slider .owl-carousel .owl-nav button.owl-next {
      left: 55px;
  }
  .home_experiences_slider .owl-carousel button.owl-dot span {
    width: 64px;
  }
  .footer_btn, footer .footer_address h3 {
    font-size: 22px;
}
}

@media (max-width: 1024px){
body, .footer_logo_dealer p {
  font-size: 16px;
  line-height: 26px;
}
.main_header .navbar {
  padding-top: 4px;
  padding-bottom: 4px;
}
.header_btn, .footer_btn {
  font-size: 15px;
  padding: 4px 12px;
}
.main_header .navbar-brand img, .main_header.fixed-top .navbar-brand img {
  height: 50px;
}
.home_tales .owl-carousel {
  padding: 0 60px;
}
.home_banner_text h1 {
  font-size: 48px;
}
.home_about .home_about_box {
  margin-top: -8%;
}
.section_heading {
  margin-bottom: 24px;
}
.section_heading h2 {
  font-size: 26px;
}
.home_about .home_about_box p {
  line-height: 30px;
}
.home_whychoose_slider .owl-carousel .owl-nav button.owl-next, .home_whychoose_slider .owl-carousel .owl-nav button.owl-prev, .home_experiences_slider .owl-carousel .owl-nav button.owl-next, .home_experiences_slider .owl-carousel .owl-nav button.owl-prev, .home_tales .owl-carousel .owl-nav button.owl-next, .home_tales .owl-carousel .owl-nav button.owl-prev {
  width: 44px;
  height: 44px;
  font-size: 20px;
}
.section_padding {
  padding: 60px 0;
}
.home_whychoose_text {
  bottom: 30px;
}
.gallery_imgborder {
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--white);
}
.home_tales .owl-carousel .owl-dots {
  margin-top: 0;
}
.tales_slider_img {
  width: 100px;
  height: 100px;
  padding: 8px;
}
.tales_slider_text h3 {
  font-size: 20px;
}
.tales_slider_text p {
  font-size: 14px;
  line-height: 22px;
}
.tales_slider_text {
  padding: 56px 8px 40px;
  margin-top: -52px;
}
.home_tales .owl-carousel button.owl-dot.active span {
  width: 120px;  
}
.home_tales .owl-carousel button.owl-dot span {
  width: 36px;
  height: 10px;
}
.home_booknow a.btn {
  padding: 6px 24px;
}
.home_gallery_heading {
  top: 10%;
}
.home_experiences_slider .owl-carousel .item .section_heading h2 {
  font-size: 38px;
}
.home_experiences_slider .owl-carousel .item .section_heading p {
  font-size: 18px;
  line-height: 30px;
}
.home_experiences_thumb .owl-carousel .item .home_experience_img h3 {
  font-size: 16px;
  padding: 12px;
}
.home_experiences_thumb .owl-carousel .item .home_experience_img img {
  border-radius: 16px;
}
.home_experiences_thumb {
  bottom: 160px;
}
.home_experiences_slider .owl-carousel .owl-nav button.owl-next {
  left: 50px;
}
.home_experiences_slider .owl-carousel button.owl-dot span {
  width: 46px;
}
.home_experiences_slider .owl-carousel .owl-dots {
  right: 11%;
  bottom: 94px;
}
.active-index {
  bottom: 92px;
  font-size: 30px;
  right: 6%;
}
.experiencesSlider .item .section_heading {
  margin-top: 60%;
}
.aminities_card img {
  width: 64px;
}
.aminities_box .section_heading, .aminities_card {
  margin-bottom: 50px;
}
.aminities_box {
  border-radius: 64px;
  padding: 40px 60px;
}
.guidelines_list ul li {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 24px;
}
.guidelines_list {
  padding: 16px 0;
}
footer .footer_logo img {
  height: 70px;
  margin-bottom: 16px;
}
footer .footer_main {
  padding: 30px 0;
}
.useful_link_list ul a {
  font-size: 18px;
}
footer .footer_btm .footer_social ul li a {
  font-size: 24px;
}
.enquiremodal .form-control {
  font-size: 16px;
}
.enquiremodal .mb-3 {
  margin-bottom: 8px !important;
}
.enquiremodal .enquire_form h2 {
  font-size: 30px;
}
.enquiremodal .modal_close button {
  font-size: 20px;
}
footer .footer_address p {
  margin-bottom: 0;
  display: block;
}
.home_whychoose_text .section_heading h2 {
  font-size: 22px;
}
.home_booknow.section_padding {
  padding: 36px 0;
}
.privacy_policy_main h3 {
  font-size: 17px;
}
}


@media (max-width: 991px){
  body, .footer_logo_dealer p, .home_about .home_about_box p {
    font-size: 15px;
    line-height: 23px;
}
.home_about {
  padding-bottom: 110px;
}
.home_room .home_room_cards .col:nth-child(1) .home_room_card, .home_room .home_room_cards .col:nth-child(2) .home_room_card {
  margin-top: 0;
  margin-bottom: 30px;
}
.home_whychoose_heading {
  padding-top: 40px !important;
}
.tales_slider_text {
  padding: 56px 8px 40px;
}
.home_gallery_heading {
  top: 5%;
}
.home_experiences_slider .owl-carousel .item .col {
  min-height: auto;
}
.experiencesSlider .item .section_heading {
  margin-top: 36%;
}
.home_experiences_slider .owl-carousel .item .section_heading h2 {
  font-size: 32px;
}
.home_experiences_slider .owl-carousel .item .section_heading p {
  font-size: 18px;
  line-height: 28px;
}
.home_experiences_slider .owl-carousel .item {
  min-height: 86vh;
}
.home_experiences_slider .owl-carousel .owl-nav {
  bottom: 50px;
  left: 10%;
}
.home_experiences_slider .owl-carousel button.owl-dot span {
  width: 72px;
}
.home_experiences_slider .owl-carousel .owl-dots {
  right: 17%;
  bottom: 70px;
}
.active-index {
  bottom: 70px;
  right: 10%;
}
.home_experiences_thumb {
  bottom: 140px;
}
.guidelines_inn .col:first-child, footer .footer_main .col:first-child, footer .footer_main .col:nth-child(2) {
  border-right: none;
}
.guidelines_list {
  padding: 0;
}
.guidelines_list ul {
  padding-left: 16px;
}
.footer_logo_dealer {
  text-align: center;
}
.footer_connect a {
  margin-bottom: 16px;
}
footer .footer_address {
  text-align: center;
}
footer .footer_address h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
footer .footer_address p {
  display: block;
}
.thanksmodal .enquire_thanks h2 {
  font-size: 52px;
}
.home_whychoose_text {
  bottom: 16px;
}
.section_heading h2 {
  font-size: 24px;
}
.home_room .section_heading, .home_tales .section_heading, .home_guidelines .section_heading {
  margin-bottom: 40px;
}
.home_whychoose_text .section_heading h2 {
  font-size: 22px;
}
}

@media (max-width: 600px){
body {
  font-size: 15px;
  line-height: 21px;
}
.container-fluid, .navbar>.container-fluid {
  padding: 0 12px;
}
.header_btn, .footer_btn {
  font-size: 15px;
  padding: 4px 10px;
}
.home_banner_img img {
  min-height: 80vh;
  object-fit: cover;
}
.home_banner_text h1 {
  font-size: 32px;
}
.home_about .home_about_box {
  padding: 24px;
  margin-top: -18%;
}
.section_heading {
  margin-bottom: 16px;
}
.section_heading h2 {
  font-size: 20px;
}
.home_about .home_about_box p {
  line-height: 24px;
  text-align: justify;
}
.home_whychoose_img img {
  min-height: 92vh;
  object-fit: cover;
}
.home_whychoose_text {
  bottom: 100px;
  padding: 0 16px;
}
.home_whychoose_slider .owl-carousel .owl-nav button.owl-next, .home_whychoose_slider .owl-carousel .owl-nav button.owl-prev, .home_experiences_slider .owl-carousel .owl-nav button.owl-next, .home_experiences_slider .owl-carousel .owl-nav button.owl-prev {
  width: 46px;
  height: 46px;
  font-size: 20px;
}
.home_whychoose_slider .owl-carousel .owl-nav button.owl-prev {
  left: 36%;
}
.home_whychoose_slider .owl-carousel .owl-nav button.owl-next {
  right: 36%;
}
.home_tales .owl-carousel .owl-nav button.owl-next, .home_tales .owl-carousel .owl-nav button.owl-prev {
  width: 36px;
  height: 36px;
  font-size: 18px;
}
.home_tales .owl-carousel {
  padding: 0 44px;
}
.home_tales .owl-carousel button.owl-dot {
  margin: 0 2px;
}
.home_tales .owl-carousel button.owl-dot.active span {
  width: 80px;
}
.home_tales .owl-carousel button.owl-dot span {
  width: 20px;
  height: 8px;
}
.home_gallery_heading {
  top: 2%;
  left: 0;
  right: 0;
  transform: unset;
}
.home_experiences_slider .owl-carousel .item {
  min-height: 100vh;
}
.home_experiences_slider .owl-carousel .item .section_heading h2 {
  font-size: 24px;
}
.home_experiences_slider .owl-carousel .item .section_heading p {
  font-size: 16px;
  line-height: 25px;
}
.home_experiences_slider .owl-carousel button.owl-dot span {
  width: 34px;
}
.home_experiences_slider .owl-carousel .owl-nav {
  left: 16px;
}
.home_experiences_slider .owl-carousel .owl-nav button.owl-next {
  left: 50px;
}
.home_experiences_slider .owl-carousel .owl-dots {
  right: 14%;
  bottom: 66px;
}
.active-index {
  bottom: 64px;
  right: 16px;
  font-size: 30px;
}
.home_experiences_thumb {
  bottom: 110px;
}
.experiencesSlider .item .section_heading {
  margin-top: 46%;
}
.home_experiences_thumb .owl-carousel .item .home_experience_img h3 {
  font-size: 14px;
  padding: 10px;
}
.aminities_card img {
  width: 60px;
}
.aminities_box {
  border-radius: 30px;
  padding: 40px 20px;
}
.enquiremodal .enquire_form h2 {
  font-size: 22px;
}
.enquiremodal .modal_close button {
  font-size: 16px;
  right: 22px;
  top: 17px;
}
.enquiremodal .modal-body {
  padding: 46px 30px;
}
.enquiremodal .form-control {
  font-size: 15px;
}
.enquiremodal .modal-content {
  border-radius: 30px;
}
.thanksmodal .enquire_thanks h2 {
  font-size: 40px;
}
.tales_slider_text{
  border-radius: 20px;
}
.gallery_imgborder {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}
.home_whychoose_text .section_heading h2 {
  font-size: 19px;
}
.home_booknow.section_padding {
  padding: 20px 0;
}
.home_booknow .section_heading {
  margin-bottom: 10px;
}
}