
    *,
    ::before,
    ::after {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    html {
        font-size: 13px;
    }

    body {
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
    }

    .mnehkssf {
        width: 100%;
        z-index: 9999;
        position: relative;
        top: 0;
        left: 0;
        background: #000000;
        padding: 0 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        width: 5rem
    }

    .logo img {
        width: 100%;
    }

    .hkssftefdiimenu {
        list-style: none;
    }

    .hkssftefdiimenu li {
        position: relative;
        float: left;
    }

    .hkssftefdiimenu li a {
        font-family: "Poppins", sans-serif;
        font-size: 1.2rem;
        color: #0088ff;
        display: block;
        text-decoration: none;
        padding: 1rem 1.5rem;
    }

    .subm {
        position: absolute;
        left: 0;
        background: #101d23;
        display: none;
        transition: all .3s ease-in-out;
    }

    .subm-wrapper:hover .subm,
    .subm-wrapper:focus-within .subm {
        display: initial;
    }

    .subm li {
        width: 100%;
        border-top: .1rem solid #222f37;
        list-style: none;
    }

    .hkssfte-btn {
        display: none;
        /* Initially hide the toggle button */
        z-index: 1000;
    }

    .icon {
        position: relative;
        width: 1.5rem;
        height: .8rem;
        cursor: pointer;
        z-index: 100;
    }

    .icon::before {
        top: 0;
        right: 0;
        content: '';
        position: absolute;
        width: 2rem;
        height: .2rem;
        background-color: #ffffff;
        transition: all 0.3s ease-in-out;
    }

    .icon::after {
        bottom: 0;
        right: 0;
        content: '';
        position: absolute;
        width: 1.5rem;
        height: .2rem;
        background-color: #ffffff;
        transition: transform 0.3s ease-in-out;
    }

    /* Rotate the before and after lines to create the close icon effect */
    .icon.active::before {
        width: 1.5rem;
        transform: rotate(-45deg) translate(-0.21rem, 0.21rem);
    }

    .icon.active::after {
        transform: rotate(45deg) translate(-0.21rem, -0.21rem);
    }


    @media (max-width: 991px) {
        .hkssfte-btn {
            display: block;
        }

        .hkssftefdiimenu {
            width: 100%;
            position: absolute;
            top: 100%;
            left: 0;
            background: #000000;
            border-top: .1rem solid #ffffff;
            display: none;
        }

        .hkssftefdiimenu.active {
            display: initial
        }

        .hkssftefdiimenu li {
            width: 100%;
        }

        .subm {
            position: relative;
            width: 100%;
        }

        .subm li {
            background: #222f37;
            border-top: .1rem solid #101d23;
        }

        .subm li a {
            padding-left: 2rem;
        }
    }

        .hkssftefdiimenu>li {
            text-align: center;
        }

        .hkssftefdiimenu>li>a {
            font-size: 18px;
            margin-top: 5px;
            margin-bottom: 5px;
        }

        .dfoturutpa {
            outline: 0;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            background: #f5a3a3;
            min-width: 150px;
            border: 0;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(126, 79, 255, 0.5);
            box-sizing: border-box;
            padding: 16px 20px;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: none !important;
            overflow: hidden;
            cursor: pointer;
        }

        .dfoturutpa:hover {
            opacity: .95;
        }

        .dfoturutpa .animation {
            border-radius: 100%;
            animation: ripple 0.6s linear infinite;
        }

        @keyframes ripple {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(183, 37, 37, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
            }

            100% {
                box-shadow: 0 0 0 20px rgba(255, 64, 64, 0.1), 0 0 0 40px rgba(61, 255, 23, 0.1), 0 0 0 60px rgba(255, 18, 18, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
            }
        }
