/* Intro values background mark */
.intro-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.intro-section .section-label,
.intro-section .split {
    position: relative;
    z-index: 2;
}
.intro-values-mark {
    position: absolute;
    z-index: 1;
    left: clamp(18px, 7vw, 135px);
    top: 50%;
    width: clamp(360px, 43vw, 760px);
    transform: translate(10%, -50%) rotate(-7deg);
    opacity: .105;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 38px rgba(255,255,255,.08));
}
.intro-values-mark img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 900px) {
    .intro-values-mark {
        left: 50%;
        top: 40%;
        width: min(118vw, 620px);
        transform: translate(-48%, -50%) rotate(-6deg);
        opacity: .075;
    }
}

