body {
  --color1: #fff;
  --color2: #181818;
  font-family: "Poppins", sans-serif;
}

.error {
  border: 1px solid red;
}

.main-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.loader-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.loader {
  border: 8px solid #7cf7e5;
  border-radius: 50%;
  border-top: 8px solid transparent;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.nav-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
  background-color: var(--color1);
  padding: 23px 20px;
}

.logo img {
  width: 110px;
}

.menu {
  display: flex;
  margin-right: 132px;
}

.menu li {
  padding-left: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
}

.logobox {
  width: 110px;
  height: 110px;
  background-color: #7cf7e5;
  position: absolute;
  left: 105px;
  top: 18px;
  z-index: 999;
}

.menu li a {
  display: inline-block;
  text-decoration: none;
  color: var(--color2);
  font-weight: 500;
  line-height: 21px;
  font-size: 14px;
  text-align: center;
  transition: 0.15s ease-in-out;
  position: relative;
  padding: 8px 0;
}

/* .menu li:nth-child(5) {
  margin-top: -10px;
} */
.dropdown-header a {
  line-height: 25px !important;
}

.activelogin button.messagesquarebutton {
  margin-top: -4px;
}

.menu li:nth-child(7) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu li .username {
  float: left;
  /* margin-left: 30px; */
  cursor: pointer;
  position: relative;
  text-transform: capitalize;

  padding: 0px 15px 0 0;
}

.dropdown {
  border-radius: 10px;
  padding-top: 3px;
  background-color: white;
}

.dropdown-header {
  padding: 3px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-header i {
  font-size: 13px;
}

.dropdown-body {
  display: none;
}

.dropdown-header .fa fa-chevron-right icon {
  transform: rotate(90deg);
}

.dropdown-body.open {
  display: block;
  position: absolute;
  background-color: #fff;
  z-index: 999;
  padding-right: 30px;
  padding-left: 30px;
  box-shadow: 0 0 7px #f2f2f2;
  min-width: 90px;
}

.dropdown-item ul {
  list-style-type: none;
}

.dropdown-item ul li {
  padding-left: 0px;
}

.booking-icon {
  width: 12px;
  margin-right: 6px;
}

.booking-icon:hover {
  color: #7cf7e5;
}

.dropdown-item ul li img.userimage {
  width: 12px;
}

.menu li .messagesquarebutton span {
  width: 15px;
  height: 15px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu li .messagesquarebutton {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  margin-left: -10px;
  background-color: #7cf7e5;
  border: 1px solid #7cf7e5;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.menu li .signupbutton {
  width: 110px;

  background-color: #7cf7e5;
  border-radius: 10px;
  height: 40px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  border: 1px solid #7cf7e5;
  margin-top: -4px;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
}
.menu li .signupbutton:hover {
  background-color: transparent;
  border: 1px solid #999999;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.menu li .transparent {
  background-color: transparent;
  border: 1px solid #999999;
}
.menu li .transparent:hover {
  background-color: #7cf7e5;
  border: 1px solid #7cf7e5;
  transform: scale(1.05);
}
.menu li a::after {
  content: "";
  position: absolute;
  text-decoration: none;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  color: #7cf7e5;

  /* background-color: var(--color2);
  
  transition: 0.15s ease-in-out; */
  text-decoration: none;
}

.menu li a:hover {
  color: #7cf7e5;
}

.menu li a:hover:after {
  width: 100%;
  text-decoration: none;
  color: #7cf7e5;
}

.open-menu,
.close-menu {
  position: absolute;
  color: var(--color2);
  cursor: pointer;
  font-size: 1.5rem;
  display: none;
}

.open-menu {
  top: 0%;
  right: 20px;
  transform: translateY(-50%);
}

.close-menu {
  top: 20px;
  right: 20px;
}

#check {
  display: none;
}

@media (max-width: 802px) {
  .menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100;
    background-color: var(--color1);
    transition: all 0.2s ease-in-out;
  }

  .menu li {
    margin-top: 40px;
  }

  .menu li a {
    padding: 10px;
  }

  .open-menu,
  .close-menu {
    display: block;
  }

  #check:checked ~ .menu {
    right: 0;
  }
}

.content_wrapper {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content_wrapperbutton {
  height: 200px;
  background-color: red;
}
.home-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.1);
}

.colorlayer {
  width: 100%;
  float: left;

  height: 580px;

  background-image: url("../images/homebanner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.colorlayer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.home_mainheading {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
  margin-top: 20px;
}

.home_mainheading h1 {
  font-weight: 500;
  font-size: 35px;
  text-align: center;
  padding-top: 16px;
}

.home-searchbox {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 26px 56px 32px;
  min-width: 690px;
  width: 100%;
  display: none;
  margin-top: 10px;
}

.home-searchbox2 {
  text-align: center;
  min-width: 690px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.home-searchbox3 {
  text-align: center;
  min-width: 1200px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;

  display: none;
}

.home-searchbox button {
  margin-left: 37px;
  width: 128px;
  height: 40px;
  background-color: #7cf7e5;
  border: 1px solid #7cf7e5;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: all 0.3s ease;
  transform: scale(1);
}
.home-searchbox2 button {
  margin-left: 37px;
  /* margin-top: 20px; */
  width: 182px;
  height: 45px;
  background-color: #7cf7e5;
  border: 1px solid #7cf7e5;
  border-radius: 10px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  transition: all 0.3s ease;
  transform: scale(1);
}
.home-searchbox2 button:hover {
  transform: scale(1.2);
}
.home-searchbox button:hover {
  transform: scale(1.2);
}

.h1-dash {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}

.home_input-box {
  margin-top: 9px;
  height: 40px;
  position: relative;
}

.home_input-box input {
  height: 40px;
  border-radius: 10px;
  color: black;
  /* border: 1px solid #999999; */
  display: inline-block;
  width: calc(100% - 170px);
  font-size: 14px;
  /* float:left; */
}

.abouhome_container {
  max-width: 1180px;
  margin: 0 auto;
  clear: both;
}
.site-workcontainer {
  width: 100%;
  float: left;
  margin-top: 40px;
}
.site-workinnerconatiner {
  max-width: 1180px;
  margin: 0 auto;
  clear: both;

  padding: 50px;
}

.site-workheading {
  text-align: center;
  font-size: 32px;
  padding-bottom: 20px;
}
.site-workheading h3 {
  color: #fff;
}

.site-workiconboxtext h4 {
  color: #fff;
}
.site-workiconbox {
  width: 30%;
  margin-left: 10px;
  float: left;
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
}

.container-about {
  width: 100%;

  max-width: 1180px;
  margin: 0 auto;
}

.abouthomewrapper {
  display: flex;
  justify-content: space-between;
}

.abouthomemain1-container {
  width: 100%;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 30px;
  padding-bottom: 50px;
  border-top: 1px solid black;
}

.abouthomemain-container {
  width: 100%;
  display: flex;
  padding: 70px 50px;
}

.abouthomeimage {
  text-align: center;
  position: relative;
}

.abouthometext {
  width: 48%;
  float: left;
  padding-top: 4px;
  padding-left: 30px;
  margin-top: 30px;
  margin-left: 50px;
  padding-left: 50px;
}

.abouthomeimagebox {
  position: relative;
  cursor: pointer;
}

.abouthomeimagebox button {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #000000;
  width: 220px;
  height: 166px;
  padding: 10px;
  border: 1px solid transparent;
  background: #7cf7e5;
  border-radius: 10px;
  position: absolute;
  bottom: -35px;
  right: -60px;
  cursor: pointer;
}

.abouthomeimagebox button img {
  width: 36px;
  height: 36px;
}

.abouthomeimagebox button p {
  /* Lorem Ipsum Birmingham */

  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  text-align: center;

  color: #000000;
}

.about-wrapper {
  display: flex;
}

.abouhome_heading {
  /* About Vacay Drop */

  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;

  color: #000000;
}

.abouthometext p {
  padding-top: 10px;
  margin-left: -1px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
}

.abouthometext a {
  width: 140px;
  height: 44px;
  margin-top: 30px;
  margin-left: -1px;
  border: 1px solid #7cf7e5;
  background: #7cf7e5;
  border-radius: 10px;
  font-size: 18px;
  text-decoration: none;
  color: #000;
  display: block;
  text-align: center;
  line-height: 42px;
}

.nearbyproperty_maincontainer {
  max-width: 1100px;
  margin: 0 auto;
}

.properties_conatiner {
  width: 100%;

  margin: 0 auto;
  max-width: 1300px;
  height: auto;
  clear: both;
}

.property_heading {
  padding-top: 30px;
  margin-top: 30px;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  color: #000000;
  margin-bottom: 25px;
}

.property_heading1 {
  padding-top: 30px;
  margin-top: 30px;

  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  text-align: center;

  color: #fff;
}
.property_headingnotfound {
  padding-top: 30px;
  margin-top: 30px;

  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  width: 100%;
  color: #fff;
}

.properties_imagebox {
  width: 100%;
  float: left;
  height: 450px;
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.properties_imagebox .arrow-previous {
  width: 3.66%;
  float: left;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.properties_imagebox .arrow-previous .previous_arrow,
.properties_imagebox .arrow-previous .next_arrow {
  border: none !important;
  border: 1px solid #eee !important;
  cursor: pointer !important;
  border-radius: 35%;
}

.slick-slider.slick-initialized {
  max-width: 100%;
  width: 100%;
}

.slick-slider.slick-initialized .item {
  padding: 0 30px;
}

.slick-next::before,
.slick-prev::before {
  font-size: 29px !important;
}

.slick-prev,
.slick-next {
  width: 25px !important;
  height: 25px !important;
  opacity: 0;
}

.properties_imagebox .arrow-previous .next_arrow:hover,
.properties_imagebox .arrow-previous .previous_arrow:hover {
  background-color: #7cf7e5;
  border: 1px solid #7cf7e5;
  border-radius: 35%;
  cursor: pointer;
}

.properties_imagebox p {
  /* position: absolute; */
  /* width: 263px; */
  height: 32px;
  bottom: 56px;
  /* left: 13%; */

  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #000000;
}

.outerbox_image {
  width: 100%;
  margin: 0 0 80px;
  float: left;
  height: 394px;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  border: 1px solid #666666;
}

.outerbox_image1 {
  width: 26.35%;
  float: left;
  height: 394px;
  margin-left: 1.46%;
  margin-right: 1.46%;
  border-radius: 10px;
  height: auto;
  padding: 10px;
  position: relative;
  border: 1px solid #666666;
}

.outerbox_image2 {
  width: 26.35%;
  float: left;
  height: 394px;
  margin-left: 1.46%;
  margin-right: 1.46%;
  border-radius: 10px;
  height: auto;
  padding: 10px;
  position: relative;
  border: 1px solid #666666;
}

.property_image {
  width: 100%;
  float: left;
  height: 280px;
}

.property_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property_image button {
  /* Join Now */
  cursor: pointer;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  /* identical to box height */
  text-align: center;

  color: #000000;

  position: absolute;
  width: 150px;
  height: 45px;
  left: 70px;
  bottom: -22px;
  padding: 10px;
  border: 1px solid #7cf7e5;
  background: #7cf7e5;
  border-radius: 10px;
  transition: all 0.3s ease;
  transform: scale(1);
}

.property_image button:hover {
  transform: scale(1.2);
}

.featured-container {
  width: 100%;
  float: left;
  /* height: 520px; */
  /* background-image: url("../images/Rectangle\ 13.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
}

.featuredimage-container {
  width: 100%;
  float: left;
  /* height: 520px; */
  background-image: url("../images/Rectangle\ 13.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.featuredmain-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.featuredproperty_conatiner {
  width: 100%;
  float: left;
  /* height:935px; */
}

.featuredproperty1_conatiner {
  width: 100%;
  float: left;
  height: auto;

  background-image: url("../images/Rectangle\ 13.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.propertydetails-conatiner {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid black;
  max-width: 1366px;
  padding-bottom: 20px;
}

.productsdeatils_imagebox {
  width: 100%;
  float: left;

  padding-bottom: 30px;
}

.productsdeatils_imagebox .enquirydiv {
  width: 100%;
  float: left;

  text-align: right;
  padding-right: 35px;
}

.propertydetails-conatiner button {
  width: 110px;
  background-color: #7cf7e5;
  border-radius: 10px;
  height: 40px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  border: 1px solid transparent;
  margin-top: -4px;
  color: #000000;
  cursor: pointer;
  margin-left: 30px;
}

.propertydetailsheading {
  width: 100%;
  float: left;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 11px;
  color: #333;
  font-weight: 400;
  font-size: 25px;
}

.productsdeatils_imagebox .main_image {
  width: 95%;
  /* float: left; */
  margin: 0 auto;
  background-color: #fff;
  margin-top: 10px;
}

.productsdeatils_imagebox .facilities-box {
  width: 100%;
  float: left;
  padding: 50px;
}

.contact-container {
  width: 100%;
  float: left;
  background-image: url(../images/Rectangle\ 13.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mainconatct-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 0;
}

.card-wrapper img {
  width: 100%;
  display: block;
}

.img-display {
  overflow: hidden;
}

.img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}

.img-showcase img {
  min-width: 100%;
}

.img-select {
  display: flex;
}

.img-item {
  margin: 0.3rem;
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3) {
  margin-right: 0;
}

.img-item:hover {
  opacity: 0.8;
}

.product-content {
  padding: 2rem 1rem;
}

.product-title {
  text-transform: capitalize;
  font-weight: 400;
  position: relative;
  color: #666666;
  margin-left: 10px;
}

.product-link {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  background: #256eff;
  color: #fff;
  padding: 0 0.3rem;
  transition: all 0.5s ease;
}

.product-link:hover {
  opacity: 0.9;
}

.product-rating {
  color: #ffc107;
}

.product-rating span {
  font-weight: 600;
  color: #252525;
}

.product-price {
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
}

.product-price span {
  font-weight: 400;
}

.last-price span {
  color: #f64749;
  text-decoration: line-through;
}

.product-detail h2 {
  text-transform: capitalize;
  color: #12263a;
  padding-bottom: 0.6rem;
}

.product-detail button {
  width: 170px;
  background-color: #7cf7e5;
  border-radius: 10px;
  height: 40px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  border: 1px solid #7cf7e5;
  margin-top: -4px;
  color: #000000;
  cursor: pointer;
  margin-top: 20px;
}

.product-detail p {
  font-size: 0.9rem;
  padding: 0.3rem;
  opacity: 0.8;
}

.purchase-info {
  margin: 1.5rem 0;
}

.purchase-info .btn {
  cursor: pointer;
  color: #fff;
}

.card-wrapper {
  display: flex;

  justify-content: space-between;
  width: 100%;
  float: left;

  padding-left: 30px;
}

.card-wrapper .box {
  width: calc(50% - 10px);
  height: 100px;
  border-radius: 10px;
  margin-left: 20px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
  text-transform: capitalize;

  font-weight: 400;
  font-size: 17px;

  color: #666666;
}

.product-imgs {
  display: flex;
  flex-direction: column;
}

.product-content {
  padding-top: 0;
}

.left,
.right {
  width: 50%;
  padding: 30px;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.flex1 {
  display: flex;
}

h4 {
  color: #666666;
}

.card-wrapper p {
  margin: 10px;
  line-height: 25px;
}

h5 {
  font-size: 15px;
}

.add span,
.facility-item span {
  width: 25px;
  height: 25px;

  border-radius: 50%;
  margin: 20px 10px 20px 0;
}
label {
  width: 25px;
  height: 25px;

  border-radius: 50%;
  margin: 20px 10px 10px 0;
}

.facilities-list {
  list-style-type: none;
  padding: 0;
}

.facility-item {
  margin-bottom: 10px;
}

.facility-icon {
  margin-right: 10px;
}

.facility-title {
  color: #666666;
}

.featuredproperty_imagebox {
  width: 100%;
  margin: 20px auto;
  max-width: 1300px;

  padding-bottom: 20px;
}

.featuredproperty1_imagebox {
  width: 100%;
  float: left;
  height: auto;
  margin-bottom: 100px;
}

/* .rowfeaturedproperty {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  padding-top: 40px;
} */
.rowfeaturedproperty {
  display: flex;
  width: 100%;
  padding-top: 40px;
  margin-right: 100px;

  flex-wrap: wrap;
}

.featuredbutton {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 40px;
  padding-bottom: 40px;

  text-align: center;
}

.featuredbutton button {
  width: 263px;
  height: 58px;

  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: center;

  color: #000000;
  cursor: pointer;
  border: 1px solid #7cf7e5;

  background: #7cf7e5;
  border-radius: 10px;
}

.outerboxfeatured_image {
  width: 19.83%;
  float: left;
  height: auto;
  margin-left: 22px;
  background-color: white;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 50px;
  position: relative;
  border: 1px solid #666666;
}

.rowfeaturedproperty .outerboxfeatured_image:nth-child(4n + 1) {
  margin-left: 7.32%;
}

.rowfeaturedproperty .outerboxfeatured_image:nth-child(4n) {
  margin-right: 7.32%;
}

.propertyfeatured_image {
  width: 99%;
  float: left;
  height: 209px;
}

.propertyfeatured_image img {
  width: 100%;
  float: left;
  height: 209px;
  object-fit: cover;
}

.propertyfeatured_image button {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  /* identical to box height */
  text-align: center;

  color: #000000;

  position: absolute;
  width: 140px;
  height: 45px;
  left: 22%;
  bottom: -22px;
  padding: 10px;
  border: 1px solid #7cf7e5;
  background: #7cf7e5;
  border-radius: 10px;
  transition: all 0.3s ease;
  transform: scale(1);
}

.propertyfeatured_image button:hover {
  transform: scale(1.2);
}

button#getotp2 span {
  transition: all 0.3s ease;
  transform: scale(1);
}

button#getotp2 span:hover {
  color: #7cf7e5;
  transform: scale(1.2);
}

.propertyfeatured_image button a {
  color: #000000;
  text-decoration: none;
}

.outerboxfeatured_image p {
  margin-top: 10px;
  margin-bottom: 45px;
  text-align: center;

  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  float: left;
  width: 100%;
  color: #000000;
}

.footer-container {
  width: 100%;
  float: left;
  /* height:237px; */

  padding-bottom: 0px;
  background-color: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.container {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.product-detail ul {
  list-style: none;
  display: flex;
}

.footer-col1 {
  width: 23%;
  padding: 25px 0;

  margin-left: 39px;
  padding-left: 30px;
}

.footer-col4 {
  width: 23%;
  padding-top: 35px;
  margin-left: 25px;
}

.footer-col1 p {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;

  color: #666666;
}

.footer-col {
  width: 23%;
  padding-top: 15px;
  padding-left: 65px;
}

.footer-col4 h4 {
  text-transform: capitalize;
  margin-bottom: 35px;
  position: relative;
  font-weight: 600;
  margin-left: 20px;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}

.footer-col ul {
  list-style: none;
}

.footer-col h4 {
  padding: 20px 0;
  text-transform: capitalize;
  margin-bottom: 0px;

  position: relative;

  font-weight: 600;
  font-size: 20px;
  line-height: 30px;

  color: #000000;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: all 0.3s ease;
  /* Home About Us Properties */

  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  /* or 214% */

  color: #666666;
}

.footer-col ul li a:hover {
  color: #7cf7e5;
}

.footer-col4 .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  /* margin:0 10px 10px 0; */
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-left: 15px;

  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
/* @media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
} */

.rightfooter {
  width: 100%;
  float: left;
  background-color: #7cf7e5;
}

.rightfooter .right-h1 {
  /* width: 50%;
  float: left; */

  display: inline-block;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  /* padding-left: 40px;
  margin-right: 40px; */

  color: #000000;
}

.rightfooter_container {
  width: 100%;
  margin: 0 auto;
  max-width: 1366px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.rightfooter .left-h1 {
  width: 50%;
  float: left;
  text-align: right;

  /* display: inline-block; */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  padding-right: 60px;

  color: #000000;
}
#payment-form label {
  display: block;
  width: 100%;
}
/* #payment-form  input{
  width: 100%;
  padding: 5px;
  border: none;
} */
.payment-containerenquiry {
  z-index: 999;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px;
  margin: 100px auto;
  height: auto;
}

.rightfooter h2 {
  width: 50%;
  padding-top: 0px;
  float: right;
  /* display: inline-block; */
  text-align: right;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;

  color: #000000;
}

.signup-container {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("../images/Rectangle\ 13.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.Toastify {
  position: absolute;
  bottom: 50px;
  right: 20px;
}

.Toastify__toast-container {
  position: fixed;
  top: 0;
  left: 35%;
  transform: translateX(-50%);
  width: 100%;
}

.custom-modal {
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  height: auto;
}

.custom-modal1 {
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  height: auto;
}

/* .login {
  height: 60vh;
} */

.modal-header {
  padding: 10px 20px;
  border-bottom: 1px solid #666666;
  position: relative;
}

.modal-header h1 {
  color: #7cf7e5;
  text-align: center;
}
.modal-header h3 {
  color: #7cf7e5;
  text-align: center;
}

.modal-header button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: #7cf7e5;
  color: #666666;
  border: 1px solid #7cf7e5;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header button span {
  font-size: 20px;
}

.modal-title {
  margin: 0;
}

.modal-body {
  padding: 20px;
}

.modal-body .fromvacaysl {
  width: 90%;

  margin: 0 auto;
}

.fromvacaysl .form-group {
  margin-bottom: 15px;
}

.half {
  width: 48%;
}
.input-container {
  width: 100%;

  float: left;
  border-bottom: 1px solid #666666;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  margin-bottom: 5px;
}
.input-container input {
  width: 90% !important;
  border: none !important;
  float: left;
}
.error-mobile {
  width: 100%;
  float: left;

  margin-bottom: 5px;
}
.prefix {
  /* position: absolute; */
  width: 10%;
  float: left;
  padding: 8px;
  border: 1px solid black;
  border-radius: 5px;
  /* left: 10px;
  top: 50%;
  transform: translateY(-50%); */
  pointer-events: none; /* This ensures the prefix is not selectable */
}

/* Adjust the styles according to your design */

.paymentflex {
  display: flex;
  flex-wrap: wrap;
}
.paymentflex .half:nth-child(2n) {
  margin-left: 15px;
}

.payformd {
  border-bottom: 1px solid #666666;
  border-radius: 5px;
  padding-top: 10px;
}
.error-active {
  border-bottom: 1px solid red;
}
.StripeElement--focus {
  border-bottom: 1px solid #666666;
}

.modal-body .fromvacaysl .form-group:last-child {
  margin-bottom: 0;
}

.modal-body .fromvacaysl .form-group label {
  font-weight: 500;
}

.modal-body .fromvacaysl .form-group input {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #666666;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
}
.modal-body .fromvacaysl .form-group select {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #666666;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
}

.modal-body .fromvacaysl .form-group .error {
  width: 100%;

  border: none;

  color: red;
  border-radius: 5px;
}

.modal-body .fromvacaysl .form-group .error2,
.modal-body .fromvacaysl .form-group1 .error2 {
  width: 100%;
  border-bottom: 1px solid #666666;
  border-radius: 5px;
}

.modal-containerenquiry {
  z-index: 999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px;
  /* margin: 0 auto; */
  height: auto;
}

.modal-containerbooked {
  z-index: 999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 90%;

  height: auto;
}

.modal-containerallimages {
  z-index: 999;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 80%;

  overflow-y: scroll;
  margin: 0 auto;
  height: 90vh;
}

.modal-containerallimages::-webkit-scrollbar {
  width: 12px;
}

.modal-containerallimages::-webkit-scrollbar-thumb {
  background-color: #7cf7e5;
  border-radius: 10px;
}

.error-message {
  color: red;
  font-size: 14px;
}

.modal-body .fromvacaysl h5 {
  text-align: center;
  color: black;
  padding-top: 10px;
}

.modal-body .fromvacaysl .otp-input-container,.modal-body .fromvacaysl .otpsignup-input-container {
  /* background-color: #24262b; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0px 10px 0px;
}

.modal-body .fromvacaysl .otp-input-container input,.modal-body .fromvacaysl .otpsignup-input-container input {
  width: 15%;
  height: 55.52px;
  border-radius: 50%;
  margin-left: 10px;
  border: 1px solid #7cf7e5;
  text-align: center;
  color: #666666;
}

.modal-body .fromvacaysl h5 a {
  color: #7cf7e5;
  margin-left: 5px;
  text-decoration: none;
}

.modal-body .fromvacaysl button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #7cf7e5;
  color: #000000;
  margin-top: 10px;
  cursor: pointer;
  font-size: 14px;
}

.modal-body .fromvacaysl .payment-button {
  width: 45%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin: 10px;
  background-color: #7cf7e5;
  color: #000000;
  margin-top: 10px;
  cursor: pointer;
  font-size: 14px;
}
.modal-body .fromvacaysl .payment-cancel {
  width: 45%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  border: 1px solid black;
  background-color: white;
  color: #000000;
  margin: 10px;
  cursor: pointer;
  font-size: 14px;
}

.modal-body .fromvacaysl .payment-cancel a {
  text-decoration: none;
  color: #000000;
}

.close {
  background: none;
  border: none;
  cursor: pointer;
}

.about-contianer {
  width: 100%;
  float: left;
}

.privacy-contianer {
  width: 100%;
  float: left;
  background-image: url("../images/Rectangle\ 13.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.privacymain-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1366px;
  padding: 80px 80px;
  border-top: 1px solid black;
}

.terms-contianer {
  width: 100%;
  float: left;
  background-image: url("../images/Rectangle\ 13.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.termsmain-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1366px;
  border-top: 1px solid black;
  padding: 80px 80px;
}
.t-h2 {
  color: #fff !important;
  text-align: center;
  font-size: 24px;
}
.how_it_works {
  width: 100%;
  margin: 0 auto;
  max-width: 1366px;

  padding: 80px 80px;
}
.how_it_works ol {
  padding: 7px;
  color: #fff;
}

.privacymain-container h2,
.termsmain-container h2 {
  /* font-size: 16px; */
  color: #7cf7e5;
  margin-bottom: 10px;
}
.privacymain-container h3 {
  color: #7cf7e5;
}

.termsmain-container p {
  color: #ffff;
  text-align: left;
  /* border: 1px solid red; */
}

.termsmaincontact {
  width: 100%;
  margin: 0 auto;
  padding: 39px 0;
  max-width: 100%;
  float: none;
  text-align: left;
}






.termsmaincontact ol {
  width: 80%;
  margin: 0 auto;
  padding: 32px;
  font-size: 17px;
}

.propertydeatilsmain-container {
  width: 100%;
  float: left;
  /* background-image: url("../images/Rectangle\ 13.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
}

.productsdeatils_imagebox .aboutdetails-box {
  width: 100%;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
  padding-left: 30px;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #666666;
}

.productsdeatils_imagebox .aboutdetails-box h2,
.productsdeatils_imagebox .aboutdetails-box h1 {
  text-transform: capitalize;
  line-height: 34px;
  position: relative;
  font-weight: 600;
  font-size: 26px;
  padding-bottom: 5px;
  color: #000000;
}

.productsdeatils_imagebox .highlight {
  margin-bottom: 50px;
  width: 100%;
}

.productsdeatils_imagebox .highlight2 {
  margin: 40px 0;
}

.productsdeatils_imagebox .highlight .decrsiptionp {
  font-size: 17px;
}

.productsdeatils_imagebox .highlight h3 {
  color: #303030;
  font-weight: 600;
  line-height: 1.25em;
  font-size: 20px;
}

.productsdeatils_imagebox .highlight .icon {
  align-items: center;
  border: 2px solid #006994;
  border-radius: 50%;
  display: flex;
  height: 46px;
  justify-content: center;
  margin-right: 15px;
  width: 46px;
  color: #006994;
}

.productsdeatils_imagebox .highlight .icon svg {
  fill: #006994;
  width: 21px;
}

.productsdeatils_imagebox .highlight h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  margin: 5px 0 3px;
}

.productsdeatils_imagebox .highlight p,
.productsdeatils_imagebox p {
  color: #4d5471;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  width: 85%;
}

.productsdeatils_imagebox p.decrsiptionp {
  padding-right: 30px;
  text-align: justify;
  width: 100%;
}

.productsdeatils_imagebox .highlight.multyside li {
  float: left;
  width: 50%;
  margin: 10px 0;
}

.productsdeatils_imagebox .highlight.multyside li {
  float: left;
  width: 50%;
}

.productsdeatils_imagebox .highlight .content {
  width: calc(100% - 61px);
}

.productsdeatils_imagebox .aboutdetails-box p {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.productsdeatils_imagebox .facility-boxes {
  width: 100%;
  float: left;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.productsdeatils_imagebox .facility-boxes ul {
  display: flex;
  padding-left: 20px;
  list-style: none;
}

.card-wrapper .box svg {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.card-wrapper .box .label {
  font-size: 16px;
  font-weight: bold;
}

.Imagespropertydetails-box {
  width: 100%;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
}

.productsdeatils_imagebox .buttonmorediv {
  width: 100%;
  float: left;
  text-align: right;
}

.Imagespropertydetails-box .biigerimages {
  width: 50%;
  float: left;
  max-height: 422px;
  cursor: pointer;
}

.Imagespropertydetails-box .smallerimages {
  width: 50%;
  float: left;
  height: 422.3px;
}

.Imagespropertydetails-box .smallerimages .boxessmallerimage {
  width: 50%;
  float: left;
  height: 50%;

  text-align: center;
  position: relative;
}

.Imagespropertydetails-box .smallerimages .boxessmallerimage span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  color: #fff;
  font-size: 25px;
  transform: translate3d(-50%, -50%, 0);
  cursor: pointer;
}

.modal-body .boxessmallerimage {
  width: 50%;
  float: left;
}

.modal-body .boxessmallerimage img {
  width: 90%;
  margin: 20px;
}

.Imagespropertydetails-box .smallerimages .boxessmallerimage img {
  width: 98%;
  height: 200px;
  border-radius: 10px;
}

.Imagespropertydetails-box .biigerimages img {
  width: 99%;
  border-radius: 10px;
  height: 411px;
}

.profile-container {
  width: 100%;
  float: left;
}

.aboutcomponent {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  border-top: 1px solid black;
}

.profileuserbox {
  width: 100%;
  float: left;

  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid black;
}

.profilemaincontainer {
  width: 100%;
  margin: 0 auto;

  max-width: 1366px;
}

.profileheading-box {
  width: 100%;
  float: left;

  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  color: #666666;
  text-align: center;
}

.profileuserimagebox {
  width: 100%;
  float: left;
  margin-top: 20px;
  text-align: center;
}

.profileuserimagebox img {
  border: 1px solid #7cf7e5;
  border-radius: 50%;
}

.profileuserdeatilsbox {
  width: 80%;
  margin: 0 auto;
}

.profiledetailsboxhalf {
  width: 48%;
  float: left;
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 10px;
  padding-left: 5px;
}

.profiledetailsboxhalf label {
  width: 100%;
  float: left;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 10px;
  padding-left: 10px;
}

.profiledetailsboxhalf input {
  display: block;
  width: 100%;
  height: 45px !important;
  padding-left: 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #7cf7e5;
  border-radius: 2.25rem;
  border-right: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.profilebutonupdatebox {
  width: 100%;
  float: left;
  margin-top: 20px;
  margin-bottom: 100px;
  text-align: center;
}

.profiledteailsupdatebtn {
  width: 150px;
  font-size: 16px;
  height: 45px;
  border-radius: 35px;
  font-weight: 500;
  color: #fff;
  background-color: #7cf7e5;
  font-family: Poppins, sans-serif !important;
  border: 1px solid #7cf7e5;
  display: inline-block;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 20px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.photo img {
  width: 200px;
  display: block;
}

.date-picker {
  cursor: pointer;
}

.modal-body .fromvacaysl .form-group1 textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #666666;
  border-radius: 5px;
  color: #000000;
  font-family: "Poppins", sans-serif;
}

.modal-body .fromvacaysl .form-group1 .error {
  width: 100%;
  border: none;
  color: red;
  border-radius: 5px;
}

.header h1 {
  margin-top: 60px;
  margin-left: 540px;
}

.saved-propertycontainer {
  width: 100%;
  float: left;
}


.aboutdetails-box2 a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #000000;
  width: 140px;
  height: 40px;
  padding: 10px;
  border: 1px solid #7cf7e5;
  background: #7cf7e5;
  border-radius: 10px;
  text-decoration: none;
  display: block;
  margin-top: 10px;
  float: right;
  position: absolute;
  right: 30px;
  bottom: 21px;
}

.aboutdetails-box2 button {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #000000;
  width: 140px;
  height: 40px;
  padding: 10px;
  border: 1px solid #7cf7e5;
  background: #7cf7e5;
  border-radius: 10px;
  text-decoration: none;
  display: block;
  margin-top: 10px;
  float: right;
  position: absolute;
  right: 30px;
  bottom: 00px;
  cursor: pointer;
}

.photo-text {
  display: flex;
  align-items: center;
  margin: 30px 0;
  border: 1px solid #7cf7e5;
  padding: 10px;
  border-radius: 10px;
  transition: 0.5s;
  position: relative;
}

.photo-text:hover {
  background: #7cf7e51f;
}

.photo-text .photo {
  width: 200px;
}

.photo-text .aboutdetails-box2 {
  width: calc(100% - 250px);
}

.photo-text .aboutdetails-box2 h2 {
  font-weight: 600;
  font-size: 20px;
}

.photo-text .aboutdetails-box2 h3 {
  font-weight: 500;
  font-size: 16px;
  padding: 3px 0;
}

.photo-text .aboutdetails-box2 p {
  font-size: 14px;
}

.photo-text2 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.aboutdetails-box2 {
  clear: both;
  text-align: center;
  padding-top: 20px;
}
.bookedtext {
  margin-bottom: 20px !important;
}
.aboutdetails-box3 {
  margin-left: 50px;
}
.booked {
  width: 90%;

  margin: 0 auto;
  margin-bottom: 20px;
}
.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1366px;
}

.slider-button button {
  background: transparent;
  border: none;
  cursor: pointer;
}

.icon {
  font-size: 24px;
}

@media (min-width: 900px) and (max-width: 1200px) {
  .logobox {
    width: 110px;
    height: 110px;
    background-color: #7cf7e5;
    position: absolute;
    left: 27px;
    top: 18px;
    z-index: 999;
  }

  .menu li {
    padding-left: 20px;
    line-height: 30px;
    display: flex;
    align-items: center;
  }

  .menu {
    display: flex;
    margin-right: 10px;
  }
}

@media (min-width: 320px) and(max-width: 520px) {
  .featuredbutton button {
    width: 240px;
    height: 44px;
  }


}
@media (max-width: 900px) {
  .menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100;
    background-color: var(--color1);
    transition: all 0.2s ease-in-out;
  }

  .menu li {
    margin-top: 20px;
  }

  .menu li a {
    padding: 6px;
  }

  .open-menu,
  .close-menu {
    display: block;
  }

  #check:checked ~ .menu {
    right: 0;
    margin-right: 0;
    padding-bottom: 35px;
  }

  .signupotpclose{
    right:2px !important;
  }

  .logo img {
    width: 88px;
  }

  .logobox {
    width: 88px;
    height: 88px;

    position: absolute;
    left: 20px;
  }
}

@media (max-width: 820px) {
  .home-container {
    height: 400px;
    position: relative;
  }

  .colorlayer {
    height: 400px;
  }

  /* .home_mainheading {
    left: 46px;
    top: 129px;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
    width:70%;
    margin:0 auto;
  } */

  /* .home_mainheading h1 {
    font-weight: 500;
    font-size: 32px;
  } */

  /* .home-searchbox {
    width: 343px;
    min-width: 0px;
    border-radius: 20px;
    padding-top: 10px;
    padding-bottom: 70px;
    padding-left: 30px;
    border: 1px solid #ffffff;
  } */
  /* 
  .home_input-box input {
    width: 284px;
    float: left;
  } */

  /* .home-searchbox button {
    width: 284px;
    margin-top: 16px;
    margin-left: 0px;
  } */

  .footer-container {
    padding-bottom: 45px;
  }

  .footer-col1 {
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding-left: 0;
  }

  .footer-col1 p {
    margin-left: 0px;
    padding: 0px 39px 0px 37px;
  }

  /* .footer-col {
    width: 100%;
    text-align: center;
    margin-right: 59px;
  } */

  /* .footer-col4 {
    width: 100%;
    text-align: center;
    padding-top: 15px;
    margin-left: -60px;
  } */

  .footer-col h4 {
    margin-bottom: 8px;
  }

  /* .footer-col4 h4 {
    margin-bottom: 16px;
    margin-left: 135px;
  } */

  .rightfooter_container {
    display: block;
  }

  .rightfooter .right-h1 {
    width: 100%;
    margin-top: 16px;
    text-align: center;
  }

  /* .rightfooter .left-h1 {
    width: 100%;
    margin: 16px 0px 10px 0px;
  } */

  .outerboxfeatured_image {
    width: 91.62%;
    margin-bottom: 57px;
    margin-left: 4.82%;
  }

  .rowfeaturedproperty .outerboxfeatured_image:nth-child(1) {
    margin-left: 4.82%;
    margin-bottom: 57px;
  }

  .outerboxfeatured_image p {
    margin-top: 20px;
  }

  .featuredbutton button {
    width: 322px;
    height: 44px;
  }
}

.header2 {
  border-top: 1px solid black;
  padding: 80px 106px 30px;
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .home-searchbox3 {
    min-width: 768px;
    height: 180px;
  }
  .abouthomeimagebox button p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) and (min-width: 550px) {
  .home-searchbox3 {
    min-width: 600px;
    height: 524px;
  }
  .site-workheading h3 {
    margin-top: 20px;
    padding-top: 20px;
  }
  .abouthomeimagebox button p {
    font-size: 15px;
  }

}
@media screen and (max-width: 376px) and (min-width: 300px) {
  .home-searchbox3 {
    min-width: 280px;
    height: 180px;
  }
  .abouthomeimagebox button p {
    font-size: 15px;
  }
  .site-workheading h3 {
    margin-top: 20px;
    padding-top: 20px;
  }
  .site-workiconboximg {
    margin-left: -20px;
  }
}
@media screen and (max-width: 450px) and (min-width: 376px) {
  .home-searchbox3 {
    min-width: 400px;
    height: 180px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 450px) and (min-width: 300px) {
  .prefix {
    
    width: 20%;

    }
    .input-container input {
      width: 80% !important;
  
    }
  .faqans h4 {
    padding: 10px !important;
      }
      
      .faqanswer {
        padding: 10px !important;
      }
  .productsdeatils_imagebox .enquirydiv {
    text-align: center;
  }
  .t-h2 {
    font-size: 16px;
  }
  .slider-button {
    padding: 0px;
  }
  .home-searchbox2 {
    max-width: 280px;
    min-width: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .site-workheading {
    text-align: center;
    font-size: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .productsdeatils_imagebox .aboutdetails-box,
  .card-wrapper {
    padding: 0 10px;
  }
  .home_mainheading {
    padding-top: 10px;
  }

  .site-workiconbox {
    margin-left: 2px;
    padding: 0px;
  }
  .home-searchbox {
    max-width: 280px;
    min-width: 0px;
    height: 180px;
  }
  .content_wrapper {
    top: 50%;
  }
  .productsdeatils_imagebox .aboutdetails-box,
  .card-wrapper {
    padding: 10 10px;
  }
  .home_input-box input {
    width: 219px;
    float: left;
  }
  .home-searchbox button {
    width: 219px;
    margin-top: 16px;
    margin-left: 0px;
    bottom: -52px;
    right: -30px;
  }
  .home-searchbox2 button {
    margin-left: 6px;
  }
  .abouthomeimagebox button {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    color: #000000;
    width: 130px;
    height: 100px;
    padding: 10px;
    border: 1px solid transparent;
    background: #7cf7e5;
    border-radius: 10px;
    position: absolute;
    bottom: -30px;
    right: -50px;
  }

  .h1-dash,
  .home_input-box {
    margin-left: -20px;
  }
  .propertyfeatured_image button {
    left: 29%;
  }
  .properties_imagebox p {
    left: -3%;
  }
  .rightfooter .left-h1 {
    width: 100%;
    margin: 16px 0px 10px 0px;
    /* padding-left: 96px;
    text-align: left; */
  }

  .home_mainheading h1 {
    font-weight: 500;
    font-size: 22px;
    /* word-break: normal;
      white-space: nowrap;
      overflow: visible;  */
  }
  .header2 {
    padding: 0px;
  }
  .header2 h1 {
    margin-top: 63px;
    text-align: center;
  }
  .footer-col {
    width: 100%;
    float: left;
    text-align: center;
    margin-right: 59px;
  }
  .social-links {
    margin-left: 106px;
  }
  .footer-col4 {
    width: 100%;
    text-align: center;
    padding-top: 15px;
    margin-left: -60px;
  }
  .footer-col4 h4 {
    margin-bottom: 16px;
    margin-left: 135px;
  }
  .social-links {
    margin-left: 106px;
  }
  .aboutdetails-box2 button {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #000000;
    width: 140px;
    height: 40px;
    padding: 10px;
    border: 1px solid #7cf7e5;
    background: #7cf7e5;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    float: right;
    position: absolute;
    right: 0px;
    bottom: 45px;
    cursor: pointer;
  }
  .site-workiconboxtext h4 {
    font-size: 10px;
  }
  .abouthomeimagebox button p {
    font-size: 15px;
  }
}
@media screen and (max-width: 900px) and (min-width: 451px) {
  .faqans h4 {
    padding: 10px !important;
      }
      
      .faqanswer {
        padding: 10px !important;
      }
  .abouthomeimagebox button p {
    font-size: 15px;
  }
  .home_mainheading h1 {
    font-weight: 500;
    font-size: 20px;
  }
  .productsdeatils_imagebox .aboutdetails-box,
  .card-wrapper {
    padding: 10 10px;
  }
  .aboutdetails-box2 button {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #000000;
    width: 140px;
    height: 40px;
    padding: 10px;
    border: 1px solid #7cf7e5;
    background: #7cf7e5;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    float: right;
    position: absolute;
    right: 0px;
    bottom: -45px;
    cursor: pointer;
  }
  .abouthomeimagebox button {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    color: #000000;
    width: 130px;
    height: 100px;
    padding: 10px;
    border: 1px solid transparent;
    background: #7cf7e5;
    border-radius: 10px;
    position: absolute;
    bottom: -30px;
    right: -40px;
  }
  .home-searchbox2 {
    max-width: 450px;
    min-width: 0px;
  }
  .content_wrapper {
    top: 50%;
  }
  .home-searchbox {
    max-width: 450px;
    min-width: 0px;
    height: 180px;
  }
  /* .home-searchbox3{
    max-width: 500px;
    min-width: 0px;
    height:180px;
  } */
  .site-workheading {
    font-size: 18px;
  }
  .home_input-box input {
    width: 100%;
    float: left;
  }
  .home-searchbox2 button {
    margin-left: 6px;
  }

  .home-searchbox button {
    width: 269px;
    margin-top: 16px;
    margin-left: 0px;
    bottom: -60px;
  }
  .nearbyproperty_maincontainer {
    max-width: 710px;
    margin: 0 auto;
  }
  /* .properties_imagebox p {
    left: 5%;
  } */
  .property_image button {
    left: 73px;
  }
  .propertyfeatured_image button {
    left: 40%;
  }
  .rightfooter .left-h1 {
    width: 100%;
    margin: 16px 0px 10px 0px;
    text-align: center;
    padding-left: 64px;
  }

  .rowfeaturedproperty .outerboxfeatured_image:nth-child(4n) {
    margin-right: 0;
  }
  .rowfeaturedproperty .outerboxfeatured_image:nth-child(4n + 1) {
    margin-left: 4.32%;
  }
  .footer-col {
    width: 30%;
    float: left;
    text-align: center;
    /* margin-right: 59px; */
  }
  .footer-col4 {
    width: 30%;
    text-align: center;
    /* padding-top: 15px;
    margin-left: -60px; */
  }
  .footer-col4 h4 {
    margin-left: 0px;
  }
  .social-links {
    margin-left: 0px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 901px) {
  .nearbyproperty_maincontainer {
    max-width: 890px;
    margin: 0 auto;
  }
  .rowfeaturedproperty .outerboxfeatured_image:nth-child(4n) {
    margin-right: 0;
  }
  .abouthomeimagebox button p {
    font-size: 18px;
  }
  .property_image button {
    left: 42px;
  }
  .properties_imagebox p {
    left: -5%;
  }
  .propertyfeatured_image button {
    left: 16%;
  }
}
/* responsive css  */
@media screen and (max-width: 900px) and (min-width: 300px) {
  .featuredbutton button {
    width: 240px;
    height: 44px;
  }
  /* .home_mainheading {
    left: 46px;
    top: 129px;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
 
    margin:0 auto;
  } */
  h1.abouthome_heading {
    font-size: 25px;
  }

  .abouthometext p {
    text-align: justify;
    padding: 2px;
  }

  .abouthomeimagebox img {
    /* width: 232%; */
    height: 332px;
  }

  .header h1 {
    margin-top: 60px !important;
    margin-left: 50px !important;
  }

  .photo img {
    margin-top: 0px !important;
    width: 100% !important;
    border-radius: 10px;
  }

  .photo-text .photo,
  .photo-text .aboutdetails-box2 {
    width: 100%;
  }

  .photo-text .aboutdetails-box2 {
    margin-left: 5px;
    margin-top: 10px;
  }

  .propertydetailsheading {
    padding-top: 80px;
  }

  /* .productsdeatils_imagebox .aboutdetails-box,
  .card-wrapper {
    padding: 10 10px;
  } */

  .Imagespropertydetails-box .smallerimages .boxessmallerimage img {
    display: block;
    width: 99%;
  }

  /* .propertydetails-conatiner button {
    margin-left: 10px;
    
  } */

  .enquirydiv button {
    margin-top: 15px;
  }

  .aboutdetails-box2 a {
    right: 5px;
  }

  .productsdeatils_imagebox .highlight2 {
    margin: 20px 0;
  }
}

@media screen and (max-width: 650px) and (min-width: 300px) {
  .autocomplete-dropdown-container {
    position: relative;
    z-index:9999;
    width: 100% !important;

}
  .half {
    width: 100%;
  }

  .paymentflex .half:nth-child(2n) {
    margin-left: 0px;
  }
  .abouthometext {
    width: 100%;
    float: left;
    padding-top: 0;
    padding-left: 0 !important;
    margin-top: 30px;
    margin-left: 0;
    padding-left: 0px;
  }

  .privacymain-container,
  .termsmain-container,
  .how_it_works {
    padding: 80px 10px;
  }

  .privacymaincontact,
  .termsmaincontact {
    padding: 39px 8px;
  }

  .privacymaincontact p,
  .termsmaincontact p {
    text-align: justify;
  }

  .profiledetailsboxhalf {
    width: 95%;
    padding: 0;
  }

  .profileuserdeatilsbox {
    width: calc(100% - 20px);
  }

  .abouthometext button {
    width: 322px;
    border-radius: 10px;
  }

  .logobox {
    width: 88px;
    height: 88px;
    background-color: #7cf7e5;
    position: absolute;
    left: 10px;
    top: 7px;
  }

  .open-menu {
    top: 5px;
    right: 10px;
    transform: translateY(-50%);
    margin-right: 0;
  }

  .custom-modal1 {
    width: calc(100% - 20px);
  }

  .photo-text {
    display: block;
    width: 90%;
    margin: 10 auto;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .dropdown-body.open {
    padding: 0 10px;
  }

  .slick-slider.slick-initialized {
    width: 80%;
  }

  /* .properties_imagebox p {
    left: 2%;
  } */

  .slick-slider.slick-initialized .item {
    padding: 0;
  }

  .abouthomeimage {
    width: 85%;
  }

  .rowfeaturedproperty .outerboxfeatured_image:nth-child(1),
  .outerboxfeatured_image,
  .rowfeaturedproperty .outerboxfeatured_image:nth-child(4n),
  .rowfeaturedproperty .outerboxfeatured_image:nth-child(4n + 1) {
    margin-left: 15px;
    margin-right: 0;
  }

  .nearbyproperty_maincontainer {
    padding: 0 10px;
  }

  .property_image button {
    left: 50%;
    transform: translateX(-50%);
  }
  .property_image button:hover {
    /* left: 50%; */
    transform: translateX(-50%);
  }

  .Imagespropertydetails-box .biigerimages {
    width: 100%;
    float: left;
  }

  .Imagespropertydetails-box .smallerimages .boxessmallerimage {
    width: 100%;
  }
  .Imagespropertydetails-box .smallerimages .boxessmallerimage :nth-child(3),
  .Imagespropertydetails-box .smallerimages .boxessmallerimage :nth-child(4) {
    display: none;
  }

  .Imagespropertydetails-box .smallerimages {
    width: 100%;
    float: left;
    height: 200px;
  }

  /* .abouthometext p {
    padding-top: 0px;
    margin-right: 26px;
} */
  /* .abouthomeimagebox button {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #000000;
  width: 130px;
  height: 100px;
  padding: 10px;
  border: 1px solid transparent;
  background: #7cf7e5;
  border-radius: 10px;
  position: absolute;
  bottom: 566px;
  right: -212px;
} */
  /* .abouthomeimagebox button {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    color: #000000;
    width: 130px;
    height: 100px;
    padding: 10px;
    border: 1px solid transparent;
    background: #7cf7e5;
    border-radius: 10px;
    position: absolute;
    bottom: -30px;
    right: -50px;
  } */

  .abouthomemain-container {
    width: 100%;
    display: flex;
    padding: 70px 10px;
    display: block;
    clear: both;
  }

  .property_heading {
    margin-bottom: 0px;
    padding-top: 20px;
    padding: 20px 5px 0px 5px;
  }

  .featuredmain-container {
    margin: 15px 0;
  }

  .card-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    float: left;

    align-content: flex-start;
    flex-direction: column-reverse;
  }
}

.table-container {
  margin-top: 20px;
}

.property-table {
  width: 100%;
  border-collapse: collapse;
}

.property-table th,
.property-table td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.property-table th {
  background-color: #7cf7e5;
}

/* .property-table tbody tr:nth-child(even) {
  background-color: #7cf7e5;
} */

.property-table tbody tr:hover {
  background-color: #ddd;
}

.enquirydiv button {
  width: 165px;
  transition: all 0.3s ease;
  transform: scale(1);
}
.enquirydiv button:hover {
  transform: scale(1.2);
}

.question-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question-text {
  flex: 1;

  cursor: pointer;
}
.tabs {
  margin-bottom: 20px;
}
.faqans h4 {
  color: black;
  background-color: #fff;

    cursor: pointer;

    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin-top: 10px;
    padding: 20px 40px 20px 20px;
    border-radius: 12px;
}

.faqanswer {
  padding-top: 10px;
  padding-bottom: 10px;
  color: black;
  background-color: #fff;

  border-radius: 12px;
    cursor: pointer;
    padding: 10px 40px 10px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  

}

.css-tj5bde-Svg {
  display: none !important;
}
.css-1u9des2-indicatorSeparator {
  display: none;
}
.css-13cymwt-control {
  border: 1px solid #999999 !important;
}
.autocomplete-dropdown-container {
  border-bottom: honeydew;
  width: 80%;
  border-left: honeydew;
  border-right: honeydew;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  width: calc(100% - 170px);

  /* position: absolute;
  z-index: 1000; */
  border-radius: 0 0 2px 2px;
}
.autocomplete-dropdown-container span {
  color: #666666;
  padding: 5px 0px 5px 5px;
  display: inline-block;
}

.booked-container {
  display: flex;
  width: 100%;
  padding-top: 40px;
  margin-right: 100px;
  flex-wrap: wrap;
}
#getotp2 {
  display: none;
}
/* Adjust the styles according to your design */

/* .css-1nmdiq5-menu{
  border: 1px solid red !important;
  display: none !important;
} */

/* .faqmain-container {
  width: 100%;
  float: left;
  height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */
.faq-banner_section {
  background-image: url("../images/Rectangle 13.png");
  background-repeat: repeat;
  background-size: cover;
  background-position-y: 0px;
  padding: 100px 0px;
  background-color: #effffe;
}
.faqbanner_content {
  max-width: 1200px;
  margin: auto;
}

.faq-contianer{
  width:100%;
  float:left;
  background: url("../images/faqvacay.png");
    background-repeat: round;
    background-color: #effffe;
    background-size: cover;
    padding: 20px 0px;
}

.faq{

  padding: 60px;

}

.property_image button a{
  text-decoration: none;
  color:black;
}

.buttonslidernext{
  position:absolute;
  right:10px;
  top:40%;
  background: transparent;
  border: none;
  cursor: pointer;
}

.buttonsliderprevious{
  position:absolute;
  left:10px;
  top:40%;
  background: transparent;
  border: none;
  cursor: pointer;
}

.aboutdetails-box2 h2{
  cursor: pointer;
}
.aboutdetails-box2 h2:hover{
  color:#7cf7e5;
}
.signupconditions a{
  text-decoration: none;
  color:#7cf7e5;
}

.checkboxterms:hover{
  cursor: pointer;
}

@media screen and (max-width: 748px) and (min-width: 451px) {
  .home-searchbox button {
      width: 156px;
      margin-top: 16px;
      margin-left: 0px;
      bottom: -60px;
  }
  .home-searchbox3 {
        min-width: 400px;
        height: 180px;
        padding-left: 15px;
    }
}

.site-workouter{
display: flex;
justify-content: center;
}

.howitworkcms ul{
  padding-left: 30px;
}

.howitworkcms ol{
  padding-left: 30px;
}
