@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}
.blue-bg{
  background: #405d7c;
  background: #213851;
}

/* navbar hide on scroll down */
.nav-up {
    top: -80px;
}
.navbar{
   transition: top 0.4s ease-in-out;
}
.sidebar,
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
}
.sidebar {
  left: -100%;
  max-width: 300px;
  transition: all ease 0.25s;
  overflow-y: auto;
  z-index: 1032;
}
.overlay {
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.50);
  visibility: hidden;
  z-index: 1031;
}
.main-navigation.active .sidebar {
  left: 0;
}
.main-navigation.active .overlay {
  visibility: visible;
}
@media (min-width: 992px) {
  .sidebar {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    flex-direction: row;
    max-width: 100%;
    transform: none;
    transition: none;
    overflow-y: visible;
    z-index: auto;
  }
  
}
.main-heading {
  position: relative;
  z-index: 100;
}
/* @media (max-width: 991.98px) {
	  .navbar-nav {
	  padding-top: 5rem;
	  padding-left: 1.5rem;
  }
} */
@media (min-width: 1084px) {
  .order-lg-2 svg {
    display: none;
  }
}


.navbar-dark .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link{
  font-weight: 700;
}
/* .nav-link.active{
  
  text-decoration: underline;
  text-underline-offset: 10px;
} */

.heading{
    font-size: 33px;
    padding: 20px 0;
    font-weight: 700;
}

@media only screen and (max-width:550px){
    .heading{
        font-size: 30px;
    }

}

.line-40{
    line-height: 40px;
}

.amenities-icon i{
    font-size: 55px;    
}

@media only screen and (max-width:980px){
   .butterfly {
    width: 122px;
    top: -4px !important;
    left: 40px !important;
    z-index:-1;
}
    .leaf-1 {
        right: -50px !important;
        width: 160px;
    }
    .palm-leaf {
      left: -21px !important;
      width: 142px !important;
      top: -7% !important;
  }
    .bird-leaf {
        width: 146px !important;
    }
}


/* swiper js  */
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
/* swiper js  */

.overly-text{
    position: relative;
}
.overly-text button {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translate(-50%,10%);
  background: #e9d497;  
  padding: 10px 40px;
  width: max-content;
  font-size: 17px;
  border-radius: 40px;
  color: #454545;
  border: 2px solid #493d36;
  font-weight: 700;
}

.fixed-top {
    background: white;
}

.palm-leaf {
  position: absolute;
  top: -4%;
  left: -31px;
  z-index: 2;
  width: 304px;
  transform: rotate(342deg);
  animation: palm-leaf 10s infinite ease-in-out;
  transform-origin: top left;
}

.bird-leaf {
    position: absolute;
    bottom: -3%;
    right: -6px;
    z-index: -1;
    width: 260px;
    transform: rotateZ(-20deg);
}

.btn-primary{

    background: #e9d497;
    padding: 10px 30px;
    width: max-content;
    font-size: 16px;
    border-radius: 40px;
    color: #454545;
    border: 2px solid #493d36;
}
.btn-primary:hover ,.btn-primary:focus{
    box-shadow: none !important
    ;
    background: #493d36;
    padding: 10px 30px;
    width: max-content;
    font-size: 16px;
    border-radius: 40px;
    color: #e9d497;
    border: 2px solid #493d36;
}
.overly-text h4:hover{

    background: #493d36;
    width: max-content;
    font-size: 16px;
    border-radius: 40px;
    color: #e9d497;
    border: 2px solid #493d36;
}

/* table  */
.table__head {
  color: #fff;
  font-weight: 700;
  background: #9b4085;
  background: -moz-linear-gradient(-45deg, #9b4085 0%, #608590 100%);
  background: -webkit-linear-gradient(-45deg, #9b4085 0%, #608590 100%);
  background: linear-gradient(135deg, #29455a 0%, #608590 100%);
  white-space: nowrap;
}
  .table-bordered td,
  .table-bordered th {
    border: 0px solid #fff;
  }
  .coin {
    width: 8%;
    margin-left: 5px;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
  }
  @-moz-keyframes spin {
    100% {
      -moz-transform: rotate(360deg);
    }
  }
  @-webkit-keyframes spin {
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @keyframes spin {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  .winner__table {
    white-space: nowrap;
  }
  
  @media screen and (max-width: 567px) {
    .winner__table {
      font-size: 12px;
    }
    .coin {
      width: 15%;
      margin-left: 2px;
    }
  }



  
  /* table  */
  /* tabbing */
  .tabbingwrapper{
    /* max-width:1000px; */
    margin:0 auto;
  }
  /* .tab-area{
     margin: 30px 0 15px 0;
     padding: 0;
  } */
  .tab-area {
    /* margin: 30px 0 15px 0; */
    padding: 0;
    display: flex;
    flex-direction: column;
}
.tab-area li {
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  margin: 10px;
  color: #ffffff;
  border-bottom: 2px solid #5d5753;
  font-weight: 700;
}
.tab-area li.active {
  color: #ffffff;
  border-bottom: 2px solid #ffd8b8;
}
  .tab-content{
     display: none; 
     font-size: 18px;
     line-height: 44px;
     color: #ffffff;
  }
  .tab-content.active {
    display: block;
    /* background: radial-gradient(#2a485f, #173145); */
    padding: 20px;
    /* border-radius: 5px; */
    min-height: 280px;
}
  /* tabbing */



  /* footer  */
  .contact-area {
    border-bottom: 1px solid #353c46;
  }
  
  .contact-content p {
    font-size: 15px;
    margin: 30px 0 60px;
    position: relative;
  }
  
  .contact-content p::after {
    background: #cacaca;
    bottom: -30px;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 80%;
  }

  
  .contact-content h6 {
    color: #dadee3;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 38px;
  }
  
  .contact-content span {
    color: #e5dada;
    margin: 0 10px;
  }
  

  
  .contact-social > ul {
    display: inline-flex;
  }
  
  .contact-social ul li a {
    border: 1px solid #8b9199;
    color: #f7f7f7;
    display: inline-block;
    height: 40px;
    margin: 0 10px;
    padding-top: 7px;
    transition: all 0.4s ease 0s;
    width: 40px;
  }
  
  .contact-social ul li a:hover {
    border: 1px solid #fab702;
    color: #fab702;
  }
  
  .contact-content img {
    max-width: 230px;
    background: white;
    padding: 20px;
}

  #contact {
    background: linear-gradient(-35deg,#11202d, #203d54,#11202d );
    color: #eaeaea;
    padding: 50px 0;
}
  
  footer p {
    padding: 40px 0;
    text-align: center;
  }
  
  footer img {
    width: 80px;
  }

  .tab-content .row .col-12 img{
    height: 100%;
    object-fit: cover;
  }


  .form-control {
    height: 45px;
    margin: 7px 0;
    border-radius: 0;
    padding: 25px 10px;
    border: 0;
    border-bottom: 1px solid #2e404e9c;
}
.modal-content .form-control {
    height: 45px;
    margin: 7px 0;
    border-radius: 5px;
    padding: 18px 10px;
    border: 1px solid #e2e2e2;
    --bs-gray: #ededed82;
    background: #f2f2f2;
}

.modal-content textarea.form-control{
  height: 80px;
}

  textarea.form-control{
    height: 80px;
  }
[type="submit"]{
  border-radius: 0;
  padding: 10px 25px !important;
}

.location-highlight-list{
  list-style: none;
}

.modal-content{border: 0;}

  
  /* footer  */


  /* modal  */
  .modal {
    position: fixed;
    z-index: 9999; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    display: block;
    width: 100%;
    height: 100%;
  }
  
  .modal.is-visible {
    visibility: visible;
  }
  
  .modal-overlay {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
  }
  
  .modal.is-visible .modal-overlay {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  
  .modal-wrapper {
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 50%;
    width: 95%;
    max-width: 450px;
    /* margin-left: -16em; */
    /* background-color: #fff; */
    box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
    transform: translate(-50%,-50%);
}
  
  .modal-transition {
    transition: all 0.3s 0.12s;
    /* transform: translateY(-10%); */
    opacity: 0;
  }
  
  .modal.is-visible .modal-transition {
    /* transform: translateY(0); */
    opacity: 1;
  }
  
  .modal-header,
  .modal-content {
    padding: 20px;
  }
  .modal-body{
          max-height: 80vh;
    overflow-y: scroll;
    padding: 0;
  }
  
  .modal-header {
    position: relative;
    background-color: #203b51;
    box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
    border-bottom: 1px solid #e8e8e8;
  }
  
  .modal-close {
    position: absolute;
    top: 12px;
    right: 10px;
    padding: 1em;
    color: #aaa;
    background: none;
    border: 0;
}
  
  .modal-close:hover {
    color: #777;
  }
  
  .modal-heading {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .modal-content > *:first-child {
    margin-top: 0;
  }
  
  .modal-content > *:last-child {
    margin-bottom: 0;
  }
  
  /* modal  */


  .popup-amenities-list{
    list-style: square;
  }


  /* flaoting icons  */
  .float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 50px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    display: flex;
    font-size: 35px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid white;
}

.my-float{
	padding: 8px 10px;
}
.my-float-call:hover i,.my-float-call:focus i, .float:hover i, .float:focus i{
  color: white !important;
}
.my-float-call {
  position: fixed;
  text-decoration: none;
  width: 50px;
  height: 50px;
  bottom: 50px;
  left: 25px;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 27px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 100;
  background-color: #1e3a50;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid white;
}
.call_icon{
    width:45px;
    height:45px;
}

  /* flaoting icons  */

.gallery a, .gallery-2 a, .gallery-3 a{
  position: relative;
}
.gallery a h3::before, .gallery-2 a h3::before, .gallery-3 a h3::before {
  content: "";
  bottom: 0;
  position: absolute;
  right: 99%;
  width: 0px;
  height: 0;
  border-left: 36px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 45px solid #ffffff;
}
.gallery a h3,.gallery-2 a h3,.gallery-3 a h3{
  position: absolute;
  bottom: -8px;
  right: 0;
  text-align: end;
  font-size: 17px;
  color: #213851;
  background: white;
  padding: 12px;
}

.swiper-button-next:after{
      color: black;
    font-size: 20px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 50%;

}

.swiper-button-prev:after{
      color: black;
    font-size: 20px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 50%;

}
@keyframes palm-leaf{
  0%{
          transform: rotate(360deg);
  }
  20%{
          transform: rotate(370deg);
  }
  40%{
          transform: rotate(350deg);
  }
  60%{
          transform: rotate(340deg);
  }
  80%{
          transform: rotate(350deg);
  }
  100%{
          transform: rotate(360deg);
  }
}


/* .fancybox__slide{
  position: relative;
} 
.fancybox__caption{
  position: absolute;
  bottom: 28px;
  right: 101px;
  z-index: 99;
  background: linear-gradient(89deg, #ffffff0d, white, transparent);
  color: black;
  padding: 12px 50px;
  min-width: 240px;
  text-align: center;
} */
.max-table{
  height: 300px;
  overflow-y: scroll;
  overflow-x: visible;
}
@media only screen and (max-width:767px){
    .video-banner{
    max-width: 100% !important;
    padding:0 !important;
}


  .tab-area li{
    margin: 0;
  }
  
  .max-table{
    height: unset !important;
    overflow: unset;
    margin-top: 20px;
  }
}
.highlight-table{
  border: 2px solid white;
}
.highlight-table tbody tr td, .highlight-table tbody tr th {
  color: white !important;
  padding:8px;
  border: 1px solid #ffffff96;
  text-wrap: auto;
  line-height: 28px;
}

.tab-area li{
  display: flex;
  justify-content: space-between;
  width: 100%;
}


/* filter  */
.sales-products-filter select {
  outline: 0;
  box-shadow: none;
  border: 0 !important;
  background: #4f4f55;
  background-image: none;
  border-radius: 3px;
  margin: 3px;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  font-size: .8rem;
  font-family: 'SofiaProLight';
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}
/* Custom Select */
.sales-products-filter .select {
  position: relative;
  display: block;
  width: 20em;
  height: 3em;
  line-height: 3;
  background: #4f4f55;
  overflow: hidden;
  border-radius: .25em;
}
.sales-products-filter select::-ms-expand {
  display: none;
}
/* Arrow */
.sales-products-filter .select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 1em;
  background: #34495e;
  pointer-events: none;
}
/* Transition */
.sales-products-filter .select:hover::after {
  color: #f39c12;
}
.sales-products-filter .select::after {
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
}

.sales-products-filter .filter-btn {
  background:none;
  border:1px solid #4f4f55;
  color:#4f4f55;
  font-family:'SofiaProLight';
  text-transform:uppercase;
  letter-spacing:1px;
  font-size: .8rem;
  padding: 16px 20px;
  display:inline-block;
  margin-left:20px;
}

.sales-products-filter {
  display:flex;
  margin:0 auto;
  text-align:center;
}

.filter{
  display: flex;
  justify-content: center;
  /* width: 100%; */
}
.filter img{
  width: 100%;
  border-radius: 5px;
}



/* newe filter   */
.filter.hide{
  display: none;
}
.enquiry {
    position: fixed;
    top: 340px;
    text-decoration: none;
    right: 0;
    background: #a58158;
    padding: 12px 10px 8px 12px;
    color: white;
    max-width: max-content;
    z-index: 2;
    transform: translateX(123px);
    transition: 300ms ease-in-out;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border: 2px solid white;
}
.download-brochure {
    position: fixed;
    top: 282px;
    right: 0;
    background: #2f465c;
    padding: 10px 10px 12px 15px;
    text-decoration: none;
    color: white;
    max-width: max-content;
    z-index: 2;
    transform: translateX(175px);
    transition: 300ms ease-in-out;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border: 2px solid white;
}
.enquiry:hover ,.download-brochure:hover{
    transform: translateX(0);
    color:white !important;
}

.download-brochure i, .enquiry i{
        padding: 2px 10px 2px 2px;
    font-size: 20px;
}
button:focus{
    outline:0;
}
/*.video-banner{*/
/*    max-width: 93%;*/
/*}*/




/* filter  */


















