/*!
README - STYLEGUIDE BRIEFLY

Find the style by section component, using Find or CTRL + F
HEADER STYLE, BREADCRUMB STYLE, BANNER STYLE, CONTENT STYLE, LISTING STYLE, FOOTER STYLE

Make this stylesheet still readable and after using this file, dont forget to use beautify after development
Thankyou Whello Developer
*/
.site-header {
    --size-logo-width: 132px;
    --size-logo-height: 32px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.site-header .navbar-header {
    height: var(--height-header);
}

.site-header .navbar-header > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    background-color: white;
    box-shadow: 0px 24px 50px 0px rgba(56, 56, 56, 0.08);

}

.site-header .site-branding a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.site-header .site-branding img {
    width: var(--size-logo-width);
    height: var(--size-logo-height);
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
    margin-bottom: -5px;
}

.site-header .main-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-header .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
}

.site-header .menu-item,
.site-footer li {
    list-style: none;
}

.site-header .menu .menu-item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-top: 0px;
}

.site-header .menu-item:not([class*="btn-"]) a {
    color: var(--gray-900);
}

.site-header .menu > .menu-item-has-children > a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    height: 100%;
}

.menu .current-menu-item > a {
    font-weight: 600;
}

.site-header .sub-menu > .menu-item > a {
    display: block;
    text-align: left;
}

.menu-item-has-children > .icon-submenu {
    width: 20px;
    height: 20px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    cursor: pointer;
}

.menu-item-has-children > .icon-submenu:before,
.menu-item-has-children > .icon-submenu:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -webkit-calc(100% - 6px);
    left: -moz-calc(100% - 6px);
    left: calc(100% - 6px);
    z-index: 1;
    display: block;
    width: 7px;
    height: 1px;
    margin: 0;
    background-color: var(--black);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.menu-item-has-children > .icon-submenu:before {
    -webkit-transform: translate(-100%, -50%) rotate(45deg);
    -moz-transform: translate(-100%, -50%) rotate(45deg);
    -ms-transform: translate(-100%, -50%) rotate(45deg);
    -o-transform: translate(-100%, -50%) rotate(45deg);
    transform: translate(-100%, -50%) rotate(45deg);
    left: -webkit-calc(100% - 5px);
    left: -moz-calc(100% - 5px);
    left: calc(100% - 5px);
}

.menu-item-has-children > .icon-submenu:after {
    -webkit-transform: translate(-25%, -50%) rotate(-45deg);
    -moz-transform: translate(-25%, -50%) rotate(-45deg);
    -ms-transform: translate(-25%, -50%) rotate(-45deg);
    -o-transform: translate(-25%, -50%) rotate(-45deg);
    transform: translate(-25%, -50%) rotate(-45deg);
    left: -webkit-calc(100% - 6px);
    left: -moz-calc(100% - 6px);
    left: calc(100% - 6px);
}

.menu-item-has-children.menu-item-active > .icon-submenu:before {
    -webkit-transform: translate(-100%, -50%) rotate(-45deg);
    -moz-transform: translate(-100%, -50%) rotate(-45deg);
    -ms-transform: translate(-100%, -50%) rotate(-45deg);
    -o-transform: translate(-100%, -50%) rotate(-45deg);
    transform: translate(-100%, -50%) rotate(-45deg);
}

.menu-item-has-children.menu-item-active > .icon-submenu:after {
    -webkit-transform: translate(-25%, -50%) rotate(45deg);
    -moz-transform: translate(-25%, -50%) rotate(45deg);
    -ms-transform: translate(-25%, -50%) rotate(45deg);
    -o-transform: translate(-25%, -50%) rotate(45deg);
    transform: translate(-25%, -50%) rotate(45deg);
}

.menu-item-has-children.menu-item-active > .icon-submenu:before,
.menu-item-has-children.menu-item-active > .icon-submenu:after {
    background-color: var(--black);
}

.site-header .menu-item-has-children .sub-menu {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 0px;
}

.site .hamburger-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    width: 28px;
    padding: 0px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--black);
    -webkit-transform: rotate(0deg) translate(0px);
    -moz-transform: rotate(0deg) translate(0px);
    -ms-transform: rotate(0deg) translate(0px);
    -o-transform: rotate(0deg) translate(0px);
    transform: rotate(0deg) translate(0px);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    -webkit-border-radius: var(--rounded-sm);
    -moz-border-radius: var(--rounded-sm);
    border-radius: var(--rounded-sm);
}

.hamburger-menu span:not(:last-child) {
    margin-bottom: 5px;
}

.toggle-onactive .hamburger-menu span:first-child {
    -webkit-transform: rotate(45deg) translate(6px, 5px);
    -moz-transform: rotate(45deg) translate(6px, 5px);
    -ms-transform: rotate(45deg) translate(6px, 5px);
    -o-transform: rotate(45deg) translate(6px, 5px);
    transform: rotate(45deg) translate(6px, 5px);
}

.toggle-onactive .hamburger-menu span:nth-child(2) {
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
}

.toggle-onactive .hamburger-menu span:last-child {
    -webkit-transform: rotate(-45deg) translate(6px, -6px);
    -moz-transform: rotate(-45deg) translate(6px, -6px);
    -ms-transform: rotate(-45deg) translate(6px, -6px);
    -o-transform: rotate(-45deg) translate(6px, -6px);
    transform: rotate(-45deg) translate(6px, -6px);
    width: 100%;
}

html.noprevent-scroll {
    overflow: hidden;
}

/* STICKY MENUBAR */
.sticky-menubar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    padding: 10px;
    -webkit-box-shadow: var(--shadow);
    -moz-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
}

/* btn header */
.btn-header.menu-item a {
    display: inline-block;
    padding: var(--padding-button);
    border: 1px solid var(--gray-900);
    color: var(--gray-900);
    font-weight: 700;
    -webkit-border-radius: var(--rounded-full);
    -moz-border-radius: var(--rounded-full);
    border-radius: var(--rounded-full);
    line-height: var(--lineheight-xs);
    background-color: var(--transparent);
}

.btn-header.menu-item:hover a {
    --transparent: var(--bg-color);
    color: var(--white);
}

.menu-heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    width: 100%;
    display: block;
    padding: 0 16px 12px;
    margin-bottom: 8px;
    position: relative;
}

.menu-heading:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 16px;
    width: calc(100% - 32px);
    height: 1px;
    background-color: var(--white-300);
}

ul.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li + li {
    margin-top: 0px;
}

.menu-list li {
    padding: 16px;
}

.menu-list li:hover {
    background-color: var(--white-100);
    -webkit-border-radius: var(--rounded-sm);
    -moz-border-radius: var(--rounded-sm);
    border-radius: var(--rounded-sm);
}

/* .menu-list li:hover a {
    -webkit-text-stroke: 0.5px #383838;
} */

.main-navbar > .menu > li:last-child {
    background-color: var(--geel);
    border-radius: var(--rounded-full);
    margin-left: 160px;
}

.main-navbar > .menu > li:last-child a {
    color: var(--antraciet);
    font-weight: 700;
    padding: 16px 24px;
    line-height: 1;
}

.menu-item a:focus,
.menu-item.current-menu-item > a {
    font-weight: 700;
}

/* .menu-item > a:hover {
    -webkit-text-stroke: 0.5px #383838;
} */

.tab-header-item a{
    position: relative;
}

.breadcrumb-wrapper .hiddenitem {
    display: none;
}

/* >= DESKTOP & LAPTOP */
@media all and (min-width: 1300px) {

    .mega-menu-item {
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
        max-height: 0;
        overflow: hidden;
        position: absolute;
        top: 62px;
        left: -368px;

        width: 1280px;
        padding: 32px;
        border-radius: 24px;
        background: white;
        pointer-events: none; 
        height: 0; 
    }

    .megamenu-item.active .mega-menu-item {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);

        max-height: 400px;
        height: 400px;

        pointer-events: auto;
    }


    .megamenu-item > a {
        position: relative;
        padding-right: 28px;
    }

    .megamenu-item > a::before {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 22px;
        height: 22px;
        background: url("/wp-content/uploads/2025/11/Frame.svg") no-repeat
            center;
        background-size: contain;
        transform: translateY(-50%) rotate(0deg);
        transition: transform 0.3s ease;
    }

    .megamenu-item.active > a::before {
        transform: translateY(-50%) rotate(180deg);
    }

    .mega-menu-layout {
        display: flex;
        flex-direction: row;
    }

    .mega-menu-column:not(:last-child) {
        margin-right: 48px;
        width: 264px;
    }

    .mega-menu-column:last-child {
        width: 270px;
    }

    .admin-bar .site-header {
        top: 48px;
    }

    .site-header {
        padding-top: 22px;
        max-width: var(--container);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -24px;
    }

    .site-header .container {
        max-width: 100%;
        width: 100%;
        padding: 16px 32px;
        -webkit-border-radius: 24px;
        -moz-border-radius: 24px;
        border-radius: 24px;
    }

    /* .site.site-has-tab-header .site-header .container {
        -webkit-border-top-left-radius: 0;
           -moz-border-radius-topleft: 0;
                border-top-left-radius: 0;
    } */

    .site:not(.site-has-tab-header) .site-header .navbar-header {
        --height-header: 126px;
    }

    .site-header .navbar-header > .container {
        height: 80px;
    }

    .site-header .navbar-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .site-header .site-branding {
        margin-right: 36px;
    }

    .site-header .hamburger-menu {
        display: none;
    }

    .site-header .menu .menu-item {
        width: auto;
        margin-bottom: 0;
    }

    .site-header .main-navigation {
        position: relative;
        width: auto;
        margin-left: auto;
        margin-right: -40px;
    }

    .site-header .main-navigation,
    .site-header .main-navigation .main-navbar,
    .site-header .main-navigation .menu,
    .site-header .menu > .menu-item-has-children {
        height: 100%;
    }

    .site-header .menu > .menu-item-has-children > a {
        width: 100%;
        padding-right: 20px;
    }

    .menu-item .menu-item-has-children > .icon-submenu {
        opacity: 0;
    }

    .menu-item-has-children > .icon-submenu {
        position: absolute;
        top: 50%;
        left: 100%;
        z-index: 1;
        -webkit-transform: translate(-100%, -50%);
        -moz-transform: translate(-100%, -50%);
        -ms-transform: translate(-100%, -50%);
        -o-transform: translate(-100%, -50%);
        transform: translate(-100%, -50%);
    }

    .sub-menu > .menu-item-has-children > .icon-submenu {
        left: auto;
        right: 0;
    }

    .menu-item-has-children:hover > .icon-submenu:before,
    .menu-item-has-children.menu-item-active > .icon-submenu:before {
        -webkit-transform: translate(-100%, -50%) rotate(-45deg);
        -moz-transform: translate(-100%, -50%) rotate(-45deg);
        -ms-transform: translate(-100%, -50%) rotate(-45deg);
        -o-transform: translate(-100%, -50%) rotate(-45deg);
        transform: translate(-100%, -50%) rotate(-45deg);
    }

    .menu-item-has-children:hover > .icon-submenu:after,
    .menu-item-has-children.menu-item-active > .icon-submenu:after {
        -webkit-transform: translate(-25%, -50%) rotate(45deg);
        -moz-transform: translate(-25%, -50%) rotate(45deg);
        -ms-transform: translate(-25%, -50%) rotate(45deg);
        -o-transform: translate(-25%, -50%) rotate(45deg);
        transform: translate(-25%, -50%) rotate(45deg);
    }

    .menu-item-has-children:hover > .icon-submenu:before,
    .menu-item-has-children:hover > .icon-submenu:after,
    .menu-item-has-children.menu-item-active > .icon-submenu:before,
    .menu-item-has-children.menu-item-active > .icon-submenu:after {
        background-color: var(--black);
    }

    .site-header .menu-item-has-children .sub-menu {
        width: 235px;
        padding: 10px 0;
    }

    .site-header .menu-item-has-children .sub-menu {
        position: absolute;
        z-index: 2;
        opacity: 0;
        border: 1px solid var(--gray-300);
        -webkit-box-shadow: var(--shadow);
        -moz-box-shadow: var(--shadow);
        box-shadow: var(--shadow);
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        visibility: hidden;
        background-color: var(--white);
        -webkit-transition: var(--transition);
        -o-transition: var(--transition);
        -moz-transition: var(--transition);
        transition: var(--transition);
    }

    .menu > .menu-item-has-children > .sub-menu {
        top: 100%;
        left: 50%;
        -webkit-transform: translate(-50%, 10px);
        -moz-transform: translate(-50%, 10px);
        -ms-transform: translate(-50%, 10px);
        -o-transform: translate(-50%, 10px);
        transform: translate(-50%, 10px);
    }

    .sub-menu > .menu-item-has-children > .sub-menu {
        top: -10px;
        left: 100%;
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
        transform: translateX(10px);
    }

    .site-header .menu-item-has-children:hover > .sub-menu,
    .site-header .menu-item-has-children.menu-item-active > .sub-menu {
        opacity: 1;
        visibility: visible;
    }

    .menu > .menu-item-has-children:hover > .sub-menu,
    .menu > .menu-item-has-children.menu-item-active > .sub-menu {
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .sub-menu > .menu-item-has-children:hover > .sub-menu,
    .sub-menu > .menu-item-has-children.menu-item-active > .sub-menu {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    .site-header .menu-item-has-children .sub-menu:after,
    .site-header .menu-item-has-children .sub-menu:before {
        content: "";
        position: absolute;
        top: 0;
        z-index: 2;
        display: block;
        width: 0;
        height: 0;
        -webkit-transform: translate(-50%, -100%);
        -moz-transform: translate(-50%, -100%);
        -ms-transform: translate(-50%, -100%);
        -o-transform: translate(-50%, -100%);
        transform: translate(-50%, -100%);
    }

    .site-header .menu-item-has-children .sub-menu:after,
    .site-header .menu-item-has-children .sub-menu:before {
        left: 50%;
    }

    .site-header .menu-item-has-children .sub-menu:before {
        border-left: 11px solid var(--transparent);
        border-right: 11px solid var(--transparent);
        border-bottom: 11px solid var(--gray-300);
    }

    .site-header .menu-item-has-children .sub-menu:after {
        border-left: 10px solid var(--transparent);
        border-right: 10px solid var(--transparent);
        border-bottom: 10px solid var(--white);
    }

    .sub-menu > .menu-item-has-children > .sub-menu:before,
    .sub-menu > .menu-item-has-children > .sub-menu:after {
        -webkit-transform: rotate(-90deg) translate(-25px, -100%);
        -moz-transform: rotate(-90deg) translate(-25px, -100%);
        -ms-transform: rotate(-90deg) translate(-25px, -100%);
        -o-transform: rotate(-90deg) translate(-25px, -100%);
        transform: rotate(-90deg) translate(-25px, -100%);
    }

    .sub-menu > .menu-item-has-children > .sub-menu:before {
        left: -6px;
        border-bottom-color: var(--gray-300);
    }

    .sub-menu > .menu-item-has-children > .sub-menu:after {
        left: -4px;
    }

    .site-header .sub-menu > .menu-item > a {
        width: 100%;
        padding: 10px 20px;
    }

    .site-header .menu > .menu-item-has-children.menu-item-active > a,
    .site-header .menu .menu-item:not([class*="btn-"]):hover > a {
        color: var(--gray-900);
    }

    .site-header .site-menubar {
        margin-left: 35px;
    }

    .tab-header-content-desktop {
        position: relative;
        height: 100%;
    }

    .tab-header-content-desktop .tab-header .tab-header-item a{
        display: inline-block;
        padding: 12px 32px 56px 32px;
        height: 46px;
        position: relative;
    }

    .tab-header-content-desktop .tab-header .tab-header-item a{
        background-color: #f4f4f4;
        color: var(--text-color, #333);
        font-weight: 400;
        transition: all 0.3s ease;
    }

    .tab-header-content-desktop .tab-header .tab-header-item:first-of-type a{
        -webkit-border-top-left-radius: var(--rounded-xl);
        -moz-border-radius-topleft: var(--rounded-xl);
        border-top-left-radius: var(--rounded-xl);
        -webkit-border-top-right-radius: var(--rounded-xl);
        -moz-border-radius-topright: var(--rounded-xl);
        border-top-right-radius: var(--rounded-xl);
        border-bottom-left-radius: 8px;
        z-index: 1;
    }

    .tab-header-content-desktop .tab-header .tab-header-item:first-of-type:not(.active) a{
        border-top-right-radius: 0 !important;
    }

    .tab-header-content-desktop .tab-header .tab-header-item:last-of-type a{
        padding-left: 48px;
        margin-left: -24px;
        -webkit-border-top-right-radius: var(--rounded-xl);
        -moz-border-radius-topright: var(--rounded-xl);
        border-top-right-radius: var(--rounded-xl);
    }

    .tab-header-content-desktop .tab-header .tab-header-item.active a,
    .tab-header-content-desktop .tab-header .tab-header-item:hover a{
        background-color: var(--white);
        color: var(--groen);
        font-weight: 700;
        z-index: 2;
    }

    .tab-header-content-desktop .tab-header .tab-header-item:last-child.active a {
        border-top-left-radius: 24px;
    }

    .btn-header.menu-item {
        margin-left: 16px;
    }

    .tab-header-content-desktop .tab-header-item:last-of-type:after a{
        content: "";
        position: absolute;
        right: -20px;
        top: 36px;
        transform: translateY(-50%);
        width: 22px;
        height: 22px;
        background-image: url("/wp-content/uploads/2025/11/Vector-curve-stiangle.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .tab-header-content-desktop .tab-header .tab-header-item:last-of-type.active a::after,
    .tab-header-content-desktop .tab-header .tab-header-item:last-of-type:hover a::after {
        background-image: url("/wp-content/uploads/2025/11/Vector-curve-stiangle-1.svg");
    }

    .tab-header-content-desktop .tab-header-content {
        position: relative;
        height: 100%;
    }

    .tab-header-content-desktop .tab-header {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
    }

    .tab-header-content-mobile {
        display: none;
    }
}

/* >= LARGE DESKTOP */
@media all and (min-width: 1600px) {
    .site-header .menu > .menu-item:not(:last-child) {
        margin-right: 40px;
    }
}

/* >= DESKTOP & LAPTOP && < LARGE DESKTOP */
@media all and (min-width: 1300px) and (max-width: 1599px) {
    .site-header .menu > .menu-item:not(:last-child) {
        margin-right: 40px;
    }

    .site-header .menu > .menu-item:last-child > .sub-menu {
        left: auto;
        right: 0;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .site-header .menu > .menu-item:last-child:hover > .sub-menu {
        left: auto;
        right: 0;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .site-header .menu > .menu-item:last-child .sub-menu:after,
    .site-header .menu > .menu-item:last-child .sub-menu:before {
        left: auto;
        right: 0;
    }

    .site-header .menu > .menu-item:last-child .sub-menu:before {
        right: -2px;
    }

    .site-header
        .menu
        > .menu-item:nth-last-child(-n + 2)
        .menu-item-has-children
        > .sub-menu {
        left: auto;
        right: 100%;
        -webkit-transform: translateX(-10px);
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -o-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    .site-header
        .menu
        > .menu-item:nth-last-child(-n + 2)
        .menu-item-has-children:hover
        > .sub-menu {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    .site-header
        .menu
        > .menu-item:nth-last-child(-n + 2)
        .menu-item-has-children
        > .sub-menu::before,
    .site-header
        .menu
        > .menu-item:nth-last-child(-n + 2)
        .menu-item-has-children
        > .sub-menu::after {
        -webkit-transform: rotate(90deg) translate(100%, 6px);
        -moz-transform: rotate(90deg) translate(100%, 6px);
        -ms-transform: rotate(90deg) translate(100%, 6px);
        -o-transform: rotate(90deg) translate(100%, 6px);
        transform: rotate(90deg) translate(100%, 6px);
        left: 100%;
    }

    .site-header
        .menu
        > .menu-item:nth-last-child(-n + 2)
        .menu-item-has-children
        > .sub-menu::before {
        left: -webkit-calc(100% + 1px);
        left: -moz-calc(100% + 1px);
        left: calc(100% + 1px);
        top: 0;
    }

    .site-header
        .menu
        > .menu-item:nth-last-child(-n + 2)
        .menu-item-has-children
        > .sub-menu::after {
        top: 2px;
    }
}

/* <= LARGE TABLET */
@media all and (max-width: 1299px) {
    html[lang] {
        margin-top: 0 !important;
    }

    #wpadminbar {
        display: none;
    }

    .site-header.toggle-onactive .container {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .site .hamburger-menu {
        margin-left: auto;
    }

    .site-header .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        height: auto;
        opacity: 0;
        visibility: hidden;
        background-color: var(--white);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
        -webkit-transition: var(--transition);
        -o-transition: var(--transition);
        -moz-transition: var(--transition);
        transition: var(--transition);
    }

    .site-header .main-navigation {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .site-header.toggle-onactive .main-navigation {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        border-bottom-right-radius: 24px;
        border-bottom-left-radius: 24px;
        box-shadow: 0px 24px 50px 0px rgba(56, 56, 56, 0.08);
    }

    .site-header .main-navigation .main-navbar {
        width: 100%;
        padding: 20px;
        max-height: -webkit-calc(100vh - 112px);
        max-height: -moz-calc(100vh - 112px);
        max-height: calc(100vh - 112px);
        overflow: hidden auto;
    }

    .site-header .menu {
        padding-left: 0;
    }

    .main-navigation .menu-item:not(:last-child) a {
        width: 100%;
        padding: 16px 0;
    }

    .site-header .menu > .menu-item-has-children > a {
        width: auto;
        margin-right: 5px;
    }

    .menu-item-has-children > .icon-submenu {
        position: relative;
    }

    .main-navigation .menu-item-has-children > .sub-menu {
        width: 100%;
        max-height: 0;
        padding-left: 16px;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: var(--transition);
        -o-transition: var(--transition);
        -moz-transition: var(--transition);
        transition: var(--transition);
    }

    .main-navigation
        .menu-item-has-children:not(.menu-item-active)
        > .sub-menu {
        overflow: hidden;
    }

    .main-navigation .menu-item-has-children.menu-item-active > .sub-menu {
        max-height: 10000px;
        padding: 16px 0 8px 16px;
        opacity: 1;
        visibility: visible;
    }

    .site-header .btn-header.menu-item {
        margin-top: 16px;
    }

    .tab-header-content-desktop {
        display: none;
    }

    .tab-header-content-mobile {
        padding-bottom: 32px;
        width: 100%;
    }

    .tab-header-content-mobile .tab-header {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .tab-header-content-mobile .tab-header-item a {
        font-size: 16px;
        display: block;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #cecece;
        text-align: center;
        color: var(--antraciet);
    }

     .tab-header-content-mobile .tab-header-item.active {
        background-color: var(--white);
        font-weight: 700;
        z-index: 2;
    }

    .tab-header-content-mobile .tab-header-item.active a {
        border: 1px solid var(--groen);
        color: var(--groen);
    }

    .site-header {
        padding-top: 16px;
        max-width: var(--container);
        margin-left: auto;
        margin-right: auto;
    }

    .site-header .navbar-header > .container {
        background: var(--white);
    }

    .site-header .container {
        padding: 16px 32px;
        border-radius: 24px;
    }

    .main-navbar > .menu > li:last-child {
        margin-left: 0px;
        justify-content: center;
    }

    .site-header.toggle-onactive .megamenu-item.active > .mega-menu-item {
        display: flex !important;
        width: 100%;
    }

    .site-header.toggle-onactive .mega-menu-layout {
        display: flex;
        padding: 12px 0 12px 16px;
        flex-direction: column;
    }

    .site-header.toggle-onactive .mega-menu-column {
        margin-bottom: 16px;
    }

    /* container link menu + ruang panah */
    .megamenu-item > a {
        position: relative;
        padding-right: 28px;
    }

    /* NONAKTIFKAN arrow bawaan (::before) */
    .megamenu-item > a::before {
        display: none !important;
    }

    /* ARROW BARU */
    .arrow-toggle {
        position: absolute;
        right: 0;
        top: 50%;
        width: 18px;
        height: 18px;
        transform: translateY(-50%) rotate(-90deg); /* default arah kanan */
        background: url("/wp-content/uploads/2025/11/Frame.svg") no-repeat center;
        background-size: contain;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    /* aktif → panah ke bawah */
    .megamenu-item.active .arrow-toggle {
        transform: translateY(-50%) rotate(0deg);
    }

    /* default mega menu hidden */
    .mega-menu-item {
        display: none !important;
    }

    /* aktif → muncul */
    .megamenu-item.active > .mega-menu-item {
        display: flex !important;
        width: 100%;
    }

    /* layout mobile */
    .mega-menu-layout {
        padding: 12px 0 12px 16px;
        display: flex;
        flex-direction: column;
    }

    .mega-menu-column {
        margin-bottom: 16px;
    }


    .sticky-down .navbar-header .container, [data-scroll-state="down"] .navbar-header .container {
        transform: translateY(0);
        opacity: 1;
        border-top-left-radius: 24px;
    }
}

@media all and (max-width: 600px) {
    .site-header .main-navigation {
        width: 100%;
        left: 0;
        top: 100%;
    }

    .site-header {
        position: fixed;
    }

    .site-header .navbar-header,
    .site-header .navbar-header > .container {
        border-radius: 24px;
    }

    .site-header .site-branding img {
        --size-logo-width: 115px;
    }

    .site-header .navbar-header {
        --height-header: 60px;
    }
}
