    .section5 {
        position: relative;
        background: url(/assets/images/images1.png) no-repeat center;
        background-size: cover;
        padding-top: 120px;
    }

    .Box5 {
        padding-left: var(--container);
        padding-right: var(--container);
        position: relative;
    }

    .box5item {
        margin-top: 120px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 30px;
    }

    .item5 {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
    }



    .item5 .text5 {
        position: absolute;
        z-index: 3;
        top: 45px;
        transition: 0.5s;
    }

    .item5:hover .text5 {
        top: 15px;
    }

    .item5 .text5 h2 {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
        text-transform: uppercase;
        color: #FFFFFF;
        opacity: 0.8;
        margin-bottom: 10px;
    }

    .item5 .text5 h1 {
        font-weight: 700;
        font-size: 30px;
        line-height: 1;
        text-align: center;
        color: #FFFFFF;
    }


    .item5 .img5 {
        position: relative;
        z-index: 1;
    }

    .item5 .img5 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 1;
    }

    .item5 .img5 .img5_1 {
        overflow: hidden;
        border-radius: 6px;
        position: relative;
        width: 100%;
        height: 33vw;
        object-fit: cover;
        transition: 0.5s;
        top: 0;
    }

    .item5 .img5 .img5_1::after {
        transition: 0.5s;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 3;
        background: linear-gradient(360deg, rgba(255, 255, 255, 0) 56%, #EB3D00 100%);
        filter: drop-shadow(6px 5px 11.3px rgba(61, 0, 0, 0.63));
        opacity: 0;
    }

    .item5:hover .img5 .img5_1::after {
        opacity: 1;
    }

    .item5:hover .img5 .img5_1 {
        height: 35vw;
        top: -2vw;
    }

    .item5 .img5 .img5_2 {
        position: relative;
        transition: 0.5s;
        top: 0;
    }

    .item5:hover .img5 .img5_2 {
        top: -2vw;
    }




    @media (max-width: 1660px) {
        .box5item {
            margin-top: 60px;
        }
    }

    @media (max-width: 1440px) {
        .box5item {
            margin-top: 60px;
            grid-gap: 15px;
        }

        .item5 .text5 h1 {
            font-size: 24px;
        }

    }

    @media (max-width: 1200px) {
        .section5 {
            padding-top: 90px;
        }

        .item5 .text5 {
            padding: 0 15px;
        }

        .item5 .text5 h2 {
            height: 42px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }

    @media (max-width: 900px) {
        .box5item {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            grid-gap: 30px;
        }

        .item5 {
            width: calc(33.333% - 30px);
        }

        .item5 .img5 .img5_1 {
            height: 58vw;
        }

        .item5:hover .img5 .img5_1 {
            height: 60vw;
        }
    }

    @media (max-width: 720px) {
        .item5 .text5 h1 {
            font-size: 20px;
        }

        .section5 {
            padding-top: 60px;
        }

        .box5item {
            margin-top: 30px;
            grid-gap: 10px;
        }

        .item5 {
            width: calc(33.333% - 10px);
        }

    }

    @media (max-width: 460px) {
        .item5 {
            width: calc(50% - 10px);
        }

        .item5 .img5 .img5_1 {
            height: 68vw;
        }

        .item5:hover .img5 .img5_1 {
            height: 70vw;
        }
    }