@charset "UTF-8";



.main__headline {
    /* height: 60rem; */
    height: calc(90svh - 64px);

    .main__headline--text {
        -webkit-box-align: center;
        align-items: center;
    }
}

@media screen and (min-width: 1200px) {
    .main__headline--text {
        -webkit-box-pack: end;
        justify-content: flex-end;

        .main__headline--title {
            width: 50%;
        }
    }

    .main__headline--bg {
        max-width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .main__headline {
        /* height: 45rem; */
        height: calc(100svh - 64px);
    }
}



/* .main__headline--bg::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#fff));
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, #fff 100%);
    opacity: 0.9;
} */
.main__headline--bg::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#f8f7f3));
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, #f8f7f3 100%);
    opacity: 1;
}