.action {
    margin: 0 -15px;
    padding: 14px 21px;
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: var(--color-green);
    overflow: hidden;
    text-decoration: none;
    width: calc(100% + 30px);
}
.action:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    pointer-events: none;
    background-color: var(--color-white);
    content: '';
}

.action-text {
    position: relative;
    z-index: 2;
    letter-spacing: 0.3px;
}

.action-help {
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--heading-font-family);
}

.action-text .button {
    min-width: 147px;
}

.action-image {
    padding-left: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.action-image img {
    margin-left: auto;
}

@media (min-width: 768px) {
    .action {
        margin: 0;
        padding: 25px 31px 26px;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
    }

    .action-questions {
        top: 8px;
        left: 9px;
        width: 81px;
        transition: all 0.3s;
    }

    .action-text {
        margin-right: 80px;
        padding-top: 56px;
        transition: all 0.3s;
    }

    .action-text .button {
        font-size: 20px;
        min-width: 218px;
        height: 52px;
    }
}
