main {
    background:var(--color-creme);
    padding-bottom:120px;
}
.hamburger div {
    background:var(--color-sea);
}
header {
    color:var(--color-sea);
    & .logo svg * {
        fill: var(--color-sea);
    }
}

.text-container {
    padding-top:120px;
    text-align:center;
    margin-bottom:120px;

    & h1 {
        color:var(--color-sea);
        & .blinds-text-wrapper {
            justify-content: center;
        }
    }
}
.split {
    display:flex;

    & h2 {
        color:var(--color-sea);
        margin-bottom:30px;
        font-size:32px;
    }

    & .form, & .text {
        padding:60px 32px;
    }

    & > div {
        width:50%;
    }
    & p {
        margin-bottom:12px;
    }
    & img {
        border-radius:30px;
    }
}
.sticky.split .image img {
    position:sticky;
    top:60px;
    max-height:calc(100vh - 120px);
}

@media screen and (max-width:800px){
    .split {
        flex-direction:column;
        & > div {
            width:100%;
            box-sizing:border-box;
        }
        & .form, & .text {
            padding:0;
        }
        & .form {
            padding:60px 0;
        }
    }
}