.header-container{
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}
.headermenu{
    max-width: 1700px;
    margin: auto;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 6%) 0px 15px 15px -9px, rgb(0 0 0 / 4%) 0px 9px 30px 2px;
    -moz-box-shadow: rgb(0 0 0 / 6%) 0px 15px 15px -9px, rgb(0 0 0 / 4%) 0px 9px 30px 2px;
    -webkit-box-shadow: rgb(0 0 0 / 6%) 0px 15px 15px -9px, rgb(0 0 0 / 4%) 0px 9px 30px 2px;
    border-radius: 0 0 20px 20px;
}
.logo img{
    width: 250px;
}
.menuitems a{
    font-family: 'poppins';
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--font-primary-color);
    margin: 15px;
    font-size: 1rem;
}
@media only screen and (max-width: 1052px) {
    .logo img{
        width: 200px;
    }
    .headermenu{
        padding: 10px 20px;
    }
    .menuitems a{
        font-weight: 500;
        font-size: 0.9rem;
    }
}
.menu-active{
    color: var(--primary-color) !important;
}
.contactbtn a{
    font-family: 'poppins';
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 5px;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
    7px 7px 20px 0px rgba(0,0,0,.1),
    4px 4px 5px 0px rgba(0,0,0,.1);
    white-space: nowrap;
}
.header-contactus{
    display: none;
}
@media only screen and (max-width: 1052px) {
    .menuitems a{
        margin: 8px;
    }
    .header-contactus{
        display: inline;
    }
    .contactbtn{
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .headermenu{
        display: none;
    }
}
.mobilemenu{
    display: none;
    position: relative;
    background-color: #fff;
}
.hamburger img{
    margin: 0px;
    width: 50px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    left: 20px;
    transition: 0.2s ease;
}
@media only screen and (max-width: 768px) {
    .mobilemenu{
        display: block;
    }
}
.offcanvas-header{
    display: flex;
    justify-content: flex-end;
}
.mobile-logo img{
    width: 170px;
    margin: 20px 0;
    transition: 0.2s ease;
}
.mobile-menu-header{
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 567px) {
    .hamburger img{
        width: 40px;
        margin: 0px;
        top: 30px;
        left: 20px;
    }
}
@media only screen and (max-width: 350px) {
    .hamburger img{
        width: 40px;
        margin: 0px;
        top: 30px;
        left: 10px;
    }
}
.mobileheader-shadow{
    box-shadow: rgb(0 0 0 / 6%) 0px 15px 15px -9px, rgb(0 0 0 / 4%) 0px 9px 30px 2px;
    -moz-box-shadow: rgb(0 0 0 / 6%) 0px 15px 15px -9px, rgb(0 0 0 / 4%) 0px 9px 30px 2px;
    -webkit-box-shadow: rgb(0 0 0 / 6%) 0px 15px 15px -9px, rgb(0 0 0 / 4%) 0px 9px 30px 2px;
}
.mobileheader-logo{
    width: 120px !important;
    transition: 0.2s ease;
    margin: 5px 0 !important;
}
.mobileham-icon{
    width: 33px !important;
    top: 8px !important;
    transition: 0.2s ease;
}
.mobilemenu .menuitems a{
    display: flex;
    flex-direction: column;
    margin: 15px 10px;
}
.headershadowclass{
    box-shadow: rgb(0 0 0 / 6%) 0px 15px 15px -9px, rgb(0 0 0 / 4%) 0px 9px 30px 2px;
    -moz-box-shadow: rgb(0 0 0 / 6%) 0px 15px 15px -9px, rgb(0 0 0 / 4%) 0px 9px 30px 2px;
    -webkit-box-shadow: rgb(0 0 0 / 6%) 0px 15px 15px -9px, rgb(0 0 0 / 4%) 0px 9px 30px 2px;
}