.hero-card-2 > h3 {
    font-weight: bold;
    font-size: 50px;
    color: var(--site-color-900);
}

.hero-card-2 > p {
    font-size: 20px;
    color: var(--site-color-1001);
}

.hero-card-2-feature > span {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: var(--site-color-900);
    border-radius: 100%;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 5px;
}

.hero-card-2-feature {
    padding: 10px;
    border-radius: 10px;
    background-color: var(--site-color-100);
    height: 100%;
    position: relative;
    box-shadow: 0px 0px 5px 0px inset var(--site-color-200);
    color: var(--site-color-1001);
}

.hero-card-2-feature > h3 {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0px;
    display: inline-block;
    background-color: var(--site-color-200);
    color: var(--site-color-1001);
    border-radius: 10px;
    padding: 5px 20px;
    border: 1px solid var(--site-color-300);
}

.hero-card-2-feature > p {
    margin: 0px;
}

.hero-card-2-feature > label {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

@media only screen and (max-width: 600px) {
    .hero-card-2 > h3 {
        font-size: 35px;
    }

    .hero-card-2-feature > span {
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .hero-card-2-feature > h3 {
        width: 100%;
        text-align: center;
        font-size: 22px;
    }

    .hero-card-2-feature > label {
        font-size: 18px;
    }
}
