  @media (max-width: 767px) {
    .site-header--new  {
        nav#mobile-navigation[aria-expanded="true"] {
            min-height: 0;
        }

        .l-wrap--mobile {
            display: flex;

            #google_language_translator {
                position: relative;
                font-size: 0;
                left: 0;
                width: 100% !important;
                top: 0;
                right: 0;

                .goog-te-combo {
                    width: 100%;
                    margin: 0;
                    height: 48px !important;
                    background-color: #0b3155;
                    color: #fff;
                    border: 0 !important;
                }
            }
        }

        .l-mobile-navigation ul > li {
            border-bottom: 1px solid #CBCBCB;
        }
        
        .l-mobile-navigation ul > li:last-child {
            border-bottom: 0;
        }

        .l-menu-audience ul > li:not(:last-child) {
            border-bottom: 1px solid #fff;
        }

        .l-mobile-navigation ul li.menu-item-has-children a .o-icon-caretclosed-icon {
            padding: 0;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            right: 10px;

            &:before {
                content: "";
                display: block;
                width: 10px;
                height: 10px;
                border: 2px solid #0B3155;
                border-top: 0;
                border-left: 0;
                transform: rotate(45deg);
                transition: transform 0.3s ease-in-out;
            }
        }
        
        .l-mobile-navigation ul li.menu-item-has-children a.toggled .o-icon-caretclosed-icon {
            &:before {
                transform: rotate(225deg);
            }
        }

        nav[aria-expanded="false"] {
            overflow: hidden;
        }

        .c-site-logo {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 0;
        }   

        .l-wrap .c-site-logo,
        .l-branding .c-cta {
            float: none;
        }

        .l-branding .c-cta {
            text-align: left;
            margin: 0 -16px !important;
            width: auto !important;
            font-size: 0;
            display: flex;
        }

        .c-cta .o-button.o-button--cta {
            margin: 0;
            width: calc(100% / 3);
            border-radius: 0 !important;
            font-size: 10px;
            padding: 18px 5px !important;

            &:not(:last-child) {
                border-right: 1px solid #AD7200;
            }
        }

        .l-branding {
            padding-bottom: 0;
            padding-left: 2.17391%;
        }

        .l-form__field--input.search-field {
            border: 0;
        }

        .search-form {
            border: 1px solid #0B3155;
            background-color: #fff;
        }

        .l-top-navigation .l-wrap .search-field {
            background-color: transparent;
            box-shadow: none;
            border: 0;
            width: calc(100% - 46px);
            color: #0B3155;
            padding: 11px 15px;
            float: none;
            outline: none;

            &::placeholder {
                color: #0B3155;
                text-transform: uppercase;
            }
        }

        .l-top-navigation .l-wrap .search-submit {
            float: none;
            border: 0;
            box-shadow: none;
            color: #0B3155;
            width: 46px;
            height: 46px;
        }

        .o-button.o-icon-search-icon:before {
            font-size: 25px;
        }

        .o-button.o-button--menu {
            background: transparent;
            width: 46px;
            height: 46px;
            padding: 10px;
            border-radius: 6px;
            background: #0b3155;
            filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));

            .screen-reader-text {
                display: none;
            }

            .icon-bar {
                display: block;
                height: 3px;
                width: 26px;
                background-color: #ffffff;
                border-radius: 4px;
                margin: 4px 0;
                transform-origin: left;
                position: relative;
                top: 0;
                left: 0;
                opacity: 1;
                transition: top 0.3s ease-in-out,
                            left 0.3s ease-in-out,
                            transform 0.3s ease-in-out,
                            opacity 0.3s ease-in-out;
            }

            &.is-active {
                background: #0b3155;

                .icon-bar:nth-child(2) {
                    transform: rotate(45deg);
                    top: -4px;
                    left: 2px;
                }

                .icon-bar:nth-child(3) {
                    left: -10px;
                    opacity: 0;
                }

                .icon-bar:nth-child(4) {
                    transform: rotate(-45deg);
                    left: 2px;
                }
            }
        }
    }
}