.serviceSection {
    height: auto;
    width: 100%;
    display: grid;
    place-items: center;
}

.serviceRow {
    display: flex;
    flex-wrap: wrap;
}

.serviceColumn {
    width: 100%;
    padding: 0 1em 1em 1em;
    text-align: center;
}

.cards {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    /* background: linear-gradient(#ffffff 50%,var(--text-bg-services-dar-light) 50%); */
    background: linear-gradient(#ffffff 50%,var(--text-bg-services-dar-light) 50%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    /* color: #1f194c; */
    color: var(--text-dark--service-txt);
    margin: 1em 0;
}

.p2 {
    /* color: #575a7b; */
    color: var(--text-dark--service-txt);
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.icon-wrapper {
    background-color: #40078a;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
}

.cards:hover {
    background-position: 0 100%;
}

.cards:hover .icon-wrapper {
    background-color: #ffffff;
    color: #40078a;
}

.cards:hover h3 {
    color: #ffffff;
}

.cards:hover p {
    color: #f0f0f0;
}

@media screen and (min-width: 768px) {
    .serviceSection {
        padding: 0 2em;
    }

    .serviceColumn {
        flex: 0 50%;
        max-width: 50%;
    }
}

@media screen and (min-width: 992px) {
    .serviceSection {
        padding: 1em 3em;
    }

    .serviceColumn {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}