/*-----------------------
sidemenu
------------------------*/
#sidemenu {
    /* background-color: #005BAC; */
    transition: .5s;
    /* position: sticky; */
    position: relative;
    left: 0;
    top: 0;
    width: 55px;
    /* height: auto; */
    z-index: 99;
    float: left;
    margin-top: -17px;
}

.btn-menu-wrap {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 55px;
    height: 80px;
}

.btn-menu {
    background: none;
    border: none;
}

nav {
    background-color: rgba(205, 220, 240, 0.1);
    background-color: #005BAC;
    overflow-x: hidden;
    overflow: hidden;
    width: 55px;
    height: 100%;
    padding: 15px 20px 15px;
    padding: 0;
    transition: .25s;
    opacity: 0;
}

nav.open-menu {
    width: 100%;
}

.close-img {
    display: block;
    position: relative;
    width: 55px;
    height: 80px;
    top: 15px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.menu-img {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 80px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}

  .global-nav-bar {
    display: block;
    margin-top: -30px;
    padding-bottom: 225px;
    }


.menu-img.menu-img-show {
    display: block;
}

.global-nav-bar.global-nav-bar-hide{
    display: none;
}

.global-nav-bar.tablet-nav-bar {
    width: 320px !important;
    opacity: 1 !important;
}

ul.h_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul.h_logo li {
    width: 100%;
}

.h_logo_img a {
    display: block;
    width: 152px;
    margin: 0 auto;
}

.h_logo_text01 span {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: 1.3rem;
    line-height: 1.5;
}

.h_logo_text02 span {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
}

.h_menu {
    width: fit-content;
    margin: 40px auto 0;
}

.h_menu>li {
    margin-bottom: 20px;
}

.h_menu>li>a {
    font-size: 1.4rem;
    font-weight: 500;
}

.h_menu>li>a:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    background-color: #003E90;
    margin-right: 10px;
    margin-top: -4px;
}

.h_menu>li>ul>li>a {
    display: block;
    font-size: 1.4rem;
    margin-left: 1.2em;
    margin-top: 15px;
}

.h_menu>li>ul>li>a:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 4px;
    height: 2px;
    background-color: #003E90;
    margin-right: 10px;
    margin-top: -4px;
}

.h_contact {
    display: block;
    width: 120px;
    height: 120px;
    margin: 30px auto 0;
    background-color: #003E90;
    border-radius: 50%;
    color: #fff;
    font-weight: 500;
    text-align: center;
    position: relative;
}

.h_contact span {
    display: block;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);

}

main.main-position{
    margin-left: 55px;
    position: relative !important;
    width: calc(100% - 55px) !important;
}

@media screen and (min-width:1030px) {
    nav {
        width: 320px;
        opacity: 1;
    }

    main {
        margin-left: 320px;
    }

    footer {
        margin-left: 0;
    }

}

@media screen and (max-width: 1030px){
    main{
        margin-left: 55px;
    }
}

@media screen and (max-width: 768px) {

    main {
        margin-left: 0;
    }

    main.main-position{
        margin-left: 0;
    }

    footer {
        margin-left: 0;
        z-index: unset;
    }

    nav {
        display: none;
        opacity: 0;
        width: 100%;
        height: 100vh;
        overflow-y: scroll;
    }

    .global-nav-bar{
        padding-bottom: 0;
    }

    .global-nav-bar.nav-show {
        display: block;
        opacity: 1;
    }

    #sidemenu {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        margin-top: 0;
    }

    #sidemenu.sidemenu-show {
        display: block;
    }

    /* Prevent background scroll */
    body.overflow {
        overflow: hidden;
    }


    .sidemenu_heading {
        display: none;
    }

    .sidemenu-container {
        height: fit-content;
        padding-bottom: 120px;
    }

}

/*-----------------------
btn-menu
------------------------*/


