/* 
---------------------------------------------
                Solution02
--------------------------------------------- 
*/

/* cont2 */
/* steps */
.steps.cards {
    margin-top: 60px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.steps .card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.steps .thumb {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
}

.steps .thumb img {
    display: block;
    width: 90%;
    height: auto;
}

.steps .cap {
    margin-top: 30px;
    text-align: center;
    font-size: var(--font-xl);
    font-weight: 600;
    line-height: 1.6;
    white-space: pre-line;
}

.steps .desc {
    margin-top: 2px;
    font-size: var(--font-lg);
    font-weight: 400;
}

@media (max-width: 1440px) {
    .steps.cards {
        gap: 40px;
    }

    .steps .cap {
        font-size: var(--font-lg);
    }

    .steps .desc {
        font-size: var(--font-md);
    }
}

@media (max-width: 1280px) {
    .steps.cards {
        gap: 36px;
        grid-template-columns: repeat(3, 1fr);
    }

    .steps .thumb img {
        width: 85%;
    }

    .steps .cap {
        margin-top: 24px;
    }
}

@media (max-width: 1024px) {
    .steps.cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .steps .thumb img {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .case-slider {
        overflow: hidden;
    }

    .case-swiper {
        overflow: hidden;
    }

    .steps.cards {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 40px;
    }

    .steps .card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 18px;
    }

    .steps .thumb {
        flex: 0 0 90px;
        border-radius: 16px;
    }

    .steps .thumb img {
        width: 100%;
        max-width: 80px;
        height: auto;
    }

    .steps .cap {
        margin-top: 0;
        line-height: 1.2;
    }

    .steps .desc {
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .steps.cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .steps .card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 6px 0;
        gap: 10px;
    }

    .steps .thumb {
        flex: 0 0 auto;
        border-radius: 14px;
    }

    .steps .thumb img {
        width: 80%;
        max-width: 80px;
    }

    .steps .cap {
        font-size: var(--font-md);
    }

    .steps .desc {
        font-size: var(--font-base);
    }
}

/* cont3 */
.cont3 {
    background-image: url(../../img/solution/content-bg04.jpg);
}

.cont3 .container {
    display: block;
}

.cont3 .title {
    color: white;
}

.cont3 .right {
    display: flex;
    justify-content: flex-end;
}

.cont3 .cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cont3 .card {
    width: 740px;
    padding: 48px 50px;
    display: flex;
    gap: 60px;
    border-radius: 20px;
}

.cont3 .card:nth-child(1) {
    background: var(--secondary-100);
}

.cont3 .card:nth-child(2) {
    background: var(--primary-200);
}

.cont3 .card:nth-child(3) {
    background: #D4F4FF;
}

.cont3 .card:nth-child(odd) {
    margin-left: 80px;
}

.cont3 .card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.cont3 .texts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cont3 .cap {
    font-size: var(--font-2xl);
    font-weight: 600;
    line-height: 36px;
}

.cont3 .desc {
    font-size: var(--font-lg);
    font-weight: 400;
    line-height: 32px;
}

@media (max-width: 1440px) {
    .cont3 .card {
        width: 680px;
        padding: 42px 44px;
        gap: 48px;
    }

    .cont3 .card img {
        width: 90px;
        height: 90px;
    }

}

@media (max-width: 1280px) {
    .cont3 .card {
        width: 600px;
        padding: 38px 40px;
        gap: 40px;
    }

    .cont3 .cards {
        gap: 20px;
    }

    .cont3 .card:nth-child(odd) {
        margin-left: 50px;
    }

    .cont3 .card img {
        width: 80px;
        height: 80px;
    }

    .cont3 .cap {
        font-size: var(--font-xl);
        line-height: 1.5;
    }

    .cont3 .desc {
        font-size: var(--font-md);
        line-height: 1.55;
    }
}

@media (max-width: 1024px) {
    .cont3 .cont-lead {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .cont3 .right {
        justify-content: unset;
        align-items: stretch;
        width: 100%;
    }

    .cont3 .cards {
        gap: 24px;
    }

    .cont3 .card {
        width: auto;
        padding: 30px 32px;
        gap: 28px;
    }

    .cont3 .card:nth-child(odd) {
        margin-left: 0;
    }

    .cont3 .card img {
        width: 70px;
        height: 70px;
    }

    .cont3 .cap {
        font-size: var(--font-lg);
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .cont3 .cards {
        gap: 20px;
    }

    .cont3 .card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        padding: 26px 28px;
        gap: 16px;
    }

    .cont3 .card img {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .cont3 .card {
        padding: 22px 24px;
        gap: 14px;
        border-radius: 14px;
    }

    .cont3 .card img {
        width: 58px;
        height: 58px;
    }

    .cont3 .texts {
        gap: 10px;
    }

    .cont3 .cap {
        font-size: var(--font-md);
        line-height: 1.4;
    }

    .cont3 .desc {
        font-size: var(--font-base);
        line-height: 1.5;
    }
}

/* cont4 */
.cont4 .cap {
    font-size: var(--font-2xl);
}

.steps .num {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    background: var(--bluegray-500);
    border-radius: 999px;
    color: white;
    font-size: var(--font-lg);
    font-weight: 300;
    position: relative;
}

@media (max-width: 1440px) {
    .cont4 .cap {
        font-size: var(--font-xl);
    }

    .steps .num {
        width: 46px;
        height: 46px;
        font-size: var(--font-lg);
    }
}

@media (max-width: 1280px) {
    .cont4 .steps.cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }

    .cont4 .cap {
        font-size: var(--font-lg);
    }

    .steps .num {
        width: 44px;
        height: 44px;
        font-size: var(--font-base);
    }
}

@media (max-width: 1024px) {
    .cont4 .steps.cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .cont4 .cap {
        font-size: var(--font-lg);
    }

    .steps .num {
        width: 42px;
        height: 42px;
        font-size: var(--font-base);
    }
}

@media (max-width: 768px) {
    .cont4 .steps.cards {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 40px;
    }

    .cont4 .cap {
        font-size: var(--font-md);
        line-height: 1.5;
    }

    .steps .num {
        width: 38px;
        height: 38px;
        font-size: var(--font-sm);
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .cont4 .steps.cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cont4 .cap {
        font-size: var(--font-md);
    }

    .steps .num {
        width: 36px;
        height: 36px;
        font-size: var(--font-sm);
        margin-bottom: 6px;
    }
}

/* cont5 */
.cont5 {
    background: url(../../img/solution/content-bg05.jpg) center/cover no-repeat;
    color: white;
}

.cont5 .cards {
    display: flex;
    gap: 40px;
}

.cont5 .card {
    position: relative;
    width: 100%;
    height: 406px;
    padding: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.cont5 .card:first-child {
    background: var(--primary);
}

.cont5 .label {
    padding: 5px 9px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    font-size: var(--font-base);
    font-weight: 200;
}

.cont5 .card:first-child .label {
    background: var(--primary-500);
}

.cont5 .check {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
}

.cont5 .check::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #EFF2FE;
}

.cont5 .check::after {
    content: "";
    position: absolute;
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3.5 6.345 6.129 9.237 10.5 4.768' stroke='black' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") no-repeat center/12px 12px;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3.5 6.345 6.129 9.237 10.5 4.768' stroke='black' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") no-repeat center/12px 12px;
}

.cont5 .card:first-child .check {
    color: var(--primary)
}

.cont5 .cap {
    margin-top: 20px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5
}

.cont5 .desc {
    margin-top: 10px;
    color: white;
    font-size: var(--font-lg);
    font-weight: 400;
    line-height: 1.6;
}

.cont5 .icon {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 86px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1440px) {
    .cont5 .card {
        max-width: 720px;
        height: 400px;
        padding: 40px;
        border-radius: 20px;
    }

    .cont5 .cap {
        font-size: 30px;
        line-height: 1.5;
    }

    .cont5 .desc {
        font-size: var(--font-lg);
        line-height: 1.6;
    }

    .cont5 .icon {
        width: 86px;
        right: 36px;
        bottom: 36px;
    }
}

@media (max-width: 1280px) {
    .cont5 .card {
        max-width: 680px;
        height: 380px;
        padding: 36px;
    }

    .cont5 .cap {
        font-size: 28px;
    }

    .cont5 .desc {
        font-size: var(--font-md);
    }

    .cont5 .icon {
        width: 78px;
        right: 32px;
        bottom: 32px;
    }
}

@media (max-width: 1024px) {
    .cont5 .cont-lead {
        flex-direction: column;
        gap: 40px;
    }

    .cont5 .card {
        max-width: 640px;
        height: auto;
        padding: 32px;
        border-radius: 18px;
    }

    .cont5 .cap {
        font-size: 26px;
        line-height: 1.5;
    }

    .cont5 .desc {
        font-size: var(--font-base);
        line-height: 1.55;
    }

    .cont5 .icon {
        width: 70px;
        right: 28px;
        bottom: 28px;
    }
}

@media (max-width: 768px) {
    .cont5 .card {
        max-width: 100%;
        height: auto;
        padding: 28px;
        border-radius: 16px;
    }

    .cont5 .label {
        font-size: var(--font-sm);
        gap: 6px;
        padding: 4px 8px;
    }

    .cont5 .cap {
        font-size: 24px;
        line-height: 1.45;
    }

    .cont5 .desc {
        font-size: var(--font-base);
        line-height: 1.5;
    }

    .cont5 .icon {
        width: 62px;
        right: 22px;
        bottom: 22px;
    }
}

@media (max-width: 480px) {
    .cont5 .card {
        padding: 22px;
        border-radius: 14px;
    }

    .cont5 .label {
        font-size: var(--font-xs);
        padding: 3px 6px;
    }

    .cont5 .cap {
        margin-top: 14px;
        font-size: 22px;
        line-height: 1.4;
    }

    .cont5 .desc {
        font-size: var(--font-sm);
        line-height: 1.45;
    }

    .cont5 .icon {
        width: 52px;
        right: 18px;
        bottom: 18px;
    }
}

/* cont6 */
.cont6 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 70px;
    text-align: center;
}

.cont6 .title {
    font-weight: 600;
}

.cont6 .lead {
    margin-top: 20px;
    font-size: var(--font-xl);
    font-weight: 500;
    white-space: pre-line;
}

.cont6 .btn-wrap {
    display: flex;
    gap: 21px;
}

.cont6 .case-slider {
    padding: 100px 0 0;
    position: relative;
}

.cont6 .blur-band {
    position: absolute;
    left: 0;
    right: 0;
    top: 200px;
    height: 130px;
    background: var(--primary-400);
    border-radius: 80px;
    filter: blur(100px);
    opacity: .4;
    z-index: -1;
}

.case-swiper {
    position: relative;
    padding: 10px 0;
    overflow: visible;
}

.case-swiper .swiper-wrapper {
    align-items: stretch;
    transition-timing-function: linear !important
}

.case-swiper .swiper-slide {
    width: 330px;
    height: auto;
}

.case-swiper {
    cursor: grab;
}

.case-swiper:active {
    cursor: grabbing;
}

.case-swiper * {
    cursor: inherit;
}

.case-card {
    height: 347px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--black-500);
}

.case-card .thumb {
    width: 100%;
    height: 180px;
    border: 1px solid var(--black-500);
    border-radius: 20px;
    overflow: hidden;
}

.case-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-card .meta {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.case-card .cap {
    font-size: var(--font-lg);
    line-height: 32px;
    font-weight: 600;
}

.chip {
    width: fit-content;
    padding: 4px 8px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    border-radius: 6px;
    font-size: var(--font-sm);
    font-weight: 500;
}

.chip.blue {
    background: var(--primary-200);
    color: var(--primary-700);
}

.chip.green {
    background: rgba(185, 251, 238, .6);
    color: var(--green-600);
}

.chip.cyan {
    background: rgba(189, 238, 254, .6);
    color: var(--secondary-600);
}

@media (max-width: 1440px) {
    .cont6 .container {
        gap: 56px;
    }

    .case-card {
        height: 330px;
        padding: 18px;
        border-radius: 18px;
    }

    .case-card .thumb {
        height: 160px;
        border-radius: 18px;
    }
}

@media (max-width: 1280px) {
    .cont6 .container {
        gap: 48px;
    }

    .case-card {
        height: 310px;
        padding: 16px;
    }

    .case-card .thumb {
        height: 150px;
    }
}

@media (max-width: 1024px) {
    .cont6 .container {
        gap: 40px;
    }

    .cont6 .btn-wrap {
        gap: 16px;
    }

    .case-card {
        height: 290px;
        padding: 14px;
    }

    .case-card .thumb {
        height: 140px;
    }

    .case-card .cap {
        font-size: var(--font-md);
        line-height: 1.45;
    }
}

@media (max-width: 768px) {
    .cont6 .container {
        gap: 28px;
    }

    .cont6 .lead {
        font-size: var(--font-md);
        line-height: 1.45;
        white-space: normal;
    }

    .cont6 .btn-wrap {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .case-swiper .swiper-slide {
        width: 270px;
    }

    .case-card {
        height: auto;
        padding: 14px;
        border-radius: 16px;
    }

    .case-card .thumb {
        height: 130px;
    }

}

@media (max-width: 480px) {
    .cont6 .container {
        gap: 22px;
    }

    .cont6 .lead {
        font-size: var(--font-sm);
        line-height: 1.45;
    }

    .cont6 .btn-wrap {
        gap: 10px;
    }

    .case-swiper .swiper-slide {
        width: 240px;
    }

    .case-card {
        padding: 12px;
        border-radius: 14px;
    }

    .case-card .thumb {
        height: 120px;
    }

    .case-card .cap {
        font-size: var(--font-base);
        line-height: 1.45;
    }
}