header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: var(--box-shadow);
}

header ul {
    list-style: none;
}

/* ### TOP BANNER ###  */

.top-banner {
    background-color: var(--orange);
    padding: 0.2rem;
    text-align: center;
}

.top-banner p,
.top-banner a,
.top-banner a:visited {
    color: white;
    font-size: 0.9rem;
    line-height: 1.3rem;
    font-weight: 600;
    text-decoration: none;
}

.top-banner a:hover {
    color: var(--yellow);
}

@media only screen and (min-width: 768px) {
    .top-banner {
        padding: 0.4rem;
    }
}

@media only screen and (min-width: 900px) {
    .top-banner p,
    .top-banner a {
        font-size: .95rem;
    }
}

/*  ### HEADER BRANDING ### */

.header__branding {
    position: relative;
    padding: 0.5rem 0;
}

.header__branding .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__search__icon,
.header__phone__icon,
.header__social__icon,
.header__social img {
    height: 27px;
    width: 27px;
    margin: 0 5px;
    position: relative;
}

.header__search .finder,
.header__social li {
    font-size: 0;
}

.header__phone__icon span,
.header__social__icon span,
.header__search__icon span {
    position: absolute;
    top: -80%;
    left: -150%;
    color: white;
    background-color: var(--dark-blue);
    font-size: .75rem;
    font-weight: 400;
    border-radius: 5px;
    min-width: 8em;
    text-align: center;
    padding: 0.15rem;
    z-index: 9;
    display: none;
}

@media only screen and (min-width: 900px) {
    .header__branding {
        padding: 0.8rem 0;
    }
    .header__social ul {
        max-width: var(--max-width);
    }
    .header__logo>ul>li {
        height: 45px;
    }
    .header__contact {
        margin: 0;
    }
    .header__phone__icon:hover span,
    .header__social__icon:hover span,
    .header__search__icon:hover span {
        display: block;
    }
}

/* ### HEADER CONTACT ### */

.header__contact {
    margin: 0 .7rem;
}

.header__contact>* {
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (min-width: 768px) {
    .header__search__icon,
    .header__phone__icon,
    .header__social__icon,
    .header__social img {
        height: 27px;
        width: 27px;
    }
}

@media only screen and (min-width: 900px) {
    .header__branding {
        padding: 0.2rem 0;
    }
    .header__search__icon,
    .header__phone__icon,
    .header__social__icon,
    .header__social img {
        height: 30px;
        width: 30px;
        margin-right: 5px;
    }
}

/* ### HEADER LOGO ### */

.header__logo {
    flex: 1 1 0;
}

.header__logo>ul>li {
    height: 35px;
    padding: .2em 0;
}

.header__logo img {
    object-fit: contain;
    object-position: left;
    max-height: 100%;
}

@media only screen and (min-width: 550px) {
    .header__logo>ul>li {
        height: 45px;
    }
}

@media only screen and (min-width: 1200px) {
    .header__logo>ul>li {
        height: 45px;
    }
}

/* ### HEADER PHONE ### */

.header__phone__icon {
    cursor: pointer;
}

.header__phone>ul {
    display: none;
}

@media only screen and (min-width: 768px) {
    .header__phone>ul {
        display: inline-block;
    }
    .header__phone>ul a {
        color: var(--dark-blue);
        font-size: 1rem;
        font-weight: 600;
        margin-right: 5px;
    }
}

/* HEADER SOCIAL */

.header__social {
    padding: 0 2em;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
    z-index: 9;
    padding: 0.3em 0;
    display: none;
    box-shadow: var(--box-shadow);
}

.header__social.open {
    display: block;
}

.header__social ul {
    margin: 0 auto;
    padding: .5rem 0;
    width: 95%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header__social>ul::before {
    content: 'Find us on:';
    display: inline-block;
    color: var(--dark-blue);
    font-size: .9rem;
    font-weight: 600;
    margin-left: 15px;
    padding: .3rem .9rem;
}

.header__social .image-title {
    display: none;
}

.header__social__icon {
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .header__social li {
        margin-left: 15px;
    }
    .header__social li,
    .header__social li a {
        display: flex;
        align-items: center;
        font-size: .8rem;
        font-weight: 600;
    }
    .header__social .image-title {
        display: inline-block;
    }
}

/* ### HEADER SEARCH ### */

.header__search {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
    z-index: 9;
    margin: 0 auto;
    padding: 0.5em 0;
    display: none;
    box-shadow: var(--box-shadow);
}

.header__search.open {
    display: block;
}

.header__search__icon {
    cursor: pointer;
}

.header__search .form-search {
    max-width: var(--max-width);
    margin: 0 auto;
}

.awesomplete {
    display: block;
    margin: 0 auto;
}

.awesomplete>ul {
    width: 80%;
}

.header__search .form-control {
    height: 2.5rem;
    width: 80%;
    border: 1px solid var(--gray);
    border-radius: 10em;
    padding: 0 3rem;
    margin: 0 auto;
    background-image: url('/images/icons/icon-search-gray.png');
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 15px 8px;
}

.header__search .form-control:focus {
    outline: none;
}

.header__search input[type=text].form-control {
    font-family: 'Open Sans', Roboto, sans-serif;
    font-size: .9rem;
    color: var(--dark-gray);
}

@media only screen and (min-width: 768px) {
    .header__search .form-control {
        width: 60%;
        max-width: 800px;
    }
}

/* ### NAV MENU TOGGLE HAMBURGER ### */

/* ### NAV - NAVIGATION SECTION ### */

/* see 01_menus.css */