.gridContainer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    border-top: 60px solid var(--main-color);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.ui-service-card{
    text-decoration: none !important;
    text-align: center;
    border-radius: 0;
    height: 100%;
    transition: all .3s;
}
.card{
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
}

.card-body {
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.card-title{
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 14px;
    color: var(--main-color);
}
.badge{
    color: #00893E;
    border: 1px solid currentColor;
}
.gridLogo{
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    display: flex;
    background-position: center;
}