.menu-open {
    width: 45px;
    height: 45px;
    background: url(../image/menu2.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
    margin-top: 38px;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 45px;
    height: 45px;
    background: url(../image/close.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
}

.logo-white {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 154px;
    height: 63px;
    background: url(../image/logo.png) no-repeat center;
    background-size: 100%;
}

.menu-close {
    color: #fff;
    z-index: 999;
}

.nav-container {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
}

nav {
    width: 300px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.side {
    width: 300px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 300px;
}

nav ul {
    flex-direction: column;
    position: relative;
    list-style-type: none;
}

.nav1 {
    display: flex;
    justify-content: flex-start;
    height: 80vh;
    margin-top: 20vh;
}

.side {
    width: calc(100vw - 300px);
    height: 100vh;
    background: url(../image/nav-bg.png) no-repeat center;
    background-size: cover;
    z-index: -1;
}

nav ul li a {
    display: flex;
    align-items: center;
    font-size: 1.5vw;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: bold;
    color: #fff;
    /* padding: 10px 30px; */
    line-height: 9vh;
    padding: 0 30px;
    height: 9vh;
    transition: .2s ease;
}

nav ul li a:hover {
    color: #eb6100;
}

nav ul ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 300px;
    width: 400px;
    top: 0;
    height: 80vh;
    display: none;
}

nav ul ul li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.x1 {
    position: fixed;
    right: 500px;
    top: 0;
    width: 75vw;
    height: 100vh;
    z-index: -1;
    display: none;
    object-fit: cover;
}

.dropdown1{
    padding-bottom: 300px;
}

nav ul .dropdown:hover ul {
    display: block;
}

nav ul .dropdown:hover img {
    display: block;
}

.sub {
    font-size: 1.3vw;
}


/* nav ul .dropdown {
    position: relative;
} */