.home-banner-title {
    padding-top: 184px;
    text-align: center;
    h1 {
        font-weight: 700;
        line-height: 48px;
        font-size: 40px;
        color: #fff;
        display: block;
        margin: 0 auto;
    }
}

.home-content {
    width: 1280px;
    margin: 0 auto;
    padding: 64px 40px;
}

.home-banner-desc {
    margin: 0 auto;
    width: 800px;
    text-align: center;
    p {
        margin-top: 40px;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
    }

    span {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
    }

}

.home-content-text {
    margin-top: 6px;

    span {
        display: block;
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
    }

    p {
        margin-top: 8px;
        font-size: 16px;
        line-height: 24px;
    }
}

.home-content-desc {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    margin-bottom: 64px;

    img {
        width: 520px;
        height: 480px;
        object-fit: cover;
    }
}

.home-content-desc-right {
    width: 600px;

    strong {
        font-size: 20px;
        line-height: 32px;
    }

    p {
        margin: 0;
        font-size: 16px;
        line-height: 24px;
    }

    div:last-child {
        margin-top: 40px;
    }
}

.home-plat-text {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
}

.home-icon-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    margin-top: 32px;

    img {
        width: 96px;
        height: 96px;
        object-fit: contain;
        margin-right: 24px;
    }

    strong {
        font-size: 20px;
        line-height: 24px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
        margin-top: 8px;
    }
}

.home-icon {
    display: flex;
    justify-content: space-between;
    border-radius: 16px;
    width: 590px;

}

.home-plat-text2 {
    font-size: 14px;
    line-height: 24px;
    margin-top: 8px;
    margin-bottom: 64px;
}

.home-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;

    img {
        width: 560px;
        height: 440px;
        object-fit: contain;
    }

    strong {
        display: block;
        color: #E84040;
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    p, li {
        margin: 0;
        font-size: 16px;
        line-height: 24px;
    }

    div {
        width: 560px;
    }

    li {
        padding-left: 20px;
        position: relative;
    }

    li::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 4px;
        background-color: #333;
        border-radius: 50%;
        position: absolute;
        top: 10px;
        left: 8px;
    }
}

.home-feature-reverse {
    flex-direction: row-reverse;
}

.home-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;

    div {
        border: 1px solid #D0D0D0;
        background: #E84040;
        color: #FFFFFF;
        padding: 12px 0;
        width: 180px;
        height: 48px;
        text-align: center;
        border-radius: 4px;
    }

    a {
        cursor: pointer;
    }
}

.home-banner.banner_home {
    height: 480px;
}

@media only screen and (max-width: 640px) {
    .home-banner-title {
        padding-top: 110px;

        h1 {
            font-size: 24px;
        }
    }

    .home-banner-desc {
        width: 100%;
        padding: 0 16px;

        p {
            margin-top: 24px;
        }
    }

    .home-banner-span {
        display: block;
        margin-top: 24px;
    }

    .home-content {
        width: 100%;
        padding: 32px 16px;
    }

    .home-block {
        display: block;
    }

    .home-text-center {
        text-align: center;
        font-size: 24px;
        line-height: 32px;
    }

    .home-content-text {
        span, p {
            margin-left: 0;
        }

        p {
            width: 100%;
        }

    }

    .home-title {
        text-align: center;
        display: block;
    }

    .home-content-desc {
        flex-direction: column;
        margin-bottom: 32px;

        img {
            width: 100%;
            height: 343px;
        }
    }

    .home-content-desc-right {
        width: 100%;
        margin-top: 32px;
    }

    .home-icon-wrap {
        flex-direction: column;
        gap: 16px;
    }

    .home-icon {
        width: 100%;

        img {
            width: 48px;
            height: 48px;
            margin-right: 16px;
        }

        div {
            width: unset;
        }
    }

    .home-plat-text2 {
        margin-bottom: 32px;
    }

    .home-feature {
        flex-direction: column;
        margin-bottom: 32px;

        img {
            width: 100%;
            height: 245px;
            margin-bottom: 16px;
            object-fit: fill;
        }

        div {
            width: 100%;
        }
    }

    .home-bottom {
        width: 100%;

        div {
            flex: 1 1 calc((100% - 24px) / 2);
        }
    }
}