body.path-frontpage,
.front {
    /* background-image: url('../images/homepage-bg.png'); */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}
.page-wrapper {
    background-image: url('../images/homepage-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}
.main-content {
    background: transparent;
}
body.path-frontpage::before,
.front::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 10, 31, 0.3);
    z-index: -1;
    pointer-events: none;
}