.mobile{
    display: none;
}




.downloadMOBILE{
    display: none;
    background-color: #60ab82;
    border-radius: 5px;
    width: 130px;
    height: 40px;
}
.downloadMOBILE a{
    width: 100%;
    height: 100%;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-weight: 700;
}


main{
    margin: 100px auto !important;
}

main .title_t{
font-size: 3rem;
font-weight: 800;
text-align: center;
}
main span{
    color: #23674e;
}
.img_moumzip{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}
section div{
    margin: 50px 0;
    /* border-bottom: 1px solid #ccc; */
    /* padding-bottom: 2.5rem; */
    /* box-sizing: border-box; */
}
section div>p{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
table{
    width: 100%;
    /* background-color: aquamarine; */
    border-collapse: collapse;
    border-top: 2px solid #ffe760;
    border-bottom: 2px solid #ffe760;
    /* border-right: 1px solid #fff5c4; */
}
th{
    background-color: #fff09a;
    padding: 25px 20px;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 0.9rem;
    width: 20%;
}
td{
    font-size: 0.9rem;
    padding: 1rem;
    /* background-color: #eee; */
    border-bottom: 1px solid #fff5c4;
}

h6{
    font-size: 1.1rem;
    text-align: center;
}
.grid-card{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 0;
}
.grid-card p{
    font-size: 0.9rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0;
}
.card{
    background-color: #ebfdcb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 1rem;
    border-radius: 1rem;
    border: 3px solid #d8ff9a;
    margin: 0;
}
h5{
    font-size: 1.2rem;
    color: #23674e;
}

.grid-card02{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}
.grid-card02 li{
    background-color: #eee;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-card02 p{
    text-align: center;
}
.tree_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.downloadPC a{
    color: #60ab82;
    font-weight: 700;
}
@media screen and (max-width:1024px) {
    .tree_icon img{
        width: 1.5rem;
    }
    main p{
        font-size: 2rem;
    }
    main{
        margin: 50px auto !important;
    }
}
@media screen and (max-width:860px) {
    .mobile{
        display: block;
    }
    .pc{
        display: none;
    }
    .grid-card{
        gap: 20px;
    }
    .downloadMOBILE{
        display: block;
        margin: 10px 0;
    }
    .downloadPC{
        display: none;
    }
}
@media screen and (max-width:550px) {
    .grid-card{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width:375px) {
    main p{
        font-size: 1.5rem;
    }
}

/* done 02 */
.img_moumzip{
    margin-top: 3rem;
}
.title_s{
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}
@media screen and (max-width:860px) {
    main .title_t{
        font-size: 2rem;
    }
    .title_s{
        font-size: 1.3rem;
        margin-top: 5px;
    }
    .img_moumzip{
        gap: 15px;
        margin-top: 2rem;
    }
}
@media screen and (max-width:550px) {
    th{
        width: 30%;
        padding: 25px 10px;
    }
}
@media screen and (max-width:375px) {
    main .title_t{
        font-size: 1.5rem;
    }
    .title_s{
        font-size: 0.8rem;
    }
    .img_moumzip{
        gap: 3px;
        margin-top: 1rem;
    }
}




/* link btn */
.link_btn_w{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.link_btn{
    display: block;
    padding: 1rem 2rem;
    background-color: #61b03d;
    color: #fff;
    border-radius: 5px;
    font-size: 1.25rem;
    font-weight: bold;
    box-sizing: border-box;
}
@media screen and (max-width:550px) {
    .link_btn_w{
        flex-direction: column;
        align-items: center;
    }
    .link_btn{
        width: 200px;
        text-align: center;
    }
}