* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ddd;
}

/*section sectionContect searchContainer  Section */
section {
    background-color: #051325c0;
    background-image: url("image/houseback4.jpg");
    background-position:  center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    margin: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: auto;
    height: 60vh;
}

.sectionContect {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    flex-direction: column;
}

.sectionContect h1 {
    font-size: 1.6em;
    font-weight: bold;
    font-family: Arial, Robotto, sans-serif;
    text-align: center;
    color: #fff;
}

.sectionContect ul li {
    display: inline-block;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    list-style: none;
    margin: 10px auto;
}

.sectionContect ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    font-family: Arial;
    margin: 10px;
    color: #f4f5fa;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    transition: all .6s ease-in-out;
    text-transform: uppercase;
    width: 100px;
    height: auto;
}

.sectionContect ul li a:hover {
    background-color: #ddd;
    color: #000838;
}

.sectionContect-h1 {
    color: #333;
    font-size: 36px;
    margin-bottom: 20px;
}

.searchContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 77%;
    background-color: transparent;
}

.searchContainer form {
    display: flex;
    width: 100%;
    height: auto;
}

.searchContainer input[type="search"] {
    width: 100%;
    border: 1px solid #000838;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    outline: none;
}

::placeholder {
    font-size: .9em;
    font-weight: 300;
    font-family: Arial, sans-serif;
    text-align: left;
    color: rgba(2, 2, 51, 0.555);
    padding: 10px 15px;
}

.searchContainer-button {
    background-color: #000838;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    outline: none;
}

.searchButton-img{
    width: 17px;
    height: 17px;
}
/*section sectionContect searchContainer  Section */

/* Property listing Container */
.propertyListingContainer {
    display: flexbox;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 2em;
    margin-bottom: 3em;
}

.propertyListingContainer-h2 {
    text-align: center;
    font-size: 1.4em;
    font-weight: 500;
    font-family: inherit;
    color: rgba(1, 1, 14, 0.979);
    margin-bottom: 1.2em;
}

.property {
    border: 0;
    border-radius: 1em;
    box-shadow: 0px 0px 0px  darkgoldenrod;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 20px auto;
    width: 23.3%;
    height: auto;
    display: inline-block;
    margin: 10px;
    background-color: #ccc;
    flex-direction: column;
}

.property-a {
    text-decoration: none !important;
    cursor: pointer;
}

.property-img {
    width: 100%;
    height: auto;
    border: 0;
    border-top-right-radius: 1em;
    border-top-left-radius: 1em;
}

.Status {
    color: #fff;
    font-size: .7em;
    font-weight: 300;
    font-family: inherit;
    text-align: left;
    background-color: #005bbd;
    border-radius: .6em;
    padding: .1rem;
    margin: 1em;
}

.active {
    font-size: 2.8em;
    font-weight: 400;
    color: rgb(20, 141, 20);
    margin: 10px;
}

.address {
    font-size: 12px;
    font-weight: 400;
    font-family: inherit;
    color: rgba(3, 3, 46, 0.925);
    margin: 0;
    margin-top: 2em;
}

.label {
    font-size: 13px;
    font-weight: bold;
    color: #000;
    margin-bottom: 1.2em;
    margin: 10px;
}

.labelValue {
    font-size: .8em;
    font-weight: 400;
    color: #10151a;
}

.property .price {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}
  
.property .address {
    font-size: 16px;
    margin-bottom: 10px;
    margin: 10px;
}
  
.property .details {
    margin-bottom: 10px;
}
  
.property .details .label {
    font-weight: bold;
}

@media screen and (max-width: 800px) {
    .property {
        flex-direction: column;
        width: 95%;
        box-shadow:  0 0 1px #005bbd;
    }
}