/*!
Theme Name: ele
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ele
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.


Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

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

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #3c3c3c;
	font-family: "Fira Sans Condensed",sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	/*box-sizing: inherit;*/
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

blockquote, q {
	quotes: "" "";
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	/*border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;*/
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	/*border-color: #ccc #bbb #aaa;*/
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	/*border-color: #aaa #bbb #bbb;*/
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	/*color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;*/
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	/*color: #111;*/
}

select {
	/*border: 1px solid #ccc;*/
}

textarea {
	/*width: 100%;*/
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover, a:focus, a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 0 0;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 0 0 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}







/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html, body {font-family: 'Fira Sans Condensed', sans-serif;font-size:16px;color:#3C3C3C;font-weight:400;}
html, body {
  overflow-x:hidden 
}
body {width:100%;}

/* FOUT Fix: Combating the "Flash of Unstyled Text" on Page Load */
.wf-loading body { opacity: 0; }
/* The above hides the page content until webfonts are loaded. The 'wf-loading' class is applied to the opening HTML tag on page load via a script in header.php */
.wf-active body, .wf-inactive body { opacity:1; -webkit-transition:opacity .25s ease-out; -moz-transition:opacity .25s ease-out; -o-transition:opacity .25s ease-out; transition:opacity .25s ease-out; }
/* The above displays the page content once webfonts are loaded. The 'wf-active' class is applied to the opening HTML tag on page load. */


.bleed-left {
padding-left: 3000px;
margin-left: -3000px;
}

.bleed-right {
padding-right: 3000px;
margin-right: -3000px;
}

.bleed-full {
padding-left: 3000px;
margin-left: -3000px;
padding-right: 3000px;
margin-right: -3000px;
}


/* layout */
.row {max-width:1366px;display:block;margin:0 auto;}
.row-margin {margin:10px auto;}
.item {vertical-align:top;display:inline-block;}
.middle{vertical-align:middle;}
.full {width:100%;}
.half {width:49%;}
.third {width:33%;}
.quarter {width:24%;}
.three-quarter {width:74%;}
.fifth {width:19%;}
.sixth {width:16%;}
.two-third {width:66%;}
.gap {width:5%;}

.padding-30 {padding:30px;}
.padding-20 {padding:20px;}
.padding-20-0-0-20 {padding:20px 0 0 20px;}
.padding-20-20-0-0 {padding:20px 20px 0 0;}
.padding-0-30-30-0 {padding: 0 30px 30px 0;}
.padding-0-20 {padding:0 20px;}
.padding-20-0 {padding:20px 0;}
.padding-0-20-0-0 {padding:0 20px 0 0;}
.padding-0-20-60-20 {padding:0 20px 60px 20px;}
.padding-10 {padding:10px 20px;}
.padding-a {padding: 20px 20px 20px 0;}
.padding-b {padding: 20px 10px 20px 10px;}
.padding-c {padding: 20px 0 20px 20px;}
.margin-10 {margin-top:11px;}
.margin-40 {margin: 40px auto;}
.padding-100 {padding:75px 100px}
.margin-right-30 {margin-right:30px;}
.margin-top-30 {margin-top:30px;}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {font-weight:400;line-height:1.2;}
h1, .h1 {font-size:50px;padding-bottom:4px;}
h2, .h2 {font-size:28px;padding-bottom:16px;}
h3, .h3 {font-size:23px;padding-bottom:16px;}
h4, .h4 {font-size:20px;padding-bottom:4px;}
h5, .h5 {font-size:18px;padding-bottom:10px;}
h6, .h6 {font-size:16px;padding-bottom:4px;padding-top:4px;}
p { font-size:16px;padding-bottom:16px;line-height:1.4;}
p small {font-size:13px; line-height:1.2;}
.no-padding {padding:0;}
ul.bullets {list-style-type: disc;list-style-position: outside;line-height:1.5;margin:0 0 20px 40px;}
ul.no-bullets, .footer .wrap ul.no-bullets {list-style-type:none;margin-left:0;}

.bold, strong, bold {font-weight:600;}
.small, small {font-size:14px;letter-spacing: 0.025em;}
.caps {text-transform:uppercase;}
.cranberry-text {color:#9F1E3D;}

quote, .quote, q {width:100%;font-size:18px;line-height:30px;font-style:italic;margin:0 auto;display:block;padding-bottom:20px;}
q:before {content: '\201c\00a0';font-size:30px;line-height:30px;margin-left:-15px;}
q:after {content: '\00a0\201d';font-size:30px;line-height:0;margin-right:10px;}
.testimonials-page q.light-grey {padding:30px;font-size:16px;line-height:24px;width:auto;}
.testimonials-page q:before {content: '\201c\00a0';font-size:24px;line-height:24px;margin-left:-15px;}
.testimonials-page q:after {content: '\00a0\201d';font-size:24px;line-height:0;margin-right:10px;}
.testimonial-author {padding: 12px 0 0 2px;position: relative;}
.testimonial-author p {padding: 20px 0 0 0;}
.testimonial-author p i {padding: 0 10px 0 10px;}
.testimonial-author::after {
    border-bottom-color: none;
    border-left-color: none;
    border-right-color: none;
    border-top-color: none;
	border-top-color: #ededed;
    border-color: #ededed transparent transparent;
    border-image: none;
    border-style: solid;
    border-width: 10px;
    content: " ";
    height: 0;
    left: 35px;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 0;
}

.copyright {font-size:12px;}
.copyright a, .copyright a:hover, .copyright a:visited {color:#ffffff;text-decoration:none;}
.copyright a:hover, .copyright a:focus {text-decoration:underline;}
.dark-grey {background-color:#2E2D2D;color:#ffffff;}
.light-grey {background-color:#ededed;}
.grey {background-color:#5A5B5B;color:#ffffff;}
.cranberry {background-color: #9F1E3D; color:#ffffff;}
.orange-border {border-bottom: 10px solid #C0303A;}
.black {background-color:#000000; color:#ffffff;line-height:1;}
.burgundy {background-color: #641627; color:#ffffff;}
.white {color:#ffffff;}
.black h5 a[href^="tel:"] {color: #ffffff;}
.hero h1 {color:#ffffff;padding:0 0 20px 0;line-height:1.2;text-shadow:1px 3px 5px rgba(0,0,0,.8);max-width: 950px;}
.hero h2 {color:#ffffff;padding:0 0 0 0;line-height:1.4;width:70%;text-shadow:0px 2px 5px rgba(0,0,0,.8);}
.hero .third div a {display:block;margin:0 auto 15px;text-align:center;width:50%;}
.hero .two-third {width:54%;}

.sub-hero {margin-top:30px; margin-bottom:20px;}
.sub-hero a {color:#3C3C3C;text-decoration:none;}
.sub-hero a:hover, .sub-hero a:focus {color:#9F1E3D;text-decoration:underline;}
.sub-hero a img {border: 3px solid #ffffff;}
.sub-hero a:hover img, .sub-hero a:focus img {border: 3px solid #9F1E3D;}
.sub-hero .sixth p {max-width:170px;margin:0 auto;font-size:14px;}

.cta-section .float-right {margin-top:12px;}

.breadcrumbs {background-color:#ededed;height:40px;padding-top:11px;padding-bottom:0;}
.breadcrumbs a {color:#3C3C3C; text-decoration: none;padding:20px;border-right: 1px solid #cdcdcd;margin-right: -4px;}
.breadcrumbs a:hover, .breadcrumbs a:focus {background-color:#cdcdcd;}
.breadcrumb_last {padding-left:20px;}
.home nav.breadcrumbs {display:none;}

.item.light-grey {background-color:#ededed;/*height:41px;*/padding-top:18px;padding-bottom:0;}
ul.jump-menu li {display:inline-block;margin:20px 0;}
ul.jump-menu li a {color:#3C3C3C; text-decoration: none;padding:20px;border-right: 1px solid #cdcdcd;font-size:14px;background-color:#ededed;}
ul.jump-menu {text-align:center;}
ul.jump-menu li a:hover, ul.jump-menu li a:focus {background-color:#cdcdcd;}
ul.jump-menu li a.jump-menu_last {padding-left:20px;border-right:none;}
.wrap ul.jump-menu {list-style-type: disc; list-style-position: outside;line-height:1.4;margin:-20px 0 0 0;}

.views-template-content-template-for-residential-category-page .breadcrumbs, .views-template-content-template-for-commercial-category-page .breadcrumbs {display:none;}
.full .padding-0-20 p {padding-bottom:0;}
table.sidebar-table, table.sidebar-table td, table.sidebar-table th {border:1px solid #cdcdcd;line-height:1.2}
table.sidebar-table td, table.sidebar-table th {padding:5px;}
table.sidebar-table th {font-weight:600;text-align:left;}
table.sidebar-table {margin:10px 0 30px 0;}

.bottom {vertical-align:bottom;}
.center {text-align:center;}
.left {text-align:left;}
.right {text-align:right;}
.float-right {float:right;}
.float-left {float:left;}
.intro {font-size:20px; line-height:1.4;}
.shadow-box {
	/*padding:30px;*/
	background-color: #ffffff; 
	-webkit-box-shadow: 0px 3px 6px #aaa;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow:    0px 3px 6px #aaa;  /* Firefox 3.5 - 3.6 */
  box-shadow:         0px 3px 6px #aaa;
}
.shadow-box img {width:100%;}
.shadow-box a.read {color:#9F1E3D;text-decoration:none;border: 1px solid #9F1E3D;padding:10px;display:inline-block;margin-top:10px;}
.shadow-box a.read:hover, .shadow-box a.read:focus {-webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2); box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);}
.shadow-box h4 {margin-bottom:15px;}
/*.archive.category header {display:none;}*/
.nav-links {display:none;}
article.post header.entry-header {margin-bottom:30px;}
header.entry-header h2.entry-title {padding-bottom:4px;}

.grey.bleed-left, .dark-grey.bleed-right {height:125px;} /* this needs to be adjusted at breakpoints */
.grey.bleed-left .float-left, .dark-grey.bleed-right .float-left {width:70%;}
.grey.bleed-left .float-right, .dark-grey.bleed-right .float-right {margin-top:30px;}

/* buttons and sumbit inputs */
a.button, input.button {font-weight:600;text-decoration:none;}

.grey a.button, .dark-grey a.button {padding:10px 20px;background:#ffffff;color:#C0303A;font-size:20px;}
.grey a.button:hover, .dark-grey a.button:hover, .grey a.button:focus, .dark-grey a.button:focus {-webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5); box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);}

a.button.burgundy-button {border:2px solid #ffffff; background:#641627; color:#ffffff;padding:15px 30px;font-size:20px;letter-spacing: 0.025em;text-decoration:none;display:inline-block;line-height:1.2;text-align:center;}
a.button.burgundy-button:hover, a.button.burgundy-button:focus {text-decoration:none;-webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5); box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);}

a.button.green-button {border:2px solid #ffffff; background:#1dc558; color:#ffffff;padding:15px 30px;font-size:20px;font-weight:400;letter-spacing: 0.025em;text-decoration:none;display:inline-block;line-height:1.2;text-align:center;}
a.button.green-button:hover, a.button.green-button:focus {text-decoration:none;-webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5); box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);}

.sidebar-category h3{padding:0 0 5px;}
.sidebar-category h3+p{margin:0;padding:0;}
.sidebar-category .green-button{background:#1dc558;color:#fff !important;text-decoration:none;padding:15px 25px;display:inline-block;margin:10px auto 20px;}

a.button.cranberry-button, input.cranberry-button {border:none; background:#9F1E3D; color:#ffffff;padding:10px 20px;font-size:18px;letter-spacing: 0.025em;cursor:pointer;}
a.button.cranberry-button:hover, input.cranberry-button:hover, a.button.cranberry-button:focus, input.cranberry-button:focus {-webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2); box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);}
a.button.shadow-button { -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5); box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);}
a.button.shadow-button:hover, a.button.shadow-button:focus { -webkit-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5); box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);}
a.button.large, input.button.large {font-size:21px;}
a.button.large .fab{font-weight:400}
a.button.large .fab,a.button.large span{font-size:18px;font-weight:500;}

.button-section {margin:20px 0;padding:10px 0 0 0;line-height:3;}

.button-section a.button {margin-right:10px;white-space: nowrap;}

a.button.flat-button, input.button.flat-button {-webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;}
a.button.flat-button:hover, input.button.flat-button:hover, a.button.flat-button:focus, input.button.flat-button:focus {-webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2); box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);}
input.button.grey-button {border:none; background-color:#5A5B5B; color:#ffffff;padding:10px 20px;font-size:18px;letter-spacing: 0.025em;}
input.button.grey-button:hover, input.button.grey-button:focus {-webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2); box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);}

.black h5 {clear:none;}
span.pipe {padding: 0 10px;}
.video-section {padding-top:20px}
.specs-section {margin-top:20px; width:100%;}
.specs-section img {width:50%;display:block;float:none;}
.additional-section {margin-top:20px; display:block;width:100%;}
.wrap ul {list-style-type: disc; list-style-position: outside;margin-left:20px;line-height:1.4;margin-bottom:30px;}
.plain-link, .plain-link a, a.plain-link:visited, .shadow-box p small a {color:#3C3C3C; text-decoration:none;}
a.plain-link:hover, .shadow-box p small a:hover {color:#9F1E3D; text-decoration:underline;}
.grey.bleed-full h4 {line-height:1.5;}
.grey.bleed-full .item.quarter a {margin-top:20px;}
.cranberry h4 a {color:#ffffff;text-decoration:none;}
.cranberry h4 a:hover {color:#ffffff;text-decoration:underline;}


ul.wpv-pagination-nav-links-container {float:right;margin-right:40px;}
ul.wpv-pagination-nav-links-container li {display:inline;font-size:14px;}
ul.wpv-pagination-nav-links-container li.wpv-pagination-nav-links-item-current {padding:4px 8px; margin:4px;border:1px solid #ffffff;color:#ffffff;background-color:#9f1e3d;border:1px solid #9f1e3d;}
ul.wpv-pagination-nav-links-container li a, ul.wpv-pagination-nav-links-container li a:visited {padding:4px 8px; margin:4px;border:1px solid #3c3c3c;color:#3c3c3c;text-decoration:none;}
ul.wpv-pagination-nav-links-container li a:hover {padding:4px 8px; margin:4px;border:1px solid #9f1e3d;color:#ffffff;text-decoration:none;background-color:#9f1e3d;}
 
/* Product Selection Wizard */
.option-1, .option-2 { position:relative; padding:0 0 0 80px; }
.option-1:before { position:absolute; left:0; content:"1"; background:#5a5b5b; color:#fff; text-align:center; border-radius:50%; font-size:30px; height:60px; width:60px; line-height:60px; }
.option-2:before { position:absolute; left:0; content:"2"; background:#5a5b5b; color:#fff; text-align:center; border-radius:50%; font-size:30px; height:60px; width:60px; line-height:60px; }

.footer-banner .row .item {margin-top:70px;}
.footer ul {line-height:1.6;padding-bottom:16px;}
.footer h6 {padding-bottom:16px;}
.textwidget a {color:#ffffff;text-decoration:none;}
.textwidget a:hover, .textwidget a:focus {color:#ffffff;text-decoration:underline;}
.sub-footer {height:50px;}

#text-3 h6 {font-weight:600;margin-top:-21px;}
#text-3 h6:before {width:23px;height:36px;content:url(/wp-content/themes/ele/images/arrows.png);padding-right:10px;position: relative;
  top: 8px;}
#text-4 h6, #text-5 h6 {font-weight:600;}
#text-11 a {display:inline-block;color:#ffffff;padding:0 0 0 20px;}
li#text-11 {list-style-type:none; line-height:0; margin:0 font-size:0;}
#text-11.widget, #text-11.widget p {margin:0;padding:0;line-height:0;}

.elevatorscomisets-outer {margin: 30px auto; max-width: 1360px; padding: 0;}
.elevatorscomisets-inner {display: inline-block; width: 32%; vertical-align:top;}
.elevatorscomisets-inner ul {list-style: none; margin: 0; padding: 0; margin:0; text-transform: capitalize;}
.elevatorscomisets-inner li a {font-size: 14px; color: #3C3C3C; text-decoration: none;line-height:1.5;}
.elevatorscomisets-inner li a:hover {color: #9F1E3D;}
.elevatorscomisets-inner h5 {color: #9F1E3D; font-size: 15px;margin:0;}

table.specification td, table.specification th {padding:10px;text-align:center;}
table.specification th {background-color:#ededed;font-weight:600;}
table.specification {margin:20px 0  20px 0;}
table.specification td.left {text-align:left;}

form input.hidden {display:none;}

form div label {
 	text-align:left;
	display:inline-block;
}
 
form div input {
	display:inline-block;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
form div.block {white-space:nowrap;}

form div.block input, form div.block select, form div.block textarea {
    margin-top: 5px;
    margin-bottom: 5px;
    display:inline-block;
    *display: inline;     /* for IE7*/
    zoom:1;              /* for IE7*/
    vertical-align:middle;
	width:80%;
	border:none;
	height:34px;
	padding:5px;
}

form div.block label {
    display:inline-block;
    *display: inline;     /* for IE7*/
    zoom:1;              /* for IE7*/
    padding-top: 5px;
    text-align: left;
    width: 20%;
	vertical-align:middle;
}
form div.block input#P1, form div.block input#P2, form div.block input#P3 {
    display:inline-block;
    *display: inline;     /* for IE7*/
    zoom:1;              /* for IE7*/
    padding-top: 5px;
    width: 24.25%;
	border:none;
	height:34px;
	padding:5px;
}
form div.hidden {display:none;}

form div.block select {
    color: #666;
    padding: 3px;
	height:34px;
	width:80%;
	border:none;
	height:36px;
}
form div.block2 select {
    margin-top: 5px;
    margin-bottom: 5px;
    display:block;
	margin-left:20%;
    border: none;
    color: #666;
    padding: 3px;
	height:36px;
	width:80%;
}
form div.block2 textarea {
    margin-top: 5px;
    margin-bottom: 5px;
    display:block;
	width:100%;
	margin-left:0;
	border: none;
    color: #666;
    padding: 3px;
	height:100px;
	padding:5px;
}
.one-column form div.block2 {padding-top:10px;padding-bottom:10px;}
form div.block2 label {
    display:block;
}
form input:focus, form textarea:focus {box-shadow:inset 0 0 1px 1px #ccc;}

li#recent-posts-2 {list-style-type:none;margin-bottom:0;}
li#recent-posts-2 h1.widgettitle {font-size: 23px;padding-bottom:10px;}
li#recent-posts-2 > ul {list-style-type:none;margin-left:0;line-height:1.6;margin-bottom:0;}
li#recent-posts-2 > ul li a {color: #3c3c3c;text-decoration: none;}
li#recent-posts-2 > ul li a:hover {color:#9F1E3D; text-decoration:underline;}
.cat-item-1 {display:none;}

li#categories-3 {list-style-type: none;margin:0;}
li#categories-3 h1.widgettitle {display:none;}
li#categories-3 ul li {display:inline-block;list-style-type: none;margin:20px 0;}
li#categories-3 ul {text-align:center;margin:-20px 0 0 0;}


li#categories-3 ul li a {color:#3C3C3C; text-decoration: none;padding:20px;font-size:14px;border-right: 1px solid #cdcdcd;}

li#categories-3 ul li a:hover {background-color:#cdcdcd;}

/*.wrap li#categories-3 ul {list-style-type: disc; list-style-position: outside;margin-left:0;line-height:1.4;margin-bottom:0;}*/

li#categories-3 ul li:nth-child(1) a {display:none;}
li#categories-3 ul li:nth-child(8) a {border-right:none;}
.archive.category .shadow-box, .archive.category .wrap.light-grey {margin-bottom:20px;}



.post-1979 h3 {
	padding-bottom:24px;
}
div.collapseomatic {cursor: pointer;font-size:18px;padding:0 0 20px 0;}
div.collapseomatic:hover, .colomat-hover {color:#9f1e3d;text-decoration:underline;}

input[type='radio'] {margin:7px;}





@media screen and (min-width: 1201px) {
	
	.hero {
	background:#C0303A url('//m.025ok.com/wp-content/uploads/2020/08/splash-bg-1.jpg')no-repeat;
	background-size: cover;
	background-position: top center;
	width:100%;
	height:500px;
}
	.footer-banner {
	background:#C0303A url('images/background-footer-desktop.jpg')no-repeat;
	background-size: cover;
	background-position: top center;
	width:100%;
	height:180px;
}
	
	.margin-left {margin-left:65%;}
.relative {position:relative;}
.float-up {
    -webkit-animation-duration:2s;
    -moz-animation-duration:2s;
    -o-animation-duration:2s;
    animation-duration:2s;
    -webkit-animation-name:float-up;
    -moz-animation-name:float-up;
    -o-animation-name:float-up;
    animation-name:float-up;
    -webkit-animation-iteration-count:1;
    -moz-animation-iteration-count:1;
    -o-animation-iteration-count:1;
    animation-iteration-count:1;
    -webkit-animation-timing-function:ease-out;
    -moz-animation-timing-function:ease-out;
    -o-animation-timing-function:ease-out;
    animation-timing-function:ease-out;
    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    -o-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
    position:absolute;
    top:1000px;
}
@-webkit-keyframes float-up {
    0% {
        top:500px;
        opacity:0;
    }
    25% {
        opacity:1;
    }
    35% {
        top:-20px;
    }
    100% {
        top:60px;
    }
}
@-moz-keyframes float-up {
    0% {
        top:500px;
        opacity:0;
    }
    25% {
        opacity:1;
    }
    35% {
        top:-20px;
    }
    100% {
        top:60px;
    }
}
@-o-keyframes float-up {
    0% {
        top:500px;
        opacity:0;
    }
    25% {
        opacity:1;
    }
    35% {
        top:-20px;
    }
    100% {
        top:60px;
    }
}
@-keyframes float-up {
    0% {
        top:500px;
        opacity:0;
    }
    25% {
        opacity:1;
    }
    35% {
        top:-20px;
    }
    100% {
        top:60px;
    }
}
  
}
@media screen and (min-width: 801px) and (max-width: 1200px) {
  .hero {
	background:#C0303A url('images/background-hero-1200.jpg')no-repeat;
	background-size: cover;
	background-position: top center;
	width:100%;
	height:500px;
}
.hero h2 {
    width: 100%;
}
.hero .two-third {
    width: 66%;
}
.padding-100 {
    padding: 50px;
}
	.footer-banner {
	background:#C0303A url('images/background-footer-1200.jpg')no-repeat;
	background-size: cover;
	background-position: top center;
	width:100%;
	height:180px;
}
	.padding-0 {padding: 0 5px;}
}
.grey.bleed-left, .dark-grey.bleed-right {
    height: 150px;
}
.grey.bleed-left .float-left, .dark-grey.bleed-right .float-left {
    width: 55%;
}
@media screen and (min-width: 801px) and (max-width: 975px) {
  .hero {
	height:600px;
}
.padding-100 {
    padding: 50px;
}
}
@media screen and (min-width: 601px) and (max-width: 800px) {
 /* layout */
.row {max-width:800px;display:block;margin:0 auto;}
.row-margin {margin:10px auto;}
.item {vertical-align:top;display:inline-block;}
.middle{vertical-align:middle;}
.full {width:100%;}
.half {width:49%;}
.third {width:32%;}
.quarter {width:49%;}
.three-quarter {width:100%;}
.fifth {width:19%;}
.sixth {width:49%;}
.two-third {width:100%;}
.gap {width:0%;}
	
.padding-30 {padding:30px;}
.padding-20 {padding:20px;}
.padding-20-0-0-20 {padding:20px 0 0 20px;}
.padding-20-20-0-0 {padding:20px 20px 0 0;}
.padding-0-30-30-0 {padding: 0 20px 20px 0;}
.padding-0-20 {padding:0 20px;}
.padding-20-0 {padding:20px 0;}
.padding-0-20-60-20 {padding:0 20px 60px 20px;}
.padding-10 {padding:10px 20px;}
.padding-a {padding: 20px 20px 20px 0;}
.padding-b {padding: 20px 10px 20px 10px;}
.padding-c {padding: 20px 0 20px 20px;}
.margin-10 {margin-top:11px;}
.margin-40 {margin: 40px auto;}
.padding-100 {padding:20px;}
.margin-right-30 {margin-right:30px;}
.margin-top-30 {margin-top:10px;}
	
h1, .h1 {font-size:36px;padding-bottom:4px;}
h2, .h2 {font-size:22px;padding-bottom:16px;}
h3, .h3 {font-size:23px;padding-bottom:16px;}
h4, .h4 {font-size:20px;padding-bottom:4px;}
h5, .h5 {font-size:18px;padding-bottom:10px;}
h6, .h6 {font-size:16px;padding-bottom:4px;padding-top:4px;}
p { font-size:16px;padding-bottom:16px;line-height:1.4;}
p small {font-size:13px; line-height:1.2;}
	
.float-right {float:none;display:block;}
.float-left {float:none;display:block;}
	
.black h5 {
    font-size: 16px;
	text-align:center;
}
span.pipe {padding: 0;}
.logo {margin:30px auto 0 auto;display:block;}
#text-11 {text-align:center;}
#text-11.widget p {line-height:2;}
.header-row .float-right {float:right;}
.logo {float:left;margin: 0 auto 0 auto;}
.hero {
	background:#C0303A url('images/background-hero-800.jpg')no-repeat;
	background-size: cover;
	background-position: top center;
	width:100%;
	height:500px;
}
.hero .two-third {
    width: 100%;
}
.footer-banner {
	background:#C0303A url('images/background-footer-800.jpg')no-repeat;
	background-size: cover;
	background-position: top center;
	width:100%;

}
.hero h2 {width: 100%;}
.hero .item.third {margin:20px;width:90%;}
.sub-hero .sixth p {max-width: 90%;}
.sub-hero .item.third {margin:20px;width:90%;}
.row-additional-content .item.third {width:100%;}
.row-additional-content .item.third .padding-20 {padding: 0 20px;}
.grey.bleed-left .float-right, .dark-grey.bleed-right .float-right {margin-top: 0;}
.grey.bleed-left .float-left, .dark-grey.bleed-right .float-left {width: 100%;}
.grey.bleed-left, .dark-grey.bleed-right {height: auto;min-height:200px;}
.grey a.button, .dark-grey a.button {text-align:center;display:block;}
.item.fifth .wrap.margin-40 {text-align:center;}
.row-testimonials .item.half {width:70%;}
.row-testimonials .item.quarter {width:20%;}
.row-testimonials .item.fifth {width:100%;}
.row-affiliate .item.quarter {width:20%;}
.row-affiliate .item.third {width:70%;}
.row-affiliate .item.gap + .item.quarter {width:100%;}
.home-blog-row .item.third {width:49%;}
	
	.sidebar-category.item.third {width:100%;}

.affiliate-logo {margin:0 auto;display:block;}
.footer-banner {height: 100px;padding:20px 0;}
.footer-banner .row .item {margin-top: 20px;}
.widget {margin: 0;}
.footer .item {height:auto;}
.footer ul {margin:0;}
.footer .padding-20 {padding:10px 20px;}
.footer .item.quarter {width:25%;}
.footer .item.third {width:35%;}
.copyright {text-align: center;}

	
ul.jump-menu li a {
    border: 0px solid #cdcdcd;
	}
ul.jump-menu li a.jump-menu_last {
    border-right: 0px solid #cdcdcd;
}
.breadcrumbs {
    background-color: #ededed;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
}
.breadcrumbs a {
    color: #3C3C3C;
    text-decoration: none;
    padding: 10px 20px;
    border-right: 1px solid #cdcdcd;
    margin-right: 0;
	display:block;
}
.breadcrumb_last {
    padding: 10px 20px;
	display:block;
}

.button-section {
    text-align:center;
}
.specs-section img {
    width: 100%;
    display: block;
    float: none;
}
.row.more-products h5 {padding-left:20px;}
.row.more-products .item.fifth {width:32%;}

li#categories-3 ul li a {
    border-right: 0px solid #cdcdcd;
}
.alignright {
    display: block;
    float: none;
    margin-left: 0;
}

.row.scroll  {overflow:auto;}

	
}



@media screen and (max-width: 600px) {
  /* layout */
.row {max-width:600px;display:block;margin:0 auto;}
.row-margin {margin:10px auto;}
.item {vertical-align:top;display:block;}
.middle{vertical-align:middle;}
.full {width:100%;}
.half {width:100%;}
.third {width:100%;}
.quarter {width:100%;}
.three-quarter {width:100%;}
.fifth {width:32%;}
.sixth {width:100%;}
.two-third {width:100%;}
.gap {width:0%;}

.padding-30 {padding:30px;}
.padding-20 {padding:20px;}
.light-grey.padding-20 {padding:5px;}
.padding-20-0-0-20 {padding:20px 0 0 20px;}
.padding-20-20-0-0 {padding:20px 20px 0 0;}
.padding-0-30-30-0 {padding: 0 0 20px 0;}
.padding-0-20 {padding:0 20px;}
.padding-20-0 {padding:20px 0;}
.padding-0-20-60-20 {padding:0 20px 60px 20px;}
.padding-10 {padding:10px 20px;}
.padding-a {padding: 20px 20px 20px 0;}
.padding-b {padding: 20px 10px 20px 10px;}
.padding-c {padding: 20px 0 20px 20px;}
.margin-10 {margin-top:11px;}
.margin-40 {margin: 40px auto;}
.padding-100 {padding:20px;}
.margin-right-30 {margin-right:30px;}
.margin-top-30 {margin-top:10px;}
	
h1, .h1 {font-size:36px;padding-bottom:4px;}
h2, .h2 {font-size:22px;padding-bottom:16px;}
h3, .h3 {font-size:23px;padding-bottom:16px;}
h4, .h4 {font-size:20px;padding-bottom:4px;}
h5, .h5 {font-size:18px;padding-bottom:10px;}
h6, .h6 {font-size:16px;padding-bottom:4px;padding-top:4px;}
p { font-size:16px;padding-bottom:16px;line-height:1.4;}
p small {font-size:13px; line-height:1.2;}
	
.float-right {float:none;display:block;}
.float-left {float:none;display:block;}
	
.black h5 {
    font-size: 16px;
	text-align:center;
}
span.pipe {padding: 0;}
.logo {margin:30px auto 0 auto;display:block;}
#text-11 {text-align:center;}
#text-11.widget p {line-height:2;}
.header-row .float-right {float:none;text-align:center;}
.hero {
	background:#C0303A url('images/background-hero-600.jpg')no-repeat;
	background-size: cover;
	background-position: top center;
	width:100%;
}
.hero .two-third {
    width: 100%;
}
.footer-banner {
	background:#C0303A url('images/background-footer-600.jpg')no-repeat;
	background-size: cover;
	background-position: top center;
	width:100%;

}

.hero h2 {width: 100%;}
.hero {height:620px;}
.sub-hero .sixth p {max-width: 90%;}
.sub-hero .item.third {margin:20px auto;width:90%;}
.grey.bleed-left .float-right, .dark-grey.bleed-right .float-right {margin-top: 0;}
.grey.bleed-left .float-left, .dark-grey.bleed-right .float-left {width: 100%;}
.grey.bleed-left, .dark-grey.bleed-right {height: auto;}
.grey a.button, .dark-grey a.button {text-align:center;display:block;}
.item.fifth .wrap.margin-40 {text-align:center;}
.affiliate-logo {margin:0 auto;display:block;}
.row-logos .item {display:inline-block;}
.row-logos .item.fifth {width:32%;}
.footer-banner {height: 250px;padding:20px 0;}
.footer-banner .row .item {margin-top: 20px;}
.widget {margin: 0;}
.footer .item {height:auto;}
.footer ul {margin:0;}
.footer .padding-20 {padding:10px 20px;}

	
ul.jump-menu li a {
    border: 0px solid #cdcdcd;
	}
ul.jump-menu li a.jump-menu_last {
    border-right: 0px solid #cdcdcd;
}
.breadcrumbs {
    background-color: #ededed;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
}
.breadcrumbs a {
    color: #3C3C3C;
    text-decoration: none;
    padding: 10px 20px;
    border-right: 1px solid #cdcdcd;
    margin-right: 0;
	display:block;
}
.breadcrumb_last {
    padding: 10px 20px;
	display:block;
}
.elevatorscomisets-inner {
    display: block;
    width: 90%;
    vertical-align: top;
	padding:20px;
}

.button-section {
    text-align:center;
}
.specs-section img {
    width: 100%;
    display: block;
    float: none;
}
.row.more-products h5 {padding-left:20px;}
.row.more-products .item.fifth {width:100%;}

li#categories-3 ul li a {
    border-right: 0px solid #cdcdcd;
}
.alignright {
    display: block;
    float: none;
    margin-left: 0;
}

.row.scroll  {overflow:auto;}
form div.block input#P1, form div.block input#P2, form div.block input#P3 {
    width: 22%;
}
form div.block label {
    width: 25%;
}
form div.block input, form div.block select, form div.block textarea {
    width: 75%;
}
}
@media screen and (max-width: 382px) {
  a.button.cranberry-button, input.cranberry-button {
    font-size: 16px;
	  padding: 10px 10px;
	}
.margin-right-30 {
    margin-right: 10px;
}
}

@media screen and (max-width: 350px) {
  .hero {
	height:670px;
}
a.button.large, input.button.large {
    font-size: 22px;
}

}
