/**
 * Block 001 – Hero Bereich
 */

.block-001 {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding-bottom: 6rem;
}

.block-001 .hero-row {
    position: relative;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 0 5%;
}

.block-001 .hero-img-col {
    width: 45%;
}

.block-001 .hero-content-col {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.block-001 .hero-bubble {
    display: block;
    position: relative;
    height: 36em;
    width: 36rem;
    border-radius: 100%;
    transform: translate(-10rem, 0);
    z-index: 1;
}

.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white) !important;
    background: var(--background-gzo);
    height: 9rem;
    width: 9rem;
    padding: 1.5rem;
    font-size: .95rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    border-radius: 100%;
    border: none;
    min-height: 0;
    transition: all 400ms ease;
    cursor: pointer;
    z-index: 2;
    right: 0;
    bottom: 2rem;
}
