    .section5 {
        position: relative;
    }

    .section5 .indexTitle {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .Box5 {
        display: flex;
        flex-wrap: wrap;
    }

    .lt5 {
        width: 80%;
        display: flex;
        align-items: center;
    }

    .text5 {
        width: 50%;
        padding: 30px 60px;
        display: flex;
        flex-direction: column;
        grid-gap: 20px;
    }

    .text5 h1 {
        color: #fff;
        font-size: 16px;
    }

    .text5 h2 {
        font-weight: bold;
        color: #fff;
        font-size: 36px;
    }

    .text5 span {
        display: block;
        width: 50px;
        height: 2px;
        background: #fff;
    }

    .text5 h3 {
        font-size: 14px;
        color: #fff;
    }

    .text5 a {
        width: 160px;
        height: 40px;
        background: var(--color);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
        font-size: 14px;
    }

    .img5 {
        width: 50%;
        padding: 60px 0;
    }

    .rt5 {
        width: 20%;
        padding-left: 90px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .icon5 {
        width: 100%;
        display: flex;
        align-items: center;
        grid-gap: 10px;
    }

    .icon5 img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .icon5 span {
        display: flex;
        flex-direction: column;
        grid-gap: 10px;
    }

    .icon5 h1 {
        font-size: 20px;
    }

    .icon5 h2 {
        font-size: 14px;
        color: #aaa;
    }

    @media (max-width: 1440px) {
        .rt5 {
            padding-left: 60px;
        }

        .text5 {
            grid-gap: 15px;
        }

        .text5 h2 {
            font-size: 24px;
        }
    }

    @media (max-width: 1200px) {
        .lt5 {
            width: 100%;
            padding: 30px 20px;
            grid-gap: 30px;
        }

        .text5 {
            padding: 0;
        }

        .img5 {
            padding: 0;
        }

        .rt5 {
            padding-top: 30px;
            padding-left: 0;
            width: 100%;
            flex-direction: row;
            grid-gap: 15px;
        }

        .icon5 {
            width: auto;
        }

        .icon5 span {
            grid-gap: 5px;
        }

        .icon5 img {
            width: 30px;
            height: 30px;
        }

        .icon5 h1 {
            font-size: 18px;
        }

        .icon5 h2 {
            font-size: 12px;
        }
    }

    @media (max-width: 720px) {
        .lt5 {
            flex-wrap: wrap;
        }

        .text5 {
            width: 100%;
        }

        .img5 {
            width: 100%;
        }

        .rt5 {
            display: flex;
            flex-wrap: wrap;
        }

        .icon5 {
            width: calc(50% - 15px);
        }
    }

    @media (max-width: 380px) {
        .icon5 {
            display: flex;
            align-items: flex-start;
            flex-direction: column;
        }
    }