.home-hero-tabs {
    margin: 40px auto;
}

.home-hero-tab {
    background-color: #EB0988;
    display: flex;
    height: 78px;
    justify-content: space-between;
    padding: 1em;
    position: relative;
    border-radius: 50px;
    color: var(--color-white);
    transition: all 0.2s ease-in-out;
    text-align: center;
    max-width: 343px;
    margin: 10px auto;
}

    .home-hero-tab:hover {
        background-color: #CB1778 !important;
        color: var(--color-white);
    }

    .home-hero-tab img {
        margin-left: 1rem;
        width: 54px;
    }

    .home-hero-tab p{
        font-size: 20px;
        line-height: 24px;
        font-weight: 500;
        text-align: left;
    }
        .home-hero-tab p span{
            font-weight: 900;
        }

/* cta arrow */
.home-hero-tab__cta {
    background-color: var(--color-rose);
    background-image: url('/images/icons/icon-circle-arrow-right-white.png');
    background-size: 102% 102%;
    border-radius: 50%;
    display: inline-block;
    height: 30px;
    transition: all 0.2s ease-in-out;
    width: 30px;
    min-width: 30px;
    position: relative;
    right: 2px;
    top: 10px;
}