.how-help-intro {
    min-height: 100vh;
    background-image: url("../../img/how_help_intro/how-help-intro-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;

    position: relative;
}

.how-help-intro .hero-title {
    position: absolute;
    bottom: 40px;
    left: 40px;

    max-width: 555px;

    text-align: left;
    color: var(--white);
}

.how-help-intro .how-help-cards {
    padding-top: 114px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: 4px;
    bottom: 4px;
    min-width: 600px;

}

.how-help-cards .how-help-card {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 40px;
    padding-right: 47px;
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: all 400ms ease;
}

.how-help-cards .how-help-card h4 {
    text-align: left;
}

.how-help-cards .how-help-card img {
    max-width: 27px;
    max-height: 27px;
}

@media (hover: hover) {
    .how-help-cards .how-help-card:hover {
        background: var(--sun-yellow);
        height: 300%;
    }
}

