.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-wrap {
    max-width: 1320px;
    width: 80%;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 40px;
    display: flex;
    align-items: stretch;
}

.hero-canvas-box {
    flex: 1 1 auto;
    height: 360px;
    /* border: 2px solid #e2e2e2; */
    position: relative;
    overflow: hidden;
}

.hero-canvas-box canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-spacer {
    width: 100px;
    flex: 0 0 auto;
}

.hero-right {
    flex: 0 0 184px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-profile-photo {
    width: 100%;
    height: 190px;
    /* background: #d9d9d9; */
    margin-bottom: 20px;
}

.hero-contact {
    text-align: right;
}

@media screen and (max-width: 768px) {
    .hero-wrap {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-top: 90px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-canvas-box,
    .hero-spacer {
        display: none;
    }

    .hero-right {
        flex: 1 1 auto;
        align-items: center;
        width: 100%;
    }

    .hero-profile-photo {
        width: 160px;
        height: 160px;
    }

    .hero-contact {
        text-align: center;
    }
}