.property-marketplace{
    padding-top: 70px;
    padding-bottom: 50px;
    .container{
        max-width: min(100%,1140px);
        margin: 0 auto;
    .category-title{
        font-size: 40px;
        font-weight: 600;
        padding-bottom: 20px;
        color: var( --e-global-color-primary );
        margin-bottom: 20px;
    }
    }
    .pagination{
        width: fit-content;
        margin-top: 40px;
        margin-bottom: 0;
        font-family: "Roboto", Sans-serif;
        span.current{
            background-color: var(--e-global-color-primary);
            color: #fff !important;
            border: 1px solid var(--e-global-color-primary);
            padding: 17px 15px;
            line-height: 0;
            display: inline-block;
            border-radius: 5px;
            transition: 0.3s all ease-in-out;
        }
        & > *{
            font-size: 17px;
            font-weight: 400;
        }
        a{
            background-color:#fff;
            color: var( --e-global-color-secondary );
            border: 1px solid var(--e-global-color-primary);
            padding: 17px 15px;
            line-height: 0;
            display: inline-block;
            border-radius: 5px;
            transition: 0.3s all ease-in-out;
            &:hover{
            color: #fff;
            background-color: var(--e-global-color-primary);}
        }
        }
        .prev,.next{
            display: none !important;
        }
    }
    .pagination > *:not(:last-child) {
        margin-right: calc(15px / 2);
    }
    .pagination > *:not(:first-child) {
        margin-left: calc(15px / 2);
}
.property-container{
    font-family: "Roboto", Sans-serif;
    display: grid;
    align-items: stretch;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    .property-box{
        box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.03);
        border-radius: 4px 4px 4px 4px;
        .property-image{
            overflow: hidden;
            height: 300px;
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .property-details{
            padding: 20px;
            .property-title{
                margin: 0;
                padding-bottom: 6px;
                font-size: 16px;
                line-height: 16px;
                a{
                    font-weight: 400;
                    color: var( --e-global-color-secondary );
                }
            }
            .property-price{
                font-size: 18px;
                font-weight: 600;
                color: var(--e-global-color-primary);
            }
        }
    }
}

@media only screen and (max-width: 1024px){
    .property-marketplace{
        padding-left: 20px;
        padding-right: 20px;
    }
    .property-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px){
    .property-container{
        grid-template-columns: repeat(1, 1fr);
    }
}
