/* Staging font styles. Production gets pulled through the server at fonts.css */
@font-face {
    font-family: "Upbolters";
    src: url("./fonts/upbolters-webfont.woff") format("woff");
}
/* =========================================================================== */

:host {
    display: block;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    justify-content: center;
    background-color: #ffffff;
    font-family: "Roboto", sans-serif;
}

.container {
    max-width: 1320px;
}

.logo-main-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all 0.31s ease;
}

.logo-menu-wrap {
    max-width: 250px;
}

h1 {
    font-size: 48px !important;
    line-height: 40px;
    font-style: normal;
    font-family: "Upbolters";
    font-weight: 400;
}

.brand-name {
    margin-left: 3rem;
    margin-right: 2rem;
}

.button-style-1 {
    position: relative;
    background-color: #D02030;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.6px;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    line-height: 1.4;
    overflow: hidden;
    transform: perspective(1px) translateZ(0);
    z-index: 1;
    border: none;
    text-decoration: none;
}

    .button-style-1:hover {
        color: white;
        background-color: #005da8;
        text-decoration: none;
    }

.button-style-2 {
    position: relative;
    background-color: #005da8;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.6px;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    line-height: 1.4;
    overflow: hidden;
    transform: perspective(1px) translateZ(0);
    z-index: 1;
    border: none;
    text-decoration: none;
}

    .button-style-2:hover {
        color: white;
        background-color: #D02030;
        text-decoration: none;
    }

a {
    transition: .25s ease;
}

.header-phone-num {
    color: #6c6f72;
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 0;
    font-size: 16px;
}

.site-branding img {
    width: 275px;
}

.ad-space-wrap {
    max-width: 1320px;
    text-align: center;
    margin: 0 auto;
}

.ad-label {
    color: #6c6f72;
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    line-height: 28px;
    font-weight: normal;
    font-style: normal;
}

.ad-spacer {
    height: 30px;
}

@media only screen and (max-width: 1000px) {
    header {
        justify-content: flex-start !important;
        padding-right: 15px;
        border-bottom: 1px solid #e5e5e5;
        padding-top: 0;
        padding-bottom: 0;
    }

    .logo-main-wrap {
        border-bottom: none;
    }

    .site-branding img {
        width: 110px;
    }

    .brand-name {
        display: none;
    }

    .header-button {
        display: none;
    }
    
    .button-style-1 {
        margin-bottom: 5px;
    }

    .header-phone-num {
        font-size: 14px;
        justify-content: flex-start;
    }

    .ad-spacer {
        height: 15px;
    }

    .ad-label {
        font-size: 12px;
    }

    #ad-host-header {
        overflow: hidden;
        margin: 0 10px;
    }
}

@media only screen and (max-width: 1350px) {
    .button-style-1 {
        margin-bottom: 5px;
    }

    .header-phone-num {
        font-size: 14px;
        justify-content: flex-start;
    }
}