.intro {
    z-index: 1;
    position: relative;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 30px;
}

.intro::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    opacity: 0.9;
    z-index: 1;
    background: linear-gradient(256.5deg, rgba(0, 0, 0, 0.3) 25%, rgba(0, 0, 0, 0) 43.25%);
}

.intro__content {
    min-height: 55vh;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0 140px;
    position: relative;
    z-index: 2;
    text-align: right;
    color: #fff;
    /* max-width: 610px; */
    text-shadow: -2px 2px 0 rgb(0 0 0 / 30%);
    margin-left: auto;
}

.intro__text {
    font-size: 1.5rem;
    text-align: right;
    font-weight: 800;
    letter-spacing: 0.05em;
    /* max-width: 540px; */
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .intro {
        background-image: var(--data-image-lg);
    }

}

@media screen and (max-width: 1023px) {
    .intro::before {
        opacity: 1;
    }

    .intro__content {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 120px;
        text-align: center;
    }

    .intro__text {
        font-size: 1.4rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

}

@media screen and (max-width: 991px) {
    .intro__text {
        max-width: 470px;
        line-height: 1.3;
    }
}

@media screen and (max-width: 768px) {
    .intro {
        background-image: var(--data-image-md);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575px) {
    .intro {
        margin-bottom: 10px;
    }

    .intro::before {
        opacity: 0.4;
        background: #000;
    }

    .intro__content {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .intro__text {
        font-size: 1rem;
        max-width: 280px;
    }
}

@media screen and (max-width: 380px) {
    .intro__text {
        font-size: 1rem;
    }
}