.section2 {
    position: relative;
    overflow: hidden;
}

.section2 .box2BjImg {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section2 .box2 {
    position: relative;
    z-index: 2;
    padding: 140px 0;
    width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.section2 .box2 .iconBox {
    width: 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.section2 .box2 .iconBox .item {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.section2 .box2 .iconBox .item span {
    width: 200%;
    height: 100%;
    position: relative;
    right: 100%;
    transition: 0.5s;
    display: flex;
}

.section2 .box2 .iconBox .item:hover span {
    right: 0;
}

.section2 .box2 .iconBox .item h1 {
    position: relative;
    width: 50%;
    height: 100%;
    font-size: 16px;
    background: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 15px;
    text-align: center;
}

.section2 .box2 .iconBox .item .img {
    position: relative;
    width: 50%;
    height: 100%;
    background: #fff;
    padding: 35px 25px;
    border: 2px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section2 .box2 .iconBox .item .img h2 {
    font-size: 18px;
    width: 100px;
    text-align: center;
    color: #676767;
}

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

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

@media (max-width: 1200px) {
    .section2 .box2 {
        width: 900px;
        padding: 90px 0;
    }

    .section2 .box2 .iconBox {
        width: 50%;
        grid-gap: 15px;
    }
}

@media (max-width: 992px) {
    .section2 .box2 {
        padding: 60px var(--container);
        background: #fff;
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .section2 .textBox {
        margin-bottom: 30px;
    }

    .section2 .box2 .iconBox {
        width: 100%;
        max-width: 700px;
    }

    .section2 .box2 .iconBox .item .img {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
}

@media (max-width: 640px) {
    .section2 .box2 {
        padding: 45px var(--container);
    }

    .section2 .box2 .iconBox .item .img {
        padding: 15px 0px;
    }

    .section2 .box2 .iconBox .item .img img {
        width: 30px;
    }

    .section2 .box2 .iconBox .item .img h2 {
        font-size: 16px;
        max-width: 80px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}