/* Header Container Layout */
#masthead.site-header {
    width: 100%;
    padding: 45px 0px 0px;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.admin-bar #masthead {
  top: 32px;
}
#masthead .main-navigation {
    display: block;
    width: auto;
    max-width: 100%;
}

#masthead .header-main-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
        min-height: 50px;
}
#masthead img.custom-logo {
    max-width: 410px;
}

#masthead .main-nav {
    display: flex;
    gap: 129px;
}
/* Nav Menu Styling */
#masthead .main-navigation ul {
    display: flex;
    list-style: none;
    gap: 60px;
    justify-content: center;
}

#masthead .main-navigation a {
    font-family: var( --ld-proxima-nova);
    color: var(--ld-white) !important;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

#masthead .main-navigation a:hover {
    color: var(--ld-green-base) !important;
}

#masthead .header-cta {
    background: var(--ld-white);
    transition: 0.3s;
    max-width: 135px;
    text-align: center;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#masthead .header-cta a{
    color: var(--ld-dark-green);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
        text-wrap-mode: nowrap;
}

#masthead .header-cta:hover {
    background: var(--ld-dark-green);

}
#masthead .header-cta:hover a{
    color: var(--ld-white);
}

/* Toggle Menu */
.toggle-menu-inner {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.toggle-menu-inner span {
    width: 25px;
    height: 2px;
    background: var(--ld-white);
}
.toggle-menu {
    display: none;
}
@media screen and (max-width: 1200px) {
 #masthead .header-cta{
        width: 100%;
        max-width: 145px;
    }
}

@media screen and (max-width: 1024px) {
    #masthead .main-navigation ul{
        gap:40px
    }
    #masthead .main-nav{
        gap:80px;
    }
    #masthead.site-header {
        padding:30px 0px 0px;
    }
   
    #masthead .header-main-container {
        padding: 0 15px;
    }

    #masthead img.custom-logo {
        max-width: 250px;
    }
    #masthead .btn-header{
        padding: 10px 15px;
    }
}

@media screen and (max-width: 767px) {
    #masthead {
        padding: 20px 0 0;
    }
    
    .btn-header {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
    
    #masthead img.custom-logo {
        max-width: 150px;
    }
}