/*--------------------------------------------------------------
	Universal CSS
-------------------------------------------------------------- */
/* Set Global Font */
html * {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

body {}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
}

hr {}

a {
    color: #3a7cb4;
    transition: .5s ease;
}

a:hover {
    color: #2b5e8a;
    text-decoration: none;
    cursor: pointer !important;
}

span {}

strong,
b {
    font-weight: bold;
}

em {
    font-style: italic;
}

/* -- Spacers -- */
.space10 {
    height: 10px;
}

.space15 {
    height: 15px;
}

.space20 {
    height: 20px;
}

.space30 {
    height: 30px;
}

.space35 {
    height: 35px;
}

.space40 {
    height: 40px;
}

.space50 {
    height: 50px;
}

.space60 {
    height: 60px;
}

.no-pad {
    padding: 0 !important;
}

.pad-5 {
    padding: 0 5px !important;
}

.pad-10 {
    padding: 0 10px !important;
}

.pad-5-right {
    padding: 0 5px 0 0 !important;
}

.v-center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.v-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v-col-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bold {
    font-weight: bold !important;
}

.white,
.white p,
.white li {
    color: white !important;
}

.blue,
.blue p {
    color: rgba(42, 96, 164, 1) !important
}

.blue-button,
.blue-button:focus {
    background: rgba(42, 96, 164, 1);
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(42, 96, 164, 1);
    transition: .5s ease;
    text-decoration: none;
    min-width: 135px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blue-button:hover {
    color: white !important;
    background: rgba(42, 96, 164, .6);
}



.light-blue-button,
.light-blue-button:focus {
    background: #7baacf;
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, .8);
    transition: .5s ease;
    text-decoration: none;
    min-width: 235px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.light-blue-button:hover {
    color: white !important;
    background: rgba(42, 96, 164, 1);
}

.light-blue-button-thin,
.light-blue-button-thin:focus {
    background: #7baacf;
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 5px 20px;
    border: 1px solid rgba(255, 255, 255, .8);
    transition: .5s ease;
    text-decoration: none;
    min-width: 235px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.light-blue-button-thin:hover {
    color: white !important;
    background: rgba(42, 96, 164, 1);
}

.light-blue-button-thin span.badge {
    font-weight: 500 !important;
    padding: 3px 3px 2px 4px !important;
    transform: translateY(-1px);
}


.clear-button,
.clear-button:focus {
    background: transparent;
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid transparent;
    transition: .5s ease;
    text-decoration: none;
    min-width: 135px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.clear-button:hover {
    color: white !important;
    background: rgba(42, 96, 164, 1);
}

.blue-full-button,
.blue-full-button:focus {
    background: rgba(42, 96, 164, 1);
    color: white;
    display: block;
    width: 100%;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(42, 96, 164, 1);
    transition: .5s ease;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blue-full-button:hover {
    color: white !important;
    background: rgba(42, 96, 164, .6);
}


.blue-button-slim,
.blue-button-slim:focus {
    background: rgba(42, 96, 164, 1);
    color: white;
    display: inline-block;
    min-width: 135px;
    font-weight: 500;
    padding: 4px 20px;
    border: 1px solid rgba(42, 96, 164, 1);
    transition: .5s ease;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 5px;
}

.blue-button-slim:hover {
    color: white !important;
    background: rgba(42, 96, 164, .6);
}

.clear-full-button,
.clear-full-button:focus {
    background: transparent;
    color: white;
    display: block;
    width: 100%;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid transparent;
    transition: .5s ease;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.clear-full-button:hover {
    color: white !important;
    background: rgba(42, 96, 164, 1);
}

.two-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 40px;
    column-gap: 40px;
    -moz-column-gap: 40px;
}

.two-columns li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}


.nav-tabs {
    display: flex;
}

.nav-tabs li {
    display: flex;
    flex: 1;
    align-self: flex-end;
}

.nav-tabs li a {
    flex: 1;
}

sup {
    font-size: smaller;
}

label.required:after {
    content: ' *';
    color: #199ad9;
}

.no-bottom-margin {
    margin-bottom: 0;
}

.site {
    width: 100%;
}

.fas.fa-phone {
    transform: rotate(90deg)
}

/*--------------------------------------------------------------
	Header CSS
-------------------------------------------------------------- */
#top-head {
    background: #242326;
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}


#header {
    padding: 20px 0 15px 0;
    z-index: 100;
    background: transparent;
    border: 0;
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

#logo {
    display: inline-block;
    border: 0;
}

.logo {
    display: inline-block;
    width: 170px;
    max-width: 100%;
    height: auto;
    border: 0;
    pointer-events: none;
    margin-bottom: 15px;
}


.justify-center {
    display: flex;
    justify-content: center;
}


/*--------------------------------------------------------------
	Navigation CSS
-------------------------------------------------------------- */
#site-navigation {
    position: relative;
    padding: 0;
}

.navbar-brand {
    vertical-align: bottom;
    line-height: 0;
}

#main_menu>li>.mega-menu {
    display: none;
}

#main_menu {
    position: relative;
    line-height: 30px;
}

/*------- Top Level Menu Items -------*/
#main_menu>li>a {
    transition: .5s ease;
    font-size: 12px;
    color: white;
    padding: 15px;
    line-height: 20px;
    display: block;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}

#main_menu>li>a:before {}

#main_menu>li>a:hover,
#main_menu>li>a:focus,
#main_menu>li.current-menu-item>a,
#main_menu>li.current-menu-parent>a,
#main_menu>li.current-menu-ancestor>a,
#main_menu>li.current-menu-item:hover>a,
#main_menu>li.current-menu-parent:hover>a,
#main_menu>li.current-menu-ancestor:hover>a {
    color: #2a60a4;
}



.navbar {
    background: none;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
}

.navbar-collapse {
    padding: 0 !important;
}

.navbar a {
    background: none;
    font-weight: normal;
}

.sub-menu>li:hover>.sub-menu.level-1 {
    display: block;
}

/*--------------------------------------------------------------
	Sub-Header CSS
-------------------------------------------------------------- */
#home-subhead {
    position: relative;
    z-index: 1;
}

#home-slider .carousel-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    background-position: center top !important;
}

#page-subhead {
    position: relative;
    z-index: 1;
}

#page-subhead:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .5) 20%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .6));
}

#home-slider .carousel-item {
    max-height: calc(100vh - 30px);
}

#home-map {
    position: relative;
    padding-top: 80px;
    margin-bottom: 50px;
    margin-top: 40px;
}

#home-map:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: url(/assets/images/our-customers-banner.jpeg)no-repeat center center;
    background-size: cover;
    filter: grayscale(100%);
}

#home-map .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: rgba(0, 0, 0, .5);
}



/*--------------------------------------------------------------
	Main Content CSS
-------------------------------------------------------------- */

#page-content {
    padding: 80px 0;
    position: relative;
    background: url(/assets/images/content-back.png);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: left top;
}


.page-content p {
    font-size: 16px;
    color: rgb(0, 0, 5);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-content p strong {}

.page-content p:last-child {
    margin-bottom: 0;
}

.page-content p em {
    font-weight: 500;
}

.page-content p strong {
    font-weight: bold;
}

.page-content strong a {
    font-weight: bold;
}

.page-content a {
    font-weight: 600;
}

.page-content a:hover {
    color: #2b5e8a;
    cursor: pointer;
}

.page-content p~ul {
    margin-top: -5px;
}

.page-content ul li>ul {
    margin-top: 5px !important;
    margin-bottom: 10px !important;
    margin-left: 5px !important;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin-bottom: 20px;
    color: rgb(88, 89, 91);
    font-weight: 500;
    line-height: 1.5;
}

.page-content blockquote {
    padding: 20px 15px 20px 30px;
    border-left: 2px solid rgba(42, 96, 164, 1);
    margin-left: 20px;
}

.page-content img:not(.page-icon) {
    max-width: 100%;
    height: auto;

}

.page-content img:not(.page-icon).alignnone {
    margin: 15px 0px;
}

.page-content img:not(.page-icon).aligncenter,
div.aligncenter {
    display: inline-block;
    margin: 15px auto 15px auto;
}

.page-content img:not(.page-icon).alignright {
    float: right;
    margin: 0 0px 15px 20px;
}

.page-content img:not(.page-icon).alignleft {
    float: left;
    margin: 0 20px 15px 0;
}

.page-content img:not(.page-icon).aligncenter {
    display: block;
    margin: 15px auto 15px auto;
}


.page-content ul:not(.gfield_radio):not(.list-inline) {
    margin-left: 0px;
    margin-bottom: 15px;
    margin-top: 5px;
}

.page-content ol:not(.gfield_radio):not(.list-inline) {
    margin-left: 30px;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-content ul li:not(.gfield) {
    list-style-type: none;
    font-size: 16px;
    color: rgb(0, 0, 5);
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 5px;
    text-indent: -16px;
}

.page-content ol li:not(.gfield) {
    list-style-type: decimal;
    font-size: 16px;
    color: rgb(0, 0, 5);
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 5px;
}

.page-content ul li:not(.gfield):before {
    content: "•";
    color: rgb(0, 0, 5);
    font-weight: bold;
    padding-right: 10px;
}

ul.white {
    margin-left: 20px !important;
}

.white li:not(.gfield):before {
    content: "•";
    color: white !important;
    font-weight: bold;
    padding-right: 10px;
}


#callout .col-12.col-md,
#callout .col-12.col-md-5,
#callout .col-12.col-md-7 {
    min-height: 400px;
}

.callout-col-1 {
    background: url(/assets/images/callback1.jpg) no-repeat center center;
    background-size: cover;
}

.callout-col-1:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
}

.callout-col-2 {
    background: url(/assets/images/callback2.jpg) no-repeat center right;
    background-size: cover;
}

.icon-box {
    display: inline-block;
    width: 48%;
    margin: 15px 0;
}

.icon-box img {
    height: 70px !important;
    width: auto !important;
    display: inline-block !important;
}

.icon-box .icon-box-name {
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-top: 10px;
}


#signup {
    background: #3a7cb4;
    padding: 10px 0;
    margin-top: 30px;
}

#signup .signup-text {
    margin-bottom: 0;
    color: white;
    font-weight: 500;
    font-size: 20px;
}

#signup .signup-text a {
    color: #000005;
    text-decoration: underline;
    font-weight: 500;
}

#testimonials {
    background: #ebebeb;
    padding: 40px 0;
    margin-top: 40px;
}

#testimonials .carousel-inner {
    min-height: 150px;
    width: 70% !important;
    margin: auto;
    position: relative;
}

#testimonials .carousel-inner .carousel-item {
    min-height: 175px;
}

.testimonial-title {
    font-weight: 500 !important;
    color: rgb(56, 125, 183) !important;
    line-height: 1.167 !important;
    margin-bottom: 20px !important;
    padding-left: 15px;
    padding-right: 15px;
}


.testimonial-text,
.testimonial-auth {
    display: block;
    flex-basis: 100%;

}

.testimonial-text {
    font-weight: 500;
    line-height: 1.8;
}

.testimonial-auth {
    font-weight: bold !important;
    color: rgb(56, 125, 183) !important;
    margin-top: 20px !important;
}

.carousel-control-next,
.carousel-control-prev {
    background: rgba(42, 96, 164, 1);
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}


#contact-form {
    padding: 40px 15px;
    position: relative;
}

#contact-form:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, .8);
}



#contact-form .form-group label {
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

#contact-form .form-group input,
#contact-form .form-group textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .8);
    color: rgba(255, 255, 255, .8);
}

#contact-form select option {
    background: rgba(0, 0, 0, .8);
    color: white;
}

.job-row {
    margin-bottom: 35px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.job-title-row {
    background: #efefef;
    padding: 7px 10px;
    font-size: 15px;
    font-weight: 500;
}

.job-title-row .badge {
    float: right;
    text-transform: capitalize;
}

.job-info {
    padding: 15px 15px 15px 15px;
    border-bottom: 2px solid #efefef;
}

.job-info p {
    font-size: 14px;
    font-weight: 400;
}

#regionalManagerSection {
    padding: 50px 0 0px 0;
}

#regionBar {
    background: #d3d3d4;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

#regionBar .region {}

#regionBar .region .green-number {
    display: inline-block;
    margin-right: 5px;
    background: #b8b7b9;
    line-height: 30px;
    width: 30px;
    color: white;
    font-weight: bold;
    text-align: center;
}

#regionBar .region .region-name {
    display: inline-block;
    margin-right: 25px;
    font-weight: bold;
    line-height: 30px;
    text-transform: uppercase;
}

.manager-block {
    display: flex;
    margin: 15px 0 35px 0;
}

.manager-block .number {
    margin-right: 10px;
}

.manager-block .number .green-number {
    display: inline-block;
    margin-right: 5px;
    background: #b8b7b9;
    line-height: 45px;
    width: 45px;
    border-radius: 25px;
    font-size: 20px;
    color: white;
    font-weight: bold;
    text-align: center;
}

.manager-block .manager-info .manager-title {
    display: block;
    font-size: 16px;
    color: rgb(54, 104, 167);
    text-transform: uppercase;
    font-weight: bold;
}

.manager-block .manager-info .manager-text {
    display: block;
    color: #6d6e71;
    font-weight: 500;
    line-height: 1.6;
}

.manager-block .manager-info .manager-text a {
    color: #6d6e71;
    font-weight: 500;
    line-height: 1.6;
}

.manager-block .manager-info .manager-text a:hover {
    color: rgb(54, 104, 167);
}

#contact-find-jobs {
    margin-top: 20px;
    background: #5a95c3;
    padding: 10px 15px;
}

#zipFilter {
    background: #5a95c3;
    padding: 0;
    margin-bottom: 50px;
}

#zip-filter-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

#zip-filter-form>div {
    margin: 5px;
}

#zip-filter-form label {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    display: inline-block;
    font-weight: 500;
    margin-right: 10px;
}

#zip-filter-form input {
    background: rgba(255, 255, 255, .2);
    color: white;
    margin-right: 15px;
    border: 1px solid rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 15px;
    font-weight: bold;
    width: 150px;
}

#zip-filter-form select {
    background: rgba(255, 255, 255, .2);
    color: white;
    margin-right: 15px;
    border: 1px solid rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 15px;
    font-weight: bold;
    width: 150px;
}

#zip-filter-form select option {
    background: #7baacf;
    color: white;
}


#zip-filter-form-button:disabled {
    background: rgba(42, 96, 164, .3);
    pointer-events: none;
}

.city-title {
    border-bottom: 2px solid #5a95c3;
}


.light-blue-button-thin,
.light-blue-button-thin:focus {
    background: #7baacf;
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 5px 20px;
    border: 1px solid rgba(255, 255, 255, .8);
    transition: .5s ease;
    text-decoration: none;
    min-width: 235px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.light-blue-button-thin:hover {
    color: white !important;
    background: rgba(42, 96, 164, 1);
}

/*-------------------------------------------------------------
	Blog CSS
-------------------------------------------------------------- */
.blog-row {
    margin-bottom: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.blog-row .col1 {
    padding: 0;
}

.blog-row .col2 {
    padding: 15px 20px;
}

/*--------------------------------------------------------------
	Footer CSS
-------------------------------------------------------------- */
#footer {
    background: #000005;
    padding: 30px 0;
    margin-top: 20px;
}

#sub-footer {
    background: #4d4d4d;
    padding: 15px 0;
}

#footer .footer-title {
    font-size: 18px;
    color: #5a95c3;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-logo {
    width: 150px;
    height: auto;
    opacity: 1;
    margin-bottom: 20px;
}

.footer-text hr {
    margin: 10px auto !important;
    border-color: #5a95c3;
}

.footer-text,
.footer-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 15px;
}

.footer-text p strong {
    color: rgba(255, 255, 255, 1);
}

.footer-text a {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    font-weight: 400;
}

.footer-text a:hover {
    color: #5a95c3;
}

.news-block p {
    font-size: 11px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 0;
}

.news-block p a {
    font-size: 11px !important;
    color: #ffa737 !important;
    line-height: 1.5;
    font-weight: 400;
}

.copyright,
.siteby {
    font-size: 12px;
    line-height: 1.7;
    color: white;
    font-weight: 400;
    margin-bottom: 0 !important;
}

.siteby a {
    color: #6c98ac;
    font-weight: bold;
}

.siteby a:hover {
    color: #ffa737;
}


#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 10px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgba(42, 96, 164, .5);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    transition: .5s ease;
}

#backToTopBtn:hover {
    background-color: rgba(42, 96, 164, 1);
}

/*--------------------------------------------------------------
 		Forms CSS
--------------------------------------------------------------*/

.form-group.required label:after {
    content: "  *";
    color: red;
    font-weight: 400;
}

#contact-form {
    padding: 40px 15px;
    position: relative;
}

#contact-form:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, .8);
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
}

.form-group input,
.form-group input:focus,
.form-group textarea,
.form-group textarea:focus,
.form-group select,
.form-group select:focus {
    font-size: 13px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .8);
    color: rgba(255, 255, 255, .8);
}



.form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .8);
}

#home-head-form-button:disabled {
    background: rgba(42, 96, 164, .3);
    pointer-events: none;
}

#homeHeadForm select option {
    background: rgba(0, 0, 0, .8);
    color: white;
}

/*--------------------------------------------------------------
	LOGIN PAGES OVERRIDE
-------------------------------------------------------------- */


/*--------------------------------------------------------------
	Media Queries Override CSS
-------------------------------------------------------------- */

/* Small devices min 576px */
@media (min-width: 576px) {}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    #regionBar {
        background: #d3d3d4;
        padding: 0 15px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 20px 0;
        flex-wrap: wrap;
    }

    #regionBar .region {
        flex-basis: 50%;
        padding: 5px 0;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {}

/* Extra Small And Small devices */
@media (max-width: 767.98px) {
    .container {
        width: 100%;
        max-width: 100%;
    }

    .mobile-show {
        display: block !important;
    }

    .mobile-hide {
        display: none !important;
    }

    .xs-nopad {
        padding: 0 !important;
    }

    .xs-block {
        display: block !important;
    }

    .xs-center {
        text-align: center !important;
    }

    .xs-left {
        text-align: left !important;
    }

    .xs-pad-15 {
        padding: 0 15px !important;
    }

    #mobile-nav {
        padding: 10px 15px;
    }

    .logo {
        margin: 0;
        max-height: 70px !important;
        width: auto !important;
    }

    .list-inline {
        margin: 0;
    }

    .page-content p,
    .page-content h1,
    .page-content h2,
    .page-content h3,
    .page-content h5,
    .page-content ul:not(.list-inline),
    .page-content ol:not(.list-inline) {}

    .page-content img:not(.page-icon).alignnone,
    .page-content img:not(.page-icon).aligncenter,
    .page-content img:not(.page-icon).alignright,
    .page-content img:not(.page-icon).alignleft,
    .page-content img:not(.page-icon).aligncenter {
        display: block;
        margin: 15px auto 15px auto;
        float: none;
    }



    #page-subhead .page-subhead-text {
        position: absolute;
        padding: 20px 15px;
        right: 0;
        left: 0;
        bottom: 0;
        text-align: center;
    }

    #page-subhead .page-subhead-text .page-title {
        display: block;
        font-weight: 500;
        font-size: 32px;
        color: white;
        margin: 0 !important;
        line-height: 1.2;
    }

    #page-subhead .page-subhead-text .page-subtext {
        display: block;
        font-weight: 400;
        font-size: 16px;
        color: white;
        margin: 5px 0;
    }

    #mobile-header {
        background: #000005;
    }

    #mobile-nav {
        background: #242326;
    }

    #home-head-form-holder {
        z-index: 1000;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    #home-head-form {
        z-index: 1000;
        margin: auto;
        padding: 20px 25px 0px 25px;
        width: 90%;
        background: rgba(0, 0, 0, .6);
    }


    #testimonials .carousel-inner {
        min-height: 330px;
        width: 70% !important;
        margin: auto;
        position: relative;
    }

    #testimonials .carousel-inner .carousel-item {
        min-height: 330px;
    }



    body.open-menu #page-subhead {
        margin-top: 0 !important;
    }

    body.open-menu #home-subhead {
        margin-top: 0 !important;
    }

    /*------- Mobile Menu -------*/
    #mobile_menu {
        padding: 20px 0;
    }

    #mobile_menu li {
        position: relative;
        text-align: left;
        z-index: 1;
    }

    #mobile_menu>li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    #mobile_menu li>a {
        transition: .5s ease all;
        color: rgba(0, 0, 0, .6);
        font-weight: 400;
        line-height: 1em;
        letter-spacing: 2px;
        display: block;
        position: relative;
    }

    #mobile_menu>li>a {
        font-weight: 14px !important;
        padding: 13px 15px !important;
    }

    #mobile_menu>li>.mega-menu {}

    #mobile_menu>li>.mega-menu>.sub-menu>li>a {
        font-size: 13px;
        padding: 13px 15px 13px 25px !important;
    }

    #mobile_menu>li>.mega-menu>.sub-menu>li>.mega-menu {}

    #mobile_menu>li>.mega-menu>.sub-menu>li>.mega-menu>.sub-menu>li>a {
        font-size: 13px;
        padding: 13px 15px 13px 35px !important;
    }

    #mobile_menu>li>.mega-menu>.sub-menu>li>.mega-menu>.sub-menu>li>a:before {
        content: '-';
        display: inline-block;
        margin-right: 10px;
    }

    #mobile_menu>li>.mega-menu>.sub-menu>li>.mega-menu>.sub-menu>li>.mega-menu>.sub-menu>li>a {
        font-size: 12px;
        padding: 13px 15px 13px 45px !important;
    }



    #mobile_menu>li.current-menu-item>a,
    #mobile_menu>li.current-menu-parent>a,
    #mobile_menu>li.current-menu-ancestor>a,
    #mobile_menu>li>.mega-menu>.sub-menu>li.current-menu-item>a,
    #mobile_menu>li>.mega-menu>.sub-menu>li.current-menu-parent>a,
    #mobile_menu>li>.mega-menu>.sub-menu>li.current-menu-ancestor>a,
    #mobile_menu>li>.mega-menu>.sub-menu>li>.mega-menu>.sub-menu>li.current-menu-item>a,
    #mobile_menu>li>.mega-menu>.sub-menu>li>.mega-menu>.sub-menu>li.current-menu-item>a:before {
        color: #96281b;
    }

    #mobile_menu li .mega-menu li .sub-menu {
        left: 0;
        position: relative;
        width: 100%;
    }

    #mobile_menu {
        text-align: left;
    }

    #mobile_menu li {
        width: 100%;
    }

    #mobile_menu>li:not(.open)>.mega-menu>.sub-menu {
        position: relative;
        width: 100%;
        height: 0;
        transition: .5s ease height;
        overflow: hidden;
    }

    #mobile_menu>li.open>.mega-menu>.sub-menu {
        display: block;
        width: 100%;
        height: auto;
    }


    .navbar-toggle.open {
        position: relative;
        float: right !important;
        padding: 7px 12px;
        margin: 5px 5px 5px 0;
        background-color: transparent;
        background-image: none;
        border: 1px solid rgba(255, 255, 255, .6);
        border-radius: 4px;
        color: rgba(255, 255, 255, .6) !important;
        display: inline-block;
    }

    #site-navigation.mobile {
        position: fixed !important;
        width: 94%;
        right: -100%;
        z-index: 99999;
        top: 0;
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
        margin-top: 0px;
        background: #eee;
        padding-bottom: 50px;
        margin: 0 3%;
        padding: 0 !important;
    }

    #site-navigation.mobile .collapse {
        display: block !important;
        z-index: 200;
        position: relative;
    }

    .site {
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
        position: relative;
        right: 0;
    }

    #site-navigation.mobile .arrow {
        padding: 0;
        position: absolute;
        right: 10px;
        top: 0px;
        z-index: 200;
        display: inline-block;
        height: 40px;
        width: 40px;
        text-align: center;
        transition: .5s ease;
        border: none;
        background: 0;
    }

    #site-navigation.mobile #mobile_menu>li:not(.open)>.arrow:after {
        content: "\f078";
        display: inline-block;
        color: #96281b;
        font-family: FontAwesome;
        font-size: 20px;
        padding: 0;
    }

    #site-navigation.mobile #mobile_menu>li.open>.arrow:after {
        content: "\f068";
        display: inline-block;
        color: #96281b;
        font-family: FontAwesome;
        font-size: 20px;
        padding: 0;
    }

    .open-menu #site-navigation.mobile {
        right: 0px;
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .open-menu .site {
        right: 100%;
    }


    .open-menu .site .mobile-overlay {
        background: rgb(19, 40, 76, .9);
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 99999;
    }
}

@media (min-width: 768px) {
    .mobile-show {
        display: none !important;
    }

    .mobile-hide {
        display: block !important;
    }

    .footcol2 {
        border-left: 1px solid #5a95c3;
    }




    #page-subhead .page-subhead-text {
        position: absolute;
        padding: 20px 15px;
        right: 0;
        left: 0;
        bottom: 0;
        text-align: center;
    }

    #page-subhead .page-subhead-text .page-title {
        display: block;
        font-weight: 500;
        font-size: 45px;
        color: white;
        margin: 0 !important;
    }

    #page-subhead .page-subhead-text .page-subtext {
        display: block;
        font-weight: 400;
        font-size: 20px;
        color: white;
        margin: 5px 0;
    }


}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        width: 98%;
        max-width: 100%;
    }

    .sm-center {
        text-align: center !important;
    }

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

    .navbar-expand-md {
        text-align: center;
        justify-content: center !important;
        align-items: center !important;
    }

    #main_menu {
        width: 100vw;
        text-align: center;
        justify-content: center !important;
        align-items: center !important;
    }

    #main_menu>li.mega1:hover>.mega-menu {
        width: 100vw;
    }

    #site-navigation {
        justify-content: center !important;
    }

    .logo {
        margin-bottom: 0;
    }

    #main_menu>li:last-child:hover>.mega-menu {
        display: block;
        right: auto;
        left: auto;
        position: absolute;
        text-align: left;
    }


    #home-head-form-holder {
        z-index: 1000;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    #home-head-form {
        z-index: 1000;
        margin: auto;
        padding: 20px 25px 0px 25px;
        width: 80%;
        background: rgba(0, 0, 0, .6);
    }

}

@media (max-width:991.98px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #main_menu>li.mega1:hover>.mega-menu {
        width: 95vw;
        max-width: 1100px;
    }

    #home-head-form-holder {
        z-index: 1000;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    #home-head-form {
        z-index: 1000;
        padding: 20px 25px 0px 25px;
        width: 50%;
        background: rgba(0, 0, 0, .6);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        width: 98% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 1199.98px) {}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}