.sidebar {
    position: fixed;
    top: 0;
    width: 300px;
    height: 100%;
    right: -300px;
    background: #032c3a;
    transition: right 0.4s ease;
}

.sidebar.show{
    right: 0px;
}

.sidebar nav ul{
    width: 100%;
    list-style: none;
}

nav ul li {
    line-height: 40px;
}

nav ul li a{
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding-left: 20px;
    font-weight: 500;
    display: block;
    width: 100%;
}

nav ul li.active a{
    color: white;
    background: #032c3a;
    border-left-color: white;
}

nav ul li:hover{
    background: #032c3a;
}

nav ul li a:hover{
    background: #032c3a;
}

nav ul ul{
    position: static;
    display: none;
}

nav ul .feat-show1{
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

nav ul .feat-show1.show{
    display: block;
}

nav ul .featsub-show1{
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

nav ul .featsub-show1.show {
    display: block;
}

nav ul .feat-show2.show{
    display: block;
}

nav ul .feat-show3.show{
    display: block;
}

nav ul .feat-show4.show{
    display: block;
}

nav ul ul li{
    line-height: 42px;
    border-top: none;
}

nav ul ul li a{
    font-size: 17px;
    color: #e6e6e6;
    padding-left: 40px;
}

nav ul li.active ul li a{
    color: #fff;
    background: #032c3a;
    border-left-color: transparent;
    font-size: 16px;
    line-height: 32px;
}

nav ul ul li a:hover{
    color: white!important;
    background: #032c3a!important;
}

nav ul li a span{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 22px;
    transition: transform 0.4s;
}

nav ul li a span.rotate{
    transform: translateY(-50%) rotate(-180deg);
}

nav ul li a img{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: transform 0.4s;
    width:15px; height:auto;
}

nav ul li a img.rotate{
    transform: translateY(-50%) rotate(-180deg);
}

nav ul li.active ul li ul li a{
    font-size: 13px;
    line-height: 32px;
}

.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #202020;
    z-index: -1;
    text-align: center;
}

.content .header{
    font-size: 45px;
    font-weight: 600;
}

.content p{
    font-size: 30px;
    font-weight: 500;
}

nav ul.sideMenuSub li a {
    font-size:11px;
}



