.row {
    max-width: 1180px;
}
/* style.scss */
/* _bourbon_settings.scss */
/* FYI:
        this grid isn't applied to the whole site.
        left sidebar column is fixed-width.
        main content (grid) is 940px.
        entire site max-width is still 1200px.
$grid-columns: 12;
$max-width: 940px;
*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* _variables.scss */
/* _mixins.scss */
/* _base.scss */
/* Table of Content
==================================================
  #Reset & Basics
  #Basic Styles
  #Site Styles
  #Typography
  #Links
  #Lists
  #Images
  #Buttons
  #Forms
  #Misc */
/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* #Basic Styles
================================================== */
body {
    background: #fff;
    font: 14px/21px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #444;
    -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

.columns-locations {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.content-area article ul.columns-locations li::before {
    content: none;
}

.content-area article ul.columns-locations {
    padding: 0px;
    margin: 0px;
}

    .content-area article ul.columns-locations li {
        padding: 0px;
        margin: 0px;
        color: #e47907;
        font-family: "Poppins", arial, sans-serif, sans-serif;
        font-size: 1.4em;
        font-weight: bold;
        line-height: 23px;
        margin-bottom: 16px;
        margin-top: 20px;
    }

    .content-area article ul.columns-locations ul {
        padding: 0px;
        margin: 0px;
    }

        .content-area article ul.columns-locations ul li, .content-area article ul.columns-locations ul li a {
            padding: 0px;
            margin: 0px;
            color: #333;
            font-family: verdana, sans-serif, sans-serif;
            font-size: 0.95em;
            font-weight: normal;
            line-height: 24px;
        }
/* #Typography
================================================== */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 12px;
    color: #181818;
    font-weight: normal;
    line-height: 1.3em;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-family: "Poppins", arial, sans-serif, sans-serif;
    font-weight: bold;
    font-size: 2.0em;
    color: #00953a;
}

h2 {
    font-size: 1.2em;
    color: #493733;
    font-family: "Poppins", arial, sans-serif, sans-serif;
    font-weight: normal;
}

h3 {
    font-weight: bold;
}

.subheader {
    color: #777;
}

p {
    margin: 0 0 1.3em 0;
}

    p img {
        margin: 0;
    }

    p.lead {
        font-size: 21px;
        line-height: 27px;
        color: #777;
    }

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/*  Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 20px 0 19px;
    border-left: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    border: solid #ddd;
    border-width: 1px 0 0;
    clear: both;
    margin: 10px 0 30px;
    height: 0;
}

/* #Links
================================================== */
a, a:visited {
    outline: 0;
}

p a, p a:visited {
    line-height: inherit;
}

/* #Lists
================================================== */
ul, ol {
    margin-bottom: 20px;
}

ul {
    list-style: none outside;
}

ol {
    list-style: decimal;
}

ol, ul.square, ul.circle, ul.disc {
    margin-left: 30px;
}

ul.square {
    list-style: square outside;
}

ul.circle {
    list-style: circle outside;
}

ul.disc {
    list-style: disc outside;
}

ul ul, ul ol,
ol ol, ol ul {
    margin: 4px 0 5px 30px;
    font-size: 90%;
}

    ul ul li, ul ol li,
    ol ol li, ol ul li {
        margin-bottom: 6px;
    }

li {
    line-height: 18px;
    margin-bottom: 12px;
}

ul.large li {
    line-height: 21px;
}

li p {
    line-height: 21px;
}

/* #Images
================================================== */
img.scale-with-grid {
    max-width: 100%;
    height: auto;
}

/* #Buttons
================================================== */
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    background-color: rgba(255, 255, 255, 0.2);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.2)), color-stop(100%, rgba(0, 0, 0, 0.2)));
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.2));
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.2));
    border: 1px solid #aaa;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #444;
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 1px rgba(255, 255, 255, 0.75);
    cursor: pointer;
    margin-bottom: 20px;
    line-height: normal;
    padding: 8px 10px;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

    .button:hover,
    button:hover,
    input[type="submit"]:hover,
    input[type="reset"]:hover,
    input[type="button"]:hover {
        color: #222;
        background-color: rgba(255, 255, 255, 0.3);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(0, 0, 0, 0.3)));
        background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.3));
        background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.3));
        border: 1px solid #888;
        border-top: 1px solid #aaa;
        border-left: 1px solid #aaa;
    }

    .button:active,
    button:active,
    input[type="submit"]:active,
    input[type="reset"]:active,
    input[type="button"]:active {
        border: 1px solid #666;
        background-color: rgba(255, 255, 255, 0.35);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.35)), color-stop(100%, rgba(10, 10, 10, 0.4)));
        background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.35), rgba(10, 10, 10, 0.4));
        background-image: linear-gradient(rgba(255, 255, 255, 0.35), rgba(10, 10, 10, 0.4));
    }

    .button.full-width,
    button.full-width,
    input[type="submit"].full-width,
    input[type="reset"].full-width,
    input[type="button"].full-width {
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center;
    }

    /* Fix for odd Mozilla border & padding issues */
    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

/* #Forms
================================================== */
form {
    margin-bottom: 0px;
}

fieldset {
    margin-bottom: 0px;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    display: block;
    margin: 0;
    margin-bottom: 20px;
    width: 210px;
    max-width: 100%;
    padding: 6px 4px;
    font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: black;
    outline: none;
    border: 1px solid #e1e2e3;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    background: #fff;
}

select {
    padding: 0;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
    color: black;
    border: 1px solid #e1e2e3;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

textarea {
    min-height: 60px;
}

label,
legend {
    display: block;
    white-space: normal;
    width: 100%;
    font-weight: bold;
    font-size: 13px;
}

select {
    width: 220px;
}

input[type="checkbox"] {
    display: inline;
}

label span,
legend span {
    font-weight: normal;
    font-size: 13px;
    color: #444;
}

/* Placeholder text */
::-webkit-input-placeholder {
    color: black;
}

input:-moz-placeholder {
    color: black;
}

input:-ms-placeholder {
    color: black;
}

::-ms-input-placeholder {
    color: black;
}

:-ms-input-placeholder {
    color: black;
}

/* #Misc
================================================== */
.remove-bottom {
    margin-bottom: 0 !important;
}

.half-bottom {
    margin-bottom: 10px !important;
}

.add-bottom {
    margin-bottom: 20px !important;
}

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

/* _type.scss */
@font-face {
    font-family: "icons";
    src: url("../fonts/icons.eot");
    src: url("../fonts/icons.eot#iefix") format("embedded-opentype"), url("../fonts/icons.woff") format("woff"), url("../fonts/icons.ttf") format("truetype"), url("../fonts/icons.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: "icons";
        src: url("../fonts/icons.svg") format("svg");
        font-weight: normal;
        font-style: normal;
    }
}

[data-icon]:before {
    font-family: 'icons';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
    font-family: 'icons';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {

.icon-icon-wheelbarrow, .icon-icon-magnifying-glass, .icon-icon-key, .icon-icons-triangle-right, .icon-icon-arrow-down, .icon-icons-triangle-down, .icon-icon-services-aeration, .icon-icon-services-brownpatch, .icon-icon-services-insect, .icon-icon-services-fertilizer, .icon-icon-services-mosquito, .icon-icon-services-weedcontrol {
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.icon-icon-wheelbarrow:before {
  content: "\77";
}
.icon-icon-magnifying-glass:before {
  content: "\73";
}
.icon-icon-key:before {
  content: "\6b";
}
.icon-icons-triangle-right:before {
  content: "\25b8";
}
.icon-icon-arrow-down:before {
  content: "\25bd";
}
.icon-icons-triangle-down:before {
  content: "\25be";
}
.icon-icon-services-aeration:before {
  content: "\61";
}
.icon-icon-services-brownpatch:before {
  content: "\62";
}
.icon-icon-services-insect:before {
  content: "\69";
}
.icon-icon-services-fertilizer:before {
  content: "\66";
}
.icon-icon-services-mosquito:before {
  content: "\6d";
}
.icon-icon-services-weedcontrol:before {
  content: "\67";
}





*/
/* _layout.scss */
.container {
    position: relative;
    *zoom: 1;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

    .container:before, .container:after {
        content: " ";
        display: table;
    }

    .container:after {
        clear: both;
    }

main {
    width: 100%;
}

article {
    display: block;
    float: left;
    margin-right: 1.5873%;
    width: 74.60317%;
}

    article#post-28 {
        width: 100%;
    }

    article:last-child {
        margin-right: 0;
    }

    article.right {
        float: right;
        padding: 0px 0px 0px 45px;
    }

aside.site {
    margin-left: -6.34921%;
    display: block;
    float: left;
    margin-right: 1.5873%;
    width: 23.80952%;
}

    aside.site:last-child {
        margin-right: 0;
    }

    aside.site.left {
        margin-left: 0%;
    }

@media screen and (max-width: 1023px) {
    aside.site.left {
        margin-left: 6.77966%;
        float: left;
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    aside.site.left {
        display: none;
    }
}

#colophon .sections:after {
    content: '';
    display: table;
    clear: both;
}

#colophon div {
    width: 100%;
}

    #colophon div.sitemap {
        margin-left: 5.06329%;
        display: block;
        float: left;
        margin-right: 1.5873%;
        width: 17.46032%;
    }

        #colophon div.sitemap:last-child {
            margin-right: 0;
        }

        #colophon div.sitemap li {
            float: left;
            width: 50%;
            padding: 0 15px 0 0;
        }

@media screen and (max-width: 600px) {
    #colophon div.sitemap {
        display: block;
        float: left;
        margin-right: 1.5873%;
        width: 42.85714%;
    }

        #colophon div.sitemap:last-child {
            margin-right: 0;
        }
}

@media screen and (max-width: 479px) {
    #colophon div.sitemap {
        width: 95%;
    }
}

#colophon div.accreditation {
    display: block;
    float: left;
    margin-right: 1.5873%;
    width: 36.50794%;
}

    #colophon div.accreditation:last-child {
        margin-right: 0;
    }

    #colophon div.accreditation li {
        display: inline;
        text-align: center;
    }

        #colophon div.accreditation li img {
            margin: 0 20px 20px 0;
            vertical-align: middle;
        }

@media screen and (max-width: 600px) {
    #colophon div.accreditation {
        display: none;
    }
}

#colophon div.social-icons {
    display: block;
    float: left;
    margin-right: 1.5873%;
    width: 30.15873%;
    margin-right: 0;
}

    #colophon div.social-icons:last-child {
        margin-right: 0;
    }

@media screen and (max-width: 600px) {
    #colophon div.social-icons {
        display: block;
        float: left;
        margin-right: 1.5873%;
        width: 42.85714%;
    }

        #colophon div.social-icons:last-child {
            margin-right: 0;
        }
}

@media screen and (max-width: 479px) {
    #colophon div.social-icons {
        display: none;
    }
}

body {
    position: relative;
    font-family: verdana, sans-serif, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 19px;
    color: #333;
}

a {
    color: #e47907;
    text-decoration: none;
}

    a.button-link {
        background-size: 4px 4px;
        background-color: #cbcdce;
        background-image: -webkit-linear-gradient(-225deg, #b8babc 25%, transparent 25%, transparent 50%, #c1c1c4 10%, #aeafb2 75%, transparent 75%, transparent);
        background-image: linear-gradient(-45deg, #b8babc 25%, transparent 25%, transparent 50%, #c1c1c4 10%, #aeafb2 75%, transparent 75%, transparent);
        padding: 4px 8px;
        color: #fff;
        text-align: center;
        text-decoration: none;
        text-shadow: gray 0px 1px 0px;
        display: block;
        border: 1px solid #abadaf;
        border-radius: 4px;
        font-weight: bold;
        font-family: verdana, sans-serif;
        font-size: 1.1em;
        margin-top: 12px;
    }

        a.button-link:hover {
            text-decoration: none !important;
            border: 1px black solid;
        }

div.button-link {
    background-size: 4px 4px;
    background-color: #cbcdce;
    background-image: -webkit-linear-gradient(-225deg, #b8babc 25%, transparent 25%, transparent 50%, #c1c1c4 10%, #aeafb2 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, #b8babc 25%, transparent 25%, transparent 50%, #c1c1c4 10%, #aeafb2 75%, transparent 75%, transparent);
    padding: 4px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-shadow: gray 0px 1px 0px;
    display: block;
    border: 1px solid #abadaf;
    border-radius: 4px;
    font-weight: bold;
    font-family: verdana, sans-serif;
    font-size: 1.1em;
    margin-top: 12px;
}

    div.button-link:hover {
        text-decoration: none !important;
        border: 1px black solid;
    }

    div.button-link:hover {
        border: 1px solid #abadaf;
    }

span a:after {
    content: " \00BB";
}

p.more {
    text-align: right;
}

img {
    max-width: 100%;
    height: auto;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: 10px;
    font-style: italic;
    color: black;
    border: 1px solid #e1e2e3;
    border-radius: 3px;
}

.dropdown {
    display: inline-block;
    position: relative;
    vertical-align: top;
    height: 26px;
    overflow: hidden;
    border: 1px solid #e1e2e3;
    border-radius: 3px;
    background: #fff;
    overflow: hidden;
}

    .dropdown:after {
        content: "\25be";
        font-family: 'icons';
        font-size: 6px;
        display: block;
        position: absolute;
        z-index: 1;
        top: 1px;
        right: 1px;
        width: 21px;
        height: 20px;
        line-height: 20px;
        color: #fff;
        text-align: center;
        color: #fff;
        border: 1px solid #dd6308;
        border-radius: 3px;
        background-color: #fa9608;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fa9608), color-stop(100%, #dd6308));
        background-image: -webkit-linear-gradient(#fa9608, #dd6308);
        background-image: linear-gradient(#fa9608, #dd6308);
        pointer-events: none;
    }

        .dropdown:after:hover {
            border: 1px solid #f77c21;
            background-color: #fbab3a;
            background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
            background-image: -webkit-linear-gradient(#fbab3a, #f77c21);
            background-image: linear-gradient(#fbab3a, #f77c21);
        }

.msie8 .dropdown:after {
    display: none;
}

.dropdown:hover:after {
    border: 1px solid #f77c21;
    background-color: #fbab3a;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
    background-image: -webkit-linear-gradient(#fbab3a, #f77c21);
    background-image: linear-gradient(#fbab3a, #f77c21);
}

.dropdown select {
    background: transparent;
    position: relative;
    z-index: 2;
    vertical-align: middle;
    line-height: 16px;
    margin: 0;
    padding: 3px;
    width: 150%;
    max-width: 150%;
    border-width: 0;
    -webkit-appearance: none;
}

.msie8 .dropdown select {
    width: 100%;
    padding: 4px 3px 5px 3px;
}

#masthead {
    position: relative;
    z-index: 500;
    background: #fff;
}

.top-navigation {
    background-color: #e5e7eb;
    border: 1px solid #e5e7eb;
    border-top: 0;
    text-align: right;
}

    .top-navigation:after {
        content: '';
        display: table;
        clear: both;
    }

    .top-navigation ul {
        /*margin: -1px 0 0;*/
        margin-bottom: 0px;
        float: right;
    }

        .top-navigation ul:after {
            content: '';
            display: table;
            clear: both;
        }

    .top-navigation li {
        display: inline-block;
        float: left;
        margin: 0;
        /*padding: 0 0.75em;
    height: 34px;
    line-height: 34px;*/
        font-size: 11px;
        /*border-left: 1px solid #5c801e;*/
        vertical-align: top;
        /*box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);*/
        cursor: pointer;
    }

        .top-navigation li.menu-toggle {
            display: none;
        }

@media screen and (max-width: 750px) {
    .top-navigation li.menu-toggle {
        display: block;
    }
}

/*.top-navigation li.signin:before {
  content: "\6b";
  font-family: 'icons';
  color: #fff;
  font-size: 18px;
  position: absolute;
  margin: 0 0 0 -24px;
}*/
.top-navigation li.orderservices {
    padding-left: 47px;
}

    .top-navigation li.orderservices:before {
        content: "\77";
        font-family: 'icons';
        color: #fff;
        font-size: 18px;
        position: absolute;
        margin: 0 0 0 -39px;
    }

    .top-navigation li.orderservices:after {
        content: attr(data-content) "";
        color: #fff;
        font-weight: bold;
    }

@media screen and (max-width: 479px) {
    .top-navigation li.orderservices {
        width: 47px;
    }

        .top-navigation li.orderservices a {
            display: none;
        }
}

.top-navigation li.confirmzip {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap;
}

    .top-navigation li.confirmzip label {
        display: inline;
        font-size: 11px;
    }

    .top-navigation li.confirmzip input {
        display: inline;
        margin: 0;
        max-width: 65px;
        height: 25px;
        border-radius: 3px;
        font-style: normal;
        font-size: 10px;
        color: black;
        border: 1px solid #e1e2e3;
        padding-left: 5px;
    }

    .top-navigation li.confirmzip button {
        display: inline-block;
        position: relative;
        top: 1px;
        margin: 0 0 0 -26px;
        padding: 0;
        width: 19px;
        height: 18px;
        color: #fff;
        border: 1px solid #dd6308;
        border-radius: 3px;
        background-color: #fa9608;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fa9608), color-stop(100%, #dd6308));
        background-image: -webkit-linear-gradient(#fa9608, #dd6308);
        background-image: linear-gradient(#fa9608, #dd6308);
    }

        .top-navigation li.confirmzip button:hover {
            border: 1px solid #f77c21;
            background-color: #fbab3a;
            background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
            background-image: -webkit-linear-gradient(#fbab3a, #f77c21);
            background-image: linear-gradient(#fbab3a, #f77c21);
        }

        .top-navigation li.confirmzip button:after {
            position: relative;
            top: -2px;
            content: "\25b8";
            font-family: 'icons';
            font-size: 6px;
            color: #fff;
        }

        .top-navigation li.confirmzip button span {
            display: none;
        }

@media screen and (max-width: 750px) {
    .top-navigation li.confirmzip {
        display: none;
    }
}

.top-navigation li.search {
    position: relative;
    min-width: 40px;
    padding: 4px 6px;
}

    .top-navigation li.search:before {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto auto;
        height: 18px;
        line-height: 18px;
        display: block;
        content: "\73";
        font-family: 'icons';
        color: white;
        font-size: 18px;
        text-align: center;
        z-index: 104;
    }

    .top-navigation li.search input {
        position: relative;
        z-index: 105;
        display: block;
        width: 24px;
        background: transparent;
        border-color: transparent;
        color: transparent;
        width: 28px;
        outline: none;
        border-radius: 3px;
        cursor: pointer;
        -webkit-appearance: none !important;
        padding-left: 30px;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }

        .top-navigation li.search input:focus, .top-navigation li.search input.full, .msie8 .top-navigation li.search input {
            background: white;
            border: 1px solid #e1e2e3;
            color: #555;
            width: 125px;
            cursor: text;
            padding-left: 10px;
        }

        .top-navigation li.search input::-webkit-search-decoration, .top-navigation li.search input::-webkit-search-cancel-button {
            display: none;
        }

        .top-navigation li.search input[type=submit] {
            display: none;
        }

.top-navigation a {
    color: #00810E;
    /*text-transform: uppercase;*/
    font-family: "Poppins", arial, sans-serif;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 25px;
    display: block;
}

.site-branding {
    /*position: relative;
    float: left;
    display: block;
    float: left;
    margin-right: 1.69492%;
    width: 25.42373%;*/
    padding-top: 20px;
}
    /*.site-branding:last-child {
  margin-right: 0;
}*/
    .site-branding img {
        max-width: 190px;
    }

    .site-branding a {
        display: block;
    }

@media screen and (max-width: 750px) {
    .site-branding {
        width: 40%;
    }
}

@media screen and (max-width: 600px) {
    .site-branding {
        width: 50%;
    }
}
/*.site-branding a {
  display: inline-block;
  margin-top: 11px;
  margin-left: 5%;
  height: 53px;
}
.site-branding a img {
  height: 95%;
}*/
.site-branding .site-description {
    display: none;
}

#menu-site li, .extra-nav-menu li {
    margin-bottom: 0px;
}

.menu-site-container {
    float: left;
}

#site-navigation {
    text-align: right;
    position: relative;
    /*max-height: 70px;*/
    z-index: 100;
    white-space: nowrap;
    /*margin-left: 250px;*/
}

    #site-navigation:after {
        content: '';
        display: table;
        clear: both;
    }

    #site-navigation a {
        text-decoration: none;
    }

    #site-navigation ul.menu {
        /*width: 100%;*/
        margin: 0;
        padding: 0;
        font-family: "Poppins", arial, sans-serif;
        font-weight: bold;
        font-size: 15px;
        letter-spacing: -0.5px;
        display: inline-block;
        margin-bottom: 0px;
    }

.extra-nav-menu {
    float: left;
    font-family: "Poppins", arial, sans-serif;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: -0.5px;
    display: inline-block
}

    .extra-nav-menu a {
        color: #493733;
        text-align: center;
        text-decoration: none;
        padding: 32px 20px 32px 20px;
        display: block;
        float: left;
    }

@media screen and (max-width: 750px) {
    #site-navigation ul.menu {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    #site-navigation ul.menu {
        font-size: 13px;
    }
}

#site-navigation ul.menu > li {
    display: inline;
    position: relative;
    padding: 0;
}

    #site-navigation ul.menu > li:hover > ul {
        display: block;
    }

    #site-navigation ul.menu > li:hover > a {
        background: #d6e4b4;
    }

        #site-navigation ul.menu > li:hover > a:after {
            display: block;
            content: "\25bd";
            font-family: 'icons';
            font-size: 8px;
            position: absolute;
            bottom: -20px;
            left: 50%;
            margin-left: -8px;
        }


    .page-id-19 #site-navigation ul.menu > li > a {
        padding: 0 0.6em !important;
        line-height: 40px;
    }

    #site-navigation ul.menu > li > a {
        display: inline-block;
        position: relative;
        min-width: 80px;
        color: #493733;
        text-align: center;
        text-decoration: none;
        padding: 34px 20px 34px 20px;
    }

@media screen and (max-width: 1023px) {
    #site-navigation ul.menu > li > a {
        min-width: 50px;
        padding: 0 0.4em;
    }
}

#site-navigation ul.menu > li > ul {
    display: none;
    position: absolute;
    z-index: 1000;
    left: 0;
    margin: 0;
    min-width: 200px;
    white-space: normal;
    text-align: left;
    font-family: verdana, sans-serif;
    font-size: 13px;
    font-weight: normal;
    background: #f4f2e7;
    box-shadow: inset 0 5px 10px -6px rgba(0, 0, 0, 0.1);
}

    #site-navigation ul.menu > li > ul > li {
        position: relative;
        display: block;
        margin: 0;
        text-align: left;
    }

        #site-navigation ul.menu > li > ul > li > a {
            display: block;
            padding: 9px 12px;
            height: auto;
            min-width: 0;
            line-height: normal;
            text-align: left;
            text-decoration: none;
            color: #333;
        }

            #site-navigation ul.menu > li > ul > li > a:hover {
                color: #fff;
                background: #adca69;
            }

        #site-navigation ul.menu > li > ul > li:hover > ul {
            display: block;
        }

        #site-navigation ul.menu > li > ul > li > ul {
            display: none;
            position: absolute;
            z-index: 1000;
            top: 0;
            margin: 0 0 0 200px;
            min-width: 200px;
            background: white;
        }

            #site-navigation ul.menu > li > ul > li > ul > li {
                margin: 0;
            }

                #site-navigation ul.menu > li > ul > li > ul > li > a {
                    display: block;
                    padding: 9px 12px;
                    height: auto;
                    min-width: 0;
                    line-height: normal;
                    text-align: left;
                    text-decoration: none;
                    color: #333;
                }

                    #site-navigation ul.menu > li > ul > li > ul > li > a:hover {
                        color: #fff;
                        background: #adca69;
                    }

.content-area a {
    font-weight: bold;
}

    .content-area a:hover {
        text-decoration: underline;
    }

.content-area main.site h1 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    color: #009654;
}

.content-area main.site h2 {
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
    color: #009654;
}

.content-area main.site img.supporting {
    float: left;
    margin: 0 20px 20px;
}

.content-area article ul {
    list-style: none;
    padding-left: 20px;
}

    .content-area article ul li {
        padding-left: 0px;
    }

        .content-area article ul li::before {
            content: "\002022";
            color: #e47907;
            padding-right: 5px;
        }

.footer-wrapper {
    padding: 70px 0 0;
    color: #fff;
    background-color: #517185;
}

    .footer-wrapper a {
        color: #fff;
        text-decoration: none;
    }

    .footer-wrapper h2 {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 20px;
        font-family: "Poppins", arial, sans-serif;
        font-weight: bold;
        color: #fff;
    }

    .footer-wrapper .sections {
        margin: 0 0 20px;
        padding: 0 0 8px;
        border-bottom: 1px solid #fff;
    }

        .footer-wrapper .sections .sitemap {
            font-weight: bold;
        }

            .footer-wrapper .sections .sitemap a:hover {
                text-decoration: underline;
            }

            .footer-wrapper .sections .sitemap li {
                font-size: 12px;
                line-height: 15px;
            }

        .footer-wrapper .sections .social-icons ul.social-icons {
            display: block;
            float: left;
            margin-right: 5.26316%;
            width: 78.94737%;
            margin: 0;
            padding: 0;
        }

            .footer-wrapper .sections .social-icons ul.social-icons:last-child {
                margin-right: 0;
            }

@media screen and (max-width: 600px) {
    .footer-wrapper .sections .social-icons ul.social-icons {
        width: 100%;
    }

    .mobile-100 {
        width: 100% !important;
    }

    .mobile-left-content {
        text-align: left;
        position: relative;
    }

    .mobile-center-content {
        width: 100% !important;
        text-align: center;
    }
}

.footer-wrapper .sections .social-icons ul.social-icons li {
    float: left;
    margin: 0 15px 15px 0;
    padding: 0;
    width: 35px;
    height: 34px;
}

    .footer-wrapper .sections .social-icons ul.social-icons li:nth-child(3n) {
        margin-right: 0;
    }

    .footer-wrapper .sections .social-icons ul.social-icons li:nth-child(3n+1) {
        clear: left;
    }

.footer-wrapper .sections .social-icons ul.social-icons a {
    display: inline-block;
    width: 35px;
    height: 34px;
}

    .footer-wrapper .sections .social-icons ul.social-icons a:before {
        content: '';
        display: inline-block;
        width: 35px;
        height: 34px;
    }

.footer-wrapper .sections .social-icons ul.social-icons span {
    display: none;
}

.footer-wrapper #copyright {
    width: 60%;
    padding: 0 10px;
    font-size: 10px;
    float: left;
    line-height: 33px;
}

@media screen and (max-width: 600px) {
    .footer-wrapper #copyright {
        width: 100%;
    }
}

.footer-wrapper #credit {
    width: 40%;
    text-align: right;
    float: right;
    margin: 0 0 20px;
    padding: 0 10px;
    font-size: 10px;
    line-height: 33px;
}

    .footer-wrapper #credit a {
        white-space: no-wrap;
    }

        .footer-wrapper #credit a:hover {
            text-decoration: underline;
        }

        .footer-wrapper #credit a:after {
            content: '';
            display: inline-block;
            margin: 0 0 0 10px;
            width: 114px;
            height: 33px;
            vertical-align: middle;
        }

@media screen and (max-width: 600px) {
    .footer-wrapper #credit {
        float: left;
        text-align: left;
        width: 100%;
    }
}

.box header {
    padding: 5px 14px;
    background-color: #b3ce6c;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b3ce6c), color-stop(100%, #90bb59));
    background-image: -webkit-linear-gradient(#b3ce6c, #90bb59);
    background-image: linear-gradient(#b3ce6c, #90bb59);
    box-shadow: inset 0 0 5px 3px rgba(170, 219, 140, 0.5);
    border: 1px solid rgba(57, 85, 58, 0.75);
}

    .box header h1, .box header h2 {
        margin: 0;
        padding: 0;
        font-family: "Poppins", arial, sans-serif;
        font-weight: bold;
        font-size: 15px;
        line-height: 25px;
        vertical-align: middle;
        color: #fff;
        text-shadow: -1px -1px 1px rgba(94, 102, 84, 0.45);
    }

        .box header h1 + p.subtext, .box header h2 + p.subtext {
            margin-top: -1px;
        }

    .box header p.subtext {
        margin: 0;
        color: #dbdcde;
        font-size: 10px;
        line-height: 12px;
        font-weight: bold;
        font-style: italic;
        text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
    }

.box section {
    padding: 20px 20px 0;
    background: #f4f2e7;
    border: 1px solid #c4bc97;
    border-top: 0;
}

    .box section.highlighted {
        background: #ded8bd;
    }

@media screen and (min-width: 721px) and (max-width: 1023px) {
    .box section.highlighted, .box section {
        position: relative;
        float: left;
        /*width: 50%;*/
    }
}

@media screen and (max-width: 720px) {
    .box section.highlighted, .box section {
        position: relative;
        float: left;
        width: 100%;
    }
}

.box section h2 {
    font-size: 20px;
    font-weight: bold;
    color: #493733;
}

.box > ul, .box ul.menu, .box div.menu > ul {
    margin: 0;
    padding: 0;
    background: white;
}

    .box > ul > li, .box ul.menu > li, .box div.menu > ul > li {
        border-bottom: 1px solid #e7e3d1;
        padding: 0;
        margin: 0;
    }

        .box > ul > li > a, .box ul.menu > li > a, .box div.menu > ul > li > a {
            display: block;
            color: #493733;
            font-family: "Poppins", arial, sans-serif;
            padding: 10px 14px;
            line-height: 15px;
            font-size: 15px;
        }

            .box > ul > li > a:hover, .box ul.menu > li > a:hover, .box div.menu > ul > li > a:hover {
                color: #e47907;
            }

        .box > ul > li:before, .box ul.menu > li:before, .box div.menu > ul > li:before {
            content: '';
            padding: 0;
        }

        .box > ul > li > ul, .box ul.menu > li > ul, .box div.menu > ul > li > ul {
            margin: 0;
            padding: 0;
        }

            .box > ul > li > ul > li, .box ul.menu > li > ul > li, .box div.menu > ul > li > ul > li {
                border-top: 1px solid #e7e3d1;
                padding: 0;
                margin: 0;
            }

                .box > ul > li > ul > li > a, .box ul.menu > li > ul > li > a, .box div.menu > ul > li > ul > li > a {
                    display: block;
                    color: #493733;
                    padding: 6px 14px 6px 30px;
                    font-weight: normal;
                }

.taxonomy-description {
    display: block;
    float: left;
    margin-right: 3.22581%;
    width: 87.09677%;
}

    .taxonomy-description:last-child {
        margin-right: 0;
    }

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

    .video-container iframe, .video-container object, .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

button.button {
    padding: 8px 15px;
    font-size: 13px;
    font-family: verdana, sans-serif;
    font-weight: bold;
    text-shadow: none;
    color: #fff;
    border: 1px solid #dd6308;
    border-radius: 3px;
    background-color: #fa9608;
    background-color: #fa9608;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fa9608), color-stop(100%, #dd6308));
    background-image: -webkit-linear-gradient(top left, #fa9608, #dd6308);
    background-image: linear-gradient(to bottom right,#fa9608, #dd6308);
    margin: 0;
    cursor: pointer;
    clear: both;
}

    button.button:hover {
        border: 1px solid #f77c21;
        background-color: #fbab3a;
        color: #fff;
        background-color: #fbab3a;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
        background-image: -webkit-linear-gradient(top left, #fbab3a, #f77c21);
        background-image: linear-gradient(to bottom right,#fbab3a, #f77c21);
    }

    button.button a {
        color: #ffffff;
        text-decoration: none;
    }

.clearfix {
    *zoom: 1;
}

    .clearfix:before, .clearfix:after {
        content: " ";
        display: table;
    }

    .clearfix:after {
        clear: both;
    }

/* _components.scss */
a.btn {
    display: inline-block;
    margin: 0 0 1em;
    padding: 0.5em 1em;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #252525;
    background: #f4b81e;
}

    a.btn:hover {
        background: #f6c74f;
    }

    a.btn.block:before, a.btn.block:after {
        content: ' ';
        display: table;
        clear: both;
    }

/*widget-location-form.scss*/
.box {
    margin-bottom: 15px;
    margin-left: 10px;
    display: block;
    float: left;
    margin-right: 6.66667%;
    width: 100%;
    font-size: 12px;
}

    .box:last-child {
        margin-right: 0;
    }

    .box a {
        font-weight: bold;
    }

    .box legend {
        margin: 0 0 10px;
        font-family: "Poppins", arial, sans-serif;
        font-size: 16px;
        font-weight: bold;
        line-height: 22px;
        color: #493733;
    }

        .box legend .or {
            text-align: center;
            margin: auto;
            margin-bottom: 12px;
        }

    .box header {
        padding: 5px 15px;
        background-color: #b3ce6c;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b3ce6c), color-stop(100%, #90bb59));
        background-image: -webkit-linear-gradient(#b3ce6c, #90bb59);
        background-image: linear-gradient(#b3ce6c, #90bb59);
        box-shadow: inset 0 0 5px 3px rgba(170, 219, 140, 0.5);
        border: 1px solid rgba(57, 85, 58, 0.75);
    }

        .box header h1 {
            margin: 8px 0;
            font-family: "Poppins", arial, sans-serif;
            font-weight: bold;
            font-size: 25px;
            line-height: 25px;
            color: #fff;
            text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
        }

        .box header h2 {
            font-size: 16px;
            color: #fff;
            margin: 0;
        }

        .box header .subtext {
            margin: 0;
            color: #dbdcde;
            font-size: 10px;
            line-height: 12px;
            font-weight: bold;
            font-style: italic;
            text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
        }

    .box form.address {
        margin: 0 0 8px;
        padding: 0 0 4px;
        /*border-bottom: 1px solid #493733;*/
    }

        .box form.address legend {
            margin: 0 0 10px;
            font-family: "Poppins", arial, sans-serif;
            font-size: 16px;
            font-weight: bold;
            line-height: 18px;
            color: #493733;
        }

        .box form.address input {
            display: inline;
            margin: 0 0 6px;
        }

            .box form.address input.street {
                width: 100%;
            }

            .box form.address input.city {
                width: 50%;
            }

            .box form.address input.zip {
                width: 20%;
            }

        .box form.address .state {
            width: 65px;
        }

        .box form.address button[type="submit"] {
            width: 100%;
            font-size: 13px;
            font-family: verdana, sans-serif;
            font-weight: bold;
            text-shadow: none;
            color: #fff;
            border: 1px solid #dd6308;
            border-radius: 3px;
            background-color: #fa9608;
            background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fa9608), color-stop(100%, #dd6308));
            background-image: -webkit-linear-gradient(#fa9608, #dd6308);
            background-image: linear-gradient(#fa9608, #dd6308);
            margin-bottom: 10px;
        }

            .box form.address button[type="submit"]:hover {
                border: 1px solid #f77c21;
                background-color: #fbab3a;
                background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
                background-image: -webkit-linear-gradient(#fbab3a, #f77c21);
                background-image: linear-gradient(#fbab3a, #f77c21);
            }

    .box form.discount {
        vertical-align: middle;
        line-height: 34px;
    }

        .box form.discount input {
            display: inline-block;
            width: 78%;
            float: left;
            margin-top: 4px;
        }

        .box form.discount button[type="submit"] {
            font-size: 13px;
            line-height: 13px;
            font-family: verdana, sans-serif;
            font-weight: bold;
            text-shadow: none;
            color: #fff;
            border: 1px solid #dd6308;
            border-radius: 3px;
            background-color: #fa9608;
            background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fa9608), color-stop(100%, #dd6308));
            background-image: -webkit-linear-gradient(#fa9608, #dd6308);
            background-image: linear-gradient(#fa9608, #dd6308);
            display: inline-block;
            width: 20%;
            float: right;
            margin-top: 7px;
        }

            .box form.discount button[type="submit"]:hover {
                border: 1px solid #f77c21;
                background-color: #fbab3a;
                background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
                background-image: -webkit-linear-gradient(#fbab3a, #f77c21);
                background-image: linear-gradient(#fbab3a, #f77c21);
            }

        .box form.discount:after {
            content: '';
            display: table;
            clear: both;
        }

    .box h2 {
        font-size: 20px;
        font-weight: bold;
        color: #493733;
    }

    .box section {
        padding: 20px 20px 0;
        background: #f4f2e7;
        border: 1px solid #c4bc97;
        border-top: 0;
    }

        .box section.highlighted {
            background: #ded8bd;
        }

.sharing.widget {
    text-align: left;
    background: white;
    padding: 15px 10px;
}

.box > header {
    position: relative;
    line-height: 24px;
    padding: 4px 14px;
    height: 34px;
    overflow: hidden;
}

    .box > header > .widget-title > a.rss-icon {
        position: absolute;
        top: 0;
        right: 0;
        width: 34px;
        height: 32px;
        text-indent: -50000px;
        background: transparent url("../images/rss-icon.png") top right no-repeat;
        border-left: 1px solid #e47907;
    }

.box[id^="taxonomy_list_widget"] .tlw-list {
    text-transform: capitalize;
}

.box > .posts li, .box > .social li {
    width: 100%;
    border-bottom: 1px solid #d2c7bc;
    display: block;
    float: none;
    margin: 0;
    padding-bottom: 10px;
}

    .box > .posts li > a, .box > .social li > a {
        width: 100%;
        height: auto;
        min-height: 40px;
        display: block;
        font-size: 12px;
        color: #493733;
        background-size: 27px 27px;
        background-position: 10px 12px;
        padding: 10px 15px 0px 45px;
    }

        .box > .posts li > a > span, .box > .social li > a > span {
            font-size: 16px;
            font-weight: bold;
            display: block;
            font-family: "Poppins", arial, sans-serif;
        }

        .box > .posts li > a > date, .box > .social li > a > date {
            font-style: italic;
            font-weight: normal;
        }

    .box > .posts li > p, .box > .social li > p {
        font-size: 12px;
        font-weight: normal;
        margin: 5px 0 0 0;
        padding: 0 10px;
    }

        .box > .posts li > p > a, .box > .social li > p > a {
            color: #e47907;
        }

        .box > .posts li > p img, .box > .social li > p img {
            width: 100%;
        }

button.orange {
    color: #fff;
    border: 1px solid #dd6308;
    border-radius: 3px;
    background-color: #fa9608;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fa9608), color-stop(100%, #dd6308));
    background-image: -webkit-linear-gradient(#fa9608, #dd6308);
    background-image: linear-gradient(#fa9608, #dd6308);
    width: auto;
    padding: 10px 15px;
    font-size: 13px;
}

    button.orange:hover {
        border: 1px solid #f77c21;
        background-color: #fbab3a;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
        background-image: -webkit-linear-gradient(#fbab3a, #f77c21);
        background-image: linear-gradient(#fbab3a, #f77c21);
    }

/* _media.scss */
/* _modernizr.scss */
/*
  Contents:
    no-cssanimations
    no-svg
*/
.box.ouw-contact-form header > h2 {
    display: none;
}

.box.ouw-contact-form .form {
    width: 100%;
    background: #f4f2e7 url("../images/ask_harold.jpg") top left no-repeat;
    background-size: contain;
    border: 1px solid #e7e3d1;
    padding: 165px 15px 10px 15px;
}

.msie8 .box.ouw-contact-form .form {
    background-position: top right;
}

@media screen and (max-width: 1023px) {
    .box.ouw-contact-form {
        width: 300px !important;
    }
}

form .buttons {
    text-align: center;
}

form .label label {
    font-family: "Poppins", arial, sans-serif;
    font-size: 16px;
    color: #493733;
    margin: 5px 0;
}

form input,
form input[type="text"],
form input[type="url"],
form input[type="email"],
form input[type="number"],
form textarea {
    font-size: 10px;
    line-height: 15px;
    vertical-align: middle;
    padding: 5px 10px;
    border: 1px solid #dfdfdf;
    background: white;
    border-radius: 2px;
    width: 100%;
    margin: 0;
    font-style: normal;
}

    form input[type="button"], form input[type="submit"], form input .submit,
    form input[type="text"][type="button"],
    form input[type="text"][type="submit"],
    form input[type="text"] .submit,
    form input[type="url"][type="button"],
    form input[type="url"][type="submit"],
    form input[type="url"] .submit,
    form input[type="email"][type="button"],
    form input[type="email"][type="submit"],
    form input[type="email"] .submit,
    form input[type="number"][type="button"],
    form input[type="number"][type="submit"],
    form input[type="number"] .submit,
    form textarea[type="button"],
    form textarea[type="submit"],
    form textarea .submit {
        background-color: #fc9a08;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fc9a08), color-stop(100%, #d95908));
        background-image: -webkit-linear-gradient(#fc9a08, #d95908);
        background-image: linear-gradient(#fc9a08, #d95908);
        border-color: #e47907;
        color: white;
        text-shadow: none;
        font-style: normal;
        font-size: 12px;
        width: auto;
    }

        form input[type="button"]:hover, form input[type="submit"]:hover, form input .submit:hover,
        form input[type="text"][type="button"]:hover,
        form input[type="text"][type="submit"]:hover,
        form input[type="text"] .submit:hover,
        form input[type="url"][type="button"]:hover,
        form input[type="url"][type="submit"]:hover,
        form input[type="url"] .submit:hover,
        form input[type="email"][type="button"]:hover,
        form input[type="email"][type="submit"]:hover,
        form input[type="email"] .submit:hover,
        form input[type="number"][type="button"]:hover,
        form input[type="number"][type="submit"]:hover,
        form input[type="number"] .submit:hover,
        form textarea[type="button"]:hover,
        form textarea[type="submit"]:hover,
        form textarea .submit:hover {
            background-color: #fbab3a;
            background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
            background-image: -webkit-linear-gradient(#fbab3a, #f77c21);
            background-image: linear-gradient(#fbab3a, #f77c21);
            border: 1px solid #f77c21;
            color: white;
        }

        form input[type="button"]:active, form input[type="submit"]:active, form input .submit:active,
        form input[type="text"][type="button"]:active,
        form input[type="text"][type="submit"]:active,
        form input[type="text"] .submit:active,
        form input[type="url"][type="button"]:active,
        form input[type="url"][type="submit"]:active,
        form input[type="url"] .submit:active,
        form input[type="email"][type="button"]:active,
        form input[type="email"][type="submit"]:active,
        form input[type="email"] .submit:active,
        form input[type="number"][type="button"]:active,
        form input[type="number"][type="submit"]:active,
        form input[type="number"] .submit:active,
        form textarea[type="button"]:active,
        form textarea[type="submit"]:active,
        form textarea .submit:active {
            background: #fc9a08;
        }

    form input[type=radio] {
        padding: 0;
        background: none;
        width: auto;
        display: inline-block;
        border: none;
    }

form .row {
    margin: 10px 0;
    clear: both;
}

    form .row .field.radio label {
        display: inline-block;
        width: 25%;
        font-size: 12px;
    }

        form .row .field.radio label input {
            width: auto;
            display: inline-block;
        }

    form .row.require label:after {
        color: #e47907;
        content: '*';
    }

    form .row.type-text, form .row.type-number, form .row.type-select {
        margin-top: 0;
        margin-bottom: 5px;
    }

.widget form .row.type-text .label, .widget form .row.type-number .label, .widget form .row.type-select .label {
    display: none;
}

form .row.address {
    display: block;
    float: left;
    padding-left: 5px;
    width: 25%;
    clear: none;
}

@media screen and (max-width: 600px) {
    form .row.address {
        width: 50%;
    }

        form .row.address.state {
            padding-left: 0;
        }
}

@media screen and (max-width: 479px) {
    form .row.address {
        width: 100%;
        padding: 0;
    }
}

form .row.address.city {
    width: 50%;
    padding: 0;
}

@media screen and (max-width: 600px) {
    form .row.address.city {
        width: 100%;
        float: none;
    }
}

form .row.address.zip:after {
    content: ' ';
    height: 0;
    width: 0;
    overflow: hidden;
    clear: both;
}

form .field.select {
    /* field.select */
    display: inline-block;
    position: relative;
    vertical-align: top;
    height: 26px;
    overflow: hidden;
    border: 1px solid #e1e2e3;
    border-radius: 3px;
    background: #fff;
    overflow: hidden;
    width: 100%;
    height: 39px;
}

    form .field.select:after {
        content: "\25be";
        font-family: 'icons';
        font-size: 6px;
        display: block;
        position: absolute;
        z-index: 1;
        top: 9px;
        right: 1px;
        width: 21px;
        height: 20px;
        line-height: 20px;
        color: #fff;
        text-align: center;
        color: #fff;
        border: 1px solid #dd6308;
        border-radius: 3px;
        background-color: #fa9608;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fa9608), color-stop(100%, #dd6308));
        background-image: -webkit-linear-gradient(#fa9608, #dd6308);
        background-image: linear-gradient(#fa9608, #dd6308);
        pointer-events: none;
    }

        form .field.select:after:hover {
            border: 1px solid #f77c21;
            background-color: #fbab3a;
            background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
            background-image: -webkit-linear-gradient(#fbab3a, #f77c21);
            background-image: linear-gradient(#fbab3a, #f77c21);
        }

.msie8 form .field.select:after {
    display: none;
}

form .field.select:hover:after {
    border: 1px solid #f77c21;
    background-color: #fbab3a;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
    background-image: -webkit-linear-gradient(#fbab3a, #f77c21);
    background-image: linear-gradient(#fbab3a, #f77c21);
}

form .field.select select {
    background: transparent;
    position: relative;
    z-index: 2;
    vertical-align: middle;
    line-height: 16px;
    margin: 0;
    padding: 3px;
    width: 150%;
    max-width: 150%;
    border-width: 0;
    -webkit-appearance: none;
}

.msie8 form .field.select select {
    width: 100%;
    padding: 4px 3px 5px 3px;
}

/* _bourbon_settings.scss */
/* FYI:
        this grid isn't applied to the whole site.
        left sidebar column is fixed-width.
        main content (grid) is 940px.
        entire site max-width is still 1200px.
$grid-columns: 12;
$max-width: 940px;
*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* _variables.scss */
/* _mixins.scss */
/* _media.scss */
body.msie8 > #page {
    width: 1100px !important;
    min-width: 1100px !important;
    max-width: 1100px !important;
    margin-left: auto;
    margin-right: auto;
}

header#masthead ul#menu-site > li:first-child {
    display: none;
}

header#masthead .main-navigation #location-button {
    display: none;
}

    header#masthead .main-navigation #location-button input[type='button'] {
        color: #fff;
        border: 1px solid #dd6308;
        border-radius: 3px;
        background-color: #fa9608;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fa9608), color-stop(100%, #dd6308));
        background-image: -webkit-linear-gradient(#fa9608, #dd6308);
        background-image: linear-gradient(#fa9608, #dd6308);
        text-shadow: none;
    }

        header#masthead .main-navigation #location-button input[type='button']:hover {
            border: 1px solid #f77c21;
            background-color: #fbab3a;
            background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
            background-image: -webkit-linear-gradient(#fbab3a, #f77c21);
            background-image: linear-gradient(#fbab3a, #f77c21);
        }

@media screen and (max-width: 750px) {
    header#masthead .main-navigation #location-button {
        float: right;
        margin-right: 20px;
        display: -webkit-box;
        display: -moz-box;
        display: box;
        -webkit-box-orient: horizontal;
        -moz-box-orient: horizontal;
        box-orient: horizontal;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        box-pack: center;
        -webkit-box-align: middle;
        -moz-box-align: middle;
        box-align: middle;
        padding-top: 15px;
    }
}

header#masthead .main-navigation #location-button .close-button {
    position: relative;
    margin-right: 20px;
    margin-top: 10px;
    display: none;
}

    header#masthead .main-navigation #location-button .close-button a {
        font-weight: bold;
        font-size: 1.1em;
    }

header#masthead .main-navigation #find-location-mobile {
    display: none;
    z-index: -1;
    /*  position: fixed; */
    top: 32px;
    left: 0px;
    white-space: normal;
    text-align: left;
    width: 100%;
}

    header#masthead .main-navigation #find-location-mobile > div {
        width: 100%;
        border-bottom: 1px solid #e7e3d1;
        float: none;
        margin: 0px 0px 10px 0px;
    }

        header#masthead .main-navigation #find-location-mobile > div > section {
            border: 0px;
        }

            header#masthead .main-navigation #find-location-mobile > div > section form:first-child {
                margin-top: 60px;
            }

    header#masthead .main-navigation #find-location-mobile .site-branding {
        z-index: 100;
        position: relative;
        float: left;
        border: none;
        margin-left: -10px;
    }

@media screen and (max-width: 750px) {
    header#masthead #menu-container {
        display: block;
        z-index: 2000;
        position: fixed;
        overflow: hidden;
        top: 34px;
        left: 0;
        width: auto;
        height: 100%;
        max-width: 0;
        background: #e7e3d1;
        border-right: 1px solid #d2c7bc;
        -webkit-transition: all 0.8s;
        -moz-transition: all 0.8s;
        transition: all 0.8s;
    }

        header#masthead #menu-container ul {
            display: block;
            padding: 0;
            min-width: 240px;
            font-size: 19px;
        }

            header#masthead #menu-container ul > li {
                float: none;
                text-align: left;
                display: block;
                width: auto;
                height: auto;
                padding: 0;
                margin: 0;
                border-bottom: 1px solid #d2c7bc;
                text-align: left;
            }

                header#masthead #menu-container ul > li > a {
                    display: block;
                    width: auto;
                    height: auto;
                    min-height: 0;
                    line-height: 1em;
                    padding: 10px 15px;
                    text-align: left;
                }

                    header#masthead #menu-container ul > li > a:hover {
                        background-color: #d2c7bc;
                        color: #493733;
                    }

                    header#masthead #menu-container ul > li > a:after {
                        display: none;
                    }

                header#masthead #menu-container ul > li.phone-only {
                    display: block;
                }

                header#masthead #menu-container ul > li .sub-menu {
                    display: none;
                    position: relative;
                }

                header#masthead #menu-container ul > li .toggler {
                    display: block;
                    float: right;
                    width: 100%;
                    text-align: right;
                    z-index: 6000;
                }

                    header#masthead #menu-container ul > li .toggler:hover {
                        background: none;
                    }

                    header#masthead #menu-container ul > li .toggler:before {
                        content: "\25bd";
                        font-family: 'icons';
                        font-size: 6px;
                    }

                header#masthead #menu-container ul > li .toggled:before {
                    content: "\25b3";
                    font-family: 'icons';
                    font-size: 6px;
                }

            header#masthead #menu-container ul li:hover {
                color: #493733;
            }

            header#masthead #menu-container ul li:first-child {
                display: block;
            }

    header#masthead .menu-toggle {
        width: 80px !important;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

    header#masthead .menu-toggle-open {
        background-color: #fd9a08;
        position: fixed;
        top: 0;
    }

    header#masthead .open {
        max-width: 100% !important;
        box-shadow: 3px 0px 5px rgba(0, 0, 0, 0.27);
    }
}

header#masthead .menu-button {
    width: 25%;
    height: 33px;
    line-height: 33px;
    display: none;
    text-align: center;
    overflow: hidden;
    border-right: 1px solid #5c801e;
    box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.3) inset;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 750px) {
    header#masthead .menu-button {
        display: block;
    }
}

header#masthead .toggler {
    display: none;
}

.phone-only-element {
    display: none;
}

.hide-on-phone-element {
    display: block;
}

@media screen and (max-width: 479px) {
    .hide-on-phone-element {
        display: none !important;
    }
}

.tablet-only-element {
    display: none;
}

/*@media screen and (max-width: 1023px) {
  .tablet-only-element {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .tablet-only-element {
    display: none;
  }
}*/

@media screen and (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.2em;
    }

    h3 {
        font-size: 1em;
    }
}

@media screen and (max-width: 600px) {
    .phone-only-element {
        display: block;
    }

    #grass_bg {
        display: none;
    }

    #colophon section {
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 10px 20px;
    }

        #colophon section ul {
            margin: 0;
        }

    .footer-wrapper .site-footer.container {
        padding: 0;
    }

    .footer-wrapper .copyright, .footer-wrapper .credit {
        line-height: 14px;
        padding: 10px 20px !important;
        margin: 0 !important;
        float: none;
    }

    .footer-wrapper ul.social-icons {
        max-width: none;
    }

        .footer-wrapper ul.social-icons > li {
            margin: 0 5px 10px 0;
        }

    .footer-wrapper h2 {
        margin-bottom: 15px;
    }

    .wp-content-format {
        width: 100%;
    }
}

.orange-button-link {
    width: 100%;
    font-size: 13px;
    font-family: verdana, sans-serif;
    font-weight: bold;
    text-shadow: none;
    color: #fff;
    border: 1px solid #dd6308;
    border-radius: 3px;
    background-color: #fa9608;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fa9608), color-stop(100%, #dd6308));
    background-image: -webkit-linear-gradient(#fa9608, #dd6308);
    background-image: linear-gradient(#fa9608, #dd6308);
    margin-bottom: 10px;
    line-height: normal;
    padding: 8px 10px;
    cursor: pointer;
    display: inline-block;
    align-items: flex-start;
    text-align: center;
    margin: 0em;
    font: 13.3333px Arial;
    text-rendering: auto;
    color: initial;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    color: white;
    text-decoration: none;
}

    .orange-button-link:hover {
        border: 1px solid #f77c21;
        background-color: #fbab3a;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbab3a), color-stop(100%, #f77c21));
        background-image: -webkit-linear-gradient(#fbab3a, #f77c21);
        background-image: linear-gradient(#fbab3a, #f77c21);
        color: white;
        text-decoration: none;
    }

.service-contact-button {
    width: 125px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#paymentForm {
    min-width: 240px;
}

.menu-header-menu-container-ctc {
    display: inline-block;
    margin-right: 135px;
}

@media screen and (min-width: 761px) {
    .click-to-chat-button-std {
        position: absolute;
        right: 3px;
        top: 27px;
    }
}

@media screen and (max-width: 760px) and (min-width: 633px) {
    .click-to-chat-button-std {
        position: absolute;
        left: -165px;
        top: -32px;
    }
}

@media screen and (max-width: 632px) {
    .click-to-chat-button-std {
        position: absolute;
        right: 20px;
        top: 50px;
    }
}

.chat-image {
    min-width: 135px;
}


.star-ratings-css {
    unicode-bidi: bidi-override;
    color: #c5c5c5;
    font-size: 25px;
    height: 25px;
    width: 100px;
    margin-left: 0px;
    position: relative;
    text-shadow: 0 1px 0 #a2a2a2;
}

    .star-ratings-css::before {
        content: '\2605\2605\2605\2605\2605';
        opacity: .3;
    }

[title="0"]::after {
    width: 0%;
}

[title="1"]::after {
    width: 20%;
}

[title="2"]::after {
    width: 40%;
}

[title="3"]::after {
    width: 60%;
}

[title="4"]::after {
    width: 80%;
}

[title="5"]::after {
    width: 100%;
}

.star-ratings-css::after {
    color: gold;
    content: '\2605\2605\2605\2605\2605';
    text-shadow: 0 1px 0 #ab5414;
    position: absolute;
    z-index: 1;
    display: block;
    left: 0;
    top: 0;
    width: attr(rating);
    overflow: hidden;
}

button.load-more-testimonials {
    width: 100%;
    font-size: 13px;
    font-family: verdana, sans-serif;
    font-weight: bold;
    text-shadow: none;
    color: #fff;
    border: 1px solid #dd6308;
    border-radius: 3px;
    background-color: #fa9608;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fa9608), color-stop(100%, #dd6308));
    background-image: -webkit-linear-gradient(#fa9608, #dd6308);
    background-image: linear-gradient(#fa9608, #dd6308);
    margin-bottom: 10px;
}

.noDisplay {
    display: none;
}

h2.testimonialAggregate {
    color: #00953a;
    font-weight: bold;
}

div#enterAddressModal {
    overflow: hidden;
}

.page-template-out-of-area-landing .us-autocomplete-pro-menu {
    max-height:10em !important;
}

#frmLookupModal .us-autocomplete-pro-menu {
    max-height:10em !important;
}