* {
    outline: none;
    margin: 0px;
    padding: 0px;
    border: none;
    text-decoration: none;
}

body {
    text-decoration: none;
    background: #fff;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: normal;
    font-style: normal;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.html');
    src: url('../fonts/Poppins-Regulard41d.html?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular-2.html') format('woff2'), url('../fonts/Poppins-Regular-3.html') format('woff'), url('../fonts/Poppins-Regular-4.html') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.toggleMenu {
    display: none;
    padding: 2px 2px;
    color: #ca4c43;
    font-size: 1em;
    font-weight: 700;
    font-family: 'Montserrat';
    float: right;
    padding-right: 3%;
    margin-top: 1em;
}

.menuSeven {
    width: 35px;
    height: 30px;
    margin: 8px 8px 3px 8px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.menuSeven span {
    background-color: #4c4c4a;
    position: absolute;
    border-radius: 2px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    width: 100%;
    height: 4px;
}

.menuSeven span:nth-child(1) {
    top: 0px;
    left: 0px;
}

.menuSeven span:nth-child(2) {
    top: 13px;
    left: 0px;
}

.menuSeven span:nth-child(3) {
    bottom: 0px;
    left: 0px;
}

.menuSeven:not(.clickMenuSeven):hover span:nth-child(1) {
    transform: scaleX(.8);
}

.menuSeven:not(.clickMenuSeven):hover span:nth-child(2) {
    transform: scaleX(.5);
}

.menuSeven:not(.clickMenuSeven):hover span:nth-child(3) {
    transform: scaleX(.8);
}

.clickMenuSeven span:nth-child(1) {
    transform: rotate(90deg);
    top: 13PX;
}

.clickMenuSeven span:nth-child(2) {
    transform: scale(0);
    transition-duration: 50ms
}

.clickMenuSeven span:nth-child(3) {
    top: 13PX;
}

.nav {
    list-style: none;
    zoom: 1;
    background: none;
}

.nav:before,
.nav:after {
    content: " ";
    display: table;
}

.nav:after {
    clear: both;
}

.nav ul {
    list-style: none;
}

.nav a {
    margin: 0px 15px;
    font-size: 1.125em;
    font-weight: normal;
    font-family: 'Poppins';
    line-height: 40px;
    letter-spacing: 0px;
    display: inline-block;
}

.nav li {
    position: relative;
}

.nav>li {
    float: left;
}

.nav>li>a:hover {
    display: block;
}

.nav>li>a:after {
    display: block;
    content: '';
    border-bottom: 2px solid #1f900e;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.nav>li>a:hover:after {
    transform: scaleX(1);
}

.nav>li>a {
    display: block;
}

.nav li ul {
    position: absolute;
    left: -9999px;
    width: auto;
}

.nav>li.hover>ul {
    left: 0;
}

.nav li li.hover ul {
    left: 100%;
    top: 0;
}

.nav li li a {
    display: inline-block;
    background: #1f900e;
    position: relative;
    z-index: 100;
    line-height: 40px;
    width: auto;
    padding-left: 5%;
    padding-right: 5%;
    color: #fff !important;
    font-size: 1em;
    font-weight: normal;
    font-family: 'geIndiaist-book';
    float: left;
    min-width: 10em;
    margin-top: 1px;
}

.nav li li a:hover {
    background-color: #4c4c4a;
    color: #fff
}

.nav li li li a {
    background: #fcd307;
    z-index: 200;
    border-top: 1px solid #fff;
    font-size: 1em;
    font-weight: normal;
    font-family: 'geIndiaist-book';
    padding-left: 20px;
    border-left: 1px solid #fff;
}

.nav li li li a:hover {
    background-color: #fff;
    color: #fcd307;
}

@media screen and (max-width: 768px) {
    .active {
        display: block;
    }

    .nav>li {
        float: none;
        background-color: #4c4c4a;
        margin-bottom: 1px;
    }

    .nav>li a {
        color: #fff !important;
    }

    .nav>li>.parent {
        background-position: 95% 50%;
    }

    .nav li li .parent {
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }

    .nav ul {
        display: block;
        width: 100%;
    }

    .nav>li.hover>ul,
    .nav li li.hover ul {
        position: static;
    }

    .nav>li>a {
        text-align: center
    }
}