    /* Section5 */
    .section5 {
        position: relative;
        padding: 0;
    }

    .Box5 {
        position: relative;
        width: 100%;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
    }

    .text5 {
        width: 50%;
        height: auto;
        padding: 90px 60px;
        padding-left: var(--container);
        background: var(--color2);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .text5 .indexTitle {
        color: #fff;
    }

    .text5 h1 {
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 30px;
        color: #FFFFFF;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .text5 h2 {
        font-size: 16px;
        color: #E3E3E3;
    }

    .text5 a {
        margin-top: 75px;
        color: #fff;
        border: 1px solid #fff;
    }

    .img5 {
        width: 50%;
        height: auto;
    }

    .img5 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media (max-width: 1200px) {
        .text5 {
            padding: 60px 30px;
            padding-left: var(--container);
        }

        .text5 h1 {
            font-size: 24px;
            margin-top: 20px;
            margin-bottom: 10px;
        }

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

        .text5 a {
            margin-top: 30px;
        }
    }

    @media (max-width: 800px) {
        .text5 {
            width: 100%;
            align-items: center;
            padding: 60px var(--container);
        }

        .img5 {
            width: 100%;
        }

        .text5 h1 {
            font-size: 18px;
            text-align: center;
        }

        .text5 h2 {
            text-align: center;
        }
    }

    @media (max-width: 460px) {}

    @media (max-width: 380px) {}