.siteHeader {
    position: sticky;
    top: 0;
    padding: 27px 0;
    background-color: #ffffff;
    z-index: 999;
}

.headerWrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.headerWrap .mobileMenu {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: transparent;
    outline: 0;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.headerWrap .mobileMenu>span {
    width: 24px;
    height: 10px;
}

.headerWrap .mobileMenu>span>span {
    width: 100%;
    height: 2px;
    display: block;
    position: relative;
    background: #000000;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0s;
}

.headerWrap .mobileMenu>span>span:first-child {
    transform: translateY(0px) rotate(0deg);
}

.headerWrap .mobileMenu>span>span:last-child {
    transform: translateY(7px) rotate(0deg);
}

.mobileMenuOpen .headerWrap .mobileMenu>span>span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.mobileMenuOpen .headerWrap .mobileMenu>span>span:last-child {
    transform: translateY(3px) rotate(-45deg);
}

.headerLogo,
.headerLogo img {
    display: block;
}

.sideBarwrap {
    background-color: #ffffff;
    max-width: 200px;
    width: 100%;
    height: calc(100vh - 80px);
    position: fixed;
    right: 0;
    top: 80px;
    right: -250px;
    transition: 0.3s all ease-in-out;
}

.siteHeader.stickyHeader .sideBarwrap {
    top: 80px;
}

.mobileMenuOpen .sideBarwrap {
    right: 0;
}

.sideBarwrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sideBarwrap ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    line-height: 1.2;
    padding: 10px 15px;
}

.sideBarwrap ul li+li {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.overlapmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
}

.mobileMenuOpen .overlapmenu {
    opacity: 1;
    visibility: visible;
}

.mobileMenuOpen {
    overflow: hidden;
}

@media only screen and (max-width: 1500px) {}

@media only screen and (max-width: 1400px) {
    .siteHeader {
        padding: 20px 0;
    }

    .sideBarwrap {
        top: 66px;
        height: calc(100vh - 66px);
    }

    .siteHeader.stickyHeader .sideBarwrap {
        top: 66px;
        height: calc(100vh - 66px);
    }
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .siteHeader {
        padding: 16px 0;
    }

    .sideBarwrap {
        top: 58px;
        height: calc(100vh - 58px);
    }

    .siteHeader.stickyHeader .sideBarwrap {
        top: 58px;
        height: calc(100vh - 58px);
    }
}

@media only screen and (max-width: 575px) {}

@media only screen and (max-width: 420px) {}