.section7 {
    padding-top: 90px;
    position: relative;
    z-index: 2;
}

.Box7 {
    position: relative;
    z-index: 2;
}

.item7Box {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-left: var(--container) solid #fff;
    border-right: var(--container) solid #fff;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.section7.on .item7Box {
    border-left: 0 solid #fff;
    border-right: 0 solid #fff;
}

.item7 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    grid-gap: 100px;
    padding-bottom: 60px;
}

.item7 li {
    width: 23vw;
    padding: 30px;
    position: relative;
    top: 0;
    list-style: none;
    z-index: 2;
    display: flex;
    align-items: center;
    grid-gap: 25px;
    transition: 0.5s;
}

.item7 li.on {top: -15px;}

.item7 li * {
    transition: 0.5s;
}

.item7 li .icon7 {
    position: relative;
    z-index: 5;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item7 li.on .icon7 {
    border: 1px solid rgba(0, 7, 71, 0.5);
}

.item7 li .icon7 img {
    width: 36px;
    filter: brightness(0) invert(1);
}

.item7 li.on img {
    filter: brightness(1) invert(0);
}

.item7 li .text7 {
    width: calc(100% - 95px);
    position: relative;
    z-index: 5;
}

.item7 li .text7 h1 {
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.item7 li.on h1 {
    color: var(--color2);
}

.item7 li .text7 h2 {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.item7 li.on h2 {
    color: #000;
}

.item7 .blur {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1.56vw);
    -webkit-backdrop-filter: blur(1.56vw);
}

.item7 li:before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: -1px;
    width: 0;
    height: .16vw;
    background-color: var(--color2);
    transition: all .5s;
    z-index: 2;
}

.item7 li.on:before {
    width: 100%;
}

.item7 li:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: .35;
    transition: all .5s;
}

.item7 li.on:after {
    opacity: 1;
}

.img7 {
    position: relative;
    z-index: 1;
    width: 100%;
}

.img7 img {
    width: 100%;
    display: none;
}

.img7 img.on {
    display: block;
}

@media (max-width: 1540px) {
    .item7 {
        grid-gap: 30px;
    }

    .item7 li {
        padding: 20px;
        width: calc((100vw - var(--container) * 2 - 90px) / 3);
    }

    .item7 li .text7 h1 {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .img7 img {
        height: 460px;
        object-fit: cover;
    }
}

@media (max-width: 900px) {
    .item7 {
        flex-direction: column;
        padding-bottom: 30px;
        grid-gap: 10px;
    }

    .item7 li {
        padding: 10px;
        width: calc(100vw - var(--container) * 2 - 30px);
    }

    .img7 img {
        height: 640px;
        object-fit: cover;
    }
}

@media (max-width: 720px) {
    .img7 img {
        height: 500px;
    }

    .item7 {
        padding-bottom: 10px;
        grid-gap: 5px;
    }

    .item7 li {
        grid-gap: 15px;
    }

    .item7 li .icon7 {
        width: 35px;
        height: 35px;
    }

    .item7 li .icon7 img {
        width: 20px;
    }

    .item7 li .text7 {
        width: calc(100% - 50px);
    }

    .item7 li .text7 h1 {
        font-size: 16px;
    }

    .item7 li .text7 h2 {
        font-size: 14px;
    }

    .item7 li:after {
        background-color: #000;
        opacity: 0.1;
    }

    .item7 li.on:after {
        background-color: #fff;
        opacity: 1;
    }
}