    .modal {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .modal.modal-show {
        animation: fadeIn 0.1s ease-in-out forwards;
    }

    .modal.modal-hide {
        animation: fadeOut 0.1s ease-in-out 0.1s forwards;
    }

    .modal-content {
        position: relative;
        background-color: #fff;
        margin: 2rem;
        padding: 2rem;
        border-radius: 0.25rem;
        width: 50%;
        max-height: 75%;
        overflow: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .modal.modal-show .modal-content {
        animation: fadeInDown 0.3s ease-in-out forwards;
    }

    .modal.modal-hide .modal-content {
        animation: fadeOutUp 0.2s ease-in-out forwards;
    }

    .modal-content h1 {
        text-align: center;
        margin-bottom: 2rem;
    }

    .modal-content p {
        margin: 1rem 0;
        line-height: 1.5rem;
    }

    .modal-close {
        position: absolute;
        top: 10px;
        right: 0;
        font-size: 1.75rem;
        font-weight: bold;
        padding: 0 0.75rem;
        color: rgba(0, 0, 0, 0.2);
        cursor: pointer;
        user-select: none;
    }

    .modal-close:hover,
    .modal-close:focus {
        color: rgba(0, 0, 0, 0.5);
    }



    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes fadeOut {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes fadeInDown {
        0% {
            opacity: 0;
            transform: translateY(-3rem);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeOutUp {
        0% {
            opacity: 1;
            transform: translateY(0);
        }

        100% {
            opacity: 0;
            transform: translateY(-3rem);
        }
    }

    @media(max-width: 992px) {
        html {
            font-size: 14px;
        }

        .modal-content {
            width: 80%;
        }
    }

    @media(max-width:767px) {
        html {
            font-size: 12px;
        }

        .modal-content {
            padding: 2rem 1rem 1rem 1rem;
            width: 90%;
        }

        .modal-content h1 {
            margin-bottom: 1.5rem;
        }
    }
    .hk_class ul li a {
    position: relative;
    width: 186px;
    height: 50px;
    color: #BC8355;
    padding: 18px 32px;
    font-weight: 500;
    font-size: 18px;
    background-color: #fff;
    cursor: pointer;
    display: block;
}
.hk_class ul li a::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 186px;
    height: 50px;
    border: 1px solid #2E2E2E;
    z-index: 9;
}.hk_class_body {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}.hk_class ul li a:hover {
    color: #fff !important;
    /* filter: hue-rotate(180deg) brightness(70%) saturate(150%); */
    background: #7F8AD5 !important;
}.hk_class ul {
    padding: 0px;
    list-style: none;
    float: none;
    clear: both;
    margin: 0;
}.hk_class ul li {
    float: left;
    margin: 0 10px 10px 0px;
}