.site-header{
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header.color{
    background: #000000ad;
}
.site-header .h-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 3rem;
    padding-right: 3rem;
}

.site-header .logo img{
    width: 200px;
    height: auto;
}

.site-header  .menu-action{
    font-family: 'Verdana';
    font: 20px;
    color: #fff;
}
/*menu*/
.sidenav {
    height: 500px; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    background-color: #000000d9;
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
.sidenav.left {
    right: 0;
    text-align: left;
}

.sidenav.left .menu-left-container{
    padding-left: 55px;
    height: 100%;
}

.sidenav.left .menu-left-container .menu-top{
    position: absolute;
    top: 14px;
}

.sidenav.left .menu-left-container .menu-left{
    height: 100%;
    display: flex;
    align-items: center;

}

.sidenav.left .menu-left-container .menu-left .menu-left-list{
    display: flex;
    flex-direction: column;
    gap: 2rem;

}

.sidenav.right {
    left: 0;
    text-align: right;
}

.sidenav.right .menu-right-container{
    padding-right: 55px;
    padding-left: 29vw;
}

.sidenav.right .menu-right-container .menu-top{
    margin-bottom: 44px;
    margin-top: 16px;
}

.menu-right .menu-right-group{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.menu-right .menu-right-group .title{
    font-family: 'Verdana';
    font: 18px;
    color: #e3a54f;
}

.menu-right .menu-right-group .items{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.menu-right .menu-right-group .items .item a{
    display: flex;
    flex-direction: column;
}

.menu-right .menu-right-group .items .item a span{
    font-family: 'Verdana';
}

.menu-right .menu-right-group .items .item a em{
    font-family: 'Verdana';
    font-style: normal;
    font-size: 16px;
    color: #6088b2;
}




/* The navigation menu links */
.sidenav a {
    text-decoration: none;
    display: block;
    transition: 0.3s;
    font-family: 'Verdana';
    font-size: 18px;
    color: #fff;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    font-size: 36px;
}

.sidenav.left .closebtn {
    right: 25px;
}
.sidenav.right .closebtn {
    left: 25px;
}

main {
    transition: margin-left .5s;
}
  

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}