.step-cards__heading {
    margin-bottom: 30px;
}

.step-cards__heading :last-child {
    margin-bottom: 0;
}

.step-card-flex {
    row-gap: 25px;
    justify-content: center;
}

.step-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    height: 100%;
    font-weight: normal;
    background: var(--grey);
    border-radius: var(--border-radius);
    padding: 30px 25px;
}

.step-card__count {
    color: var(--sky-blue);
    font-size: 70px;
    line-height: 1.2em;
    font-family: var(--secondary-font);
}

.step-card__title {
    color: var(--deep-navy);
    font-family: var(--primary-font);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.19em;
    margin-bottom: 20px;
}

.step-card__description {
    font-family: var(--primary-font);
    color: var(--black);
}

.step-card__bottom {
    margin-top: 20px;
}

.step-card__cta {
    border: none;
    font-size: 18px;
    line-height: 1em;
    padding: 17px 29px;
}

.step-card-slider {
    margin: 0 -16px;
    padding-bottom: 60px;
}

.step-card-item {
    padding: 0 16px;
}

.bg-blue .step-card__title {
    color: var(--deep-navy);
}

.step-card-slider  .slick-track {
    display: flex !important;
}

.step-card-slider  .slick-slide {
    height: inherit !important;
}

.step-card-slider  .slick-slide div {
    height: 100%;
}

.step-card-slider  .slick-slide .step-card div {
    height: auto;
}

.step-cards__bttn .btn-group {
    margin-top: 30px;
}

.step-cards--homepage h2 {
    font-size: 42px;
}

@media (min-width: 768px) {
    .step-card-flex {
        row-gap: 32px;
    }

    .step-card {
        padding: 35px;
    }

    .step-card__title {
        font-size: 30px;
        line-height: 1.2em;
        margin-bottom: 25px;
    }

    .step-card__bottom {
        margin-top: 25px;
    }

    .step-cards--homepage h2 {
        font-size: 48px;
    }
}

@media (min-width: 1200px) {
    .step-cards__heading {
        margin-bottom: 50px;
    }

    .step-card-flex {
        row-gap: 50px;
    }

    .step-card__count {
        font-size: 100px;
    }

    .step-card__title {
        font-size: 35px;
    }

    .step-card:hover {
        background: var(--deep-navy);
    }

    .step-card:hover .step-card__title,
    .step-card:hover .step-card__description {
        color: var(--white);
    }

    .bg-blue .step-card:hover {
        background: var(--white);
    }

    .bg-blue .step-card:hover .step-card__title,
    .bg-blue .step-card:hover .step-card__description {
        color: var(--deep-navy);
    }

    .bg-blue .step-card:hover .step-card__cta {
        background: var(--deep-navy);
        color: var(--white);
    }

    .step-cards__bttn .btn-group {
        margin-top: 50px;
    }

    .step-card-slider {
        padding-bottom: 80px;
    }

    .step-cards--homepage h2 {
        font-size: 65px;
    }
}