.dp-pc {
    display: block;
}

.dp-sp {
    display: none;
}

a {
    text-decoration: none;
}

*,
body {
    font-size: 16px;
    position: relative;
    box-sizing: border-box;
    scroll-behavior: smooth;
    padding: 0px;
    margin: 0px;
    width: 100%;
    line-height: 1.7;
    letter-spacing: 1.5;
    color: #fff;
    font-family: Roboto;
    cursor: pointer;
}

body {
    background-image: url(./../images/bg-main.png);
    background-position: center;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100vh;
    margin-top: 0px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* Header */

header {
    background-image: url(./../images/bg-header.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 160px;
}

.wp-header {
    display: flex;
    justify-content: center;
    position: relative;
}

.wp-header .thumbnail {
    max-width: 250px;
    width: 100%;
    height: auto;
    padding: 15px 0px;
}

.wp-header .thumbnail img {
    width: 100%;
    height: auto;
}

/* Main content */
.title-top {
    width: 70%;
    margin: auto;
    padding-top: 30px;
}

.support-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3%;
}

.support-content .support-btn-right {
    width: 60%;
}

.support-content .support-btn-left {
    width: 36%;
}

.support-btn-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 15px 0px 0px 0px;
}

.support-btn-right .support-box {
    background-image: url(./../images/bg-new88-black.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.support-btn-right .support-box:hover {
    background-image: url(./../images/box-cskh.png);
    border-radius: 10px;
    color: #fff;
}

.support-btn-right .support-box .thumbnail {
    width: 40%;
    height: auto;
}

.support-btn-right .support-box .thumbnail img {
    width: 100%;
    height: auto;
}

.support-btn-right .support-box .title-top {
    text-align: center;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    padding-top: 5px;
    width: 100%;
}

.support-btn-right .support-box .title-bottom {
    text-align: center;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    padding-top: 0px;
}

.support-btn-right .support-box:hover .title-top,
.support-btn-right .support-box .title-bottom {
    color: #fff;
}

.support-btn-left .sub-title {
    font-weight: 700;
    color: #fff;
    font-size: 22px;
    padding-bottom: 15px;
}



.support-btn-left .list-btn-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    row-gap: 10PX;
    padding: 10px 55px 10px 50px;
    border: 1px solid #fff;
    border-radius: 20px;
    background-color: #5D667E;
}

.support-btn-left .list-btn-box .link-support {
    max-width: 100px;
    width: 100%;
    max-height: 150px;
    height: 100%;
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-items: center;
    margin: auto;
    position: relative;
    padding-bottom: 40px;
    cursor: pointer;
}

.support-btn-left .list-btn-box .link-support .sub-title {
    position: absolute;
    top: 110px;
    z-index: 1;
    left: auto;
    height: auto;
    background-color: #FFAD01;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    color: #000;
    font-weight: 700;
    padding: 0px;
}

/* Gray Scale */
.support-btn-left .list-btn-box .link-support img,
.support-btn-left .list-btn-box .link-support .sub-title {
    -webkit-filter: sepia(0%);
    filter: sepia(0%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.support-btn-left .list-btn-box .link-support:hover img {
    -webkit-filter: sepia(100);
    filter: sepia(100);
}

.support-btn-left .list-btn-box .link-support:hover .sub-title {
    -webkit-filter: green(0);
    filter: sepia(0);
}

/* Link Redirect */

.title-link-redirect {
    font-size: 35px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
}

.title-link-redirect::before {
    content: "";
    background-image: url(./../images/line-left.png);
    background-position: center;
    background-size: 100% 100%;
    position: absolute;
    top: 25px;
    left: 0px;
    z-index: 9;
    width: 23%;
    height: 10px;
}

.title-link-redirect::after {
    content: "";
    background-image: url(./../images/line-right.png);
    background-position: center;
    background-size: 100% 100%;
    position: absolute;
    top: 25px;
    right: 0px;
    z-index: 9;
    width: 23%;
    height: 10px;
}

.list-link-accept {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    column-gap: 100px;
    padding-bottom: 20px;
}

.list-link-accept a {
    width: 100%;
    background-color: #fff;
    color: #252B38;
    margin-top: 10px;
    text-align: center;
    border-radius: 20px;
    padding: 8px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: auto;
    border: 1px solid #FFAD01;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.list-link-accept a:hover {
    background: #FFAD01;
    color: #fff;
}

.highlight {
    color: #FFAD01;
}

.btn-redirect {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-around;
    gap: 5px;
    padding: 8px;
    position: absolute;
    top: 0px;
    right: 2px;
    width: auto;
}

.btn-redirect a {
    margin: 0px 4px;
    background: #202020;
    border: 1px solid #FFAD01;
    border-radius: 14px;
    padding: 1px;
    width: 100px;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    color: #FFAD01;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background 1s;
    padding: 1px;
}

.sub-title-main {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 50px;
    border-bottom: 2px solid #5a5a58;
    padding: 0px 10px 5px;
    font-size: 20px;
    font-weight: 500;
}

.highlight {
    font: 18px;
    font-weight: 700;
}

.sub-title-bottom {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.sub-title-bottom p {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    width: 49%;
    text-align: center;
    background-color: #FFAD01;
    border-radius: 50px;
    padding: 5px 0px;
    border: 3px solid #FFF;
    border-radius: 25px;
    background: linear-gradient(90deg, #e79e01 0%, #f0a505 30%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.sub-title-bottom:hover p {
    background: linear-gradient(90deg, #d69812 0%, #916508 50%);
    border: 3px solid #eeba0e;
}

@media screen and (max-width: 1200px) {
    header {
        height: 125px;
    }

    .wp-header .thumbnail {
        max-width: 170px;
        width: 100%;
        height: auto;
        padding: 12px 0px;
    }

    .support-btn-left .sub-title {
        font-size: 25px;
        text-align: center;
        line-height: 1.2;
        margin-top: 30px;
    }

    .support-btn-left .list-btn-box .link-support {
        max-width: 80px;
        width: 100%;
        max-height: 120px;
    }

    .support-btn-left .list-btn-box .link-support .sub-title {
        top: 65px;
        padding: 3px;
    }

    .support-content .support-btn-left {
        width: 30%;
    }

    .support-content .support-btn-right {
        width: 66%;
    }

    .support-btn-right .support-box .thumbnail {
        width: 65px;
        height: auto;
    }
}

@media screen and (max-width: 1024px) {
    .list-link-accept {
        column-gap: 60px;
    }

    .support-btn-left .list-btn-box {
        padding: 20px 15px 20px 15px;
    }
}

@media screen and (max-width: 768px) {


    .dp-pc {
        display: none;
    }

    .dp-sp {
        display: block;
    }

    header {
        background-image: unset;
        height: 80px;
        background-color: #1E222C;
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        z-index: 99;
    }

    main {
        margin-top: 80px;
    }

    .support-content {
        flex-direction: column;
    }

    .support-content .support-btn-right {
        width: 100%;
    }

    .support-content .support-btn-left {
        width: 100%;
    }

    .support-btn-left .list-btn-box {
        padding: 20px;
    }

    .support-btn-left .list-btn-box {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }


    .support-btn-left .sub-title-main {
        font-weight: 700;
        color: #fff;
        font-size: 4.5vw;
        padding-bottom: 5px;
        margin-top: 10px;
        text-align: center;
    }

    .support-btn-right {
        gap: 10px;
    }

    .title-link-redirect::before {
        width: 10%;
    }

    .title-link-redirect::after {
        width: 10%;
    }

    .title-link-redirect {
        font-size: 4.5vw;
    }

    .support-btn-right .support-box .title-top,
    .support-btn-right .support-box .title-bottom {
        font-size: 3.5vw;
    }

    .wp-header .thumbnail {
        max-width: 100px;
        padding: 13px 0px;
    }

    .support-btn-right .support-box .thumbnail {
        width: 50px;
    }

    .list-link-accept {
        gap: 10px;
        column-gap: 10px;
        padding-bottom: 20px;
    }

    .title-top {
        width: 90%;
        margin: auto;
        padding-top: 30px;
    }

    .support-btn-right .support-box {
        padding: 3px;
    }

    .branchokvip1 {

        display: none;
    }


    /* .branchokvip1 {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        padding-top: 5px;
    }

    .branchokvip1 .branchinfo {
        width: max-content;
    }

    .branchokvip1 .icon-dt {
        max-width: 45px;
        padding-right: 9px;
        max-height: 96px;
        border-right: 1px solid #fff;
        width: 100%;
        height: auto;
    }

    .branchokvip1 .icon-group {
        max-width: 120px;
        max-height: 80px;
        width: 60%;
        height: auto;
    } */
}

@media screen and (max-width: 425px) {
    body {
        height: 100%;
        background-size: 100% 100%;
    }

    .title-link-redirect::before,
    .title-link-redirect::after {
        top: 12px;
        height: 4px;
    }

    .support-btn-left .list-btn-box {
        padding: 10px;
    }

    .support-btn-left .list-btn-box .link-support {
        max-width: 65px;
    }

    .support-btn-left .list-btn-box .link-support .sub-title {
        top: 46px;
        padding: 3px;
        font-size: 11px;
        padding: 3px;
    }

}