.hero-blur-effect {
    position: absolute;
    top: 50%;
    left: 33%;
    width: 611px;
    height: 611px;
    background-image: url(../../../image/blur.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 999;
    pointer-events: none;
}
@media (max-width: 1024px) {
    .hero-blur-effect {
        display: none;
    }
}
@media (min-width: 1024px) {
    .hero-block {
        top: -200px;
        padding-top: 90px;
        margin-bottom: -120px;
    }

    .site-header.scrolled ~ * .hero-blur-effect {
        margin-top: -180px;
    }
}
.hero-block {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media (min-width: 999px) {
    .hero-content {
        min-width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}
.hero-block__background {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
}
@media (min-width: 1024px) {
    .hero-block__background img {
        /*min-width: 100%;*/
        float:right;
        max-height: 900px;
    }
}

.hero-block__background img {
    /*width: 100%;*/
    /*height: 100%;*/
    /*object-fit: cover;*/
    z-index: 99;
    position: relative;
}
@media (min-width: 1024px) {
    .hero-block__content {
        max-width: 50%;
        position: relative;
        z-index: 2;
    }
}

.hero-block__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 130%;
    color: #F7F5F5;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-block__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 600px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1023px) {
    .hero-blur-effect {
        width: 400px;
        height: 400px;
        top: 30%;
        left: 20%;
    }

    .hero-block {
        min-height: 150px;
        max-height: 150px;
    }

    .hero-block__title {
        font-size: 24px;
    }

    .hero-block__subtitle {
        font-size: 1.125rem;
    }
    .hero-block__background {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-blur-effect {
        width: 300px;
        height: 300px;
        top: 20%;
        left: 10%;
    }
}

