
    *,
    ::before,
    ::after {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    html {
        font-size: 13px;
    }

    body {
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        /* background: #222f37; */
        /* color: #d6e0f9; */
    }

    .headeryuoghghf {
        width: 100%;
        z-index: 9999;
        position: relative;
        top: 0;
        left: 0;
        background: #101d23;
        padding: 0 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        width: 5rem
    }

    .logo img {
        width: 100%;
    }

    .opljjjimenu {
        list-style: none;
    }

    .opljjjimenu li {
        position: relative;
        float: left;
    }

    .opljjjimenu li a {
        font-family: "Poppins", sans-serif;
        font-size: 1.2rem;
        color: #d6e0f9;
        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;
    }

    .toggle-opljjji {
        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: #d6e0f9;
        transition: all 0.3s ease-in-out;
    }

    .icon::after {
        bottom: 0;
        right: 0;
        content: '';
        position: absolute;
        width: 1.5rem;
        height: .2rem;
        background-color: #d6e0f9;
        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) {
        .toggle-opljjji {
            display: block;
        }

        .opljjjimenu {
            width: 100%;
            position: absolute;
            top: 100%;
            left: 0;
            background: #101d23;
            border-top: .1rem solid #222f37;
            display: none;
        }

        .opljjjimenu.active {
            display: initial
        }

        .opljjjimenu li {
            width: 100%;
            border-top: .1rem solid #222f37;
        }

        .subm {
            position: relative;
            width: 100%;
        }

        .subm li {
            background: #222f37;
            border-top: .1rem solid #101d23;
        }

        .subm li a {
            padding-left: 2rem;
        }

        /* .nav-he{
            height: 70px !important;
        } */
    }

    .opljjjimenu>li {
        padding: 8px;
        text-align: center;
    }

    .opljjjimenu>li>a {
        font-size: 18px;
        margin: 5px;
        padding: 5px;
    }
