.dbs-people-wrapper {
    width: 100%;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.dbs-profile {
    width: 100%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    background:#fff;
    max-width: 375px;
    padding:0;
    margin:0 0 30px;
    transition: all .25s;
}

.dbs-profile:hover {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .15);
    transition: all .25s;
}

.dbs-profile .dbs-profile-photo {
    height: 375px;
    overflow: hidden;
}

.dbs-profile .dbs-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dbs-profile .dbs-profile-info {
    padding: 30px;
}

.dbs-profile h3 {
    font-size: 24px !important;
    margin:12px 0 5px;
}

.dbs-profile h3 a {
    color: #F15F22
}

.dbs-profile h4 {
    font-size:18px !important;
    margin:0 0 24px !important;
}

.dbs-profile p {
    font-size:16px;
    line-height:120%;
    color: #47494e;
}

#dbs-filter-wrapper {
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0;
    align-items: flex-end;
}

#dbs-filter-wrapper .dbs-filter-row {
    width:100%;
    padding:0 10px 10px 0;
}

#dbs-filter-wrapper .dbs-filter-row h3 {
    font-size:16px;
    color:#F15F22;
    margin-bottom: 5px;
}

.dbs-reset-filters {
    text-align: right;
    display: block;
    width: 100%;
}

.dbs-tags {
    list-style:none;
    margin:0;
    padding:0;
    display: flex;
    flex-wrap: wrap
}

.dbs-tags li {
    padding:0 15px;
    background:#F15F22;
    border-radius: 15px;
    color:#fff;
    margin-right:5px;
    margin-bottom: 5px;
}

@media all and (min-width:575px) {
    
}

@media all and (min-width:767px) {
    .dbs-people-wrapper {
        justify-content: space-between;
    }

    .dbs-profile {
        width: 48%;
        max-width: unset;
    }

    #dbs-filter-wrapper {
        display:flex;
        flex-direction: row;
    }
}

@media all and (min-width:992px) {
    .dbs-profile {
        width: 32%;
    }
}
