
.properties-banner {
    max-width: 1400px;
    background-image: url("../images/loans-banner.jpg");
    background-size: cover;
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.properties-banner .banner-content {
    width: 80%;
    margin: 0 auto;
}

.properties-banner .banner-title {
    color: white;
    margin: 0;
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.properties-banner .banner-description {
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
    color: white;
}

.properties {
    margin: 0 1rem;
    max-width: 1300px;
}

.properties-item {
    /* background-color: white; */
    text-align: center;
    margin-bottom: 1rem;
    padding: 1.5rem;
    /* box-shadow: 2px 2px black; */
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    margin-right: 1rem;
}
.properties-item-image {
    width: 20rem;
    height: 20rem;
    /* border-radius: 50%; */
    margin-bottom: 1rem;
}

/* Tablet Design */

@media(min-width: 768px) {
    .deposits-banner {
        height: 15rem;
    }

    .deposits-banner .banner-title {
        font-size: 1.5rem;
    }
    
    .deposits-banner .banner-description {
        font-size: 1rem;
    }
}

/* Desktop design */

@media(min-width: 992px) {

    .properties-banner {
        height: 24rem;
        margin-left: auto;
        margin-right: auto;
    }

    .properties-banner .banner-title {
        font-size: 1.75rem;
    }
    
    .properties-banner .banner-description {
        font-size: 1.25rem;
    }

    .properties {
        margin: 0 auto;
        display: grid;
        grid-template-columns: auto auto auto;
        grid-column-gap: 0.5rem;
    }

    .properties-item-image {
        width: 23rem;
        height: 25rem;
    }
}