.article8 {
    margin-top: 80rem;
}

.adms {
    padding-bottom: 40rem;
}

.adms-title {
    margin-bottom: 50rem;
}

.adms-title h5 {
    font-size: 60rem;
}

.adms-title h5 span {
    color: var(--point-color);
    letter-spacing: -2rem;
}

.adms-title p {
    color: #888;
    font-size: 20rem;
    line-height: 1.7;
    margin-top: 30rem;
}

.adms-box-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60rem;
}
.adms-box-wrapper.one {
    grid-template-columns: repeat(1, 1fr);
}

.adms-box {
    width: 100%;
    padding: 60rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40rem;
    border-radius: 20rem;
    box-shadow: 0 15rem 50rem 0 rgba(80, 86, 131, .2);
}

.adms-box h6 {
    color: #222;
    font-size: 36rem;
    letter-spacing: -2rem;
}

.adms-box ul {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    padding-left: 15rem;
}

.adms-box ul li {
    color: #333;
    font-size: 20rem;
    font-weight: 500;
    line-height: 1.5;
    list-style-type: '- '
}

.adms-box ul li span {
    color: #aaa;
    font-size: 17rem;
    font-weight: 400;
    display: flex;
    margin-top: 7px;
}

.adms-box-text h5 {
    color: #222;
    font-size: 24rem;
    margin-bottom: 15rem;
}

.adms-box-text p {
    color: #333;
    font-size: 20rem;
    font-weight: 500;
    line-height: 1.7;
}

.adms-box-text p b {
    color: var(--main-color);
    font-weight: 600;
}

.adms-boxBtn {
    color: #fff;
    display: flex;
    width: 100%;
    padding: 20rem 40rem;
    font-size: 22rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    background-color: var(--main-color);
}

.adms-boxBtn i {
    font-weight: lighter;
}

.adms-boxBtn:hover {
    filter: brightness(105%);
}

.adms-prc-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30rem;
}

.adms-prc {
    padding: 60rem 20rem;
    align-items: center;
}

.adms-prc-num {
    color: var(--main-color);
    font-size: 19rem;
    font-weight: 700;
    font-family: 'Montserrat';
    margin-bottom: 20rem;
}

.adms-prc-icon {
    font-size: 50rem;
}

.adms-prc-text {
    text-align: center;
}

.adms-prc-text p {
    color: #888;
    font-size: 17rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 20rem;
}

.adms-prc-text p br {
    display: none;
}

.adms-table {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-collapse: collapse;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-spacing: 0;
}

.adms-table thead {
    color: #222;
    font-size: 15rem;
    font-weight: 600;
    border-top: 2px solid #333;
    background-color: #f1f1f1;
}

.adms-table td {
    color: #222;
    padding: 12rem;
    font-size: 16rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.adms-table.nonpay tbody tr td:first-child {
    background-color: #f1f1f1;
}

.adms-table-bottom {
    color: #aaa;
    font-size: 15rem;
    line-height: 1.4;
}


/*==================================================*/
@media (max-width: 768px) {
    .adms .article-wrapper {
        padding: 0 25px;
    }
    
    .adms-title p br {
        display: none;
    }
    
    .adms-box-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .adms-prc-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-overflow {
        width: 560rem;
        margin-right: -50rem;
        overflow-x: auto;
    }

    .adms-boxBtn {
        width: 100% !important;
    }
}


@media (max-width: 550px) {
    .adms-box ul li {
        font-size: 24rem;
    }

    .adms-box ul li span {
        font-size: 20rem;
    }

    .adms-prc {
        padding: 40rem 20rem;
    }

    .adms-prc-num {
        font-size: 24rem;
    }

    .adms-prc-icon {
        font-size: 60rem;
    }
}


@media (max-width: 450px) {
    .table-overflow {
        width: 500rem;
        margin-right: -100rem;
    }
}