/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */

/* ------------------------------------------------------------------------ Page Styles & Resets */


html {
	position: relative; /*for sticky footer*/
  	min-height: 100%;
}

body {
/*
     text-rendering: optimizeLegibility;
  font-feature-settings: "kern";
    font-variant-ligatures: no-discretionary-ligatures;
*/
	font-family: 'Lato', sans-serif;
	background-color: #FFF;
	font-size: 1.3rem;
    color: #777;
    font-weight: 300;
} 

.body--sticky-footer.HomePage {
		padding-bottom: 11em; /*This will change depending on the height of the footer*/
	}
	
	.body--sticky-footer.HomePage .footer {
		height: 18em;
	}

@media (min-width: 992px) {

	.body--sticky-footer {
		padding-bottom: 18em; /*This will change depending on the height of the footer*/
	}

	/*if the header is fixed, add this class to the body
	.body--fixed-header {
		padding-top: 74px; /*This will change depending on the height of the header
	}*/

}

label img {
	pointer-events: none;
}

.red--text {
	color: #ff0000;
}

@media screen
and (min-width: 992px) {
   a[href*="tel:"] {
       pointer-events: none;
       cursor:auto;
	   text-decoration-color: transparent;
   }
	
	.body--sticky-footer.HomePage .footer {
		height: 15em;
	}
}


.dn {
	display: none;
}

.anchor {
    display: block;
    height: 204px;
    margin-top: -204px;
    visibility: hidden;
}

.Aligner {
    align-items: center;
}


/* ------------------------------------------------------------------------ Keyboard Accessibility */

.skip-link { 
	position:absolute; 
	left:-10000px; 
	top:0; 
	width:1px; 
	height:1px; 
	overflow:hidden;
	background-color: #666;
	color: #fff;
	font-size: 0.875rem;
	text-decoration:none;
	z-index: 1100;
	padding:0.5rem 0.625rem; 
} 

.skip-link:focus, .skip-link.sr-only-focusable:active, .skip-link.sr-only-focusable:focus {
	position: absolute; 
	outline: none; 
	left:0;
	outline: none; 
	width:auto; 
	height:auto;
} 

.skip-link:hover {
	color: #fff;
	background-color: #777;
}

a:focus, .carousel-control-next:focus,.carousel-control-prev:focus, .btn:focus, .carousel__link:focus .carousel__btn, .form-control-file:focus {
	outline: solid thin rgba(0, 0, 0, 0.5);
	box-shadow: none;
} 

.sidenav__header-link:focus, .card__header-link:focus {outline: solid thin rgba(255, 255, 255, 0.5);}

a:hover, a:active { outline: none !important; } /*...not with mouse (kinda) */


.dropdown-toggle::after {
   display:none
}

/* ------------------------------------------------------------------------ Headers */

h1, h2, h3,
.h1, .h2, .h3  { 		
	font-weight: 600;
	line-height:1.4;
}	

h1, .h1 {	
	font-size: 2rem;	
    text-transform: capitalize;
    font-weight: 400;
}
	
h2, .h2 {
	font-size: 1.5rem; 
        font-family: 'Montserrat', sans-serif;
        font-weight: 400i;
    padding-bottom: .75rem;
	text-transform: uppercase;
}

h2 a {
	font-weight: 600;
	
}
	
h3, .h3 { 
	font-size: 1rem; 
}	
	
		
@media (min-width: 992px) {	

	h1, .h1 {
		font-size: 2.25rem;
		font-family: 'Montserrat', sans-serif;
		letter-spacing: 6px;
	}

	h2, .h2 {
		font-size: 2rem;
		letter-spacing: 4px;
		
	}
    h3, .h3 { 
	   font-size: 1.2rem; 
    }	
}	

.subheader {
    margin-bottom: 1rem;
}
.subheader h2 {
    margin: 0;
    padding: 0;
}

.subheader h3 {
    margin: 0;
    padding: 0;
}

.slogan {
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	font-size: 1.2em;
	margin: 0;
	padding: 0;
	font-weight: 700;
	letter-spacing: 6px;
	text-transform: uppercase;
}

@media (min-width: 992px) {	
	.slogan {
	font-size: 1.6em;
	}
}

@media (max-width: 576px) {	
	.slogan {
	font-size: 1em;
	}
}
/* ------------------------------------------------------------------------ Lists */

ul, .list { 
	list-style: none; 
	list-style-position: outside;
	padding-left: 0;
}

ul li, .list__item {	
    padding: 0 0 0.25rem 1rem;
	background: url(../../images/arrow-right-gray.svg) no-repeat left 0.475rem;
	background-size: 0.625rem 0.625rem;
}

ul ul, .list__sub-list {
	margin-top: 0.25rem;
}


ul ol {
	padding-left: 1.375rem;
	margin-top: 0.25rem;
}

ul ol li {
	background-image: none;
	padding-left: 0;
}
		
ol {
	padding-left: 1rem;
}	

ol li {padding-bottom: 0.25rem;}

ol ol {
	padding-left: 2.25rem;
	margin-top: 0.25rem;
}

ol ul {margin-top: 0.25rem;}
		
li:last-child { 
	padding-bottom:0;
}



/* ------------------------------------------------------------------------ To Top Button */

.ToTop {
	position:fixed;
	bottom:0;
	right:0;
	z-index:2000;
	}

.ToTop a {
	display: block;
	width: 2.2em;
	height: 2.2em;
	padding: .5em;
	background-color:#2e6559;
	margin: 0;
	background-repeat: no-repeat;
	background-position: center center;
	}
	
	.ToTop svg { 		
		fill: #fff;
		-webkit-transition: fill 0.5s;	
			transition: fill 0.5s;
		width: 1.5rem;
		height: 1.5rem;
		}
	
	.ToTop span { 
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
		}

		.ToTop a:hover, .ToTop a:focus { background-color: #333; }

					
/* ------------------------------------------------------------------------ Top Links */

.top__link__container {
	display: inline-block;
	font-size: 12px;
	color: #fff;
}

.top__link__container a {
	color: #fff;
	text-decoration: none;
	display: inline-block;
	background: #2e6559;
	padding: 0.5em 1em;
}

.top__link__container a:hover {
	color: #ddd;
}

.top__link__container .phone:before {
	display: inline-block;
    content: ' ';
    background-image: url(../../images/phone-icon.svg);
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
    margin-right: 0.75em;
	position: relative;
	top: 0.25em
}

.top__link__container .email:before {
	display: inline-block;
    content: ' ';
    background-image: url(../../images/email-icon.svg);
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
    margin-right: 0.75em;
	position: relative;
	top: 0.25em
}

/* ------------------------------------------------------------------------ Other Base Text Styles */

.color-inherit {
	color: inherit;
}	

.text-muted {
	color: #888!important;
}

.intro-text {
    font-family: 'Montserrat', sans-serif;
	font-size:1rem;
	font-weight: 700;
	font-style: italic;
}

.note {font-size: .875rem;}

sup, sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup { 
	top: -0.5em; 
}

sub { 
	bottom: -0.25em; 
}



@media (min-width: 992px) {	

	.intro-text {
		font-size:1.5rem;
		line-height: 1.6;
	}	

}
	
/* ------------------------------------------------------------------------ Links */

a { 
	color: #2e6559; 
	font-weight: 400;
	transition: all 0.25s;
}	

a:hover {
	text-decoration: none;
	color: #555;
}

main a { 
	word-wrap: break-word; 
}

a img {
	border: none;	
	transition: opacity 0.25s;
	-webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}				

a img:hover { 
	opacity: .9;
}		

.goto::before { 
  display: block; 
  content: " "; 
  margin-top: -135px; 
  height: 135px; 
  visibility: hidden; 
  pointer-events: none;
}

.goto-product::before { 
  display: block; 
  content: " "; 
  margin-top: -35px; 
  height: 35px; 
  visibility: hidden; 
  pointer-events: none;
}

.btn {
    width: 100%;
	padding: 0.7rem 0;
	border-radius: 0;
	text-transform: uppercase;
	cursor: pointer;
    letter-spacing: 0.1em;
    border: none;
}

.btn-cart {
	width: 100%;
	padding: 0.3rem 0;
	border-radius: 0;
	text-transform: uppercase;
	cursor: pointer;
    letter-spacing: 0.3em;
    border: none;
	background: transparent;
	max-height: 1.2em;
	display: inline-block;
	height: 30px;
}

.full-width {
	width: 100%;
}

.btn-group-lg>.btn, .btn-lg {
/*    width: 50%; !important;*/
    margin-top: 1em;
	font-size: 0.75rem;
/*    border-radius: none !important;*/
}

.btn-full-width{  
    padding: 0.68rem 0 0 0;
    width: 50% !important;
    margin-top: 0;
    margin-bottom: 0!important;
}

.btn-primary {
	background-color: #2e6559;
	border-color: #fff;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
	background-color: #333;
	border-color: #333;
	box-shadow: none;
}

.btn--rounded {
/*	border-radius:100rem;*/
}

.btn--top_outline {
	background-color: transparent;
	border-top: 2px solid #fff;
}

.btn--outline {
	background-color: transparent;
	border: 2px solid #fff;
    max-width: 1rem !important;
	padding: 1rem 4rem;
	border-radius: 0;
	text-transform: uppercase;
	cursor: pointer;
    letter-spacing: 0.3em;
    border-radius: none;
}

.btn--outline:hover,
.btn--outline:active,
.btn--outline:not([disabled]):not(.disabled).active, .btn--outline:not([disabled]):not(.disabled):active, .show>.btn--outline.dropdown-toggle {
	background-color: transparent;
	border-color: #777;
	box-shadow: none;
    color: #777;
	text-decoration: none;
}

@media (min-width: 992px) {
    .btn-group-lg>.btn, .btn-lg {
        font-size: 1.125rem;
    }  
}

@media (max-width: 992px){
    .btn-sm {
    font-size: .65rem;
    line-height: 1.5rem;
    }
}
    
@media (max-width: 768px){
    .btn-sm {
    font-size: 1rem;
    margin-top: 0.5rem;
    }
	
	.btn--outline {
	font-size: 0.7rem;
	padding: 1rem 2rem;
	}
}

/* ------------------------------------------------------------------------ Images */
	
img {
	max-width: 100%;
	height: auto!important; 
}

   .image-float-left, .image-float-right { 
	margin: .5rem 0 1rem 0;	
}

@media (min-width: 576px) {	
	.image-float-left {
		float: left;
		margin: .5rem 1.5rem .375rem 0;
		max-width:50%;
		}
		
	.image-float-right {
		float: right;
		margin: .5rem 0 .375rem 1.5rem;
		max-width:50%;
		}
}

@media (min-width: 768px) {	
	.image-float-left, 
	.image-float-right { max-width:33%; }
}		

	
/* ------------------------------------------------------------------------ SVG's */

svg {
	width: 1rem;
	height: 1rem;
}	
	

/* ------------------------------------------------------------------------ Horizontal Rules */

hr, .hr { 
	margin: .75rem auto;
}	

@media (min-width: 768px) {

	hr, .hr {
		margin: 1rem auto;
	}

}	



/* =============================================================================================
	HEADER
============================================================================================= */

.print-header { display:none; }
	
.logo { 
	flex: 1;
	display: block;
}
/*
.logo svg{
    width: 236px;  236px x 32px  
    height: 32px;
    fill: #fff;
}
*/

.logo__img {
	max-width: 14rem; 
    padding-right: 0 !important;
    background-repeat: no-repeat !important;
}

.logo__img--home {
	max-width: 25rem;
	padding: 0 0 2em 0;
}

.logo__icon {
	display: inline-block;
/*    max-width: 14rem; */
/*    height: 2rem;*/
	margin: 0 ;
    padding: 0 2rem 3rem 0;
	background-repeat: no-repeat!important;
	background-position: center center;
/*	border: 1px solid #ddd;*/
/*	border-radius:50%;*/
/*	background-size: 1rem 1rem;    */
}

.header--scroll .logo__icon {
}

.header__content input[type="button"] {
    display: block;
	background: #333;
}


/*
[class^="icon-"] {
        width: 32px;
height: 32px;  
  display: block;
  background: url(../../images/sprite.svg);
  text-indent: 100%;  
    white-space: nowrap;
    overflow: hidden;
width: 100%; 
    height: 100%;
        transition: fill 0.5s,
}
*/

.logo__icon--stairworks { 
    background: url(../../images/logo-reverse.svg);
}

.header {
	border-bottom: 1px solid #ddd;
}

.header--fixed-top {
	transition: background-color 0.5s, color 0.5s ;
}

.header__content {
	margin-top: 0.75rem;
}

.header--dark {
	border-bottom: none;
	background-color: #111;
	position: relative;
	z-index: 2;
}

.header__icon svg{
fill: #fff !important;
}

.header__icon:hover { 
/*	background-color: #999;*/
/*
    -webkit-filter: brightness(250%);
    filter: brightness(250%);
*/
}

.header-nav {
	margin: 0.8em 0 0 0;
	padding: 0 0 1em 0;
}


.header--scroll .cart-nav {
	color: #333;
}

.cart-nav {
	color: #fff;
	padding: 1em 0 0 0;
	text-transform: uppercase;
	font-size: 0.8rem;
}

#header__icon-size--viewquote {
	width: 1em;
	height: 1em;
	float: left;
	position: relative;
    top: 0.2em;
    margin-right: 0.5em;
}

#header__icon-size--processquote {
	width: 1em;
	height: 1em;
	float: left;
	position: relative;
    top: 0.2em;
    margin-right: 0.5em;
}

.upload input {
	margin-bottom: 1em;
	width: 100%;
}

@media (min-width: 992px) {	

.header-nav .col-lg-3  {
	    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
    max-width: 28%;
}
	
}

@media (min-width: 768px) {	
		
	.logo__error-page {
		margin:1.5rem auto 2.5rem auto;
		float: none;
	}

}

.header__icon {
    text-align: center !important;
	display: inline-block;
	background-repeat: no-repeat!important;
	background-position: center center;
	margin-left: 1em;
/*	border: 1px solid #ddd;
/*	border-radius:50%;*/
/*	background-size: 1.5rem 1.5rem;    */
}

.header__icon {
	color: #fff;
}

.header--scroll .header__icon {
	color: #333;
}

.header--scroll .cart-row {
	color: #333;
}

.header-scroll .cart-row a {
	color: #333;
}

.header--scroll .header__icon svg{
fill: #333 !important;
}

@media (max-width: 575px) {

	.logo__icon {
		padding: 0 2rem 2rem 0;
	}

}



@media (min-width: 992px) {	

	.header__content { 
		margin-top: 0;
		margin-left:1.5em;
	}

	.header--fixed-top {
		position: fixed;
	    top: 0;
	    right: 0;
	    left: 0;
	    z-index: 1040;    
	}

    .header--dark-transparent-lg {
        background-color: transparent;
		transition: all 0.25s;
		padding: 0;
	}

	.header--dark-transparent-lg.header--scroll{
		background-color: #fff;
        color: #000 !important;
		-webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
		-moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
		-ms-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
		box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
		padding: 0 0 0.8em 0;
		transition: all 0.25s;
	}

    	.header--dark-transparent-lg.header--scroll .logo svg{
		fill: #222;
	}
    
    .header--dark-transparent-lg.header--scroll .nav-link {
        color: #000 !important;
	}
    
    .header--dark-transparent-lg.header--scroll .nav-link:hover, .header--dark-transparent-lg.header--scroll .nav-link:active {
        color: #2e6559 !important;
	}
    
    .header--dark-transparent-lg.header--scroll .logo__icon--stairworks { 
            background: url(../../images/logo-grey.svg); 
    }
	
	.header-nav {
		padding: 0 0 0 0;
	}
    
    
}

@media (min-width: 1200px) {	

	.header__content { 
		margin-left:2em;
	}

}
		
/* ------------------------------------------------------------------------ TopLinks */

.top-links { 
	padding-bottom: 0.5rem;
}

.top-links__link { 
	text-decoration:none;
	font-size: 0.8rem;
	font-weight: 400;
	padding: 0 0.5rem;
	color: #444;
}

.top-links__link:hover {
	text-decoration:underline;
	color: #777 ;
}	

@media (min-width: 768px) {
		
	.top-links__link {
		font-size: 0.9375rem;
	}

}

@media (min-width: 992px) {

	.top-links {
		padding: 0;
	}

	.top-links__link:last-child { 
		padding-right: 0;
	}

}


/* ------------------------------------------------------------------------ Seach Area */


.search-form{
    padding-left: 1rem;
    transition: background-color 0.75s, color 0.75s;
}

.search-result {
	border: solid 1px #ddd;
    padding: 2em;
    font-style: italic;
    font-weight: bold;
    background: #fafafa;
}

.justify-content-lg-end {
    margin-left: 0rem !important;
    width: 100%;
}

.search-form__input::placeholder /*, .search-form__input::-ms-input-placeholder */ {
    color: #fff;
}

.search-form__input::-ms-input-placeholder {
	color: #fff;
}

.header--dark-transparent-lg.header--scroll .search-form__input::-ms-input-placeholder {
	color: #333;
}

/*
.search-form__input::input, .search-form__input::select, .search-form__input::textarea{
    color: #fff;
}

.search-form__input::textarea:focus, .search-form__input::input:focus {
    color: #fff;
}
*/

.search-form__input {
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0) !important;
    color: #fff;
    padding: 0rem 0.75em!important; 
    letter-spacing: 0em;
    font-size: 0.8rem !important;
	width: 92%;
	border: solid 1px #ddd;
	height: 1.47rem;
}

.SearchButton {
    font-size: 0;
    width: 15%;
    height: 1.483rem;
    display: block;
    float: right;
    padding: 0;
    margin: 0;
    border: 0;
    cursor: pointer;
    background-image: url(../../images/search-icon-grey.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
}

.search-form__btn{
	position: relative;
    left: 0;
	top: -0.1em;
	width: 0.1rem;
    margin: 0rem;
	padding: .4rem;
	border-radius: 0;
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important;
}

.search-form__btn:after {
	content: "";
	position: absolute;
	left: -0.3rem;
	top: 0;
	background: url(../../images/search-icon.svg) no-repeat center;
    background-size: 0.75rem 0.75rem;
	width: 100%;
	height: 100%;
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important;
}


@media (max-width: 992px) {	
	.search-form__input {
	height: 1.45rem;
		position: relative;
		top: -0.43rem
	}
	
	.SearchButton {
		width: 8%;
	}
}

@media (min-width: 992px) {	

    .header--dark-transparent-lg.header--scroll .search-form__input, .header--dark-transparent-lg.header--scroll .search-form__input::placeholder/*,, .header--dark-transparent-lg.header--scroll .search-form__input::-ms-input-placeholder .header--dark-transparent-lg.header--scroll .search-form__input:-ms-input-placeholder, */{
        color: #000 !important;
	}
    
    .header--dark-transparent-lg.header--scroll .search-form__btn:after { 
	background: url(../../images/search-icon-grey.svg) no-repeat center;
    background-size: 0.75rem 0.75rem;
    }
    
    .search-form{
        padding-left: 0 !important;
    }
	
	.justify-content-lg-end {
		margin-left: 0rem !important;
		width: 13rem;
	}
}

@media (min-width: 1200px) {
	.search-form__input {
	}
	
	.SearchButton {
    	width: 29px;
	}
}


/* ------------------------------------------------------------------------ Navbar Nav */

#nav-conatiner {
    padding: 0 !important;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}

.navbar-nav .nav-link {
/*	border-bottom: 1px solid #ddd;*/
	color: #444;
	text-transform: uppercase;
/*	padding: .625rem 0;*/
    font-weight: 400;
    margin-right: 0.9rem !important;
    font-size: 0.54rem;
/*    margin-top: 0.05rem !important;*/
}

.navbar-nav .nav-item {
	background-image: none;
	padding: 0 1rem;
}

a.nav-item:last-child {
    margin-right: 0 !important;
}

.navbar-nav .nav-item.active .nav-link {
    color: #fff;
    padding-bottom: 0;
	border: solid 2px #2e6559;
	padding: 0.5em !important;
}

.navbar-nav .nav-item.active:hover .nav-link, .navbar-nav .nav-link:hover {
    color: #ededed;
}

.navbar-nav .dropdown-menu {
	border: 0;
	background-color: #ddd;
	border-radius: 0;
	margin:0;
	padding:0;
}

.navbar-nav .dropdown-menu li.active > .dropdown-item {
	color: #fff;
	font-weight: 600;
	background: #2e6559;
}

.navbar-nav .dropdown-item {
	border-bottom: 1px solid #fff;
	padding: .6rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.navbar-nav li:last-child > .dropdown-item {
	border-bottom: none;
}

.navbar-nav li {
	padding: 0;
	background-image: none;
}

.navbar-nav .dropdown-item:hover {
	background-color: rgba(0,0,0,.1);
}

.navbar-nav .dropdown-item:active {
	color:#444;
}

.navbar-nav .dropdown-item:focus {
	background-color:#ddd;
}

.navbar-nav .dropdown-menu .dropdown-menu {
	background-color: #ddd;
}

.navbar-nav.sm-collapsible .dropdown-menu .dropdown-menu {
	margin:0;
}

.navbar-nav .dropdown-item .dropdown-item {
	background-color: inherit;
}

.navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
	display: none;
	border:0;
}

.navbar-nav.sm-collapsible .sub-arrow {
	border: none;
	width: 2rem;
	margin-right: 0;
}

.navbar-nav:not(.sm-collapsible) .dropdown-item .sub-arrow, .navbar-nav:not(.sm-collapsible):not([data-sm-skip]) .dropdown-menu .dropdown-toggle::after {
    border: none;
    width: .625rem;
    height: .625rem;
    background-image: url(../../images/arrow-right-gray.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: .625rem .625rem;
}

/* ------------------------------------------------------------------------ Navbar Dark */
.navbar-nav--dark .nav-link {
	color: #fff;
/*	border-bottom: 1px solid #333;*/
}

.navbar-nav--dark .dropdown-menu {
	background-color: #222;
}

.navbar-nav--dark .dropdown-item {
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,.1);;
}

.navbar-nav--dark .dropdown-item:active {
	color:#fff;
}

.navbar-nav--dark  .dropdown-item:focus {
	background-color:#222;
}

.navbar-nav--dark .dropdown-menu .dropdown-menu {
	background-color: #333;
}

.navbar-nav--dark:not(.sm-collapsible) .dropdown-item .sub-arrow, .navbar-nav--dark:not(.sm-collapsible):not([data-sm-skip]) .dropdown-menu .dropdown-toggle::after {
    background-image: url(../../images/arrow-right-white.svg);
}

@media (min-width: 992px) {	
    .navbar-nav .nav-item {
	padding: 0;
}
    
	.navbar {
		margin-top: 0; 
	}

	.navbar-nav .nav-item.active .nav-link {
		position: relative;
	}

	.navbar-nav .nav-item.active .nav-link:after {
		content: "";
		position: absolute;
/*		bottom: -1px;*/
		left: 0;
		width: 100%;
		height: 4px;
/*		border-bottom: 4px solid #666;*/
/*    	transition: border-color 0.25s;*/
	}

	.navbar-nav .nav-item.active:hover .nav-link:after {
		border-color: #777;
    }

	.navbar-nav .nav-link {
		padding: 0.5rem 0.2rem!important;
		border-bottom: 0;
	}
	.navbar-nav .nav-item:last-child .nav-link {
		margin-right:0; 
	}

	.navbar-nav .dropdown-menu {
		padding: 0;
		min-width: 15rem !important;
	}

    .navbar-nav--dark .nav-link {
		border-bottom: 0;
	}
    
}

@media (min-width: 1200px) {

	.navbar-nav .nav-link {
		margin-right: 5rem;
		font-size: 0.8rem;
		margin-top: 0.05rem !important;
    }
}

@media (min-width: 1280px) {
	.navbar-nav .nav-link {
		font-size: 0.75rem;
	}
}

@media (max-width: 1200px) {
	.navbar-nav .nav-link {
		padding: 0.5rem 0rem!important;
	}
}

@media (max-width: 992px) {
.navbar-nav .nav-link {
    font-size: 0.8rem;
}
}



/* ------------------------------------------------------------------------ Navbar Toggler */

.navbar-toggler {
    flex: 0;
	padding: 0 0 0 1rem;
    float: right !important;
	border: none;
	cursor: pointer;
    text-size-adjust: 100% !important;
    justify-content: right;
}

.navbar-toggler-icon {
    float: right !important;
    background-image: url(../../images/menu-icon.svg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url(../../images/menu-icon-open.svg);
}

@media (min-width: 992px) {

	.navbar-toggler {
		display: none;
	}
	
	.navbar-toggler {
    	flex: 1;
	}

}

.navbar-toggler--dark .navbar-toggler-icon {
    background-image: url(../../images/menu-icon-reverse.svg);
}

.navbar-toggler--dark[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url(../../images/menu-icon-open-reverse.svg);
}




/* =============================================================================================
	MAIN CONTENT AREA
============================================================================================= */

main p,
	main li,
	label,
	table {
		/*font-size: 1.3rem;
		color: #777;
		font-weight: 300;*/
}

.full--page{
    margin: 1.5rem 0;
}

@media (min-width: 992px) {		
	
	.aside {
		padding-left: 1rem
	}
	
	.main--full-width {
		width: 100%;
		padding-left: 0;
	}
				
}


/* ------------------------------------------------------------------------ Sidenav */

.sidenav {
	background-color: #ddd;
}

.sidenav.sticky-top {
	top: 102px; /*This will change depending on the height of the header*/
}

.sidenav__header {
	padding: .75rem 1.25rem;
	background-color: #222;
}

.sidenav__header-link {
	color: #fff;
	display: block;
	transition: all 0.25s;
}

.sidenav__header-link:hover {
 	color: #777; 
 	text-decoration: none;
}

.sidenav__list {
	list-style: none;
}

.sidenav__item {
	line-height: 1.4;
	padding: 0;
	border-top: 1px solid #fff;
	background-image: none;
}

.sidenav__item.active > .sidenav__link {
    color: #666;
    font-weight: 600;
}

.sidenav__link {
	display: block;
	font-size: 1rem;
	padding: .75rem 1.5rem;
	color: #444;
	font-weight: 400;
}

.sidenav__link:hover { 
	background-color: rgba(0,0,0,.1);
	color: #444;
	text-decoration: none;
}

.sidenav__sub-list {
	background-color: #ddd;
	margin:0;
}

.sidenav__sub-list .sidenav__item { 
	background: url(../../images/arrow-right-gray.svg) no-repeat 2rem 1.125rem;
	background-size: 0.625rem 0.625rem;
}

.sidenav__sub-list .sidenav__link {
	padding-left: 3rem ;
}


@media (max-width: 992px) {

	.sidenav.sticky-top {
		position: static; /*disable on smaller screens*/
	}

}


/* ------------------------------------------------------------------------ Side Bar */

.sidebar {
	position: -webkit-sticky;
	position: sticky;
	/*top: 15px;*/
	top: 7em;
}

/* ------------------------------------------------------------------------ Sections */

section {
	position: relative;
	z-index: 1;
}

.section { 
	padding: 2rem 0;
}

.section--grey {
	background-color: #dbd7d6;
}
.section--lightgrey {
	background-color: #efefef;
}

.section__process {
	background-color: #fafafa;
	padding: 2em;
	border: solid 1px #ddd;
}

.section--darkgrey {
	background-color: #444;
    text-align: center!important;
}

.section--accent {
	background-color: #2e6559;
	text-align: center!important;
}

.section__collection {
    z-index: 2;
}

.section--home-bio {
	background:url(../../images/home-bg.jpg) top #fff no-repeat;
}

.section__downloads {
	margin: 3em 0 1em 0;
}

.section__quote {
	margin: 1em 0;
	padding: 2em 0;
	border-bottom: solid 1px #ddd;
}

@media (min-width: 768px) {	

	.section { 
		padding: 4rem 0; 
	}

}


.block--grey {
	background: #efefef;
}

.block--white {
}


/* ------------------------------------------------------------------------ Carousel */	

.carousel-inner{ 
        background-color: #111 !important;
}

.carousel__link {
	display: block;
}

.carousel__btn {
	transition: all 0.25s;
}

.carousel__link:hover .carousel__btn {
    background-color: transparent;
	border-color: #fff;
    color: #fff;
}

.carousel__image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 15rem;
	transition: opacity 0.25s ease-in-out;
    z-index: 1;
}

.carousel__link:hover .carousel__image {
	opacity: 0.9;
}

.carousel__heading {
    font-size: 1.75rem;
    line-height: 1.3;
    margin:0.5rem 0;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.carousel__heading--sm { 
        font-weight: 400!important;
        padding-top: 0.75em;
        text-transform: uppercase;
        letter-spacing: 0.1em;
		font-size: 1em;
	}

.carousel__heading--lg { 
		font-size: 2.4em;
	}

.carousel__link:hover {
	text-decoration: none;
}

.carousel__subheading {
    margin-bottom: 0 !important;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.2em;
	font-weight: 400;
}

.carousel-indicators li {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
/*    text-indent: -999px;*/
    cursor: pointer;
    background-color: #444;
/*    background-color: rgba(0,0,0,5);*/
/*    border: 1px solid #fff;*/
    border-radius: 15px;
}

.carousel-indicators .active {
    background-color: #777;
}

.carousel-caption { 
    margin: 0 auto;
    padding: 2rem 0.5rem;
    transition: all 0.25s;
}

.carousel-control-next, .carousel-control-prev {
	align-items: stretch;	
}

.carousel-control-next-icon, .carousel-control-prev-icon {
	width: 2rem;
	height: 2rem;
	margin-top: 6.5rem;
	transition: all 0.25s;
    display: none; /* turned off*/
}

.carousel-control-prev-icon {
	background-image: url(../../images/carousel-control-prev-icon-white.svg);
}

.carousel-control-next-icon {
	background-image: url(../../images/carousel-control-next-icon-white.svg);
}

.home-button {
	max-width: 15em;
	margin: 0 auto;
}

.btn-carousel {
	color: #fff;
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 2px;
	background: #333;
}

.btn-carousel:hover {
	outline: none;
	background: #2e6559;
}

.btn-carousel:active {
	outline: none;
}

.carousel__image:after{
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.5);
		/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.25+100 */
		/*background: -moz-linear-gradient(top, rgba(0,0,0,0.9) rgba(0,0,0,0.3), rgba(0,0,0,0.3), rgba(0,0,0,0.9)); /* FF3.6-15 */
		/*background: -webkit-linear-gradient(top, rgba(0,0,0,0.9), rgba(0,0,0,0.3), rgba(0,0,0,0.3), rgba(0,0,0,0.9)); /* Chrome10-25,Safari5.1-6 */

		/*background: linear-gradient(rgba(0,0,0,0.9) rgba(0,0,0,0.3), rgba(0,0,0,0.3), rgba(0,0,0,0.9)); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
		z-index: 1;
	}

@media (min-width: 575px) {	

	.carousel__image {
		min-height: 17rem;
	}

	.carousel-control-next-icon, .carousel-control-prev-icon {
		margin-top: 8rem;
	}

	.carousel-control-prev:hover {
	padding-right: .75rem;
	}

	.carousel-control-next:hover {
		padding-left: .75rem;
	}

}

@media (max-width: 575px) {	
	.carousel__heading--lg {
		font-size: 1.7em;
	}
	
	.carousel__heading--sm, .btn-carousel {
		font-size: 0.6em;
	}
	
	.home-button {
		max-width: 10em;
	}
	
	.carousel-caption { 
   		padding: 2rem 0rem;
	}
}

@media (min-width: 992px) {	

	.carousel__image {
		min-height: auto;
		height: 0;
		padding-bottom: 34%;
	}
    
	.carousel__link:hover .carousel-caption {
		transform: translateY(-.375rem);
	}

    
	.carousel__heading {
		font-size: 2.5rem;
	}

	.carousel-control-next, .carousel-control-prev {
		align-items: center;
	}

	.carousel-control-next-icon, .carousel-control-prev-icon {
		width: 3rem;
		height: 3rem;
		margin-top:0;
	}
    
/*    Dark section*/
	.carousel--100vh {
	 	height:100vh; 
	}

	.carousel--100vh .carousel__image {
		height: 100vh;
		padding-bottom: 0;
	}

	.carousel--100vh .carousel-caption {
		bottom:50%;
		transform: translateY(45%);
	}

	.carousel--100vh .carousel__link:hover .carousel-caption {
		transform: translateY(45%);
	}

    .carousel__heading--sm { 
		font-size: 1.4em;
		color: #fff;
	}
	.carousel__heading--lg { 
		font-size: 6em;
		font-weight: 400;
		font-family: 'Lato', sans-serif;
		letter-spacing: 0;
	}

}

@media (max-width: 575px) {	

	/*.carousel-caption {
		position: relative;
		right: auto;
		left: auto;
		bottom: auto;
		background-color: #111;
	}*/

}

@media (min-width: 1200px) {

	.carousel__image {
		padding-bottom: 30%;
	}

}

@media (min-width: 1920px) {

	.carousel__image {
		min-height: 36rem;
		padding-bottom: 0;
	}

}

/* ------------------------------------------------------------------------ Jumbotron/banner */

.jumbotron {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400i;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 0;
	margin-bottom: 0;
	min-height: 10rem;
	background-color: #ddd;
    overflow: hidden;
}


.container-fluid{
    display: table;
    text-align: center;
     max-width: 70rem;
    min-height: 10rem;
    margin: 5rem auto;
    padding: 2rem;
    transition: all 0.25s;
    color: #fff;
    /*background-color:rgba(0, 0, 0, 0.4);*/
	position: relative;
	z-index: 2;
}

.container-fluid h1{
    display: table-cell;
    vertical-align: middle;
    margin: auto;
    font-size: 1.2em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
}

#jumbotron-caption {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.25+100 */  
		   
		background: -moz-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.5),  rgba(0,0,0,0.5), rgba(0,0,0,0.5)); /* FF3.6-15 */
		background: -webkit-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.5), rgba(0,0,0,0.5), rgba(0,0,0,0.5)); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5), rgba(0,0,0,0.5), rgba(0,0,0,0.5)); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
		z-index: 1;
	}


@media (min-width: 576px) {	

	.jumbotron {
		min-height: 18rem;
	}
	
	.container-fluid h1{
    font-size: 2em;
	}

}



@media (min-width: 992px) {	

	.jumbotron {
		min-height: 30rem;
	}
	
	.container-fluid h1{
    font-size: 3em;
	}
    
       
    .container-fluid{
        margin-top: 11rem;
}

}

/*
@media (min-width: 1200px) {	


	.jumbotron {
		min-height: 24rem;
	}
*/



/* ------------------------------------------------------------------------ Sketchfab */
.sketchfab-embed-wrapper{
/*    width: auto;*/
/*    max-width: 480;*/
/*    position: relative;*/
/*    max-width: 500px;*/
/*    padding-bottom: 75%; // iframe percentages based on size (width="480" ÷ height="640" ÷ H = 0.75 = 75%)*/
/*    height: 0px;*/
/*    overflow: hidden;*/
}

.sketchfab-embed-wrapper iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ------------------------------------------------------------------------ Carvings Catalogue iframe */
.carvings--catalogue {
position: relative;
    overflow: hidden;
    border-style: solid;
    border-width: 1px;
    border-color: #aaa;
}
.carvings--catalogue iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
	min-width: 530px;
}

/* ------------------------------------------------------------------------ Product Slider */

.slider-for{
   border-style: solid;
    border-width: 1px;
    border-color: #ddd;
}

.slider--item{
    height: 632px !important;
    text-align: center;
    position: relative;
    display: block;
    vertical-align: middle;
    margin: auto;
    align-items: center;
}

.slider--item img{
    position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    width: auto;
    height: auto;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
}

.slider--item span {
     padding: auto;
/*    display: flex;*/
    align-items: center;
}

.slider-nav{
    margin: 1.75rem 2rem;
/*    flex: 1;*/
/*    height:0 !important;*/
}
    
.slider--thumbnails{
/*    flex: 1;*/
    height: 6rem !important;
    text-align: center;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: auto;
	cursor: pointer;
	border: solid 1px #eee;
}

.slider--thumbnails img, .slider--thumbnails span {
    width: auto;
    height: auto;
    position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;
    max-height: 5rem;
    display: flex;
    align-items: center ;
	padding: 0.1em;
}

.slider--thumbnails img:hover {
	opacity: 0.8;
	-webkit-transition: all .2s;
			transition: all .2s;
}

@media (min-width: 992px) {
}

@media (max-width: 768px) {
    .slider--item{
    height: 300px !important;
    }
}	

@media (max-width: 500px) {
    .slider--item{
        height: 250px !important;
    }
    
    .slider--thumbnails{
        height: 5rem !important;
    }

    .slider--thumbnails img, .slider--thumbnails span {
        max-height: 5rem;
    }

}


/* ------------------------------------------------------------------------ Slick */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
	max-height: 100% !important;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* THEME*/

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../../images/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/slick.eot');
    src: url('../fonts/slick.eot?#iefix') format('embedded-opentype'), url('../fonts/slick.woff') format('woff'), url('../fonts/slick.ttf') format('truetype'), url('../fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: #222;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -36px;
}
[dir='rtl'] .slick-prev
{
    right: -36px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -36px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -36px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

.slick-dots{
    display: none !important;
}


/* ------------------------------------------------------------------------ News Block */

.body--newsdetail .container-fluid {
	
}

.body--newsdetail .container-fluid h1 {
	font-size: 2em;
}

.news-block {
	border-bottom: solid 1px #ddd;
	margin: 0 0 3em 0;
	padding: 0 0 2em 0;
}

.news-block:last-child {
  overflow: auto;
	border: none;
	margin: 0;
	padding: 0;
}

.img-right {
	margin: 0 0 1em 1em ;
	border: solid 1px #ddd;
	padding: 1em;
	float: right;
}

@media (max-width: 576px) {
	.body--newsdetail .container-fluid h1 {
		font-size: 1.2em;
	}	
}

@media (max-width: 767px) {
.img-right {
	margin: 0 auto 2em ;
	border: solid 1px #ddd;
	padding: 1em;
	float: none;
	display: block;
	}	
}

/* ------------------------------------------------------------------------ Products Page */

.product__landing__image {
	max-height: 14em;
	max-width: 12em;
}

.products-wrap {
	display: table;
	height: 100%;
	width: 100%;
}

.product-cell {
	display: table-cell;
	vertical-align: middle;
}

.product-cell img {
	max-height: 350px;
	padding: 3.5em
}

@media (max-width: 992px) {
	.product-cell img {
	 padding: 0em 2em;
	max-height: 350px;
}
}

@media (max-width: 768px) {
.order-2 {
    -ms-flex-order: 2;
    order: 0;
}
}


/* ------------------------------------------------------------------------ Product Items */


.full-width-col-md-8{
    float:left;
    width: 730px;
}

.sub-category {
	text-align: center;
	font-size: 2em;
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	background: #2e6559;
	padding: 1em;
	margin: 0;
}

.sub-cat a {
	font-size: 1.4rem;
}

.btn-separate{
    text-align: center;
	border: solid 2px #2e6559;
    color: #2e6559;
	font-weight: 700;
}
.btn-separate:hover {
	background-color: #2e6559;
    color: #fff;
}
.bullets{
    margin-left: 2rem;
}

.product-dividers-group, .product-dividers-group-flex{
    min-height: 18rem;
    border-bottom: 1px solid #ddd;
}

.float--right{
    float: right !important;
}
.float--left{
    float: left !important;
}
.clear-float{
clear: both; 
}
.products--imgs{
    text-align: center;
	margin: 3em 0;
/*margin: auto;*/
}
.products--imgs--stlye{
    max-height: 22rem;
    max-width: 12rem;
}

.product-dividers-group .col-md-8{
	border-left: solid 1px #ddd;
}

.product-dividers-group-flex .col-md-8{
	border-right: solid 1px #ddd;
}

.product-mid {
	padding: 4em;
}

.product-detail p {
	margin: 0.4rem 0 0.2rem 0;
}

.product-detail h3 {
	font-family: 'Montserrat', sans-serif;
}

.product-detail-list h3 span{
    font-size: 1rem;
    font-weight: 400;
}

.product-detail-list .btn-primary{
 border: 0rem;
}

.invalid-feeback {
	display: block !important;
}

.material-error {
	border: solid 2px #9b1923;
	text-transform: uppercase;
	font-size: 1rem;
	padding: 1em;
	margin: 1em 0;
	text-align: center;
	font-weight: 700;
	letter-spacing: 1px;
}

.material-error::before{
	display: inline-block;
	content: ' ';
	background-image: url('../../images/warning.svg');
	background-size: 20px 12px;
	width: 20px;
	height: 12px;
	margin-right: 0.5em;
}

#swapDiagram {
    max-height: 25rem;
    margin-left: auto;
	margin-right: auto;
	display: block;
}

.diagram {
	margin: 2em 0;
	border-top: solid 2px #eee;
	border-bottom: solid 2px #eee;
	padding: 2em;
}


.documents__icons {
    align-content: center;
    display: inline-block;
	height: auto;
	width: 2rem;
	padding-bottom: 2em;
	margin: 0.5rem auto;
    margin-left: 0.5rem;
    background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 0.25s ease-in-out;
	float: right;
}

.documents__icons:hover {
	opacity: 0.9;
	transform: translateY(-.5em);
}

.product--documents{ 
     margin-left: 1rem;
}

.reset-left-margin{ 
     margin-left: 0rem;
}


legend {
	font-size: 1.3rem;
}

@media (max-width: 992px) {
	.full-width-col-md-8{
		width: 450px;
	}
	
	.sub-category {
	font-size: 1.6em;
	}
}


@media (max-width: 768px) {
	.product-detail-list {
			margin-top: 0rem;
    }
	.full-width-col-md-8 {
		float: none;
		width: 100%;
    }
		.btn-separate {
		font-size: .8rem;
	}
	.product-dividers-group .col-md-8{
	border-left: none;
	}
	.product-dividers-group-flex .col-md-8{
		border-right: none;
	}
	.product-mid {
		padding: 2em;
	}
}	

@media (max-width: 500px) {
.btn-separate{
    font-size: .75rem;
}
	.sub-category {
	font-size: 1.2em;
	}
}

@media (max-width: 400px) {
.btn-separate{
    font-size: .55rem;
}
}


/* ------------------------------------------------------------------------ Product Listing */

.product-grid .CalloutGroup {
   background: #fff;
}


.product-grid .col-lg-4:hover {
   border: solid 1px #2e6559;
}

.product-grid .col-lg-4 a:hover {
   color: #2e6559;
	text-shadow: 0 3px 0 rgba(0,0,0,.08)
}

.product-grid .col-md-6:hover {
   border: solid 1px #2e6559;
}

.product-grid .col-md-6 a:hover {
   color: #2e6559;
	text-shadow: 0 3px 0 rgba(0,0,0,.08)
}

.product-grid .col-sm-12:hover {
   border: solid 1px #2e6559;
}

.product-grid .col-sm-12 a:hover {
   color: #2e6559;
	text-shadow: 0 3px 0 rgba(0,0,0,.08)
}

.product-grid a:hover {
   text-decoration: none;
}

.product-grid .content {
   padding: 0 3em 2em 3em;
}

.product-grid .image-block {
   height: 20em;
}

.product-grid .col-lg-4 {
   border: solid 1px #ddd;
}

.product-grid .col-md-6 {
   border: solid 1px #ddd;
}

.product-grid .col-sm-12 {
   border: solid 1px #ddd;
}

.product-grid img {
	display: inline-block;
	max-width: 70%;
	max-height: 255px;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.product-grid img:hover {
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.product-grid h2 {
	font-size: 1.4rem;
}

.align-middle {
  text-align: center;
}
.align-middle:before {
    content: ' ';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

@media (max-width: 1200px) {
	.product-grid h2 {
		font-size: 1rem;
	}
}


/* ------------------------------------------------------------------------ Swatches */
.materials--radio input[type="radio"] {
    display: none;
}

.materials--radio div{
position: relative;
overflow: hidden;
display: inline-block;
}

.materials--radio label > input + img{
      cursor: pointer;
  border:3px solid transparent;
}

.materials--radio label {
	width: 3.5rem;
	height: 3.5rem;
}

/*.swatches--radio legend {
font-weight: 800;
font-size: 1.1rem !important; 
}

.swatches--radio div{
position: relative;
width: 3.5rem;

height: 3.5rem;
overflow: hidden;
display: inline-block;
}

.swatches--radio label > input + img{
      cursor: pointer;
  border:3px solid transparent;
}

.swatches--radio div.white label > input + img{
   border: solid 1px #ddd;
}

.swatches--radio label > input:checked + img, .swatches--radio div.white label > input:checked + img{
border: 3px solid #777;
}


.swatches div img, .swatches--radio div img {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 100%;
	width: auto;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.swatches--radio input[type="radio"] {
    display: none;
}*/



.swatch-pointer {
	cursor: pointer;
}

.swatch-pointer:hover {
	cursor: pointer;
	opacity: 0.9;
}

.swatch-pointer img:hover {
	border: solid 3px #333;
}


@media (max-width: 992px) {
    .swatches--radio legend {
    font-size: 1rem !important; 
    }
}


/* ------------------------------------------------------------------------ Callouts gallery */

.CalloutGroup { 
    margin: 0;
    background-color: #444;
}

.callout-full-page { 
    padding-top: 0 !important;
 padding-bottom: 0 !important;
}


#content > section:nth-child(4) > div > div:nth-child(1) > div.col-sm-6.col-lg.callout-full

.Col-1-3 { 
		margin-right: 1%; 
		width: 32.6%;  

		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-osx-font-smoothing: grayscale;
		
		-webkit-animation: pagetitle 1s  ;			
		-moz-animation: pagetitle 1s  ;
		-o-animation: pagetitle 1s  ;				
		animation: pagetitle 1s  ;	
		}

.CalloutGroup.MR1 .Col-1-3:nth-child(3n) { 
margin-right: 0;
background: #e3e3e3;
}
.CalloutGroup.MR1 .Col-1-3.ThreeN { margin-right: 0; } /*IE8*/
		

.Col-1-3.Last .Callout a {border-right: none; }

[class*='Col-']:last-child { margin-right: 0; }
[class*='Col-'].Last { margin-right: 0; } /*IE8*/
				
.Col-1-3 { width:31%; 
        margin-right: 3.5%;
		float:left; 
    
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	
	-webkit-animation: pagetitle 1s  ;			
	-moz-animation: pagetitle 1s  ;
	-o-animation: pagetitle 1s  ;				
	animation: pagetitle 1s  ;	}	
.Col-1-3:nth-child(3n) { margin-right: 0; }
.Col-1-3.ThreeN { margin-right: 0; } /*IE8*/
				
.Col-1-3:nth-child(3n+4) {clear: both;}
.Col-1-3.ThreeNPlusFour { clear: both; } /*IE8*/
				
.MR0 .Col-1-3 { 
    margin-right: 0; 
    width: 33.3%;  
}

.CF:before, .CF:after { 
	content: ""; 
	display: table; 
	}
	.CF:after { clear: both; }
	.CF { *zoom: 1;}

.Callout {overflow: hidden; }
		
	.Callout a { 
		display: block;
		width: 100%;
		padding-bottom:66%;
		height:0;
		margin: 0 auto ;
		color: #fff;
		text-align:center;
		position:relative;
		overflow: hidden;
		border-bottom: 1px solid #ddd;
        border-right: 0 solid #ddd; 
		border-bottom: none;
		}
		
	.CalloutImage {	
		position: absolute;
		top: 0;
		left: 0; 
		width: 100%;
		height:100%;
		background-color: #aaa; 
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
		
		-webkit-transition: all 1s;
			transition: all 1s;
		}
		
		.Callout a:hover .CalloutImage { 
			-webkit-transform: scale(1.1); 
				transform: scale(1.1);
			}

    .CalloutOverlay { 
		position: absolute;
		top: 0;
		left: 0; 
		width: 100%;
		height:100%;
		background: rgba(0, 0, 0, 0.4);
		
		-webkit-transition: all .5s;
			transition: all .5s;
		}
		.Callout a:hover .CalloutOverlay { background: rgba(0, 0, 0, 0.6); }
		
	.Callout h3, .Callout .H3 { 
		font-family: 'Montserrat', sans-serif;
		letter-spacing: 6px;
        font-kerning: none;
		font-weight: 700;
        text-transform: uppercase;
		position: absolute;
		width: 90%;
		padding: 0 ;
		top: 50%;
		left: 50%;
		
		-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
        
        font-size: 2rem;
        letter-spacing: .18rem;
        line-height: 2rem;
		}
/* Call outs Barzotti end*/

@media (max-width: 500px) {
        		.Callout h3, .Callout .H3 { 
        font-size: 1.4rem;
        letter-spacing: .15rem;
        line-height: 1.4rem;
            }
}	
@media (min-width: 768px) {
        		.Callout h3, .Callout .H3 { 
        font-size: 1.4rem;
        letter-spacing: .15rem;
        line-height: 1.4rem;
            }
}	
@media (min-width: 992px) {
    .Callout h3, .Callout .H3 { 
        font-size: 2rem;
        letter-spacing: .18rem;
        line-height: 2rem;
		letter-spacing: 6px;
    }

}

/* ------------------------------------------------------------------------ Callouts */


.justify-content-center{
    display: flex;
    align-self: center;
    justify-content: center;
}

.callout-group {
padding: 0rem;
 margin: 0rem;
}

.callout-group-full-width, .callout-full, .callout-full a { 
    padding: 0 !important;
    margin: 0 !important;
    background-color: #111;
}

.callout-group__callout {
	display: block;
	font-weight: 400i;
	position: relative;
	color: inherit;
	cursor:pointer;
    margin: auto;
}

.callout-group__callout:hover {
	text-decoration: none;
	color: inherit;
}


.callout-group__image {
	height: 0;
	padding-bottom: 63%;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 0.25s ease-in-out;
}

.callout-group__callout:hover .callout-group__image {
	opacity: 0.9;
	transform: scale(1.01);
}

.callout-group__heading {
	margin-top: 1rem;
	font-weight: 700;
	text-align: center;
	transition: all 0.25s;
}

.callout-group__callout:hover .callout-group__heading{
	color: #777;
}

.callout-group__text {
	font-size: 1rem;
	text-align: center;
	color: #888;
}


/* dark*/
.callout-group__icon {
	height: auto;
    width: 10rem;
    padding-bottom: 5em;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.25s ease-in-out;
}

.callout-group__callout:hover .callout-group__icon {
	opacity: 0.9;
	transform: translateY(-.5em);
}

.callout-group__callout--blog:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.25);
}

.callout-group__callout--blog .callout-group__caption {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #FFF;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0 1rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.callout-group__callout--blog:hover .callout-group__heading{
	color: #fff;
}

/* ------------------------------------------------------------------------ About Page */

.quote-bg {
	background: url(../../images/quote-bg.png) center no-repeat;
}

/* ------------------------------------------------------------------------ Cards */

.card, .card-header:first-child  {
	border-radius: 0;
}

.card:hover {
	text-decoration: none;
}

.card-header {
	background-color: #222;
    border-bottom: 0;
    color: #fff;
    font-weight: 700;
}

.card__header-link {
	color: #fff;
	display: block;
	transition: all 0.25s;
}

.card__header-link:hover {
 	color: #777; 
 	text-decoration: none;
}

.card__header-no-link {
	transition: all 0.25s;
}

.card:hover .card__header-no-link {
	color: #777;
}

.card-text {
	font-size: 1rem;
	font-weight: 400;
	color: #444;
}

.card__date, .card:hover .card__date {
	color: #888;
}

.card-text small {
	font-size: 90%;
}


/* ------------------------------------------------------------------------ List Group */

.list-group__link {
	display: block;
	font-weight: 400;
	transition: all 0.25s;
	padding: 1.0rem 1.25rem;
}

.list-group__link:hover {
	text-decoration: none;
	background-color: #f8f8f8;
}

.list-group__link:hover .list-group__heading {
	text-decoration: underline;
}

.list-group-item, .list-group-item:last-child {
	padding: 0;
	background-image: none;
}


.list-group-item.active {
	background-color: #666;
    border-color: #666;
}


/* ------------------------------------------------------------------------ Accordions */

.accordion {
	background-color :#fff;
}

.accordion .card  {
	background-color: #f8f8f8;
	border:none;
}


/* ------------------------------------------------------------------------ Pagination */

.page-item {
	font-size: 1rem;
	background-image: none;
	padding: 0;
}

.page-link {
	font-weight: 400;
	color: #666;
}

.page-item.active .page-link {
	background-color: #666;
	border-color: #666;
}

.pagination-news {
	font-size: 1.2rem;
	font-weight: bold;
}

.pagination-news a {
	color: #444;
	font-weight: bold;
	margin: 0 0.2em;
}


.aspNetDisabled {
	background: #2e6559;
	color: #fff !important;
	padding: 0.1em 0.5em;
}


/* ------------------------------------------------------------------------ Tables */

.table {
	background-color: #fff;
}

.table .thead-dark th {
	background-color: #222;
    border: none;
}

.table td, .table th {
    border-top: 1px solid rgba(0,0,0,.125);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.table td {vertical-align: middle;}

.table-md td, .table-md th {padding: .5rem;}

.table .custom-control {
	margin: 0;
	padding-left: 1.5rem;
    }
		

/* ------------------------------------------------------------------------ Forms */
	
legend { }


label {
	margin: 0.6em 0 0.1em 0;
}

header label {
	display: block;
}

.required-input {
	color: #e7004c !important;
	font-size: 0.875rem;
	font-weight: 600;
}

.form-text {
	font-style: italic;
	font-size: 80%;
    font-weight: 400;
    }

.form-control {
	border-radius:0;
	padding: .5rem .75rem;
}

.form-control:focus {
	box-shadow: none;
	border-color: rgba(0, 0, 0, 0.5);
}


.form-control__cart {
	border-radius:0;
	padding: 0.6rem;
	width: 100%;
	font-size: 0.6em;
}

.form-control__cart:focus {
	box-shadow: none;
	border-color: rgba(0, 0, 0, 0.5);
}

.comment--section{
    width: 100%;
    min-height: 10rem;
}

.header--scroll .form-control {
	border-color: rgba(0,0,0,0.2);
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.5rem + 2px);
}

.form-control-file {cursor: pointer;}

/*custom radio and checkbox*/
.custom-control {
	padding-left: 1.75rem;
	margin-bottom: 0;
	cursor: pointer;
}

.custom-control-description {
	font-weight: 400;
}

.custom-control-indicator {
	top: .375rem;
	width: 1.125rem;
    height: 1.125rem;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.custom-control-input:checked~.custom-control-indicator {
	background-color: #666;
	border-color: #666;
}

.custom-control-input:focus ~ .custom-control-indicator {
    box-shadow: none;
    border-color: #000;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}		

.inline-check, .form--stlye .row{
    margin-bottom: 1.5rem;
}
.inline-check{
/*    position: absolute;*/
    display: inline-block !important;
        margin-right: 2rem;
}

.column-check label {
    font-size: 0.9rem !important;
}
.column-check {
    margin-bottom: 1rem;
}

.img-check .inline-check div /*img, .img-check label, .img-check input*/ {
       display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: center;
    align-content: center;
    text-align: center;
    justify-content: center;
    width:8rem;
    margin-right: 2rem;
}

.img-check label{

    margin: 0;
}

.img-check img{
    max-height: 5rem;
    margin-top: 0 !important;
/*    max-width: 7rem;*/
}


.inline-check-with-image .order--slider--thumbnails span{
    white-space: nowrap;
    text-align: center;
    margin: 4rem auto 0 auto;
    justify-content: center;
}

.inline-check-with-image .order--slider--thumbnails input{
/*    white-space: nowrap;*/
    margin: 7rem auto 0 auto;
}

.inline-check-with-image span{
    white-space: nowrap;
    margin: 0 1rem;
}

.inline-check-slider {
    height: 9rem;
    margin: 0 2rem 1.5rem 2rem;
}


.order--slider--thumbnails{
/*    flex: 1;*/
    height: 8rem !important;
    text-align: center;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: auto;
}

.order--slider--thumbnails img, .order--slider--thumbnails span {
    width: auto;
    height: auto;
    position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;
    max-height: 5rem;
    display: flex;
    align-items: center 
}


/* Dots */
.inline-check-slider .slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.inline-check-slider .slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block !important;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.inline-check-slider .slick-dots li
{
    position: relative;

    display: inline-block;

    width: 0rem;
    height: 0rem;
    margin: 0 1rem;
    padding: 0;

    cursor: pointer;
}
.inline-check-slider .slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 1rem;
    height: 1rem;
    padding: 1rem;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.inline-check-slider .slick-dots li button:hover,
.inline-check-slider .slick-dots li button:focus
{
    outline: none;
}
.inline-check-slider .slick-dots li button:hover:before,
.inline-check-slider .slick-dots li button:focus:before
{
    opacity: 1;
}
.inline-check-slider .slick-dots li button:before
{
    font-family: 'slick';
    font-size: 1rem;
    line-height: 1rem;

    position: absolute;
    top: 0;
    left: 0;

    width: 1rem;
    height: 1rem;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.inline-check-slider .slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}


.form--stlye input[type="text"]{
    padding: 0.5rem 0.5rem ;
    width: 100%;
    border: solid 1px #ddd;
}

.form--stlye label h3, .subheader{
    padding: 0rem;
    margin-bottom: 0;
}
.product-required-options{
    display:none;
    transition: all opacity 0.25s;
}

.form--stlye h2 span{
	font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}


.other-input:not(:checked) ~ .other-text { 
    display: none; 
}

.missing:after{
    content: "";
    font-weight: 600;
    color: red;
}

@media (max-width: 992px) {
    .inline-check-with-image .order--slider--thumbnails span{
    font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .inline-check-with-image .order--slider--thumbnails span{
    font-size: 0.75rem;
    }
    .comment--section{
    width: 100%;
    }
}

@media (max-width: 500px) {
    
    .order--slider--thumbnails{
        height: 5rem !important;
    }

    .order--slider--thumbnails img {
        max-height: 5rem;
    }

}

/* ------------------------------------------------------------------------ Gallery*/

.gallery-image {
	max-height: 16em;
	overflow: hidden;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 2em;
}

.gallery-image img {
	width: 100%;
	margin: 0 0 2em 0;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	object-fit: cover;
    height: 100% !important;
}

.gallery-image img:hover {
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.gallery-image img:last {
	margin: 0;
}

.gallery-img {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	min-height: 300px;
	display: block;
	background: center center no-repeat;
}

/* ------------------------------------------------------------------------ Forms sliders*/

.form--stlye .slider-for {
    margin-top: 0;
}

.form--stlye .slider--item{
    height: 40rem !important;
}

.form--stlye .slider--item img{
    max-height: 40rem !important;
}
@media (max-width: 992px) {
    
    .inline-check, .form--stlye .row{
    margin-bottom: 1rem;
}
        .form--stlye .slider--item{
        height: 30rem !important;
    }

    .form--stlye .slider--item img{
        max-height: 30rem !important;
    }
}


@media (max-width: 500px) {
        .form--stlye .slider--item{
        height: 20rem !important;
    }

    .form--stlye .slider--item img{
        max-height: 20rem !important;
    }
}

/* ------------------------------------------------------------------------ Cart Section*/


.quote-form ol {
	margin-left: 1em;
}

#example-step li {
	list-style: upper-alpha;
}

.selected::after {
	display: inline-block;
	content: ' ';
	background-image: url('../../images/selected.svg');
	background-size: 20px 12px;
	width: 20px;
	height: 12px;
	margin-left: 0.5em;	
}


.cart-details {
background: #fafafa;
    border: solid 1px #eee;

}

.quantity {
    float: left;
    margin-right: 15px;
    background-color: #ddd;
    position: relative;
    width: 80px;
    overflow: hidden
}

.quantity input {
    margin: 0;
    text-align: center;
    width: 15px;
    height: 15px;
    padding: 0;
    float: right;
    color: #000;
    font-size: 20px;
    border: 0;
    outline: 0;
    background-color: #F6F6F6
}

.quantity input.qty {
    position: relative;
    border: 0;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    border-radius: 0;
    background-clip: padding-box
}

.quantity .minus, .quantity .plus {
    line-height: 0;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-background-size: 6px 30px;
    -moz-background-size: 6px 30px;
    color: #bbb;
    font-size: 20px;
    position: absolute;
    height: 50%;
    border: 0;
    right: 0;
    padding: 0;
    width: 25px;
    z-index: 3
}

.quantity .minus:hover, .quantity .plus:hover {
    background-color: #dad8da
}

.quantity .minus {
    bottom: 0
}
.shopping-cart {
    margin-top: 20px;
}




@media (min-width: 1200px) {
.container {
    max-width: 1280px !important;
}
}



.card-body .cart-product-row {
	border-bottom: solid 1px #ddd;
	padding: 2em 0;
}


.card-body .cart-product-row:last-child {
	border-bottom: none;
	padding: 2em 0;
}



@media (max-width: 1200px) {
	.product-name {
		font-size: 1rem;
	}
}

@media (max-width: 767px) {
	.cart-headings {
		display: none !important;
	}
	
	.card-body h2 {
		text-align: center;
	}
	
	.text-sm-center {
		text-align: center !important;
	}
}



/* ------------------------------------------------------------------------ Quote Page*/

.included-icon { max-width: 1em; position:relative; top: 0.6em; margin: 0 0 0 0.5em }
/*.missing-icon { min-width: 1em; position:relative; top: 0.6em; margin: 0 0 0 0.5em }*/
.info-icon { float:left; width: 1em; height: 1em; position:relative; top: 0.2em; margin: 0 0.5em 0 0 }

.quote--btn {
    border: solid 3px #2e6559;
    padding: 4.2em 1em;
    text-align: center;
    font-size: 1.5rem;
	transition: all 0.5s;
	display: block;
}

.quote--btn:hover {
    background: #2e6559;
	color: #fff;
	transition: all 0.5s;
}

.glyphicon-calendar {
	width: 20px;
}


/* ------------------------------------------------------------------------ Contact Page*/

.form-group input {
	width: 100%;
	padding: 0.5em;
}

.form-group textarea {
	width: 100%;
}

.contact-boxes .col-lg-4 {
	border: solid 1px #eee;
	padding: 1em;
}

.contact-boxes .col-md-6 {
	padding: 1em;
}

/* ------------------------------------------------------------------------ Downloads Section*/

.download-block .circle {
	border-radius: 10em;
	width: 16em;
	height: 16em !important;
	border: solid 1px #ddd;
	padding: 0.5em;
}

.download-icon {
	float: left;
	width: 3em;
	padding: 0 1em 2em 0;
	position: relative;
	top: 0.4em;
}


.download-block h2 {
	font-weight: 700;
	margin: 0 0 0 0;
	font-size: 1.6rem;
}

.download-block p {
	margin: 0;
}

.download-block {
	margin: 0 0 2em 0;
	border: solid 1px #ddd;
	padding: 2em;
	display: inline-block;
	width: 100%;
}	

.download-block a:hover {
	text-decoration:none;
}

@media (max-width: 991px) {
	.download-block .circle {
		height: 12em !important;
	}
}

@media (max-width: 767px) {
	.download-block .circle {
		height: 16em !important;
	}
}

@media (max-width: 467px) {
	.download-block .circle {
		width: 10em;
		height: 10em !important;
	}
}


	
/* =============================================================================================
	FOOTER
============================================================================================= */

.print-footer { 
	display:none;
}

.footer { 
    display: block!important;
    text-align: center!important;
    background-color: #333;
	padding: 2rem 0;
    color: #fff !important;
    letter-spacing: 0.25em;
    font-size: .75em;
	height: 24em;
	position: absolute;
	width: 100%;
}

.footer a {
	color: #fff;
}

.logo-footer { 
	padding-bottom: 2rem;
}

.footer__rkd img {
    text-align: center !important;
	display: inline-block !important;
    width: 5rem; 
}

.footer__rkd img {
/*    background-color: #fff;*/
    fill: #fff !important;
    margin: 0.5rem 0;
}

.footer__links a {
	font-size: 0.8em;
}

.footer__copyright {
    text-align: center !important;
    display: inline-block !important;
	margin-bottom: 0;
	font-size: 0.75rem;
    color: #fff !important;
}
footer a:hover {
        -webkit-filter: opacity(.8);
    filter: opacity(.6);
}

.footer__link {
    display: block !important;
    text-align: center!important;
	margin-right: 1rem;
	text-transform: uppercase;
    text-decoration: none !important;
    color: #fff;
	}	

.footer__icon--twitter { 
	background-image: url(../../images/twitter.svg); 
}
	
.footer__icon--facebook { 
	background-image: url('../../images/facebook.svg'); 
}
	
.footer__icon--youtube { 
	background-image: url(../../images/youtube.svg); 
}		
			
.footer__icon--instagram { 
	background-image: url(../../images/instagram.svg);
	width: 1.5rem !important;
}		

.footer__icon--linkedin { 
	background-image: url(../../images/linkedin.svg); 
}

.footer__icon--houzz { 
	background-image: url(../../images/houzz.svg); 
}
.footer__icon {
	display: inline-block;
	width: 2.125rem;
	height: 2.125rem;
	margin: 0 0.6rem;
	background-repeat: no-repeat;
	background-position: center center;
}

		
@media (min-width: 575px) {
	.footer__icon {
		margin: 0 1.6rem;
	}
}

	
@media (min-width: 992px) {

	.footer {
		overflow: hidden;
		width: 100%;
	    bottom: 0;
	    right: 0;
	    padding: 3rem 0;
	}

}

.footnote {
	font-size: 0.8em;
	font-style: italic;
}


.row {
	display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}


