.site-header .inner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-header {
    background: #fff;
    padding: 6px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    left: 0;
    right: 0;
    box-shadow: 0 0 1px #ACACAC;
}

.site-header .inner-content .logo {
    max-width: 150px;
    height: 58px;
}

.site-header .inner-content .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}

.site-header .inner-content .logo.cp-logo {
    position: relative;
}

.site-header .inner-content .logo.cp-logo img {
    position: relative;
    top: -4px;
}

.site-header .inner-content .logo .txt {
    position: absolute;
    bottom: 0px;
    font-size: 8px;
    left: 0;
    right: 0;
    text-align: center;
    color: #676767;
}

.site-header .inner-content .menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.site-header .inner-content .menu li {
    padding-left: 25px;
}

.site-header .inner-content .menu li a {
    color: #000;
    font-weight: 500;
}

.site-header .inner-content .menu li.active a {
    color: var(--mainColor);
}

.hambuger-menu {
    display: none;
}

.menuoverlay {
    width: 100%;
    height: 100%;
    background: rgba(00, 00, 00, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
}

@media(max-width:991px) {
    .hambuger-menu {
        display: block;
    }
    .site-header .inner-content .logo {
        max-width: 110px;
        height: 43px;
    }
    .hambuger-menu a {
        color: var(--mainColor);
        font-size: 25px;
        line-height: 1;
    }
    .site-header .inner-content .menu {
        text-align: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 340px;
        height: 100%;
        position: fixed;
        top: 0;
        z-index: 9999;
        -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
        box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
        font-size: 16px;
        padding: 0;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 75%;
        transition-duration: 200ms;
        -webkit-transition-duration: 200ms;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #fff;
        right: -100%;
        opacity: 0;
        visibility: hidden;
        padding: 50px;
        align-items: start;
    }
    .menu-open .site-header .inner-content .menu {
        right: 0;
        opacity: 1;
        visibility: visible;
    }
    .menu-open .menuoverlay {
        display: block;
    }
    .site-header .inner-content .menu li {
        padding: 0 0 25px;
        text-align: left;
    }
    .site-header .inner-content .logo .txt {
        font-size: 6px;
    }
}