.box1 {
    margin-bottom: 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box1 .text {
    display: flex;
    flex-direction: column;
}

.box1 .text h1 {
    color: #333;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 75px;
}

.box1 .text .desc p {
    position: relative;
    color: #3D3D3D;
    font-size: 20px;
    line-height: 2;
    padding-left: 30px;
}

.box1 .text .desc p::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: var(--color);
    position: absolute;
    left: 0;
    top: calc(50% - 4px);
}

.box1 .img {
    width: 60%;
    overflow: hidden;
}

.box1 .img img {
    width: 100%;
    transition: 0.5s;
}

.box1 .img:hover img {
    width: 100%;
    transform: scale(1.08);
}

.box2 h1 {
    color: #333;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 70px;
}

.itemBox2 {
    margin-left: -5px;
    margin-right: -5px;
    display: flex;
    flex-wrap: wrap;
}

.itemBox2 .item {
    width: calc(33.3333% - 10px);
    margin: 0 5px;
}

.itemBox2 .item>img {
    width: 100%;
}

.itemBox2 .item a {
    background: #FAFAFA;
    padding: 35px 30px;
    color: #000;
    font-size: 20px;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 640px) and (min-width:0px) {
    .box1 {
        margin-bottom: 60px;
    }

    .box1 .text h1,
    .box2 h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .box1 img {
        width: 100%;
    }

    .itemBox2 .item {
        width: calc(50% - 10px);
    }

    .itemBox2 .item a {
        font-size: 16px;
        padding: 20px 15px;
    }

    .itemBox2 .item a img {
        width: 20px;
    }
}