.topMC nav {
    width: 100%;
    padding:16px 0;
}

.nav-menu, .nav-menu ul, .nav-menu li, .nav-menu a {
    margin: 0;
    padding: 0;
    line-height: normal;
    list-style: none;
    display: block;
    position: relative;
}

    .nav-menu ul {
        opacity: 0;
        position: absolute;
        top: 100%;
        left: -9999px;
        z-index: 999;
        -webkit-transition: opacity .3s;
        transition: opacity .3s;
        border-radius: 5px;
        background: white;
    }

    .nav-menu li:hover > ul {
        left: 0;
        opacity: 1;
        z-index: 1000;
    }

    .nav-menu ul li:hover > ul {
        top: 0;
        left: 100%;
    }

    .nav-menu li {
        cursor: default;
        float: left;
    }

    .nav-menu ul li {
        float: none;
        text-transform: capitalize;
    }

    .nav-menu ul {
        min-width: 12em;
        -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,0.25);
        box-shadow: 2px 2px 2px rgba(0,0,0,0.25);
    }

.nav-center {
    display: flex;
    gap: 36px;
}

    .nav-center > li {
        color: white;
        text-transform: uppercase;
    }

.nav-menu a {
    color: inherit;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}

.nav-menu > li > .nav-active {
    background-color: rgba(0,0,0,0.05);
}

/* L0 Hover*/
.nav-menu a:hover, .nav-menu a:focus, .nav-menu li:hover a {
}

/* L1 cover*/
.nav-menu li li a, .nav-menu li:hover li a {
    padding: 10px 12px;
    color: #293A7F;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
}

    /* L1 hover*/
    .nav-menu li:hover li a:hover, .nav-menu li:hover li a:focus, .nav-menu li:hover li:hover a {
        background: #293A7F;
        color: #ffffff;
    }


/* L2 cover */
.nav-menu li:hover li:hover li a {
    background: white;
    color: #293A7F;
}

    /* L2 hover */
    .nav-menu li:hover li:hover li a:hover, .nav-menu li:hover li:hover li a:focus, .nav-menu li:hover li:hover li:hover a li:hover a div {
        background: #293A7F;
        color: #ffffff;
    }

.floatRight{
    float:right;
}
.openItem{
    display:flex !important;
    justify-content:space-between;
    gap:4px;
}

.burgerMenuItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
}
.burgerMenuItem a{
    display:flex;
    width:100%;
}
.closed .vertical {
    transition: all 0.5s ease-in-out;
    transform: rotate(-90deg);
}

.closed .horizontal {
    transition: all 0.5s ease-in-out;
    transform: rotate(-90deg);
    opacity: 1;
}

.opened {
    opacity: 1;
}

    .opened .vertical {
        transition: all 0.5s ease-in-out;
        transform: rotate(90deg);
    }

    .opened .horizontal {
        transition: all 0.5s ease-in-out;
        transform: rotate(90deg);
        opacity: 0;
    }

/*.circle-plus {
    height: 4em;
    width: 4em;
    font-size: 1em;
    opacity: 0.7;
}*/
.iconWrapper {
    text-align: center;
}


.icon {
    position: relative;
    width: 20px;
    height: 20px;
    background: #00549f;
    border-radius: 50%;
    transition: all 0.5s ease;
}

    .icon.active {
        background: gray;
    }

    .icon:hover {
        cursor: pointer;
    }

    .icon .icon-shape::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 12px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: all 0.5s ease;
    }

    .icon .icon-shape::after {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 3px;
        height: 12px;
        background: #fff;
        border-radius: 3px;
        transition: all 0.5s ease;
    }

    .icon .icon-shape.active::before {
        transform: translate(-50%, -50%) rotate(180deg);
        transition: all 0.5s ease;
    }

    .icon .icon-shape.active::after {
        transform: translate(-50%, -50%) rotate(90deg);
        transition: all 0.5s ease;
    }
 


@media screen and (max-width: 980px) {
    .nav-menu a {
            font-size: 16px;
        }

        .topMC {
            display: none;
        }
    }

    @media screen and (max-width: 550px) {

        .logoC {
            width: 35%;
        }

            .logoC img {
                width: 100%;
            }

        .hdrLoginC .btnTyp1 {
            min-width: unset;
        }

        .hdrLoginC .btnTyp2 {
            min-width: unset;
        }

        .headerC {
            height: auto;
        }

        .headerCS {
            height: auto;
        }
    }
    /*Burger menü End*/
