.hero-section {
    width: 100%;
    display: flex;
    background: #fff;
    padding: 76px 16px 16px;
    border-radius: 0 0 20px 20px;
    justify-content: center;
    box-sizing: border-box;
}

.hero-section .hero-section-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: content-box;
    max-width: 1432px;
    min-width: 342px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    font-style: normal;
    font-weight: 400;
    max-width: 100%;
}

.hero-text .note {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    color: #919199;
}

.hero-text p.hero-description {
    color: #56565B;
    max-width: 456px;
}

.heading-wrapper {
    display: flex;
    flex-basis: 0;
    flex-grow: 1;
}

.hero-side {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    box-sizing: border-box;
}

.hero-text h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    color: #313134;
    padding: 8px 0;
}

.hero-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    margin-bottom: 0;
}

#hero-signup-button {
    margin-right: 8px;
}

#learn-button {
    border: 1px solid #C4C4CE;
}

#learn-button-secondary {
    border: 1px solid #C4C4CE;
    margin-right: 8px;
}

.hero-visual {
    width: 100%;
    height: 343px;
}

.hero-visual .hero-visual-wrapper {
    flex-direction: row-reverse;
    display: flex;
    background: #00A882;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-visual-persona {
    display: flex;
    width: 50%;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-visual .hero-img-large {
    position: relative;
    display: none;
}

.hero-visual .hero-img-small {
    position: absolute;
    right: 0;
}

.hero-visual-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    padding-left: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: flex-start;
    box-sizing: border-box;
}

.hero-visual-side h3 {
    color: white;
    font-weight: 400;
    margin-bottom: 12px;
    margin-top: 12px;
}

.hero-visual-note p {
    color: white;
    margin-bottom: 24px;
    opacity: .8;
}

.hero-visual-description {
    display: flex;
    max-width: 401px;
}

.hero-visual-buttons {
    display: flex;
}

@media only screen and (min-width: 530px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

@media only screen and (min-width: 768px) {
    .hero-section {
        width: 100%;
        display: flex;
        background: #fff;
        padding: 76px 40px 40px;
        border-radius: 0 0 48px 48px;
        justify-content: center;
    }

    .hero-text {
        display: flex;
        flex-direction: row;
        padding: 24px 0;
        font-style: normal;
        font-weight: 400;
        max-width: 100%;
    }

    .hero-text .hero-side {
        padding-top: 77px;
        width: 50%;
    }

    .hero-visual .hero-visual-wrapper {
        flex-direction: row;
        overflow: visible;
    }

    .hero-visual img.hero-img-large {
        display: block;
        height: 420px;
        width: auto;
    }

    .hero-visual img.hero-img-small {
        display: none;
    }

    .hero-side, .hero-visual-side {
        padding-left: 20px;
    }
}

@media only screen and (min-width: 992px) {
    .hero-section .hero-section-wrapper {
        display: flex;
        flex-direction: column;
    }

    .hero-visual .hero-visual-wrapper {
        border-radius: 32px;
    }

    .hero-text {
        padding-bottom: 0;
        max-width: unset;
    }

    .hero-side, .hero-visual-side {
        padding-left: 140px;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 40px;
        line-height: 52px;
        color: #313134;
        padding: 8px 0;
    }

    .hero-buttons {
        margin-bottom: 80px;
    }

    .hero-visual img.hero-img-large {
        width: 467px;
        height: 508px;
    }
}

@media only screen and (min-width: 1428px) {
    .hero-text h1 {
        font-size: 64px;
        line-height: 64px;
        color: #313134;
        padding: 8px 0;
    }

    .hero-buttons {
        margin-bottom: 126px;
    }
}