.announcebarBox {
    grid-area: nav-menu;
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.announcebarBox ul.shops-menu {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.announcebarBox ul.shops-menu li {
    position: relative;
}
.announcebarBox ul.shops-menu li a {
    display: block;
    padding: 16px 14px 15px 14px;
    font-size: 15px;
    color: #dcdcdc;
    font-weight: 400;
    line-height: 1;
}
.announcebarBox ul.shops-menu li ul {
    background: #fff;
    display: none;
    min-width: 150px;
    position: absolute;
    z-index: 7;
    padding: 0;
    border-radius: 11px;
    border: none;
    box-shadow: 0px 13px 26px #000 29;
    top: 100%;
    width: 180px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
}
.announcebarBox ul.shops-menu li ul li {
    border-bottom: 1px solid #f3f7f9;
    list-style: none;
}
.announcebarBox ul.shops-menu li ul li a {
    color: #1981b7;
    font-weight: 400;
    font-size: 14px;
    padding: 6px 15px;
    margin: 6px 0;
    text-align: left;
}
.announcebarBox ul.shops-menu li ul li a:hover {
    color: #ed6f1e;
}
.announcebarBox ul.shops-menu li ul li:last-child {
    border-bottom: 0 none;
}
.announcebarBox ul.shops-menu li ul::after {
    content: "";
    position: absolute;
    border-left: solid 11px transparent;
    border-right: solid 11px transparent;
    border-bottom: solid 11px #6cbce8;
    height: 0;
    width: 0;
    top: -11px;
    right: 0;
    left: 0;
    margin: 0 auto;
}
.announcebarBox ul.shops-menu ul {
    list-style-type: none;
    padding: 0;
}
.announcebarBox ul.shops-menu li.menu-item-has-children>a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.announcebarBox ul.shops-menu li.menu-item-has-children>a::after {
    display: inline-block;
    margin-left: .5em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid rgba(0, 0, 0, 0);
    border-bottom: 0;
    border-left: .3em solid rgba(0, 0, 0, 0);
    margin-top: -3px;
}
.announcebarBox ul.shops-menu li.menu-item-has-children:hover > ul {
    display: block;
}
@media screen and (max-width: 767px) {
    .announcebarBox ul.shops-menu li a{
        font-size: 12px;
        padding: 9px 5px 9px 5px;
    }
    .announcebarBox ul.shops-menu li ul{
        min-width: min-content;
        width: auto;
    }
    .announcebarBox ul.shops-menu{
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
    .announcebarBox ul.shops-menu li.menu-item-has-children>a::after{
        margin-left: 1rem;
        margin-top: 0;
    }
    .announcebarBox ul.shops-menu li.menu-item-has-children{
        height: 100%;
    }
    .announcebarBox ul.shops-menu li.menu-item-has-children>a{
        height: 100%;
    }
}

.bluebtn{
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 25px;
    padding: 12px 35px;
    width: auto;
    text-align: center;
    border: none;
    outline: none;
    transition: .3s;
    border-radius: 27px;
    display: inline-block;
    cursor: pointer;
    background-color: #1981B7;
    color: #fff;
    border: 2px solid #1981B7;
    min-width: max-content;
}
.bluebtn:hover{
    background-color: #052133;
    border-color: #052133;
}
@media screen and (min-width: 992px) {
    .contact-form-box .bluebtn {
        max-width: 300px;
        width: 100%;
    }
}
.contact-form-box .bluebtn {
    flex: 1;
}
/* Product shop now button */
@media screen and (max-width: 1200px) {
    .contact-form-box .pdp_action{
        flex-wrap: wrap;
        display: flex;
        gap: 20px;
    }
}
.shop-dropdown {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    outline: none;
    color: inherit;
    position: relative;
    padding-inline: 22px;
    padding-block: 15px;
    border-radius: 0rem;
    background-color: #ed6f1e;
    color: #fff;
    border: none;
    transition: all 0.2s ease;
    text-align: left;
    padding-right: 30px;
    flex: 1;
    min-width: 25%;
}
.shop-dropdown:hover{
    background-color: #ed6f1e;
}
.shop-dropdown::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid rgba(0, 0, 0, 0);
    border-bottom: 0;
    border-left: .3em solid rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    right: 15px;
}
.shop-dropdown-label {
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    user-select: none;
}
.shop-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    opacity: 0;
    width: 100%;
    overflow: hidden;
    text-align: start;
    transform: scaleY(0);
    transform-origin: top;
    background-color: white;
    transition: all 0.2s ease;
    padding: 0;
    margin: 0;
    list-style: none;
    border: 2px solid #ed6f1e;
}
.shop-dropdown-item {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.2s ease;
    border-top: 2px solid #ed6f1e;
    color: #ed6f1e;
    font-size: 16px;
}
.shop-dropdown-item a{
    width: 100%;
    height: 100%;
    display: block;
    padding-block: 0.75rem;
    padding-inline: 1.5rem;
}
.shop-dropdown-item:first-child{
    border-top: none;
}
.shop-dropdown.is-active .shop-dropdown-menu {
    opacity: 1;
    transform: scaleY(1);
}

.brochure{
    margin-top: 20px;
    margin-bottom: 20px;
    border: 2px solid #1981B7;
    background-color: white;
    color: #1981B7;
    transition: background 0.5s;
}
.brochure:hover{
    color: white;
    background-color: #1981B7;
    border-color: #1981B7;
}


/* CUSTOM SEARCH BAR */
.search-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.70);
    z-index: 9999999999;
    display: none;
}
.widget {
    margin: 0 0 0 0;
}
.logged-in .search-container{
    top: 32px;
    height: calc(100vh - 32px);
}
.search-container .widget-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #052133;
    padding: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateY(-100%);
    transition: all 0.5s;
}
.search-container.show .widget-area{
    transform: translateY(0);
}
.search-container .widget_search form{
    max-width: 100%;
    width: 583px;
    margin: 0 auto;
    border: 2px solid white;
    padding: 4px 18px;
    height: 50px;
    position: relative;
}
.search-container .wp-block-search__inside-wrapper{
    border: none;
    padding: 0;
    display: flex;
    flex: auto;
    flex-wrap: nowrap;
    max-width: 100%;
    background-color:transparent !important;
}
.search-container .widget_search form .wp-block-search__input{
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    color: white;
    height: 30px;
    margin-top: 12px;
    min-height: auto;
    flex-grow: 1;
}
.search-container .widget_search form .wp-block-search__label{
    font-size: 12px;
    color: white;
    position: absolute;
    width: calc(100% - 36px);
    margin-top: 0 !important;
}
.search-container .widget_search form .wp-block-search__button{
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: inherit;
    height: auto;
    min-width: auto;
    display: initial;
    margin: 0 !important;
}
input[type="search" i]::-webkit-search-cancel-button{
    position: relative;
    appearance: none;
    height: 15px;
    width: 15px;
    background: '⨉' 0% 0% / contain no-repeat;
    cursor: pointer;
    color: white;
}
#close-search-container{
    position: relative;
    height: 22px;
    width: 22px;
    font-size: 22px;
    color: white;
    cursor: pointer;
}
.wp-block-search__button svg {
    height: 1.25em;
    min-height: 24px;
    min-width: 24px;
    width: 1.25em;
    fill: currentColor;
    vertical-align: text-bottom;
}

/* SEARCH PAGE */
body.search .page-header{
    margin-top: 103px;
    margin-bottom: 66px;
}
body.search .page-header .page-title{
    padding-bottom: 21px;
    border-bottom: 5px solid #6CBCE8;
}
body.search .page-header .page-title span{
    color: #6CBCE8;
}
body.search .search-teasers{
    margin-bottom: 60px;
}
body.search .search-teasers > article{
    margin-top: 60px;
    padding-bottom: 53px;
    border-bottom: 2px solid #052133;
}
body.search .search-teasers > article h2{
    font-size: 30px;
    margin-bottom: 30px;
}
body.search .search-teasers > article .image{
    width: 262px;
    max-width: 100%;
    margin-bottom: 30px;
}
body.search .search-teasers > article .image img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
body.search .search-teasers > article .entry-summary p:last-child{
    margin-bottom: 0;
}
body.search .search-teasers .pagination{
    padding: 40px 0;
    display: flex;
    justify-content: center;
    font-size: 19px;
    font-weight: 600;
}
body.search .search-teasers .pagination .nav-links{
    display: flex;
    gap: 10px;
}

/* nu-perspectives */
/* nu-perspectives-notice */
.nu-perspectives-notice{
    margin-bottom:40px;
}
.nu-perspectives-notice span{
    font-weight:600;
}
.nu-perspectives-notice a{
    color:#ed6f1e;
    font-weight:500;
    text-decoration:underline;
}
.nu-perspectives-notice a:hover{
    color:#0B7BBF;
}
/* nu-perspectives redirect notice */
.nu-perspectives-pop-up{
    z-index: 10;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
}
.nu-perspectives-pop-up.show{
    display: flex;
}
.nu-perspectives-pop-up .nu-perspectives-pop-up-box {
    width: 870px;
    max-width: calc(100vw - 48px);
    height: auto;
    max-height: 90vh;
    position: relative;
    background-color: #ffffff;
    padding: 80px 85px;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: auto;
    border-radius:10px;
    opacity: 0;
    transition: opacity 0.5s;
    transition-delay: 1s;
}
.nu-perspectives-pop-up .nu-perspectives-pop-up-box.show{
    opacity: 1;
    transition-delay: 1s;
}
.nu-perspectives-pop-up .nu-perspectives-pop-up-box img.close{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor:pointer;
}
.nu-perspectives-pop-up .nu-perspectives-pop-up-box h2{
    color:#0B7BBF;
    font-size:36px;
    margin-bottom: 24px;

}
.nu-perspectives-pop-up .nu-perspectives-pop-up-box p{
    font-family: "Poppins", sans-serif;
    font-size:19px;
    color:#052133;
    margin-bottom:20px;
}
.nu-perspectives-pop-up .nu-perspectives-pop-up-box p a{
    color:#ed6f1e;
    font-weight:500;
    text-decoration:underline;
}
.nu-perspectives-pop-up .nu-perspectives-pop-up-box p a:hover{
    color:#0B7BBF;
}
.nu-perspectives-pop-up .nu-perspectives-pop-up-box .logos{
    margin-top:38px;
    display:flex;
    column-gap:40px;
    row-gap:20px;
}
.nu-perspectives-pop-up .nu-perspectives-pop-up-box .logos img{
    height:53px;
}


@media only screen and (max-width: 991px) {

    .nu-perspectives-pop-up .nu-perspectives-pop-up-box {
        width: 696px;
        padding: 60px 65px;
    }
    .nu-perspectives-pop-up .nu-perspectives-pop-up-box h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .nu-perspectives-pop-up .nu-perspectives-pop-up-box p {
        font-size: 18px;
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 767px) {

    .nu-perspectives-pop-up .nu-perspectives-pop-up-box img.close {
        top: 10px;
        right: 10px;
        width: 26px;
        height: auto;
    }
    .nu-perspectives-pop-up .nu-perspectives-pop-up-box {
        max-width: calc(100vw - 24px);
        padding: 36px 24px 48px 24px;
    }
    .nu-perspectives-pop-up .nu-perspectives-pop-up-box h2 {
        font-size: 27px;
        margin-bottom: 15px;
    }
    .nu-perspectives-pop-up .nu-perspectives-pop-up-box p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .nu-perspectives-pop-up .nu-perspectives-pop-up-box .logos {
        margin-top: 24px;
        column-gap: 20px;
        row-gap: 10px;
    }
    .nu-perspectives-pop-up .nu-perspectives-pop-up-box .logos img {
        height: 40px;
    }

}