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

        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: 12px;
            padding: 15px 20px !important;

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

        .l-branding {
            padding-bottom: 0;
        }

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