.header {
    position: relative;
    /* z-index: 4; */
    width: 100%;
    height: 150px;
    margin-bottom: -47px;
    /* background-image: url(./wp-content/themes/planitgreen/images/header-bg.jpg); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
@media (max-width:1023px) {
    .header {
        display: none
    }
}

.header__logo {
    width: 298px;
    height: 50px;
    position: relative;
    top: 30px;
    z-index: 1;
    display: block;
    background-image: url(static/img/SVG_Transperent_BG.svg);
    transform: scale(2); /* Zoom in 2x */
    transform-origin: center center;
    /* background-position: center; */
    background-size: contain;
    background-repeat: no-repeat;
    /* background-position: top left */
}

@media (max-width:1150px) {
    .header__logo {
        width: 250px;
        height: 50px
    }
}

.header__left {
    display: block;
    width: 300px;
    float: left;
    height: 100%
}

.header__right {
    width: auto;
    position: absolute;
    right: -100px;
}

.header__right:before {
    position: absolute;
    content: '';
    z-index: 1;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: #a2c654
}

.header__right:after {
    position: absolute;
    content: '';
    z-index: 1;
    bottom: 2px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff
}
.topNav ul li {
    position: relative;
}

.topNav ul li .sub-menu {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    min-width: 200px;
    background-color: #eeeeee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
    z-index: 100;
    padding: 0;
}

.topNav ul li:hover > .sub-menu {
    display: block;
}

.topNav ul li .sub-menu li {
    display: block;
    border-bottom: 1px solid #ddd;
}

.topNav ul li .sub-menu li a {
    display: block;
    padding: 10px 15px;
    margin: 0;
    font-size: 14px !important;
    line-height: 1.2;
}

/* Mobile dropdown menu */
nav.mobile ul li .sub-menu {
    display: none;
    background-color: rgba(0,0,0,0.1);
    padding-left: 10px;
}

nav.mobile ul li .sub-menu.show {
    display: block;
}

.topNav {
    margin-top: 15px
}

.topNav ul {
    text-align: right;
    font-size: 0
}

.topNav ul li {
    display: inline-block;
    position: relative
}

.topNav ul li a {
    display: inline-block;
    line-height: 40px;
    background: 0 0;
    padding: 5px 8px 7px;
    color: #727272;
    font-family: Gotham;
    font-weight: 600;
    font-size: 18px !important;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 20px
}

.topNav ul li a:first-child {
    margin-left: 10px
}

.topNav ul li a[href="/"] {
    display: none
}

@media (max-width:1260px) {
    .topNav ul li a {
        padding: 6px;
        font-size: 14px
    }
}

@media (max-width:1150px) {
    .topNav ul li a {
        padding: 6px 0;
        font-size: 13px
    }
}

.topNav ul li a:hover {
    color: #51cd24;
    text-decoration: none
}

.topNav ul li:first-child a {
    padding-left: 0;
    margin-left: 0
}

.topNav ul li:last-child {
    position: relative
}

.topNav ul li:last-child a:before {
    content: '';
    width: 1px;
    height: 15px;
    background: #373737;
    position: absolute;
    bottom: 20px;
    left: -5px
}

.topNav ul li:last-child a:hover {
    color: #8971b8
}

.topNav ul li.current_page_item a {
    color: #a2c654
}

a {
    text-decoration: none;
    color: #a2c654;
    transition: all .2s ease
}

a:hover {
    color: #51cd24
}

.headerMobile {
    position: relative;
    display: none;
    padding: 0 25px;
    height: 65px;
    border-bottom: 5px solid #727272;
    background-color: #eeeeee;
    background-image: url(static/img/nav1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

@media (max-width:1023px) {
    .headerMobile {
        display: block
    }
}

@media (max-width:500px) {
    .headerMobile {
        padding: 0 20px
    }
}

@media (max-width:375px) {
    .headerMobile {
        padding: 0 15px
    }
}

.headerMobile .logo {
    top: 5px;
    width: 220px;
    height: 60px;
    position: relative;
    z-index: 1;
    display: block;
    background-image: url(wp-content/themes/planitgreen/images/logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left
}

.headerMobile .hamburger {
    position: absolute;
    top: 2px;
    right: 10px;
    z-index: 1;
    padding: 15px
}

.headerMobile .hamburger:hover {
    cursor: pointer
}

.headerMobile .hamburger div {
    width: 35px;
    height: 2px;
    background-color: #727272;
    margin: 6px 0
}

.headerMobile .hamburger.open div {
    transition: all .3s ease;
    position: relative
}

.headerMobile .hamburger.open div:first-child {
    transform: rotate(135deg);
    top: 8px
}

.headerMobile .hamburger.open div:nth-child(2) {
    opacity: 0
}

.headerMobile .hamburger.open div:nth-child(3) {
    top: -8px;
    transform: rotate(-135deg)
}

nav.mobile {
    position: fixed;
    display: none;
    width: 300px;
    right: -300px;
    z-index: 101;
    transition: all .2s ease;
    overflow-y: auto;
    height: 100%;
    background-color: #1f1f1f;
    background-image: url(wp-content/themes/planitgreen/images/wood-bg.jpg);
    background-size: cover
}

nav.mobile .mobile-nav-wrapper {
    padding: 0
}

nav.mobile ul {
    margin-top: 5px
}

nav.mobile ul li a {
    background-color: transparent;
    display: block;
    padding: 16px 15px 14px;
    color: #727272;
    font-size: 15px;
    font: 400 16px Gotham, sans-serif;
    text-transform: uppercase;
    font-weight: 700
}

nav.mobile ul li.current_page_item {
    background-color: #2f2f2f
}

nav.mobile ul li.current_page_item a {
    color: #fff
}

nav.mobile ul li.current-menu-item a {
    color: #999
}

nav.mobile.open {
    right: 0
}

@media only screen and (max-width:1023px) {
    .pageWrapper {
        position: relative;
        right: 0;
        transition: all .2s ease
    }

    .pageWrapper.withNavOpen {
        right: 300px
    }
}

@media only screen and (max-width:450px) {
    nav.mobile {
        width: 240px
    }

    .pageWrapper.withNavOpen {
        right: 240px
    }
}

.featuredItems,
.header,
.headerMobile,
.mobile {
    background: 0 0 !important
}

.topNav {
    margin-top: 49px
}

.topNav ul li a {
    font-size: 12px
}

#menu-item-659 a {
    margin-right: 10px
}

.header__right::after,
.header__right::before {
    display: none
}

.topNav ul li a {
    margin: 0
}

.header,
.headerMobile {
    background-color: #eeeeee !important
}

.header::before,
.headerMobile::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc(((100vw - 1460px) * .5) + 186px);
    /* background-image: url(static/img/nav1.jpg); */
    background-blend-mode: multiply;
    /* background-color: #a5a4a4; */
    background-size: cover
}

@media screen and (max-width:1279px) {
    .header::before {
        width: 50px
    }
}

.headerMobile::before {
    width: 45px
}

@media (max-width:500px) {
    .headerMobile::before {
        width: 40px
    }
}

@media (max-width:374px) {
    .headerMobile::before {
        width: 35px
    }
}

#menu-desktop {
    position: relative;
    top: -15px
}

body .header__logo {
    height: 100px;
    top: 0px;
    /* width: 450px; */
    left: 10%;
}

body .headerMobile .logo{
    background-image: url(static/img/SVG_Transperent_BG.svg) !important;
    transform: scale(1.2);
    transform-origin: center center;
}
body .header__logo {
    background-image: url(static/img/SVG_Transperent_BG.svg) !important;
    transform: scale(2);
    transform-origin: center center;
}