.estate-hero-sec{
    background-image: url('../img/services/real-estate-banner-1.jpg');
    width:100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.estate-hero-sec::before{
    content:' ';
    display:block;
    position:absolute;
    bottom: 0;
    top:0;
    left:0;
    right:0;
    background-color: black;
    opacity:0.6;
}

.inner-estate-hero-sec{ 
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
    align-items: center;
}

@media(max-width:768px){
    .inner-estate-hero-sec{
        grid-template-columns: 1fr;
    }
}

.estate-hero-sec-bside {
    background-color: rgba(0, 0, 0, 0.33);
    border: 3px solid white;
    border-radius: 5px;
    padding: 20px;
}

.estate-hero-sec-bside-btn {
    border: 1px solid white;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.estate-hero-sec-bside-btn button {
    border: none;
    background: transparent;
    padding: 10px 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.active-indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-color: #fff;
    border-radius: 4px;
    transition: transform 0.3s ease;
    z-index: 0;
}

.estate-hero-sec-propertType {
    background-color: white;
    display: flex;
    flex-direction: column;
    padding-block: 5px;
    border-radius: 4px;
}

.estate-hero-sec-propertType > label {
    font-size: 0.7rem;
}

.estate-hero-sec-propertType > select {
    background-color: transparent !important;
    border: none;
    outline: none;
    /* appearance: none; */
}

.estate-hero-sec-submit {
    border: none;
    background-color: lightskyblue;
    display: flex;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 8px;
}

.estate-hero-sec-submit:hover{
    background-color: rgb(96, 180, 233);
}



/* article css */
.inner-estate-sec-1{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:15px;
}

@media(max-width:1024px){
    .inner-estate-sec-1{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .inner-estate-sec-1{
        grid-template-columns:1fr;
    }
}

.property-slider-card{
    /* width:400px; */
    border:1px solid #ddd;
    border-radius:8px;
}

.property-slider-card:hover img{
    transform: scale(1.1);
    transition: transform 0.5s ease;
}
.property-slider-content figure img, .property-slider-content figure{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.property-slider-content figure{
    height:200px;
    object-fit:cover;
}

.property-card-type{
    position: absolute;
    top:5px;
    right:5px;
    display:inline-block;
    background-color:white;
    padding:3px 7px;
    border-radius:5px;
    font-size: 0.7rem;
    font-weight: bold;
    cursor:pointer;
}