.propertys {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.select_box {
  display: flex;
  justify-content: center;
}

.select_item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  /* border: solid 1px; */
}

.top_select_item {
  display: flex;
}

.top_select_item .search_button {
  border: solid 1px;
  padding: 5px;
  margin: 5px;
}

.select_item .select_label {
  flex: 0 0 100%;
  margin: 0 0 6px 0;
}

.select_item .search_button {
  /* flex: 0 0 calc(100% / 6); */
  box-sizing: border-box;
  width: max-content;
  border: solid 1px;
  padding: 10px;
  border-radius: 45%;
}

.search_result {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  justify-content: center;
}

#search_result.search_result {
  width: 100%;
  /* border: solid 1px blue; */
}

.property-card {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px;
  /* border: 1px solid #ddd; */
  /* background: #fff; */
  align-items: center;
}

.property-card img {
  width: 500px;
  height: 400px;
  object-fit: cover;
  cursor: pointer;
}

.property-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 80%;
}

.propertyExpBox1 {
  /* border: solid 1px; */
  font-size: 26px;
  font-weight: bold;
}

.propertyExpBox2 {
  /* border: solid 1px blue; */
  display: flex;
  flex-wrap: wrap;
}

.propertyExpBox2 div {
  /* border: solid 1px red; */
  margin: 3px;
}

/* .propertyExpBox3{
  border: solid 1px green;
} */
.onepropertypage {
  width: 100%;
}

.oneproperty{
  display: flex;
  flex-direction: column;
}

.onepropertyImgBox {
  background-image: url(../some/C.jpg);
  width: 100%;
  max-height: 1000px;
  height: 900px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* border: solid 5px red; */
}

.property-detail{
  width: 40%;
  margin: 24px auto;
}

.slider {
  position: relative;
  width: 50%;
  height: 600px;
  padding: 40px 0;
  margin: 0 auto; 
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ddd;
}

#sliderImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid #aaa;
  background: white;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}



@media screen and (max-width:900px) {

  /* *{
    background-color: black;
  } */
  #propertys {
    width: 100%;
    padding: 0;
  }

  .top_select_item {
    flex-wrap: wrap;
  }

  .propertys {
    flex-direction: column;
  }

  .search_result {
    flex-direction: column;
  }

  .property-card {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .property-card img {
    object-fit: contain;

  }

  .property-info {
    padding: 5px;

  }

  .onepropertypage {
    padding: 0;
  }

  .property-detail {
    padding: 5px;
  }

  .onepropertyImgBox {
    background-size: cover;
    height: 300px
  }
}