/* 
	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);
:root {
  --success: #54B247;
  --info: #72A7CF;
  --warning: #F38E25;
  --danger: #DD280A;
  --dark-grey: #4D4D4D;
  --blue: #F82A3F;
  --red: #D30020;
  --open: 'Open Sans', sans-serif;
}

/*9
	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: #D30020;
  color: #FFF;
}

::selection {
  background: #D30020;
  color: #FFF;
}

/* Try To Remove Background - Footer Fix */
body {
  background: #4B4A4A;
  color: #2b2b2b !important;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  text-shadow: none;
  -webkit-text-size-adjust: none;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0;
  font-family: "Open Sans", sans-serif;
  color: #A7A7A7;
  color-adjust: economy;
}

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

a {
  color: #D30020;
}

a:hover {
  color: #3E3A3A;
}

.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: #D30020;
  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: #D30020;
}

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

.menu_section_nav {
  background-color: #D30020;
  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 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
}

@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: 60px;
  line-height: 1.2rem;
  font-family: "Open Sans", sans-serif;
  color: #2C2929;
  margin-bottom: 5px;
}

h2,
.h2 {
  font-size: 45px;
  font-size: 0.9rem;
  line-height: 55px;
  line-height: 1.1rem;
  font-family: "Open Sans", sans-serif;
  color: #D30020;
  margin-bottom: 5px;
  font-weight: 400;
}

h3,
.h3 {
  font-size: 40px;
  font-size: 0.8rem;
  line-height: 50px;
  line-height: 1rem;
  font-family: "Open Sans", sans-serif;
  color: #2C2929;
  margin-bottom: 5px;
  font-style: italic;
}

h4,
.h4 {
  font-size: 35px;
  font-size: 0.7rem;
  line-height: 45px;
  line-height: 0.9rem;
  font-family: "Open Sans", sans-serif;
  color: #D30020;
  margin-bottom: 5px;
  font-weight: 400;
  font-style: italic;
}

h5,
.h5 {
  font-size: 30px;
  font-size: 0.6rem;
  line-height: 40px;
  line-height: 0.8rem;
  font-family: "Open Sans", sans-serif;
  color: #2C2929;
  margin-bottom: 5px;
}

h6,
.h6 {
  font-size: 28px;
  font-size: 0.56rem;
  line-height: 35px;
  line-height: 0.7rem;
  font-family: "Open Sans", sans-serif;
  color: #D30020;
  margin-bottom: 5px;
  font-weight: 400;
}

/* Navigation */
#menu .mm-list a,
.jqueryslidemenu ul li a {
  color: #2C2929;
  font-weight: 600;
  padding: 15px 20px;
  text-decoration: none;
  display: 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: .5rem;
}

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

.content_container {
  width: 100%;
  padding: 30px 20px;
  background: #FFFFFF;
}

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

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

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

.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: block;
  overflow: scroll;
}

.editable_content table tr th,
.editable_content table thead tr td {
  font-weight: bold;
  border: 1px solid #D30020;
  color: #FFFFFF;
  background: #D30020;
  padding: 8px 8px 8px 8px;
}

.editable_content table tr td {
  border: 1px solid #FFF;
  padding: 8px 8px 8px 8px;
}

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

/* --- 3.2 Header --- */
.full_header {
  position: relative;
  display: none;
  width: 100%;
  z-index: 999;
  background-color: #fff;
}

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

.inner_header {
  width: 100%;
  height: 60px;
  background: url(../images/layout/inner_header.jpg) center center no-repeat;
  background-size: cover;
}

/* --- 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;
}

.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: #4B4A4A;
  position: absolute;
  text-decoration: none;
}

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

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

.mobile_header .logo_area img {
  height: auto;
}

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

.mobile_photo_video {
  display: inherit;
}

.full_photo_video {
  display: none;
}

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

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

#signature .signature_content {
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
}

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

.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_header {
    display: none;
  }
  .full_header {
    display: inherit;
  }
  .header_spacer {
    height: 82px;
  }
  .inner_header {
    height: 150px;
  }
  .mobile_photo_video {
    display: none;
  }
  .full_photo_video {
    display: inherit;
  }
  .content_container {
    padding: 100px 20px;
  }
}

/* ---- 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-color: #4B4A4A;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

h5.toggle_faq {
  color: #2C2929;
}

/* Standard Lines */
i.faq-icon {
  display: block;
  height: 2px;
  width: 15px;
  background-color: white;
  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;
}

h5.toggle_faq.active span {
  background-color: #D30020;
}

#page h5.toggle_faq.active {
  color: #D30020;
}

@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;
  flex-direction: row-reverse;
}

.home_banner_content {
  width:60%;
}

.home_banner_image {
  width: 40%;
}

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

.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: 350px;
  }
}

/* 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: #D30020;
  transition: 0.3s ease;
}

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

a.button,
button.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: #D30020;
  transition: 0.3s ease;
}

a.button:hover,
button.superbutton:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #3E3A3A;
  transition: 0.3s ease;
}

a.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: #D30020;
  transition: 0.3s ease;
}

a.superbutton:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #3E3A3A;
  transition: 0.3s ease;
}

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

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

a.cart_button_mobile {
  position: fixed;
  top: 47px;
  right: 60px;
  background: #D30020;
  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: #3E3A3A;
  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;
}

input.superbutton[type="submit"] {
  padding: 20px;
  background-color: #D30020;
  color: #fff;
  transition: 0.3s ease;
}

input.superbutton[type="submit"]:hover {
  background-color: #4B4A4A;
  transition: 0.3s ease;
}

/* 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: "Open Sans", 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: 15px;
  width: 98%;
  margin: 0 1% 10px;
  text-align: center;
}

.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: #D30020;
}

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

.box_list .featured {
  background-color: rgba(211, 0, 32, 0.3);
}

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

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

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

.box_list .box .title a {
  font-weight: 700;
  text-transform: uppercase;
  color: #D30020;
  text-decoration: none;
}

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

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

.box_list .job_title {
  color: #ADA1A1;
  margin: -5px 0 0 0;
}

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

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

.box_list .box .price {
  color: #D30020;
  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: #D30020;
  padding: 0 5px 0 0;
}

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

.box_list .box .special {
  font-style: italic;
  color: #4B4A4A;
  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: #D30020;
  float: right;
}

.box_list .product_highlight {
  margin: 0;
}

.box_list .product_highlight .alert {
  float: right;
  color: #ADA1A1;
  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: #ADA1A1;
}

.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: #D30020;
  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: #D30020;
}

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

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

.box_list .box .alert_overlay {
  background-color: rgba(211, 0, 32, 0.3);
  padding: 2px 5px;
  margin-bottom: 5px;
  color: #D30020;
}

.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: #D30020;
}

.box_list .box .alert_overlay i {
  color: #D30020;
  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: #ADA1A1;
}

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

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

.box_list .box .date_box .day_of_week, .content .date_box .day_of_week {
  color: #D30020;
  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: #D30020;
  font-size: 0.6rem;
  padding: 0;
}

.box_list .box .date_box .year, .content .date_box .year {
  color: #D30020;
  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: #D30020;
  font-size: 12px;
}

.box_list .box ul.date_list li {
  background: none;
  display: inline;
  list-style: none;
  color: #D30020;
  border-left: 1px solid #D30020;
  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: #D30020;
  border-bottom: 1px solid #4B4A4A;
}

.box_list .box ul.eventdata_list li {
  background: none;
  list-style: none;
  color: #4B4A4A;
  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: #4B4A4A;
}

.box_list .address {
  color: #D30020;
}

.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: #D30020;
}

.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: #4B4A4A;
  margin: 0px 0 5px 0;
}

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

/* Past News */
.box_list .past_news {
  width: 100%;
  margin: 0 0 10px;
  text-align: left;
}

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

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

.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: #D30020;
  text-decoration: underline;
}

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

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

.contact_info h6 {
  color: #D30020;
  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: #4B4A4A;
  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: #D30020;
  float: left;
  padding: 8px 10px;
}

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

#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: #D30020;
}

.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: #D30020;
  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: #4B4A4A;
  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 */
h2#form {
  font-size: 0.4rem;
  line-height: 0.4rem;
  color: #D30020;
  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,
.form_holder textarea {
  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 #bbb;
  color: #4B4A4A;
  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: #4B4A4A;
  outline: none;
}

.form_holder select {
  font-weight: 300;
  width: 100%;
  height: 36px;
  padding: 5px 0;
  margin: 1px 0 10px;
  background-color: #FFFFFF;
  border: 1px solid #FFF;
  color: #4B4A4A;
  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: #4B4A4A;
  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: #4B4A4A;
  outline: none;
}

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

.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: #D30020;
}

.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;
}

#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;
}

.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;
  padding-top: 30px;
  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: #fff;
}

.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%;
}

.jqueryslidemenu a.logo {
  float: left;
}

.jqueryslidemenu ul {
  float: right;
  width: 640px;
  margin: 0px auto 0px auto;
  list-style: none;
  border-left: 1px solid #FFF;
  -webkit-box-shadow: inset 1px 0px 0px 0px #F7F7F7;
  -moz-box-shadow: inset 1px 0px 0px 0px #F7F7F7;
  box-shadow: inset 1px 0px 0px 0px #F7F7F7;
}

.jqueryslidemenu ul li {
  position: relative;
  float: left;
  display: inline;
  margin: 0px 0px 0px 0px;
  z-index: 12;
  border-right: 1px solid #FFF;
  -webkit-box-shadow: 1px 0px 0px 0px #F7F7F7;
  -moz-box-shadow: 1px 0px 0px 0px #F7F7F7;
  box-shadow: 1px 0px 0px 0px #F7F7F7;
}

.jqueryslidemenu ul li a:hover,
.jqueryslidemenu ul li:hover a,
.jqueryslidemenu ul li.Selected a,
.jqueryslidemenu ul li.Selected a:hover {
  color: #ADA1A1;
}

/* 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;
  border: 1px solid #FFF;
  border-top: none;
  width: 265px;
  /* WIDTH OF SUB MENU */
}

.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;
  border-top: 1px solid #FFF;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  background: #FFF;
  width: 100%;
  text-align: left;
}

.jqueryslidemenu ul li ul li a {
  color: #4B4A4A;
  line-height: 20px;
  padding: 15px 15px 15px 15px;
  margin: 0px;
  background: none;
}

.jqueryslidemenu ul li:hover ul li a {
  color: #4B4A4A;
  line-height: 20px;
  padding: 15px 15px 15px 15px;
  margin: 0px;
  background: none;
}

.jqueryslidemenu ul li.Selected ul li a:hover,
.jqueryslidemenu ul li ul li a:hover {
  color: #ADA1A1;
  text-decoration: none;
  background: #FFF;
}

.jqueryslidemenu ul li.Selected ul li a:link, .jqueryslidemenu ul li.Selected ul li a:visited {
  color: #4B4A4A;
  background: 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;
}

.grid_list .grid_item {
  width: 98%;
  float: left;
  margin: 0 1% 10px;
}

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

.grid_list .title {
  text-align: center;
  color: #FFFFFF;
  background: #D30020;
  display: flex;
  align-items: center;
  height: 60px;
}

.grid_list .title:hover {
  background: #3E3A3A;
}

.grid_list .title a {
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 15% 5%;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

.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;
}

/* ---- Hours Box Home Page ---- */
.hours_box {
  margin: 0 0 10px 0;
  width: 100%;
}

.hours_box .holder {
  padding: 3px 0 3px 0;
}

.hours_box .holder a {
  color: #D30020;
}

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

.content .location .address {
  background: #4B4A4A;
  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: #D30020;
  float: left;
  text-align: center;
  width: 100%;
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 5px 0;
  text-transform: uppercase;
  font-weight: 700;
}

.menu_list ul.pages li:hover {
  background: #4B4A4A;
}

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

.menu_list ul.pages li a:hover {
  color: #FFFFFF;
}

/* MENU TOGGLER */
h4.menu_toggle, h4.toggle.active.open {
  color: #D30020;
  color: #FFFFFF;
  background: url(/images/layout/toggle-light.png) no-repeat 10px 11px #D30020;
  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: #4B4A4A;
  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: #D30020 !important;
  padding: 15px 2%;
}

.content h2.message_negative {
  width: 96%;
  color: #FFFFFF !important;
  background: #ADA1A1 !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);
}

/* MULTI LOCATIONS */
.multi_maps {
  margin: 0;
}

.multi_maps .multi_map {
  background: #FFF;
  float: left;
  margin: 0px 0 20px 0;
  width: 100%;
}

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

.multi_maps .multi_map 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;
}

.multi_maps .multi_map .content {
  float: left;
  padding: 5px 10px;
}

.multi_map h3 {
  padding: 0;
  color: #D30020;
}

.multi_map ul {
  margin: 5px 0 0 0;
  width: 100%;
  list-style: none;
}

.multi_map ul li {
  margin: 0px;
  padding: 0px 0 6px 0;
}

.multi_map ul li a {
  color: #D30020;
  text-decoration: underline;
}

.multi_map ul li a:hover {
  color: #D30020;
  text-decoration: none;
}

/* 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: #ADA1A1;
}

/* 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: #D30020;
  text-decoration: none;
}

.gallery_holder a:hover .title {
  color: #ADA1A1;
}

.gallery_holder a .description {
  color: #4B4A4A;
}

.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: #4B4A4A;
  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: #D30020;
}

a.tooltip:hover {
  color: #3E3A3A;
}

/* Box */
a.tooltip > span {
  color: #fff;
  background: #D30020;
  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: #D30020;
}

@media (min-width: 960px) {
  .box_list .box {
    width: 31.3333%;
  }
  .box_list .full {
    width: 100%;
    margin: 0 0% 10px;
    text-align: center;
  }
  .grid_list .grid_item {
    width: 31.3333%;
  }
  hr {
    margin: 40px 0;
  }
  .menu_list ul.pages li {
    width: calc(33.3333% - 10px);
  }
  .content_container .content .editable_content img.people_image {
    float: left;
    margin: 0 10px 0 0;
  }
  .box_list .comment_box {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .box_list .past_news {
    width: 48%;
    margin: 0 1% 10px;
    text-align: left;
  }
  .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: 32.3333%;
    margin-right: 1%;
    float: left;
  }
  .form_holder .half_width {
    width: 49%;
    margin-right: 1%;
    float: left;
  }
  .form_holder textarea {
    width: 99%;
  }
  .form_holder select {
    width: 99%;
  }
  .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: 48%;
  }
  .box_list .full {
    width: 100%;
    margin: 0 0% 10px;
    text-align: center;
  }
  .grid_list .grid_item {
    width: 48%;
  }
  .menu_list ul.pages li {
    width: calc(50% - 10px);
    margin: 5px 0;
  }
  .box_list .comment_box {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .box_list .past_news {
    width: 48%;
    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: 767px) {
  .gallery_item {
    width: 50%;
    padding: 2px;
  }
}

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

/* Header Top Container */
.logo-container {
    flex: 1;
}

.header-fixed-container {
    max-width: 1600px;
    margin:0 auto;
}

.header-fixed-container,
.header-quick-contact,
span.hqc-block {
    display:flex;
    align-items: center;
}

.header-fixed-container h4 {
    font-style:normal;
    font-weight:700;
    margin: 0;
    font-size: 0.6rem;
    line-height: 0.6rem;
}

.hqc-block p {
    color: #2C2929;
    font-weight:700;
    line-height: 20px;
    margin: 0;
}

.header-fixed-container h4 span {
  color:initial;
}

.icon-block {
    align-items:center;
}

.icon-block img {
    margin-right: 10px;
}

.bottom-navigation-container {
    display: flex;
    justify-content: center;
    background-color: #F5F5F5;
}

/* Navigation */
.header-fixed-container,
.jqueryslidemenu ul {
    width:95%;
    display:flex;
}

.jqueryslidemenu ul {
    justify-content:center;
    text-transform: uppercase;
    margin:0 auto;
    max-width: 1200px;
}

.jqueryslidemenu ul li {
    width:25%;
    text-align:center;
}

.jqueryslidemenu ul li.Selected a, 
.jqueryslidemenu ul li.Selected a:hover {
    background-color:var(--red);
    color:#fff;
}

span.hqc-block:not(.icon-block) {
    border-left: 2px solid #E8E5E5;
    padding-left: 20px;
    margin-left: 20px;
}

.header-fixed-container.top-container {
    padding: 20px 0;
}

.jqueryslidemenu ul li a:hover {
    color: var(--red);
    transition: 0.3s ease;
}

/* Featured Services */
.featured-services-containers {
    background-color: #fff;
}

.featured-services {
    margin: 0 auto;
    display: flex;
    flex-wrap:wrap;
    margin-top:-100px;
    padding-bottom:100px;
}

.featured-service-card {
    background-color:#fff;
    border:1px solid #D8D6D6;
    border-top:none;
    text-align:center;
    padding: 55px 25px 25px;
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    width:33%;
    position:relative;
    text-decoration: none;
}

.featured-service-card p {
	color:initial;
}

.featured-service-card::before {
    content: '';
    display:block;
    height:15px;
    width:calc(100% + 2px);
    background-color:var(--red);
    position:absolute;
    top:0;
    left:-1px;
}

.featured-service-card:nth-of-type(2) {
    width:34%;
    transform:scale(1.1);
    box-shadow:0px 0px 20px rgba(0,0,0,0.1);
    border-right:none;
    border-left:none;
    border-bottom:none;
    z-index:9;
}

.featured-service-card:nth-of-type(2)::before {
    left:0;
    width:100%;
}

.featured-service-card img {
    padding:0 20px 15px;
    margin-bottom:15px;
    border-bottom:5px solid var(--red);
		max-width:100%;
}

.featured-service-card h6 {
    text-transform:uppercase;
    font-weight:700;
    color:initial;
    font-size:0.4rem;
    line-height:0.4rem;
    margin:0;
}

/* Pseudo Button */
.featured-service-card p::after {
    content: 'Learn More';
    width:150px;
    color:#2C2929;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    margin:10px auto 0;
    display:block;
    border:2px solid #2C2929;
    opacity:0;
    transition:0.3s ease;
}

.featured-service-card:hover p::after,
.featured-service-card:nth-of-type(2) p::after {
    opacity:1;
}

/* Pseudo Button */
.featured-service-card:hover p::after {
    background-color: #2C2929;
    color:#fff;
    transition:0.3s ease;
}

@media (max-width:1300px) {
    .featured-services {
    }
}

@media (max-width:960px) {
    .featured-services {
        width:95%;
    }
    .banner_content .banner_details {
        width: calc(100% - 80px);
        margin: 0 auto;
        text-align: center;
    }        
}

@media (max-width:767px) {
    .featured-services {
        margin-top: 10px;
        padding: 15px 0px;
    }    
    .featured-service-card {        
        width:90% !important;
        transform:none !important;
        margin:10px auto;
        border:none;
        box-shadow:0px 0px 20px rgba(0,0,0,0.1);
    }
    .featured-services-containers {
        background-color: #f5f5f5;
    }
    .featured-service-card p::after,
    .featured-service-card:nth-of-type(2) p::after {
        opacity:1;
    }
}

.home_banner_image {
    position:relative;
}

.home_banner_image::before,
.home_banner_image::after {
    content: '';
    display:block;
    height:40px;
    width:60%;
    position:absolute;
    border:8px solid var(--red);
}

.home_banner_image::before {
    top:15px;
    left:15px;
    border-right:none;
    border-bottom:none;
}

.home_banner_image::after {
    bottom:15px;
    right:15px;
    border-top:none;
    border-left:none;
}

.home_banner_content h1 {
    margin-bottom: 0;
}

.home_banner_content h2 {
    font-style:italic;
    font-weight:400;
    font-size:0.7rem;
    line-height:0.7rem;
}

.home-intro-container {
    background-color: #fff;
    padding-bottom: 60px;
}

/* Featured Portfolios */
.featured-portfolios {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}

.portfolio-featured {
    width: calc(33.33% - 10px);
    text-align: center;
    background-image:url(//placehold.it/800x800);
    background-position:center center;
    position:relative;
    height: 400px;
    display: flex;
    align-items: center;
    text-decoration:none;
		background-size:cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,0.5);
    transition:0.4s ease;
}

.portfolio-featured .portfolio-item {
    z-index:9;
    position:relative;
    width:90%;
    margin:0 auto;
    display: inline-flex;
    flex-direction: column;
}

.portfolio-featured span.content-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position:relative;
    opacity:0;
    height: 0;
    transition:0.4s ease;
}

.featured-portfolios p,
.featured-portfolios span,
.featured-portfolios h4 {
    color:#fff;
    font-style:normal;
}

.featured-portfolios p {
    margin:0;
}

.featured-portfolios h4 {
    text-transform:uppercase;
    font-weight:700;
    font-size:0.5rem;
    line-height:0.55rem;
    margin-bottom: 10px;
}

.featured-portfolios span.button {
    border:2px solid #fff;
    display:inline-block;
    margin-top: 20px;
    padding:3px 20px;
    transition:0.4s ease;
    font-size:16px;
    text-transform:uppercase;
    font-weight:600;
    cursor:pointer;
}

.featured-portfolios span.button:hover {
    background-color:#fff;
    color:var(--red);
    transition:0.4s ease;
}

/* Featured Portfolios Hovers */
.portfolio-featured:hover .portfolio-overlay {
    background-color: rgba(211, 0, 32, 0.8);
    transition:0.4s ease;
}

.portfolio-featured:hover span.content-wrapper {    
    height: 300px;
    opacity:1;
    transition:0.4s ease;
    margin-top:0;
}

@media (max-width:960px) {
    .portfolio-featured span.content-wrapper {
        display:none;
    }    
    .portfolio-featured {
        width:calc(33.33% - 2.5px)
    }    
		.home_banner_system img[alt="We are CWB Certified"] {
		    width: 50px;
		}    
}

@media (max-width:767px) {
    .portfolio-featured {
        width:100%;
        margin:5px 0;
    }    
    .featured-portfolios h4 {
        margin:0;
        font-size:0.75rem;
    }
    .portfolio-featured {
        padding: 30% 20px;
        height: auto;
    }
}

@media (max-width:960px) {
    .home_banner_system {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width:767px) {
    .home_banner_content {
        padding: 0 0 20px;
    }    
}

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

.home-contact .contact-details span {
    width:33.33%;
    display:inline-flex;
    flex-direction:column;
    text-align:center;
    align-items:center;
    color:#A29898;
    font-weight:700;
    letter-spacing:1px;
}

.home-contact .contact-details a {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
}

.home-contact .contact-details span i {
    color:var(--red);
    font-size:45px;
    border:4px solid #3E3A3A;
    border-radius:100%;
    height:80px;
    width:80px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.home-contact .contact-details strong {
    color:var(--red);
    text-transform:uppercase;
    letter-spacing:1px;
    line-height:20px;
}

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

@media (max-width:767px) {
    .home-contact .contact-details span {
        width:100%;
        margin:10px 0;
    }    
    .push-pull {
        display: flex;
        flex-direction: column-reverse;
    }

    .home-intro-container {
        padding: 40px 0;
    }
}2

h2.contact-title {
    text-align: center;
    font-weight: 700;
    color: #3E3A3A;
    margin-bottom: 60px;
    display: flex;
    width: 100%;
    justify-content: center;
}

@media (max-width:767px) {
    h2.contact-title {
        margin-bottom: 20px;
    }
}

#map {
    padding: 15% 0;
    min-height: 300px;
}

.map-container {
    position: relative;
}

.map-container .servicing {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--red);
    padding: 15px 20px;
}

.servicing h3, .servicing p {
    margin: 0;
    color: #fff;
}

.servicing a {
    transition: 0.3s ease;
}

.servicing a:hover {
    color: #fff;
    transition: 0.3s ease;
}

@media (max-width: 960px) {
    .map-container .servicing {
        position: initial;
        display: block;
        background-color: var(--red);
        padding: 20px;
    }
}

/* Contact contact info */
.contact-contact h2.contact-title {
    display: none;
}

/* Services Strip Content */
.strip-services {
    display: flex;
    flex-direction:row;
}

.strip-services:nth-of-type(even) {
    flex-direction:row-reverse;
}

.strip-services > div {
    width:50%;
    text-decoration:none;
    color:initial;
    min-height:300px;
    display:inline-flex;
    flex-direction:column
}

.strip-services .services-content {
    padding:60px 20px;
}

.strip-services .services-image {
    background-repeat:no-repeat;
    background-size:cover;
    background-position: center;
}

.strip-services .services-content h5 {
    margin-bottom: 0;
}

@media (max-width:767px) {
    .strip-services,
    .strip-services:nth-of-type(even) {
        flex-direction:column;
    }
    .strip-services > div {
        width:100%;
        min-height:1px;
        padding: 40px 0;
    }
    .strip-services .services-image {
        min-height:300px;
    }
    .strip-services .services-content {
        padding: 40px 0;
    }
}

.home_banner_system img[alt="We are CWB Certified"] {
    width: 100px;
    margin: 20px 0;
}

/* 
	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);
:root {
  --success: #54B247;
  --info: #72A7CF;
  --warning: #F38E25;
  --danger: #DD280A;
  --dark-grey: #4D4D4D;
  --blue: #F82A3F;
  --red: #D30020;
  --open: 'Open Sans', sans-serif;
}

/*
	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: #D30020;
  color: #FFF;
}

::selection {
  background: #D30020;
  color: #FFF;
}

/* Try To Remove Background - Footer Fix */
body {
  background: #4B4A4A;
  color: #2b2b2b !important;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  text-shadow: none;
  -webkit-text-size-adjust: none;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0;
  font-family: "Open Sans", sans-serif;
  color: #A7A7A7;
  color-adjust: economy;
}

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

a {
  color: #D30020;
}

a:hover {
  color: #3E3A3A;
}

.clear {
  clear: both;
}

.swipebox_full {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: unset;
}

.swipebox_full a {
    width: calc(25% - 10px);
    margin:5px;
}

.swipebox_full a img {
    width:100%;
}

@media (max-width:960px) {
    .swipebox_full a {
        width: calc(33.33% - 10px);
        margin:5px;
    }    
}

@media (max-width:767px) {
    .swipebox_full a {
        width: calc(50% - 10px);
        margin:5px;
    }    
}

/* 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: #D30020;
  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: #D30020;
}

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

.menu_section_nav {
  background-color: #D30020;
  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 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
}

@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: 60px;
  line-height: 1.2rem;
  font-family: "Open Sans", sans-serif;
  color: #2C2929;
  margin-bottom: 5px;
}

h2,
.h2 {
  font-size: 45px;
  font-size: 0.9rem;
  line-height: 55px;
  line-height: 1.1rem;
  font-family: "Open Sans", sans-serif;
  color: #D30020;
  margin-bottom: 5px;
  font-weight: 400;
}

h3,
.h3 {
  font-size: 40px;
  font-size: 0.8rem;
  line-height: 50px;
  line-height: 1rem;
  font-family: "Open Sans", sans-serif;
  color: #2C2929;
  margin-bottom: 5px;
  font-style: italic;
}

h4,
.h4 {
  font-size: 35px;
  font-size: 0.7rem;
  line-height: 45px;
  line-height: 0.9rem;
  font-family: "Open Sans", sans-serif;
  color: #D30020;
  margin-bottom: 5px;
  font-weight: 400;
  font-style: italic;
}

h5,
.h5 {
  font-size: 30px;
  font-size: 0.6rem;
  line-height: 40px;
  line-height: 0.8rem;
  font-family: "Open Sans", sans-serif;
  color: #2C2929;
  margin-bottom: 5px;
}

h6,
.h6 {
  font-size: 28px;
  font-size: 0.56rem;
  line-height: 35px;
  line-height: 0.7rem;
  font-family: "Open Sans", sans-serif;
  color: #D30020;
  margin-bottom: 5px;
  font-weight: 400;
}

/* Navigation */
#menu .mm-list a,
.jqueryslidemenu ul li a {
  color: #2C2929;
  font-weight: 600;
  padding: 15px 20px;
  text-decoration: none;
  display: 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: .5rem;
}

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

.content_container {
  width: 100%;
  padding: 30px 20px;
  background: #FFFFFF;
}

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

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

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

.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: block;
  overflow: scroll;
  table-layout: fixed;
}

.editable_content table tr th,
.editable_content table thead tr td {
  font-weight: bold;
  border: 1px solid #D30020;
  color: #FFFFFF;
  background: #D30020;
  padding: 8px 8px 8px 8px;
}

.editable_content table tr td {
  border: 1px solid #FFF;
  padding: 8px 8px 8px 8px;
}

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

/* --- 3.2 Header --- */
.full_header {
  position: relative;
  display: none;
  width: 100%;
  z-index: 999;
  background-color: #fff;
}

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

.inner_header {
  width: 100%;
  height: 60px;
  background: url(../images/layout/inner_header.jpg) center center no-repeat;
  background-size: cover;
}

/* --- 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;
}

.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: #4B4A4A;
  position: absolute;
  text-decoration: none;
}

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

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

.mobile_header .logo_area img {
  height: auto;
}

.mobile_header {
  display: inherit;
  position: fixed;
  width: 100%;
  z-index: 999;
  border-bottom:2px solid var(--red);
}

.mobile_photo_video {
  display: inherit;
}

.full_photo_video {
  display: none;
}

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

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

#signature .signature_content {
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
}

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

.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_header {
    display: none;
  }
  .full_header {
    display: inherit;
  }
  .header_spacer {
    height: 82px;
  }
  .inner_header {
    height: 150px;
  }
  .mobile_photo_video {
    display: none;
  }
  .full_photo_video {
    display: inherit;
  }
  .content_container {
    padding: 100px 20px;
  }
}

/* ---- 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-color: #4B4A4A;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

h5.toggle_faq {
  color: #2C2929;
}

/* Standard Lines */
i.faq-icon {
  display: block;
  height: 2px;
  width: 15px;
  background-color: white;
  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;
}

h5.toggle_faq.active span {
  background-color: #D30020;
}

#page h5.toggle_faq.active {
  color: #D30020;
}

@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;
  flex-direction: row-reverse;
}

.home_banner_content {
  width:60%;
}

.home_banner_image {
  width: 40%;
}

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

.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: 350px;
  }
}

/* 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: #D30020;
  transition: 0.3s ease;
}

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

a.button,
button.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: #D30020;
  transition: 0.3s ease;
}

a.button:hover,
button.superbutton:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #3E3A3A;
  transition: 0.3s ease;
}

a.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: #D30020;
  transition: 0.3s ease;
}

a.superbutton:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #3E3A3A;
  transition: 0.3s ease;
}

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

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

a.cart_button_mobile {
  position: fixed;
  top: 47px;
  right: 60px;
  background: #D30020;
  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: #3E3A3A;
  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;
}

input.superbutton[type="submit"] {
  padding: 20px;
  background-color: #D30020;
  color: #fff;
  transition: 0.3s ease;
}

input.superbutton[type="submit"]:hover {
  background-color: #4B4A4A;
  transition: 0.3s ease;
}

/* 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: "Open Sans", 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: 15px;
  width: 98%;
  margin: 0 1% 10px;
  text-align: center;
}

.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: #D30020;
}

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

.box_list .featured {
  background-color: rgba(211, 0, 32, 0.3);
}

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

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

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

.box_list .box .title a {
  font-weight: 700;
  text-transform: uppercase;
  color: #D30020;
  text-decoration: none;
}

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

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

.box_list .job_title {
  color: #ADA1A1;
  margin: -5px 0 0 0;
}

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

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

.box_list .box .price {
  color: #D30020;
  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: #D30020;
  padding: 0 5px 0 0;
}

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

.box_list .box .special {
  font-style: italic;
  color: #4B4A4A;
  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: #D30020;
  float: right;
}

.box_list .product_highlight {
  margin: 0;
}

.box_list .product_highlight .alert {
  float: right;
  color: #ADA1A1;
  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: #ADA1A1;
}

.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: #D30020;
  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: #D30020;
}

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

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

.box_list .box .alert_overlay {
  background-color: rgba(211, 0, 32, 0.3);
  padding: 2px 5px;
  margin-bottom: 5px;
  color: #D30020;
}

.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: #D30020;
}

.box_list .box .alert_overlay i {
  color: #D30020;
  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: #ADA1A1;
}

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

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

.box_list .box .date_box .day_of_week, .content .date_box .day_of_week {
  color: #D30020;
  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: #D30020;
  font-size: 0.6rem;
  padding: 0;
}

.box_list .box .date_box .year, .content .date_box .year {
  color: #D30020;
  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: #D30020;
  font-size: 12px;
}

.box_list .box ul.date_list li {
  background: none;
  display: inline;
  list-style: none;
  color: #D30020;
  border-left: 1px solid #D30020;
  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: #D30020;
  border-bottom: 1px solid #4B4A4A;
}

.box_list .box ul.eventdata_list li {
  background: none;
  list-style: none;
  color: #4B4A4A;
  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: #4B4A4A;
}

.box_list .address {
  color: #D30020;
}

.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: #D30020;
}

.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: #4B4A4A;
  margin: 0px 0 5px 0;
}

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

/* Past News */
.box_list .past_news {
  width: 100%;
  margin: 0 0 10px;
  text-align: left;
}

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

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

.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: #D30020;
  text-decoration: underline;
}

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

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

.contact_info h6 {
  color: #D30020;
  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: #4B4A4A;
  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: #D30020;
  float: left;
  padding: 8px 10px;
}

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

#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: #D30020;
}

.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: #D30020;
  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: #4B4A4A;
  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 */
h2#form {
  font-size: 0.4rem;
  line-height: 0.4rem;
  color: #D30020;
  margin: 0px;
  padding: 5px 10px;
}

.form_holder {
  background: none;
  padding: 0;
}

.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,
.form_holder textarea {
  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 #bbb;
  color: #4B4A4A;
  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: #4B4A4A;
  outline: none;
}

.form_holder select {
  font-weight: 300;
  width: 100%;
  height: 36px;
  padding: 5px 0;
  margin: 1px 0 10px;
  background-color: #FFFFFF;
  border: 1px solid #FFF;
  color: #4B4A4A;
  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: #4B4A4A;
  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: #4B4A4A;
  outline: none;
}

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

.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: #D30020;
}

.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;
}

#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;
}

.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;
  padding-top: 30px;
  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: var(--red);
}

.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%;
}

.jqueryslidemenu a.logo {
  float: left;
}

.jqueryslidemenu ul {
  float: right;
  width: 640px;
  margin: 0px auto 0px auto;
  list-style: none;
  border-left: 1px solid #FFF;
  -webkit-box-shadow: inset 1px 0px 0px 0px #F7F7F7;
  -moz-box-shadow: inset 1px 0px 0px 0px #F7F7F7;
  box-shadow: inset 1px 0px 0px 0px #F7F7F7;
}

.jqueryslidemenu ul li {
  position: relative;
  float: left;
  display: inline;
  margin: 0px 0px 0px 0px;
  z-index: 12;
  border-right: 1px solid #FFF;
  -webkit-box-shadow: 1px 0px 0px 0px #F7F7F7;
  -moz-box-shadow: 1px 0px 0px 0px #F7F7F7;
  box-shadow: 1px 0px 0px 0px #F7F7F7;
}

.jqueryslidemenu ul li a:hover,
.jqueryslidemenu ul li:hover a,
.jqueryslidemenu ul li.Selected a,
.jqueryslidemenu ul li.Selected a:hover {
  color: #ADA1A1;
}

/* 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;
  border: 1px solid #FFF;
  border-top: none;
  width: 265px;
  /* WIDTH OF SUB MENU */
}

.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;
  border-top: 1px solid #FFF;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  background: #FFF;
  width: 100%;
  text-align: left;
}

.jqueryslidemenu ul li ul li a {
  color: #4B4A4A;
  line-height: 20px;
  padding: 15px 15px 15px 15px;
  margin: 0px;
  background: none;
}

.jqueryslidemenu ul li:hover ul li a {
  color: #4B4A4A;
  line-height: 20px;
  padding: 15px 15px 15px 15px;
  margin: 0px;
  background: none;
}

.jqueryslidemenu ul li.Selected ul li a:hover,
.jqueryslidemenu ul li ul li a:hover {
  color: #ADA1A1;
  text-decoration: none;
  background: #FFF;
}

.jqueryslidemenu ul li.Selected ul li a:link, .jqueryslidemenu ul li.Selected ul li a:visited {
  color: #4B4A4A;
  background: 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;
}

.grid_list .grid_item {
  width: 98%;
  float: left;
  margin: 0 1% 10px;
}

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

.grid_list .title {
  text-align: center;
  color: #FFFFFF;
  background: #D30020;
  display: flex;
  align-items: center;
  height: 60px;
}

.grid_list .title:hover {
  background: #3E3A3A;
}

.grid_list .title a {
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 15% 5%;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

.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;
}

/* ---- Hours Box Home Page ---- */
.hours_box {
  margin: 0 0 10px 0;
  width: 100%;
}

.hours_box .holder {
  padding: 3px 0 3px 0;
}

.hours_box .holder a {
  color: #D30020;
}

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

.content .location .address {
  background: #4B4A4A;
  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: #D30020;
  float: left;
  text-align: center;
  width: 100%;
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 5px 0;
  text-transform: uppercase;
  font-weight: 700;
}

.menu_list ul.pages li:hover {
  background: #4B4A4A;
}

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

.menu_list ul.pages li a:hover {
  color: #FFFFFF;
}

/* MENU TOGGLER */
h4.menu_toggle, h4.toggle.active.open {
  color: #D30020;
  color: #FFFFFF;
  background: url(/images/layout/toggle-light.png) no-repeat 10px 11px #D30020;
  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: #4B4A4A;
  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: #D30020 !important;
  padding: 15px 2%;
}

.content h2.message_negative {
  width: 96%;
  color: #FFFFFF !important;
  background: #ADA1A1 !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);
}

/* MULTI LOCATIONS */
.multi_maps {
  margin: 0;
}

.multi_maps .multi_map {
  background: #FFF;
  float: left;
  margin: 0px 0 20px 0;
  width: 100%;
}

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

.multi_maps .multi_map 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;
}

.multi_maps .multi_map .content {
  float: left;
  padding: 5px 10px;
}

.multi_map h3 {
  padding: 0;
  color: #D30020;
}

.multi_map ul {
  margin: 5px 0 0 0;
  width: 100%;
  list-style: none;
}

.multi_map ul li {
  margin: 0px;
  padding: 0px 0 6px 0;
}

.multi_map ul li a {
  color: #D30020;
  text-decoration: underline;
}

.multi_map ul li a:hover {
  color: #D30020;
  text-decoration: none;
}

/* 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: #ADA1A1;
}

/* 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: #D30020;
  text-decoration: none;
}

.gallery_holder a:hover .title {
  color: #ADA1A1;
}

.gallery_holder a .description {
  color: #4B4A4A;
}

.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: #4B4A4A;
  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: #D30020;
}

a.tooltip:hover {
  color: #3E3A3A;
}

/* Box */
a.tooltip > span {
  color: #fff;
  background: #D30020;
  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: #D30020;
}

@media (min-width: 960px) {
  .box_list .box {
    width: 31.3333%;
  }
  .box_list .full {
    width: 100%;
    margin: 0 0% 10px;
    text-align: center;
  }
  .grid_list .grid_item {
    width: 31.3333%;
  }
  hr {
    margin: 40px 0;
  }
  .menu_list ul.pages li {
    width: calc(33.3333% - 10px);
  }
  .content_container .content .editable_content img.people_image {
    float: left;
    margin: 0 10px 0 0;
  }
  .box_list .comment_box {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .box_list .past_news {
    width: 48%;
    margin: 0 1% 10px;
    text-align: left;
  }
  .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: 32.3333%;
    margin-right: 1%;
    float: left;
  }
  .form_holder .half_width {
    width: 49%;
    margin-right: 1%;
    float: left;
  }
  .form_holder textarea {
    width: 99%;
  }
  .form_holder select {
    width: 99%;
  }
  .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: 48%;
  }
  .box_list .full {
    width: 100%;
    margin: 0 0% 10px;
    text-align: center;
  }
  .grid_list .grid_item {
    width: 48%;
  }
  .menu_list ul.pages li {
    width: calc(50% - 10px);
    margin: 5px 0;
  }
  .box_list .comment_box {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .box_list .past_news {
    width: 48%;
    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: 767px) {
  .gallery_item {
    width: 50%;
    padding: 2px;
  }
}

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

/* Header Top Container */
.logo-container {
    flex: 1;
}

.header-fixed-container {
    max-width: 1600px;
    margin:0 auto;
}

.header-fixed-container,
.header-quick-contact,
span.hqc-block {
    display:flex;
    align-items: center;
}

.header-fixed-container h4 {
    font-style:normal;
    font-weight:700;
    margin: 0;
    font-size: 0.6rem;
    line-height: 0.6rem;
}

.hqc-block p {
    color: #2C2929;
    font-weight:700;
    line-height: 20px;
    margin: 0;
}

.header-fixed-container h4 span {
  color:initial;
}

.icon-block {
    align-items:center;
}

.icon-block img {
    margin-right: 10px;
}

.bottom-navigation-container {
    display: flex;
    justify-content: center;
    background-color: #F5F5F5;
}

/* Navigation */
.header-fixed-container,
.jqueryslidemenu ul {
    width:95%;
    display:flex;
}

.jqueryslidemenu ul {
    justify-content:center;
    text-transform: uppercase;
    margin:0 auto;
    max-width: 1200px;
}

.jqueryslidemenu ul li {
    width:25%;
    text-align:center;
}

.jqueryslidemenu ul li.Selected a, 
.jqueryslidemenu ul li.Selected a:hover {
    background-color:var(--red);
    color:#fff;
}

span.hqc-block:not(.icon-block) {
    border-left: 2px solid #E8E5E5;
    padding-left: 20px;
    margin-left: 20px;
}

.header-fixed-container.top-container {
    padding: 20px 0;
}

.jqueryslidemenu ul li a:hover {
    color: var(--red);
    transition: 0.3s ease;
}

/* Featured Services */
.featured-services-containers {
    background-color: #fff;
}

.featured-services {
    margin: 0 auto;
    display: flex;
    flex-wrap:wrap;
    margin-top:-100px;
    padding-bottom:100px;
}

.featured-service-card {
    background-color:#fff;
    border:1px solid #D8D6D6;
    border-top:none;
    text-align:center;
    padding: 55px 25px 25px;
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    width:33%;
    position:relative;
    text-decoration: none;
}

.featured-service-card p {
	color:initial;
}

.featured-service-card::before {
    content: '';
    display:block;
    height:15px;
    width:calc(100% + 2px);
    background-color:var(--red);
    position:absolute;
    top:0;
    left:-1px;
}

.featured-service-card:nth-of-type(2) {
    width:34%;
    transform:scale(1.1);
    box-shadow:0px 0px 20px rgba(0,0,0,0.1);
    border-right:none;
    border-left:none;
    border-bottom:none;
    z-index:9;
}

.featured-service-card:nth-of-type(2)::before {
    left:0;
    width:100%;
}

.featured-service-card img {
    padding:0 20px 15px;
    margin-bottom:15px;
    border-bottom:5px solid var(--red);
		max-width:100%;
}

.featured-service-card h6 {
    text-transform:uppercase;
    font-weight:700;
    color:initial;
    font-size:0.4rem;
    line-height:0.4rem;
    margin:0;
}

/* Pseudo Button */
.featured-service-card p::after {
    content: 'Learn More';
    width:150px;
    color:#2C2929;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    margin:10px auto 0;
    display:block;
    border:2px solid #2C2929;
    opacity:0;
    transition:0.3s ease;
}

.featured-service-card:hover p::after,
.featured-service-card:nth-of-type(2) p::after {
    opacity:1;
}

/* Pseudo Button */
.featured-service-card:hover p::after {
    background-color: #2C2929;
    color:#fff;
    transition:0.3s ease;
}

@media (max-width:1200px) {
    .featured-services {
    	margin-top:-50px;
    }
}

@media (max-width:960px) {
    .featured-services {
        width:95%;
    }
    .banner_content .banner_details {
        width: calc(100% - 80px);
        margin: 0 auto;
        text-align: center;
    }        
}

@media (max-width:767px) {
    .featured-services {
        margin-top: 10px;
        padding: 15px 0px;
    }    
    .featured-service-card {        
        width:90% !important;
        transform:none !important;
        margin:10px auto;
        border:none;
        box-shadow:0px 0px 20px rgba(0,0,0,0.1);
    }
    .featured-services-containers {
        background-color: #f5f5f5;
    }
    .featured-service-card p::after,
    .featured-service-card:nth-of-type(2) p::after {
        opacity:1;
    }
}

.home_banner_image {
    position:relative;
}

.home_banner_image::before,
.home_banner_image::after {
    content: '';
    display:block;
    height:40px;
    width:60%;
    position:absolute;
    border:8px solid var(--red);
}

.home_banner_image::before {
    top:15px;
    left:15px;
    border-right:none;
    border-bottom:none;
}

.home_banner_image::after {
    bottom:15px;
    right:15px;
    border-top:none;
    border-left:none;
}

.home_banner_content h1 {
    margin-bottom: 0;
}

.home_banner_content h2 {
    font-style:italic;
    font-weight:400;
    font-size:0.7rem;
    line-height:0.7rem;
}

.home-intro-container {
    background-color: #fff;
    padding-bottom: 60px;
}

/* Featured Portfolios */
.featured-portfolios {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}

.portfolio-featured {
    width: calc(33.33% - 10px);
    text-align: center;
    background-image:url(//placehold.it/800x800);
    background-position:center center;
    position:relative;
    height: 400px;
    display: flex;
    align-items: center;
    text-decoration:none;
		background-size:cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,0.5);
    transition:0.4s ease;
}

.portfolio-featured .portfolio-item {
    z-index:9;
    position:relative;
    width:90%;
    margin:0 auto;
    display: inline-flex;
    flex-direction: column;
}

.portfolio-featured span.content-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position:relative;
    opacity:0;
    height: 0;
    transition:0.4s ease;
}

.featured-portfolios p,
.featured-portfolios span,
.featured-portfolios h4 {
    color:#fff;
    font-style:normal;
}

.featured-portfolios p {
    margin:0;
}

.featured-portfolios h4 {
    text-transform:uppercase;
    font-weight:700;
    font-size:0.5rem;
    line-height:0.55rem;
    margin-bottom: 10px;
}

.featured-portfolios span.button {
    border:2px solid #fff;
    display:inline-block;
    margin-top: 20px;
    padding:3px 20px;
    transition:0.4s ease;
    font-size:16px;
    text-transform:uppercase;
    font-weight:600;
    cursor:pointer;
}

.featured-portfolios span.button:hover {
    background-color:#fff;
    color:var(--red);
    transition:0.4s ease;
}

/* Featured Portfolios Hovers */
.portfolio-featured:hover .portfolio-overlay {
    background-color: rgba(211, 0, 32, 0.8);
    transition:0.4s ease;
}

.portfolio-featured:hover span.content-wrapper {    
    height: 300px;
    opacity:1;
    transition:0.4s ease;
    margin-top:0;
}

@media (max-width:960px) {
    .portfolio-featured span.content-wrapper {
        display:none;
    }    
    .portfolio-featured {
        width:calc(33.33% - 2.5px)
    }    
}

@media (max-width:767px) {
    .portfolio-featured {
        width:100%;
        margin:5px 0;
    }    
    .featured-portfolios h4 {
        margin:0;
        font-size:0.75rem;
    }
    .portfolio-featured {
        padding: 30% 20px;
        height: auto;
    }
}

@media (max-width:960px) {
    .home_banner_system {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width:767px) {
    .home_banner_content {
        padding: 0 0 20px;
    }    
}

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

.home-contact .contact-details span {
    width:33.33%;
    display:inline-flex;
    flex-direction:column;
    text-align:center;
    align-items:center;
    color:#A29898;
    font-weight:700;
    letter-spacing:1px;
}

.home-contact .contact-details a {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    align-items:center;
    color:#2b2b2b;
}

.home-contact .contact-details span i {
    color:var(--red);
    font-size:45px;
    border:4px solid #3E3A3A;
    border-radius:100%;
    height:80px;
    width:80px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.home-contact .contact-details strong {
    color:var(--red);
    text-transform:uppercase;
    letter-spacing:1px;
    line-height:20px;
}

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

@media (max-width:767px) {
    .home-contact .contact-details span {
        width:100%;
        margin:10px 0;
    }    
    .push-pull {
        display: flex;
        flex-direction: column-reverse;
    }

    .home-intro-container {
        padding: 40px 0;
    }
}2

h2.contact-title {
    text-align: center;
    font-weight: 700;
    color: #3E3A3A;
    margin-bottom: 60px;
    display: flex;
    width: 100%;
    justify-content: center;
}

@media (max-width:767px) {
    h2.contact-title {
	    text-align: center;
	    margin-bottom: 0;
    }
}

#map {
    padding: 15% 0;
    min-height: 300px;
}

.map-container {
    position: relative;
}

.map-container .servicing {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--red);
    padding: 15px 20px;
}

.servicing h3, .servicing p {
    margin: 0;
    color: #fff;
}

.servicing a {
    transition: 0.3s ease;
}

.servicing a:hover {
    color: #fff;
    transition: 0.3s ease;
}

@media (max-width: 960px) {
    .map-container .servicing {
        position: initial;
        display: block;
        background-color: var(--red);
        padding: 20px;
    }
}

/* Contact contact info */
.contact-contact h2.contact-title {
    display: none;
}

/* Services Strip Content */
.strip-services {
    display: flex;
    flex-direction:row;
}

.strip-services:nth-of-type(even) {
    flex-direction:row-reverse;
}

.strip-services > div {
    width:50%;
    text-decoration:none;
    color:initial;
    min-height:300px;
    display:inline-flex;
    flex-direction:column
}

.strip-services .services-content {
    padding:60px 20px;
}

.strip-services .services-image {
    background-repeat:no-repeat;
    background-size:cover;
    background-position: center;
}

.strip-services .services-content h5 {
    margin-bottom: 0;
}

@media (max-width:767px) {
    .strip-services,
    .strip-services:nth-of-type(even) {
        flex-direction:column;
    }
    .strip-services > div {
        width:100%;
        min-height:1px;
        padding: 40px 0;
    }
    .strip-services .services-image {
        min-height:300px;
    }
    .strip-services .services-content {
        padding: 40px 0;
    }
}

.home_banner_system img[alt="We are CWB Certified"] {
    width: 100px;
    margin: 20px 0;
}

.menu_list .pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (min-width:960px) {
    .menu_list .pages::after {
        content: '';
        display:block;
        width:33.33%;
    }
}

#menu .mm-list a {
    color: #fff;
}

@media (max-width:960px) {
    .portfolio table tr {
        display:flex;
        flex-direction:column;
    }

    .portfolio table tr td {
        width: 100%;
        padding:0;
        margin:10px 0;
    }
}

@media (max-width:767px) {
    .featured-service-card img {
        padding: 20px 0;
    }	
}

h2.contact-title {
    text-align: center;
}

.contact .editable_content table tr {
    display:inline-flex;
    justify-content:space-between;
    width: 100%;
}

.contact .editable_content table tr td {
    padding: 0;
}

@media (max-width:960px) {
    .contact .editable_content table tr {
        width: 100%;
        flex-wrap: wrap;
    }    
    .contact .editable_content table tr td {
        width:100%;
        flex:initial;
    }
}

.contact tbody {
    display: inline-flex;
    justify-content: space-between;
}