@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");

:root {
  --mainColor: #000;
  --colorSecondary: #9C27B0;
  --txtColor: #555e69;
  --siteFont:
  'Rajdhani', sans-serif;
  --boderRadius15: 5px;
}




a {
  color: var(--mainColor);
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  transition: 0.5s;
  color: #000;
}

html,
body,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}


ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: var(--siteFont);
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  font-weight: 500;
  background-color: #dbe4e9;
  letter-spacing: 1.2px;
}

img {
  max-width: 100%;
}

.btn {
  background: var(--mainColor);
  color: #fff;
  padding: 10px 25px;
  font-size: 16px;
  display: inline-flex;
  border-radius: 50px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
}

.btn i {
  margin-right: 10px;
  font-size: 20px;
  line-height: 1;
}

.btn:hover {
  box-shadow: 0px 0px 5px var(--colorSecondary);
  color: #fff;
  background: var(--colorSecondary);
}


.btn,.btn:hover{
    background-color:var(--colorSecondary);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 1px 8px rgb(0 0 0 / 20%);
  width: 100%;
}

.footertext a {
  color: #fff;
}


header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header-inner .logo {
  max-width: 250px;
  /* float: left; */
  display: flex;
  align-items: center;
  font-size: 25px;
  color: #000;
}

header .header-inner .logo img {
  height: 50px;
  float: left;
  max-width: 100%;
  margin-right: 10px;
  object-fit: contain;
}

header .header-inner .main-menu {
  /* width: calc(100% - 130px); */
  float: right;
  /* text-align: right; */
}

/*header .header-inner .main-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
          align-items: center;
}*/


header .header-inner .main-menu>ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header .header-inner .main-menu ul li{
    margin: 0 12px;
}

header .header-inner .main-menu ul li a {
  display: flex;
  margin: 0 0px;
  text-decoration: none;
  color: #000000;
  /* text-transform: uppercase; */
  border-bottom: 2px solid transparent;
  align-items: center;
  font-family: var(--siteFont);
  font-weight: 600;
  font-size: 18px;
}

header .header-inner .main-menu ul li a i {
  font-size: 20px;
  line-height: 1;
  margin-right: 10px;
}

.dropdown-toggle::after {
  display: none;
}

header .header-inner .main-menu ul li:first-child a {
  margin-left: 0;
}

header .header-inner .main-menu ul li:last-child a {
  margin-right: 0;
}


header .header-inner .main-menu ul li .btn {

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 5px 15px;

  height: 40px;

  font-size: 15px;

  font-weight: normal;

  color: #fff;
}


header .header-inner .main-menu ul li.active a {
  border-color: var(--colorSecondary);
}

header .header-inner .main-menu ul li.active .btn {
  color: #fff;
}

header .header-inner .main-menu .dropdown-menu {

  border: 0;
  box-shadow: 1px 5px 8px #727272;
  left: 0;
  right: auto;
}



header .header-inner .main-menu .dropdown-menu li a {
  margin-left: 0;
  padding: 6px 20px;

}

.hamburger {
  width: 30px;
  height: 21px;
  position: relative;
  display: none;
}

.hamburger span {
  height: 2px;
  width: 30px;
  background: var(--mainColor);
  opacity: 1;
  position: absolute;
  left: 0;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
  width: 24px;
  right: 0;
  left: auto;
}

.hamburger span:nth-child(3) {
  width: 100%;
  top: 19px;
}

.menuoverlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: none;
}

.main-container {
    max-width: 100%;
    margin-top: 61px;
}

.right-fixed-form {
    background: #fff;
    position: fixed;
    right: 0;
    width: 309px;
    bottom: 0;
    border: 1px solid #cecece;
    z-index: 99;
}

.site-visit {
    
}

.site-visit ul {
  background: var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-visit ul li a {
    padding: 10px 15px;
    display: block;
    border-right: 1px solid #cecece;
    /* text-align: center; */
    color: #fff !important;
    font-size: 21px;
}

.site-visit ul li {
    flex: 1;
}

.site-visit ul li:last-child a {
    border-right: 0;
}

.side-inq-form {
    
    padding: 20px;
}

.side-inq-form .form_heading {
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}
.closeInqForm {
    position: absolute;
    right: 10px;
    top: 15px;
    color: #fff !important
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    margin-bottom: 5px;
}
.side-inq-form .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.home-banner {
    height: calc(100vh - 61px);
    position: relative;
}

.home-banner .carousel {
    height: 100%;
}

.home-banner .carousel .carousel-inner {
    height: 100%;
}

.home-banner .carousel .carousel-inner .carousel-item {
    height: 100%;
}
@keyframes zoom-out {
100%{transform:unset}
}

.home-banner .carousel .carousel-inner .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  animation: zoom-out 10s linear infinite;
    transform: scale(1.2);
}

.booking-open {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(00,00,0,0.7);
    max-width: 550px;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.booking-open h2 {
    line-height: 1;
    text-align: center;
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 600;
}

.booking-open .content {
    text-align: center;
}

.booking-open .content h3 {
    font-weight: bold;
    font-size: 59px;
    color: #fff;
    text-shadow: 1px 1px 3px #4f4f4f;
}

.booking-open .content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px #4f4f4f;
}

.booking-open .content p.loc {
    font-size: 22px;
    margin-bottom: 20px;
}

.price-box {
    margin: 15px 0 25px;
}

.price-box span {
    display: block;
}

.price-box .price {
    background: #ffe0eb;
    display: inline-block;
    color: #000;
    padding: 10px 25px;
    font-size: 20px;
    margin-top: 5px;
    border-radius: 5px;
    font-weight: bold;
}

.booking-open ul {
    text-align: left;
    list-style: circle;
    padding-left: 30px;
    color: #5b5b5b;
}

.booking-open ul li {
    margin-bottom: 10px;
}

.booking-open .act-btn {
    margin: 25px 0 15px;
}

.sec-padding{
  padding: 60px 75px 60px 25px;
}

.white-bg{
  background: #fff;
}
.m-b-15{
  margin-bottom: 15px;
}

section{
  position: relative;
}
.sec-heading {
    position: absolute;
    top: 20px;
    right: 0;
    color: var(--colorSecondary);
    font-size: 30px;
    letter-spacing: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
}

.form-control {
    border-radius: 50px;
    border: 1px solid var(--colorSecondary);
    padding: 10px 15px;
    font-weight: 600;
}
.error {
    color: red;
}

.list-content {
    text-align: left;
    list-style: circle;
    padding-left: 30px;
    
}

.list-content li {
    padding-bottom: 15px;
}

.act-btn-common {
    margin-top: 15px;
}

.heading {
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
    font-size: 45px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--mainColor);
    display: inline-block;
    padding-bottom: 10px;
}



.highlights .nav-tabs .nav-link {
    flex: 1;
    background-color: #eaeaea;
    color: #000;
    border-radius: 0;
}

.highlights .nav-tabs .nav-link.active {
    background-color: var(--mainColor);
    color: #fff;
}

.highlights .tab-pane {
    border: 1px solid #cecece;
    padding: 15px;
    margin-top: -1px;
}



.highlights-content li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
}



.highlights-content li:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    border-radius: 10px 0 10px 0;
    background: #20b329;
}

.price-boxs {
    background: #fff;
    padding: 15px;
    box-shadow: 0px 5px 10px #cecece;
    border: 1px solid var(--mainColor);
    margin: 15px 0;
    border-radius: 10px;
}

.price-boxs .price {
    font-size: 25px;
    font-weight: bold;
}


.amenities-box {
    background: #fff;
    width: 100%;
    /* box-shadow: 0px 5px 10px #cecece; */
    /* padding: 15px 10px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: 1px solid var(--mainColor); */
    /* border-radius: 10px; */
}

.amenities-box .icon img {
    filter: brightness(50);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.amenities-box .icon{
    width: 100px;
    height: 100px;
    display: block;
    background: var(--mainColor);
    border-radius: 100%;
    padding: 20px;
}

ul.amenities-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

ul.amenities-list li {
    flex: 0 0 20%;
    width: 20%;
    margin: 10px 0;
    padding: 0 10px;
}

.amenities-box .txt {
    margin-top: 7px;
    color: #000;
    font-weight: 600;
}

.floor-box {
    background: #fff;
    width: 100%;
    box-shadow: 0px 5px 10px #cecece;
    margin: 15px 0;
    border-radius: 10px;
    overflow: hidden;
}

.floor-box h4 {
    background: var(--mainColor);
    padding: 15px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin: 0;
}

.floor-box h4 span {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}



.location .highlights-content li:before {
    content: "\f3e8";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 20px 0 20px 0;
    background: #20b329;
    color: #fff;
}

.location .highlights-content li {
    padding: 15px 15px 15px 55px;
    margin-bottom: 0;
}


.round-arrow.owl-carousel .owl-nav button.owl-prev {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 50%;
    left: -20px;
    display: block !important;
    border: 0px solid black;
    background: #fff;
    border-radius: 100%;
    -webkit-box-shadow: 1px 4px 15px #676767;
    box-shadow: 1px 4px 15px #676767;
    transform: translate(0, -50%);
}


.round-arrow.owl-carousel .owl-nav button.owl-next {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 50%;
    right: -20px;
    display: block !important;
    border: 0px solid black;
    background: #fff;
    border-radius: 100%;
    -webkit-box-shadow: 1px 4px 15px #676767;
    box-shadow: 1px 4px 15px #676767;
    transform: translate(0, -50%);
}

.round-arrow.owl-carousel .owl-nav button.owl-prev i, .round-arrow.owl-carousel .owl-nav button.owl-next i {
    -webkit-transform: scale(1, 6);
    transform: scale(1, 6);
    color: var(--mainColor);
    font-size: 27px;
    line-height: 1;
}

.gallery_section .item{

height: 230px;
}

.gallery_section .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-logo {
    max-width: 250px;
    margin: 0 auto 30px;
}

.float_call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    transition: all 200ms ease-in-out;
    background: #2cb742;
    height: 50px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 15%);
    color: #fff;
    font-size: 20px;
    border-radius: 100%;
}

/* footer */

footer {
  background: var(--mainColor);
  color: #f3f3f3;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: -15px;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
}

footer p a {
  font-weight: 400;
  color: #fff !important;
}

/* modal */

.modal-content {
  /* border-radius: 0; */
  border: 1px dashed #fff;
  background: #000;
}

.modal-body {
  padding: 40px;
  border-radius: 0;
  text-align: center;
  color: #fff;
}

.modal-body .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: 100;
  text-shadow: none;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  background-color: #fff;
  border-radius: 100%;
}

.modal-body .logo {
  max-width: 160px;
}

.modal-body .form-group {
  text-align: left;
}

.modal-body .typo {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  margin-top: 15px;
}

.modal-body .price {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  margin-top: 10px;
  color: var(--mainColor)
}

.modal-body .form_heading {
  margin: 15px 0;
  font-weight: 500;
  font-size: 22px;
}

.mobile-section {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9;
}

.mobile-section .btn {
  padding: 7px 10px;
  font-size: 12px;
  text-align: center;
  flex-grow: 1;
  color: #fff;
  position: relative;
  border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 15px;
    color: #000;
    background: var(--colorSecondary);
    color: #fff;
    flex: 1;
}


.mobile-section .btn:not(:last-child):before {
  position: absolute;
  content: '';
  height: 10px;
  width: 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

.call-btn {
    display: inline-block;
    background-color: var(--colorSecondary);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 0;
    position: fixed;
    bottom: 20px;
    left: 20px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff !important;
    font-size: 23px;
    border-radius: 100%;
}

.zoomdiv{
animation: zoom-in-zoom-out 1s ease infinite;
  
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}



@media (max-width:767px){
   .hamburger {
    display: block;
  }

  header .header-inner .main-menu ul li a {
    margin: 10px 12px;
  }

  header .header-inner .main-menu ul li:first-child a {
    margin-left: 12px;
  }

  header .header-inner .main-menu ul li:last-child a {
    margin-right: 12px;
  }

  header .header-inner .main-menu ul li a {
    display: inline-flex;
  }

  header .header-inner .main-menu ul li .btn {
    display: inline-flex;
  }

  header .header-inner .logo {
    
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
    display: flex;
  }

  header .header-inner .main-menu {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 80%;
    height: 100%;
    position: fixed;
    right: -100%;
    top: 0;
    background: #fff;
    z-index: 99;
    -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    padding: 40px 20px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    width: 75%;
    transition-duration: 200ms;
    -webkit-transition-duration: 200ms;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    visibility: hidden;
  }

  header .header-inner .main-menu>ul {
    display: block;
  }

  .menu-open header .header-inner .main-menu {
    opacity: 1;
    right: 0;
    transition-duration: 200ms;
    -webkit-transition-duration: 200ms;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    visibility: visible;
  }

  .menu-open .menuoverlay {
    display: block;
  }

  header .header-inner .logo img {
  }
  header {
    width: 100%;
}

  .right-fixed-form {
    display: none;
}

.main-container {
    max-width: 100%;
    margin-top: 61px;
}
.booking-open {
    position: static;
    min-width: auto;
    background: #000;
}

.home-banner {
    height: auto;
    margin-bottom: 15px;
}

.home-banner .carousel {height: 200px;}
.booking-open .content h3 {
    font-size: 29px;
}

.booking-open .content {
    padding: 20px 15px;
}

.booking-open .content p {
    font-size: 18px;
}

.sec-heading {
    display: none;
}

.sec-padding {
    padding: 15px 0;
}

.act-btn-common {
    margin-bottom: 15px;
}

.highlights .nav-tabs {
    margin-top: 15px;
}

ul.amenities-list li {
    flex: 0 0 50%;
    width: 50%;
}

.location .highlights-content {
    margin-bottom: 15px;
}

.gallery_section .item {
    height: 200px;
}
.mobile-section .btn {
    
}
.call-btn {
    display: none;
}

.float_call {
    bottom: 56px;
}
body {
    padding-bottom: 40px;
}
.round-arrow.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.round-arrow.owl-carousel .owl-nav button.owl-next {
    right: 0;
}
}


@-webkit-keyframes Gradient{
    0%{
        background-position:0 50%
    }
    50%{
        background-position:100% 50%
    }
    100%{
        background-position:0 50%
    }
}
@-moz-keyframes Gradient{
    0%{
        background-position:0 50%
    }
    50%{
        background-position:100% 50%
    }
    100%{
        background-position:0 50%
    }
}
@keyframes Gradient{
    0%{
        background-position:0 50%
    }
    50%{
        background-position:100% 50%
    }
    100%{
        background-position:0 50%
    }
}



.fixed-inq-btn {
    position: fixed;
    bottom: 20px;
    z-index: 9;
    right: 20px;
    display: none;
}
.modal-dialog {
    max-width: 370px;
}

.common-img-box {
    height: 339px;
}
.common-img-box img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

@media(max-width:767px){
    .heading {
    font-size: 30px;
}
.common-img-box {
    height: auto;
}
}