#property{
    padding: 100px 0px;
  }

  #property .header{
    text-align: center;
    position: relative;
    margin-bottom: 40px;
  }

  #property  .header h1{
    color: #192D5F;
    font-size: 40px;
    font-family: Montserrat;
}

  #property .header::before{
    content: ""; 
    position: absolute;
    top: -75px;
    left: calc(50% - 275px);
    width: 550px;
    height: 156px;
    background-image: url('../images/titlehightlight.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}




#property .property_content{
    display: flex;
    margin-top: 50px;
    width: 100%;
    gap: 40px;
    overflow: scroll;
    
}

.property_content::-webkit-scrollbar {
  display: none;
}

.property_content {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.property_content img{
    height: 100%;
    width: 100%;
    min-height: 200px;
    min-width: 300px;
}

#property button{
    background:none;
    background-color: #4F66FF;
    border: none;
    padding: 18px 80px;
    border-radius: 50px;
    color: white;
    margin-top: 50px;
    font-size: 18px;
    cursor: pointer ;
    font-weight: bold;
}

#property .contact{
  margin-left: 20px;
}
#property .contact button{
  background-color: #ff7f50;
}
#property .btn_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


@media screen and (max-width:1024px) {
  
#property{
  overflow: hidden;
}

#property .property_content{
  overflow: scroll;
}

#property .header::before{
  display: none;
  content: ""; 
  position: absolute;
  top: -75px;
  left: -00px;
  width: 300px;
  height: 160%;
  background-image: url('../images/titlehightlight.png'); 
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

}

@media (max-width: 600px) {
  #property{
      padding: 30px 0px;
  }

  #property .btn_container a {
    display: table;
    margin: auto;
  }
  #property .btn_container a button {
    width: 300px;
  }
}