:root {

    --header-padding-mobile: 0;
    --header-padding-tablet: 0;
    --header-padding-laptop: 0;
    --header-padding-desktop: 0;
    --header-padding-sm-laptop: 0;

    --header-row-padding-mobile: 0.5em 5%;
    --header-row-padding-tablet: 0.5em 5%;
    --header-row-padding-laptop: 0em 6%;
    --header-row-padding-desktop: 0em 8%;
    --header-row-padding-sm-laptop: 0em 5%;

}

/*Widget parents rules*/
div.elementor:has(.site-header) > div.elementor-element {
    padding: 0 !important;
}

div.elementor:has(.site-header) > div.elementor-element > div {
    padding: 0 !important;
    max-width: 100% !important;
}

div.elementor-location-header > div.elementor-element,
div.elementor-location-header > div.elementor-element > div {
    padding: 0 !important;
    max-width: 100% !important;
}

/*Widget parents rules*/


body.menu-opened {
    height: 100%;
    overflow: hidden;
    margin: 0 !important;
}

.site-header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    position: fixed;
    align-items: center;
    flex-direction: column;
    max-width: unset !important;
    justify-content: space-between;
    box-shadow: none!important;
    background-color: transparent!important;
    transition: background-color 0.35s ease-in-out;
}


.site-header__row {
    gap: 2em;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.site-header .site-header__row {
    width: 100%;
    margin: 0 auto;
    max-width: 1390px;
}

.site-header .site-header__row {
/*.site-header:not(.scrolled) .site-header__row {*/
    border-radius: 10px 12px 12px 10px;
}

.site-header:not(.scrolled) .site-header__row--top {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
}

.site-header:not(.scrolled) .site-header__row--bottom {
    background-color: #ffffff;
}

.header-row__column {
    display: flex;
    align-items: center;
}

.header-row__column.column-cta {
    height: 88px;
    display: flex;
    align-items: center;
    border-radius: 0 10px 10px 0;
    background-color: var(--e-global-color-primary);
}


.header-row__column.column-cta a {
    gap: 0.4em;
    display: flex;
    font-weight: 500;
    padding: 1em 2.5em;
    font-size: 1.125rem;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-transform: uppercase;
    font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
}

.header-row__column.column-cta a span {
    text-wrap: nowrap;
}

.header-row__column--rows {
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}

.header-row__column-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-row__column.column-logo .header-logo {
    width: 135px;
    display: flex;
    position: relative;
    align-items: center;
    aspect-ratio: 135/78;
    transition: all 0.5s ease-in-out;
}

.header-row__column.column-logo .header-logo img {
    height: auto;
    max-width: 100%;
    position: absolute;
    transition: all 0.5s ease-in-out;
}

/*	burger */

.header-row__column.column-burger {
    width: 48px;
    height: 48px;
    flex: 0 1 48px;
    border-radius: 100%;
    justify-content: center;
    background-color: var(--e-global-color-primary);
}

.header-burger {
    height: 24px;
    width: 36px;
    cursor: pointer;
    position: relative;
    transform: scale(0.7);
    border-radius: 100%;
    background-color: var(--e-global-color-primary);
}

.header-burger__line {
    width: 100%;
    height: 2px;
    animation: none;
    position: absolute;
    transform: rotate(0deg);
    animation-duration: 0.65s;
    background-color: #ffffff;
    animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

body.menu-opened .header-burger__line {
    background-color: #ffffff !important;
}

.header-burger__line:nth-child(1) {
    top: 0;
    animation-name: topreverse;
    animation-fill-mode: forwards;
}

.header-burger__line:nth-child(2) {
    bottom: 10px;
    animation-name: bottomreverse;
}

.header-burger__line:nth-child(3) {
    bottom: 0;
    animation-name: bottomreverse;
}

.site-header.menu-opened .header-burger  > .header-burger__line {
    animation-duration: 0.65s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.site-header.menu-opened .header-burger .header-burger__line:nth-child(1) {
    top: 45.8333333333%;
    animation-name: top;
}

.site-header.menu-opened .header-burger  .header-burger__line:nth-child(2) {
    visibility: hidden;
}

.site-header.menu-opened .header-burger  .header-burger__line:nth-child(3) {
    bottom: 45.8333333333%;
    animation-name: bottom;
}


@keyframes top {
    0% {
        top: 0;
    }
    60% {
        top: 45.8333333333%;
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@keyframes bottom {
    0% {
        bottom: 0;
    }
    60% {
        bottom: 45.8333333333%;
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-45deg);
    }
}

@keyframes topreverse {
    0% {
        transform: rotate(45deg);
        top: 45.8333333333%;
    }
    60% {
        transform: rotate(0deg);
        top: 45.8333333333%;
    }
    100% {
        top: 0;
    }
}

@keyframes bottomreverse {
    0% {
        transform: rotate(-45deg);
        bottom: 45.8333333333%;
    }
    60% {
        transform: rotate(0deg);
        bottom: 45.8333333333%;
    }
    100% {
        bottom: 0;
    }
}

/* burger */


/* menu */
.site-menu__primary,
.site-menu__primary ul {
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.site-menu__primary {
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.site-menu__primary ul {
    flex-direction: row;
    padding: 0!important;
    align-items: flex-start;
    justify-content: flex-start;
}

.site-menu__primary li a {
    display: flex;
    font-weight: 400;
    width: fit-content;
    position: relative;
    align-items: center;
    font-size: 1.0625rem;
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
}

/* menu */


.site-header .site-header__row--top {
    z-index: 9999;
    transition: width 0.6s ease-out;
}

.site-header.scrolled .site-header__row--top {
    transform: translateY(-100%);
}

.site-header .site-header__row--bottom {
    position: fixed;
    transform: translateY(75%);
    transition: transform 0.6s ease-out;
    background-color: #ffffff !important;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.site-header.scrolled .site-header__row--bottom {
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(10px);
}


/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

    .hide-mobile {
        display: none !important;
    }

    .site-header {
        padding: var(--header-padding-mobile);
    }

    .site-menu__primary li a,
    .site-header__row {
        padding: var(--header-row-padding-mobile);
    }

    .header-row__column.column-logo {
        max-width: 150px;
    }

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {


    .hide-tablet {
        display: none !important;
    }

    .site-header {
        padding: var(--header-padding-tablet);
    }

    .header-row__column.column-logo {
        max-width: 190px;
    }

    .site-menu__primary li a,
    .site-header__row {
        padding: var(--header-row-padding-tablet);
    }

}

/*mobile and tablet*/
@media (max-width: 1024px) {

    .header-burger .header-burger__line {
        background-color: #ffffff!important;
    }

    .site-header.menu-opened::before {
        display: none!important;
    }

    .header-row__column {
        flex: 1 1 0;
    }

    .site-header .site-header__row--top {
        padding-left: 0 !important;
        padding-right: 0 !important;
        transition: transform 0.6s ease-out;
    }

    .site-header .site-header__row--top {
        z-index: 100;
    }

    .site-header .site-header__row {
        width: 100%;
        max-width: 90vw!important;
    }

    .site-header .site-header__row--bottom {
        width: 100%;
        position: fixed;
        border-radius: 10px;
        transform: translateY(62%);
        transition: all 0.6s ease-out;
        background-color: #ffffff !important;
        box-shadow: 0 0 15px rgb(0 0 0 / 10%);
    }

    .header-row__column.column-logo,
    .header-row__column.column-burger {
        z-index: 999;
    }

    .header-row__column--rows {
        justify-content: flex-start;
    }

    .header-row__column.column-logo .header-logo {
        width: 120px;
    }

    .header-row__column.column-menu {
        top: 0;
        left: 0;
        right: 0;
        gap: 1em;
        opacity: 0;
        z-index: -1;
        width: 90vw;
        height: auto;
        display: flex;
        margin: 0 auto;
        padding-top: 110px;
        overflow: hidden;
        border-radius: 10px;
        position: fixed;
        max-width: 100vw;
        visibility: hidden;
        flex-direction: column;
        align-items: flex-start;
        align-content: flex-start;
        transition: 0.5s ease all;
        background-color: #ffffff;
        transform: translateY(100%);
    }

    body .site-header.menu-opened .header-row__column.column-menu {
        opacity: 1!important;
        z-index: 100!important;
        visibility: visible!important;
        transform: translateY(0)!important;
    }

    .header-row__column.column-menu .column-menu_content > * {
        width: fit-content;
    }

    .header-row__column.column-menu > .column-menu_content {
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }



    .header-row__column-row {
        gap: 1em;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header .site-menu__primary {
        width: 100%;
        overflow-y: auto;
    }

    /* menu */
    .header-infos,
    .site-menu__primary,
    .site-menu__primary ul {
        flex-direction: column;
    }

    .site-menu__primary li {
        top: 50%;
        left: 50%;
        transition: all 0.3s ease-in-out;
    }

    .site-menu__primary li a {
        display: flex;
        font-weight: 500;
        position: relative;
        align-items: center;
        font-size: 0.75rem;
        line-height: 1.25rem;
        letter-spacing: 0.0375rem;
        color: var(--e-global-color-primary);
        font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    }

    .site-menu__primary > li > a {
        width: 100%;
        height: 66px;
        display: flex;
        font-weight: 700;
        position: relative;
        align-items: center;
        text-transform: uppercase;
        background-color: #ffffff;
        justify-content: flex-start;
        border-top: 1px solid rgba(28, 44, 84, 0.2);
        color: var(--e-global-color-primary) !important;
    }


    .site-menu__primary li.current-menu-item > a {
        background-color: #F5F6F9;
    }

    .site-menu__primary .menu-item-has-children {
        background-color: var(--e-global-color-ab7a154);
    }

    .header-row__column-row__column {
        width: 100%;
    }

    .site-menu__primary > li {
        width: 100%;
    }

    .site-menu__primary > li.menu-item-has-children > ul > li {
        width: 100%;
    }

    .site-menu__primary > li.menu-item-has-children > a:after {
        right: 5vw;
        content: "";
        width: 25px;
        height: 25px;
        display: flex;
        position: absolute;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url(/wp-content/themes/hello-elementor-child/bwah-helpers/header/assets/img/submenu-arrow.svg);
    }

    .site-menu__primary li.menu-item-has-children .sub-menu {
        background-color: rgba(245, 246, 249, 0.7);
    }

    .site-menu__primary li.menu-item-has-children .sub-menu li > a {
        width: 100%;
        height: 45px;
        display: flex;
        position: relative;
        align-items: center;
        justify-content: flex-start;
        text-transform: none!important;
        border-top: 1px solid rgba(28, 44, 84, 0.1);
        color: var(--e-global-color-primary) !important;
    }
    /* menu */

}


/*desktop*/
@media (min-width: 1025px) {

    .hide-desktop {
        display: none !important;
    }

    .site-header {
        padding: var(--header-padding-desktop);
    }

    @keyframes stickySlideDown {
        0% {
            opacity: 0.7;
            transform: translateY(-100%);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .header-row__column.column-logo {
        margin-left: 2em;
    }

    .site-header .site-header__row {
        margin: 0 auto!important;
        padding-left: 0!important;
        padding-right: 0!important;
    }

    .header-row__column {
        flex: 1 1 0;
    }

    .header-row__column.column-menu {
        flex-basis: 75%;
    }

    /* menu */
    .site-menu__primary {
        gap: 2em;
        justify-content: center;
    }

    .site-menu__primary > li > a {
        padding-top: 1em;
        position: relative;
        padding-bottom: 1em;
    }

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

    .site-menu__primary > li > a:after {
        left: 0;
        height: 7px;
        width: 100%;
        opacity: 0;
        content: "";
        bottom: -20%;
        visibility: hidden;
        position: absolute;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        transition: all 0.3s ease-in-out;
        background-image: url(/wp-content/themes/hello-elementor-child/bwah-helpers/header/assets/img/current.svg);
    }

    .site-menu__primary > li > a:hover:after,
    .site-menu__primary > li.current-menu-item > a:after {
        bottom: 0;
        opacity: 1;
        visibility: visible;
    }

    .site-menu__primary li.menu-item-has-children > a {
        position: relative;
        padding-right: 1.1em !important;
    }

    .site-menu__primary > li.menu-item-has-children > a:before {
        right: 0;
        width: 12px;
        content: "";
        height: 12px;
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center bottom;
        background-image: url(/wp-content/themes/hello-elementor-child/bwah-helpers/header/assets/img/submenu-arrow.svg);
    }

    .site-header.scrolled .site-menu__primary > li > a {
        color: var(--e-global-color-primary);
    }

    .site-menu__primary > li.menu-item-has-children {
        display: flex;
        position: relative;
        justify-content: center;
    }

    .site-menu__primary > li.menu-item-has-children > a:after {
        display: none;
    }

    .site-menu__primary li.menu-item-has-children .sub-menu {
        top: 150%;
        opacity: 0;
        display: flex;
        z-index: -100;
        overflow: hidden;
        min-width: 240px;
        visibility: hidden;
        position: absolute;
        border-radius: 10px;
        flex-direction: column;
        transition-delay: 0.8s;
        justify-content: center;
        align-items: flex-start;
        background-color: #ffffff;
        box-shadow: 0 0 15px rgb(0 0 0 / 10%);
        transition: top 0.5s ease-in-out, visibility 0.5s ease-in-out;

    }

    .site-menu__primary li.menu-item-has-children ul.sub-menu li {
        width: 100%;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 0;
        max-width: 100%;
        position: relative;
        transition: background-color 0.3s ease-in-out;
    }

    .site-menu__primary li.menu-item-has-children ul.sub-menu li + li {
        border-top: 1px solid rgba(251, 247, 240, 0.8);
    }

    .site-menu__primary li.menu-item-has-children ul.sub-menu li a {
        width: 100%;
        font-weight: 400;
        font-size: 0.75rem;
        line-height: 1.25rem;
        letter-spacing: 0.0375rem;
        padding: 0.8em 1.5em !important;
        color: var(--e-global-color-ab7a154);
    }

    .site-menu__primary li.menu-item-has-children ul.sub-menu li:hover,
    .site-menu__primary li.menu-item-has-children ul.sub-menu li.current-menu-item {
        background-color: #F5F5F5;
    }

    .site-menu__primary li.menu-item-has-children:hover > ul.sub-menu {
        top: 100%;
        opacity: 1;
        z-index: 99;
        display: flex;
        height: fit-content;
        visibility: visible;
    }
    /* menu */

}

/*laptop 1*/
@media (min-width: 1025px) and (max-width: 1439px) {

    .site-header .site-header__row {
        max-width: 1000px;
    }

    .header-socials .menu a {
        width: 30px;
        height: 30px;
    }

    .header-socials .menu .menu-item ._svg {
        width: 0.85em !important;
    }

    .site-header .site-header__row--bottom {
        transform: translateY(75%);
    }

    .header-row__column.column-cta {
        height: 70px;
    }

    .header-row__column.column-cta a {
        font-size: 0.85rem;
    }

    .header-row__column.column-cta a img {
        width: 40px;
        height: 40px;
    }

    .header-row__column.column-logo .header-logo {
        width: 100px;
    }

    .site-menu__primary li a {
        font-size: 0.75rem;
    }

}

/*laptop 2*/
@media (min-width: 1440px) and (max-width: 1700px) {

    .site-header .site-header__row {
        max-width: 1100px;
    }

    .header-socials .menu a {
        width: 35px;
        height: 35px;
    }

    .header-socials .menu .menu-item ._svg {
        width: 0.95em !important;
    }

    .site-header .site-header__row--bottom {
        transform: translateY(75%);
    }

    .header-row__column.column-cta {
        height: 72px;
    }

    .header-row__column.column-cta a {
        font-size: 0.95rem;
    }

    .header-row__column.column-cta a img {
        width: 42px;
        height: 42px;
    }

    .header-row__column.column-logo .header-logo {
        width: 110px;
    }

    .site-menu__primary li a {
        font-size: 0.95rem;
    }

}

/*RESPONSIVE*/

