.section7 {
    padding: 0;
    background: #F5F7FB;
}

.box7 {
    border-radius: 100px 0 0 0;
    overflow: hidden;
    display: flex;
}

.box7 .item {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.box7 .item .bj {
    position: relative;
    z-index: 1;
    width: 100%;
    transition: 0.5s;
}

.box7 .item:hover .bj {
    transform: scale(1.08);
}

.box7 .item .text {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box7 .item .text img {
    display: block;
    margin-bottom: 70px;
}

.box7 .item .text h1 {
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    color: #FFFFFF;
}

@media (max-width: 1200px) {
    .box7 .item .text img {
        display: block;
        width: 60px;
        margin-bottom: 30px;
    }

    .box7 .item .text h1 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .box7 {
        border-radius: 60px 0 0 0;
    }
}

@media (max-width: 640px) {
    .box7 {
        border-radius: 30px 0 0 0;
    }

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

    .box7 .item .bj {
        width: 100%;
        max-height: 240px;
        object-fit: cover;
    }
}