body {
  font-family: 'Quicksand', sans-serif;;
  font-weight: normal;
  font-style: normal;
}

.hero-section {
  height: 90vh;
  background-image: /* linear-gradient(to right, rgba(0, 0, 0, 0.733), rgba(119, 119, 119, 0.753)),*/ url("../images/Anya\ Hero\ Landing\ Page.jpg"); 
  background-size: cover;
  background-position: center;
}

.content-section1 {
  background-image: url("../images/content-section-01.jpg");
  background-size: cover;
  background-position: center;
}

.content-section2 {
  background-image: url("../images/content-section-02.jpg");
  background-size: cover;
  background-position: center;
}

#mapSection {
  background-image: url("../images/1920x1080map-min.jpg");
  background-size: cover;
  background-position: center;
}

.detailImg-1 {
  background-image: url("../images/Section\ 1.jpg");
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.detailImg-2 {
  background-image: url("../images/Section\ 2.jpg");
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.aminitiesSection {
  background-image: url("../images/Amenities.jpg");
  background-size: cover;
  background-position: center;
}

.Details-section {
  column-gap: 10px;
}

.border-gradient {
  border: 2px solid;
  border-image:  linear-gradient(90deg, rgba(128,169,150,1) 0%, rgba(21,15,0,1) 73%, rgba(0,212,255,1) 100%) 1 /1;
}

.gradient-border-buttom {
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(128,169,150,1) 0%, rgba(21,15,0,1) 73%, rgba(0,212,255,1) 100%) 1 /1;
}

.content-section {
  background-image: url("../images/Black_and_gold_marble_texture.jpg");
  background-size: cover;
}

.Features {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/golden-monstera-leaves-background-design-resource.jpeg");
  background-size: cover;
}

.table-contianer {
  background-color: #00000000;
}
.card.swiper-slide {
  width: 950px !important;
}

.container-swiper {
  max-width: 100%;
  width: 100%;
  padding-bottom: 40px;
}
.slide-container {
  margin: 0 auto;
  overflow: hidden;
}
.swiper-container {
  width: 100%;
  height: auto;
}
.swiper-slide {
  width: auto;
  height: auto;
}
.swiper-container img {
  width: 100%;
  height: auto;
}
.card {
  background: #fff;
  border-radius: 8px;
}
.card .image-box {
  height: 75vh;
}
.card .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 48px;
}

.swiper-pagination-bullet {
  background-color: #fff;
}

.gradient-border-bg {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, rgba(128,169,150,1) 0%, rgba(21,15,0,1) 73%, rgba(0,212,255,1) 100%) border-box;
  border: 2px solid transparent;
  border-radius: 50px;
}

.image-box {
  border-radius: 50px;
}

.image-slider {
  background-image: url("../images/1920x1080gallery-min.jpg");
  background-size: cover;
}

.price-plan {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/1920x1080paymentplan-min.jpg");
  background-size: cover;
}

.platform{
  position: relative;
  transition:right 0.3s;
}

@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }

  .card .image-box {
    height: 200px;
    min-width: 300px;
  }

  .swiper-wrapper {
    width: 600px;
  }

  .card .image-box img {
    background-size: cover;
  }

  .card.swiper-slide {
    max-width: 50% !important;
  }
}

#enquireBtn {
 font-family: 'Quicksand', sans-serif;
 font-weight: 600;
}

/* whats app icon animation */

.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

@media (min-width: 1024px){

  #contentSecText {
    font-size: 1.7rem;
      line-height: 2.5rem;
  }
}

/* modal */


.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: RGBA(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 1rem 1.5rem;
  width: 24rem;
  border-radius: 0.5rem;
}
.close-button {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
}
.close-button:hover {
  background-color: darkgray;
}
.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

