/* ------------------------------
Import separate stylesheets
-------------------------------*/

/* ------------------------------
Helpers
--------------------------------*/

/* responsive iframe */

.responsive-iframe {
	position: relative;
	padding-bottom: 56.25%;
	/* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.responsive-iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: scroll;
}

/* zoom effect */

.zoom {
	-webkit-transition: all .8s ease-out;
	-moz-transition: all .8s ease-out;
	-o-transition: all .8s ease-out;
	transition: all .8s ease-out;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
}

.zoom:hover {
	-moz-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	-ms-transform: scale(1.5);
	filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1.5, M12=-0, M21=0, M22=1.5);
}

/* **** GRID **** */

.container-wide {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 768px) {
	.container-wide {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container-wide {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container-wide {
		width: 100%;
		max-width: 1600px;
	}
}

/* **** RESPONSIVE PADDIING **** */

.content {
	padding: 80px 0;
}

@media screen and (max-width: 1199px) {
	.content {
		padding: 60px 0;
	}
}

@media screen and (max-width: 991px) {
	.content {
		padding: 40px 0;
	}
}

@media screen and (max-width: 767px) {
	.content {
		padding: 30px 0;
	}
}

/* **** BUTTON CONTENT MARGIN **** */

.end-btn {
	margin-top: 60px !important;
}

@media screen and (max-width: 1199px) {
	.end-btn {
		margin-top: 40px !important;
	}
}

@media screen and (max-width: 991px) {
	.end-btn {
		margin-top: 20px !important;
	}
}

@media screen and (max-width: 767px) {
	.end-btn {
		margin-top: 10px !important;
	}
}

.cover-bg {
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
}

.bg-center {
	background-position: center center !important;
}

.light {
	background-color: #e5e5e5;
}

/* ------------------------------
Top
--------------------------------*/

.top {
	width: 100%;
	position: fixed;
	top: 0;
	height: 90px;
	z-index: 7777;
	padding: 10px 30px;
	background: #ffffff;
}

.top a {
	outline: none;
	text-decoration: none;
	border: none;
}

.top a:hover {
	outline: none;
	text-decoration: none;
}

.top .logo {
	position: absolute;
	top: 14px;
	left: 30px;
	width: 115px;
	height: 64px;
	background-repeat: no-repeat;
	border: none;
	outline: none;
}

.top ul.sub-nav {
	width: auto;
	float: right;
	list-style: none;
	margin-top: 20px;
	position: relative;
	right: 60px;
}

.top ul.sub-nav li {
	position: relative;
	float: left;
	color: #000000;
	font-family: "Noto Sans", sans-serif;
	margin-left: 20px;
}

.top ul.sub-nav li a {
	color: #000000;
	font-size: 1.125em;
	font-family: "Noto Sans", sans-serif;
	margin-left: 35px;
}

.top ul.sub-nav li a i {
	display: block;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 1px;
	left: 0px;
	background-size: 25px 25px !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.top ul.sub-nav li:first-child {
	margin-left: 0;
}

#menuToggle {
	width: 40px;
	height: 40px;
	position: fixed;
	top: 30px;
	right: 30px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 9999;
}

@media screen and (max-width: 767px) {
	#menuToggle {
		right: 15px;
	}
}

#menuToggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 80%;
	background: #fff;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	right: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#menuToggle:hover span {
	width: 100%;
}

#menuToggle span:nth-child(1) {
	top: 0px;
}

#menuToggle span:nth-child(2),
#menuToggle span:nth-child(3) {
	top: 12px;
	width: 100%;
}

#menuToggle span:nth-child(4) {
	top: 24px;
}

#menuToggle.open span:nth-child(1) {
	top: 12px;
	width: 0%;
	left: 50%;
	background: #fff !important;
}

#menuToggle.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	background: #fff !important;
}

#menuToggle.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background: #fff !important;
}

#menuToggle.open span:nth-child(4) {
	top: 12px;
	width: 0%;
	left: 50%;
	background: #fff !important;
}

@media screen and (max-width: 1025px) {
	.top {
		height: 70px !important;
	}
	.top ul.sub-nav {
		display: none;
	}
	.top .logo {
		position: absolute !important;
		top: 12px !important;
		left: 10px !important;
		width: 80px !important;
		height: 44px !important;
		background-repeat: no-repeat !important;
		opacity: 1;
		background: url("../img/altitude-aluminium-logo-colour.svg") !important;
	}
	#menuToggle {
		top: 22px;
		right: 20px;
	}
	#menuToggle span {
		background: #000000 !important;
	}
}

/* INTERNAL */

.internal #menuToggle {
	width: 40px;
	height: 40px;
	position: fixed;
	top: 30px;
	right: 30px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 9999;
}

@media screen and (max-width: 1025px) {
	.internal #menuToggle {
		top: 22px;
		right: 20px;
	}
}

@media screen and (max-width: 767px) {
	.internal #menuToggle {
		right: 15px;
	}
}

.internal #menuToggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 80%;
	background: #000000;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	right: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.internal #menuToggle:hover span {
	width: 100%;
}

.internal #menuToggle span:nth-child(1) {
	top: 0px;
}

.internal #menuToggle span:nth-child(2),
.internal #menuToggle span:nth-child(3) {
	top: 12px;
	width: 100%;
}

.internal #menuToggle span:nth-child(4) {
	top: 24px;
}

.internal #menuToggle.open span:nth-child(1) {
	top: 12px;
	width: 0%;
	left: 50%;
	background: #fff !important;
}

.internal #menuToggle.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	background: #fff !important;
}

.internal #menuToggle.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background: #fff !important;
}

.internal #menuToggle.open span:nth-child(4) {
	top: 12px;
	width: 0%;
	left: 50%;
	background: #fff !important;
}

/* **** */

.internal .top .logo {
	background: url("../img/altitude-aluminium-logo-colour.svg");
}

/* ------------------------------
Headers
--------------------------------*/

header:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

header.news-details:after {
	display: none;
}

header.home {
	position: relative;
	width: 100%;
	height: 100vh;
	max-height: 900px;
	text-align: center;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
	background-position: center center !important;
}

header.home .intro {
	position: absolute;
	top: 50%;
	left: 50%;
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1111;
}

header.home .intro h1 {
	font-weight: bold;
	font-size: 3.750em;
	color: #ffffff;
	padding-bottom: 20px;
}

header.home .intro h2 {
	font-family: "Noto Sans", sans-serif;
	font-size: 1.563em;
	color: #ffffff;
	padding: 0;
	margin: 0 0 20px 0;
}

header.home .intro i {
	display: inline-block;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	header.home {
		margin-top: 70px;
		height: 600px;
	}
	header.home .intro {
		position: absolute;
		bottom: auto;
		top: 50%;
		left: 50%;
		bottom: auto;
		transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		-webkit-transition: .3s ease-in-out;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		z-index: 1111;
	}
	header.home .intro h1 {
		font-size: 2.8em;
	}
	header.home .intro h2 {
		font-size: 1.3em;
	}
}

@media screen and (max-width: 640px) {
	header.home {
		height: 500px;
	}
}

@media screen and (max-width: 360px) {
	header.home {
		height: 400px;
	}
}

/* INTERNAL HEADER */

.internal header {
	position: relative;
	margin-top: 90px;
	width: 100%;
	height: 690px;
	text-align: center;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
	background-position: center center !important;
}

.internal header .intro {
	width: 80%;
	padding: 0 10px;
	position: absolute;
	bottom: 0%;
	left: 50%;
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1111;
}

.internal header .intro h1 {
	font-weight: bold;
	font-size: 3.750em;
	color: #ffffff;
	padding-bottom: 20px;
}

.internal header .intro h2 {
	font-family: "Noto Sans", sans-serif;
	font-size: 1.563em;
	color: #ffffff;
	padding: 0;
	margin: 0 0 20px 0;
}

.internal header .intro i {
	display: inline-block;
	margin: 0 auto;
}

@media screen and (max-width: 1699px) {
	.internal header {
		height: 590px;
	}
}

@media screen and (max-width: 1299px) {
	.internal header {
		height: 500px;
	}
}

@media screen and (max-width: 1025px) {
	.internal header {
		margin-top: 70px;
	}
}

@media screen and (max-width: 991px) {
	.internal header {
		height: 480px;
	}
}

@media screen and (max-width: 767px) {
	.internal header {
		height: 490px;
	}
	.intro {
		position: absolute;
		bottom: auto;
		top: 50%;
		left: 50%;
		bottom: auto;
		transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		-webkit-transition: .3s ease-in-out;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		z-index: 1111;
	}
	.internal header .intro {
		position: absolute;
		bottom: auto;
		top: 50%;
		left: 50%;
		bottom: auto;
		transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		-webkit-transition: .3s ease-in-out;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		z-index: 1111;
	}
	.internal header .intro h1 {
		font-size: 2.8em;
	}
	.internal header .intro h2 {
		font-size: 1.3em;
	}
}

@media screen and (max-width: 640px) {
	.internal header {
		height: 380px;
	}
}

/* HEADER STANDARD TEXTPAGE */

.standard-textpage header {
	max-height: 400px;
}

@media screen and (max-width: 991px) {
	.standard-textpage header {
		max-height: 300px;
	}
}

@media screen and (max-width: 767px) {
	.standard-textpage header {
		max-height: 200px;
	}
}

/* ------------------------------
Primary nav
--------------------------------*/

/* OFF CANVAS MENU */

.off-canvas-menu {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1111;
	background: #f26334;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

@media screen and (max-width: 1199px) {
	/* **** HELPERS **** */
	.hide-scroll {
		overflow: hidden;
		margin-right: 15px;
	}
	.off-canvas-menu {
		overflow: scroll;
		overflow-x: hidden;
	}
}

.off-canvas-menu.menu-open {
	z-index: 9999;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
}

@media screen and (max-width: 767px) {
	.off-canvas-menu {
		padding-top: 60px;
	}
}

/* ***** OFF CANVAS MENU ***** */

.off-canvas-menu .menu-content {
	width: 100%;
	overflow: hidden;
	padding: 60px 0;
}

.off-canvas-menu .menu-content h2 {
	color: #ffffff;
}

.off-canvas-menu .menu-content img.logo {
	width: 160px;
	margin-bottom: 0px;
}

.off-canvas-menu .menu-content hr {
	margin-bottom: 20px;
	opacity: 0.3;
}

.off-canvas-menu .menu-content ul.nav {
	padding: 0;
	margin: 0;
	width: 100%;
	display: block;
}

.off-canvas-menu .menu-content ul.nav li {
	width: 100%;
	color: #ffffff;
	font-family: "Noto Sans", sans-serif;
	margin: 0 0 14px 0;
}

.off-canvas-menu .menu-content ul.nav li a:hover {
	color: #ffffff;
	text-decoration: none;
	background: none;
	color: #aaa;
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
}

.off-canvas-menu .menu-content ul.nav li a:visited,
.off-canvas-menu .menu-content ul.nav li a:active,
.off-canvas-menu .menu-content ul.nav li a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
	background: none;
}

.off-canvas-menu .menu-content ul.nav li a:hover {
	text-decoration: none;
	outline: none;
	color: #ffffff;
	background: none;
}

.off-canvas-menu .menu-content ul.nav li a {
	color: #ffffff;
	font-size: 1em;
	padding: 0;
	margin: 0;
}

.off-canvas-menu .menu-content .accreditation {
	display: block;
	width: 100%;
	float: left;
	padding: 0 0 20px;
	margin: 0;
	list-style: none;
}

.off-canvas-menu .menu-content .accreditation li {
	float: left;
	margin-right: 0;
}

.off-canvas-menu .menu-content .accreditation li img {
	display: block;
	height: auto;
	margin-right: 20px;
	max-width: 120px;
}

.off-canvas-menu .menu-content .contact-details {
	width: 100%;
	overflow: visible;
	display: block;
	float: left;
}

.off-canvas-menu .menu-content .contact-details h2 {
	color: #ffffff;
}

.off-canvas-menu .menu-content .contact-details p {
	color: #ffffff;
	padding: 0;
	margin: 0;
	font-size: 0.813em;
}

.off-canvas-menu .menu-content .contact-details p.showroom {
	display: block;
	margin-top: 10px;
}

.off-canvas-menu .menu-content .contact-details ul.contact {
	width: 100%;
	display: block;
	padding: 20px 0;
}

.off-canvas-menu .menu-content .contact-details ul.contact li {
	display: inline-block;
	color: #ffffff;
	font-size: 1.063em;
	list-style: none;
	margin-right: 10px;
}

.off-canvas-menu .menu-content .contact-details ul.contact li a:hover {
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

.off-canvas-menu .menu-content .contact-details ul.contact li a:visited {
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

.off-canvas-menu .menu-content .contact-details ul.contact li a:active {
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

.off-canvas-menu .menu-content .contact-details ul.contact li a:focus {
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

.off-canvas-menu .menu-content .contact-details ul.contact li a {
	font-family: "Noto Sans", sans-serif;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	font-weight: 400;
}

.off-canvas-menu .menu-content .contact-details ul.contact i {
	margin-right: 5px;
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	top: 8px;
}

.off-canvas-menu .menu-content .contact-details ul.social {
	display: block;
	width: 100%;
	float: left;
	padding: 10px 0;
}

.off-canvas-menu .menu-content .contact-details ul.social li {
	float: left;
	margin-right: 10px;
	color: #ffffff;
	list-style: none;
	position: relative;
	margin-bottom: 10px;
}

.off-canvas-menu .menu-content .contact-details ul.social li a {
	display: block;
	border: 1px solid #ffffff;
	width: 40px;
	height: 40px;
	color: #ffffff;
	text-align: center;
	padding-top: 8px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	background-clip: padding-box;
}

.off-canvas-menu .menu-content .contact-details ul.social li a:hover {
	text-decoration: none;
	border-color: #ffffff;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}

.off-canvas-menu .menu-content .contact-details ul.social li a i.houzz {
	background: url("../img/icon-houzz.svg");
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0px;
	left: 0;
}

@media screen and (min-width: 767px) and (max-width: 1199px) {
	.off-canvas-menu .menu-content .contact-details ul.contact li a {
		font-size: 0.7em;
	}
	.off-canvas-menu .menu-content .contact-details ul.contact i {
		width: 20px;
		height: 20px;
		top: 6px;
	}
}

@media screen and (max-width: 767px) {
	.off-canvas-menu {
		padding-top: 20px;
	}
	.off-canvas-menu .menu-content {
		padding: 0px 0 20px 0;
	}
	.off-canvas-menu .menu-content img.logo {
		max-width: 120px;
		margin-bottom: 20px;
	}
	.off-canvas-menu .menu-content hr {
		margin-top: 0;
		margin-bottom: 0px;
	}
	.off-canvas-menu .menu-content ul.nav {
		padding: 10px 0;
		margin-bottom: 10px;
		display: block;
	}
	.off-canvas-menu .menu-content ul.nav {
		border-bottom: 1px solid rgba(225, 225, 255, 0.3);
	}
	.off-canvas-menu .menu-content .contact-details {
		padding: 0;
	}
	.off-canvas-menu .menu-content .contact-details ul.social {
		padding-top: 20px;
	}
	.off-canvas-menu .menu-content .contact-details ul.social li {
		margin-right: 10px;
	}
	.off-canvas-menu .menu-content .contact-details ul.social li a {
		padding-top: 10px;
	}
	.off-canvas-menu .menu-content .contact-details ul.social li a i.houzz {
		top: 2px;
	}
	.off-canvas-menu .menu-content ul.nav li:last-child {
		margin-bottom: 0;
	}
	.off-canvas-menu .menu-content .contact-details ul.contact {
		padding: 10px 0 15px 0;
		display: block;
		width: 100%;
		float: left;
		border-bottom: 1px solid rgba(225, 225, 255, 0.3);
	}
	.off-canvas-menu .menu-content .contact-details ul.contact li i {
		width: 20px;
		height: 20px;
		top: 5px;
	}
	.off-canvas-menu .menu-content .accreditation {
		padding: 10px 0;
	}
	.off-canvas-menu .menu-content h2 {
		margin-bottom: 0px;
		padding-bottom: 0px;
	}
	.off-canvas-menu .menu-content hr {
		margin-bottom: 10px;
	}
}

/* ------------------------------
Secondary nav
--------------------------------*/

.news-nav {
	overflow: visible;
}

.secondary-navigation {
	width: 100%;
	overflow: visible;
	background: #ffffff;
	border-bottom: 5px solid #d0d3d6;
}

.news-actions {
	width: 100%;
	float: left;
	min-height: 70px;
}

.secondary-navigation .news-nav-wrap {
	width: calc(100% - 200px);
	float: left;
}

.secondary-navigation .date-filter-wrap {
	width: 200px;
	float: left;
}

.secondary-navigation ul.news-nav {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	width: 100%;
	min-height: 70px;
	float: left;
}

.secondary-navigation ul.news-nav li:first-child {
	border-left: 1px solid #d0d3d6;
}

.secondary-navigation ul.news-nav li {
	float: left;
	height: 100%;
	min-height: 70px;
	position: relative;
	background: #ffffff;
	width: 25%;
	text-align: center;
	border-right: 1px solid #d0d3d6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.secondary-navigation ul.news-nav li a:visited,
.secondary-navigation ul.news-nav li a:active,
.secondary-navigation ul.news-nav li a:focus {
	text-decoration: none;
	outline: none;
	color: #000000;
}

.secondary-navigation ul.news-nav li a {
	display: block;
	width: 100%;
	color: #ffffff;
	text-decoration: none;
	color: #000000;
	text-transform: uppercase;
	font-family: "Noto Sans", sans-serif;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	padding: 10px;
	font-size: 1rem;
}

.secondary-navigation ul.news-nav li a.current {
	color: #f26334;
}

.secondary-navigation ul.news-nav li a.current:after {
	content: "";
	display: block;
	width: 100.6666%;
	height: 5px;
	position: absolute;
	bottom: -5px;
	margin-bottom: 0;
	left: -0.3333%;
	right: 0;
	background: #f26334;
}

.secondary-navigation ul.news-nav li a:hover {
	background: #ffffff;
	color: #f26334;
}

.secondary-navigation ul.date-filter {
	width: 100%;
	min-height: 70px;
	padding: 0;
	margin: 0;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
}

@media screen and (min-width:1200px) {
	.secondary-navigation ul.date-filter li {
		text-align: right;
		width: 100%
	}
}

.secondary-navigation ul.date-filter li:first-child {
	border: 0;
}

.secondary-navigation ul.date-filter li {
	border: 0;
	float: right;
	height: 100%;
	background: #ffffff;
}

.secondary-navigation ul.date-filter li a:active,
.secondary-navigation ul.date-filter li a:visited,
.secondary-navigation ul.date-filter li a:focus {
	text-decoration: none;
	outline: none;
	color: #f26334;
}

.secondary-navigation ul.date-filter li a {
	cursor: pointer;
	display: block;
	width: 100%;
	height: 100%;
	color: #ffffff;
	position: relative;
	text-decoration: none;
	color: #f26334;
	text-transform: uppercase;
	font-family: "Noto Sans", sans-serif;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

.secondary-navigation ul.date-filter li i {
	display: inline-block;
	margin-left: 10px;
	position: relative;
	top: 2px;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	font-size: 1rem;
}

@media screen and (max-width:991px) {
	.secondary-navigation .news-nav-wrap {}
	.secondary-navigation ul.news-nav li a {
		font-size: 0.8rem;
	}
	.secondary-navigation .date-filter-wrap {}
	.secondary-navigation ul.date-filter li a {
		font-size: 0.8rem;
	}
}

@media screen and (max-width:767px) {
	.news-actions {
		min-height: auto;
	}
	.secondary-navigation .news-nav-wrap {
		width: 100%;
	}
	.secondary-navigation ul.news-nav li {
		min-height: auto;
		border-bottom: 1px solid #ddd;
	}
	.secondary-navigation .date-filter-wrap {
		width: 100%;
	}
	.secondary-navigation ul.date-filter {
		min-height: 40px;
	}
}

.rotate-icon {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.secondary-navigation .row.no-gutters>[class^="col-"],
.secondary-navigation .row.no-gutters>[class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
}

/* JUMBO NEWS NAV */

.nav-wrapper {
	width: 100%;
	position: absolute;
	top: 0px;
	right: 0;
	left: 0;
	width: 0;
	transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-webkit-transition: all 0.1s ease;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	z-index: -1;
	background: #ffffff;
	padding-top: 60px;
	padding-bottom: 60px;
}

.nav-wrapper nav {
	position: relative;
	width: 100%;
	display: block;
	overflow: visible;
}

.nav-wrapper nav a,
.nav-wrapper nav a:hover,
.nav-wrapper nav a:active,
.nav-wrapper nav a:focus,
.nav-wrapper nav a:visited {
	text-decoration: none;
	outline: none;
	color: inherit;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

.nav-wrapper nav a:hover {
	cursor: pointer;
	color: #f26334;
}

.nav-wrapper h3 {
	padding: 0;
	margin: 0 0 20px 0;
	color: #f26334;
	font-size: 1.125em;
}

.nav-wrapper ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: block;
	width: 100%;
}

.nav-wrapper ul li {
	display: block;
	width: 100%;
	margin-bottom: 10px;
}

.nav-wrapper ul li a:visited,
.nav-wrapper ul li a:active,
.nav-wrapper ul li a:focus {
	text-decoration: none;
	outline: none;
	color: #000000;
}

.nav-wrapper ul li a:hover {
	text-direction: none;
	color: #f26334;
}

.nav-wrapper ul li a {
	color: #000000;
	text-decoration: none;
	text-transform: none;
	font-family: "Noto Sans", sans-serif;
	display: block;
	width: 100%;
}

.nav-wrapper ul li span {
	float: right;
}

.nav-wrapper ul.thumbnail-feature {
	width: 100%;
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
}

.nav-wrapper ul.thumbnail-feature li:first-child {
	float: left;
}

.nav-wrapper ul.thumbnail-feature li {
	width: auto;
	float: none;
}

.nav-wrapper ul.thumbnail-feature li img {
	width: 100%;
	max-width: 120px;
	margin-right: 15px;
}

.nav-wrapper ul.thumbnail-feature li h2 {
	font-size: 1em;
	padding: 0;
	margin: 0 0 10px 0;
}

.nav-wrapper ul.thumbnail-feature li p {
	font-family: "Noto Sans", sans-serif;
	font-size: 1em;
	color: #000000;
	padding: 0;
	margin: 0;
}

.nav-wrapper.show-element {
	width: 100%;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	z-index: 1111;
	top: 75px;
}

@media screen and (max-width: 991px) {
	.nav-wrapper {
		padding-top: 40px;
	}
}

@media screen and (max-width: 767px) {
	.secondary-navigation ul.news-nav {
		height: auto;
		width: 100%;
		display: block;
		overflow: hidden;
	}
	.secondary-navigation ul.news-nav li {
		width: 50%;
		border-right: 1px solid #ddd;
		text-align: center;
	}
	.secondary-navigation ul.news-nav li:first-child {
		border-right: 1px solid #ddd;
	}
	.secondary-navigation ul.news-nav li a {
		height: auto;
		padding: 10px 0;
	}
	.secondary-navigation ul.news-nav li a.current:after {
		display: none;
	}
	.secondary-navigation ul.date-filter {
		width: 100%;
		height: auto;
		border-top: 1px solid #ddd;
		padding: 0 15px;
	}
	.secondary-navigation ul.date-filter li {
		width: 100%;
	}
	.secondary-navigation ul.date-filter li a {
		padding: 10px 0;
		font-size: 10px;
	}
	.secondary-navigation ul.date-filter li a i {
		top: -2px;
		float: right;
	}
	.nav-wrapper.show-element {
		top: 120px;
	}
	.nav-wrapper {
		padding-top: 20px;
	}
}

/* ------------------------------
Panels
--------------------------------*/

/* **** SECTION STYLES **** */

section {
	width: 100%;
	overflow: hidden;
	position: relative;
}

section h2 {
	font-size: 3.125em;
}

section p {
	font-family: "Noto Sans", sans-serif;
	color: #808080;
	font-size: 1.250em;
}

section p span {
	color: #f26334;
	font-weight: bold;
}

.overlay-primary:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url("../img/primary-overlay-bg.png");
	background-repeat: repeat;
	z-index: 0;
}

.overlay-accent:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url("../img/blue-overlay-bg.png");
	background-repeat: repeat;
	z-index: 0;
}

.overlay-black:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 0;
}

.overlay-black-half:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

.overlay-black-eighty:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.85);
	z-index: 0;
}

.content-left {
	text-align: left;
}

.content-center {
	text-align: center;
}

.content-right {
	text-align: right;
}

/* **** LARGE FEATURE BOXES ***** */

section.lg-ft-boxes {
	text-align: center;
}

section.lg-ft-boxes a:focus {
	text-decoration: none;
	outline: none;
}

section.lg-ft-boxes a:visited {
	text-decoration: none;
	outline: none;
}

section.lg-ft-boxes a:hover {
	text-decoration: none;
	outline: none;
}

section.lg-ft-boxes a h2,
section.lg-ft-boxes a p {
	color: #ffffff;
	text-decoration: none;
}

section.lg-ft-boxes i.arrow-black-down {
	margin: 0 auto 30px;
}

section.lg-ft-boxes a.btn-ghost-dark {
	width: auto;
	margin: 0 auto;
}

section.lg-ft-boxes .ft-box {
	width: 100%;
	overflow: hidden;
	margin-bottom: 30px;
	position: relative;
	text-align: center;
}

section.lg-ft-boxes .ft-box:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.2);
	transition: 0.6s ease-in-out;
	-moz-transition: 0.6s ease-in-out;
	-webkit-transition: 0.6s ease-in-out;
}

section.lg-ft-boxes .ft-box:hover:after {
	background: rgba(0, 0, 0, 0.4);
}

section.lg-ft-boxes .ft-box .details {
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-webkit-transform: translate(-50%, -40%);
	-moz-transform: translate(-50%, -40%);
	-ms-transform: translate(-50%, -40%);
	-o-transform: translate(-50%, -40%);
	transform: translate(-50%, -40%);
	z-index: 1111;
}

section.lg-ft-boxes .ft-box .details h2 {
	color: #ffffff;
	font-size: 1.500em;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	padding: 0 0 20px;
	margin: 0;
	font-weight: bold;
}

section.lg-ft-boxes .ft-box .details p.date {
	color: #ffffff;
	padding: 0;
	margin: 0;
}

section.lg-ft-boxes .ft-box .details span {
	position: absolute;
	display: inline-block;
	margin-top: 20px;
	width: 18px;
	height: 8px;
	background-size: auto;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	opacity: 0;
	filter: alpha(opacity=0);
}

section.lg-ft-boxes .ft-box:hover .details {
	-webkit-transform: translate(-50%, -70%);
	-moz-transform: translate(-50%, -70%);
	-ms-transform: translate(-50%, -70%);
	-o-transform: translate(-50%, -70%);
	transform: translate(-50%, -70%);
}

section.lg-ft-boxes .ft-box:hover .details h2 {
	padding: 0 0 10px;
}

section.lg-ft-boxes .ft-box:hover .details span {
	display: inline-block;
	margin-top: 10px;
	width: 18px;
	height: 8px;
	background-size: 100%;
	opacity: 1;
	filter: alpha(opacity=100);
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	section.lg-ft-boxes .ft-box .details h2 {
		font-size: 1.2em;
	}
}

@media screen and (max-width: 767px) {
	section.lg-ft-boxes .ft-box .details {
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	section.lg-ft-boxes .ft-box:hover .details {
		-webkit-transform: translate(-50%, -60%);
		-moz-transform: translate(-50%, -60%);
		-ms-transform: translate(-50%, -60%);
		-o-transform: translate(-50%, -60%);
		transform: translate(-50%, -60%);
	}
	section.lg-ft-boxes .ft-box .details h2 {
		padding-bottom: 0;
	}
}

/* **** FULL WIDTH **** */

.full-width {
	width: 100%;
	overflow: visible;
}

.full-width {
	width: 100%;
	overflow: hidden;
}

.full-width .panel-half.dark:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 0;
}

.full-width .panel-half.dark-half:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 0;
}

.full-width .panel-half.primary:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url("../img/primary-overlay-bg.png");
	z-index: 0;
}

.full-width .panel-half.light:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	background-color: #e5e5e5;
}

.full-width .panel-half {
	position: relative;
	padding-top: 33.333%;
	float: left;
	width: 50%;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
}

.full-width .panel-half .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: left;
	width: 60%;
}

.full-width .panel-half .inner a,
.full-width .panel-half .inner a:active,
.full-width .panel-half .inner a:focus,
.full-width .panel-half .inner a:hover {
	text-decoration: none;
	outline: none;
}

.full-width .panel-half .inner h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 3.125em;
	color: #ffffff;
	font-weight: 400;
	position: relative;
	font-weight: bold;
}

.full-width .panel-half .inner h2 i.circle {
	display: block;
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	background-clip: padding-box;
	position: absolute;
	top: 3px;
	left: -50px;
	background-size: 20px;
	background-position: center center;
}

.full-width .panel-half .inner i.circle {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	background-clip: padding-box;
	position: relative;
	top: 0;
	background-size: 20px;
	background-position: center center;
}

.full-width .panel-half .inner p.tagline {
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	color: #ffffff;
	padding: 0;
	margin: 0 0 10px;
}

.full-width .panel-half .inner p {
	font-family: "Noto Sans", sans-serif;
	font-size: 1.063em;
	color: #ffffff;
}

.full-width .panel-half .inner p a {
	outline: none;
	text-decoration: underline;
	color: #ffffff;
}

.full-width .panel-half .inner p span {
	color: #f26334;
	font-weight: normal;
}

.full-width .panel-half .inner p span a:active,
.full-width .panel-half .inner p span a:focus,
.full-width .panel-half .inner p span a:visited {
	color: #f26334;
	text-decoration: underline;
	outline: none;
}

.full-width .panel-half .inner p span a:hover {
	color: #ffffff;
	text-decoration: underline;
	outline: none;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

.full-width .panel-half .inner p span a {
	color: #f26334;
	text-decoration: underline;
	outline: none;
}

.full-width .panel-half .inner ul.products {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}

.full-width .panel-half .inner ul.products li {
	float: left;
	width: 50%;
	padding-right: 30px;
}

.full-width .panel-half .inner ul.products li a {
	text-decoration: none;
	outline: none;
	font-size: 1.1em;
}

.full-width .panel-half.light .inner h2 {
	color: #f26334;
}

.full-width .panel-half.light .inner p.tagline {
	color: #000000;
}

.full-width .panel-half.light .inner p {
	color: #808080;
}

.full-width .panel-half.light .inner p strong {
	color: #000000;
}

.full-width .panel-half.light .inner p a:visited {
	color: #000000;
	text-decoration: none;
	outline: none;
}

.full-width .panel-half.light .inner p a:active {
	color: #000000;
	text-decoration: none;
	outline: none;
}

.full-width .panel-half.light .inner p a:focus {
	color: #000000;
	text-decoration: none;
	outline: none;
}

.full-width .panel-half.light .inner p a:hover {
	text-decoration: none;
	outline: none;
	color: #f26334;
}

.full-width .panel-half.light .inner p a {
	color: #000000;
	text-decoration: none;
	outline: none;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

.full-width .panel-half .content-center {
	text-align: center;
}

@media screen and (max-width: 1799px) {
	.full-width .panel-half .inner ul.products li a {
		font-size: 0.7em;
	}
}

@media screen and (max-width: 991px) {
	.full-width .panel-half .inner ul.products li a {
		padding: 10px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1299px) {
	.full-width .panel-half {
		padding-top: 35%;
	}
	.full-width .panel-half .inner h2 {
		font-size: 2.6em;
		line-height: 1em;
		padding: 0;
		margin-bottom: 15px;
	}
	.full-width .panel-half .inner ul.products li h2 {
		font-size: 0.9em;
	}
	.full-width .panel-half .inner p {
		font-size: 0.9em;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.full-width .panel-half {
		padding-top: 45%;
	}
	.full-width .panel-half .inner h2 {
		font-size: 2em;
	}
}

@media screen and (max-width: 767px) {
	.full-width .panel-half {
		width: 100%;
		padding: 30px 15px;
	}
	.full-width .panel-half .inner {
		width: 100%;
		position: relative;
		top: auto;
		left: auto;
		-webkit-transform: translate(0%, 0%);
		-moz-transform: translate(0%, 0%);
		-ms-transform: translate(0%, 0%);
		-o-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
	}
	.full-width .panel-half .inner h2 i.circle {
		position: relative;
		top: 0;
		left: 0;
		margin-bottom: 10px;
	}
	.full-width .panel-half .inner ul.products li a {
		padding: 20px;
		font-size: 1em;
	}
}

@media screen and (min-width: 768px) and (max-width: 1299px) {
	.full-width .panel-half .inner ul.products li h2 {
		font-size: 0.7em;
	}
}

/* **** CUSTOMER REVIEWS **** */

.reviews {
	width: 100%;
	overflow: hidden;
	color: #ffffff;
}

.reviews .reviews-hd {
	width: 100%;
	position: relative;
}

.reviews .reviews-hd i {
	position: absolute;
	top: 20px;
	right: 0;
}

.reviews .review {
	width: 100%;
	padding-right: 30px;
	overflow: hidden;
	margin-bottom: 30px;
}

.reviews .review p.name {
	margin-top: 12px;
	display: block;
	padding: 0;
	margin: 0 0 5px 0;
}

.reviews .review p.date {
	font-size: 0.9em;
}

.reviews .review p {
	color: #ffffff;
}

@media screen and (max-width: 767px) {
	.reviews .review {
		padding-right: 0;
		margin-bottom: 20px;
	}
	.reviews .review p {
		font-size: 1em;
	}
}

/* **** PRODUCT LIST **** */

.internal section.lg-ft-boxes.products-list {
	padding: 0 0 80px;
}

.internal section.lg-ft-boxes.products-list .ft-box .details {
	width: 50%;
}

.internal section.lg-ft-boxes.products-list .ft-box .details h2 {
	font-size: 1.875em;
	color: #ffffff;
	font-weight: bold;
}

.internal section.lg-ft-boxes.products-list .ft-box.cta .details {
	width: 80%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.internal section.lg-ft-boxes.products-list .ft-box.cta:hover .details {
	width: 80%;
}

.internal section.lg-ft-boxes.products-list .ft-box.cta .details h2 {
	font-size: 1.875em;
	line-height: 1.4em;
	padding-bottom: 20px;
}

.internal section.lg-ft-boxes.products-list hr {
	display: block;
	border: 0;
	border-bottom: 1px dotted #ddd;
	margin-bottom: 40px;
}

/* EMAIL CTA WITHIN PRDUCT LIST */

.internal section.lg-ft-boxes.products-list .email-cta .details {
	width: 80%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.internal section.lg-ft-boxes.products-list .email-cta .details p.tagline {
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	color: #ffffff;
	padding: 0;
	margin: 0 0 10px;
}

.internal section.lg-ft-boxes.products-list .email-cta i {
	display: block;
	width: 40px;
	height: 40px;
	margin: 0 auto;
	margin-bottom: 10px;
	border: 1px solid #ffffff;
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	background-clip: padding-box;
}

.internal section.lg-ft-boxes.products-list .email-cta .details h2 {
	font-size: 3.125em;
}

.internal section.lg-ft-boxes.products-list .email-cta:hover .details h2 {
	padding-bottom: 20px;
	margin-bottom: 0;
}

.internal section.lg-ft-boxes.products-list .email-cta p {
	font-family: "Noto Sans", sans-serif;
	font-size: 1.063em;
	color: #ffffff;
	padding-bottom: 0;
	margin-bottom: 0;
}

.internal section.lg-ft-boxes.products-list .email-cta .details p a {
	color: #f26334;
}

@media screen and (max-width: 1199px) {
	.internal section.lg-ft-boxes.products-list {
		padding: 0 0 60px;
	}
	.internal section.lg-ft-boxes.products-list .ft-box.cta .details {
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	.internal section.lg-ft-boxes.products-list .ft-box.cta .details h2 {
		font-size: 1.6em;
	}
}

@media screen and (max-width: 991px) {
	.internal section.lg-ft-boxes.products-list {
		padding: 0 0 40px;
	}
	.internal section.lg-ft-boxes.products-list .ft-box.cta .details h2 {
		font-size: 1.2em;
	}
}

@media screen and (max-width: 767px) {
	.internal section.lg-ft-boxes.products-list {
		padding: 0 0 30px;
	}
	.internal section.lg-ft-boxes.products-list .ft-box.cta .details h2 {
		font-size: 1.4em;
	}
}

.home section.lg-ft-boxes.products-list {
	padding: 60px 0 40px;
}

.home section.lg-ft-boxes.products-list .ft-box .details {
	width: 50%;
}

.home section.lg-ft-boxes.products-list .ft-box .details h2 {
	font-size: 1.875em;
	color: #ffffff;
	font-weight: bold;
}

@media screen and (min-width: 767px) and (max-width: 1199px) {
	.home section.lg-ft-boxes.products-list .ft-box .details h2 {
		font-size: 1.4em;
	}
}

@media screen and (min-width: 767px) and (max-width: 1199px) {
	.internal section.lg-ft-boxes.products-list .ft-box .details h2 {
		font-size: 1.4em;
	}
	.internal section.lg-ft-boxes.products-list .ft-box.email-cta h2 {
		font-size: 1em;
		padding: 0 0 10px 0;
		margin: 0;
	}
	.internal section.lg-ft-boxes.products-list .ft-box.email-cta:hover h2 {
		padding: 0 0 10px 0;
	}
	.internal section.lg-ft-boxes.products-list .ft-box.email-cta p {
		font-size: 0.8em;
	}
}

@media screen and (max-width: 640px) {
	.internal section.lg-ft-boxes.products-list .email-cta .details h2 {
		font-size: 2em;
	}
}

@media screen and (max-width: 499px) {
	.internal section.lg-ft-boxes.products-list .email-cta .details i {
		width: 30px;
		height: 30px;
	}
	.internal section.lg-ft-boxes.products-list .email-cta .details h2,
	.internal section.lg-ft-boxes.products-list .ft-box.email-cta:hover h2 {
		font-size: 1.4em;
		padding-bottom: 5px;
	}
	.internal section.lg-ft-boxes.products-list .email-cta .details p {
		font-size: 0.8em;
	}
}

/* **** STEPS **** */

section.steps {
	width: 100%;
	overflow: hidden;
	text-align: center;
	padding: 8% 0;
}

section.steps ul {
	width: 100%;
	padding: 0;
	margin: 0 0 30px;
	display: block;
}

section.steps ul li {
	display: inline-block;
	width: 60px;
	height: 60px;
	margin: 0 20px;
	border: 1px solid #fff;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	background-clip: padding-box;
}

section.steps ul li i {
	display: block;
	height: 100%;
	width: 100%;
	background-size: 36px;
	background-position: center center;
}

section.steps h2 {
	color: #ffffff;
	font-size: 3.125em;
}

section.steps p {
	font-family: "Noto Sans", sans-serif;
	font-size: 1.250em;
	color: #ffffff;
}

section.steps p span {
	color: #f26334;
}

section.steps i {
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	section.steps ul {
		margin-bottom: 10px;
	}
	section.steps ul li {
		margin: 0 10px;
	}
}

/* *** THREE STEPS **** */

.three-steps {
	width: 100%;
	overflow: hidden;
}

.three-steps .step.dark:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 0;
}

.three-steps .step.dark-half:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 0;
}

.three-steps .step.primary:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url("../img/primary-overlay-bg.png");
	z-index: 0;
}

.three-steps .step.light:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	background-color: #e5e5e5;
}

.three-steps .step.accent:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	background: url("../img/blue-overlay-bg.png");
}

.three-steps .step {
	width: 33.333%;
	float: left;
	padding-top: 33.333%;
	position: relative;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
	position: relative;
}

.three-steps .step .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: left;
	width: 55%;
}

.three-steps .step .inner a,
.three-steps .step .inner a:active,
.three-steps .step .inner a:focus,
.three-steps .step .inner a:hover {
	text-decoration: none;
	outline: none;
}

.three-steps .step .inner h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 3.125em;
	color: #ffffff;
	font-weight: 400;
	position: relative;
	font-weight: bold;
	padding: 0;
	margin: 0 0 20px;
}

.three-steps .step .inner h2 i.circle {
	display: block;
	width: 60px;
	height: 60px;
	border: 1px solid #fff;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	background-clip: padding-box;
	position: absolute;
	top: -31px;
	left: -70px;
	text-align: center;
}

.three-steps .step .inner h2 i.circle span {
	position: relative;
	font-size: 28px;
	top: 0;
	display: inline-block;
	left: -2px;
	top: -6px;
}

.three-steps .step .inner p {
	font-family: "Noto Sans", sans-serif;
	font-size: 1.063em;
	color: #ffffff;
	text-transform: uppercase;
}

.three-steps .step .inner p span {
	color: #f26334;
}

.three-steps .step .inner p.tagline {
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	color: #ffffff;
	padding: 0;
	margin: 0 0 10px;
	text-transform: none;
	font-size: 1.125em;
}

.three-steps .step .inner i.white-check {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-position: center center;
	background-size: 90%;
	position: relative;
	top: 2px;
}

@media screen and (min-width: 768px) and (max-width: 1299px) {
	.three-steps .step .inner h2 {
		font-size: 2em;
		line-height: 1em;
		padding: 0;
		margin-bottom: 15px;
	}
	.three-steps .step .inner h2 i.circle {
		width: 40px;
		height: 40px;
		left: -50px;
	}
	.three-steps .step .inner h2 i.circle span {
		position: relative;
		font-size: 16px;
		top: 0;
		display: inline-block;
		left: -2px;
		top: -2px;
	}
	.three-steps .step .inner p,
	.three-steps .step .inner p.tagline {
		font-size: 0.9em;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.three-steps .step .inner h2 {
		font-size: 2em;
	}
}

@media screen and (max-width: 767px) {
	.three-steps .step {
		width: 100%;
		padding: 30px 15px;
	}
	.three-steps .step .inner {
		width: 100%;
		position: relative;
		top: auto;
		left: auto;
		-webkit-transform: translate(0%, 0%);
		-moz-transform: translate(0%, 0%);
		-ms-transform: translate(0%, 0%);
		-o-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
	}
	.three-steps .step .inner h2 {
		font-size: 2.4em;
		margin-bottom: 10px;
	}
	.three-steps .step .inner h2 i.circle {
		position: relative;
		top: 0;
		left: 0;
		margin-bottom: 10px;
		width: 40px;
		height: 40px;
	}
	.three-steps .step .inner h2 i.circle span {
		font-size: 16px;
		top: -6px;
	}
}

/* QUOTE */

section.dark-bg {
	background: #232323;
	position: relative;
}

section.full-width.inline-content {
	height: 100%;
}

section.full-width.inline-content .panel-half {
	padding-top: 0;
	position: relative;
	width: 50%;
	float: left;
	height: 100%;
	overflow: hidden;
}

section.full-width.inline-content .panel-half.inline-inner {
	position: relative;
	padding-top: 33.333%;
}

section.full-width.inline-content .panel-half.inline-inner p.quote {
	font-size: 1.250em;
	font-family: "Noto Sans", sans-serif;
}

section.full-width.inline-content .panel-half.inline-inner p.name {
	font-size: 0.938em;
	color: #f26334;
}

@media screen and (max-width: 839px) {
	section.full-width.inline-content .panel-half {
		width: 100%;
		padding: 0;
	}
	section.full-width.inline-content .panel-half.inline-inner {
		padding: 30px 10px;
	}
	section.full-width.inline-content .panel-half.inline-inner .inner {
		width: 100%;
		position: relative;
		top: auto;
		left: auto;
		-webkit-transform: translate(0%, 0%);
		-moz-transform: translate(0%, 0%);
		-ms-transform: translate(0%, 0%);
		-o-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
	}
}

/* ***** FULL WIDTH FEATURE **** */

.full-width-feature {
	width: 100%;
	overflow: hidden;
	position: relative;
	text-align: center;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
	background-position: center center !important;
}

.full-width-feature h2 {
	color: #ffffff;
	font-weight: bold;
	font-size: 2.500em;
	padding: 30% 0;
	margin: 0;
	line-height: 1.2em;
}

/* **** PROJECT SHOWCASE **** */

.projects-showcase {
	width: 100%;
	overflow: hidden;
}

.projects-showcase a:before {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: 24px;
	height: 24px;
	display: block;
	border: 1px solid #ffffff;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	background-clip: padding-box;
	background: url("../img/icon-white-plus.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px 16px;
}

.projects-showcase a {
	width: 100%;
	display: block;
	position: relative;
}

.projects-showcase a img {
	margin-bottom: 30px;
	display: block;
	max-width: 100%;
}

.panel-group .panel-body.rte ul.key {
	display: block;
	width: 100%;
	margin-bottom: 20px;
	overflow: hidden;
}

.panel-group .panel-body.rte ul.key li {
	list-style: none;
	float: left;
	background: none;
	padding-left: 0;
	margin-right: 20px;
}

.panel-group .panel-body.rte ul.key li p {
	padding: 0;
	margin: 0;
	font-size: 0.8em;
}

.panel-group .panel-body.rte ul.key li i {
	display: inline-block;
	width: 53px;
	height: 38px;
	border: 1px solid #e6e6e6;
	margin-right: 10px;
	position: relative;
	top: 13px;
}

.rte .product-items a {
	border: 1px solid #e6e6e6;
	padding: 10px;
	margin-bottom: 30px;
}

.rte .product-items a img {
	margin: 0;
	padding: 0;
}

.rte .product-items a::before {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: 24px;
	height: 24px;
	display: block;
	border: 1px solid #111111;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	background-clip: padding-box;
	background: url("../img/icon-black-plus.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px 16px;
}

/* PRODUCT DETAILS */

.product-details {
	width: 100%;
	overflow: hidden;
}

.product-details .product-hd {
	width: 100%;
	overflow: hidden;
	padding-bottom: 30px;
}

.product-details .product-hd h1 {
	font-family: "Montserrat", sans-serif;
	color: #000000;
	font-weight: bold;
	font-size: 3.125em;
	padding: 0;
	margin: 0 0 10px;
	line-height: auto;
}

.product-details .product-hd p.product-id {
	font-family: "Noto Sans", sans-serif;
	color: #808080;
	padding: 0;
	margin: 0;
	font-size: 1em;
}

/* PRODUCT PANEL ACCORDIAN */

.panel {
	background: none;
	box-shadow: none;
}

.panel:last-child {
	border-bottom: none;
}

.panel-group>.panel:first-child .panel-heading {
	border-radius: 0;
}

.panel-group .panel {
	border-radius: 0;
}

.panel-group .panel+.panel {
	margin-top: 0;
}

.panel-heading {
	background-color: #fff;
	border-radius: 0;
	border: none;
	color: #000000;
	padding: 0;
}

.panel-heading h2.panel-title {
	display: block;
	width: 100%;
	font-family: "Montserrat", sans-serif;
	color: #000000;
	font-weight: bold;
	font-size: 1.4em;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	position: relative;
}

.panel-heading h2.panel-title a:active,
.panel-heading h2.panel-title a:focus,
.panel-heading h2.panel-title a:hover,
.panel-heading h2.panel-title a:visited {
	text-decoration: none;
	outline: none;
	color: #000000;
}

.panel-heading h2.panel-title a {
	position: relative;
	display: block;
	width: 100%;
	padding: 15px 0 15px 45px;
	text-decoration: none;
	outline: none;
	color: #000000;
}

.panel-heading h2.panel-title a i {
	left: 0;
}

.panel-body {
	background: none;
	padding: 20px 0;
}

.panel:last-child .panel-body {
	border-radius: 0;
}

.panel:last-child .panel-heading {
	border-radius: 0;
	transition: border-radius 0.3s linear 0.2s;
}

.panel:last-child .panel-heading.active {
	border-radius: 0;
	transition: border-radius linear 0s;
}

/* #bs-collapse icon scale option */

.panel-heading a:before {
	position: absolute;
	right: 5px;
	top: 10px;
	font-size: 24px;
	transition: all 0.3s;
}

/* .panel-group rotate icon option */

.panel-group .panel-heading a:before {
	content: "";
	display: block;
	width: 20px;
	height: 30px;
	background: url("../img/icon-arrow-black-down.svg");
	background-position: center center;
	background-size: 10px;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: 10px;
}

.panel-group .panel-heading a:before {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.panel-group .panel-heading a.collapsed:before {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

.panel-group .panel-body h2 {
	position: relative;
	font-family: "Montserrat", sans-serif;
	color: #000000;
	font-size: 1.6em;
	font-weight: bold;
	padding: 0;
	margin: 0 0 20px;
}

.panel-group .panel-body.rte p {
	font-family: "Noto Sans", sans-serif;
	color: #808080;
	font-size: 16px;
	line-height: 2em;
}

.panel-group .panel-body.rte p span {
	color: #000000;
	font-weight: normal;
}

.panel-group .panel-body.rte blockquote.nib {
	margin-bottom: 20px;
}

.panel-group .panel-body.rte blockquote.nib p {
	color: #000000;
	font-size: 20px;
	line-height: 1.6em;
	margin-bottom: 20px;
}

.panel-group .panel-body.rte blockquote.nib p strong {
	font-weight: bold;
}

.panel-group .panel-body.rte blockquote.nib p span {
	color: #f26334;
}

/* PRODUCT DETAILS CTA */

.product-details {
	width: 100%;
	overflow: hidden;
}

.product-details .cta {
	width: 100%;
	overflow: hidden;
}

.product-details .cta h2 {
	width: 100%;
	display: block;
	position: relative;
	font-family: "Montserrat", sans-serif;
	color: #000000;
	font-size: 2em;
	font-weight: bold;
	padding: 2px 0 0 50px;
	margin: 0 0 20px;
	min-height: 40px;
}

.product-details .cta h2 i {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	background-color: #f26334;
	background-image: url("../img/icon-arrow-white-forward.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px 20px;
}

.product-details .cta p {
	padding: 0;
	margin: 0;
}

.product-details .cta p i {
	display: inline-block;
	margin-right: 10px;
	width: 26px;
	height: 26px;
	position: relative;
	top: 6px;
	background: url("../img/icon-black-mail.svg");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}

.product-details .cta p a:active,
.product-details .cta p a:focus,
.product-details .cta p a:hover,
.product-details .cta p a:visited {
	color: #000000;
	text-decoration: none;
	outline: none;
}

.product-details .cta p a {
	font-size: 1em;
	color: #000000;
	font-family: "Noto Sans", sans-serif;
}

/* RELATED PRODUCTS */

.related-products {
	width: 100%;
	overflow: hidden;
}

.related-products h2.hd-primary {
	font-size: 2.6em;
	padding: 0;
	margin: 0 0 20px;
}

.related-products i {
	margin: 0 auto;
}

.related-products .products-row {
	margin-top: 30px;
}

.related-products .products-row .stamp {
	width: 54px;
}

/* **** PRODUCT LIST ***** */

.internal .content.related-products.products-list {
	padding: 80px 0;
}

@media screen and (max-width: 1199px) {
	.internal .content.related-products.products-list {
		padding: 60px 0;
	}
}

@media screen and (max-width: 991px) {
	.internal .content.related-products.products-list {
		padding: 40px 0;
	}
}

@media screen and (max-width: 767px) {
	.internal .content.related-products.products-list {
		padding: 30px 0;
	}
}

.products-list {
	width: 100%;
	overflow: hidden;
}

.products-list .stamp {
	position: absolute;
	top: 0;
	right: 0;
	width: 74px;
	height: auto;
}

@media screen and (max-width: 599px) {
	.products-list .stamp {
		max-width: 50px;
	}
}

/* SMALL LAYOUT */

.internal section.lg-ft-boxes.products-list .small-layout {
	width: 100%;
	overflow: hidden;
}

.internal section.lg-ft-boxes.products-list .small-layout .stamp {
	max-width: 50px;
}

.internal section.lg-ft-boxes.products-list .small-layout .ft-box .details h2 {
	font-size: 1.2em;
}

.lg-ft-boxes .ft-box {
    height: 25rem;
}
.lg-ft-boxes .ft-box .img-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
	.internal section.lg-ft-boxes.products-list .small-layout .stamp {
		max-width: auto;
	}
	.internal section.lg-ft-boxes.products-list .small-layout .ft-box .details h2 {
		font-size: 1.875em;
	}
}

/* NEWS FEATURES */

.news-item-1, .news-item-2 {
    display: flex;
    flex-wrap: wrap;
}

.full-width.news-feature-items > a {
    width: 100%;
    height: 25rem;
     flex: 1 0 100%;
}
@media screen and (min-width: 768px) {
  .full-width.news-feature-items > a {
    width: 100%;
    height: 25rem;
    flex: 1 0 50%;
}  
}

.full-width.news-feature-items .panel-half {
	padding-top: 0;
	position: relative;
	padding: 0;
	width: 100%; 
	height: 100%;
}

.full-width.news-feature-items .panel-half .overlay {
	content: "";
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.2);
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

.full-width.news-feature-items .panel-half:hover .overlay {
	background: rgba(0, 0, 0, 0.5);
}

.full-width.news-feature-items .panel-half img {
	width: 100%;
	object-fit: cover;
    height: 100%;
}

.full-width.news-feature-items .panel-half .inner {
	padding: 5%;
	left: 0;
	top: auto;
	bottom: 0;
	-webkit-transform: translate(0%, 0%);
	-moz-transform: translate(0%, 0%);
	-ms-transform: translate(0%, 0%);
	-o-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
	width: 70%;
}

.full-width.news-feature-items .panel-half .inner h2 {
	font-size: 1.500em;
	padding: 0;
	margin: 0 0 20px;
}

.full-width.news-feature-items .panel-half .inner a {
	text-decoration: none;
	outline: none;
	display: block;
}

@media screen and (max-width: 991px) {
	.full-width.news-feature-items .panel-half .inner h2 {
		font-size: 1.2em;
	}
}

@media screen and (max-width: 767px) {
	.full-width.news-feature-items .panel-half .inner {
		padding: 10px;
		position: absolute;
	}
	.full-width.news-feature-items .panel-half .inner h2 {
		font-size: 1.500em;
		padding: 0;
		margin: 0 0 10px;
	}
}

/* NEWS ITEMS */

.news-items {
	width: 100%;
	overflow: hidden;
}

.news-items .news-item {
	width: 50%;
	float: left;
	overflow: hidden;
}

.news-items .news-item .item-img {
	width: 50%;
	float: left;
	position: relative;
}

.news-items .news-item .item-img img {
	width: 100%;
}

.news-items .news-item .item-img.img-right {
	float: right;
}

.news-items .news-item a:hover {
	text-decoration: none;
	outline: none;
}

.news-items .news-item a,
.news-items .news-item a:active,
.news-items .news-item a:focus,
.news-items .news-item a:visited {
	text-decoration: none;
	outline: none;
}

.news-items .news-item a {
	text-decoration: none;
	outline: none;
	display: block;
	height: 100%;
}

.news-items .news-item .item-bd {
	width: 50%;
	float: left;
	padding: 5%;
	position: relative;
}

.news-items .news-item .item-bd h2 {
	font-size: 1.125em;
	font-weight: bold;
	padding: 0 0 10px;
	margin: 0;
	color: #ffffff;
	font-family: "Montserrat", sans-serif;
	line-height: 1.6em;
}

.news-items .news-item .item-bd p.date {
	color: #ffffff;
}

.news-items .news-item .item-bd p {
	font-size: 0.875em;
	font-family: "Noto Sans", sans-serif;
	padding: 0 0 10px;
	margin: 0;
	color: #ffffff;
	line-height: 1.8em;
}

.news-items .news-item .item-img .overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: transparent;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

.news-items .news-item:hover .item-img .overlay {
	background: rgba(0, 0, 0, 0.2);
}

.news-items .news-item.dark-bg {
	background: #232323;
}

.news-items .news-item.light-bg {
	background: #9B9D9F;
}

.news-items .news-item.primary-bg {
	background: #f26334;
}

.news-items .news-item.dark-bg .img-left:after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
	background: url("../img/dark-corner.svg");
	background-repeat: no-repeat;
}

.news-items .news-item.light-bg .img-left:after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
	background: url("../img/light-corner.svg");
	background-repeat: no-repeat;
}

.news-items .news-item.primary-bg .img-left:after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
	background: url("../img/primary-corner.svg");
	background-repeat: no-repeat;
}

.news-items .news-item.dark-bg .img-right:after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0;
	background: url("../img/dark-corner.svg");
	background-repeat: no-repeat;
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.news-items .news-item.light-bg .img-right:after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0;
	background: url("../img/light-corner.svg");
	background-repeat: no-repeat;
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.news-items .news-item.primary-bg .img-right:after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0;
	background: url("../img/primary-corner.svg");
	background-repeat: no-repeat;
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

@media screen and (min-width: 1099px) and (max-width: 1359px) {
	.news-items .news-item .item-bd h2 {
		line-height: 1.2em;
	}
	.news-items .news-item .item-bd p {
		line-height: 1.6em;
		font-size: 0.8em;
	}
	.news-items .news-item .item-bd p.date {
		font-size: 0.7em;
	}
}

@media screen and (max-width: 1199px) {
	.news-items .news-item .item-bd {
		padding: 3%;
	}
}

@media screen and (max-width: 1099px) {
	.news-items .news-item {
		width: 100%;
	}
}

@media screen and (max-width: 640px) {
	.news-items .news-item.dark-bg .img-left::after,
	.news-items .news-item.light-bg .img-left::after,
	.news-items .news-item.primary-bg .img-left::after {
		height: 30px;
		width: 30px;
	}
	.news-items .news-item.dark-bg .img-right::after,
	.news-items .news-item.light-bg .img-right::after,
	.news-items .news-item.primary-bg .img-right::after {
		height: 30px;
		width: 30px;
	}
	.news-items .news-item .item-bd {
		padding: 15px;
	}
	.news-items .news-item .item-bd h2 {
		font-size: 1em;
	}
	.news-items .news-item .item-bd p {
		display: none;
	}
}

.load-more-option {
	width: 100%;
	overflow: hidden;
}

/* NEWS VIDEO ITEM */

.full-width.news-feature-items .panel-half .inner.video-item {
	width: 90%;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1111;
	text-align: center;
	padding: 0;
	bottom: auto;
}

.full-width.news-feature-items .panel-half .inner.video-item h2 {
	font-size: 1.875em;
}

.full-width.news-feature-items .panel-half .inner.video-item i {
	width: 50px;
	height: 50px;
	display: block;
	margin: 0 auto 10px;
}

@media screen and (max-width: 991px) {
	.full-width.news-feature-items .panel-half .inner.video-item h2 {
		font-size: 1.4em;
	}
}

/* **** NEWS DETAILS **** */

.standard-details {
	width: 100%;
	overflow: hidden;
}

.standard-details .post-date {
	width: 100%;
	position: relative;
}

.standard-details .post-date .post-details {
	position: absolute;
	top: 0;
	right: 0;
	text-align: right;
}

.standard-details .post-date .post-details h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 1.125em;
	color: #f26334;
	padding: 0;
	margin: 0;
}

.standard-details .post-date .post-details p {
	font-family: "Noto Sans", sans-serif;
	font-size: 0.875em;
	color: #000000;
	padding: 0;
	margin: 0;
}

.standard-details article.content-bd {
	display: block;
	width: 80%;
}

.standard-details article.content-bd p.synopsis {
	color: #000000;
	font-size: 1.250em;
}

.standard-details article.content-bd p {
	color: #808080;
	font-size: 1.063em;
}

.standard-details article.content-bd p strong {
	font-weight: bold;
}

.standard-details article.content-bd p span {
	color: #f26334;
}

.standard-details article.content-bd a {
	text-decoration: none;
	outline: none;
}

.standard-details article.content-bd h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	font-size: 1.875em;
	padding: 0;
	margin: 0 0 20px;
}

.standard-details article.content-bd blockquote {
	padding: 0 0 0 20px;
	border-left: 5px solid #f26334;
	color: #808080;
	font-size: 1.250em;
	font-weight: bold;
}

.standard-details .feature-images {
	width: 100%;
	overflow: hidden;
	margin-bottom: 30px;
}

.feature-images .row{
    display:flex;
    justify-content:center;
}

.standard-details .feature-images p.caption {
	color: #000000;
	font-size: 0.8em;
	display: block;
	margin-top: 20px;
}

.standard-details .feature-video {
	width: 100%;
	overflow: hidden;
	margin-bottom: 30px;
}

.standard-details ul.social {
	padding: 0;
	margin: 0;
	display: block;
	width: 100%;
	overflow: hidden;
	list-style: none;
}

.standard-details ul.social li {
	float: left;
	margin-right: 10px;
	color: #ffffff;
	list-style: none;
	position: relative;
	margin-bottom: 10px;
}

.standard-details ul.social li a {
	display: block;
	border: 1px solid #000000;
	width: 40px;
	height: 40px;
	color: #000000;
	text-align: center;
	padding-top: 8px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}

@media screen and (max-width: 1199px) {
	.standard-details article.content-bd {
		display: block;
		width: 75%;
	}
	.standard-details .feature-img {
		margin-bottom: 20px;
	}
	.standard-details .feature-video {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 991px) {
	.standard-details .post-date .post-details h2 {
		font-size: 0.9em;
	}
	.standard-details .post-date .post-details p {
		font-size: 0.8em;
	}
}

@media screen and (max-width: 767px) {
	.standard-details .post-date .post-details {
		position: relative;
		text-align: left;
		overflow: hidden;
		margin-bottom: 5px;
	}
	.standard-details .post-date .post-details h2 {
		font-size: 0.9em;
		display: inline-block;
	}
	.standard-details .post-date .post-details p {
		font-size: 0.8em;
		display: inline-block;
	}
	.standard-details article.content-bd {
		display: block;
		width: 100%;
	}
	.standard-details .feature-images img {
		margin-bottom: 20px;
	}
	.standard-details .feature-images p.caption {
		margin-top: 0;
		margin-bottom: 20px;
	}
}

/* QUOTE IFRAME */

.quote-iframe-wrapper {
	width: 100%;
	overflow: hidden;
	margin-top: 30px;
	margin-bottom: 8%;
}

.quote-iframe-wrapper iframe {
	display: block;
	margin: 0 auto;
}

/* QUOTE MOBILE ONLY BUTTONS */

.mobile-only-actions {
	width: 100%;
	overflow: hidden;
	list-style: none;
	text-align: center;
	display: none;
}

@media screen and (max-width: 767px) {
	.quote-iframe-wrapper iframe {
		/* display: none; */
		display: block;
	}
	.mobile-only-actions {
		/* display: block; */
		display: none;
	}
}

/* ------------------------------
Cards
--------------------------------*/

/* ------------------------------
Modules
--------------------------------*/

aside {
	width: 100%;
	overflow: hidden;
	margin-bottom: 30px;
	display: block;
}

aside.product-brochure {
	width: 100%;
	overflow: hidden;
}

aside.product-brochure a:active,
aside.product-brochure a:visited,
aside.product-brochure a:focus {
	text-decoration: none;
	outline: none;
}

aside.product-brochure a:hover {
	text-decoration: none;
	outline: none;
	background: #000000;
}

aside.product-brochure a {
	text-decoration: none;
	outline: none;
	display: block;
	background: #f26334;
	padding: 13px 10px 20px 10px;
	margin: 0;
	color: #ffffff;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-size: 1.225em;
	font-weight: bold;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

aside.product-brochure a i {
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	top: 7px;
	margin-right: 10px;
	background-position: center center;
	background-repeat: no-repeat;
}

aside.product-brochure a i.right {
	float: right;
	margin-right: 0;
}

/* REQUEST QUOTE */

aside.request-quote {
	width: 100%;
	overflow: hidden;
}

aside.request-quote a:active,
aside.request-quote a:visited,
aside.request-quote a:focus {
	text-decoration: none;
	outline: none;
}

aside.request-quote a:hover {
	text-decoration: none;
	outline: none;
	background: #000000;
}

aside.request-quote a {
	text-decoration: none;
	outline: none;
	display: block;
	background: #9B9D9F;
	padding: 13px 10px 20px 10px;
	margin: 0;
	color: #ffffff;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-size: 1.225em;
	font-weight: bold;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

aside.request-quote a i {
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	top: 7px;
	margin-right: 10px;
	background-position: center center;
}

aside.request-quote a i.right {
	float: right;
	margin-right: 0;
	background-size: 80%;
	background-position: center center;
	background-repeat: no-repeat;
}

aside.request-quote a.btn-ghost-dark {
	margin-top: 20px;
	color: #fff;
	margin-bottom: 0;
	padding: 20px;
}

/* REQUEST QUOTE */

aside.online-quote {
	width: 100%;
	overflow: hidden;
}

aside.online-quote a:active,
aside.online-quote a:visited,
aside.online-quote a:focus {
	text-decoration: none;
	outline: none;
}

aside.online-quote a:hover {
	text-decoration: none;
	outline: none;
	background: #000000;
}

aside.online-quote a {
	text-decoration: none;
	outline: none;
	display: block;
	background: #f26334;
	padding: 13px 10px 20px 10px;
	margin: 0;
	color: #ffffff;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-size: 1.225em;
	font-weight: bold;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

aside.online-quote a i {
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	top: 7px;
	margin-right: 10px;
	background-position: center center;
}

aside.online-quote a i.right {
	float: right;
	margin-right: 0;
	background-size: 80%;
	background-position: center center;
	background-repeat: no-repeat;
}

/* PRODUCT INFO */

aside.product-info {
	width: 100%;
	overflow: hidden;
	margin-bottom: 30px;
}

aside.product-info ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

aside.product-info ul li:first-child {
	float: left;
	margin-right: 20px;
}

aside.product-info ul li p {
	font-family: "Noto Sans", sans-serif;
	color: #000000;
	font-size: 1em;
	font-weight: bold;
}

aside.product-info ul li span {
	font-size: 0.9em;
	font-family: "Noto Sans", sans-serif;
	display: block;
	color: #808080;
}

aside.product-info ul li.web-address a:active,
aside.product-info ul li.web-address a:visited,
aside.product-info ul li.web-address a:focus {
	text-decoration: none;
	color: #000000;
	outline: none;
}

aside.product-info ul li.web-address a:hover {
	text-decoration: none;
	color: #808080;
	outline: none;
}

aside.product-info ul li.web-address a {
	font-family: "Noto Sans", sans-serif;
	display: block;
	color: #000000;
	font-size: 0.8em;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

aside.product-info ul li.web-address a i {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 5px;
	position: relative;
	top: 6px;
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
	aside.product-brochure a,
	aside.request-quote a,
	aside.online-quote a {
		padding: 10px 10px 20px 10px;
		font-size: 1em;
		line-height: 1.4em;
	}
	aside.product-brochure a i {
		top: 8px;
	}
}

@media screen and (max-width: 991px) {
	.product-details .cta {
		margin-bottom: 30px;
	}
}

/* ------------------------------
Modals (BOOTSTRAP)
--------------------------------*/

.modal-open {
	overflow: hidden;
}

.modal {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	-webkit-overflow-scrolling: touch;
	outline: 0;
}

.modal.fade .modal-dialog {
	-webkit-transform: translate(0, -25%);
	-ms-transform: translate(0, -25%);
	-o-transform: translate(0, -25%);
	transform: translate(0, -25%);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-o-transition: -o-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 10px;
}

.modal-content {
	position: relative;
	background-color: #ffffff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	outline: 0;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000000;
}

.modal-backdrop.fade {
	opacity: 0;
	filter: alpha(opacity=0);
}

.modal-backdrop.in {
	opacity: 0.5;
	filter: alpha(opacity=50);
}

.modal-header {
	padding: 15px;
	border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
	margin-top: -2px;
}

.modal-title {
	margin: 0;
	line-height: 1.42857143;
}

.modal-body {
	position: relative;
	padding: 15px;
}

.modal-footer {
	padding: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5;
}

.modal-footer .btn+.btn {
	margin-left: 5px;
	margin-bottom: 0;
}

.modal-footer .btn-group .btn+.btn {
	margin-left: -1px;
}

.modal-footer .btn-block+.btn-block {
	margin-left: 0;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}

@media (min-width: 768px) {
	.modal-dialog {
		width: 600px;
		margin: 30px auto;
	}
	.modal-sm {
		width: 300px;
	}
}

@media (min-width: 992px) {
	.modal-lg {
		width: 900px;
	}
}

/* ------------------------------
Rich Text Editor
--------------------------------*/

.rte img {
	max-width: 100%;
	height: auto;
}

.rte h2.primary-hd {
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	font-size: 2.500em;
	color: #000000;
}

.rte h2.primary-hd i {
	margin-left: 10px;
	top: -6px;
}

section .rte blockquote.nib {
	border: none;
	padding: 0;
	margin: 0 0 30px 0;
	width: 100%;
	display: block;
}

section .rte blockquote.nib {
	font-size: 1.250em;
	color: #808080;
	line-height: 1.6em;
}

section .rte blockquote.nib strong {
	color: #000000;
}

section .rte blockquote.nib span {
	color: #f26334;
}

section .rte p {
	padding: 0;
	margin: 0 0 30px 0;
	font-size: 1em;
	line-height: 1.6em;
}

section .rte p strong {
	color: #000000;
}

section .rte img {
	display: block;
	margin-bottom: 20px;
}

section .rte p a:active,
section .rte a:visited,
section .rte a:focus {
	color: #808080;
	text-decoration: underline;
	outline: none;
}

section .rte p a {
	color: #808080;
	text-decoration: underline;
	outline: none;
	transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

section .rte a.btn-ghost-dark {
	color: #000000;
	text-decoration: none;
}

section .rte a:hover.btn-ghost-dark {
	color: #ffffff;
	text-decoration: none;
}

section .rte p a:hover {
	color: #f26334;
}

section .rte h3 {
	margin: 0 0 10px 0;
	padding: 0;
}

section .rte ul {
	padding: 0;
	margin: 0 0 20px 0;
	list-style: none;
}

section .rte ul li {
	color: #808080;
	background-image: url(../img/icon-arrow-primary-forward.svg);
	background-repeat: no-repeat;
	line-height: 1.4em;
	background-size: 20px 20px;
	padding-left: 30px;
	margin-bottom: 10px;
	background-position: 0px 2px;
}

@media screen and (max-width:991px) {
	article.rte .supplier {
		font-size: 1em;
	}
}

@media screen and (max-width:767px) {
	article.rte .supplier {
		font-size: 1em;
		margin: 0 auto;
		display: block;
		text-align: center;
		margin-bottom: 20px;
		max-width: 300px;
	}
}

/* OFF CANVAS MENU */

footer {
	width: 100%;
	overflow: hidden;
	display: block;
	background: #9B9D9F;
}

@media screen and (max-width: 1199px) {
	/* **** HELPERS **** */
	.hide-scroll {
		overflow: hidden;
		margin-right: 15px;
	}
	footer {
		overflow: scroll;
		overflow-x: hidden;
	}
}

footer.menu-open {
	z-index: 9999;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
}

@media screen and (max-width: 767px) {
	footer {
		padding-top: 60px;
	}
}

/* ***** OFF CANVAS MENU ***** */

footer .menu-content {
	width: 100%;
	overflow: hidden;
	padding: 60px 0;
}

footer .menu-content h2 {
	color: #ffffff;
}

footer .menu-content img.logo {
	width: 160px;
	margin-bottom: 0px;
}

footer .menu-content hr {
	margin-bottom: 20px;
	opacity: 0.3;
}

footer .menu-content ul.nav {
	padding: 0;
	margin: 0;
	width: 100%;
	display: block;
}

footer .menu-content ul.nav li {
	width: 100%;
	color: #ffffff;
	font-family: "Noto Sans", sans-serif;
	margin: 0 0 14px 0;
}

footer .menu-content ul.nav li a:hover {
	color: #ffffff;
	text-decoration: none;
	background: none;
	color: #aaa;
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
}

footer .menu-content ul.nav li a:visited,
footer .menu-content ul.nav li a:active,
footer .menu-content ul.nav li a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
	background: none;
}

footer .menu-content ul.nav li a:hover {
	text-decoration: none;
	outline: none;
	color: #ffffff;
	background: none;
}

footer .menu-content ul.nav li a {
	color: #ffffff;
	font-size: 1em;
	padding: 0;
	margin: 0;
}

footer .menu-content .accreditation {
	display: block;
	width: 100%;
	float: left;
	padding: 0 0 20px;
	margin: 0;
	list-style: none;
}

footer .menu-content .accreditation li {
	float: left;
	margin-right: 0;
}

footer .menu-content .accreditation li img {
	display: block;
	height: auto;
	margin-right: 20px;
	max-width: 120px;
}

footer .menu-content .contact-details {
	width: 100%;
	overflow: visible;
	display: block;
	float: left;
}

footer .menu-content .contact-details h2 {
	color: #ffffff;
}

footer .menu-content .contact-details p {
	color: #ffffff;
	padding: 0;
	margin: 0;
	font-size: 0.813em;
}

footer .menu-content .contact-details p.showroom {
	display: block;
	margin-top: 10px;
}

footer .menu-content .contact-details ul.contact {
	width: 100%;
	display: block;
	padding: 20px 0;
}

footer .menu-content .contact-details ul.contact li {
	display: inline-block;
	color: #ffffff;
	font-size: 1.063em;
	list-style: none;
	margin-right: 10px;
}

footer .menu-content .contact-details ul.contact li a:hover {
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

footer .menu-content .contact-details ul.contact li a:visited {
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

footer .menu-content .contact-details ul.contact li a:active {
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

footer .menu-content .contact-details ul.contact li a:focus {
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

footer .menu-content .contact-details ul.contact li a {
	font-family: "Noto Sans", sans-serif;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	font-weight: 400;
}

footer .menu-content .contact-details ul.contact i {
	margin-right: 5px;
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	top: 8px;
}

footer .menu-content .contact-details ul.social {
	display: block;
	width: 100%;
	float: left;
	padding: 10px 0;
}

footer .menu-content .contact-details ul.social li {
	float: left;
	margin-right: 10px;
	color: #ffffff;
	list-style: none;
	position: relative;
	margin-bottom: 10px;
}

footer .menu-content .contact-details ul.social li a {
	display: block;
	border: 1px solid #ffffff;
	width: 40px;
	height: 40px;
	color: #ffffff;
	text-align: center;
	padding-top: 8px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	background-clip: padding-box;
}

footer .menu-content .contact-details ul.social li a:hover {
	text-decoration: none;
	border-color: #ffffff;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}

footer .menu-content .contact-details ul.social li a i.houzz {
	background: url("../img/icon-houzz.svg");
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0px;
	left: 0;
}

@media screen and (min-width: 767px) and (max-width: 1199px) {
	footer .menu-content .contact-details ul.contact li a {
		font-size: 0.7em;
	}
	footer .menu-content .contact-details ul.contact i {
		width: 20px;
		height: 20px;
		top: 6px;
	}
}

@media screen and (max-width: 767px) {
	footer {
		padding-top: 20px;
	}
	footer .menu-content {
		padding: 0px 0 20px 0;
	}
	footer .menu-content img.logo {
		max-width: 120px;
		margin-bottom: 20px;
	}
	footer .menu-content hr {
		margin-top: 0;
		margin-bottom: 0px;
	}
	footer .menu-content ul.nav {
		padding: 10px 0;
		margin-bottom: 10px;
		display: block;
	}
	footer .menu-content ul.nav {
		border-bottom: 1px solid rgba(225, 225, 255, 0.3);
	}
	footer .menu-content .contact-details {
		padding: 0;
	}
	footer .menu-content .contact-details ul.social {
		padding-top: 20px;
	}
	footer .menu-content .contact-details ul.social li {
		margin-right: 10px;
	}
	footer .menu-content .contact-details ul.social li a {
		padding-top: 10px;
	}
	footer .menu-content .contact-details ul.social li a i.houzz {
		top: 2px;
	}
	footer .menu-content ul.nav li:last-child {
		margin-bottom: 0;
	}
	footer .menu-content .contact-details ul.contact {
		padding: 10px 0 15px 0;
		display: block;
		width: 100%;
		float: left;
		border-bottom: 1px solid rgba(225, 225, 255, 0.3);
	}
	footer .menu-content .contact-details ul.contact li i {
		width: 20px;
		height: 20px;
		top: 5px;
	}
	footer .menu-content .accreditation {
		padding: 10px 0;
	}
	footer .menu-content h2 {
		margin-bottom: 0px;
		padding-bottom: 0px;
	}
	footer .menu-content hr {
		margin-bottom: 10px;
	}
}

/* ------------------------------
Signoff
--------------------------------*/

.signoff {
	overflow: hidden;
	width: 100%;
	padding: 40px 0;
	background: #fff;
}

.signoff p {
	color: #808080;
	padding: 0;
	margin: 0;
	font-size: 0.7em;
}

.signoff p a {
	color: #808080;
	text-decoration: none;
	outline: none;
}

.signoff p a:visited {
	color: #808080;
	text-decoration: none;
	outline: none;
}

.signoff p a:focus {
	color: #808080;
	text-decoration: none;
	outline: none;
}

.signoff p a:active {
	color: #808080;
	text-decoration: none;
	outline: none;
}

.signoff p a:hover {
	color: #808080;
	text-decoration: none;
	outline: none;
}

.signoff p.credit {
	float: right;
}

@media screen and (max-width: 1199px) {
	.signoff {
		text-align: center;
	}
	.signoff p {
		padding-bottom: 5px;
	}
	.signoff p.credit {
		float: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}
}

@media screen and (max-width: 1199px) {
	.signoff {
		padding: 20px 0;
	}
}

/* ------------------------------
Main
--------------------------------*/

/*# sourceMappingURL=main.css.map */

/* ============================
New homepage slider styles
============================= */

header.home.slider {
	overflow: hidden;
}

header.home.slider .flexslider.header {
	height: 100%;
	width: 100%;
	position: relative;
}

header.home.slider .flexslider.header ul {
	list-style: none;
	padding: 0;
	margin: 0;
	height: 100%;
}

header.home.slider .flexslider.header ul li {
	list-style: none;
	padding: 0;
	margin: 0;
	height: 100%;
}

header.home.slider .flexslider.header img {
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translateX(-50%);
	object-fit: cover;
	object-position: center;
	height: 100%;
	width: 100%;
}

/* NEWS LAYOUT */

.full-width.news-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.full-width.news-items>a {
	display: block;
	width: 50%;
	float: left;
}

.news-items .news-item {
	width: 100%;
	height: 100%;
}

.align-center {
	text-align: center;
}

.button {
	margin-bottom: 100px;
}


/*--- 2022 quote form ---*/
.quote-form-container {
    
}

.quote-form-container .form-group {
    margin: 0 0 21px 0;
    padding: 0 0 21px 0;
    border-bottom: 1px solid #eaeaea;
}

.quote-form-container .form-group label {
    font-weight: 400;
    color: black;
    margin: 0;
}

.quote-form-container .form-group p.help-block {
    font-size: 14px;
    margin: 0;
}

.quote-form-container .form-group  .form-control {
    height: 45px;
    padding: 9px 15px;
    font-size: 16px;
    margin-top: 9px;
    border-radius: 0;
    border: 1px solid #6f6f6f;
}

.quote-form-container .form-group .form-control,
.quote-form-container .form-group  .form-control:focus,
.quote-form-container .form-group  .form-controlL:active {
    outline: none;
    box-shadow: none;
    border-color: #f26334;
}

.quote-form-container .form-group .radio,
.quote-form-container .form-group .checkbox {
    margin: 12px 0;
}
/* new checkmark 18-12-2023 */
/* The container */
.checking {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checking input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checking:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add an orange background */
.checking input:checked ~ .checkmark {
  background-color: #f26334;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checking input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checking .checkmark:after {
  left: 9px;
  top: 3px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/*end new checkmark */
.quote-form-container .form-group .radio label,
.quote-form-container .form-group .checkbox label {
    font-size: 14px;
    font-weight: 300;
}

.quote-form-container .form-group .radio.custom-answer label,
.quote-form-container .form-group .checkbox.custom-answer label {
    display: inline-flex;
    align-items: center;
}

.quote-form-container .form-group .radio.custom-answer label .form-control,
.quote-form-container .form-group .checkbox.custom-answer label .form-control {
    height: 36px;
    margin: 0;
}

.quote-form-container .btn-primary {
    background-color: black;
    font-family: "Montserrat", sans-serif;
    font-size: 1.125em;
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    background-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 0;
    border: none;
}

.quote-form-container .btn-primary:hover {
    background-color: #f26334;   
}

.quote-form-container .dropdown-menu {
    width: calc(100vw - 30px);
}

.required-message {
    color:red;
}

.btn-group{
    width:100%;
}

button.multiselect.dropdown-toggle.btn.btn-default{
    width: 100%;
    text-align: left;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    padding: 9px 15px;
    font-size: 16px;
    margin-top: 9px;
    border-radius: 0;
    border: 1px solid #6f6f6f;
}

.content.reduce-padding {
    padding: 45px 0 30px 0;
}

.lg-ft-boxes.content .col-xs-12 > .row > .col-xs-12.col-sm-6 {
    height: 25rem;
    margin-bottom: 2rem;
}
@media(max-width:768px) {
   .lg-ft-boxes.content .col-xs-12 > .row > .col-xs-12.col-sm-6 {
        height: 14rem;
        margin-bottom: 1rem;
    } 
}
.lg-ft-boxes.content .col-xs-12 > .row > .col-xs-12.col-sm-6 a {
    display: block;
    height: 100%;
}
.lg-ft-boxes.content .col-xs-12 > .row > .col-xs-12.col-sm-6 a .ft-box {
    height: 100%;
}
.lg-ft-boxes.content .col-xs-12 > .row > .col-xs-12.col-sm-6 a .ft-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}