.section3 {
    display: block;
}

.Number3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px;
}

.item3 {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 15px;
    padding-left: 20px;
}

.item3:before {
    content: "";
    display: block;
    height: 100px;
    width: 50px;
    position: absolute;
    z-index: -1;
    left: 0;
    border: 2px solid var(--color);
}

.item3:hover::before {
    background: var(--color);
}

.item3 h1 {
    font-size: 60px;
    line-height: 1;
    color: #ffffff;
    font-weight: 700;
}

.item3 h2 {
    font-size: 18px;
    line-height: 1.2;
    color: #dddddd;
}

.Box3 {
    display: block;
    position: relative;
    width: 100%;
    z-index: 2;
    width: 100%;
    background: #fff;
    padding: 45px;
    margin-top: 90px;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.20);
}

.Box3 h1 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #555;
    font-weight: bold;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.Box3 h1:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 40px;
    background-color: #222222;
    content: "";
}

.desc3 {
    font-size: 14px;
    line-height: 2;
    color: #777777;
    text-indent: 2em;
    margin-bottom: 30px;
}

.Box3 a {
    font-weight: bold;
    color: #333;
}

.Box3 a:hover {
    color: var(--color);
}

@media (max-width: 720px) {
    .Number3 {
        padding: 30px 0;
    }

    .item3 {
        grid-gap: 5px;
        padding-left: 10px;
    }

    .item3:before {
        height: 60px;
        width: 40px;
    }

    .item3 h1 {
        font-size: 28px;
    }

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

    .Box3 {
        padding: 30px 15px;
    }
}

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

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