@import "./variables.css";

/* Sidebar */
.sidebar {
  width: 130px;
  height: 100vh;
  background: var(--tertiary);
  padding: 30px 15px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar .logo {
  display: inline-block;
}

.sidebar .action {
  display: inline-block;
  margin: auto auto 0;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar .action span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 10px 0;
  display: inline-block;
}

.sidebar .action span i {
  margin: 10px 0;
  transition: 0.5s ease all;
}

.sidebar .action:hover span i {
  transform: translateY(5px);
}

.sidebar .action img {
  transform: rotate(-180deg);
  width: 20px;
}

/* Wrapper */
.wrapper {
  position: relative;
  width: calc(100% - 130px);
  margin: 0 0 0 auto;
}

.wrapper .related-wrapper {
  display: flex;
  justify-content: space-between;
}

.wrapper .related-wrapper .left-container {
  width: calc(100% - 350px);
}

.wrapper .related-wrapper .right-container {
  width: 350px;
}

.wrapper .related-wrapper .right-container .related-products {
  /* position: sticky;
  top: -100px; */
}

/* --- right container property details --- */
.recent-items .image {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.recent-items .image img {
  object-fit: cover;
  object-position: center;
  height: 440px;
}

.recent-items .image .text {
  position: absolute;
  width: 100%;
  height: fit-content;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  transition: 0.5s all ease;
}

.recent-items .image .text .type-book {
  display: block;
  flex: 1;
  background: #02212ac9;
  padding: 30px 20px;
  color: var(--light);
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.5s all ease;
}

.recent-items .image .text .type-book:hover {
  background: var(--tertiary);
}

.recent-items .image .text .type-book:nth-child(1) {
  border-right: 1px solid var(--light);
}

.recent-items .image .text .type-book:nth-child(2) {
  border-left: 1px solid var(--light);
}

.recent-items .image:hover .text {
  opacity: 0;
}

.recent-items .information-box {
  background-color: #02212adb;
  padding: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: 0.5s all ease;
}

.recent-items .image:hover .information-box {
  opacity: 1;
}

.recent-items .information-box .mini-heading {
  font-size: 25px;
  color: var(--light);
  line-height: 36px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.recent-items .information-box .specification-list .list-item {
  color: var(--light);
  list-style: inside;
  font-size: 15px;
}

.information-box .button {
  display: inline-block;
  padding: 15px 20px;
}

.card {
  border: 0;
  background: linear-gradient(var(--primary), var(--secondary));
  padding: 1px;
  border-radius: 10px;
}

.card .card-body {
  width: 100%;
  background: var(--light);
  border-radius: 8px;
}

/* --- quotation modal --- */

.modal-xl {
  --bs-modal-width: 1100px;
}

.modal.enquire-modal {
  width: calc(100% - 130px);
  margin-left: 130px;
}

.modal .modal-header {
  border: none;
}

.modal.quote-modal .modal-footer {
  display: none;
}

.modal .modal-header button {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 25px;
}

.modal.quote-modal .modal-header {
  justify-content: center;
}

.modal.quote-modal .section-title {
  width: fit-content;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid var(--secondary);
  margin-bottom: 0 !important;
}

.modal.quote-modal .section-title .content-heading {
  font-size: 40px;
}

.modal .navs-tabs-box .nav {
  gap: 20px;
}

.modal .navs-tabs-box .nav .nav-item {
  width: calc(50% - 10px);
}

.modal .navs-tabs-box .nav .nav-item button {
  border: 1px solid var(--primary);
  background: transparent;
  transition: 0.5s all ease;
  color: var(--dark);
  font-size: 20px;
  width: 100%;
  height: 100%;
}

.modal .navs-tabs-box .nav .nav-item button.active {
  color: var(--light);
  background: linear-gradient(var(--primary), var(--secondary));
  width: 100%;
}

.modal .tab-content .note-box .note-list {
  padding-left: 30px;
}

.modal .tab-content .note-box .note-list .list-item {
  list-style: disc;
}

.modal .tab-content .table {
  border-color: var(--secondary);
}

.modal .tab-content .table> :not(caption)>*>* {
  padding: 6px 10px;
  font-size: 16px;
  text-transform: capitalize;
}

#quote-modal .card .card-body {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.modal.quote-modal .section-title .content-heading {
  font-size: 28px;
  line-height: 22px;
}

.modal.quote-modal .modal-xl {
  --bs-modal-width: 850px;
}

.modal.quote-modal .navs-tabs-box .nav .nav-item button {
  font-size: 16px;
}

.modal .tab-content .table thead th {
  text-align: center;
}

.modal .modal-footer {
  border: none;
}

.modal .modal-footer .button {
  padding: 18px 30px;
}

/* --- enquire modal --- */

.modal .modal-content .btn-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 25px;
  opacity: 1;
  z-index: 2;
}

.modal.enquire-modal .image-box {
  height: 100%;
}

.modal.enquire-modal .image-box img {
  height: 556px;
  object-fit: cover;
  object-position: center;
}

.modal.enquire-modal .form-box {
  padding: 20px 20px;
}

/* Hero */
.hero {
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.hero .carousel,
.hero .carousel .carousel-inner,
.hero .carousel .carousel-item {
  height: 100%;
  position: relative;
}

.hero .carousel img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center;
}

.hero .carousel .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to left, #2121218a, #21212159); */
  z-index: 1;
  pointer-events: none;
}

.hero .carousel .carousel-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.hero .carousel .carousel-controls button {
  position: relative;
  inset: auto;
  opacity: 1;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: var(--tertiary);
  border: 0;
  border-radius: 3px;
  box-shadow: 0 0 30px 1px #fff2;
}

.hero .carousel .carousel-caption {
  inset: auto;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  text-align: left;
  border: 3px solid var(--primary);
  max-width: 350px;
  padding: 50px;
  background: #0001;
  backdrop-filter: blur(5px);
  z-index: 2;
}

.hero .carousel .carousel-caption h5 {
  font-size: 80px;
  font-weight: 600;
  font-family: var(--sans-serif);
  line-height: 110%;
  text-wrap: nowrap;
  margin-bottom: 50px;
}

.hero .info-box {
  position: absolute;
  display: flex;
  width: fit-content;
  transform: translateY(-50%);
  bottom: 0;
  padding: 10px 0px;
  background-color: var(--primary);
  z-index: 1;
}

.hero .info-box .information {
  padding: 0 20px;
  border-right: 5px solid var(--light);
}

.hero .info-box .information:last-child {
  border-right: 0;
}

.hero .info-box .content-heading {
  color: var(--light);
}

/* About Section */
.about .image {
  width: 100%;
  overflow: hidden;
}

.about .image-sm img {
  transform: scale(0.85);
}

.about .point {
  text-align: center;
}

.about .point .icon {
  width: 50px;
  margin: 0 auto 10px;
  overflow: hidden;
}

.about .point h5 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 5px;
}

.about .point h6 {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-alt);
}

.about .card {
  border: 0;
  background: linear-gradient(var(--primary), var(--secondary));
  padding: 1px;
  border-radius: 10px;
}

.about .card .card-body {
  width: 100%;
  background: var(--light);
  border-radius: 8px;
}

.about .property-details .image-box {
  width: 100%;
}

.about .property-details .image-box img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about .property-details .content-box {
  width: 100%;
}

.about .property-details .content-box .button {
  padding: 15px 20px;
}

/* Floor Plan */
.floor-plan .nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 35px;
  position: relative;
  z-index: 1;
}

.floor-plan .nav-link {
  display: block;
  border-radius: 50px;
  border: 1px solid var(--tertiary);
  background: transparent;
  color: var(--tertiary);
  padding: 8px 25px;
  transition: 0.5s ease all;
  font-size: 14px;
  font-weight: 600;
}

.floor-plan .nav-link.active {
  color: var(--light);
  background: var(--tertiary);
}

.floor-plan .card {
  border: 0;
  background: linear-gradient(var(--primary), var(--secondary));
  padding: 1px;
  border-radius: 10px;
}

.floor-plan .card .card-body {
  width: 100%;
  background: var(--light);
  border-radius: 8px;
}

.floor-plan .card .image {
  border-radius: 10px;
  /* overflow: hidden; */
}

.our-property .card .image {
  border-radius: 10px;
  overflow: hidden;
}

.floor-plan .card .list li,
.floor-plan .card .list-alt li {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--sans-serif);
  color: var(--dark);
  margin-bottom: 5px;
}

.floor-plan .card .list li::before {
  content: "-";
  margin-right: 7px;
  font-weight: 700;
  color: var(--primary);
}

.floor-plan .card .list li:last-child,
.floor-plan .card .list-alt li:last-child {
  margin-bottom: 0;
}

.floor-plan .card .list-alt li b {
  font-weight: 600;
  color: var(--primary);
  margin-left: 5px;
}

.floor-plan .card button {
  background: linear-gradient(var(--primary), var(--secondary));
  padding: 1px;
  border-radius: 10px;
  border: 0;
  outline: 0;
}

.floor-plan .card button span {
  display: block;
  padding: 10px 20px;
  background: var(--light);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--sans-serif);
  line-height: 150%;
  color: var(--dark);
}

.floor-plan .card button span b {
  margin-left: 5px;
  display: inline-block;
}

.floor-plan .image {
  position: relative;
  /* overflow: unset !important; */
}

.floor-plan .tab-pane .text-box {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: fit-content;
  transform: translate(15%, 70%);
  background: linear-gradient(var(--primary), var(--secondary));
  padding: 5px 30px;
}

.floor-plan .tab-pane .text-box .content-heading {
  color: var(--light);
}

/* Amenities */
.amenities .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.amenities .item .icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  border: 1px solid #0003;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenities .item .icon img {
  width: 30px;
}

.amenities .item h6 {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--sans-serif);
  color: var(--dark);
  margin-bottom: 5px;
}

.amenities .item p {
  font-size: 14px;
}

/* Specification */
.specification .card {
  border: 0;
  background: linear-gradient(var(--primary), var(--secondary));
  padding: 1px;
  border-radius: 10px;
  overflow: hidden;
}

.specification .card .card-body {
  width: 100%;
  background: var(--light);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}

.specification .card .nav {
  width: 280px;
}

.specification .card .nav-link {
  background: transparent;
  border: 0;
  outline: 0;
  border-radius: 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--sans-serif);
  text-align: left;
  padding: 10px 20px;
  position: relative;
  margin-bottom: 2px;
}

.specification .card .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 15px;
  width: 150px;
  height: 2px;
  background: linear-gradient(var(--primary), var(--secondary));
}

.specification .card .tab-content {
  border-left: 1px solid var(--primary);
  width: calc(100% - 280px);
}

.specification .card .panel-title {
  padding: 15px 50px;
  border-bottom: 1px solid var(--primary);
}

.specification .card .panel-title h5 {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--sans-serif);
  color: var(--sans-serif);
}

.specification .card .panel-body {
  /* display: flex; */
  padding: 20px;
  width: 100%;
}

.special_amenities_box i {
  font-size: 45px;
  color: #d1aa67
}

.specification .card .panel-body .text {
  width: 60%;
  padding: 30px 50px;
}

.specification .card .panel-body .text ul.list li {
  display: flex;
  margin-bottom: 10px;
  color: var(--dark-alt);
}

.specification .card .panel-body .text ul.list li::before {
  content: "\f111";
  font-family: "Font Awesome 5 Pro";
  font-size: 5px;
  font-weight: 600;
  margin: 7px 10px 0 0;
  color: var(--primary);
}

.specification .card .panel-body .image {
  width: 40%;
  margin-top: 50px;
}



.special_amenities_tabs {
  background: #1c1c1c;
  padding: 60px 50px 60px 50px;
  color: #fff;
  width: 100%
}

.special_amenities_box {
  text-align: center;
  padding: 15px 10px;
  height: -webkit-fill-available;
  border: 1px dotted #d1aa67;
  margin-bottom: 30px
}

.special_amenities_box i {
  font-size: 45px;
  color: #d1aa67
}

.special_amenities_box h2 {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 24px
}

.special_amenities_box h6 {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 24px
}

.special_amenities_box p {
  font-size: 14px;
  color: #dfe2e3
}

/* Gallery */
.gallery .bg-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90%;
}

.gallery .bg-container .bg-item {
  width: 100%;
  height: 250px;
  background: linear-gradient(to top right, var(--primary), var(--secondary));
  border-radius: 10px;
  padding: 2px;
  overflow: hidden;
  opacity: 0.5;
}

.gallery .bg-container .bg-item span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--light);
  border-radius: 10px;
}

.gallery .carousel-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  position: relative;
  z-index: 2;
}

.gallery .carousel-grid .gallery-carousel {
  grid-column: 2 / span 21;
}

.gallery .owl-item {
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.gallery .item .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}

.gallery .gallery-carousel-btn {
  position: absolute;
  bottom: 70px;
  right: 17%;
  z-index: 3;
}

.gallery .gallery-carousel-btn .owl-next {
  width: 70px;
  height: 70px;
  background: linear-gradient(to top right, var(--primary), var(--secondary));
  border: 0;
  outline: 0;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery .gallery-carousel-btn .owl-next i {
  width: 68px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  background: var(--light);
  border-radius: 50px;
  font-size: 25px;
  color: var(--tertiary);
  transition: 0.5s ease all;
}

.gallery .gallery-carousel-btn .owl-next:hover i {
  background: transparent;
}

/* fee structure */
.fee-structure .charges.terms .charges-list {
  padding-left: 25px;
}

.fee-structure .charges.terms .charges-list .list {
  list-style: disc;
}

.fee-structure .charges.terms .sub-list .list {
  list-style: none;
}

/* FAQ */
.faq .accordion-item {
  border-color: var(--primary);
}

.faq .accordion-button {
  position: relative;
  font-size: 18px;
  font-family: var(--sans-serif);
}

.faq .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--light);
  outline: 0;
  box-shadow: none !important;
  border: none;
}

.faq .accordion-button.collapsed {
  box-shadow: none !important;
}

.faq .accordion-button::after {
  content: "\f067";
  font-size: 18px;
  font-weight: 200;
  font-family: "Font Awesome 5 Pro";
  background: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: auto;
  height: auto;
}

.faq .accordion-button.collapsed::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq .accordion-button:not(.collapsed)::after {
  background: none;
}

/* Footer */
.footer {
  padding-bottom: 0px;
}

.footer hr {
  opacity: 1;
  color: #808181;
  border-width: 2px;
}

.footer .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* height: 100%; */
  margin-top: 5rem;
}

.footer .logo img {
  max-width: 250px;
  width: 100%;
}

.footer h5 {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--sans-serif);
  color: var(--dark);
  margin-bottom: 15px;
}

/* .footer ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
} */
.footer ul li a,
.footer .link {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-alt);
  display: inline-block;
  transition: 0.5s ease all;
}

.footer ul li a:hover,
.footer .link:hover {
  color: var(--primary);
}

.footer .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.footer .social a {
  font-size: 18px;
  color: var(--dark);
  transition: 0.5s ease all;
}

.footer .social a:hover {
  color: var(--primary);
}

/* --- edited by prajwal --- */
.home.hero .carousel-inner .home-carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

.home.hero .carousel-inner .heading-box {
  width: calc(100% - 250px);
}

.home.hero .carousel-inner .sub-heading {
  color: var(--light);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.7rem;
  text-transform: uppercase;
  font-family: var(--sans-serif-alt);
}

.home.hero .carousel-inner .sub-heading::after {
  content: unset;
}

.home.hero .carousel-inner .home-carousel-caption .heading {
  font-size: 130px;
  text-transform: uppercase;
  color: var(--light);
  font-family: var(--sans-serif);
}

.home.hero .carousel-inner .home-carousel-caption .heading:nth-child(3) {
  margin-left: auto;
  position: relative;
  text-align: end;
  margin-left: auto;
  position: relative;
  text-align: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 80px;
}

.home.hero .carousel-inner .home-carousel-caption .heading:nth-child(3)::before {
  content: "";
  display: block;
  transform: translateY(50%);
  width: 10%;
  height: 3px;
  flex: 0.55;
  background-color: var(--light);
}

.home.hero .carousel-inner .scroll-vector {
  transform: translateY(50%);
}

.home.hero .carousel-inner .scroll-vector .image {
  width: 30px;
  margin: auto;
}

.home.hero .carousel-inner .scroll-vector .mini-heading {
  color: var(--light);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--sans-serif-alt);
}

/* --- about section --- */

.home.about .image-box {
  display: flex;
  align-items: end;
}

.home.about .image-box img:nth-child(1) {
  width: 70%;
}

.home.about .image-box img:nth-child(2) {
  width: 50%;
  position: relative;
  right: 20%;
  top: -100px;
}

.home.about .image-box-alt {
  display: flex;
  flex-direction: row-reverse;
}

.home.about .image-box-alt img:nth-child(1) {
  width: 70%;
  position: relative;
  z-index: 1;
}

.home.about .image-box-alt img:nth-child(2) {
  width: 50%;
  position: relative;
  right: -20%;
  top: -60px;
}

/* --- our property --- */

/* navigation of common carousel */

.common-carousel {
  position: relative;
}

.common-carousel .owl-nav {
  display: flex;
  position: absolute;
  top: 44%;
  left: 0;
  justify-content: space-between;
  width: 76.6rem;
  transform: translate(-4.5%, -50%);
}

.common-carousel .owl-nav button {
  height: 50px;
  width: 50px;
  /* border: 1px solid var(--tertiary); */
  border-radius: 50%;
}

.common-carousel .owl-nav button:hover {
  background: transparent !important;
}

.common-carousel .owl-nav button.owl-prev {
  transform: rotate(180deg);
}

.common-carousel .owl-nav button.disabled {
  opacity: 0;
}

/**** end navigation of common carousel ****/

.our-property .property-carousel .image {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.our-property .property-carousel .image img {
  object-fit: cover;
  object-position: center;
  height: 440px;
  /* padding: 4rem; */
}

.our-property .property-carousel .image .text {
  position: absolute;
  width: 100%;
  height: fit-content;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  transition: 0.5s all ease;
}

.our-property .property-carousel .image .text .type-book {
  display: block;
  flex: 1;
  background: #02212ac9;
  padding: 30px;
  color: var(--light);
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.5s all ease;
}

.our-property .property-carousel .image .text .type-book:hover {
  background: var(--tertiary);
}

.our-property .property-carousel .image .text .type-book:nth-child(1) {
  border-right: 1px solid var(--light);
}

.our-property .property-carousel .image .text .type-book:nth-child(2) {
  border-left: 1px solid var(--light);
}

.our-property .property-carousel .image:hover .text {
  opacity: 0;
}

.our-property .property-carousel .information-box {
  background-color: #02212adb;
  padding: 30px 38px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: 0.5s all ease;
}

.our-property .property-carousel .image:hover .information-box {
  opacity: 1;
}

.our-property .property-carousel .information-box .mini-heading {
  font-size: 30px;
  color: var(--light);
  line-height: 36px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.our-property .property-carousel .information-box .specification-list .list-item {
  color: var(--light);
  list-style: inside;
  font-size: 16px;
}

.our-property .property-carousel .information-box .button {
  display: inline-block;
  padding: 15px 20px;
}

/* --- aminities --- */

.amenities h4,
.amenities h5 {
  font-size: 23px;
  font-weight: 500;
  font-family: var(--sans-serif);
  color: #545b79;
  margin-bottom: 15px;
}

.amenities h5 {
  color: var(--dark);
}

.amenities h6 {
  color: #808181;
  font-size: 20px;
  font-family: var(--sans-serif);
}

.amenities p {
  font-family: var(--sans-serif);
  font-size: 18px;
  color: #808181;
  line-height: 26px;
}

.amenities .col-xl-3:nth-child(even) {
  position: relative;
  top: 100px;
  /* transform: translateY(100px); */
}

.amenities .button {
  margin-top: 160px;
  padding: 15px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- about page --- */
.hero.about .carousel .carousel-caption {
  left: 20%;
  right: unset;
}

.home.about .mission .card {
  border-color: #cdae7e;
  border-radius: 7px;
  /* height: 100%; */
}

.home.about .col-xl-3:nth-child(odd) .mission .card .card-body {
  transform: translate(2px, 2px);
  background: white;
}

.home.about .col-xl-3:nth-child(even) .mission .card .card-body {
  transform: translate(-2px, -2px);
  background: white;
}

.home.about .mission .mission-list {
  padding-left: 20px;
}

.home.about .mission .mission-list .list-item {
  list-style: disc;
}

/* added by vishnu on 18-08-2025 starts */
/* top menu */

.menu-list ul {
  list-style-type: none;
  padding: 0;
  width: 100%;
}

.menu-list ul a {
  cursor: pointer;
}

/* Relative Code Starts Here */
#top-nav {
  position: fixed;
  width: fit-content;
  height: 80px;
  z-index: 10;
  right: 15px;
}

.nav-menu {
  background: none;
  width: 60px;
  height: 80px;
  top: 0;
  right: 15px;
  -webkit-transition: width 0.2s ease, height 0.4s ease;
  -moz-transition: width 0.2s ease, height 0.4s ease;
  -o-transition: width 0.2s ease, height 0.4s ease;
  transition: width 0.2s ease, height 0.4s ease;
}

.open {
  position: fixed;
  background: rgba(2, 33, 42, 1);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0.98;
}

.menu-list {
  /* margin-top: 100px; */
  text-align: center;
  font-family: "Open Sans", Helvetica;
  font-size: 30px;
  opacity: 0;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.list-open {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.64s ease;
  -webkit-transition-delay: 0.34s;
  -moz-transition-delay: 0.34s;
  -o-transition-delay: 0.34s;
  transition-delay: 0.34s;
}

.menu-list li {
  padding: 10px;
  background: none;
  color: #fff;
  font-size: 20px;
  font-family: var(--sans-serif-alt);
  font-weight: 500;
}

.menu-list li:hover {
  background: var(--secondary);
  color: var(--tertiary);
  cursor: pointer;
}

li .social-icons:hover {
  background: none;
}

.social-icons {
  margin-top: 20px;
  font-size: 24px;
}

.social-icons a {
  margin: 18px;
  color: #fff;
}

.menu-list ul {
  display: none;
}

/* Burger */
#burger-wrap {
  position: fixed;
  top: 10px;
  right: 15px;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 59px;
  background: var(--tertiary);
}

.burger {
  position: fixed;
  top: 9px;
  right: 15px;
  overflow: hidden;
  cursor: pointer;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 80px;
  border-radius: 50%;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: transparent;
}

.burger span {
  display: block;
  position: absolute;
  top: 30px;
  left: 16px;
  right: 16px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 15px;
  -webkit-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
  -o-transition: background 0s 0s;
  -webkit-transition-delay: 0.4s, 0s;
  transition-delay: 0.4s, 0s;
}

.open .burger span {
  background: 0 0 transparent;
  transform: rotate(90deg);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -o-transition: all 0s ease;
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}

.burger span::after,
.burger span::before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
  content: "";
  border-radius: 5px;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.4s, 0s;
  transition-delay: 0.4s, 0s;
}

.burger span::before {
  top: -8px;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}

.burger span::after {
  bottom: -8px;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}

.open .burger span::after,
.open .burger span::before {
  -webkit-transition-delay: 0s, 0.4s;
  transition-delay: 0s, 0.4s;
  background-color: var(--secondary);
}

.open .burger span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.open .burger span::after {
  bottom: 1px;
  /* Fix for codepen, set to zero for normal use */
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* contact us page */
.contact-heading-2 {
  font-size: 112px;
  padding-left: 12px !important;
}

.contact-heading-2::before {
  flex: 0.84 !important;
}

.contact-form {
  border: 1px solid var(--primary);
  padding: 50px 55px;
  border-radius: 16px;
}

.contact-input {
  border: none;
  border-bottom: 1px solid #4d4d4d;
  border-radius: 0;
  padding-left: 0;
  padding-bottom: 10px;
}

.contact-input:focus {
  box-shadow: none;
  border-bottom: 1px solid #4d4d4d;
}

.contact-form select {
  background: url(../images/icons/select-arrow.png);
  background-repeat: no-repeat;
  background-position: 28rem 0.9rem;
  background-size: 10px;
  cursor: pointer;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select {
  font-size: 11px;
  font-family: var(--sans-serif-alt);
  font-weight: 400;
}

.contact-btn {
  padding: 14px 40px;
  border-radius: 0;
}

.contact-map iframe {
  width: 100%;
  height: 500px;
}

/* added by vishnu on 18-08-2025 ends */

/* Responsive */
@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 90%;
  }
}

@media (max-width: 1240px) {
  .about .property-details {
    flex-direction: column;
  }
}

@media (max-width: 1199px) {}

@media (max-width: 992px) {}

@media (max-width: 767px) {

  .g-5,
  .gx-5 {
    --bs-gutter-x: 0 !important;
  }

  /* Code Added by Sanket for Mobile Responsiveness on 09-09-2025 - Starts */
  .wrapper {
    width: unset;
  }

  .sidebar {
    width: 100%;
    height: 100px;
    padding: 15px;
    position: static;
  }

  .sidebar .logo img {
    width: 90px;
  }

  .home.hero {
    height: unset;
    min-height: unset;
  }

  .commonHero {
    height: 300px;
    min-height: 300px;
  }

  .hero .carousel .carousel-controls {
    bottom: 40px;
    width: 75px;
  }

  .hero .carousel .carousel-controls button {
    width: 35px;
    height: 35px;
  }

  .section-title .title-count {
    width: 43px;
    height: 39px;
    line-height: 36px;
  }

  .section-title .title-count::before {
    font-size: 20px;
    width: calc(36px - 2px);
    height: calc(38px - 3px);
  }

  .section-title .title {
    font-size: 35px;
    gap: 0;
    width: 100%;
    line-height: 86%;
  }

  .section-title .title::after {
    width: 80px;
    margin-left: 10px;
    height: 2px;
  }

  .content-heading {
    font-size: 28px;
    line-height: 30px;
  }

  .home.about .image-box {
    gap: 10px;
    padding-right: 10px;
  }

  .floor-plan .nav-link {
    padding: 8px;
    font-size: 10px;
    line-height: 8px;
  }

  .floor-plan .nav {
    gap: 10px;
  }

  .amenities .button {
    margin-top: 60px;
  }

  .footer .logo img {
    max-width: 180px;
  }

  .footer h5 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .our-property .property-carousel .image img {
    max-height: 300px;
    min-height: 300px;
    padding: 2rem;
  }

  /* .our-property .property-carousel .image:hover {
    all: unset !important;
  } */
  .our-property .property-carousel .image .text .type-book {
    padding: 15px;
  }

  .amenities h4,
  .amenities h5 {
    font-size: 20px;
  }

  /* .hero.about .carousel .carousel-caption {
    left: 0;
    right: 0;
    margin: auto;
    width: 98%;
    max-width: 100%;
    padding: 10px;
  } */
  .hero .carousel .carousel-caption h5 {
    font-size: 40px;
    line-height: 100%;
    margin-bottom: 10px;
    text-wrap: unset;
  }

  .home.hero .carousel-inner .home-carousel-caption .heading {
    font-size: 50px;
    line-height: 50px;
  }

  .home.hero .carousel-inner .scroll-vector {
    transform: translateY(110%);
  }

  .contact-form {
    padding: 20px;
  }

  .contact-map iframe {
    height: 300px;
  }

  .footer {
    padding-bottom: 50px;
  }

  #top-nav {
    width: fit-content;
    height: 80px;
    right: 0;
    top: 0;
    position: absolute;
  }

  #burger-wrap {
    position: absolute;
    background: unset;
  }

  #burger-wrap .burger {
    position: static;
  }

  .home.hero .carousel-inner .heading-box {
    width: 100%;
  }

  .section.about {
    padding-bottom: 0;
  }

  .amenities .col-xl-3:nth-child(2n) {
    top: unset;
  }

  .home.about .image-box img:nth-child(1) {
    width: 60%;
  }

  .home.about .image-box img:nth-child(2) {
    right: 0;
    top: 0;
    width: 40%;
  }

  /* .sidebar .action,
  .our-property .property-carousel .information-box,
  .footer hr,
  .home.hero .carousel-inner .sub-heading {
    display: none;
  } */
  /* Code Added by Sanket for Mobile Responsiveness on 09-09-2025 - Ends */
}

/* Code Added by Sanket on 28-08-2025 */
.listingHero .carousel .carousel-item::before {
  background: unset;
}

/* Code Added by Sanket on 23-09-2025 */
.section.specification {
  display: block;
}

.our-property .property-carousel #bungalows .image {
  height: 440px;
}

/* Code Added by Sanket on 25-09-2025 */

.galleryHero .carousel .carousel-caption {
  right: 20%;
  max-width: 210px;
}

.galleryHero .carousel .carousel-item::before {
  background: linear-gradient(to left, #2121213d, #2121212b);
}

.gallery .col-lg-4:has(.image-box) {
  position: relative;
}

.gallery .tab-pane .text-box {
  bottom: 15px;
  left: 6px;
}

.gallery #pills-plan01 .row .col-lg-4:nth-child(1) .text-box {
  left: 18px;
}

.gallery #pills-plan02 .row .col-lg-4:nth-child(1) .text-box {
  left: 11px;
}

.gallery #pills-plan02 .row .col-lg-4:nth-child(2) .text-box {
  left: 16px;
}

.gallery #pills-plan02 .row .col-lg-4:nth-child(7) .text-box {
  left: 8px;
}

.gallery #pills-plan02 .row .col-lg-4:last-child .text-box {
  left: 12px;
}

.gallery #pills-plan03 .image-box {
  border: none;
}

.gallery .image-box {
  border-radius: 10px;
  border: 1px solid var(--primary);
  /* padding: 10px 0 10px 10px; */
}

.gallery .row .col-lg-4 .image-box img {
  right: -10px;
  bottom: -10px;
}

.gallery .twoD .image-box img {
  right: 0 !important;
  bottom: 0 !important;
}

.gallery .image-box img {
  height: 255px;
  border-radius: 10px;
  position: relative;
}

.nav-menu .dropdown-ul {
  background: #01161b !important;
  border-color: #ffffff2e;
  width: fit-content;
  margin: auto !important;
  left: 0 !important;
  right: 0 !important;
  overflow: hidden;
  /* border: 1px solid var(--secondary); */
  /* border-radius: 10px; */
}

.nav-menu .dropdown-ul li a {
  color: var(--light);
}

.nav-menu .dropdown-ul li a:hover {
  background-color: var(--secondary);
  color: var(--tertiary);
}

.bookNow form .form-check-label {
  font-size: 11px;
  font-family: var(--sans-serif-alt);
  font-weight: 400;
  color: var(--bs-secondary-color);
}

.bookNow form .form-check-input {
  margin-left: -1.3em;
  width: 0.9em;
  height: 0.9em;
  margin-top: 0.35em;
  box-shadow: none;
}

.bookNow form .form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--primary);
}

.bookNow form .form-check-input:focus {
  border-color: var(--primary);
}

.bookNow form .formRight {
  border-right: 1px solid var(--primary);
}

.bookNow form h2 {
  font-size: 1.8rem !important;
}

.termsBookNow ol li {
  list-style: decimal;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 14px;
}

.termsBookNow ol li:last-child {
  margin-bottom: 0;
}

ul.specification-list li.list-item span {
  font-weight: 500;
}

/* added by vishnu on 25-09-2025 */
.amenities-icon {
  text-align: center;
  font-size: 46px;
  color: var(--primary);
}

.amenities-cardbody h5 {
  font-size: 16px;
}

.amenities-cardbody p {
  font-size: 13px;
  line-height: 18.3px;
  letter-spacing: 0;
}

.amenities-card {
  height: 210px;
  padding: 15px 10px;
}

.description-img img {
  height: 400px;
  object-fit: cover;
}

.description-text {
  border: 2px solid var(--primary);
  background: var(--light);
  padding: 15px 20px;
  border-radius: 5px;
}

.description-text h4 {
  font-size: 30px;
  line-height: 46px;
  text-transform: capitalize;
  font-family: var(--sans-serif);
  color: #808181;
}

.description-content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 50%;
}

.amenities-gallery .image-box img {
  height: 212px;
  border-radius: 10px;
  position: relative;
  object-fit: cover;
}

.privacyPolicy ul li {
  list-style: disc;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 26px;
}

.privacyPolicy ul li a {
  color: var(--dark-alt);
}

.privacyPolicy ul {
  padding-left: 22px;
}

.privacyPolicy ol {
  padding-left: 22px;
}

.privacyPolicy ol li {
  list-style: decimal;
  font-weight: 500;
}

.privacyPolicy ol li span {
  font-weight: 400;
  display: block;
  margin-top: 5px;
}

.privacyPolicy ol li ul li {
  list-style: disc;
}

.about .property-details .content-box .button:nth-child(2) {
  display: none;
}

/* added by vishnu on 26-09-2025 */
.schedule-modal .navs-tabs-box .nav .nav-item button {
  width: fit-content !important;
}

.schedule-modal .navs-tabs-box .nav .nav-item {
  display: flex;
  justify-content: center;
}

.schedule-form {
  padding: 20px 30px;
}

.modal .schedule-content {
  width: 80%;
}

.modal.schedule-modal .section-title .content-heading {
  font-size: 24px;
}

.schedule-btn, .gallery-img {
  cursor: pointer;
}

.footer-no {
  margin-top: 3rem;
}

.footer-no p a {
  color: var(--dark-alt);
}

/* added on 30-09-2025 */
.list_item:hover:has(.rotate) {
  background: none;
}

.list_item a:hover:has(.rotate) {
  color: var(--light) !important;
}

.menu-list .list_item a {
  color: var(--light);
}

.menu-list .list_item a:hover {
  color: var(--tertiary);
}

.drop-arrow {
  margin-left: 10px;
}

/* added on 3-10-2025 */
.home-amenities {
  align-items: center;
  text-align: center;
  color: var(--primary);
}

.home-amenities i {
  font-size: 70px;
}

@media (max-width:978px) {
  .specification .card .tab-content {

    width: 100%;
  }

}

/* adedd by vishu on 30-09-2025 responsive */


@media (max-width:767px) {
  .content-heading {
    font-size: 20px;
    line-height: 22px;
  }

  .hero .info-box {
    padding: 3px 0px;
  }

  .hero .info-box .information {
    padding: 0px 5px;
  }

  .hero .carousel .carousel-controls button {
    width: 35px;
    height: 30px;
  }

  .our-property .property-carousel .image img {
    max-height: 100%;
    min-height: 300px;
    padding: unset;
  }

  .listingHero .carousel img, .listingHero .carousel-item img {
    height: 15rem;
    object-fit: cover;
  }

  .listingHero {
    min-height: unset !important;
    height: 15rem;
  }

  .hero .info-box {
    bottom: -6px;
  }

  .description-img img {
    height: unset;
  }

  .description-content {
    position: unset;
  }

  .footer .logo {
    margin-top: 0;
  }

  .footer-no {
    margin-top: 2rem;
  }

  .footer-contact {
    display: flex;
    gap: 20px;
  }

  .section-title .title {
    font-size: 28px;
  }

  .amenities h4 {
    margin-bottom: unset;
  }

  .main-section .card-title {
    margin-bottom: 5px;
  }

  .listingHero .carousel .carousel-caption {
    padding: 10px;
  }

  .listingHero .carousel .carousel-caption h5, .galleryHero .carousel .carousel-caption h5 {
    font-size: 26px;
  }

  .galleryHero .carousel .carousel-caption {
    max-width: 100px;
    right: 0;
    left: 37%;
  }

  .galleryHero.carousel .carousel-caption {
    padding: 20px;
  }

  .modal.enquire-modal {
    margin-left: 0;
    width: unset;
  }

  .modal.enquire-modal .image-box img {
    height: 270px;
  }

  .modal .modal-content .btn-close {
    top: -6px;
    right: -2px;
  }

  .form-floating label, .form-floating select {
    padding: 12px;
    font-size: 12px;
  }

  .form-floating input {
    height: 40px !important;
    min-height: unset !important;
  }

  .form-floating textarea {
    height: 80px !important;
  }

  .schedule-btn {
    position: fixed;
    right: 0;
    top: 50%;
    background: var(--tertiary);
    padding: 16px;
    transform: rotate(1800deg);
    z-index: 10;
  }

  .sidebar .action span {
    font-size: 12px;
    margin: 0;
  }

  .sidebar .action img {
    width: 15px;
  }

  .common-carousel .owl-nav button.disabled {
    opacity: 1;
  }

  .common-carousel .owl-nav {
    top: 95%;
    left: 5%;
    width: 100%;
    justify-content: center;
  }

  .schedule-content .card-body {
    padding: unset;
  }

  .schedule-content .modal-body .nav-item .nav-link {
    padding: 8px 10px !important;
  }

  .modal.schedule-modal .navs-tabs-box .nav .nav-item button {
    font-size: 12px;
  }

  .schedule-form .button-box {
    display: flex;
  }

  .modal.schedule-modal .section-title .content-heading {
    font-size: 18px;
  }

  .modal.schedule-modal .section-title {
    width: fit-content;
    padding: 8px 20px;
  }

  .modal.schedule-modal .schedule-content {
    width: 100% !important;
  }

  .schedule-form {
    padding: 10px 15px;
  }

  .contact-btn {
    padding: 10px 35px;
    border-radius: 0;
    font-size: 13px;
  }

  .modal.schedule-modal .modal-header button {
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
  }

  .modal.schedule-modal .modal-header button {
    font-size: 18px;
  }

  .scroll-vector {
    display: none;
  }
}

@media (min-width:300px) and (max-width:360px) {
  .content-heading {
    font-size: 15px;
  }

  .our-property .property-carousel .information-box .button, .information-box .button {
    padding: 8px 12px;
  }

  .section-title .title {
    font-size: 18px;
  }

  .schedule-btn {
    padding: 12px;
  }

  .section-title .title-count::before {
    font-size: 17px;
    width: calc(27px - -1px);
    height: calc(36px - 4px);
  }

  .section-title .title-count {
    width: 38px;
    height: 36px;
  }

  .sidebar .action span {
    font-size: 11px;
  }

  .modal.schedule-modal .navs-tabs-box .nav .nav-item button {
    font-size: 10px;
  }

  .contact-btn {
    padding: 8px 27.5px;
  }

  .modal.schedule-modal .section-title .content-heading {
    font-size: 16px;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .common-carousel .owl-nav {
    width: 40.6rem;
  }

  .hero {
    height: 100%;
  }

  .listingHero {
    height: 35vh;
    min-height: unset;
  }

  .content-heading {
    font-size: 23px;
  }

  .hero .info-box {
    padding: 0;
  }

  .section-title .title {
    font-size: 42px;
  }

  .section-title .title-count::before {
    top: 0px;
    font-size: 31px;
    width: calc(85px - 23px);
    height: calc(80px - 17px);
  }

  .section-title .title-count {
    width: 65px;
    height: 65px;
    line-height: 70px;
  }

  .wrapper {
    width: calc(100% - 100px);
  }

  .sidebar {
    width: 100px;
  }

  .our-property .property-carousel .image .text .type-book {
    font-size: 12.8px;
  }

  .information-box .button-box {
    display: flex;
  }

  .information-box .button {
    padding: 15px;
  }

  .information-box .specification-list .list-item {
    font-size: 15px;
  }

  .common-carousel .owl-nav {
    top: 95%;
    left: 5%;
    width: 100%;
    justify-content: center;
  }

  .common-carousel .owl-nav button.disabled {
    opacity: 1;
  }

  .hero .carousel .carousel-caption {
    top: 45%;
    max-width: 260px;
    padding: 10px;
  }

  .hero .carousel .carousel-caption h5 {
    font-size: 50px;
  }

  .our-property .property-carousel .information-box .button {
    padding: 10px 15px;
  }

  .gallery .image-box img {
    height: 25rem;
  }

  .amenities-gallery .image-box img {
    height: 25rem;
  }

  .amenities-cardbody p {
    font-size: 16px;
  }

  .amenities-cardbody h5 {
    font-size: 24px;
  }

  .amenities-icon {
    font-size: 75px;
  }

  .amenities-card {
    height: 18rem;
  }

  .description-content {
    position: unset;
  }

  .description-text {
    padding: 30px 20px;
  }

  .home.hero .carousel-inner .home-carousel-caption .heading {
    font-size: 65px;
  }

  .home.hero .carousel-inner .scroll-vector {
    transform: translateY(30%);
  }

  .amenities .col-xl-3:nth-child(even) {
    top: unset;
  }

  .amenities .col-xl-3 .card {
    height: 24.3rem;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .hero {
    height: 100%;
  }

  .listingHero {
    height: 38vh;
    min-height: unset;
  }

  .listingHero .carousel img {
    object-fit: cover;
  }

  .our-property .property-carousel .image .text .type-book {
    font-size: 10px;
  }

  .our-property .property-carousel .information-box .button {
    padding: 12px 15px;
  }

  .our-property .property-carousel .information-box .mini-heading {
    font-size: 25px;
  }

  .our-property .property-carousel .information-box {
    padding: 20px;
  }

  .gallery .content-heading {
    font-size: 24px;
    line-height: 36px;
  }

  .floor-plan .tab-pane .text-box {
    padding: 5px 10px !important;
  }

  .home.hero .carousel-inner .home-carousel-caption .heading {
    font-size: 88px;
  }

  .menu-list li {
    font-size: 35px;
  }

  .description-content {
    right: 15px;
    left: 45%;
  }

  .amenities-card {
    height: 235px;
  }

  .section-title .title {
    font-size: 60px;
  }

  .common-carousel .owl-nav {
    width: 57.5rem;
    position: unset;
    justify-content: center;
  }

  .common-carousel .owl-nav button.disabled {
    opacity: 1;
  }

  .hero .carousel .carousel-caption h5 {
    font-size: 68px;
  }

  .hero .carousel .carousel-caption {
    padding: 25px;
  }

  .amenities .col-xl-3:nth-child(even) {
    top: unset;
  }

  .amenities .col-xl-3 .card {
    height: 24.3rem;
  }
}

@media (max-height:500px) {
  .listingHero {
    height: unset;
    max-height: 468px;
  }

  .listingHero .carousel img, .listingHero .carousel-item img {
    height: 24rem;
  }

  .listingHero .carousel-item .scroll-img {
    height: fit-content;
  }

  .menu-list li {
    padding: 5px;
    font-size: 16px;
  }

  .home.hero .carousel-inner .home-carousel-caption .heading:nth-child(3)::before {
    transform: translateX(25%);
    flex: 0.55 !important;
  }

  .home.hero .carousel-inner .heading-box {
    width: 100%;
    text-align: center;
  }

  .sidebar .action span {
    font-size: 10px;
    margin: 0;
  }
}

@media screen and (width: 1024px) and (height: 768px) {
  .listingHero {
    height: 70vh;
  }
}

@media (min-width:1200px) and (max-width:1299px) {
  .common-carousel .owl-nav {
    left: 26px;
    width: 72.8rem;
  }

  .home.hero .carousel-inner .scroll-vector {
    transform: translateY(8rem);
  }
}

@media (min-width:1400px) and (max-width:1683px) {
  .common-carousel .owl-nav {
    width: 79.3rem;
  }

  .home.hero .carousel-inner .scroll-vector {
    transform: translateY(10.8rem);
  }
}

@media (min-width:1900px) and (max-width:1950px) {
  .common-carousel .owl-nav {
    width: 108.6rem;
  }

  .home.hero .carousel-inner .scroll-vector {
    transform: translateY(16.5rem);
  }

  .home.hero .carousel-inner .home-carousel-caption .heading:nth-child(3)::before {
    flex: 0.55 !important;
  }

  .contact-form {
    padding: 170px 55px;
  }

  .contact-map iframe {
    height: 45rem;
  }
}



.thank-sec {
  /* width: 100%; */
  /* height: 100vh; */
}

.thankyou {
  padding-top: 12rem;
  margin: 0;
  padding-bottom: 12rem;
  background: #ffffff;
}

.thankyou_box img {
  width: 70px;
  margin-top: -95px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 30px;
  border: 2px solid #222;

}

.thankyou_box {
  background: var(--tertiary);
  width: 500px;
  margin: auto;
  text-align: center;
  border-bottom: 2px solid var(--primary);
  padding: 60px 30px 40px;
}

.thankyou_box h2 {
  font-size: 26px;
  color: var(--primary);
}