.main_029 {
    width: 50%;
    margin: auto;
}
/* .main_029 img {
    width: 100%;
} */
.main_029 h2 {
    font-size: 2rem;
    padding-top: 1.5rem;
}
.main_029 h3 {
    font-size: 1.5rem;
    padding-top: 2rem;
}
.main_029 p {
    line-height: 3rem;
}
.box_1 {
    text-align: center;
    margin: 200px auto 20px auto;
}
/* .box_1 img {
    width: 25%;
} */
/* .box_2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    }
    
    .box_2_item1 { grid-area: 1 / 1 / 2 / 2; }
    .box_2_item2 { grid-area: 1 / 2 / 2 / 3; }
    .box_2_item3 { grid-area: 1 / 3 / 2 / 4; } */
.box_2 {
    display: flex;
    gap: 2.7rem;
    width: 30%;
    justify-content: center;
    margin: 10px auto;
}
.box_3 {
    display: flex;
    gap: 8px;
    width: 100%;
    align-items: center;
    margin-top: 10px;
}
.box_4 {
    display: flex;
    flex-direction:column;
    width: 100%;
}
.box_5 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    }
    
    .box_5-item1 { grid-area: 1 / 1 / 2 / 2; }
    .box_5-item2 { grid-area: 2 / 1 / 4 / 2; }
    .box_5-item3 { grid-area: 1 / 2 / 4 / 3; }

.box_6 {
    display:flex;
    gap: 10px;
    align-items: center;
}
.box_7 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    }
    
    .box_7-item1 { grid-area: 1 / 1 / 3 / 3; }
    .box_7-item2 { grid-area: 3 / 1 / 4 / 2; }
    .box_7-item3 { grid-area: 3 / 2 / 4 / 3; }
    .box_7-item4 { grid-area: 1 / 3 / 2 / 4; }
    .box_7-item5 { grid-area: 2 / 3 / 3 / 4; }
    .box_7-item6 { grid-area: 3 / 3 / 4 / 4; }

    .box_7 img {
        width: 100%;
    }

.box_11 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    /* flex-direction: row; */
    width: 20%;
    gap: 5px;
}
.box_11 img {
    width: 100%
}
.box_13_button {
    font-size: 1.375rem;
    background: #0bd;
    color: #fff;
    border-radius: 5px;
    padding: 18px 32px;
}

.box_13 {
    text-align: center;
    margin: 100px 0 150px 0;
}
@media screen and (max-width:1280px){
    .main_029 {
        width: 80%;
        margin-top: 110px;
    }
    .box_2 img {
        width: 100%;
    }
    .box_5 img {
        width: 100%;
    }
    .box_7 img {
        width: 100%;
    }
    .box_11 img {
        width: 100%;
    }
}

@media screen and (max-width:500px){
    .main_029 {
        width: 80%;
        margin-top: 110px;
    }
    .box_2 {
        gap: 1rem;
    }
    .box_3 {
        flex-direction :column;
    }
    .box_5 {
        width: 80%;
    }
    .box_6 {
        flex-direction :column;
    }
    .box_7 {
        order: 1;
        width: 80%;
    }
    .box_8 {
        order: 0;
    }
}