/**
 * Table of Contents:
 * (easily jump around by using crtl-F > section number)
 *
 * 1 - Resets & Overrides

 * 2 - Global Styles
 * 2.1 Text & Forms Rules
 * 2.2 Header
 * 2.3 Nagivation
 * 2.4 Content Area
 * 2.5 Sidebar
 * 2.6 Footer

 * 3 - Specific Content Type Styles
 * 3.1 Webforms

 * 4 - Specifc Page Styles

 * 5 - Media Queries
 * 5.1 1220px
 * 5.2 980px
 * 5.3 740px

 * 5.4 responsive-layout-narrow

 * ----------------------------------------------------------------------------
 */

/**
 * 1 - Resets & Overrides
 * ----------------------------------------------------------------------------
 */

/* basics */
*, *:before, *:after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* removing the toolbar's box-shadow and gradient */
#admin-menu {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background: #222;
}

/* hiding misc. uneccessary elements, check theme options before adding */
.alpha-resize-indicator,
.grippie {
	display: none;
}

/* layout */
.region {
	min-height: 0px;
}

.page {
	overflow: hidden;
}

.block {
	position: relative;
}

html {
	height: 100%;
	-webkit-text-size-adjust: 100%;
}

 /**
 * 2 - Global Styles
 * ----------------------------------------------------------------------------
 */

body {
	font-size: 16px;
	color: #333;
	line-height: 1.2;
	background: #EDF0F5;
	font-family: 'proxima-nova', Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'proxima-nova', Helvetica, sans-serif;
	color: #111;
	line-height: 1.2;
	letter-spacing: 0;
	margin-bottom: 5px;
}

h1 a:link, h2 a:link, h3 a:link, h4 a:link, h5 a:link, h6 a:link,
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited {
	text-decoration: none;
}

h1 {
	text-transform: uppercase;
	font-family: 'proxima-nova', helvetica, sans-serif;
	font-weight: 700;
}

p:last-child {
	margin-bottom: 0;
}

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

.content .field ul {
	padding-left: 25px;
}

.content iframe {
	max-width: 100%;
}

.field-name-body .field-item p:after {
	content: '';
	clear: both;
}

.content a,
.sf-menu a,
.content input,
.content textarea {
	-webkit-transition: .2s ease;
	transition: .2s ease;
}

.sf-menu.sf-horizontal li,
.sf-menu.sf-horizontal li a {
	display: inline-block;
}

 /**
 * 2.1 Text & Forms Rules
 * ----------------------------------------------------------------------------
 */

textarea, select, input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"] {
	border-color: #ccc;
	color: #555;
}

button:focus, button:active, input:focus, input:active, select:focus, select:active, textarea:focus, textarea:active {
	border-color: #377ec2;
	-webkit-box-shadow: 0 0 0 1px #377ec2;
	-moz-box-shadow: 0 0 0 1px #377ec2;
	box-shadow: 0 0 0 1px #377ec2;
}

 /**
 * 2.2 Header
 * ----------------------------------------------------------------------------
 */

.logo-img {
	width: 635px;
	background: url(../img/shred-aware-logo-left.png) center no-repeat;
	background-size: contain;
	padding-bottom: 0;
	margin-left: -20px;
}

.logo-img img {
	max-width: 100%;
	opacity: 0;
}

.site-name-slogan {
	position: absolute;
	right: -10px;
	bottom: 28px;
	width: 400px;
	text-align: left;
}

.site-name-slogan h6 {
	font-family: 'proxima-nova', Helvetica, sans-serif;
	font-weight: 700;
	font-size: 17px;
	text-transform: uppercase;
}

.zone-branding-wrapper {
	background: url(../img/header-background.jpg) bottom no-repeat;
	background-size: cover;
}

.zone-branding {
	padding-top: 30px;
	z-index: 100;
	position: relative;
}

.section-header {
	position: relative;
	z-index: 10;
}

#block-block-14 {
	position: absolute;
	top: 28px;
	right: -10px;
	text-align: right;
}

#block-block-14 a:hover {
	opacity: 0.8;
}

#block-block-14 img {
	height: 106px;
	width: auto;
	margin-left: 10px;
}

 /**
 * 2.3 Nagivation
 * ----------------------------------------------------------------------------
 */
#region-menu div.content.clearfix p::before {
	/*content: url(../img/menu-icon.png);*/
	background-image: url(../img/menu-icon.png);
    background-size: 30px 30px;
    display: inline-block;
    width: 30px; 
    height: 30px;
    content:"";
    position: relative;
    top: 5px;
    right: 10px;
}
.menu-active #region-menu div.content.clearfix p::before {
	/*background: none;*/
	/*display: none;*/
}

.zone-menu-wrapper {
	background: #2C2F35;
	background: -webkit-linear-gradient(top, #4E5157 0%, #2E323A 100%);
	background: linear-gradient(to bottom, #4E5157 0%, #2E323A 100%);
	border-bottom: 3px solid #377ec2;
	margin-top: -26px;
}

.zone-menu {
	position: relative;
	z-index: 100;
}

/*.zone-menu:before {
	content: '';
	position: absolute;
	background: #444;
	background: -webkit-linear-gradient(top, #4E5157 0%, #2E323A 100%);
	background: linear-gradient(to bottom, #4E5157 0%, #2E323A 100%);
	top: -24px;
	bottom: 0;
	left: 0;
	right: 0;
}*/

.region-menu {
	z-index: 20;
	font-size: 18px;
}

#block-superfish-1 {
	z-index: 400;
}

#superfish-1 {
	padding-left: 121px;
}

#superfish-1 li {
	float: none;
	margin: 0;
}

#superfish-1 li a {
	padding: 10px 12px;
	color: #fff;
	text-decoration: none;
	box-shadow: 
		inset 0 0 0 0 #377ec2;
}

#superfish-1 li a.active {
	color: rgb(184, 211, 238);
}

#superfish-1 li a:hover,
#superfish-1 li.sfHover>a {
	color: rgb(184, 211, 238);
	box-shadow: 
		inset 0 -5px 0 0 #377ec2;
}

.sf-menu li:hover > ul, .sf-menu li.sfHover > ul {
	top: 2.3em;
}

#superfish-1 li.menuparent ul {
	background: #333;
	text-align: left;
	border-left: 3px solid #377ec2;
}

#superfish-1 li.menuparent ul a {
	width: 100% !important;
}

#superfish-1 li.menuparent ul a:hover,
#superfish-1 li.menuparent ul li.sfHover a {
	background: #222;
	background: -webkit-linear-gradient(right, #333 0%, #222 100%);
	background: linear-gradient(to left, #333 0%, #222 100%);
	box-shadow: 
		inset 5px 0 0 0 #377ec2;
}

 /**
 * 2.4 Content Area
 * ----------------------------------------------------------------------------
 */

.section-content {
	position: relative;
	z-index: 0;
}

.container-12 .grid-9.region-content {
	width: 710px;
	margin-left: 0;
	position: static;
}

.zone-content {
	background: url(../img/shred-tec-watermark.svg) center no-repeat #fff;
	background: url(../img/shred-tec-watermark.png) center no-repeat #fff \0/;
	background-position: center 10px center 0;
	background-size: contain;
	background-attachment: fixed; 
	box-shadow: 0 0 20px 0 #ccc;
	border-bottom: 2px solid #999;
	border-radius: 0px 0px 4px 4px; 
	position: relative;
}

.region-sidebar-first,
.region-content {
	padding-top: 10px;
}

.field-slideshow-wrapper {
	position: relative;
}

.field-name-field-slideshow {
	margin: 0 0 30px;
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
}

.field-slideshow-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	bottom: 10px;
	right: 0;
	z-index: 10;
	height: 20px;
}

.field-slideshow-controls a {
	font-size: 0;
	color: transparent;
	display: block;
	height: 40px;
	width: 40px;
}

.field-slideshow-controls .prev {
	position: absolute;
	left: 0;
	background: url(../img/slideshow-arrows-left-02.svg) top right no-repeat;
	background: url(../img/slideshow-arrows-left-02.png) top right no-repeat \0/;
}

.field-slideshow-controls .next {
	position: absolute;
	right: 0;
	background: url(../img/slideshow-arrows-right-02.svg) top left no-repeat;
	background: url(../img/slideshow-arrows-right-02.png) top left no-repeat \0/;
}

.field-slideshow-controls a:before {
	content: '';
	height: 80px;
	width: 80px;
	position: absolute;
	top: -7px;
	border-radius: 40px;
	z-index: -10;
	background: rgb(63,156,226);
	background: -webkit-radial-gradient(center, ellipse cover, rgba(125,185,232,1) 0%,rgba(63,156,226,1) 39%,rgba(30,87,153,1) 100%);
	background: radial-gradient(ellipse at center, rgba(125,185,232,1) 0%,rgba(63,156,226,1) 39%,rgba(30,87,153,1) 100%);
}

.field-slideshow-controls .next:before {
	left: -4px;
}

.field-slideshow-controls .prev:before {
	left: -36px;
}

.field-slideshow-caption {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 10px;
}

.field-slideshow-caption h1,
.field-slideshow-caption h2,
.field-slideshow-caption h3,
.field-slideshow-caption h4,
.field-slideshow-caption h5,
.field-slideshow-caption h6 {
	margin-bottom: 5px;
	line-height: 1;
}

.not-front .node {
	padding-bottom: 100px;
}

.field-name-body h1, 
.field-name-body h2, 
.field-name-body h3, 
.field-name-body h4, 
.field-name-body h5, 
.field-name-body h6 {
	padding: 0 10px;
}

.field-name-body h1:first-child,
.field-name-body h2:first-child {
	border-radius: 5px 5px 0 0;
	background: #E8ECF1;
	border: 1px solid #ccc;
	border-bottom: 6px solid #377ec2;
	padding: 0 15px;
	position: relative;
}

.field-name-body h2:first-child {
	border-bottom: 3px solid #377ec2;
}

/*.field-name-body h2:first-child:after {
	content: '';
	position: absolute;
	bottom: -2px;
	right: -1px;
	border: 10px solid;
	border-color: transparent #377ec2 #377ec2 transparent;
}*/

.field-name-body .field-item {
	background: rgba(220, 220, 220, 0.45);
	clear: both;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.field-name-body .field-item:after {
	content: '';
	display: block;
	clear: both;
}

.field-name-body .field-item>*:first-child {
	padding: 5px 10px 0;
}

.field-name-body .field-item p {
	margin:0 10px 10px;
}

.field-name-body iframe[src*="maps.google.com/"] {
	width: 100%;
	height: 300px;
}

.region-content .block-title {
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'proxima-nova', sans-serif;
	color: #777;
	letter-spacing: 2px;
}

/* Random Textimonial Block */
#block-views-random-testimonial-block {
	margin-top: 30px;
	font-size: 18px;
	padding-bottom: 100px;
}

#block-views-random-testimonial-block .block-title {
	text-align: center;
}

.views-slideshow-controls-bottom {
	margin-top: 10px;
	text-align: center;
}

.views-slideshow-controls-text-previous,
.views-slideshow-controls-text-pause {
	display: none;
}

.views-slideshow-controls-text-next a {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	text-decoration: none;
	color: #377ec2;
}

#block-views-random-testimonial-block .block-title {
	margin-bottom: 10px;
}

#block-views-random-testimonial-block .views-field-title {
	font-size: 30px;
	font-weight: 600;
	color: #377ec2;
	position: relative;
}

#block-views-random-testimonial-block .views-field-title .field-content:after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 329px;
	right: 0;
	border-bottom: 1px solid #ccc;
}

#block-views-random-testimonial-block .views-field-body {
	line-height: 1.3;
}

.views-field-field-logo {
	width: 300px;
	height: 300px;
	position: absolute;
	display: flex;
	justify-content: center;
}
.views-field-field-logo .field-content {
	max-width:300px;
}
.views-field-field-logo .field-content img {
	max-height:300px;
}

.views-field-field-logo img {
	/*max-height: 100%;
	width: auto;*/
}

.views-field-field-logo .field-content {
	display: flex;
	align-self: center;
	max-height: 100%;
}

.views-field-field-logo ~ div.views-field {
	padding-left: 329px;
}

.views_slideshow_slide {
	padding-bottom: 50px;
}

/* Social Media Block */
#block-block-15 {
	text-align: center;
	width: 710px;
	position: absolute;
	bottom: 20px;
	right: 0;
}

#block-block-15 .content a {
	display: inline-block;
	padding: 2px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
	margin: 5px;
	opacity: 0.8;
}

#block-block-15 img {
	height: 30px;
	width: auto;
}

#block-block-15 .content a:hover {
	border-color: #377ec2;
	opacity: 1;
}

 /**
 * 2.5 Sidebar
 * ----------------------------------------------------------------------------
 */

#zone-content .region-sidebar-first {
	position: static;
	padding-bottom: 220px;
}

.region-sidebar-first .block {
	margin-bottom: 30px;
}

.region-sidebar-first h2 {
	text-transform: uppercase;
	font-size: 24px;
	border-bottom: 1px solid #ccc;
	color: #377ec2;
}

#block-block-1 {
	border-radius: 5px;
	overflow: hidden;
}

#block-block-1 p:last-child {
	display: none;
}

#block-block-1 h2,
#block-block-1 p {
	margin: 0;
}

#block-block-1 h3 {
	background: #E8ECF1;
	text-align: center;
	font-size: 32px;
	background: url(../img/shred-tec-watermark-2.svg) -100px -60px no-repeat #E8ECF1;
	background: url(../img/shred-tec-watermark.png) center left no-repeat #fff\0/;
	background-size: 350px;
}

#block-block-1 h3 a {
	display: block;
	color: #377ec2;
	border: 1px solid #ccc;
	border-radius: 0 0 5px 5px;
	border-top: none;
	padding: 15px 40px;
	text-decoration: none;
	line-height: 1.1;
}

#block-block-1:hover h3 a {
	background: #377ec2;
	border-color: #377ec2;
	color: #fff;
	padding: 20px 40px;
}

.field-name-field-sidebar-content table{
	margin-left: -10px;
	color: #222;
}

.field-name-field-sidebar-content td, 
.field-name-field-sidebar-content th {
	padding: 4px 0px;
}

#block-block-13 {
	line-height: 1.2;
}

#block-block-13 em {
	color: #999;
}

#block-block-13 strong {
	text-transform: uppercase;
}

#block-block-13 h2 {
	font-size: 32px;
}

#block-block-13 h3 {
	font-weight: 300;
	font-size: 28px;
	margin-bottom: 10px;
}

#block-block-16 {
	position: absolute;
	bottom: 0;
	width: 220px;
}

#block-block-16 img {
	width: 60%;
}

 /**
 * 2.6 Footer
 * ----------------------------------------------------------------------------
 */

#block-block-2 p {
	display: block;
	margin-bottom: 0;
	padding: 10px 0;
}

#block-block-2 strong {
	font-family: 'proxima-nova', sans-serif;
	letter-spacing: 1px;
	font-weight: normal;
}

#credit {
	float: right;
}

#copyright {
	float: left;
}

.region-footer-first-inner {
	display: flex;
	flex-wrap: wrap;
}

.region-footer-first .block-bean {
	width: 33%;
	text-align: center;
	margin: 20px 0 10px;
}

.region-footer-first .block-bean .block-title {
	font-size: 24px;
}

#block-block-18 {
	width: 100%;
	margin: 20px 0;
}

#block-block-18 .block-title {
	font-size: 32px;
	text-align: center;
}

.block-bean .field-name-field-business-logo {
	max-width: 170px;
	margin: 0 auto;
}

 /**
  * 3 - Specific Content Types
  * ----------------------------------------------------------------------------
  */


 /**
  * 3.1 Webforms
  * ----------------------------------------------------------------------------
  */

.webform-client-form {
	background: rgba(0, 0, 0, 0.6);
	padding: 20px 100px;
}

.webform-client-form .form-item input {
	width: 100%;
}

.webform-client-form .form-item label {
	color: #fff;
	font-weight: normal;
}

#block-block-17 {
	display: none;
	color: white;
	padding: 15px;
	font-size: 30px;
	text-align: center;
	cursor: pointer;
	transition: .2s ease;
}
/*#block-block-17:hover {
	font-size: 30px;
	padding: 15px;
}*/
#block-superfish-1 {
	transition: .2s ease;
} 

#webform-client-form-43 #edit-submit {
	border-radius: 0;
    width: 40%;
    margin: auto;
    /* background: url(../img/shred-tec-watermark-2.svg) center left no-repeat #E8ECF1; */
    /* background-size: 350px; */
    background: url(../img/shred-tec-watermark-2.svg) -25px -35px no-repeat #ddd;
    background-size: 200px; 
    /* margin-bottom: 30px; */
    height: 44px;
    font-size: 21px;
    color: #377ec2;
    transition: .2s ease;
    border-color: #ccc;
}
#webform-client-form-43 #edit-submit:hover {
	color: white;
	background: #377ec2;
	height: 50px;
	border-color: #377ec2;
	background-size: 200px; 
	background-position: -25px -35px;
}


 /**
 * 4 - Specifc Page Styles
 * ----------------------------------------------------------------------------
 */
#block-views-random-testimonial-block .views-slideshow-cycle-main-frame-row {
	width: initial !important;
}
#views_slideshow_cycle_main_random_testimonial-block .views-slideshow-controls-bottom {
	   cursor: pointer;
    position: relative;
    z-index: 1000;
}
#views_slideshow_cycle_teaser_section_random_testimonial-block {
	width: inherit !important;
}
.views-slideshow-controls-bottom.clearfix {
	position: relative;
    z-index: 9999999;
}
#h3-right-here {
	margin-left: 30px;
}
.page-node-44 iframe {
	max-height: 50vh;
}
/**
 * 5 - Media Queries (breakpoints)
 * ----------------------------------------------------------------------------
**/

/* Call link for mobile, hiding it for desktop sizes */
#block-block-19 {
	display: none;
}

/**
 * 5.1 1220px
 * ----------------------------------------------------------------------------
**/

@media screen and (max-width: 1360px) {

}

/**
 * 5.2 980px
 * ----------------------------------------------------------------------------
**/

@media screen and (max-width: 1120px) {

	#zone-user,
	#region-user-first {
		width: 100%;
		margin: 0;
	}

	#block-block-19 {
		display: block;
	}

	#block-block-19 .content a {
		display: block;
		width: 100%;
		padding: 10px;
		text-align: center;
		background: #377ec2;
		color: #fff;
		text-decoration: none;
		text-transform: uppercase;
		font-weight: bold;
		letter-spacing: 1px;
	}

	#zone-menu-wrapper {
		margin-top: 0px;
	}
	body {
		/*background: red;*/
	}
	div.field-name-body, div.field-name-field-slideshow {
		margin-left: 10px;
	}
	#zone-branding-wrapper hgroup.site-name-slogan {
		width: 100%;
		text-align: center;
	}
	#zone-branding-wrapper div.logo-img {
		width: 435px;
		background: url(../img/shred-aware-logo-left.png) center no-repeat;
		background-size: contain;
		padding-bottom: 0;
		margin-left: -20px;
		position: relative;
		bottom: 35px;
	}
	#zone-branding-wrapper #block-block-14 div.content.clearfix {
		position: relative;
		bottom: 56px;
	}
	#region-content,
	#region-sidebar-first,
	#region-sidebar-second {
		margin-left: 0;
		margin-right: 0;
	}

	.zone-content {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
			flex-direction: column;
	}

	.region-sidebar-first,
	.region-sidebar-second {
		width: 100% !important;
		-webkit-order: 10;
		-ms-flex-order: 10;
		order: 10; 
	}

	#block-block-1 {
		border-radius: 0;
	}
	#block-block-1 .content.clearfix {
		width: 70%;
		margin: auto;
	}
	#block-block-1 img {
		display: none;
	}
	#block-block-1 h3 {
		background: url(../img/shred-tec-watermark-2.svg) center left no-repeat #E8ECF1;
		background-size: 350px;
	}
	#block-block-1 h3 a {
		border-radius: 0;
		/*background: #377ec2;*/
		border-color: #ccc;
		color: #377ec2;
	}
	#block-block-1 h3:hover a {
		color: #fff;
	}

	#block-block-16 {
		width: 100%;
		margin-bottom: 100px;
	}
	#block-block-16 img {
		width: 132px;
		height: 118px;
	}

	#block-masquerade-masquerade {
		text-align: center;
	}

	#block-block-17 {
		display: block;
	}
	#block-superfish-1 {
		padding-left: 0px;
		display: none;
	}
	#block-superfish-1.menu-active {
		display:block;
	}
	ul#superfish-1 {
		padding-left: 0px;
		padding-bottom: 20px;
		-moz-column-count: 2;
		-moz-column-gap: 20px;
		-webkit-column-count: 2;
		-webkit-column-gap: 20px;
		column-count: 2;
		column-gap: 20px;
	}
	ul#superfish-1 li {
		text-align: center;
		width:100%;
		font-size:20px;
	}
	ul#superfish-1 li:hover {
		/*background: #333;
		border-left: 3px solid #377ec2;*/
	}
	#superfish-1.sf-menu ul, #superfish-1 .sf-hidden {
		float: none !important;
		width: auto !important;
		display: block !important;
		right: 90px !important;
		left: auto !important;
		position: initial !important;
	}

	#superfish-1 li.menuparent ul {
		background: none;
		color: #ddd;
		border: none;
		background: #555;
		opacity: 1 !important;
	}
	#superfish-1 li.menuparent ul li {
		font-size:16px;
	}
	#superfish-1 li.menuparent ul a {
		width: initial !important;
		color: #c8c8c8;
	}
	#superfish-1 li.menuparent ul li a:hover {
		border: none;
		box-shadow: inset 0 -5px 0 0 #377ec2;
		background: none;
	}
	#block-block-16 {
		position: initial;
	}
	#zone-content .region-sidebar-first {
		    padding-bottom: 80px;
	}
	#block-views-random-testimonial-block {
		margin-top: 30px;
		font-size: 18px;
		padding-bottom: 30px;
	}
	#superfish-1 li a {
		display: block;
    	width: 100%;
	}
	#block-block-15 {
		width: 100%;
	}
	#block-block-14 {
		/*position: relative;*/
		/*right: 0px;*/
		margin-right: 15px;
	}
}


/**
 * 5.3 740px
 * ----------------------------------------------------------------------------
**/

/* Styles specifically for sizes ABOVE 740px */
@media screen and (min-width: 740px) {
	

}

/* Styles specifically for sizes BELOW 740px */
@media screen and (max-width: 740px) {

	.region-footer-first .block-bean {
		width: 100%;
	}

	.content img[style*="float: left;"],
	.content img[style*="float:left;"] {
		max-width: calc(100% - 200px);
		margin-left: 0 !important;
	}
 
	.content img[style*="float: right;"],
	.content img[style*="float:right;"] {
		max-width: calc(100% - 200px);
		margin-right: 0 !important;
	}

	.views-field-field-logo {
		height: 340px;
	}

	div.field-name-body, div.field-name-field-slideshow {
		margin-right: 10px;
	}
	.container-12 .grid-9.region-content {
		width: 100%;
	}
	#block-views-random-testimonial-block {
		padding-bottom: 30px;
		min-height: 530px;
	}

	#views_slideshow_cycle_main_random_testimonial-block {
		min-height: 600px;
	}
	#block-views-random-testimonial-block .views-slideshow-cycle-main-frame.views_slideshow_cycle_teaser_section {
		width: initial !important;
	}
	#block-views-random-testimonial-block h2.block-title {
		font-size: 32px;
	}
	#block-views-random-testimonial-block .views-field.views-field-title {
		text-align: center;
		padding: 0px;
	}
	#block-views-random-testimonial-block .views-field.views-field-title span:after {
		border: none;
	}

	.views-field-field-logo img {
		margin: auto;
	}

	.views-field-field-logo ~ div.views-field {
		padding: 0 20px;
	}

	#block-views-random-testimonial-block .views-field-field-logo {
		position: relative;
		align-content: center;
		width: 100%;
	}

	#block-views-random-testimonial-block .views_slideshow_slide {
		padding: 0px;
	}
	#block-views-random-testimonial-block #views_slideshow_controls_text_next_random_testimonial-block {
		font-size: 30px;
	}
	#block-views-random-testimonial-block #views_slideshow_controls_text_next_random_testimonial-block a:after{
		font-size: 30px;
		font-weight: bold;
		content: ' → ';
	}
	#block-views-random-testimonial-block #views_slideshow_controls_text_next_random_testimonial-block a:after:hover {
		text-decoration: none;
	}
	#views_slideshow_cycle_teaser_section_random_testimonial-block {
		width: 100%;
	}
	#block-block-17 {
		/*display: block;*/
	}
	#block-superfish-1 {
		padding-left: 0px;
		display: none;
	}
	#block-superfish-1.menu-active {
		display:block;
	}
	ul#superfish-1 {
		padding-left: 0px;
		padding-bottom: 20px;
		-moz-column-count: 2;
		-moz-column-gap: 20px;
		-webkit-column-count: 2;
		-webkit-column-gap: 20px;
		column-count: 2;
		column-gap: 20px;
	}
	ul#superfish-1 li {
		text-align: center;
		width:100%;
		font-size:20px;
	}
	ul#superfish-1 li:hover {
		/*background: #333;
		border-left: 3px solid #377ec2;*/
	}
	#superfish-1.sf-menu ul, #superfish-1 .sf-hidden {
		float: none !important;
		width: auto !important;
		display: block !important;
		right: 90px !important;
		left: auto !important;
		position: initial !important;
	}

	#superfish-1 li.menuparent ul {
		background: none;
		color: #ddd;
		border: none;
		background: #555;
		opacity: 1 !important;
	}
	#superfish-1 li.menuparent ul li {
		font-size:16px;
	}
	#superfish-1 li.menuparent ul a {
		width: initial !important;
		color: #c8c8c8;
	}
	#superfish-1 li.menuparent ul li a:hover {
		border: none;
		box-shadow: inset 0 -5px 0 0 #377ec2;
		background: none;
	}
	#webform-client-form-43 {
		padding: 20px 20px;
	}

	#webform-client-form-43 input, #webform-client-form-43 textarea {
		font-size:22px;
	}
	#webform-client-form-43 input {
		/*color: #fff;*/
	    font-weight: normal; 
	    font-size: 20px;
	    margin-bottom: 3px;
	}
	#webform-client-form-43  #edit-submit {
		color: #377ec2;
		font-weight: bold;
		/*background: url(../img/shred-tec-watermark-2.svg) 0px -35px no-repeat #ddd;*/
		background-position: -0px -35px;
	}
	#webform-client-form-43 #edit-submit:hover {
		color: white;
		background: #377ec2;
		height: 50px;
		border-color: #377ec2;
		background-size: 200px; 
		background-position: -0px -35px;
	}
	#copyright, #credit {
		float: none;
		text-align: center;
	}
	#copyright p {
		margin-bottom: 0px;
		padding-bottom: 0px;
	}
	#credit p {
		margin-top: 0px;
		padding-top: 0px;
	}

	#field-slideshow-1-wrapper h2 {
		font-size: 4vw;
		line-height: 4vw;
		margin-bottom: 1vw;
	}
	#field-slideshow-1-wrapper h3 {
		font-size: 2.9vw;
		line-height: 2.9vw;
		margin-bottom: 2vw;
	}
	#field-slideshow-1-wrapper p {
		font-size: 2.2vw;
		line-height: 2.7vw;
		margin-bottom: 2.3vw;
	}
	#h3-right-here {
		margin-left: 2.9vw;
	}
	#zone-branding-wrapper div.logo-img {
		margin-left:0px;
	}
}


/**
 * 5.3 690px
 * ----------------------------------------------------------------------------
**/

/* Styles specifically for sizes ABOVE 660px */
@media screen and (max-width: 690px) {
	body {
		/*background: yellow;*/
	}
	#zone-branding-wrapper {
		/*height: 300px;*/
	}
	#zone-branding-wrapper #block-block-14, #zone-branding-wrapper .site-name-slogan{
		position: relative;
	}
	#zone-branding-wrapper #block-block-14 {
		top: 0px;
	}
	#zone-branding-wrapper #block-block-14 div.content.clearfix {
		position: relative;
		bottom: 12px;
		text-align: center;
	}
	#zone-branding-wrapper #block-block-14#block-block-14 img {
		height: 80px;
		width: auto;
		margin-left: 10px;
		position: relative;
		bottom: 15px;
	}
	#zone-branding-wrapper div.logo-img {
		width: 100%;
		margin: auto;
		position: relative;
		bottom: 28px;
	}
	#webform-client-form-43  #edit-submit {
		color: #377ec2;
		font-weight: bold;
		/*background: url(../img/shred-tec-watermark-2.svg) 0px -35px no-repeat #ddd;*/
		background-position: -0px -35px;
	}
	#webform-client-form-43 #edit-submit:hover {
		color: white;
		background: #377ec2;
		height: 50px;
		border-color: #377ec2;
		background-size: 200px; 
		background-position: -0px -35px;
	}
	#block-block-14 {
		/*position: relative;*/
		/*right: 0px;*/
		margin-right: 15px;
	}

}

@media screen and (max-width: 620px) {

	#node-basic-page-45 table, #node-basic-page-45 tbody, #node-basic-page-45 tfoot, #node-basic-page-45 thead, 
	#node-basic-page-45 tr, #node-basic-page-45 th, #node-basic-page-45 td {
		display: block;
	}
	#node-basic-page-45 tr {
		padding-top:15px;
		padding-bottom: 15px;
	}
	#node-basic-page-45 tr:hover td {
		background: transparent;
	}

	#node-basic-page-45 table tr:first-of-type {
		display: none;
	}
	#node-basic-page-45 table tr:first-of-type {
		display: none;
	}
	#node-basic-page-45 table tr td:first-of-type {
		font-weight: bold;
	}
	#node-basic-page-45 table tr td:first-of-type:before  {
		content: 'Bin Type:';
		position: relative;
		float: left;
		left: 5%;
		font-weight: bold;
	}
	#node-basic-page-45 table tr td:nth-of-type(2) {
		background: rgba(220,220,220,0.4);
	}
	#node-basic-page-45 table tr td:nth-of-type(2):before {
		content: 'Capacity';
		position: relative;
		float: left;
		left: 5%;
	}
	#node-basic-page-45 table tr td:nth-of-type(3):before {
		content: 'Width';
		position: relative;
		float: left;
		left: 5%;
	}
	#node-basic-page-45 table tr td:nth-of-type(4) {
		background: rgba(220,220,220,0.4);
	}
	#node-basic-page-45 table tr td:nth-of-type(4):before {
		content: 'Depth';
		position: relative;
		float: left;
		left: 5%;
	}
	#node-basic-page-45 table tr td:nth-of-type(5):before {
		content: 'Height';
		position: relative;
		float: left;
		left: 5%;
	}
	#webform-client-form-43  #edit-submit {
		color: #377ec2;
		font-weight: bold;
		/*background: url(../img/shred-tec-watermark-2.svg) 0px -35px no-repeat #ddd;*/
	}
	#webform-client-form-43 #edit-submit:hover {
		color: white;
		background: #377ec2;
		height: 50px;
		border-color: #377ec2;
		background-size: 200px; 
		background-position: -0px -35px;
	}
	#field-slideshow-1-wrapper p {
		font-size: 2.2vw;
		line-height: 2.7vw;
		margin-bottom: 2.3vw;
		color: black;
	}
	#h3-right-here {
		position: relative;
    	bottom: 0.5vw;
	}
}

@media screen and (max-width: 520px) {
	#h3-right-here {
		position: relative;
    	bottom: 1.4vw;
	}

	.content img[style*="float: left;"],
	.content img[style*="float:left;"] {
		max-width: calc(100% - 60px);
		margin: 0 auto !important;
		float: none !important;
		display: block;
	}
 
	.content img[style*="float: right;"],
	.content img[style*="float:right;"] {
		max-width: calc(100% - 60px);
		margin: 0 auto !important;
		float: none !important;
		display: block;
	}
	#field-slideshow-1-wrapper {
		display: none;
	}
	ul#superfish-1 {
		padding-left: 0px;
		padding-bottom: 20px;
		-moz-column-count: 1;
		-moz-column-gap: 20px;
		-webkit-column-count: 1;
		-webkit-column-gap: 20px;
		column-count: 1;
	}
}

@media screen and (max-width: 460px) {
	body {
		/*background: purple;*/
	}

	#webform-client-form-43 #edit-submit {
		background-position: -45px -35px;
		color: #377ec2;
	}
	#webform-client-form-43 #edit-submit:hover {
		background-position: -45px -35px;
	}
}



/**
 * 5.4 responsive-layout-narrow
 * ----------------------------------------------------------------------------
**/
body.responsive-layout-narrow #region-sidebar-first {

	margin-left: 0;
	margin-right: 0;
}
body.responsive-layout-narrow #region-content {
	margin-left: 0;
	margin-right: 0;
}
