.container-hubs {
    display: flex;
    column-gap: 20px;
}

.filter-form {
    height: auto;
    width: 300px;
    background-color: #F5F5F5;
    border-radius: 6px;
    padding: 20px;
    padding-left: 30px;
}

.hubListing {
    background-color: #f7f7f7;
    width: 500px;
    height: 700px;

}

.SelectFileds {
    margin-left: 20px;
    margin: 10px;
    border: 1px #3A6532;
    height: 30px;
    width: 180px;
    margin-top: 10px;

}

.btn-apply {
    text-align: center;
    background-color: #3A6532;
    font-size: small;
    border-radius: 5px;
    width: 80px;
    color: white;
    margin-top: 15px;
    margin-left: 20px;
}

.btn-cancel {
    text-align: center;
    background-color: #c3c5c2;
    font-size: small;
    border-radius: 5px;
    width: 80px;
    color: #3A6532;
    margin-top: 15px;
}

.card {

    overflow: hidden;
    border-radius: 6px;
    box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    padding: 2px 16px;
    margin: 10px;
    height: fit-content;

}

.card-content {
    display: flex;
}

.card-container {
    height: 300px;
    width: 100%;

}

.text {
    flex: 1;
    font-size: medium;
    color: rgb(49, 49, 49);
    font-family: Arial, Helvetica, sans-serif;
    height: 10%;
}

.card-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #3A6532;
    font-size: large;

}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.image img {
    margin-top: 30px;
    width: 50%;
    height: 60%;
}