.hero {
    position: relative;
    z-index: 15;
    display: block;
    width: 100%;
    height: 100dvh;
    margin: 0px;
    background: url("/assets/backgrounds/Sonoma.webp");
    background-size: cover;
    background-position: center;
}

.heroContent {
    grid-area: Content;
    width: 100vw;
    height: 100dvh;
    display: block;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, var(--newBackgroundColor0) 0%, rgba(255,255,255,0) 100%);
    z-index: 5;
}

.heroImage {
    position: absolute;
    max-height: 70dvh;
    max-width: 80vw;
    top: 15dvh;
    left: 50vw;
    transform: translateX(-50%) translateY(calc(min((50px - var(--pagePositionY)), 100vh))) translateZ(0) scale(calc(1 + max((var(--pagePositionPercentLinear) * 0.5), -0.5)));
    -webkit-transform: translateX(-50%) translateY(calc(min((50px - var(--pagePositionY)), 100vh))) translateZ(0) scale(calc(1 + max((var(--pagePositionPercentLinear) * 0.5), -0.5)));
    /* border-radius: 13px;
    -webkit-border-radius: 13px; */
    /* box-shadow: var(--newBoxShadow); */
    /* transition: transform 0.1s;
    -webkit-transition: transform 0.1s; */
}

.heroText {
    position: relative;
    top: calc(15dvh - 50px);
    left: 50vw;
    height: 50px;
    width: max-content;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 0;
    display: grid;
    text-shadow: 0px 0px 40px rgba(255,255,255,0.5);
}

.heroText > h1 {
    font-size: 50px;
    font-weight: bold;
    margin: auto;
}

.heroText > p {
    margin: auto;
}

.heroLaptop {
    position: relative;
    max-height: 70dvh;
    max-width: 80vw;
    top: 15dvh;
    left: 50vw;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.content {
    background: var(--newBackgroundColor0);
    min-height: 100vh;
}

@media (min-width: 701px) {
    .section {
        grid-template-columns: 1.25fr 0.75fr;
    }

    .section:nth-child(odd) {
        grid-template-columns: 0.75fr 1.25fr;
    }
}

.heroExtension {
    height: 85dvh;
}

.heroExtensionText {
    width: max-content;
    max-width: 80vw;
    margin: auto;
    font-size: 30px;
    text-align: center;
}

.sectionWithTitle {
    display: grid !important;
    grid-template-rows: min-content 1fr !important;
    grid-template-columns: 1fr !important;
    grid-template-areas: none !important;
    height: min-content !important;
}

.sectionGrid4Step {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-rows: 1fr;
}

.sectionGridStep {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr max-content;
}

.sectionGridStep > svg {
    max-width: 200px;
    margin: auto;
}

.sectionGridStep > h3 {
    margin: auto;
    padding: 10px;
}

.stepArrow {
    width: 30px;
    margin-top: auto;
    margin-bottom: auto;
}


@media (max-width: calc(700px)) {
    .sectionGrid4Step {
        display: grid;
        grid-template-rows: 1fr 40px 1fr 40px 1fr 40px 1fr;
        grid-template-columns: 1fr;
    }

    .stepArrow {
        margin: auto;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
    }

    .appStoreButtonName {
        display: none;
    }
}

.footnote {
    opacity: 0.75;
    font-size: small;
}