/* main {
    background-color: #009065;
} */

.deposits-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;
}

.deposits-banner .banner-content {
    width: 80%;
    margin: 0 auto;
}

.deposits-banner .banner-title {
    color: white;
    margin: 0;
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.deposits-banner .banner-description {
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
    color: white;
}

.download-rates-link {
    color: white;
}

.deposits {
    margin: 0 1rem;
    max-width: 1300px;
}

.deposits-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;
}

.deposits-item-image {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.deposits-item-title {
    margin: 0;
    margin-bottom: 1rem;
    color: #28af60;
}

.deposits-item-description {
    margin: 0;
    text-align: justify;
}

.deposits-item-details-title {
    color: #28af60;
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.deposits-item-details-description {
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-align: justify;
}

/* 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) {
    .deposits-banner {
        height: 24rem;
        margin-left: auto;
        margin-right: auto;
    }

    .deposits-banner .banner-title {
        font-size: 1.75rem;
    }
    
    .deposits-banner .banner-description {
        font-size: 1.25rem;
    }

    .deposits {
        margin: 0 auto;
        display: grid;
        grid-template-columns: auto auto auto;
        grid-column-gap: 1rem;
    }

    .deposits-item-image {
        width: 15rem;
        height: 15rem;
    }
}