.site-header {
    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(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
    background-color: var(--white);
}

.site:not(.site-has-banner) .site-header,
.site.site-has-banner:not(.large-banner) .site-header {
    position: -webkit-sticky;
    position: sticky;
}

.site-header.sticky-down:not(.toggle-onactive):not(.sticky-clicked) {
    -webkit-transform: translateY(-webkit-calc(var(--height-header)* -1));
    -moz-transform: translateY(-moz-calc(var(--height-header)* -1));
    -ms-transform: translateY(calc(var(--height-header)* -1));
    -o-transform: translateY(calc(var(--height-header)* -1));
    transform: translateY(calc(var(--height-header)* -1));
}

.site-header .navbar-header {
    height: var(--height-header);
    -webkit-transition: var(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
}

.site-header .navbar-header>.container {
    --container: var(--container-large);
    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%;
}

.site-header .site-branding {
    --width-logo: 220px;
    --height-logo: 44px;
}

.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(--width-logo);
    height: var(--height-logo);
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left;
       object-position: left;
}

.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(--dark-green);
    font-weight: 500;
    font-size: var(--text-base);
}

.site-header .menu>.menu-item-has-children>a,
.site-header .menu>.menu-item.megamenu-item>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%;
}

.site-header .menu-item:not([class*="btn-"]).current-menu-item>a {
    font-weight: 700;
}

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

.menu-item-has-children>.icon-submenu,
.menu-item.megamenu-item>.icon-submenu {
    position: absolute;
    display: inline-block;
    width: 8px;
    height: 8px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    cursor: pointer;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: var(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
    background: url(/wp-content/themes/whello/assets/icons/icon-chevron-down-small-green.svg) center/8px no-repeat;
}

.menu-item-has-children:hover>.icon-submenu {
    -webkit-transform: translateY(-50%) rotate(-180deg);
       -moz-transform: translateY(-50%) rotate(-180deg);
        -ms-transform: translateY(-50%) rotate(-180deg);
         -o-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg);
}

.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: 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: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: start;
            -webkit-align-items: flex-start;
               -moz-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start;
    width: 24px;
    height: 24px;
    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: 24px;
    height: 2px;
    background-color: var(--dark-green);
    -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-lg);
       -moz-border-radius: var(--rounded-lg);
            border-radius: var(--rounded-lg);
}

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

.hamburger-menu span:first-of-type {
    width: 20px;
} 

.hamburger-menu span:last-of-type {
    width: 16px;
} 


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

.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(3px, -4px);
    -moz-transform: rotate(-45deg) translate(3px, -4px);
    -ms-transform: rotate(-45deg) translate(3px, -4px);
    -o-transform: rotate(-45deg) translate(3px, -4px);
    transform: rotate(-45deg) translate(3px, -4px);
    width: 24px;
}

.toggle-onactive .hamburger-menu span {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}

html.noprevent-scroll {
    overflow: hidden;
}

.site-header .btn-cta-header a {
    --padding-button: 11.71px 25px;
    font-size: var(--text-md);
    font-weight: 700;
    padding: var(--padding-button);
    -webkit-border-radius: var(--rounded-full);
       -moz-border-radius: var(--rounded-full);
            border-radius: var(--rounded-full);
    background-color: var(--blue);
    color: var(--white);
    line-height: var(--lineheight-s);
    font-family: var(--fontfamily-satoshi);
    -webkit-transition: var(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
}

.site-header .btn-cta-header a:hover {
    color: var(--white);
    background-color: var(--blue-blue-secondary);
}

.site-header .megamenu-item .mega-menu-layout>.wpb-content-wrapper ul {
    padding-left: 0;
    list-style-type: none;
}

.site-header .megamenu-item .wpb_text_column a {
    color: var(--black);
}

.site-header .megamenu-item .wpb_text_column ul li:after {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-left: 8px;
    margin-top: 3px;
    -webkit-transition: var(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
    background: url("data:image/svg+xml,%3Csvg width='11' height='10' viewBox='0 0 11 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5H9.47059M9.47059 5L5.47059 1M9.47059 5L5.47059 9' stroke='%23142900' stroke-width='1.41176' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.site-header .megamenu-item .wpb_text_column ul li:not(:hover):after {
    opacity: 0;
    visibility: hidden;
}

.site-header .megamenu-item .wpb_text_column ul li {
    line-height: 1;
}


@media all and (min-width: 901px) {
    .site-header .megamenu-item .wpb_text_column a.active:after {
        opacity: 1;
        visibility: visible;
    }
}


/* >= DESKTOP & LAPTOP */
@media all and (min-width: 1200px) {
    .admin-bar .site.site-has-banner:not(.large-banner) .site-header:not(.sticky-active) {
         top: -webkit-calc(48px + 40px);
         top: -moz-calc(48px + 40px);
         top: calc(48px + 40px);
    }

    .admin-bar .site-header {
        top: 48px;
    }
    
    .site.site-has-banner.large-banner .site-header {
        position: fixed;
    }

    .site.site-has-banner.large-banner .site-header:not(.sticky-active) {
        background-color: var(--transparent);
    }

    .site.site-has-banner:not(.large-banner) .site-header:not(.sticky-active) {
        top: 40px;
    }

    .site.site-has-banner.large-banner .site-header:not(.sticky-active) .custom-logo {
        -webkit-transition: var(--duration);
        -o-transition: var(--duration);
        -moz-transition: var(--duration);
        transition: var(--duration);
    }

    .site.site-has-banner.large-banner .topbar-marquee {
        display: none;
    }

    .site-header .container {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
           -moz-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .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;
    }

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

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

    .site-header .menu-item-has-children .sub-menu {
        width: 235px;
        padding: 10px 0;
        position: absolute;
        z-index: 2;
        opacity: 0;
        -webkit-box-shadow: 0px 13px 27px -5px rgba(50, 50, 93,0.16);
           -moz-box-shadow: 0px 13px 27px -5px rgba(50, 50, 93,0.16);
                box-shadow: 0px 13px 27px -5px rgba(50, 50, 93,0.16);
        -webkit-border-radius: var(--rounded-lg);
           -moz-border-radius: var(--rounded-lg);
                border-radius: var(--rounded-lg);
        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: -webkit-calc(100% - 14px);
        top: -moz-calc(100% - 14px);
        top: calc(100% - 14px);
        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);
    }

    .menu-item.megamenu-item:hover>.icon-submenu {
        -webkit-transform: translateY(-50%) rotate(-180deg);
        -moz-transform: translateY(-50%) rotate(-180deg);
            -ms-transform: translateY(-50%) rotate(-180deg);
            -o-transform: translateY(-50%) rotate(-180deg);
                transform: translateY(-50%) rotate(-180deg);
    }

    .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 .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(--blue);
    }
    /* MEGAMENU --------------------*/
    .site-header .megamenu-item .mega-menu-item {
        --duration: .5s;
        position: absolute;
        z-index: 2;
        opacity: 0;
        top: 72px;
        left: -50%;
        -webkit-transform: translate(1%, 10px);
           -moz-transform: translate(1%, 10px);
            -ms-transform: translate(1%, 10px);
             -o-transform: translate(1%, 10px);
                transform: translate(1%, 10px);
        background: transparent;
        width: -webkit-calc(100vw - 48px);
        width: -moz-calc(100vw - 48px);
        width: calc(100vw - 48px);
        max-width: 817px;
        -webkit-transition: all var(--duration);
        -o-transition: all var(--duration);
        -moz-transition: all var(--duration);
        transition: all var(--duration);
    }

    .site-header .megamenu-item:hover .mega-menu-item {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate(1%, 0px);
           -moz-transform: translate(1%, 0px);
            -ms-transform: translate(1%, 0px);
             -o-transform: translate(1%, 0px);
                transform: translate(1%, 0px);
    }

    .site-header .megamenu-behandelingen.megamenu-item .mega-menu-item {
        max-width: 967px;
        -webkit-transform: translate(-24%, 10px);
           -moz-transform: translate(-24%, 10px);
            -ms-transform: translate(-24%, 10px);
             -o-transform: translate(-24%, 10px);
                transform: translate(-24%, 10px);
    }

    .site-header .megamenu-behandelingen.megamenu-item:hover .mega-menu-item {
        -webkit-transform: translate(-24%, 0px);
           -moz-transform: translate(-24%, 0px);
            -ms-transform: translate(-24%, 0px);
             -o-transform: translate(-24%, 0px);
                transform: translate(-24%, 0px);
    }

    .site-header .megamenu-item .mega-menu-layout>.wpb-content-wrapper {
        position: relative;
        padding: 40px 48px 48px;
        -webkit-box-shadow: 0px 13px 27px -5px rgba(50, 50, 93, 0.16);
           -moz-box-shadow: 0px 13px 27px -5px rgba(50, 50, 93, 0.16);
                box-shadow: 0px 13px 27px -5px rgba(50, 50, 93, 0.16);
        -webkit-border-radius: 16px;
           -moz-border-radius: 16px;
                border-radius: 16px;
        background-color: var(--white);
    }

    .site-header .mega-menu-layout>.wpb-content-wrapper>.vc_row.layout::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #F5F5F5;
        -webkit-border-radius: 10px;
                border-radius: 10px;
    }

    .site-header .mega-menu-layout>.wpb-content-wrapper>.vc_row.layout::-webkit-scrollbar {
        width: 10px;
        background-color: #F5F5F5;
    }

    .site-header .mega-menu-layout>.wpb-content-wrapper>.vc_row.layout::-webkit-scrollbar-thumb {
        -webkit-border-radius: 10px;
                border-radius: 10px;
        background-image: -webkit-gradient(linear,
        left bottom,
        left top,
        color-stop(0.44, rgb(122,153,217)),
        color-stop(0.72, rgb(73,125,189)),
        color-stop(0.86, rgb(83, 116, 216)));
    }

    .site-header .megamenu-item:not(:hover) .mega-menu-item {
        pointer-events: none;
    }

    .site-header .megamenu-item:hover .mega-menu-item {
        display: block;
        pointer-events: auto;
    }

    .site-header .heading-megamenu {
        margin-bottom: 12.24px;
    }

    .site-header .heading-megamenu * {
        color: var(--dark-green);
        font-size: var(--text-md);
        font-weight: 900;
        font-family: var(--fontfamily-satoshi);
    }

    .site-header .row-content-megamenu {
        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;
    }

    .site-header .row-content-megamenu.menu-klachten > .wpb_column:nth-child(1) {
        width: 59%;
    }

    .site-header .row-content-megamenu.menu-klachten > .wpb_column:nth-child(2) {
        width: 41%;
    }

    .site-header .row-content-megamenu.menu-behandelingen > .wpb_column:nth-child(1) {
        width: 65%;
    }

    .site-header .row-content-megamenu.menu-behandelingen > .wpb_column:nth-child(2) {
        width: 35%;
    }

    .site-header .megamenu-item .wpb_text_column a {
        font-weight: 500;
    }

    .site-header .megamenu-item .mega-menu-item {
        padding-top: 24px;
    }

    .site-header .menu-home.menu-item {
        display: none;
    }

    .site-header .megamenu-item .wpb_text_column ul li+li {
        margin-top: 28px;
    }
}
/* >= LARGE DESKTOP */
@media all and (min-width: 1400px) {
    .site-header .menu>.menu-item:not(:last-child) {
        margin-right: 37.18px;
    }
}

/* >= DESKTOP & LAPTOP && < LARGE DESKTOP */
@media all and (min-width: 1200px) and (max-width: 1599px) {
    .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;
    }
}

@media all and (min-width: 1200px) and (max-width: 1399px) {
    .site-header .menu>.menu-item:not(:last-child) {
        margin-right: 25px;
    }
}

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

    #wpadminbar {
        display: none;
    }

    .site-header {
        position: -webkit-sticky;
        position: sticky;
        background-color: var(--white);
    }

    .site-header:not(.toggle-onactive).sticky-active {
        -webkit-box-shadow: var(--shadow);
           -moz-box-shadow: var(--shadow);
                box-shadow: var(--shadow);
    } 

    .site-header .site-branding {
        --width-logo: 202px;
        --height-logo: 40px;
    }

    .topbar-marquee {
        display: none;
    }

    .site .hamburger-menu {
        margin-left: 16px;
    }

    .site-header .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: -webkit-calc(100vh - 100%);
        height: -moz-calc(100vh - 100%);
        height: calc(100vh - 100%);
        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);
    }

    .site-header .main-navigation {
        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;
        max-height: -webkit-calc(100vh - 88px);
        max-height: -moz-calc(100vh - 88px);
        max-height: calc(100vh - 88px);
        overflow: hidden auto;
    }

    .site-header .main-navigation::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #F5F5F5;
        -webkit-border-radius: 10px;
                border-radius: 10px;
    }

    .site-header .main-navigation::-webkit-scrollbar {
        width: 10px;
        background-color: #F5F5F5;
    }

    .site-header .main-navigation::-webkit-scrollbar-thumb {
        -webkit-border-radius: 10px;
                border-radius: 10px;
        background-image: -webkit-gradient(linear,
        left bottom,
        left top,
        color-stop(0.44, rgb(122,153,217)),
        color-stop(0.72, rgb(73,125,189)),
        color-stop(0.86, rgb(83, 116, 216)));
    }

    .site-header .main-navigation .main-navbar {
        width: 100%;
        padding: 45px 40px 64px;
    }

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

    .site-header .navbar-header>.container {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
           -moz-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

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

    .menu-item-has-children>.icon-submenu,
    .menu-item.megamenu-item>.icon-submenu {
        position: relative;
        width: 19px;
        height: 19px;
        margin-bottom: -18px;
        margin-left: 6px;
        -webkit-filter: invert(0) brightness(0);
                filter: invert(0) brightness(0);
    }

    .main-navigation .megamenu-item>.mega-menu-item,
    .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 .megamenu-item:not(.menu-item-active)>.mega-menu-item,
    .main-navigation .menu-item-has-children:not(.menu-item-active)>.sub-menu {
        overflow: hidden;
    }

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

    .site-header .menu>.menu-item > a {
        font-weight: 600;
        line-height: var(--lineheight-s);
    }

    .site-header .menu .menu-item.megamenu-item > a {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
           -moz-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }

    .site-header .menu .menu-item.megamenu-item .icon-submenu {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
           -moz-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }

    .site-header .menu .menu-item.megamenu-item .mega-menu-item {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
           -moz-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    }

    .site-header .menu .menu-item.btn-cta-header {
        display: none;
    }

    .site-header .menu> .menu-item + .menu-item {
        margin-top: 32px;
    }

    .site-header .wpb_text_column.heading-megamenu {
        display: none;
    }

    .site-header .megamenu-item .wpb_text_column a {
        font-weight: 400;
        font-size: var(--text-sm);
        color: var(--dark-green);
    }

    .site-header .megamenu-item .wpb_text_column ul li+li {
        margin-top: 24px;
    }

    .site-header .menu>.menu-item.current-menu-item > a {
        position: relative;
    }

    .site-header .menu>.menu-item.current-menu-item > a:before {
        display: inline-block;
        content: '';
        width: 6px;
        height: 6px;
        -webkit-border-radius: var(--rounded-full);
           -moz-border-radius: var(--rounded-full);
                border-radius: var(--rounded-full);
        background-color: var(--lilac);
        margin-right: 11px;
    }

    .menu-item.megamenu-item.menu-item-active>.icon-submenu {
        -webkit-transform: translateY(-50%) rotate(-180deg);
        -moz-transform: translateY(-50%) rotate(-180deg);
            -ms-transform: translateY(-50%) rotate(-180deg);
            -o-transform: translateY(-50%) rotate(-180deg);
                transform: translateY(-50%) rotate(-180deg);
    }
}

@media all and (max-width: 900px) {
    .site-header .megamenu-item .mega-menu-layout>.wpb-content-wrapper ul {
        margin-top: 24px;
    }

    .listing.listing-featured-megamenu {
        display: none;
    }

    .site-header .megamenu-item .wpb_text_column a.active {
        position: relative;
    }

    .site-header .megamenu-item .wpb_text_column a.active:before {
        display: inline-block;
        content: '';
        width: 6px;
        height: 6px;
        -webkit-border-radius: var(--rounded-full);
           -moz-border-radius: var(--rounded-full);
                border-radius: var(--rounded-full);
        background-color: var(--lilac);
        margin-right: 11px;
    }

    .site-header .megamenu-item .wpb_text_column a.active {
        font-weight: 600;
    }

    .site-header .vc_row.row-content-megamenu > .wpb_column:last-of-type{
        margin-bottom: 8px;
    }

    .site-header .header-action-mobile {
        margin-top: auto;
        padding: 0px 40px 40px;
        width: 100%;
    }

    .whbutton-wrapper.btn-contact-mobilemenu,
    .whbutton-wrapper.btn-contact-mobilemenu .cta-whbutton  {
        width: 100%;
    }

     .whbutton-wrapper.btn-contact-mobilemenu .cta-whbutton {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
     }

     .logo-label-wrapper.media-social-header .logo-groups {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
     }

     .logo-label-wrapper.media-social-header .logo-group-item:not(:last-of-type) {
        margin-right: 32px;
     }

     .logo-label-wrapper.media-social-header .image-wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        background-color: var(--baby-blue);
        -webkit-border-radius: var(--rounded-full);
           -moz-border-radius: var(--rounded-full);
                border-radius: var(--rounded-full);
        width: 40px;
        height: 40px;
        -webkit-transition: var(--duration);
        -o-transition: var(--duration);
        -moz-transition: var(--duration);
        transition: var(--duration);
     }

     .logo-label-wrapper.media-social-header .image-wrapper img {
        width: 15px;
        height: 14px;
        -o-object-fit: contain;
           object-fit: contain;
     }

     .logo-label-wrapper.media-social-header .image-wrapper:hover {
        background-color: var(--lilac);
     }

     .logo-label-wrapper.media-social-header .image-wrapper:hover img {
        -webkit-filter: invert(1) brightness(100);
                filter: invert(1) brightness(100);
     }
}