/* Service list */

.services-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 83%;
    margin-left: auto;
    margin-right: auto;
    row-gap: 45px;
    column-gap: 75.9px;
}

/* Service cards */

.service-card {
    position: relative;
    height: 482px;
    width: 100%;
    max-width: 288px;
    color: #fff;
    border-radius: 50px;
    padding: 35px 25px 35px 25px;
    display: flex;
    flex-direction: column;
}

.service-card-black {
    background-color: #292929;
}

.service-card-orange {
    background-color: #FF7000;
}

.service-card-button {
    width: 100% !important;
}

.service-card-heading {
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card-text {
    font-weight: 500;
}

.service-card-conditions {
    margin-top: auto;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

