.rsea-stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px;
}

.rsea-stepper-item {
    display: flex;
    justify-items: flex-start;
    align-items: stretch;
    width: 100%;
    background: white;
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
}

.rsea-stepper-item__inner {
    width: 100%;
    padding: 52px 20px;
}

.rsea-stepper-item__number-wrapper {
    display: flex;
    justify-items: center;
    width: 100%;
    margin: 0 auto 16px;
}

.rsea-stepper-item__number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 105px;
    height: 105px;
    font-family: "Poppins", sans-serif;
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
    color: white;
    background: #22674E;
    margin: 0 auto;
}

.rsea-stepper-item__title {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: black;
    margin: 0 auto 16px;
    text-align: center;
}

.rsea-stepper-item__content {
    display: block;
}

.rsea-stepper-item__content p, .rsea-stepper-item__content ul {
    text-align: center;
    font-size: 14px;
    line-height: 1.75;
    margin: 0 auto 12px;
    letter-spacing: 0.32px;
}

@media ( max-width: 960px ) {
    .rsea-stepper {
        grid-gap: 16px;
    }

    .rsea-stepper-item__inner {
        width: 100%;
        padding: 32px 14px;
    }

    .rsea-stepper-item__number {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }

    .rsea-stepper-item__title {
        font-size: 18px;
    }
}

@media ( max-width: 820px ) {
    .rsea-stepper-item__number {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

@media ( max-width: 620px ) {
    .rsea-stepper {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 32px;
    }
}