.sec-journey {}

.sec-journey__container {}

.sec-journey__head {
    text-align: center;
    margin-bottom: 5rem;
}

.sec-journey__title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;

}

.sec-journey__desc {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #697F8D;
    max-width: 60rem;
    margin: 0 auto;
    font-weight: bold;
}

.sec-journey__swiper-wrapper {
    position: relative;
    padding-bottom: 4rem;
}

.mobile .sec-journey__swiper-wrapper::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 17rem;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    filter: blur(32px);
}

.sec-journey__swiper .swiper-wrapper {
    padding-bottom: 1rem;
}

.sec-journey__swiper .swiper-slide {
    height: auto;
    width: 37rem;
}


.sec-journey__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sec-journey__card {
    opacity: 0;
    transform: translateY(5rem);
}

.sec-journey__card-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.sec-journey__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
}


.sec-journey__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.sec-journey__card-content {
    position: absolute;
    bottom: 2.4rem;
    left: 2.4rem;
    right: 2.4rem;
    color: #fff;
    z-index: 2;
    line-height: 1.3;
}

.sec-journey__line {
    display: block;
    width: 0.4rem;
    background: var(--c-primary);
    border-radius: 0 1rem 1rem 0;
    flex-shrink: 0;
}

.sec-journey__card-desc {
    font-size: 1.6rem;
    display: flex;
    gap: 1.3rem;
    align-items: unset;
    line-height: 1.6;
    color: #B9BBD0;
}

.sec-journey__card-title {
    font-size: 1.8rem;
    font-weight: bold;
    padding-left: 1.6rem;
    padding-bottom: .8rem;
}

@media (width >=1024px) {

    .sec-journey__title {
        font-size: 3.2rem;
    }

    .sec-journey__desc {
        font-size: 1.6rem;
    }

    .sec-journey__cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.4rem;
        align-items: start;
    }

    .sec-journey__card:nth-child(1),
    .sec-journey__card:nth-child(3) {
        margin-top: 4.8rem;
    }

    .sec-journey__card-desc {
        font-size: 1.4rem;
    }
}

@media (width >=1280px) {
    /* .sec-journey__card:nth-child(2) {
        margin-top: 10rem;
    }

    .sec-journey__card:nth-child(4) {
        margin-top: 15rem;
    } */
}