.gheader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 1000;
    background-color: #F5F5F5;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

body {
    padding-top: 87px;
}

@media (min-width: 768px) {
    .gheader {
        padding-top: 0;
        padding-bottom: 0;
    }

}

@media (max-width: 880px) {
    .has-announcement .gheader {
        padding-top: 90px;
    }

    .has-announcement .gheader .gheader__announcement {
        background: #eee553 !important;
        position: absolute;
        top: -76px;
        left: -24px;
        right: -24px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .has-announcement .gheader {
        padding-top: 96px;
    }

    .has-announcement .gheader .gheader__announcement {
        top: -96px;
    }
}

.gheader .ddb-logo-svg {
    width: 60px;
    height: 30px;
}

.gheader .ddb-logo-svg .clr-main,
.gheader .ddb-logo-svg .clr-alt {
    fill: #fff;
}

@media (min-width: 768px) {
    .gheader .ddb-logo-svg {
        width: 90px;
        height: 45px;
    }
}

.gheader {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* 移除transform避免影响子元素定位 */
}

.gheader.header-hidden {
    opacity: 0;
    visibility: hidden;
    /* 保留pointer-events防止交互但允许子元素全屏 */
    pointer-events: none;
}

/* 确保子元素可以突破隐藏的header */
.gheader__fullscreen-child {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    /* 确保在最前 */
    pointer-events: auto;
    /* 覆盖父元素的none设置 */
}

.gheader__brand a,
.gheader__brand svg {
    display: block;
}

.gheader__brand a img {
    height: 70px;
}

.gheader__item {
    align-items: center;
    display: flex;
    flex-direction: row;
}

.gheader__item a {
    width: 40px;
    padding: 10px;
    line-height: 1;
    text-align: center;
    color: #fff;
}

.gheader__item a.gheader__item__burger {
    padding-right: 0;
    width: 28px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    z-index: 1001;
    transform: scale(1.5);
}

.gheader__item> :first-child {
    margin-right: 0px;
}

@media screen and (min-width: 768px) {
    .gheader__item> :first-child {
        margin-right: calc(0px + 30 * (100vw - 768px) / 732);
    }
}

@media screen and (min-width: 1500px) {
    .gheader__item> :first-child {
        margin-right: 30px;
    }
}

.gheader .gheader__item__search>div {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 3条 */

.gheader__item__burger>div {
    width: 16px;
    height: 17px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(0deg);
    transition: transform 0.5s ease-in-out;
    pointer-events: none;
}

.gheader__item__burger>div span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.gheader__item__burger>div span:nth-child(1) {
    top: 0;
}

.gheader__item__burger>div span:nth-child(2),
.gheader__item__burger>div span:nth-child(3) {
    top: 7px;
    width: 75%;
    left: 25%;
    right: 0;
}

.gheader__item__burger>div span:nth-child(4) {
    top: 14px;
    width: 50%;
    left: 50%;
    right: 0;
}

.is-scrolled .gheader__item__burger>div span {
    box-shadow: none;
}

.gheader__announcement {
    font-weight: 500;
    background: center center no-repeat;
    background-size: contain;
    color: black;
    padding: 10px;
}

.gheader__announcement a {
    color: black;
}

/* 从左移动到右 */
.gheader__item__search {
    /* transition: 0.5s ease-in-out; */
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.gheader__item__search>div span:before {
    content: "\e905";
}

/* .gheader__item__search > div span:nth-child(2) {
  display: none;
} */
.is-scrolled .gheader__item__search {
    text-shadow: none;
}

.gheader__content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2px;
}

.gheader__navbar {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    overflow: auto;
    z-index: 1000;
    background: rgb(49, 49, 49);
}

html.is-visible .gheader__navbar {
    display: flex;
}

.gheader__navbar .social-links {
    justify-content: start;
    margin-top: 2rem;
    margin-bottom: 2rem;
    z-index: 0;
}

@media (min-width: 768px) {
    .gheader__navbar .social-links {
        margin-bottom: 0;
    }
}

.gheader .containerHeader {
    padding: 0 20px !important;
    max-width: 1000px !important;
}

.gheader__navbar .social-links a {
    color: #C9C9C9;
}

.gheader__navbar .social-links a:hover {
    color: #fff;
}

.gheader__navbar-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    backdrop-filter: blur(0px);
}

.gheader__navbar-nav {
    position: relative;
    z-index: 1;
    padding-left: 0;
}

.gheader__navbar-nav .menu-item {
    font-size: 30px;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    transform-origin: left center;
}

@media screen and (min-width: 576px) {
    .gheader__navbar-nav .menu-item {
        font-size: calc(30px + 30 * (100vw - 576px) / 924);
    }
}

@media screen and (min-width: 980px) {
    .gheader__navbar-nav .menu-item {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .gheader__navbar-nav .menu-item {
        width: 42%;
        margin-bottom: 7px;
    }
}

.gheader__navbar-nav .menu-item:hover>a {
    color: #fff !important;
}

.gheader__navbar-nav .menu-item a {
    position: relative;
    display: flex;
    align-items: center;
    color: #C9C9C9;
    text-decoration: initial !important;
}

.gheader__navbar-nav .current-menu-parent>a,
.gheader__navbar-nav .current-menu-item>a,
.gheader__navbar-nav .current_page_item>a {
    color: #fff;
}

@media (min-width: 768px) {
    .gheader__navbar-nav:hover li.current-menu-parent>a {
        color: #C9C9C9;
    }

    .gheader__navbar-nav:hover li.current-menu-parent>a:after {
        content: unset;
    }

    .gheader__navbar-nav:hover li.current-menu-parent .sub-menu {
        display: none;
    }

    .gheader__navbar-nav:hover li.current-menu-parent:hover>a {
        color: #fff;
    }

    .gheader__navbar-nav:hover li.current-menu-parent:hover .sub-menu {
        display: block;
    }
}

@media (min-width: 768px) {

    .gheader__navbar-nav>.menu-item-has-children.current-menu-parent>a:after,
    .gheader__navbar-nav>.menu-item-has-children:hover>a:after {
        content: "";
        position: absolute;
        display: inline-flex;
        top: 0;
        right: 0;
        width: 10vw;
        height: 50%;
        transform: translate3d(0, 100%, 0);
    }

    .gheader__navbar-nav>.menu-item-has-children.current-menu-parent>a+.sub-menu,
    .gheader__navbar-nav>.menu-item-has-children:hover>a+.sub-menu {
        position: absolute;
        top: 0;
        left: 40%;
        width: 60%;
        min-height: 100%;
        padding-left: 6vw;
    }

    .gheader__navbar-nav>.menu-item-has-children.current-menu-parent>a+.sub-menu .menu-item,
    .gheader__navbar-nav>.menu-item-has-children:hover>a+.sub-menu .menu-item {
        display: block;
        width: auto;
    }

    .gheader__navbar-nav>.menu-item-has-children:hover>a:after {
        content: "" !important;
    }
}

.gheader__navbar-nav .sub-menu .menu-item {
    font-size: 25px;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: inherit;
    font-weight: 400;
}

@media screen and (min-width: 576px) {
    .gheader__navbar-nav .sub-menu .menu-item {
        font-size: calc(25px + 15 * (100vw - 576px) / 924);
    }
}

@media screen and (min-width: 1500px) {
    .gheader__navbar-nav .sub-menu .menu-item {
        font-size: 40px;
    }
}

@media screen and (min-width: 576px) {
    .gheader__navbar-nav .sub-menu .menu-item {
        line-height: calc(54px + 54 * (100vw - 576px) / 924);
    }
}

@media screen and (min-width: 1500px) {
    .gheader__navbar-nav .sub-menu .menu-item {
        line-height: 108px;
    }
}

@media (min-width: 768px) {
    .gheader__navbar-nav .sub-menu .menu-item {
        display: none;
    }
}

.gheader__navbar-nav .sub-menu .menu-item a:after {
    content: unset;
}

.gheader__navbar-inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .gheader__navbar-inner {
        padding-left: calc(20px + 30 * (100vw - 768px) / 732);
        padding-right: calc(20px + 30 * (100vw - 768px) / 732);
    }
}

@media screen and (min-width: 1500px) {
    .gheader__navbar-inner {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 767px) {
    .gheader__navbar-inner {
        margin-left: 0;
        margin-right: 0;
    }
}

.gheader__navbar__menu,
.gheader__navbar__search {
    display: none;
}

html.navbar-active .gheader__navbar__menu {
    display: block;
}

.gheader--light .ddb-logo-svg .clr-main {
    fill: #212322;
}

.gheader--light .ddb-logo-svg .clr-alt {
    fill: #ffc500;
}

.gheader--light .gheader__item a {
    color: #212322;
}

.gheader--light .gheader__item__burger>div>span {
    background: #212322;
}

.gheader.is-scrolled {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

.gheader.is-scrolled .ddb-logo-svg .clr-main {
    fill: #212322;
}

.gheader.is-scrolled .ddb-logo-svg .clr-alt {
    fill: #ffc500;
}

.gheader.is-scrolled .ddb-logo-svg .name-short {
    opacity: 1;
}

.gheader.is-scrolled .ddb-logo-svg .name-long {
    opacity: 0;
}

.gheader.is-scrolled .gheader__item a {
    color: #212322;
}

.gheader.is-scrolled .gheader__item__burger>div>span {
    background: #212322;
}

html.navbar-active .gheader__item a {
    color: #fff !important;
}

html.navbar-active .gheader .ddb-logo-svg {
    transition: none;
}

html.navbar-active .gheader .ddb-logo-svg .clr-main,
html.navbar-active .gheader .ddb-logo-svg .clr-alt {
    fill: #fff;
}

html.navbar-active .gheader__navbar {
    display: block;
}

@media (min-width: 768px) {
    html.navbar-active .gheader__navbar {
        display: flex;
        flex-direction: row;
    }
}

html.navbar-active .gheader__navbar:before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0.01) 100%);
    transition: opacity 1s 0.2s ease-in;
    opacity: 0;
    z-index: 2;
}

@media (min-width: 768px) {
    html.navbar-active .gheader__navbar:before {
        height: 150px;
    }
}

html.navbar-active .gheader__navbar:before {
    opacity: 1;
    transition: opacity 1s;
}

html.navbar-active .gheader__navbar-backdrop {
    backdrop-filter: blur(20px);
}

@media (min-width: 768px) {
    html.navbar-active.navbar-menu .gheader__navbar-inner {
        flex: 0 0 100%;
        align-self: center;
    }
}

html.navbar-active .gheader__navbar-inner {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    html.navbar-active .gheader__navbar-inner {
        margin-top: 150px;
    }
}

html.navbar-active .gheader__brand {
    position: relative;
    z-index: 1001;
}

html.navbar-active .gheader__item__search,
html.navbar-active.navbar-menu .gheader__item__burger {
    position: absolute;
    right: 0;
    margin-right: 0;
    z-index: 1001;
}

html.navbar-active .gheader__item__burger {
    /* display: none;
  opacity: 0; */
}

html.navbar-active .gheader__item__search {
    color: #fff;
    /* display: none; */
    /* opacity: 1; */
}

/* html .gheader__item__search > div {

  opacity: 0;
} */



html.navbar-active .gheader__item__burger>div span:nth-child(3) {
    transform: rotate(45deg);
    opacity: 1;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

html.navbar-active .gheader__item__burger>div span:nth-child(2) {
    transform: rotate(-45deg);
    opacity: 1;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

html.navbar-active .gheader__item__burger>div span:nth-child(1),
html.navbar-active .gheader__item__burger>div span:nth-child(4) {
    opacity: 0;
}


html .gheader__item__burger {
    z-index: 1001;
    display: block;
    opacity: 1;

}


html.navbar-active:not() .gheader__item__burger {
    display: block;
    opacity: 1;
    /* pointer-events: none!important;
  cursor: auto; */
    /* background: green; */
}

html.navbar-active:not() .gheader__item__burger>div {
    /* display: block; */
    z-index: 1001;
    opacity: 1;
    transition: opacity .5s ease;
    cursor: auto;
    pointer-events: none !important;
    /* background: red; */
}

html.navbar-animating .gheader__item__burger,
html.navbar-animating .gheader__item__burger>div,
html.navbar-animating .gheader__item__burger>div>span {
    pointer-events: none !important;
}

html.navbar-active:not() .gheader__item__burger>div span:nth-child(1),
html.navbar-active:not() .gheader__item__burger>div span:nth-child(4) {
    z-index: 1001;
    opacity: 1;
    transition: opacity 1.5s ease;
}


html.navbar-active .gheader--light .gheader__item__burger>div>span,
html.navbar-active .gheader.is-scrolled .gheader__item__burger>div>span {
    background: #fff;
}

html.navbar-active.navbar-menu .gheader__navbar__menu {
    display: block;
}

html.navbar-active .gheader__navbar__search {
    display: block;
}


html .gheader__item__burger>div {
    pointer-events: none;
}

html .gheader__item__burger>div span {
    background: #fff;
}

html.navbar-active .gheader__item__burger>div span:nth-child(1),
html.navbar-active .gheader__item__burger>div span:nth-child(4) {
    top: 50%;
    width: 0%;
    left: 50%;
}

html.navbar-active .gheader__item__burger>div span:nth-child(2),
html.navbar-active .gheader__item__burger>div span:nth-child(3) {
    width: 100%;
    left: 0;
    right: 0;
}

/* html .gheader__item__burger > div span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
} */

html .gheader__item__search>div span:nth-child(3),
html .gheader__item__search>div span:nth-child(4) {
    opacity: 0;
}

body.creative .gheader .ddb-logo-svg .clr-main,
body.diversity .gheader .ddb-logo-svg .clr-main,
body.news .gheader .ddb-logo-svg .clr-main {
    fill: #212322;
}

body.creative .gheader .ddb-logo-svg .clr-alt,
body.diversity .gheader .ddb-logo-svg .clr-alt,
body.news .gheader .ddb-logo-svg .clr-alt {
    fill: #ffc500;
}

body.creative .gheader .gheader__item a,
body.diversity .gheader .gheader__item a,
body.news .gheader .gheader__item a {
    color: #212322;
}

body.creative .gheader .gheader__item__burger>div>span,
body.diversity .gheader .gheader__item__burger>div>span,
body.news .gheader .gheader__item__burger>div>span {
    background: #212322;
}

body.creative .gheader .gheader__item__search,
body.creative .gheader .gheader__item__burger>div>span,
body.diversity .gheader .gheader__item__search,
body.diversity .gheader .gheader__item__burger>div>span,
body.news .gheader .gheader__item__search,
body.news .gheader .gheader__item__burger>div>span {
    text-shadow: none;
    box-shadow: none;
}

body.offices .gheader .ddb-logo-svg .clr-main,
body.careers .gheader .ddb-logo-svg .clr-main,
body.careers-intro .gheader .ddb-logo-svg .clr-main {
    fill: #212322;
}

body.offices .gheader .ddb-logo-svg .clr-alt,
body.careers .gheader .ddb-logo-svg .clr-alt,
body.careers-intro .gheader .ddb-logo-svg .clr-alt {
    fill: #ffc500;
}

body.offices .gheader .gheader__item a,
body.careers .gheader .gheader__item a,
body.careers-intro .gheader .gheader__item a {
    color: white;
}

body.offices .gheader .gheader__item__burger>div>span,
body.careers .gheader .gheader__item__burger>div>span,
body.careers-intro .gheader .gheader__item__burger>div>span {
    background: white;
}

body.creative-with-hero .gheader .ddb-logo-svg .clr-main,
body.creative-with-hero .gheader .ddb-logo-svg .clr-alt {
    fill: #fff;
}

body.creative-with-hero .gheader .gheader__item a {
    color: white;
}

body.creative-with-hero .gheader .gheader__item__burger>div>span {
    background: white;
}

body.creative .gheader.is-scrolled .ddb-logo-svg .clr-main,
body.careers .gheader.is-scrolled .ddb-logo-svg .clr-main,
body.news .gheader.is-scrolled .ddb-logo-svg .clr-main,
body.diversity .gheader.is-scrolled .ddb-logo-svg .clr-main,
body.offices .gheader.is-scrolled .ddb-logo-svg .clr-main,
body.careers-intro .gheader.is-scrolled .ddb-logo-svg .clr-main,
body.creative-with-hero .gheader.is-scrolled .ddb-logo-svg .clr-main {
    fill: #212322;
}

body.creative .gheader.is-scrolled .ddb-logo-svg .clr-alt,
body.careers .gheader.is-scrolled .ddb-logo-svg .clr-alt,
body.news .gheader.is-scrolled .ddb-logo-svg .clr-alt,
body.diversity .gheader.is-scrolled .ddb-logo-svg .clr-alt,
body.offices .gheader.is-scrolled .ddb-logo-svg .clr-alt,
body.careers-intro .gheader.is-scrolled .ddb-logo-svg .clr-alt,
body.creative-with-hero .gheader.is-scrolled .ddb-logo-svg .clr-alt {
    fill: #ffc500;
}

body.creative .gheader.is-scrolled .gheader__item a,
body.careers .gheader.is-scrolled .gheader__item a,
body.news .gheader.is-scrolled .gheader__item a,
body.diversity .gheader.is-scrolled .gheader__item a,
body.offices .gheader.is-scrolled .gheader__item a,
body.careers-intro .gheader.is-scrolled .gheader__item a,
body.creative-with-hero .gheader.is-scrolled .gheader__item a {
    color: #212322;
}

body.creative .gheader.is-scrolled .gheader__item__burger>div>span,
body.careers .gheader.is-scrolled .gheader__item__burger>div>span,
body.news .gheader.is-scrolled .gheader__item__burger>div>span,
body.diversity .gheader.is-scrolled .gheader__item__burger>div>span,
body.offices .gheader.is-scrolled .gheader__item__burger>div>span,
body.careers-intro .gheader.is-scrolled .gheader__item__burger>div>span,
body.creative-with-hero .gheader.is-scrolled .gheader__item__burger>div>span {
    background: #212322;
}

body.creative .gheader.is-scrolled .gheader__item__search,
body.creative .gheader.is-scrolled .gheader__item__burger>div>span,
body.careers .gheader.is-scrolled .gheader__item__search,
body.careers .gheader.is-scrolled .gheader__item__burger>div>span,
body.news .gheader.is-scrolled .gheader__item__search,
body.news .gheader.is-scrolled .gheader__item__burger>div>span,
body.diversity .gheader.is-scrolled .gheader__item__search,
body.diversity .gheader.is-scrolled .gheader__item__burger>div>span,
body.offices .gheader.is-scrolled .gheader__item__search,
body.offices .gheader.is-scrolled .gheader__item__burger>div>span,
body.careers-intro .gheader.is-scrolled .gheader__item__search,
body.careers-intro .gheader.is-scrolled .gheader__item__burger>div>span,
body.creative-with-hero .gheader.is-scrolled .gheader__item__search,
body.creative-with-hero .gheader.is-scrolled .gheader__item__burger>div>span {
    text-shadow: none;
    box-shadow: none;
}

html.navbar-active body.creative .gheader .ddb-logo-svg .clr-main,
html.navbar-active body.creative .gheader .ddb-logo-svg .clr-alt,
html.navbar-active body.diversity .gheader .ddb-logo-svg .clr-main,
html.navbar-active body.diversity .gheader .ddb-logo-svg .clr-alt,
html.navbar-active body.careers .gheader .ddb-logo-svg .clr-main,
html.navbar-active body.careers .gheader .ddb-logo-svg .clr-alt,
html.navbar-active body.news .gheader .ddb-logo-svg .clr-main,
html.navbar-active body.news .gheader .ddb-logo-svg .clr-alt,
html.navbar-active body.offices .gheader .ddb-logo-svg .clr-main,
html.navbar-active body.offices .gheader .ddb-logo-svg .clr-alt,
html.navbar-active body.careers-intro .gheader .ddb-logo-svg .clr-main,
html.navbar-active body.careers-intro .gheader .ddb-logo-svg .clr-alt,
html.navbar-active body.creative-with-hero .gheader .ddb-logo-svg .clr-main,
html.navbar-active body.creative-with-hero .gheader .ddb-logo-svg .clr-alt {
    fill: #fff;
}

html.navbar-active body.creative .gheader .gheader__item a,
html.navbar-active body.diversity .gheader .gheader__item a,
html.navbar-active body.careers .gheader .gheader__item a,
html.navbar-active body.news .gheader .gheader__item a,
html.navbar-active body.offices .gheader .gheader__item a,
html.navbar-active body.careers-intro .gheader .gheader__item a,
html.navbar-active body.creative-with-hero .gheader .gheader__item a {
    color: white;
}

html.navbar-active body.creative .gheader .gheader__item__burger>div>span,
html.navbar-active body.diversity .gheader .gheader__item__burger>div>span,
html.navbar-active body.careers .gheader .gheader__item__burger>div>span,
html.navbar-active body.news .gheader .gheader__item__burger>div>span,
html.navbar-active body.offices .gheader .gheader__item__burger>div>span,
html.navbar-active body.careers-intro .gheader .gheader__item__burger>div>span,
html.navbar-active body.creative-with-hero .gheader .gheader__item__burger>div>span {
    background: white;
}

.gheader__item__search,
.gheader__item__burger {
    cursor: pointer;
    display: block;
}

.gheader__item__search *,
.gheader__item__burger * {
    pointer-events: all !important;
}

.gheader__navbar__menu ul {
    list-style: none;
}

.gheader__navbar__menu li {
    list-style: none;
}



.ifremclose {
    position: absolute;
    right: 10px;
    top: 10px;

    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
}



.iframea {
    max-height: initial !important;
}

@media (max-width: 768px) {

    .gheader .logoImg {
        margin-top: 0 !important;
        height: 55px !important;
    }

    .gheader__item a.gheader__item__burger {
        zoom: .8;
        margin-right: 15px;
    }

    .gheader__navbar__menu ul {
        margin-top: 30px;
    }

    .wp-block-fugu-fg-filter {
        min-width: initial;
    }

    .elementor-element :has(.wp-block-fugu-fg-filter) {
        margin-top: 15px;
        padding: 0 !important;
        --padding-top: 0 !important;
        --padding-bottom: 0 !important;
        --padding-left: 0 !important;
        --padding-right: 0 !important;
    }
}