/* 
	To Use - element: var(--primary); 
*/
@import url(jquery-1.11.3-ui.css); 
@import url(swipe.css); 
@import url(animated.css); 
@import url(fontawesome-all.css); 
@import url(bxslider.css); 
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700|Oswald:300,400,500,600,700');
:root {
    --success: #54B247; 
    --info: #72A7CF; 
    --warning: #F38E25; 
    --danger: #DD280A; 
    --dark-grey: #4D4D4D; 
    --blue: #0D2F4F; 
    --yellow: #0D2F4F; 
    --teal: #015F73; 
}

/*
	Table Of Contents
	0. 		Reset
	1		Generic Tags
	2.		Fonts
	2.1 	REM Responsive
	2.2		REM Sizing
	3		Structure
	3.1		Content
	3.1.1	Editable Content
	3.1.2	Buttons
	3.2		Header
	3.2.1	Mobile Header
	3.3		Footer
	3.3.1	Signature
	3.4		Structure Responsive
	3.5		Modules
	4. 		External Styles
*/
/* 0. Reset
**********/
/* `XHTML, HTML4, HTML5 Reset
----------------------------------------------------------------------------------------------------*/
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video, xmp {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 100%;
}

html, body {
    height: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    /*
  Override the default (display: inline) for
  browsers that do not recognize HTML5 tags.

  IE8 (and lower) requires a shiv:
  http://ejohn.org/blog/html5-shiv
*/
    display: block;
}

b, strong {
    /*
  Makes browsers agree.
  IE + Opera = font-weight: bold.
  Gecko + WebKit = font-weight: bolder.
*/
    font-weight: bold;
}

img {
    color: transparent;
    font-size: 0;
    vertical-align: middle;
    /*
  For IE.
  http://css-tricks.com/ie-fix-bicubic-scaling-for-images
*/
    -ms-interpolation-mode: bicubic;
}

li {
    /*
  For IE6 + IE7.
*/
    display: list-item;
}

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

th, td, caption {
    font-weight: normal;
    vertical-align: top;
    text-align: left;
}

q {
    quotes: none;
}

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

sub, sup, small {
    font-size: 75%;
}

sub, sup {
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

svg {
    /*
  For IE9.
*/
    overflow: hidden;
}

/* 1. Generic Tags 
**************/
html {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
    background: var(--blue);
    color: #FFF;
}

::selection {
    background: var(--blue);
    color: #FFF;
}

/* Try To Remove Background - Footer Fix */
body {
    background: #B8ACA1;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    text-shadow: none;
    -webkit-text-size-adjust: none;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    color: #747474;
    color-adjust: economy;
}

hr {
    clear: both;
    border-top: 1px solid #DDD;
    height: 1px;
    margin: 20px 0 20px 0;
}
a {
    color: #0D2F4F;
}
a:hover {
    color: #0D2F4F;
}

.clear {
    clear: both;
}

.swipebox_full {
    text-align: center;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
}

/* FAQ Toggles 
*************/
.faq-block {
    margin: 20px 0;
}

/* FAQ Content */
h5.toggle_faq {
    text-transform: capitalize;
}

.faq-block div.toggler {
    padding-left: 0;
}

/* Icon Main */
span.faq-icon, h5.toggle_faq {
    transition: 0.3s ease;
    transition-delay: 0.4s;
    cursor: pointer;
}

span.faq-icon {
    background: none;
    width: auto;
    margin-right: 10px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 5px;
}

h5.toggle_faq {
    color: #545454;
}

/* Standard Lines */
i.faq-icon {
    display: block;
    height: 2px;
    width: 15px;
    background-color: #0D2F4F;
    position: absolute;
}

/* Plus Icon */
span.faq-icon .one {
    transform: rotate(90deg);
    transition: 0.4s ease-in-out;
}

span.faq-icon .two {
    transform: rotate(180deg);
    transition: 0.4s ease-in-out;
}

/* Close Icon */
h5.toggle_faq.active .one {
    transform: rotate(-45deg);
    transition: 0.4s ease-in-out;
}

h5.toggle_faq.active .two {
    transform: rotate(45deg);
    transition: 0.4s ease-in-out;
}

/* Icon Main Active */
span.faq-icon, h5.toggle_faq {
    transition: 0.3s ease;
    transition-delay: 0.4s;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    top: 5px;
}

#page h5.toggle_faq.active {
    color: #0D2F4F;
}

@media (max-width: 767px) {
    span.faq-icon {
        width: auto;
        height: 20px;
    }

    i.faq-icon {
        width: 10px;
        height: 2px;
    }
}

.menu_section_nav {
    background-color: #0D2F4F;
    cursor: pointer;
}

.menu_section_nav span {
    display: block;
    padding: 10px;
}

.menu_section_nav span a {
    color: #fff;
}

.summary-content {
    background-color: #FFF;
    padding: 10px;
}

/* 2. Fonts 
*************/
/* --- 2.1 REM Responsive --- */
html {
    font-size: 50px;
}

body {
    margin: 0;
    line-height: 1.5;
}

body, p, ol li, ul li, pre, .form_holder select {
}

@media (max-width: 1200px) {
    html {
        font-size: 45px;
    }
}

@media (max-width: 960px) {
    html {
        font-size: 40px;
    }

    body, p, ol li, ul li, pre, .form_holder select {
        font-size: 17px;
        line-height: 28px;
        font-weight: 300;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 35px;
    }

    body, p, ol li, ul li, pre, .form_holder select {
        font-size: 16px;
        line-height: 26px;
        font-weight: 300;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 30px;
    }

    body, p, ol li, ul li, pre, .form_holder select {
        font-size: 15px;
        line-height: 22px;
        font-weight: 300;
    }
}

/* --- 2.2 REM Sizing --- */
h1, .h1 {
    font-size: 50px;
    font-size: 1rem;
    line-height: 55px;
    line-height: 1.1rem;
  color: #3d3d3d;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
    margin-bottom: 5px;
}

h2, .h2 {
    font-size: 45px;
    font-size: 0.9rem;
    line-height: 50px;
    line-height: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    color: #545454;
    margin-bottom: 5px;
    font-weight: 400;
}

h3, 
.h3,
.form_response .inner_header::after {
    font-size: 40px;
    font-size: 0.8rem;
    line-height: 45px;
    line-height: 0.9rem;
  color: #3d3d3d;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
    margin-bottom: 5px;
}

h4, .h4 {
    font-size: 35px;
    font-size: 0.7rem;
    line-height: 40px;
    line-height: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    color: #545454;
    margin-bottom: 5px;
    font-weight: 400;
}

h5, 
.h5 {
  color: #3d3d3d;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
}
.recent-news h2 {
  color: #3d3d3d;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 28px;
  line-height: 28px;
    padding-left: 20px;
    text-align: center;
}

.contact-home h2 {
  color: #3d3d3d;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 28px;
  line-height: 28px;
    padding-left: 20px;
}
.recent-news h2 span {
  color: #0D2F4F;
}

h6, .h6 {
    font-size: 28px;
    font-size: 0.56rem;
    line-height: 35px;
    line-height: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    color: #545454;
    margin-bottom: 5px;
    font-weight: 400;
    margin: 0.2rem 0 !important;
}

/* Navigation */
#menu .mm-list a {
    color: #fff;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 51px 20px;
    display: block;
    font-size: 14px;
    line-height: 14px;
    padding: 15px 20px 13px;
    width: 100%;
    margin: 0px 0px 0px 0px;
}
.jqueryslidemenu ul li a {
    color: #fff;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 51px 20px;
    display: inline-block;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}

p {
    margin-top: 0.32rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
}

.home-intro-content h1 {
    font-size:0.5rem;
		line-height:0.6rem;
}

/* 3. Structure
***********/
/* --- 3.1 Content --- */
.content {
    margin: 0 auto;
    max-width: 940px;
    padding: 0;
}

.content_container {
    width: 100%;
    padding: 40px 20px;
    background: #FFFFFF;
    overflow: hidden;
}

/* --- 3.1.1 Editable Content --- */
.editable_content ul {
    list-style: disc none;
    margin: 0px 0 20px 20px;

}

.editable_content ul li {
    padding: 5px 0 0 3px;
    margin: 0;
}

.editable_content ol {
    list-style: decimal outside none;
    margin: 0px 0 20px 20px;
}

.editable_content ol li {
    padding: 5px 0 0 3px;
    margin: 0;
}

.editable_content img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.editable_content table {
    margin: 15px 0 5px 0;
    background: #FFFFFF;
    text-align: center;
    width: 100%;
    display: table;
    overflow: scroll;
}

.editable_content table tr th, .editable_content table thead tr td {
    font-weight: bold;
    border: 1px solid #0D2F4F;
    color: #FFFFFF;
    background: #0D2F4F;
    padding: 8px 8px 8px 8px;
}
@media screen and (max-width: 960px){
	.editable_content table tr td{
		display: block;
	}
}
.editable_content table tr td {
    border: 1px solid #FFF;
    padding: 8px 8px 8px 8px;
    text-align: center;
}
.editable_content table tr td ul{
    list-style: disc inside none;
    margin-left: 0px;
}
.editable_content table tr td ul li{
	padding-left: 0px;
}

.editable_content iframe[width="500"] {
    width: 100% !important;
    height: 220px;
}

/* --- 3.2 Header --- */
.full_header {
    position: absolute;
    top: 0;
    display: none;
    width: 100%;
    z-index: 999;
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
}

.header_spacer {
    width: 100%;
    height: 47px;
}

.inner_header {
  width: 100%;
  height: 120px;
  background: url(../images/layout/inner_header.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* --- 3.2.1 Mobile Header --- */
.mobile_header {
    background: #fff;
    color: #FFFFFF;
    font-weight: 700;
    padding: 7px 0 8px 0;
    text-align: left;
    width: 100%;
    z-index: 999;
    font-size: 25px;
    background-color: #0078C1;
}

.mobile_header .logo_area {
    padding: 0px 50px 0 50px;
    text-align: center;
}

.mobile_header .phone {
    position: absolute;
    right: 10px;
    top: 7px;
}

.mobile_header .cart_link {
    right: 32px;
    position: absolute;
    top: 6px;
}

.mobile_header a {
    color: #fff;
}

.logo_area a {
    display: inline-block;
    position: inherit;
}

.mobile_header .logo_area img {
    height: 40px;
    width: auto;
}

.mobile_header {
    display: inherit;
    position: sticky;
    position: -webkit-sticky;
    width: 100%;
    z-index: 999;
}

.mobile_photo_video {
    display: inherit;
}

.full_photo_video {
    display: none;
}

.mobile_header a#menu_button {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* --- 3.3 Footer --- */
.footer {
    background: #B8ACA1;
    color: #FFFFFF;
    border-top: 1px solid #B8ACA1;
    margin: 0;
    padding: 30px 0 30px 0;
    display: none;
}

/* --- 3.3.1 Signature --- */
#signature {
    background: #B8ACA1;
    margin: 0;
    padding: 10px 10px 54px 10px;
}

#signature .signature_content {
    margin: 0 auto;
    max-width: 960px;
    text-align: center;
    border-top: 1px solid #CABEB3;
    padding-top: 11px;
}

#signature .signature_content p {
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    margin-top: 0;
    padding: 0px 40px;
}
#signature .signature_content a {
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    margin-top: 0;
    padding: 0px 0px;
}

.full_register {
    width: 35%;
    float: right;
    border-left: 1px solid #dedede;
    display: none;
    padding-left: 10px;
}

/* --- 3.4 Structure Responsive --- */
@media (min-width: 960px) {
    .footer {
        display: inherit;
    }

    #signature {
        font-size: 12px;
    }

    .mobile_photo_video {
        display: none;
    }

    .full_photo_video {
        display: inherit;
    }

    .content_container {
        padding: 60px 50px;
    }
}

@media (min-width: 1125px) {
		.mobile_header {
        display: none;
    }

    .full_header {
        display: inherit;
    }

    .header_spacer {
        height: 82px;
    }

    .inner_header {
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

/* ---- 3.5 FAQ ------- */
.faq-block {
    margin: 20px 0;
}

/* FAQ Content */
h5.toggle_faq {
    text-transform: capitalize;
}

.faq-block div.toggler {
    padding-left: 0;
}

/* Icon Main */
span.faq-icon, h5.toggle_faq {
    transition: 0.3s ease;
    transition-delay: 0.4s;
    cursor: pointer;
}

span.faq-icon {
    background: none;
    width: 20px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0px 5px 0px 0px;
}

h5.toggle_faq {
    color: #545454;
}

/* Standard Lines */
i.faq-icon {
    display: block;
    height: 2px;
    width: 15px;
    background-color: #215D86;
    position: absolute;
}

/* Plus Icon */
span.faq-icon .one {
    transform: rotate(90deg);
    transition: 0.4s ease-in-out;
}

span.faq-icon .two {
    transform: rotate(180deg);
    transition: 0.4s ease-in-out;
}

/* Close Icon */
h5.toggle_faq.active .one {
    transform: rotate(-45deg);
    transition: 0.4s ease-in-out;
}

h5.toggle_faq.active .two {
    transform: rotate(45deg);
    transition: 0.4s ease-in-out;
}

/* Icon Main Active */
span.faq-icon, h5.toggle_faq {
    transition: 0.3s ease;
    transition-delay: 0.4s;
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 20px;
    line-height: 20px;
    margin: 0px 0px 0px 0px;
}

h5.toggle_faq.active span {
	
}

#page h5.toggle_faq.active {
    color: #0D2F4F;
}

@media (max-width: 767px) {
    span.faq-icon {
        width: 20px;
        height: 20px;
    }

    i.faq-icon {
        width: 10px;
        height: 2px;
    }
}

/* Home Small Banner Layout */
.home_banner_system {
    display: flex;
    flex-wrap: wrap;
}

.home_banner_content, .home_banner_image {
    width: 50%;
}

.home_banner_content {
    padding: 60px 5% 60px 0;
}

.home_banner_image {
    background-position: center;
    background-size: cover;
}

@media (max-width: 768px) {
    .home_banner_content, .home_banner_image {
        width: 100%;
    }

    .home_banner_image {
        min-height: 200px;
    }
}

/* 3.1.2 Buttons 
****************/
input.superbutton {
    color: #FFFFFF;
    padding: 15px 5px;
    margin: 5px 0 0 0;
    width: 100%;
    height: auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    float: none;
    text-decoration: none;
    text-shadow: none;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background-color: #0D2F4F;
    transition: 0.3s ease;
}

input.superbutton:hover {
    cursor: pointer;
    color: #FFFFFF;
    background-color: #545454;
    transition: 0.3s ease;
}

a.button, button.superbutton {
		text-decoration: none !important;
    color: #FFFFFF;
    padding: 12px 5px 11px;
    margin: 5px 0 0 0;
    width: 100%;
    height: auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    float: none;
    text-decoration: none;
    text-shadow: none;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
    background-color: #215D86;
    background-image: -ms-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: -moz-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: -o-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #215D86), color-stop(1, #215D86));
    background-image: -webkit-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: linear-gradient(to bottom, #215D86 0%, #215D86 100%);
}

a.button:hover, button.superbutton:hover {
    cursor: pointer;
    color: #FFFFFF;
    background-color: #0D2F4F;
    background-image: -ms-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: -moz-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: -o-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0D2F4F), color-stop(1, #0D2F4F));
    background-image: -webkit-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: linear-gradient(to bottom, #0D2F4F 0%, #0D2F4F 100%);
    transition: 0.3s ease;
}

a.superbutton {
		text-decoration: none !important;
    color: #FFFFFF;
    padding: 12px 5px 11px;
    margin: 5px 0 0 0;
    width: 100%;
    height: auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    float: none;
    text-decoration: none;
    text-shadow: none;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0px;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
    background-color: #215D86;
    background-image: -ms-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: -moz-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: -o-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #215D86), color-stop(1, #215D86));
    background-image: -webkit-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: linear-gradient(to bottom, #215D86 0%, #215D86 100%);
}

a.superbutton:hover {
    cursor: pointer;
    color: #FFFFFF;
    background-color: #0D2F4F;
    background-image: -ms-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: -moz-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: -o-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0D2F4F), color-stop(1, #0D2F4F));
    background-image: -webkit-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: linear-gradient(to bottom, #0D2F4F 0%, #0D2F4F 100%);
    transition: 0.3s ease;
}

a.cart_button {
    position: fixed;
    top: 162px;
    right: 140px;
    background: #0D2F4F;
    padding: 5px 20px;
    border-radius: 0 0 7px 7px;
    color: #FFFFFF;
    text-decoration: none;
    z-index: 990;
    font-weight: 700;
    text-transform: uppercase;
    background: #0D2F4F;
    transition: 0.3s ease;
}

a.cart_button:hover {
    background: #545454;
    transition: 0.3s ease;
}

a.cart_button_mobile {
    position: fixed;
    top: 47px;
    right: 60px;
    background: #0D2F4F;
    padding: 5px 20px;
    border-radius: 0 0 7px 7px;
    color: #FFFFFF;
    text-decoration: none;
    z-index: 990;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease;
}

a.cart_button_mobile:hover {
    background: #545454;
    transition: 0.3s ease;
}

.cart_quantity {
    margin: 0;
    transition: 0.3s ease;
}

.cart_quantity .quantity_text {
    float: right;
    margin: 5px 5px 0 0;
    transition: 0.3s ease;
}

.cart_quantity label {
    float: left;
    width: 100%;
    margin: 10px 0 0;
    transition: 0.3s ease;
}

.cart_quantity input {
    border: none;
    height: 26px;
    margin: 5px 0 10px;
    outline: 0 none;
    padding: 1px 2% 2px 2%;
    width: 96%;
    transition: 0.3s ease;
}

.cart_quantity select {
    width: 100%;
    height: 30px;
    padding: 5px 0;
    margin: 5px 0 0;
    border-radius: 0px;
    border: none;
    outline: none;
    transition: 0.3s ease;
}

.cart_quantity select option {
    padding: 8px 12px 8px 12px;
    transition: 0.3s ease;
}

.bottom-cta a,
input.superbutton[type="submit"] {
  padding: 8px 45px;
  color: #fff;
  border: none;
  height: auto;
  font-weight: 600;
  border-radius: 0px;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 4px;
    background-color: #215D86;
    background-image: -ms-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: -moz-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: -o-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #215D86), color-stop(1, #215D86));
    background-image: -webkit-linear-gradient(top, #215D86 0%, #215D86 100%);
    background-image: linear-gradient(to bottom, #215D86 0%, #215D86 100%);
}

input.superbutton[type="submit"]:hover {
  transition: 0.3s ease;
    background-color: #0D2F4F;
    background-image: -ms-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: -moz-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: -o-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0D2F4F), color-stop(1, #0D2F4F));
    background-image: -webkit-linear-gradient(top, #0D2F4F 0%, #0D2F4F 100%);
    background-image: linear-gradient(to bottom, #0D2F4F 0%, #0D2F4F 100%);
}

/* 3.5 Modules 
*************/
/* New Nav Styles */
.button_container {
    position: fixed;
    top: 30px;
    right: 30px;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 999;
    transition: opacity 0.25s ease;
}

.button_container:hover {
    opacity: .7;
}

.button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #FFF;
}

.button_container.active .middle {
    opacity: 0;
    background: #FFF;
}

.button_container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #ffffff;
}

.button_container span {
    background-color: #FFF;
    border: none;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(2) {
    top: 11px;
}

.button_container span:nth-of-type(3) {
    top: 22px;
}

.overlay {
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow: hidden;
}

.overlay.open {
    opacity: .7;
    visibility: visible;
    height: 100%;
}

.overlay.open li {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    animation-delay: .40s;
}

.overlay.open li:nth-of-type(3) {
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
    animation-delay: .65s;
}

.overlay.open li:nth-of-type(8) {
    animation-delay: .70s;
}

.overlay.open li:nth-of-type(9) {
    animation-delay: .75s;
}

.overlay.open li:nth-of-type(10) {
    animation-delay: .80s;
}

.overlay.open li:nth-of-type(11) {
    animation-delay: .85s;
}

.overlay.open li:nth-of-type(12) {
    animation-delay: .90s;
}

.overlay.open li:nth-of-type(13) {
    animation-delay: .95s;
}

.overlay.open li:nth-of-type(14) {
    animation-delay: 1s;
}

.overlay.open li:nth-of-type(15) {
    animation-delay: 1.05s;
}

.overlay.open li:nth-of-type(16) {
    animation-delay: 1.1s;
}

.overlay.open li:nth-of-type(17) {
    animation-delay: 1.15s;
}

.overlay.open li:nth-of-type(18) {
    animation-delay: 1.2s;
}

.overlay.open li:nth-of-type(19) {
    animation-delay: 1.25s;
}

.overlay.open li:nth-of-type(20) {
    animation-delay: 1.3s;
}

.overlay.open li:nth-of-type(21) {
    animation-delay: 1.35s;
}

.overlay.open li:nth-of-type(22) {
    animation-delay: 1.4s;
}

.overlay.open li:nth-of-type(23) {
    animation-delay: 1.45s;
}

.overlay.open li:nth-of-type(24) {
    animation-delay: 1.5s;
}

.overlay.open li:nth-of-type(25) {
    animation-delay: 1.55s;
}

.overlay.open li:nth-of-type(26) {
    animation-delay: 1.6s;
}

.overlay.open li:nth-of-type(27) {
    animation-delay: 1.65s;
}

.overlay.open li:nth-of-type(28) {
    animation-delay: 1.7s;
}

.overlay.open li:nth-of-type(29) {
    animation-delay: 1.75s;
}

.overlay.open li:nth-of-type(30) {
    animation-delay: 1.8s;
}

.overlay nav {
    position: relative;
    height: 70%;
    top: 45%;
    transform: translateY(-50%);
    font-size: 35px;
    font-family: "Asap", sans-serif;
    font-weight: 300;
    text-align: center;
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}

.overlay ul li {
    display: block;
    height: auto;
    position: relative;
    opacity: 0;
}

.overlay ul li a {
    display: inline-block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    font-size: 0.6rem;
    padding-left: 0;
    padding-bottom: 10px;
}

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
    width: 100%;
}

.overlay ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    height: 3px;
    background: #FFF;
    transition: .35s;
    background-color: transparent;
}

.overlay ul li a:hover:after {
    background-color: #fff;
}

.overlay ul li ul {
    display: none;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

.overlay.open {
    opacity: 1;
    overflow: scroll;
}

/* ---- Box List ---- */
.box_list .box {
    background: #FFF;
    float: left;
    padding: 0px;
    text-align: center;
		position:relative;
		width:100%;
    flex-direction: column;
    /* display: inline-flex; */
    margin: 10px 20px;
}

.box_list .full {
    width: 100%;
    margin: 0 0% 10px;
    text-align: center;
}

.box_list .video_box {
    width: 100%;
    margin-bottom: 5px;
}

.box_list .video_box iframe {
    width: 100%;
    height: 225px;
}

.box_list .box .quote {
    color: #0D2F4F;
}

.box_list .name {
    color: #0D2F4F;
    padding: 5px 10px 2px 0;
    margin: 0;
}

.box_list .featured {
    background-color: rgba(254, 194, 62, 0.3);
}

.box_list .box .title {
    color: #0D2F4F;
    margin: 4px 0 2px 0;
    text-transform: uppercase;
    font-weight: 700;
}

.box_list .box .menu_title {
    color: #0D2F4F;
    margin: 10px 0 3px 2px;
}

.box_list .no_image .title {
    margin: 0px 0 10px 0;
}

.box_list .box .title a {
    text-transform: uppercase;
    color: #0D2F4F;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 5px;
    font-size: 20px;
    line-height: 20px;
}

.box_list .box .title a:hover {
    color: #0078C1;
    text-decoration: none;
}

.box_list .location_title {
    padding: 5px 0 0 0;
    line-height: 16px;
}

.box_list .job_title {
    color: #0D2F4F;
    margin: -5px 0 0 0;
    font-size: 13px;
    line-height: 18px;
}

.box_list p {
  padding: 0px 20px;
  margin: 2px 0 10px 0;
}

.box_list .box .date {
    font-style: italic;
    font-weight: 400;
    color: #0D2F4F;
    padding: 0;
    margin: 0;
}

.box_list .box .price {
    color: #0D2F4F;
    margin: 0px 0 3px 2px;
    float: right;
}

.box_list .box .description {
    font-style: italic;
    padding: 0px;
    margin: 8px 0 0 0;
}

.box_list .box .options {
    font-style: italic;
    padding: 0px;
    margin: 2px 0 10px 0;
}

.box_list .box i {
    float: none;
    color: #0D2F4F;
    padding: 0 5px 0 0;
}

.box_list .box .specials_title {
    font-style: bold;
    color: #0D2F4F;
    padding: 0;
}

.box_list .box .special {
    font-style: italic;
    color: #545454;
    padding: 0;
}

.box_list .box img {
    border: none;
    background: #FFFFFF;
    padding: 0;
    margin: 0 0 10px 0;
    float: none;
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
}

.box_list .box img.large_image {
    border: 1px solid #FFF;
    background: #FFFFFF;
    padding: 3px;
    margin: 5px 10px 10px 0;
    max-width: 200%;
    max-height: 200%;
    width: 97%;
    height: auto;
}

.box_list .box ul {
    margin: 0;
}

.box_list .box ul li {
    list-style-type: none;
    width: 100%;
    float: none;
    background: none;
    margin: 10px 0 10px 0;
    padding: 0 10px 0 0;
}

.box_list .box ul.careers_list li {
    list-style-type: none;
    width: 100%;
    float: left;
    background: none;
    margin: 10px 0 10px 0;
    padding: 0 10px 0 0;
}

.box_list .box ul li.last {
    border-right: none;
}

.box_list ul {
    margin: 0px;
    padding: 0px 0 8px 5px;
}

.box_list ul li {
    margin: 0;
    padding: 0;
}

.content .product_number {
    color: #0D2F4F;
    float: right;
}

.box_list .product_highlight {
    margin: 0;
}

.box_list .product_highlight .alert {
    float: right;
    color: #0D2F4F;
    margin: -5px 0 0 0;
}

.box_list .product_highlight ul {
    margin: 0px;
    padding: 0;
}

.box_list .product_highlight ul li {
    margin: 0;
    padding: 0;
}

.box_list .product_highlight ul li .strike {
    text-decoration: line-through;
}

.box_list .product_highlight ul li .sale {
    color: #0D2F4F;
}

.box_list .product_check_list ul, .box_list .product_check_list, .box_list .product_highlight ul.gallery, .box_list .product_highlight ul.gallery li {
    margin: 0;
    padding: 0;
}

.box_list .product_check_list ul li {
    color: #0D2F4F;
    background: none;
    float: left;
    margin: 0px;
    padding: 0;
}

.box_list .box ul.pricing {
    margin: -1px 0 0 0;
    padding: 0;
}

.box_list .box ul.pricing li {
    display: inline;
    border-right: none;
    margin: 0px 4px 4px 0;
    padding: 0;
    color: #0D2F4F;
}

.box_list .box ul.pricing li.strike {
    text-decoration: line-through;
}

.box_list .box ul.pricing li.sale {
    color: #0D2F4F;
}

.box_list .box .alert_overlay {
    background-color: rgba(254, 194, 62, 0.3);
    padding: 2px 5px;
    margin-bottom: 5px;
    color: #0D2F4F;
}

.box_list .box .alert_overlay h6 {
    text-decoration: none;
    font-size: 0.2rem;
    padding: 0px;
    margin: 0;
    float: left;
}

.box_list .box .alert_overlay h6 span {
    padding: 0px;
    margin: 0px 0 0 10px;
}

.box_list .box .alert_overlay p {
    color: #0D2F4F;
}

.box_list .box .alert_overlay i {
    color: #0D2F4F;
    padding: 0px 5px 0 5px;
    float: left;
}

.box_list .box .date_title {
    margin-top: 6px;
}

.box_list .box .date_box, .content .date_box {
    background: none;
    border: none;
    float: none;
    width: 100%;
    margin: 2px 0 2px 0;
    text-align: center;
    text-decoration: none;
    color: #0D2F4F;
}

.date_box_event {
    background: none;
    border: none;
    float: none;
    width: 100%;
    margin: 2px 0 2px 0;
    text-decoration: none;
    color: #0D2F4F;
    text-align: left;
    padding-left: 12px;
}

.box_list .box .date_box .month, .content .date_box .month {
    color: #FFFFFF;
    background: #0D2F4F;
    padding: 1px 0 4px 0;
    text-transform: uppercase;
}

.box_list .box .date_box .day_of_week, .content .date_box .day_of_week {
    color: #0D2F4F;
    font-size: 0.22rem;
    text-transform: none;
    padding: 2px 0 0 0;
    margin: 0px 0 -2px 0;
}

.box_list .box .date_box .day, .content .date_box .day {
    color: #0D2F4F;
    font-size: 0.6rem;
    padding: 0;
}

.box_list .box .date_box .year, .content .date_box .year {
    color: #0D2F4F;
    font-size: 0.22rem;
    letter-spacing: 4px;
    padding: 0px 0 2px 5px;
    margin: -3px 0 0 0;
}

.box_list .box ul.date_list {
    margin: 3px 10px 0 0;
    padding: 0px;
    color: #0D2F4F;
    font-size: 12px;
}

.box_list .box ul.date_list li {
    background: none;
    display: inline;
    list-style: none;
    color: #0D2F4F;
    border-left: 1px solid #0D2F4F;
    padding: 0px 0 0 10px;
    margin: 0px 0 0 6px;
}

.box_list .box ul.date_list li.first {
    border-left: none;
    padding: 0;
    margin: 0;
}

.content .box_list .box ul.date_list li i {
    padding: 4px 4px 0 0;
}

.box_list .box ul.eventdata_list {
    margin: 0 10px 10px 0;
    padding: 0 0 10px 0;
    color: #0D2F4F;
    border-bottom: 1px solid #545454;
}

.box_list .box ul.eventdata_list li {
    background: none;
    list-style: none;
    color: #545454;
    padding: 0px 0 0 10px;
    margin: 2px 0 2px 6px;
}

.content .box_list .box ul.eventdata_list li i {
    padding: 0 5px 0 0;
    width: auto;
    float: none;
    color: #545454;
}

.box_list .address {
    color: #0D2F4F;
}

.box_list .address i {
    padding: 0px 4px 0 0;
    margin-top: -1px;
}

.box_list .event p {
    margin: 5px 0 0 0;
}

.box_list .box_links a {
    color: #0D2F4F;
}

.box_list .comment_box {
    width: 100%;
    margin: 0 0 10px 0;
    text-align: left;
}

.box_list .comment_box .comment_name {
    font-weight: 700;
    text-transform: uppercase;
    color: #545454;
    margin: 0px 0 5px 0;
}

.box_list .comment_box .comment_name span {
    font-weight: 300;
    font-style: italic;
    color: #545454;
    text-transform: capitalize;
}

/* Past News */
.box_list .past_news {
    width: 100%;
    margin: 0 0 10px;
    text-align: left;
    background: #F4F4F4;
    padding: 10px 20px;
    height: auto;
    min-height: auto;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

/* CONTACT INFORMATION */
.contact_info {
    margin: 0;
}

.contact_info h4 {
    padding: 0px 0 10px 0;
    color: #0D2F4F;
}

.contact_info ul {
    margin: 5px 0 15px 0;
    width: 100%;
}

.contact_info ul li {
    margin: 0px 0 5px 0;
    list-style: none;
    font-weight: 300;
}

.contact_info ul li a {
    color: #0D2F4F;
    text-decoration: underline;
}

.contact_info ul li a:hover {
    color: #FFF;
    text-decoration: none;
}

.contact_info span {
    margin: 0px 0 2px 0;
}

.contact_info h6 {
    color: #0D2F4F;
    margin: 0px 0 10px 0;
}

.contact_info pre {
    margin: 3px 0 0 0;
    white-space: pre-wrap;
    /* css-3 */
    white-space: -moz-pre-wrap !important;
    /* Mozilla, since 1999 */
    white-space: -pre-wrap;
    /* Opera 4-6 */
    white-space: -o-pre-wrap;
    /* Opera 7 */
    word-wrap: break-word;
    /* Internet Explorer 5.5+ */
    width: 99%;
}

.contact_info ul.hours {
    margin: 3px 0 0 0;
    padding: 0px;
    width: 100%;
}

.contact_info ul.hours li {
    margin: 0px;
    padding: 0px;
}

.contact_info ul.hours li span {
    width: 100px;
    color: #545454;
    display: inline-block;
}

.map_holder {
    margin-bottom: -6px;
}

.map_holder .overlay {
    background: transparent;
    position: relative;
    width: 100%;
    height: 450px;
    /* your iframe height */
    top: 450px;
    /* your iframe height */
    margin-top: -450px;
    /* your iframe height */
}

.map_holder .map_overlay {
    background: transparent;
    position: relative;
    width: 100%;
    height: 450px;
    top: 450px;
    margin-top: -450px;
    -webkit-overflow-scrolling: touch;
    z-index: 104;
}

#map_canvas {
    width: 100%;
    height: 450px;
}

.map_holder {
    background-color: #fff;
}

@media (min-width: 960px) {
    .contact .form_holder .third_width {
        width: calc(33.33% - 10px) !important;
    }
}

/* Login Styles */
#header .menu_holder .menu_content ul li.login_btn {
    float: left;
}

#header .menu_holder .menu_content ul li.login_btn a {
    text-decoration: none;
    color: #fff;
    background: #0D2F4F;
    float: left;
    padding: 8px 10px;
}

#header .menu_holder .menu_content ul li.login_btn a:hover {
    background: #545454;
}

#header .menu_holder .menu_content ul li.login_btn a i {
    color: #fff;
    position: relative;
    left: 3px;
}

.login_btn {
    float: right;
    margin: 0;
}

#header .login_btn {
    margin: 15px 0 3px 0;
}

.login_btn i {
    float: left;
    font-size: 0.46rem;
    margin: 2px 5px 0 0;
    color: #0D2F4F;
}

.login_wrapper.hide {
    display: none;
}

.login_wrapper {
    width: 100%;
    position: fixed;
    z-index: 102;
    top: 34px;
    right: 0;
    left: 0;
}

.login_wrapper .login_wrapper_inner {
    width: 960px;
    margin: 0 auto;
}

.menu_holder .login_box {
    width: 300px;
    background: #0D2F4F;
    padding: 15px;
    float: right;
    margin-right: 3px;
    box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
}

.menu_holder .login_box input {
    width: 94%;
    padding: 3%;
    margin: 2% 0;
    float: left;
    border: none;
    background: #FFF;
}

.menu_holder .login_box input:focus {
    outline: none;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
}

.menu_holder .login_box input.checkbox {
    width: auto !important;
    padding: 0;
    margin: 2% 0 0 4%;
}

.menu_holder .login_box a {
    text-decoration: none;
    color: #fff;
}

.menu_holder .login_box a:hover {
    text-decoration: underline;
}

.menu_holder .login_box a.superbutton {
    margin-top: 5px;
    background: #333;
}

.menu_holder .login_box a.superbutton:hover {
    text-decoration: none;
    background: #545454;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
}

.menu_holder .login_box a.superbutton i {
    margin: 0 -2px 0 3px;
}

/* FORMS */
h3#form {
    font-size: 0.6rem;
    line-height: 0.6rem;
    margin: 0px;
    padding: 5px 10px;
}

.form_holder {
    background: none;
    padding: 10px 11px 10px 10px;
}

.form_holder .third_width {
    width: 100%;
    margin-right: 0%;
    float: none;
}

.form_holder .half_width {
    width: 100%;
    margin-right: 0%;
    float: none;
}

.form_holder .full_width {
    float: left;
    width: 100%;
    margin: 0;
}

.form_holder .last {
    margin: 0;
}

.form_holder input {
    font-weight: 300;
    width: 100%;
    padding: 5px 8px 5px 8px;
    height: auto;
    font-size: 16px;
    margin: 1px 0 5px 0;
    background-color: #FFFFFF;
    border: 1px solid #FFF;
    color: #545454;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.form_holder input.checkbox {
    float: left;
    width: auto;
    height: auto;
    margin: 8px 0;
    padding: 0;
    background: none;
    border: 1px solid #FFF;
    box-shadow: none;
    color: #545454;
    outline: none;
}

.form_holder textarea {
    font-weight: 300;
    width: 100%;
    padding: 5px 5px 5px 8px;
    margin: 1px 0 10px;
    background-color: #FFFFFF;
    border: 1px solid #FFF;
    color: #545454;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.form_holder select {
    font-weight: 300;
    width: 100%;
    padding: 5px 0;
    margin: 1px 0 10px;
    background-color: #FFFFFF;
    border: 1px solid #FFF;
    color: #545454;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.form_holder select option {
    padding: 8px 0 8px 0;
}

.form_holder .uploader {
    width: 100%;
    height: 30px;
    padding: 0px;
    margin: 1px 0 5px 0;
    background-color: #FFFFFF;
    border: 0px solid #FFFFFF;
    color: #545454;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.form_holder input:focus, .form_holder textarea:focus {
    background-color: #FFFFFF;
    color: #545454;
    outline: none;
}

.form_holder label {
    display: block;
    font-size: 14px;
    color: #545454;
}

.form_holder .message {
    margin: 0px 0 10px 0;
}

.form_holder .check_label {
    float: left;
    margin: 4px 0 0 0;
    padding: 0px 0 0 5px;
}

.form_holder .require {
    color: #0D2F4F;
}

.form_holder .form_error {
    color: var(--warning);
    margin: 10px 0 20px 0;
}

.form_top {
    margin-top: 30px;
}

.directions_form input {
    width: 98%;
    padding: 3px;
}

.form_holder .email_half_width input {
    width: 100%;
}

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

/* Placeholder */
::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #FFF;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #FFF;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #FFF;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #FFF;
}

form#appointment_form,
form#contact_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form_holder input, 
.form_holder textarea,
.form_holder select {
    border-color: #DDD;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 3px;
}

.form_holder input, 
.form_holder select {
    height: 35px;
}

.form_holder textarea {
    height:100px;
}

#menu a {
    text-decoration: none;
}

html.mm-opened .mm-page, html.mm-opened #mm-blocker, html.mm-opened .mm-fixed-top, html.mm-opened .mm-fixed-bottom, html.mm-opened .mm-menu.mm-horizontal > .mm-panel {
    -webkit-transition: none 0.4s ease;
    -moz-transition: none 0.4s ease;
    -ms-transition: none 0.4s ease;
    -o-transition: none 0.4s ease;
    transition: none 0.4s ease;
    -webkit-transition-property: top, right, bottom, left, border, -webkit-transform;
    -moz-transition-property: top, right, bottom, left, border, -moz-transform;
    -ms-transition-property: top, right, bottom, left, border, -ms-transform;
    -o-transition-property: top, right, bottom, left, border, -o-transform;
    transition-property: top, right, bottom, left, border, transform;
}

html.mm-opened .mm-page, html.mm-opened #mm-blocker {
    left: 0%;
    top: 0;
    margin: 0;
    border: 0px solid transparent;
}

html.mm-opened.mm-opening .mm-page, html.mm-opened.mm-opening #mm-blocker {
    border: 0px solid rgba(100, 100, 100, 0);
}

.mm-menu .mm-hidden {
    display: none;
}

.mm-fixed-top, .mm-fixed-bottom {
    position: sticky;
    position: -webkit-sticky;
    left: 0;
}

.mm-fixed-top {
    top: 0;
		z-index: 99999;
    border-bottom: 2px solid #0078C1;
}

.mm-fixed-bottom {
    bottom: 0;
}

html.mm-opened .mm-page, .mm-menu > .mm-panel {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

html.mm-opened, html.mm-opened body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

html.mm-opened .mm-page {
    height: 100%;
    overflow: hidden;
    position: absolute;
}

html.mm-background .mm-page {
    background: inherit;
}

#mm-blocker {
    background: #fff;
    opacity: 0;
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9999;
}

html.mm-opened #mm-blocker, html.mm-blocking #mm-blocker {
    display: block;
}

.mm-menu.mm-current {
    display: block;
}

.mm-menu {
    background: inherit;
    display: none;
    overflow: hidden;
    height: 100%;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.mm-menu > .mm-panel {
    background: inherit;
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 0;
}

.mm-menu > .mm-panel.mm-opened {
    left: 0%;
}

.mm-menu > .mm-panel.mm-subopened {
    left: -40%;
}

.mm-menu > .mm-panel.mm-highest {
    z-index: 1;
}

.mm-menu > .mm-panel.mm-hidden {
    display: block;
    visibility: hidden;
}

.mm-menu .mm-list {
    padding: 20px 0;
}

.mm-menu > .mm-list {
    padding: 20px 0 40px 0;
}

.mm-panel > .mm-list {
    margin-left: -20px;
    margin-right: -20px;
}

.mm-panel > .mm-list:first-child {
    padding-top: 0;
}

.mm-list, .mm-list > li {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
}

.mm-list * {
    -webkit-text-size-adjust: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-shadow: none;
}

.mm-list a, .mm-list a:hover {
    text-decoration: none;
}

.mm-list > li {
    position: relative;
}

.mm-list > li > a, .mm-list > li > span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: inherit;
    line-height: 20px;
    display: block;
    padding: 10px 10px 10px 20px;
    margin: 0;
}

.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-noresults)::after {
    content: '';
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-noresults):after {
    width: auto;
    /*margin-left: 20px;  changed to allow border to touch left edge */
    margin-left: 0px;
    position: relative;
    left: auto;
}

.mm-list a.mm-subopen {
    width: 40px;
    height: 100%;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.mm-list a.mm-subopen::before {
    content: '';
    border-left-width: 1px;
    border-left-style: solid;
    display: block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.mm-list a.mm-subopen.mm-fullsubopen {
    width: 100%;
}

.mm-list a.mm-subopen.mm-fullsubopen:before {
    border-left: none;
}

.mm-list a.mm-subopen + a, .mm-list a.mm-subopen + span {
    padding-right: 5px;
    margin-right: 40px;
}

.mm-list > li.mm-selected > a.mm-subopen {
    background: transparent;
}

.mm-list > li.mm-selected > a.mm-fullsubopen + a, .mm-list > li.mm-selected > a.mm-fullsubopen + span {
    padding-right: 45px;
    margin-right: 0;
}

.mm-list a.mm-subclose {
    text-indent: 20px;
    margin-top: -20px;
}

.mm-list > li.mm-label {
    font-size: 10px;
    text-transform: uppercase;
    text-indent: 20px;
    line-height: 25px;
}

.mm-list a.mm-subopen:after, .mm-list a.mm-subclose:before {
    content: '';
    border: 2px solid transparent;
    display: block;
    width: 7px;
    height: 7px;
    margin-bottom: -5px;
    position: absolute;
    bottom: 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mm-list a.mm-subopen:after {
    border-top: none;
    border-left: none;
    right: 18px;
}

.mm-list a.mm-subclose:before {
    border-right: none;
    border-bottom: none;
    margin-bottom: -4px;
    left: 22px;
}

.mm-menu.mm-vertical .mm-list .mm-panel {
    display: none;
    padding: 10px 0 10px 10px;
}

.mm-menu.mm-vertical .mm-list .mm-panel li:last-child:after {
    border-color: transparent;
}

.mm-menu.mm-vertical .mm-list li.mm-opened > .mm-panel {
    display: block;
}

.mm-menu.mm-vertical .mm-list > li.mm-opened > a.mm-subopen {
    height: 40px;
}

.mm-menu.mm-vertical .mm-list > li.mm-opened > a.mm-subopen:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 16px;
    right: 16px;
}

html.mm-opened .mm-page {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* MAIN BG COLOUR */
.mm-ismenu {
    background: #0D2F4F;
}

.mm-menu {
    color: #fff;
}

.mm-menu .mm-list > li:after {
    border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu .mm-list > li > a.mm-subclose {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

.mm-menu .mm-list > li > a.mm-subopen:after, .mm-menu .mm-list > li > a.mm-subclose:before {
    border-color: #fff;
}

.mm-menu .mm-list > li > a.mm-subopen:before {
    border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen), .mm-menu .mm-list > li.mm-selected > span {
    background: rgba(0, 0, 0, 0.1);
}

.mm-menu .mm-list li.mm-label {
    background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-vertical .mm-list li.mm-opened > a.mm-subopen, .mm-menu.mm-vertical .mm-list li.mm-opened > ul {
    background: rgba(255, 255, 255, 0.05);
}

html.mm-opened.mm-opening .mm-page, html.mm-opened.mm-opening #mm-blocker, html.mm-opened.mm-opening .mm-fixed-top, html.mm-opened.mm-opening .mm-fixed-bottom {
    left: 80%;
}

.mm-menu {
    width: 80%;
}

@media all and (max-width: 175px) {
    .mm-menu {
        width: 140px;
    }

    html.mm-opened.mm-opening .mm-page, html.mm-opened.mm-opening #mm-blocker, html.mm-opened.mm-opening .mm-fixed-top, html.mm-opened.mm-opening .mm-fixed-bottom {
        left: 140px;
    }
}

@media all and (min-width: 550px) {
    .mm-menu {
        width: 440px;
    }

    html.mm-opened.mm-opening .mm-page, html.mm-opened.mm-opening #mm-blocker, html.mm-opened.mm-opening .mm-fixed-top, html.mm-opened.mm-opening .mm-fixed-bottom {
        left: 440px;
    }
}

html.mm-nooverflowscrolling.mm-opened {
    height: auto;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: scroll;
}

html.mm-nooverflowscrolling.mm-opened body {
    overflow: auto;
}

html.mm-nooverflowscrolling.mm-opened .mm-page {
    min-height: 1000px;
    position: fixed;
}

html.mm-nooverflowscrolling.mm-opened .mm-menu {
    height: auto;
    min-height: 1000px;
    overflow: auto;
    overflow-x: hidden;
    position: relative;
    left: auto;
    top: auto;
}

html.mm-nooverflowscrolling.mm-opened > .mm-panel {
    position: relative;
    height: auto;
    display: none;
    left: 0;
}

html.mm-nooverflowscrolling.mm-opened > .mm-panel.mm-current {
    display: block;
}

/* MENU THEMES */
html.mm-opened.mm-light .mm-page {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.mm-ismenu.mm-light {
    background: #f3f3f3;
}

.mm-menu.mm-light {
    color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-light .mm-list > li:after {
    border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-light .mm-list > li > a.mm-subclose {
    background: rgba(255, 255, 255, 0.6);
    color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-list > li > a.mm-subopen:after, .mm-menu.mm-light .mm-list > li > a.mm-subclose:before {
    border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-list > li > a.mm-subopen:before {
    border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-light .mm-list > li.mm-selected > a:not(.mm-subopen), .mm-menu.mm-light .mm-list > li.mm-selected > span {
    background: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-light .mm-list li.mm-label {
    background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-light.mm-vertical .mm-list li.mm-opened > a.mm-subopen, .mm-menu.mm-light.mm-vertical .mm-list li.mm-opened > ul {
    background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-light .mm-search input {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-light li.mm-noresults {
    color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light em.mm-counter {
    color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-header {
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-light .mm-header a:before {
    border-color: rgba(0, 0, 0, 0.3);
}

html.mm-opened.mm-white .mm-page {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.mm-ismenu.mm-white {
    background: white;
}

.mm-menu.mm-white {
    color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-white .mm-list > li:after {
    border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-white .mm-list > li > a.mm-subclose {
    background: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-list > li > a.mm-subopen:after, .mm-menu.mm-white .mm-list > li > a.mm-subclose:before {
    border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-list > li > a.mm-subopen:before {
    border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-white .mm-list > li.mm-selected > a:not(.mm-subopen), .mm-menu.mm-white .mm-list > li.mm-selected > span {
    background: rgba(0, 0, 0, 0.08);
}

.mm-menu.mm-white .mm-list li.mm-label {
    background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-white.mm-vertical .mm-list li.mm-opened > a.mm-subopen, .mm-menu.mm-white.mm-vertical .mm-list li.mm-opened > ul {
    background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-white .mm-search input {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-white li.mm-noresults {
    color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white em.mm-counter {
    color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-header {
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-white .mm-header a:before {
    border-color: rgba(0, 0, 0, 0.3);
}

html.mm-opened.mm-black .mm-page {
    box-shadow: none;
}

.mm-ismenu.mm-black {
    background: black;
}

.mm-menu.mm-black {
    color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-black .mm-list > li:after {
    border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-black .mm-list > li > a.mm-subclose {
    background: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-list > li > a.mm-subopen:after, .mm-menu.mm-black .mm-list > li > a.mm-subclose:before {
    border-color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-list > li > a.mm-subopen:before {
    border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-black .mm-list > li.mm-selected > a:not(.mm-subopen), .mm-menu.mm-black .mm-list > li.mm-selected > span {
    background: rgba(255, 255, 255, 0.25);
}

.mm-menu.mm-black .mm-list li.mm-label {
    background: rgba(255, 255, 255, 0.15);
}

.mm-menu.mm-black.mm-vertical .mm-list li.mm-opened > a.mm-subopen, .mm-menu.mm-black.mm-vertical .mm-list li.mm-opened > ul {
    background: rgba(255, 255, 255, 0.15);
}

.mm-menu.mm-black .mm-search input {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-black li.mm-noresults {
    color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black em.mm-counter {
    color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-header {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-black .mm-header a:before {
    border-color: rgba(255, 255, 255, 0.3);
}

/* END MENU THEMES */
/* MENU POSITIONING */
.mm-menu.mm-top {
    width: 100%;
}

html.mm-top.mm-opened .mm-page, html.mm-top.mm-opened #mm-blocker {
    top: 0%;
}

html.mm-top.mm-opened.mm-opening .mm-page, html.mm-top.mm-opened.mm-opening #mm-blocker, html.mm-top.mm-opened.mm-opening .mm-fixed-top, html.mm-top.mm-opened.mm-opening .mm-fixed-bottom {
    left: 0;
}

.mm-menu.mm-right {
    left: auto;
    right: 0;
}

html.mm-right.mm-opened .mm-page, html.mm-right.mm-opened #mm-blocker, html.mm-right.mm-opened .mm-fixed-top, html.mm-right.mm-opened .mm-fixed-bottom {
    left: auto;
    right: 0%;
}

html.mm-right.mm-opened.mm-opening .mm-page, html.mm-right.mm-opened.mm-opening #mm-blocker, html.mm-right.mm-opened.mm-opening .mm-fixed-top, html.mm-right.mm-opened.mm-opening .mm-fixed-bottom {
    left: auto;
}

.mm-menu.mm-bottom {
    width: 100%;
    top: auto;
    bottom: 0;
}

html.mm-bottom.mm-opened .mm-page, html.mm-bottom.mm-opened #mm-blocker {
    bottom: 0%;
    top: auto;
}

html.mm-bottom.mm-opened.mm-opening .mm-page, html.mm-bottom.mm-opened.mm-opening #mm-blocker, html.mm-bottom.mm-opened.mm-opening .mm-fixed-top, html.mm-bottom.mm-opened.mm-opening .mm-fixed-bottom {
    top: auto;
    left: 0;
}

.mm-menu.mm-top {
    height: 80%;
}

html.mm-top.mm-opened.mm-opening .mm-page, html.mm-top.mm-opened.mm-opening #mm-blocker, html.mm-top.mm-opened.mm-opening .mm-fixed-top {
    top: 80%;
}

html.mm-top.mm-opened.mm-opening .mm-fixed-bottom {
    bottom: -80%;
}

@media all and (max-height: 175px) {
    .mm-menu.mm-top {
        height: 140px;
    }

    html.mm-top.mm-opened.mm-opening .mm-page, html.mm-top.mm-opened.mm-opening #mm-blocker, html.mm-top.mm-opened.mm-opening .mm-fixed-top {
        top: 140px;
    }

    html.mm-top.mm-opened.mm-opening .mm-fixed-bottom {
        bottom: -140px;
    }
}

@media all and (min-height: 1100px) {
    .mm-menu.mm-top {
        height: 880px;
    }

    html.mm-top.mm-opened.mm-opening .mm-page, html.mm-top.mm-opened.mm-opening #mm-blocker, html.mm-top.mm-opened.mm-opening .mm-fixed-top {
        top: 880px;
    }

    html.mm-top.mm-opened.mm-opening .mm-fixed-bottom {
        bottom: -880px;
    }
}

.mm-menu.mm-right {
    width: 80%;
}

html.mm-right.mm-opened.mm-opening .mm-page, html.mm-right.mm-opened.mm-opening #mm-blocker, html.mm-right.mm-opened.mm-opening .mm-fixed-top, html.mm-right.mm-opened.mm-opening .mm-fixed-bottom {
    right: 80%;
}

@media all and (max-width: 175px) {
    .mm-menu.mm-right {
        width: 140px;
    }

    html.mm-right.mm-opened.mm-opening .mm-page, html.mm-right.mm-opened.mm-opening #mm-blocker, html.mm-right.mm-opened.mm-opening .mm-fixed-top, html.mm-right.mm-opened.mm-opening .mm-fixed-bottom {
        right: 140px;
    }
}

@media all and (min-width: 550px) {
    .mm-menu.mm-right {
        width: 440px;
    }

    html.mm-right.mm-opened.mm-opening .mm-page, html.mm-right.mm-opened.mm-opening #mm-blocker, html.mm-right.mm-opened.mm-opening .mm-fixed-top, html.mm-right.mm-opened.mm-opening .mm-fixed-bottom {
        right: 440px;
    }
}

.mm-menu.mm-bottom {
    height: 80%;
}

html.mm-bottom.mm-opened.mm-opening .mm-page, html.mm-bottom.mm-opened.mm-opening #mm-blocker, html.mm-bottom.mm-opened.mm-opening .mm-fixed-bottom {
    bottom: 80%;
}

html.mm-bottom.mm-opened.mm-opening .mm-fixed-top {
    top: -80%;
}

@media all and (max-height: 175px) {
    .mm-menu.mm-bottom {
        height: 140px;
    }

    html.mm-bottom.mm-opened.mm-opening .mm-page, html.mm-bottom.mm-opened.mm-opening #mm-blocker, html.mm-bottom.mm-opened.mm-opening .mm-fixed-bottom {
        bottom: 140px;
    }

    html.mm-bottom.mm-opened.mm-opening .mm-fixed-top {
        top: -140px;
    }
}

@media all and (min-height: 1100px) {
    .mm-menu.mm-bottom {
        height: 880px;
    }

    html.mm-bottom.mm-opened.mm-opening .mm-page, html.mm-bottom.mm-opened.mm-opening #mm-blocker, html.mm-bottom.mm-opened.mm-opening .mm-fixed-bottom {
        bottom: 880px;
    }

    html.mm-bottom.mm-opened.mm-opening .mm-fixed-top {
        top: -880px;
    }
}

html.mm-front.mm-opened .mm-page {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
}

.mm-menu.mm-front, .mm-menu.mm-next {
    -webkit-transition: none 0.4s ease;
    -moz-transition: none 0.4s ease;
    -ms-transition: none 0.4s ease;
    -o-transition: none 0.4s ease;
    transition: none 0.4s ease;
    -webkit-transition-property: top, right, bottom, left, -webkit-transform;
    -moz-transition-property: top, right, bottom, left, -moz-transform;
    -ms-transition-property: top, right, bottom, left, -o-transform;
    -o-transition-property: top, right, bottom, left, -o-transform;
    transition-property: top, right, bottom, left, transform;
}

html.mm-front .mm-page, html.mm-front #mm-blocker {
    z-index: 0;
}

.mm-menu.mm-front {
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

html.mm-opened.mm-next .mm-page {
    box-shadow: none;
}

html.mm-opening .mm-menu.mm-front, html.mm-opening .mm-menu.mm-next {
    left: 0%;
}

.mm-menu.mm-top.mm-front, .mm-menu.mm-top.mm-next {
    left: 0;
}

html.mm-opening .mm-menu.mm-top.mm-front, html.mm-opening .mm-menu.mm-top.mm-next {
    left: 0;
    top: 0%;
}

.mm-menu.mm-right.mm-front, .mm-menu.mm-right.mm-next {
    left: auto;
}

html.mm-opening .mm-menu.mm-right.mm-front, html.mm-opening .mm-menu.mm-right.mm-next {
    left: auto;
    right: 0%;
}

.mm-menu.mm-bottom.mm-front, .mm-menu.mm-bottom.mm-next {
    top: auto;
    left: 0;
}

html.mm-opening .mm-menu.mm-bottom.mm-front, html.mm-opening .mm-menu.mm-bottom.mm-next {
    left: 0;
    bottom: 0%;
}

.mm-menu.mm-front, .mm-menu.mm-next {
    left: -80%;
}

@media all and (max-width: 175px) {
    .mm-menu.mm-front, .mm-menu.mm-next {
        left: -140px;
    }
}

@media all and (min-width: 550px) {
    .mm-menu.mm-front, .mm-menu.mm-next {
        left: -440px;
    }
}

.mm-menu.mm-top.mm-front, .mm-menu.mm-top.mm-next {
    top: -80%;
}

@media all and (max-height: 175px) {
    .mm-menu.mm-top.mm-front, .mm-menu.mm-top.mm-next {
        top: -140px;
    }
}

@media all and (min-height: 1100px) {
    .mm-menu.mm-top.mm-front, .mm-menu.mm-top.mm-next {
        top: -880px;
    }
}

.mm-menu.mm-right.mm-front, .mm-menu.mm-right.mm-next {
    right: -80%;
}

@media all and (max-width: 175px) {
    .mm-menu.mm-right.mm-front, .mm-menu.mm-right.mm-next {
        right: -140px;
    }
}

@media all and (min-width: 550px) {
    .mm-menu.mm-right.mm-front, .mm-menu.mm-right.mm-next {
        right: -440px;
    }
}

.mm-menu.mm-bottom.mm-front, .mm-menu.mm-bottom.mm-next {
    bottom: -80%;
}

@media all and (max-height: 175px) {
    .mm-menu.mm-bottom.mm-front, .mm-menu.mm-bottom.mm-next {
        bottom: -140px;
    }
}

@media all and (min-height: 1100px) {
    .mm-menu.mm-bottom.mm-front, .mm-menu.mm-bottom.mm-next {
        bottom: -880px;
    }
}

html.mm-opened.mm-front .mm-fixed-top, html.mm-opened.mm-front .mm-fixed-bottom, html.mm-opened.mm-opening.mm-front .mm-fixed-top, html.mm-opened.mm-opening.mm-front .mm-fixed-bottom {
    left: 0;
    right: auto;
}

html.mm-opened.mm-front .mm-fixed-top, html.mm-opened.mm-opening.mm-front .mm-fixed-top {
    top: 0;
}

html.mm-opened.mm-front .mm-fixed-bottom, html.mm-opened.mm-opening.mm-front .mm-fixed-bottom {
    bottom: 0;
}

/* END MENU POSITIONING */
/* MAIN NAVIGATION STYLES */
.jqueryslidemenu {
    width: 100%;
    padding: 0px 0px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 101;
    display: flex;
    align-items: center;
}

.jqueryslidemenu a.logo {
    display: block;
    width: 280px;
}

.jqueryslidemenu a.logo img {
    width: 100%;
    height: auto;
}

.jqueryslidemenu ul {
    list-style: none;
    flex: 1;
    display: inline-flex;
    justify-content: flex-end;
    /*margin-right: 40px;*/
}

@media (max-width: 1280px) {
	.jqueryslidemenu ul {
    margin-right: 0px;
	}
}
@media (max-width: 1240px) {
	.jqueryslidemenu ul li a{
		padding: 51px 16px;
	}
}
@media (max-width: 1150px) {
	.jqueryslidemenu ul li a{
		padding: 51px 14px;
	}
}


.jqueryslidemenu ul li {
    position: relative;
    float: left;
}
.jqueryslidemenu ul li a{
    border-bottom: 3px solid #0078C1;
    height: 100%;
}
.jqueryslidemenu ul li a:hover{
    border-bottom: 3px solid #0D2F4F;
}
.jqueryslidemenu ul li.Selected a{
    border-bottom: 3px solid #0D2F4F;
}
.jqueryslidemenu ul li ul li {
	padding:0;
}

.jqueryslidemenu ul li a:hover, 
.jqueryslidemenu ul li:hover a {
    color: var(--yellow);
}

/* FIRST DROP-DOWN LAYER */
.jqueryslidemenu ul li ul {
    /* REMOVE STLYES FROM TOP LEVEL */
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    /* REMOVE STLYES FROM TOP LEVEL */
    position: absolute;
    left: 0;
    display: block;
    visibility: hidden;
    width: auto;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    list-style: none;
    width: 250px;
    /* WIDTH OF SUB MENU */
    background: #0078C1;
    z-index: 3;
}

.jqueryslidemenu ul li.Selected a {
    color: var(--yellow);
}

.jqueryslidemenu ul li ul li {
    /* REMOVE STLYES FROM TOP LEVEL */
    display: list-item;
    float: none;
    border: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    /* REMOVE STLYES FROM TOP LEVEL */
    border-bottom: none;
    
}
.jqueryslidemenu ul li ul li:hover{
    border-bottom: none;
}

.jqueryslidemenu ul li ul li a {
    color: #FFFFFF !important;
    line-height: 16px;
    font-size: 14px;
    margin: 0px;
    background: none;
		display: block;
    padding: 10px 15px;
    border-bottom: none;
}

.jqueryslidemenu ul li:hover ul li a {
    color: #545454;
    line-height: 20px;
    margin: 0px;
    background: none;
    border-bottom: none;
}

.jqueryslidemenu ul li ul li:hover a {
    color:#fff !important;
    background: rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

.jqueryslidemenu ul li.Selected ul li a:hover, .jqueryslidemenu ul li ul li a:hover {
    text-decoration: none;
    border-bottom: none;
}

/* SUB DROP-DOWN LAYERS AFTER 1ST */
.jqueryslidemenu ul li ul li ul {
    top: 0;
    margin: -1px 0px 0px 2px;
}

/* DOWN AND RIGHT ARROWS IN NAV (DEFAULT OFF) */
.downarrowclass {
    display: none;
    /* THIS HIDES THE ARROW */
    position: absolute;
    top: 8px;
    right: 7px;
}

.rightarrowclass {
    display: none;
    /* THIS HIDES THE ARROW */
    position: absolute;
    top: 9px;
    right: 5px;
}

.jqueryslidemenu ul li:hover ul {
    visibility: visible !important;
}

/* GRID LIST */
.grid_list {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.grid_list .grid_item {width: 100%;margin: 5px 0;position: relative;}

.grid_list .last {
    margin-right: 0%;
}

.grid_list .title {
    text-align: center;
    color: #FFFFFF;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: 0.2s ease;
}

.grid_list .title:hover {
    background-color: rgba(2, 57, 86, 0.8);
    transition: 0.2s ease;
}

.grid_list .title a {
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
		height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid_list .title a:hover {
    color: #FFF;
    text-decoration: none;
}

.grid_list img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    background: #FFFFFF;
}

.grid_list .grid_video {
    width: 48%;
    float: left;
    margin-right: 2%;
    margin-bottom: 10px;
}

/* ---- Location Styles ---- */
.content .location {
    margin: 10px 0 10px 0;
}

.content .location .address {
    background: #545454;
    padding: 8px 8px 8px 8px;
    margin: -6px 0 0 0;
}

.content .location iframe {
    width: 100%;
    height: 300px;
    margin: 0;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

/* MENU LIST */
.menu_list ul.pages li {
    background: #215D86;
    float: left;
    text-align: center;
    width: 100%;
    text-decoration: none;
    list-style: none;
    margin: 5px;
    padding: 0;
    font-weight: 600;
    border-radius: 0px;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4px;
}

.menu_list ul.pages li:hover {
    background: #0D2F4F;
		transition: 0.3s ease;
}

.menu_list ul.pages li a {
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    padding: 10px 10px 8px 10px;
		transition: 0.3s ease;
}

.menu_list ul.pages li a:hover {
    color: #FFFFFF;
		transition: 0.3s ease;
}

/* MENU TOGGLER */
h4.menu_toggle, h4.toggle.active.open {
    color: #0D2F4F;
    color: #FFFFFF;
    background: url(/images/layout/toggle-light.png) no-repeat 10px 11px #0D2F4F;
    padding: 8px 0 8px 35px;
    margin: 10px;
    cursor: pointer;
}

h4.menu_toggle.active, h4.toggle.open {
    background-position: 10px -39px;
}

h4.menu_toggle:hover, h4.toggle.active.open:hover {
    text-decoration: underline;
}

div.menu_toggler {
    color: #545454;
    border-top: none;
    margin: 0 0 10px 0;
    padding: 0px;
    overflow: hidden;
}

div.menu_toggler hr {
    border-top: 1px solid #CCCCCC;
}

div.menu_toggler p {
    margin: 0px;
    padding: 5px 0 5px 0;
}

/* MESSAGE POPUP STYLES */
div.message_wrapper {
    margin: -7px 0 5px 0px;
    height: 64px;
}

.content h2.hide_message {
    display: none;
}

.content h2.message_positive {
    width: 96%;
    color: #FFFFFF !important;
    background: #0D2F4F !important;
    padding: 15px 2%;
}

.content h2.message_negative {
    width: 96%;
    color: #FFFFFF !important;
    background: #0D2F4F !important;
    padding: 15px 2%;
}

.message_wrapper a.message_link {
    color: #FFFFFF !important;
    text-decoration: underline;
}

.message_wrapper a.message_link:hover {
    text-decoration: none;
}

.message_wrapper a.cart_message_link {
    float: right;
    color: #FFFFFF !important;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #FFFFFF;
}

.message_wrapper a.cart_message_link:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

/* People Styles */
.content_container .content .editable_content img.people_image {
    float: none;
    margin: 0 auto 10px auto;
}

.content_container .content .editable_content h1.person_name {
    font-size: 0.56rem;
    line-height: 0.56rem;
    margin: 0;
}

.content_container .content .editable_content h4.person_title {
    font-size: 0.32rem;
    line-height: 0.32rem;
    margin: 0;
    font-style: italic;
    color: #0D2F4F;
}

/* PHOTO GALLERY */
.gallery_holder {
    width: 100%;
    background: #FFF;
    float: left;
    margin: 6px 0 6px 0;
    padding: 0;
}

.gallery_holder a {
    text-decoration: none;
}

.gallery_holder a .title {
    text-align: left;
    margin: 2px 0;
    color: #0D2F4F;
    text-decoration: none;
}

.gallery_holder a:hover .title {
    color: #0D2F4F;
}

.gallery_holder a .description {
    color: #545454;
}

.gallery_holder img {
    background: #FFFFFF;
    border: 1px solid #BEBEBE;
    margin: 5px;
    float: left;
    padding: 2px;
    /*-moz-box-shadow: 0 0 3px #888;
	-webkit-box-shadow: 0 0 3px #888;
	box-shadow: 0 0 3px #888;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;*/
}

#before_after_gallery ul li {
    background: none;
    list-style: none;
    width: 100%;
    float: left;
    margin: 0px 0 10px 0;
    padding: 0;
}

#before_after_gallery ul li p {
    margin: 0px 0 6px 0;
}

#before_after_gallery ul li.last {
    margin: 0px 0 10px 0;
}

#before_after_gallery ul li .image_holder {
    float: left;
    width: 100%;
    margin: 0px 0 10px 0;
    background: #FFF;
}

#before_after_gallery ul li .image_holder .banner {
    padding: 0px 0 0 10px;
}

#before_after_gallery ul li .image_holder .banner h3 {
    font-style: italic;
    margin: -5px 0 2px 0;
}

#before_after_gallery ul li .image_holder .thumbnails {
    width: 94%;
    padding: 3%;
    margin: 0;
    /*-moz-box-shadow: 0 0 3px #888;
	-webkit-box-shadow: 0 0 3px #888;
	box-shadow: 0 0 3px #888;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;*/
}

#before_after_gallery ul li .last {
    margin: 0;
}

/* TOGGLER */
h4.toggle, h4.toggle.active.open {
    color: #545454;
    background: url(/images/layout/toggle.png) no-repeat 10px 11px;
    padding: 8px 0 8px 35px;
    margin: 10;
    cursor: pointer;
}

h4.toggle.active, h4.toggle.open {
    background-position: 10px -39px;
}

h4.toggle:hover, h4.toggle.active.open:hover {
    background-position: 10px -39px;
}

div.toggler {
    border-top: none;
    margin: 0 0 10px 0;
    padding: 10px 25px;
    overflow: hidden;
}

div.toggler hr {
    border-top: 1px solid #FFF;
}

div.toggler p {
    margin: 0px;
    padding: 5px 0 5px 0;
}

/* VIDEO GALLERY */
#video_gallery {
    background: #FFF;
    margin: 0 0 20px 0;
    padding: 4px 0 16px 6px;
}

#video_gallery ul {
    margin: 0px;
    padding: 0px;
}

#video_gallery ul li {
    background: none;
    display: inline-block;
    margin: 0px;
    padding: 0px;
    width: 228px;
}

#video_gallery ul li .vid_title {
    padding: 5px 10px;
    width: 208px;
    overflow: hidden;
    float: left;
    text-decoration: underline;
}

#video_gallery ul li a:hover .vid_title {
    text-decoration: none;
}

#video_gallery .thumbnails {
    background: #FFFFFF;
    border: 1px solid #FFF;
    padding: 3px;
    margin: 10px 0 0 5px;
}

/* Photo Gallery Full */
#gallery_content2 {
    background: #FFF;
    margin: 0 0 20px 0;
    padding: 4px 0 16px 6px;
}

#gallery_content2 ul {
    margin: 0px;
    padding: 0px;
}

#gallery_content2 ul li {
    background: none;
    display: inline;
    margin: 0px;
    padding: 0px;
}

#gallery_content2 .thumbnails {
    background: #FFFFFF;
    padding: 0;
    margin: 10px 1% 0 1%;
    width: 23%;
    height: auto;
}

/* Before and After */
#before_after_gallery ul {
    list-style: none;
}

#before_after_gallery ul li {
    background: none;
    width: 450px;
    float: left;
    margin: 0px 40px 20px 0;
    padding: 0;
}

#before_after_gallery ul li p {
    margin: 0px 0 6px 0;
}

#before_after_gallery ul li.last {
    margin: 0px 0 20px 0;
}

#before_after_gallery ul li .image_holder {
    float: left;
    margin: 0 1%;
    width: 48%;
    text-align: center;
}

#before_after_gallery ul li .image_holder h3 {
    font-style: normal;
    margin: 7px 0 9px 0;
    text-align: center;
}

#before_after_gallery ul li .image_holder .thumbnails {
    background: #FFFFFF;
    border: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
}

#before_after_gallery ul li .last {
    margin: 0;
}

/*
.twentytwenty-container img {
	height:100%;
}
*/
.gallery_container {
    display: flex;
    flex-wrap: wrap;
}

.gallery_item {
    width: 33.33%;
    padding: 2px;
}

/* SOCIAL MEDIA */
.social_media ul {
    float: left;
    margin: 5px 0 0 0;
}

.social_media ul li {
    display: inline-block;
    padding: 3px 5px 0 0;
    margin: 0;
    float: left;
}

/* TOOL TIP STYLES
/* Icon */
a.tooltip {
    text-decoration: none;
    color: #0D2F4F;
}

a.tooltip:hover {
    color: #545454;
}

/* Box */
a.tooltip > span {
    color: #fff;
    background: #0D2F4F;
    width: 200px;
    padding: 10px 15px;
    margin-top: 0;
    margin-left: -40px;
    /* Hidden Position */
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: absolute;
    font-family: Arial;
    font-size: 12px;
    font-style: normal;
    border-radius: 0;
    -webkit-transition-property: opacity, margin-top, visibility, margin-left;
    -webkit-transition-duration: 0.4s, 0.3s, 0.4s, 0.3s;
    -webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
    transition-property: opacity, margin-top, visibility, margin-left;
    transition-duration: 0.4s, 0.3s, 0.4s, 0.3s;
    transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
}

a.tooltip:hover > span {
    opacity: 1;
    text-decoration: none;
    visibility: visible;
    overflow: visible;
    margin-top: 35px;
    display: inline;
    margin-left: -40px;
    /* Reveal Position */
}

/* Arrow */
a.tooltip span b {
    width: 15px;
    height: 15px;
    margin-left: 10px;
    margin-top: -15px;
    display: block;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #0D2F4F;
}

@media (min-width: 600px) {
  .grid_list .grid_item {
		width: calc(50% - 10px);
    margin: 5px;
    position: relative;
  }
}
@media (min-width: 960px) {
    .box_list .box {
        width: calc(33.33% - 10px);
        min-height: 350px;
        margin: 5px;
    }

    .box_list .full {
        width: 100%;
        margin: 0 0% 10px;
        text-align: center;
    }

    .grid_list .grid_item {
    		width: calc(33.3333% - 10px);
        margin: 5px;
        position: relative;
    }

    hr {
        margin: 40px 0;
    }

    .menu_list ul.pages li {
        width: calc(33.33% - 10px);
    }
    .menu_list ul.login_links li {
	    width: 48%;
      margin: 0 1% 10px;
    }

    .content_container .content .editable_content img.people_image {
	    float: left;
	    margin: 0 25px 0 0;
	    width: 225px;
	    height: auto;
    }

    .box_list .comment_box {
        width: 100%;
        margin: 0 0 10px 0;
    }

    .box_list .past_news {
        width: 100%;
        margin: 0 1% 10px;
        text-align: left;
			  background: #F4F4F4;
			  padding: 10px 20px;
			  height: auto;
			  min-height: auto;
    }

    .mobile_register {
        display: none;
    }

    .full_register {
        display: inherit;
    }

    .events_editable_content {
        float: left;
        width: 60%;
    }

    .contact_info ul {
        margin: 5px 1% 15px 1%;
        width: 48%;
        float: left;
    }

    .product_highlight {
        width: 35%;
        float: right;
        margin: 0 0 0 5%;
    }

    .form_holder .third_width {
        width: calc(33.33% - 10px);
        float: left;
    }

    .form_holder .half_width {
        width: 49%;
        margin-right: 1%;
        float: left;
    }

    .form_holder textarea {
        width: 100%;
    }

    .form_holder select {
        width: 100%;
    }

    .grid_list .menu_item {
        width: 31.3333%;
    }

    .filter_list ul li {
        width: 31.3333%;
    }

    .property_highlight {
        width: 35%;
        float: right;
        margin: 0 0 10px 10px;
    }

    .properties_menu ul li {
        width: 25%;
    }

    .box_list .box ul.careers_list li {
        list-style-type: none;
        width: 33.3333%;
        float: left;
        background: none;
        margin: 10px 0 10px 0;
        padding: 0 10px 0 0;
    }

    .content ul.career li {
        width: 33.3333%;
    }
}

/* 600 pixel width */
@media (min-width: 600px) and (max-width: 960px) {
    .box_list .box {
        width: calc(50% - 10px);
        margin: 5px;
    }

    .box_list .full {
        width: 100%;
        margin: 0 0% 10px;
        text-align: center;
    }

    .grid_list .grid_item {
        width: calc(50% - 10px);
        margin: 5px;
    }

    .menu_list ul.pages li {
        width: 48%;
        margin: 0 1% 10px;
    }

    .box_list .comment_box {
        width: 100%;
        margin: 0 0 10px 0;
    }

    .box_list .past_news {
        width: 100%;
        margin: 0 1% 10px;
        text-align: left;
    }

    .grid_list .menu_item {
        width: 48%;
        margin: 0 1% 10px;
        float: left;
    }

    .filter_list ul li {
        margin: 5px 1% 5px 1%;
        width: 48%;
    }

    .showroom_list .box {
        width: 48%;
        margin: 0 1% 10px 1%;
    }

    .showroom_table ul li {
        width: 48%;
    }

    .showroom_features_table ul li {
        width: 48%;
    }

    .properties_menu ul li {
        border-right: 1px solid #FFF;
        box-shadow: 1px 0 0 #FFFFFF;
        border-bottom: none;
        width: 50%;
        float: left;
    }

    .content ul.career li {
        width: 50%;
    }
}

@media (max-width: 800px) {
	.menu_list ul.login_links li {
    width: 100%;
  }
}
@media (max-width: 767px) {
    .gallery_item {
        width: 50%;
        padding: 2px;
    }
}

body.test {
    width: 90%;
    margin: 0 auto;
}

.logo-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
}

.quick-look {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 200px;
}

.quick-look > div {
    width: calc(33.33% - 20px);
}

.quick-look > div small {
    border-bottom: 1px solid #EEE;
    padding-bottom: 5px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
    color: #999;
}

.quick-look > div small:not(:first-child) {
    margin-top: 30px;
}

.colors span {
    display: inline-flex;
    max-width: 33.33%;
    min-height: 80px;
    width: 80px;
    height: auto;
    border-radius: 100%;
    background-color: #000;
    font-size: 12px;
    color: #fff;
    justify-content: center;
    align-items: center;
    margin: 5px;
}

.interactions a {
    display: block;
}

span.main {
    background-color: #0D2F4F;
}

span.secondary {
    background-color: #0D2F4F;
}

span.third {
    background-color: #015F73;
}

span.dark {
    background-color: #545454;
}

span.light {
    background-color: #FFF;
}

span.success {
    background-color: var(--success);
}

span.info {
    background-color: var(--info);
}

span.warning {
    background-color: var(--warning);
}

span.danger {
    background-color: var(--danger);
}

span.dark-grey {
    background-color: var(--dark-grey);
}

span.blue {
    background-color: var(--blue);
}

.quick-look > div small.kitchen {
    margin-top: 40px;
}


a[href] {
    text-decoration: none;
}
/* Links & Custom Icons 
a[href]::after, a[href]::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-left: 5px;
}

a[href$=".doc"]::after {
    content: "\f1c2";
}

a[href$=".pdf"]::before {
    content: '\f1c1';
}

a[href$=".mp3"] {
    content: '\f001';
}

a[href$=".zip"] {
    content: '\f1c6';
}

a[href$=".rss"]::after {
    content: '\f09e';
}

a[href$=".xls"]::after, a[href$=".csv"]::after {
    content: '\f1c3';
}

.success, .success a {
    color: var(--success);
}

.warning, .warning a {
    color: var(--warning);
}

.danger, .danger a {
    color: var(--danger);
}

.info, .info a {
    color: var(--info);
}

.success a, .warning a, .danger a, .info a {
    text-decoration: underline;
}

blockquote {
    background-color: #eee;
    padding: 10% 30px;
    position: relative;
}

blockquote::after {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.4;
    font-size: 30px;
}

blockquote {
    background-color: #eee;
    padding: 10% 30px;
    position: relative;
}

blockquote::after {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.4;
    font-size: 30px;
}
 Links & Custom Icons */

table * {
    padding: 5px;
}

/* 4. External Styles
********************/
body {
    overflow-x: hidden !important;
    width: 100%;
}

@media (max-width:767px) {
    #signature .signature_content span {
        display:none;
    }

    #signature .signature_content a {
        display: block;
    }
}

.recent-news h2, 
.contact-home h2 {
    margin-bottom: 40px;
}

@media (max-width:960px) {
	.recent-news h2, 
	.contact-home h2 {
		margin:0;
	}	
}

.map_holder iframe {
    filter: grayscale(100%);
}

.jqueryslidemenu {
    width: 100%;
    margin: 0px;
    padding: 0px 0px 0px 35px;
    background: #0078C1;
    font-family: 'Oswald', sans-serif;
    flex-wrap: wrap;
}

.jqueryslidemenu ul li ul li:hover {
    background-color: var(--blue);
}

.jqueryslidemenu ul li ul li:hover a {
    color:#fff;
}

@media (max-width: 1280px) {
    .jqueryslidemenu a.logo {
        width: 270px;
        margin-right: 40px;
    }

    .jqueryslidemenu ul li {
        padding-right: 0px;
    }

    .jqueryslidemenu ul li a {
        font-size: 0.28rem;
    }
}

.inner_header {
    position: relative;
}

.inner_header::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* Home Intro */
.home-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-intro-content {
	width: calc(60% - 20px);
	text-align: center;
	margin: 0 auto;
}

.home-intro-image {
    width: 40%;
    text-align: center;
}
.strip01{
	position: relative;
}
.strip01 .content-welcome{
	position: absolute;
	z-index: 0px;
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  color: #000;
  position: absolute;
  opacity: 0.035;
  left: 0;
	  display: none;
}
.strip01 .content{
	max-width: 1200px;
}
.home-intro-content h1{
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3d3d3d;
}
.home-intro-content h1 span{
	color: #0D2F4F;
}
.home-intro-content p {
    margin: 8px 0px;
}

/* Home Intro Image */
.home-intro-image svg {
    width: auto;
		max-width:90%;
		margin:auto;
}

/* Outer Wheel Sections 
**********************/
.blue-cycle {
    stroke-dasharray: 1000;
    stroke:#ddd;
    fill:transparent;
    stroke-dashoffset: 1000;
    animation: mainWheel 5s, 1.5s blueWheel 2s linear forwards;
}

.yellow-cycle {
    stroke-dasharray: 1000;
    stroke:#ddd;
    fill:transparent;
    stroke-dashoffset: 1000;
    animation: mainWheel 5s, 1.5s yellowWheel 2s linear forwards;
}

.teal-cycle {
    stroke-dasharray: 1000;
    stroke:#ddd;
    fill:transparent;
    stroke-dashoffset: 1000;
    animation: mainWheel 5s, 1.5s tealWheel 2s linear forwards;
}
/* Draw Wheel */
@keyframes mainWheel {
  to {
    stroke-dashoffset: 0;
  }
}

/* Blue Wheel */
@keyframes blueWheel {
  to {
    fill: #0D2F4F;
  }
}

/* Yellow Wheel */
@keyframes yellowWheel {
  to {
    fill: #0D2F4F;
  }
}

/* Teal Wheel */
@keyframes tealWheel {
  to {
    fill:#015F73;
  }
}

@media (max-width:960px) {
    .home-intro {
        width:95%;
        margin:0 auto;
    }

    .home-intro .home-intro-content {
        width:100%;
				margin:0 0 40px 0;
    }

    .home-intro .home-intro-image {
        width:100%;
    }

    .home-intro-content h1::after,
    .recent-news h2::after,
    .contact-home h2::after {
        font-size:2rem;
    }
}

/* Home Quick Links Content */
.home-quick-links h3 span {
    font-size: 0.6rem;
    line-height: 0.6rem;
    display: block;
    transition: 0.2s ease;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0px;   
}

.home-quick-links h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 7px;
    position: relative;
    z-index: 99;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    line-height: 0.8rem;
    transition: 0.2s ease;
}

/* Home Quick Links */
.home-quick-links {
    display: flex;
    flex-wrap: wrap;
    text-align:center;
}

.home-quick-links a {
    width:100%;
    padding:9% 10px;
    position:relative;
    background-size: cover;
}

.home-quick-links a {
    background-position:center center;
    cursor:pointer;
}

.home-quick-links a::before {
    content: '';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.2);
    transition:0.2s ease;
}

.home-quick-links a:hover::before {
    background-color: rgba(2, 57, 86, 0.8);
    transition:0.2s ease;
}

.home-quick-links a:hover h3 {
    color: #FFF;
    transition:0.2s ease;
    font-weight:300;
    font-size:0.6rem;
    line-height:0.6rem;
    transition:0.2s ease;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0px; 
}

.home-quick-links a.advice {
    background-image:url(/images/layout/advice_services.jpg)
}

.home-quick-links a.financial {
    background-image:url(/images/layout/financial_professional.jpg)
}

.home-quick-links a.book-consultation {
    background-image:url(/images/layout/book_consultation.jpg)
}

.home-quick-links a:hover h3 span {
    color: #fff;
    font-weight:800;
    font-size:1rem;
    line-height:0.8rem;
    transition:0.2s ease;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 7px;
}

@media (max-width:767px) {
    .home-quick-links a {
        width:100%;
    }    
    .home-quick-links h3 span {
        font-size:0.8rem;
        line-height:0.8rem;
    }
    .home-quick-links h3 {
	    font-size: 1rem;
	    line-height: 1rem;
	    min-height: 50px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    flex-direction: column;
    }
}

/* Recent News */
.contact-home,
.recent-news {
    background-color: #fff;
    padding: 100px 0;
}


@media (max-width:960px) {
	.contact-home,
	.recent-news {
	    padding: 40px 0;
	}	
}

/* Featured News Article */
.box_list {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
}

.featured-news-block {
    width: 100%;
    position:relative;
    background-position:center center;
    text-align:center;
    padding:20px;
    overflow:hidden;
    display: block;
    height: 100%;
}

.featured-news-block::before {
    content: '';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.3);
}

/* Featured News Block Content */
.featured-news-block h1,
.featured-news-block h2,
.featured-news-block h3,
.featured-news-block h4,
.featured-news-block h5,
.featured-news-block h6,
.featured-news-block p {
    color: #fff;
}

.featured-news-content {
    width:calc(100% - 40px);
    margin:0 auto;
    height: 100%;
}

.featured-news-content,
.featured-news-date  {
    position: relative;
}

.featured-news-block .featured-news-details h6 {
    font-size:20px;
    transition:0.3s ease;
}

/* Featured News Block Date */
.featured-news-date {
    background-color: var(--yellow);
    position: absolute;
    right: 0;
    top: calc(50% - 117px);
    transform: rotate(-90deg);
    transform-origin: right bottom;
    display: inline-block;
    padding: 0 30px;
    border-radius: 0px;
    transition: 0.3s ease;
    width: 175px;
    text-align: center;
}

.featured-news-block h3 {
    margin-bottom: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition:0.3s ease;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 8px;
}

.featured-news-details {
    opacity: 0;
    transition:0.3s ease;
}

.featured-news-date h6 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    transition: 0.3s ease;
}

/* Featured News Block Hovers */
@media (min-width:1100px) {
    .featured-news-block:hover h3 {
        top:20px;
        transition:0.3s ease;
    }

    .featured-news-block:hover .featured-news-details {
        opacity:1;
        padding-top:35px;
        transition:0.3s ease;
    }

    .featured-news-block:hover .featured-news-details h6 {
        margin-bottom:0;
        transition:0.3s ease;
    }

    .featured-news-block:hover .featured-news-date {
        right:-55px;
        transition:0.3s ease;
    }
}

@media (max-width:1100px) {
    .featured-news-block {
        width:100%;
        min-height: 250px;
    }
    .featured-news-block .featured-news-details {
        display:none;
    }
    .featured-news-content {
        height: 100%;
    }
    .featured-news-date {
        top: 50%;
        transform:none;
        bottom:0;
        top:initial;
        right:20px;
    }
    .recent-news .box_list {
        margin-top: 40px;
    }
}

/* Home Contact Information */
.contact-home .content{
	
}
.contact-home h2{
	text-align: center;
    margin-bottom: 40px;
}
.contact-home h2 span{
	color: #0D2F4F;
}
.contact-home ul {
    display: flex;
    flex-wrap: wrap;
}

.contact-home ul li {
    width:33.33%
}

.contact-home ul li,
.contact-home ul li a {
    list-style:none;
    text-align:center;
    display:inline-flex;
    flex-direction:column;
}

.contact-home ul li span.image-holder img {
    margin-bottom:20px;
}

.contact-home ul li span.image-holder {
    height:120px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.contact-home ul li span {
    font-weight:600;
    text-transform:uppercase;
    font-size: 0.35rem;
    line-height: 0.35rem;
}

.contact-home ul {
    display: flex;
    flex-wrap: wrap;
}

.contact-home ul li {
    width:33.33%
}

.contact-home ul li,
.contact-home ul li a {
    list-style:none;
    text-align:center;
    display:inline-flex;
    flex-direction:column;
		color:inherit;
}

.contact-home ul li span.image-holder img {
    margin-bottom:20px;
}

.contact-home ul li span.image-holder {
    height:120px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.contact-home ul li span {
    font-weight:600;
    text-transform:uppercase;
    font-size: 0.35rem;
    line-height: 0.35rem;
}

@media (max-width:767px) {
    .contact-home ul li {
        width:100%;
        margin:20px 0;
    }    
    .contact-home ul li span.image-holder img {
        max-height:50px;
        width:auto;
    }
    .contact-home ul li span.image-holder {
        height:auto;
    }
}

/* Inners 
********/

/* Bottom CTA Button */
.bottom-cta {
    background-color: #f5f5f5;
    padding: 30px 0;
    text-align: center;
}

.bottom-cta a {
  border-radius: 0px;
  display: inline-block;
  padding: 6px 40px 5px 40px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 600;
}

.bottom-cta a:hover {
    background-color:var(--blue);
}

body.no-cta .bottom-cta {
    display:none;
}

/* Filters */
.filter a {
    display: inline-block;
    background-color: var(--blue);
    border-radius: 5px;
    padding: 5px 20px;
    color: #fff;
    font-weight: 400;
		transition:0.3s ease;
}

.filter a:hover,
.filter a.current {
    background-color:var(--yellow);
    color: var(--blue);
		transition:0.3s ease;
}

#menu .mm-list a {
    /* font-size: 0.45rem;
    line-height: 0.7rem; */
}

.menu_list ul.pages {
    padding: 0;
}

/* Back To Top 
*************/
a.back-top {
    position: fixed;
    bottom: 55px;
    right: 5px;
    text-decoration: none;
    transition: 0.3s ease;
    visibility: hidden;
    z-index: 999;
}
@media screen and (min-width: 500px){
	a.back-top {
    right: 30px;
	}	
}
a.back-top.rt-active {
    visibility: visible;
}

a.back-top i {
    font-size: 20px;
    color: #fff;
    background-color: var(--yellow);
    transform:scale(1);
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    position: relative;
    top: 100px;
}

a.back-top:hover i {
    background-color: #215D86;
    transform:scale(1.2);
    transition: 0.3s ease;
}

a.back-top.rt-active i {
    top: 0;
    transition: 0.3s ease;
}

.before-after-wrapper h4 {
    margin: 10px 0;
    font-size: 0.6rem;
    line-height: 0.65rem;
}

.menu_list.about-list ul.pages li {
    width: calc(50% - 10px);
    margin:5px;
}

@media (max-width:960px) {
    .menu_list.about-list ul.pages li {
        width: calc(50% - 10px);
    }    
}

@media (max-width:767px) {
    .menu_list.about-list ul.pages li {
        width: 100%;
    }    
}


/* Additional Styles */
.top-header{
	width: 100%;
	padding: 8px 0px;
  background: #062940;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.top-header .top-location{
	float: left;
	font-size: 14px;
	line-height: 14px;
	color: #FFFFFF;
  padding: 0px 0px 0px 35px;
}
.top-header .top-contact{
	float: right;
	font-size: 14px;
	line-height: 14px;
	color: #FFFFFF;
}
.top-header .top-contact .top-phone{
	float: left;
  padding: 0px 15px;
	border-right: 1px solid #FFFFFF;
}
.top-header .top-contact .top-phone a{
	color: #FFFFFF;
}
.top-header .top-contact .top-phone a:hover{
	color: #FFC32A;
}
.top-header .top-contact .top-email{
	float: left;
  padding: 0px 35px 0px 15px;
}
.top-header .top-contact .top-email a{
	color: #FFFFFF;
}
.top-header .top-contact .top-email a:hover{
	color: #FFC32A;
}
.bottom-cta{
	
}
.bottom-cta .bottom-cta-content{
	
}
.bottom-cta .bottom-cta-content h3{
	margin-bottom: 30px;
}
/* Review Design */
.widget_reviews{
	
}
.widget_reviews ul.reviews{
	
}
.widget_reviews ul.reviews img{
  float: left;
  width: 155px;
  height: auto;
  padding: 0px 30px 0px 0px;
  display: none;
}
.widget_reviews ul.reviews li{
	list-style: none;
  /* border-left: 4px solid #e5e5e5; */
  padding: 0px 0px 0px 0px;
  /* margin-left: 155px; */
}
.widget_reviews ul.reviews li p{
	
}
.widget_reviews ul.reviews li .name{
  font-family: 'Oswald', sans-serif;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  margin-top: 20px;
  padding-bottom: 20px;
  color: #215D86;
}
/* Insight Design */
.filter{
  border-bottom: 4px solid #e8e8e8;
  margin-bottom: 30px;
}
.content_container .filter a {
  display: inline-block;
  background: none;
  border-radius: 0px;
  padding: 2px 5px 1px 12px;
  color: var(--blue);
  font-weight: 400;
  transition: 0.3s ease;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  margin: 0px 3px 0px 0px;
  border: 2px solid var(--blue);
  border-bottom: none;
  text-decoration: none;
}
.content_container .filter a:hover, .filter a.current {
    background-color: var(--blue);
    color: #FFFFFF;
    transition: 0.3s ease;
}
.box_list .insight-box img {
    border: none;
    background: #FFFFFF;
    padding: 0;
    margin: 0 0 10px 0;
    float: none;
    max-width: 250px;
    max-height: 80%;
    width: auto;
    height: auto;
}
.box_list .insight-box a.insight-image{
	width: 250px;
	height: 187.5px;
	display: block;
  margin: 0px auto 15px;
  position: relative;
}
.box_list .insight-box:hover a.insight-image{
	
}
.box_list .insight-box a.insight-image i{
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  padding: 0px 0px;
  font-size: 22px;
  line-height: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.box_list .insight-box:hover a.insight-image i{
  background: rgba(0,0,0,0.2);
  color: #0D2F4F;
  border: 2px solid #0D2F4F;
}
/* Contact Design */
.contact-strip{
	background: #F4F4F4;
}
.contact-strip .contact_info{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	flex-direction: row-reverse;	
}
.contact-strip .contact_info .multi_maps{
  width: 100%;
  margin: 0 0 20px;
  float: left;
}
.contact-strip .contact_info .multi_maps .multi_map{
	width: 100%;
	float: left;
	margin: 0 0 20px;
	text-align: center;
	background: #FFFFFF;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.contact-strip .contact_info .multi_maps .multi_map:hover{
	box-shadow: 0px 0px 12px rgba(0,0,0,0.1);
}
.contact-strip .contact_info .multi_maps .multi_map .content{
	padding: 20px 0;
}
.contact-strip .contact_info .multi_maps .multi_map .content h3{
  font-size: 30px;
  line-height: 30px;
  margin: 0px 0px 20px 0px;
  letter-spacing: 8px;
}
.contact-strip .contact_info .multi_maps .multi_map .content ul{
	float: none;
	width: 100%;
	margin: 0px 0px 0px 0px;
}
.contact-strip .contact_info .multi_maps .multi_map .content ul li{
	width: 100%;
}

@media screen and (min-width: 960px){
	.contact-strip .contact_info .multi_maps .multi_map{
		margin: 0 5px;
		float: left;
		width:calc(50% - 10px);
	}
}

.inner_header h3,
.form_response .inner_header::after {
  color: #FFFFFF;
  margin-bottom: 0px;
  font-size: 24px;
  line-height: 24px;
  position: relative;
  z-index: 1;
  padding: 0px 20px;
}
.inner_header p{
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  padding: 0px 55px;
  display: none;
}
.box_list .last-box{
	display: none;
}
a.start-convo{
  display: block;
  position: fixed;
  padding: 11px 20px;
  background: #0D2F4F;
  color: #FFFFFF;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  top: calc(100% - 43px);
  /* right: -181px; */
  z-index: 900;
  /* transform: rotate(-90deg); */
  font-weight: 600;
  width: 100%;
  text-align: center;
}
a.start-convo:hover{
	background: #215D86;
}
.bottom-cta .bottom-cta-content h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3d3d3d;
    margin-bottom: 0px; 
    padding: 0px 20px;
}
.bottom-cta .bottom-cta-content h1 span {
    color: #0D2F4F;
}
.grid_list .service_item{
	height: 225px;
}
#menu .mm-list a.mm-subopen{
	width: 40px;
}
.content_container a{
	text-decoration: underline;
}
.content_container a:hover{
	text-decoration: none;
}

@media screen and (min-width: 600px){
	.strip01 .content-welcome {
	  font-size: 150px;
	  display: inherit;
	}
}
@media screen and (min-width: 960px){
	.strip01 .content-welcome {
	  font-size: 200px;
	}
	.home-quick-links a {
    width:33.33%;
    padding:9% 10px;
    position:relative;
	}
	.box_list .last-box{
		display: block;
	}
	.contact-home h2 {
    font-size: 40px;
    line-height: 40px;
	}
	.recent-news h2 {
	  font-size: 40px;
	  line-height: 40px;
	}
	.content_container .filter a {
	  display: inline-block;
	  background: none;
    border-radius: 0px;
	  padding: 5px 14px 3px 20px;
	  color: var(--blue);
	  font-weight: 400;
	  transition: 0.3s ease;
	  font-family: 'Oswald', sans-serif;
	  letter-spacing: 5px;
	  text-transform: uppercase;
	  font-weight: 400;
	  font-size: 16px;
	  text-align: center;
	  margin: 0px 10px 0px 0px;
	  border: 2px solid var(--blue);
	  border-bottom: none;
	}
	a.start-convo{
	  display: block;
	  padding: 8px 20px;
	  letter-spacing: 4px;
	  text-transform: uppercase;
	  font-size: 14px;
	  top: 50%;
	  right: -166px;
	  z-index: 15;
	  transform: rotate(-90deg);
	  font-weight: 600;
	  width: auto;
	}
	#signature {
    background: #B8ACA1;
    margin: 0;
    padding: 10px 10px 10px 10px;
	}
	a.back-top {
    bottom: 30px;
	}
	.inner_header h3,
	.form_response .inner_header::after {
	  font-size: 32px;
	  line-height: 32px;
	}
	.widget_reviews ul.reviews img{
	  float: left;
	  width: 155px;
	  height: auto;
	  padding: 0px 30px 0px 0px;
	  display: block;
	}
	.widget_reviews ul.reviews li{
		list-style: none;
	  border-left: 4px solid #e5e5e5;
	  padding: 0px 0px 0px 30px;
	  margin-left: 155px;
	}
	.contact-strip .contact_info .multi_maps{
	  /*
	  width: 48%;
	  margin: 0px 1%;
	  */
	  width: 98%;
	  margin: 0px 1% 20px;
	  float: left;
	}
	.bottom-cta .bottom-cta-content h1 {
	    font-family: 'Oswald', sans-serif;
	    font-weight: 400;
	    font-size: 40px;
	    line-height: 40px;
	    letter-spacing: 2px;
	    text-transform: uppercase;
	    color: #3d3d3d;
	    margin-bottom: 0px;
	}
}
@media screen and (min-width: 1200px){
	
}




.box_list .box .person-title a {
    text-transform: uppercase;
    color: #3d3d3d;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 20px;
    line-height: 20px;
}
.box_list .job_title {
    color: #0D2F4F;
    margin: -3px 0 2px 0;
    font-size: 14px;
    line-height: 18px;
}
.box_list .job_credentials{
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  color: #0D2F4F;
}
.box_list .person-box{
	margin-bottom: 30px;
}
@media screen and (min-width: 960px){
	.box_list .person-box{
		margin-bottom: 30px;
	}	
}
.person_email{
	width: 50%;
	float: left;
    border-right: 2px solid #cccccc;
    text-align: right;
    padding-right: 20px;
}
.person_email a i:hover{
	color: #0078C1;
}
.person_link{
	width: 50%;
	float: left;
	text-align: center;
    text-align: left;
    padding-left: 25px;
}
.person_link a i:hover{
	color: #0078C1;
}
a.person-btn{
    width: auto;
    padding: 5px 30px;
}
a.person-btn:hover{
	
}


.person-info{
	
}
.person-info .person-title {
    text-transform: uppercase;
    color: #3d3d3d;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 40px;
    line-height: 45px;
}
.person-info .job_title {
    color: #0D2F4F;
    margin: 0px 0 2px 0;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
}
.person-info .job_credentials{
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #0D2F4F;
}
.person-info .person_email{
    width: 50px;
	float: left;
    border-right: 2px solid #cccccc;
    text-align: right;
    padding-right: 20px;
}
.person-info .person_email a i:hover{
	color: #0078C1;
}
.person-info .person_link{
    width: 50px;
	float: left;
	text-align: center;
    text-align: left;
    padding-left: 25px;
}
.person-info .person_link a i:hover{
	color: #0078C1;
}
.person-info a.person-btn{
    width: auto;
    padding: 5px 30px;
}
.person-info a.person-btn:hover{
	
}
@media screen and (min-width: 960px){
	.person-info{
	  display: flex;
	  align-items: center;
	  height: 225px;
	}	
}

.multi_map iframe {
    height: 250px;
}

@media (max-width:767px) { 
    .contact-strip .contact_info {
        flex-direction: column-reverse;
    }
}

.team-inner .inner_header {
    display: none;
}

.team-inner .content_container {
    min-height: 80vh;
}

.form_response .inner_header::after {
    /*content: 'Form Repsonse';*/
    color:#fff;
		position:relative;
		z-index:99;
}

.home-intro-content figure {
    display: inline-block;
    width: 50%;
    padding-top:30px;
}

@media (max-width:767px) {
    .home-intro-content figure {
        width:100%;
        margin:10px 0;
    }    
}

.bottom-cta .bottom-cta-content img {
    width: 300px;
}

.enriching-affiliates {
    padding: 60px 0;
}

.social_media ul {
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    float: none;
}

.social_media ul li {
    display:inline-flex;
    width:auto;
}

.social_media ul li a {
    display: inline-flex;
    background-color: #0D2F4F;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    transition:0.3s ease;
}

.social_media ul li a:hover {
    background-color: #215D86;
    transition:0.3s ease;
}

.contact-strip  .contact_info ul {
    width: 100%;
}

.contact-strip  .contact_info ul li a {
    text-decoration:none;
}

@media (max-width:767px) {
    .contact-strip  .contact_info ul {
        order:-1;
    }
}
.team_filter {
	margin-bottom: 40px;
}
.team_filter li {
	list-style: none;
	width: calc(100% - 8px);
	font-size: 16px;
	line-height: 18px;
	cursor: pointer;
	background: none;
	color: #fff;
	margin: 0 4px 8px;
	height: 60px;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	float: left;
	background: #215D86;
	padding: 0 10px;
	border-radius: 0;
}
.team_filter li.last-item{
	width:calc(100% - 8px);
}
.team_filter li.active {
	font-weight: 500;
	background: #02334D;
	color: #FFF;
}
@media screen and (min-width: 600px){
	.team_filter li {
		width:calc(50% - 8px);
	}
	.team_filter li.last-item{
		width:calc(50% - 8px);
	}
}
@media screen and (min-width: 960px){
	.team_filter li {
		width:calc(50% - 8px);
	}
}


@media screen and (min-width: 960px){
	.commentary a.superbutton {
		width:calc(50% - 5px);
	}
}

.grid_list .login_item{
	height: 300px;
	width:calc(50% - 10px);
	background: #0D2F4F;
}
.grid_list .login_item .title{
	background-color: #0D2F4F;
}
.grid_list .login_item .title:hover {
    background-color: #0D2F4F;
}
.grid_list .login_item .title a {
	display: inline;
	padding: 105px 0;
}
.grid_list .login_item .title a i{
	font-size: 65px;
}

@media screen and (max-width: 800px){
	.grid_list .login_item{
		height: 300px;
		width:100%;
	}
}
@media screen and (max-width: 450px){
	.grid_list .login_item{
		height: 200px;
	}
	.grid_list .login_item .title a {
		padding: 55px 0;
	}
}
.sponsor {
  position: relative;
  left: -35px;
  margin-right: -50px;
  padding: 5px;
  width: calc(100% + 50px);
  text-align: center;
  background: var(--yellow);
  z-index: 0;
}
.sponsor p {
  margin: 0;
  color: #FFF;
  letter-spacing: 1.1px;
  font-weight: 400;
}
@media (max-width: 1124px) {
  div.sponsor {
    position: absolute;
    left: 0;
    margin-right: 0;
    padding: 7px 0;
    width: 100%;
    text-align: center;
    background: var(--yellow);
    z-index: 0;
    margin-top: 10px;
  }
  div.sponsor p {
    margin: 0;
    color: #FFF;
    letter-spacing: 1.1px;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
		line-height: 14px;
		font-family: 'Oswald', sans-serif;
  }
  /*
  div.banner-scroll-down-container {
    margin-top: 28px;
  }
  */
}
@media (max-width: 490px) {
  /*
  div.banner-scroll-down-container {
    margin-top: 42px;
  }
  */
}
.jqueryslidemenu ul li a.login_btn,
#menu .mm-list a.login_btn {
  display: flex;
  align-items: center;
  border-bottom: 3px solid #066EB7;
}
.login_btn figure {
  margin-right: 5px;
}
.login_btn figure img {
  width: 25px;
  height: auto;
}