.root {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: center / cover no-repeat url('./assets/bg.jpg');
    overflow: hidden;
}

.container {
    display: flex;
    min-height: 1000px;
    width: 100%;
    max-width: var(--content-max-width);
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}

.heroFace {
    height: 912px;
    position: absolute;
}

.protGraphic {
    width: 1398px;
    position: absolute;
    overflow: visible;
}

.rectShade {
    position: absolute;
    width: 100vw;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.headline {
    position: relative;
    text-align: center;
    margin-bottom: 732px;
    color: var(--color-white);
    width: 721px;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media screen and (width <= 768px) {
    .headline {
        margin-bottom: 560px;
        padding: 0 20px;
        min-width: 335px;
        width: 100%;
    }

    .container {
        min-height: 812px;
    }

    .heroFace {
        height: 625px;
        transform: translateX(24px);
    }

    .protGraphic {
        width: 869px;
        margin-bottom: 39px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}
