    .section5 {
        position: relative;
    }

    .section5 .title5 {
        color: #fff;
        font-size: 32px;
        line-height: 1.5;
        text-align: center;
    }

    .Box5 {
        margin-top: 35px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10px;
    }

    .item5 {
        position: relative;
        top: 0;
        width: 100%;
        border: 1px solid #ffffff4d;
        padding: 40px 20px;
        display: flex;
        align-items: center;
        transition: 0.5s;
    }

    .item5 img {
        width: 50px;
        transition: 0.5s;
    }

    .desc5 {
        padding-left: 60px;
    }

    .desc5 h1 {
        font-size: 24px;
        color: #fff;
        line-height: 1.5;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .desc5 h2 {
        font-size: 16px;
        color: #fff;
        font-weight: bold;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .item5:hover {
        border: 1px solid var(--color);
        background: var(--color);
        top: -10px;
    }

    .item5:hover img {
        filter: brightness(0) invert(1);
    }

    @media (max-width: 1200px) {
        .item5 {
            padding: 20px;
        }

        .item5 img {
            width: 45px;
        }

        .desc5 {
            padding-left: 20px;
        }

        .desc5 h1 {
            font-size: 18px;
            margin-bottom: 5px;
        }

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

    @media (max-width: 720px) {
        .Box5 {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        .desc5 h2 {
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }
    }

    @media (max-width: 480px) {
        .item5 {
            flex-wrap: wrap;
        }

        .desc5 {
            width: 100%;
            padding: 0;
            padding-top: 15px;
        }
    }