* {
    padding: 0;
    margin: 0;
    /* overflow-x: hidden; */
}

.Nav-li>div>div>a {
    color: #000;
    text-decoration: none;
}

.Nav-li>div>div {
    display: flex;
    align-items: center;

}

.headerBox {
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    margin-bottom: 1%;
    max-height: 15%;
    display: flex;
    padding-left: 5%;
    /* transition: padding-bottom 1s, max-height 1s, background-color 1s, ease; */
    align-items: center;
    padding-top: 1%;
    /* overflow: hidden; */
    transition: all 0.5s ease;
}

.Nav-ul {

    transition: all 0.5s ease;
}

.logo {
    max-height: 100px;
    position: absolute;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
}

.logo img {
    height: 100%;
    max-width: 100%;
}

.hamburger {
    width: 25px;
    height: 25px;
    margin-left: auto;
    right: 15%;
    /* float: right; */
    position: relative;
    opacity: 0;
    cursor: pointer;
    overflow: hidden;
    z-index: 5;
}

.line {
    position: absolute;
    transition: 0.5s ease;
    border: 1px solid #036eb8;
    transform-origin: left;
    border-radius: 10px;
}

.hamburger .line-top {
    width: 95%;
    margin-left: 5%;
}

.hamburger .line-center {
    width: 50%;
    top: 40%;
    left: 50%;
}

.hamburger .line-bottom {
    width: 95%;
    margin-left: 5%;
    top: 90%;
}

.Nav {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
}

@font-face {
    font-family: Customize;
    src: url("../font/font1.woff2");
}

.Nav ul li {
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    /* font-family: "Customize"; */
    cursor: pointer;
    display: flex;

}


.icon-bottom {
    display: inline-block;
    width: 30px;
    height: 30px;
    z-index: 4;
    color: #000;
    background: url("../img/icon/icon-icon-arrow-bottom.png") no-repeat;
    background-position: center center;
}

@media (min-width: 1100px) {


    .Nav ul {
        width: 55%;
        height: 100%;
        /* margin-left: auto; */
        display: flex;
        align-items: center;
        /* position: relative; */
        justify-content: space-between;
        list-style: none;
        opacity: 1;
    }

    .Nav ul li:hover>a {
        color: #036eb8 !important;
    }

    .Nav ul li::after {
        content: '';
        width: 3%;
        height: 4px;
        top: 75%;
        background-color: #036eb8;
        position: absolute;
        display: flex;
        transition: all 0.5s ease;
        transform: scaleX(0);
        transform-origin: left top;
    }

    .Nav ul li:hover::after {
        transform: scaleX(0.5);
    }

    .headerActive>a {
        color: #036eb8 !important;
        transition: all 0.5s ease !important;
    }

    .headerActive::after {
        content: '' !important;
        width: 3% !important;
        height: 4px !important;
        top: 80% !important;
        background-color: #036eb8 !important;
        position: absolute !important;
        display: flex !important;
        transition: all 0.5s ease !important;
        transform: scaleX(0.3) !important;
        transform-origin: left top !important;
    }

    .submenu_container {
        width: 100%;
        height: 100px;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s linear;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .submenu_container>a {
        color: #000;
        text-decoration: none;
        font-weight: normal;
        margin: 0 5%;
    }

    .submenu_container>a:hover {
        color: #036eb8;
    }


    .product {
        width: 10%;
        font-size: 14px;
        margin: 0 1% !important;
        font-weight: bold !important;
    }
}

@media screen and (max-width: 1100px) {
    .headerBox {
        background-color: #fff;
        z-index: 99;
    }

    .logo {
        max-width: 150px;
        height: 60px;
    }

    .hamburger {
        opacity: 1;
    }

    .Nav {
        width: 50%;
    }

    .Nav>div {
        width: 100%;
        /* position: absolute; */
        padding-top: 50%;
    }

    .Nav ul {
        /* top: 10%; */
        width: 90%;
        display: flex;
        flex-direction: column;
        list-style: none;
        transition: 1s ease;
        opacity: 0;
        left: 15%;
    }

    .Nav ul li {
        width: 70%;
        /* padding:3% 0; */
    }

    .Nav_title>div:first-child {
        width: 100%;
        border-bottom: 1px solid #036eb8;
        font-weight: normal;
        font-size: 16px;
        line-height: 60px;

    }

    .Nav ul li:hover {
        color: #000;
    }

    .Nav ul li::after {
        height: 0;
    }

    .Nav_title {
        width: 100%;
        flex-wrap: wrap;
        position: relative;
    }

    .header_icon {
        width: 20px !important;
        margin-left: auto !important;
    }

    .submenu_container {
        width: 100%;
        position: relative !important;
        height: auto !important;
        top: 0 !important;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        display: none !important;
        margin: 10px 0;

        transform: translateX(-20%);
        transition: all 0.5s ease;
    }

    .submenu_container>a {
        width: 100%;
        font-size: 16px;
        font-weight: bold;
        line-height: 40px;
        text-align: left !important;
    }

    .product {
        width: 100% !important;
        font-size: 14px;
        margin: 0 1% !important;
        font-weight: bold !important;
    }

    .Nav-li {

        transition: all 0.5s ease;
    }
}

@media screen and (max-width: 700px) {
    .logo {
        max-width: 100px;
        height: 50px;
    }

    .Nav ul {
        /* width: 70%; */
        width: 70%;
        display: flex;
        flex-direction: column;
        list-style: none;
        transition: 1s ease;
        opacity: 0;
        left: 10% !important;
    }
    .Nav-li{
        width: 100% !important;
    }
}

.header_icon {
    width: 14%;
    margin-left: 5%;
    transform: rotate(0deg);
    transition: transform 0.5s ease;
    z-index: 99;
}

.Nav-li {
    width: 30%;
}

.product {
    width: 8%;
    font-size: 14px;
    margin: 0 1% !important;
    font-weight: bold !important;
}

.Nav_title {
    font-size: 20px;
    transition: all 0.2s linear;
}

@media (max-width: 1400px) {

    .Nav_title {
        font-size: 16px !important;
    }
}