.sec-content-journey {
    position: relative;
    margin: 7rem 0;
    padding: 7rem 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.sec-content,
.sec-journey {
    max-width: var(--width-c);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
    z-index: 2;
    width: 100%;
}

.sec-content-journey__bg {
    background: #E7F2F8;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
}

.sec-content-journey__bg::before,
.sec-content-journey__bg::after {
    content: '';
    width: 100%;
    background: url(../imgs/pattern.svg) no-repeat center center;
    display: block;
    height: 10rem;
    position: absolute;
    background-size: 100% 100%;
}

.sec-content-journey__bg::before {
    transform: scale(-1, 1);
    top: -3rem;
}

.sec-content-journey__bg::after {
    bottom: -3rem;
}

.sec-content-journey__bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    height: 100%;
}


.sec-content__container {
    display: grid;
    gap: 4.5rem;
}

.sec-content__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.sec-content__text .btn {
    margin-top: 2.5rem;
}

.sec-content__title {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.sec-content__title::before {
    content: '';
    background: var(--c-primary);
    width: 9.6rem;
    height: 0.4rem;
    border-radius: 1rem;
    display: block;
    margin: 0 auto 1rem;
}

.sec-content__desc {
    font-size: min(16px, 3.5vw);
    line-height: 1.8;
    color: #697F8D;
}


.sec-content__img-wrap {}

.sec-content__img {
    width: 100%;
}


.splash-content {
    position: absolute;
    z-index: 40;
    top: calc(100% - 6rem);
    width: 31rem;
    left: -18rem;
    pointer-events: none;
}

.splash-content img {
    transform: rotate(45deg);
    filter: blur(1px);
}

@media (width >=1024px) {

    .sec-content__text {
        align-items: start;
    }

    .splash-content {
        bottom: -17rem;
        top: auto;
        left: -57rem;
        width: 102rem;
    }

    .sec-content__container {
        grid-template-columns: 54rem 1fr;
        gap: 4.5rem;
        align-items: end;
    }

    .sec-content__title {
        font-size: 3.2rem;
        text-align: left;

    }

    .sec-content__title::before {
        margin: 0 0 1rem;
    }

    .sec-journey {
        padding: 0 calc(var(--space-x) / 2);
    }

    .sec-content {
        padding: 0 calc(var(--space-x) + 2rem);
    }

    .sec-content__img-wrap {
        order: -1;
    }

    .sec-content-journey {
        padding: 6rem 0 11rem;
        margin: 17rem 0 4rem;
    }

}