/*
	Basic 2 Template
	101 Design Pty Ltd
	http://www.101design.com.au
*/

/* ----- Dev Outlines -----

div { outline: 1px dashed rgba(255, 0, 128, .4); }
h1, h2, h3, h4, h5, h6 { outline: 1px dotted rgba(255, 204, 51, .2); }
p { outline: 1px dotted rgba(51, 0, 153, .2); }
ol, ul { outline: 1px dotted rgba(0, 153, 102, .2); }
ol > li, ul > li { outline: 1px dotted rgba(51, 255, 204, .2); }
li li { outline: 1px dotted rgba(204, 255, 255, .2); }
a { outline: 1px dashed rgba(51, 102, 51, .4); }
span { outline: 1px dotted rgba(102, 51, 0, .4); }
table { outline: 1px dotted rgba(102, 102, 102, .2); }
th, tr, td { outline: 1px dotted rgba(204, 204, 204, .2); }
header, nav, section, footer { outline: 1px dashed rgba(255, 100, 0, .4); }
*/

:root {
	--color-black: #000;
	--color-white: #fff;

	--color-primary: #392D72;
	--color-secondary: #E33038;

	--font-primary: 'Mukta', Helvetica, Arial, sans-serif;
}

/* ----- Generic Spacing Notation ----- */

/*
	m|p	 - margin|padding
	t|r|b|l - top|right|bottom|left combinations
	s|m|l   - size

	Add more as needed...
*/

:root {
	--spacing-s: 15px;
	--spacing-m: 30px;
}

.m-t-s  { margin-top: var(--spacing-s); }
.m-b-s  { margin-bottom: var(--spacing-s); }

.p-s	{ padding: var(--spacing-s); }
.p-tb-s { padding-top: var(--spacing-s); padding-bottom: var(--spacing-s); }
.p-t-s  { padding-top: var(--spacing-s); }
.p-b-s  { padding-bottom: var(--spacing-s); }

.p-m	{ padding: var(--spacing-m); }
.p-tb-m { padding-top: var(--spacing-m); padding-bottom: var(--spacing-m); }
.p-t-m  { padding-top: var(--spacing-m); }
.p-b-m  { padding-bottom: var(--spacing-m); }

/* ----- Standard Elements ----- */

* {
	box-sizing: border-box;
	scroll-margin-top: 80px;
}

html {
	min-height: 100%;
	scroll-behavior: smooth;
}

body {
	background: var(--color-white);
	font: normal 18px/1.5 var(--font-primary); color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

p {
	margin: 0 0 1em 0;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0.5rem 0 0.5rem 0;
	font-weight: 700;
	line-height: 1.4;
}

h1 {
	font-size: 2.5rem;
	text-transform: uppercase;
}

h2 {
	font-size: 1.75rem;
}

h3 {
	font-size: 1.3rem;
}

h4 {
	font-size: 1.2rem;
}

h5 {
	font-size: 1.1rem;
}

h6 {
	font-size: 1rem;
}

.inline-block {
	display: inline-block;
}

.left {
	text-align: left;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.strong {
	font-weight: bold;
}

.em {
	font-style: italic;
}

a:link, a:visited {
	text-decoration: none;
	color: var(--color-primary);
}

a:hover, a:active {
	text-decoration: underline;
	color: var(--color-secondary);
}

a > img {
	border: none;
}

ul, ol {
	margin: 0 0 1em 0; padding: 0 0 0 1em;
}

ul {
	list-style: disc outside none;
}

li {
   margin-left: 1em;
}

ul li ul {
	margin-bottom: 0;
}

ul.left_col,
ul.right_col {
	display: block; float: left;
	width: 50%;
	margin-left: 0;
}

ol.nested-dec,
ol.nested-dec ol {
	list-style-type: none;
	counter-reset: item;
	margin: 0;
	padding: 0;
}

ol.nested-dec > li,
ol.nested-dec ol > li {
	display: table;
	counter-increment: item;
	margin-bottom: 0.6em;
}

ol.nested-dec > li:before,
ol.nested-dec ol > li:before {
	content: counters(item, ".") ". ";
	display: table-cell;
	padding-right: 0.6em;
}

ol.nested-dec li ol > li {
	margin: 0;
}

ol.nested-dec li ol > li:before {
	content: counters(item, ".") " ";
}

ul.cleanlist,
ul.cleanlist li {
	margin: 0;
	padding: 0;
	list-style: none;
}

img.left {
	display: block; float: left;
}

img.right {
	display: block; float: right;
}

img.center {
	display: block;
	margin: 0 auto;
}

.success {
	color: #252;
}

.error {
	color: #522;
}

video {
	max-width: 100%;
	height: auto;
}

iframe,
embed,
object {
	max-width: 100%;
}

pre {
	margin: 1em 0; padding: 0.5em;
	white-space: pre-wrap; white-space: -moz-pre-wrap;
	white-space: -pre-wrap; white-space: -o-pre-wrap;
	word-wrap: break-word;
	background: #eee;
}

code {
	margin: 0; padding: 0;
	font-size: 14px; line-height: 1.1;
	white-space: pre-wrap; white-space: -moz-pre-wrap;
	white-space: -pre-wrap; white-space: -o-pre-wrap;
	word-wrap: break-word;
}

.load-hide {
	display: none;
}

.as-table {
	display: table;
}

.as-table > * {
	display: table-cell;
	vertical-align: top;
}


/* ----- Sections ----- */

.page-width {
	width: 100%; max-width: 1280px;
}

#page_wrapper {
	z-index: 0;
	margin: 0 auto;
}

#masthead {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 99;
	background: rgba(255, 255, 255, 0);
	transition: all 0.3s;
}

#masthead:after {
	display: block;
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, 0) 100%);
}

#masthead > .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: none;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	overflow: hidden;
	transition: all 0.3s;
}

#masthead .business-name {
	position: relative;
	float: left;
	width: 120px;
	margin: 15px 0 20px 30px;
	z-index: 1;
	transition: all 0.3s;
}

#masthead .business-name a {
	display: block;
	text-decoration: none;
}

#masthead .business-name a img {
	width: 100%; height: auto;
	display: block;
}

nav.primary {
	width: auto;
	margin: 0 40px 0 0;
	float: right;
	transition: all 0.3s;
}

nav.primary ul.slimmenu {
	display: table;
	margin: 0 auto;
}

nav.primary ul.slimmenu li {
	margin-left: 0;
	border: none;
}

nav.primary ul.slimmenu li a {
	font-family: var(--font-primary), Arial, Helvetica, sans-serif;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 1;
	text-align: left;
	color: #fff;
	text-transform: uppercase;
	padding: 15px 30px;
	transition: all 0.3s;
}

nav.primary ul.slimmenu > li.last a {
	padding-right: 0;
}

nav.primary ul.slimmenu li.has_children > a {
	padding-right: 30px;
}

nav.primary ul.slimmenu li a:hover {
	background: transparent;
	color: var(--color-primary);
}

.home nav.primary ul.slimmenu li a:hover {
	color: var(--color-secondary);
}

nav.primary ul.slimmenu li ul {
	width: 220px;
	padding-left: 0;
}

nav.primary ul.slimmenu > li {
	display: table-cell;
	background: transparent;
	margin: 0;
}

nav.primary ul.slimmenu li ul li {
	width: 100%;
	background: var(--color-secondary);
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

nav.primary ul.slimmenu li ul li a {
	width: 100%;
	text-align: left;
	color: #fff;
	padding: 15px 20px;
	font-size: 18px;
	text-transform: none;
}

nav.primary ul.slimmenu li ul li a:hover {
	color: var(--color-primary);
}

ul.slimmenu li .sub-toggle {
	width: 30px;
	margin-top: 2px;
	font-size: 24px;
	background: transparent;
}

ul.slimmenu li .sub-toggle::before {
	margin: 0;
}

.scrolled #masthead {
	position: fixed;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.scrolled #masthead:after {
	background: transparent;
}

.scrolled #masthead .business-name {
	width: 80px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.scrolled nav.primary {}

.scrolled nav.primary ul.slimmenu li a {
	color: var(--color-primary);
}

.scrolled nav.primary ul.slimmenu li a:hover {
	color: var(--color-secondary);
}

#banner {
	width: 100%;
	min-height: 100vh;
	position: relative;
	background: url(../img/banner/banner.jpg) no-repeat center/cover #000;
}

#banner:after {
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	background: rgba(0, 0, 0, 0.4);
}

#banner > .inner {
	min-height: inherit;
	position: relative;
	margin: 0 auto;
	z-index: 1;
}

#banner > .inner .banner-content {
	min-height: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 60px 0 80px;
}

#banner > .inner .banner-content h1 {
	font-size: 60px;
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
	text-transform: none;
	margin: 0 0 50px;
}

#banner > .inner .banner-content p {
	margin: 0;
}

#banner > .inner .banner-content p a.btn {
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	padding: 15px 30px;
	border: 1px solid #fff;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 0;
}

#banner > .inner .banner-content p a.btn:hover {
	color: #000;
	background: rgba(255, 255, 255, 1);
}

#banner-sub {
	position: relative;
	background: url(../img/banner/banner.jpg) no-repeat center top/cover;
}

#banner-sub:after {
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	background: rgba(0, 0, 0, 0.4);
}

#banner-sub > .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 100px 40px 0;
	margin: 0 auto;
	max-width: none;
	height: 450px;
	position: relative;
	z-index: 1;
}

#banner-sub > .inner h1 {
	font-size: 2.75em;
	line-height: 1;
	text-align: left;
	text-transform: none;
	font-weight: 500;
	margin: 0;
	color: #fff;
}

#content_wrapper > .inner {
	display: table; table-layout: fixed; border-collapse: collapse;
	margin: 0 auto;
	width: 100%; max-width: none;
}

main {
	display: table-cell; vertical-align: top; position: relative;
	padding: 0;
	width: 100%;
}

main img {
	max-width: 100%; height: auto !important;
}

@media only screen and (max-width: 1023px)  /*  966  */ {
	#content_wrapper > .inner {
		display: block;
	}

	main {
		display: block;
		float: none;
		width: 100%; min-height: auto;
	}
}

#content > *:last-child {
	margin-bottom: 0;
}

aside.sidebar {
	display: table-cell; vertical-align: top;
	width: 25%; min-width: 280px;
	padding: 20px;
	background: #fafafa;
}

aside.sidebar h1,
aside.main-sidebar h1 {
	font-size: 1.2em;
}

@media only screen and (max-width: 1023px)  /*  966  */ {
	#content_wrapper > .inner > aside {
		display: block;
		float: none;
		width: 100%; min-height: auto;
	}
}

@media only screen and (max-width: 639px) /* Sidebar Hide */ {
	aside.sidebar { display: none; }
}

footer#colophon {
	position: relative;
	color: #333;
	background: #efefef;
}

footer#colophon > .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: start;
	margin: 0 auto;
	padding: 120px 0;
}

footer#colophon > .inner .foot-col h3 {
	text-transform: uppercase;
	font-size: 1.1em; font-weight: 700;
	margin: 0 0 0.5em;
	color: var(--color-primary);
}

footer#colophon > .inner .foot-col a {
	color: #333;
}

footer#colophon > .inner .foot-col a:hover {
	color: var(--color-secondary);
}

footer#colophon > .inner .foot-col ul li + li {
	margin-top: 10px;
}

footer#colophon > .inner .foot-logo a {
	display: block;
	width: 100%;
	max-width: 150px;
}

footer#colophon > .inner .foot-logo a img {
	display: block;
	width: 100%;
}

ul.foot-contact-list li {
	display: flex;
	line-height: 1.5;
}

ul.foot-contact-list li:before {
	content: '';
	display: inline-block;
	width: 20px;
	text-align: center;
	font-size: 0.9em;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	margin: 2px 10px 0 0;
	color: var(--color-secondary);
}

ul.foot-contact-list li.ico-phone:before {content: '\f095';}
ul.foot-contact-list li.ico-email:before {content: '\f0e0';}
ul.foot-contact-list li.ico-address:before {content: '\f3c5';}

ul.foot-contact-list li span {
	display: inline-block;
	width: 50px;
}

ul.foot-contact-list li a {
	transition: all 0.3s;
}

ul.foot-contact-list li a:hover {
	text-decoration: none;
	color: var(--color-secondary);
}

footer#colophon > .inner .foot-social ul.social-list {
	display: flex;
	justify-content: center;
}

footer#colophon > .inner .foot-social ul.social-list li + li {
	margin: 0 0 0 15px;
}

footer#colophon > .inner .foot-social ul.social-list li a {
	display: block;
	width: 60px; height: 60px;
	line-height: 64px;
	color: #fff;
	background: var(--color-primary);
	border-radius: 60px;
	font-size: 26px;
	text-align: center;
	transition: all .3s;
}

footer#colophon > .inner .foot-social ul.social-list li a:hover {
	text-decoration: none;
	color: var(--color-secondary);
}

footer#colophon .foot-lower {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 20px 40px;
	background: #222;
}

footer#colophon .foot-lower p {
	font-size: 12px;
	line-height: 1;
	margin: 0;
	color: #aaa;
}

footer#colophon .foot-lower p a {
	color: #aaa;
}

#foot_scroll_top {
	position: absolute;
	bottom: 6px; right: 40px;
}

#foot_scroll_top a {
	display: block;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	color: #aaa;
	transition: all .3s;
}

#foot_scroll_top a:hover {
	color: var(--color-secondary);
}

/* ----- Template Parts ----- */

.breadcrumbs > ul {
	margin: 0 0 1em 0; padding: 0;
	list-style: none outside;
}

.breadcrumbs > ul li {
	display: inline-block;
	margin: 0; padding: 0;
	font-size: 0.8em; color: #ccc;
}

.breadcrumbs > ul .before {
	margin-right: 0.4em;
}

.breadcrumbs > ul .current {
	color: #666;
}


/* Google Maps */

.google-maps {
	position: relative; overflow: hidden;
	height: 0;
	padding-bottom: 75%; /* aspect ratio w=1 h=0.75 */
}

.google-maps iframe {
	position: absolute; top: 0; left: 0;
	width: 100% !important; height: 100% !important;
}

/* ----- Common Content Area Styles  ----- */

.img_caption {
	font-style: italic;
	text-align: center;
}

.boxout {
	display: inline-block;
}

.boxout.right {
	float: right;
	margin: 0 0 0.5em 1em
}

.boxout.left {
	float: left;
	margin: 0 1em 0.5em
}

@media only screen and (max-width: 479px) /* 414 */ {
	.boxout,
	.boxout.left,
	.boxout.right {
		display: block; float: none;
		margin: 0 auto 0.5em auto;
	}
}

/* Flex Columns */

.col-flex {
	display: flex;
	flex-direction: row;
	flex: 0 0 auto;
}

.col-flex > .half {
	flex-basis: 50%;
}

.col-flex > .third {
	flex-basis: 33.3%;
}

.col-flex > .two-thirds {
	flex-basis: 66.6%;
}

.flex-sized { flex: 0 0 auto; } /* Stick to content size */
.flex-fill { flex: 1 1 auto; } /* Fill remaining */

@media only screen and (max-width: 639px) /* Phone */ {
	.col-flex {
		flex-direction: column;
	}

	.col-flex > .half,
	.col-flex > .third,
	.col-flex > .two-thirds {
		flex-basis: 100%;
	}
}

/* Floated Columns */

.colrow {
	margin: 0 -10px 1em -10px;
}

.colrow::before,
.colrow::after {
	content: " ";
	display: table;
}

.colrow::after {
	clear: both;
}

.col {
	float: left;
	padding: 0 10px;
	list-style: none outside;
}

.col.left {
	float: left;
}

.col.right {
	float: right;
}

.col.third {
	width: 33.33%;
}

.col.twothird {
	width: 66.66%;
}

.col.half {
	width: 50%;
}

.col.first {
	padding-left: 0;
}

.col.last {
	padding-right: 0;
}

@media only screen and (max-width: 479px) /* 414 */ {
	.colrow {
		margin-left: 0; margin-right: 0;
	}

	.colrow .colrow {
		margin-left: 10px; margin-right: 10px;
	}

	.col.left,
	.col.right,
	.col.third,
	.col.twothird,
	.col.half {
		float: none; clear: both;
		width: 100%;
		padding: 0;
	}
}

/* 'Table' Columns */

.coltable {
	display: table;
	margin: 0 0 1em 0;
}

.coltable > .col {
	display: table-cell; float: none;
	margin: 0;
	text-align: left; vertical-align: top;
}

@media only screen and (max-width: 479px) /* 414 */ {
	.coltable {
		display: block;
	}

	.coltable > .col {
		display: block;
	}
}

/* Table Overflow */

@media only screen and (max-width: 979px)  /*  966  */ {
	.table-overflow {
		width: 100%;
		overflow-y: auto;
		_overflow: auto;
		margin: 0 0 1em;
	}

	.table-overflow::-webkit-scrollbar {
		-webkit-appearance: none;
		width: 14px;
		height: 14px;
	}

	.table-overflow::-webkit-scrollbar-thumb {
		border-radius: 8px;
		border: 3px solid var(--color-white);
		background-color: rgba(0, 0, 0, .3);
	}
}

@media only screen and (max-width: 479px) /* 414 */ {
	.table-overflow {
		overflow-x: scroll;
		overflow-y: visible;
	}

	.table-overflow table {
		width: 500px;
	}

	.table-swipe {
		display: block !important;
	}
}

/** FORM TEMPLATE **/

/* Replace form.formtools with #nameof_form */

form.formtools {
	/* Set width */
}

form.formtools input[type="text"],
form.formtools input[type="password"],
form.formtools input[type="email"],
form.formtools input[type="number"],
form.formtools input[type="tel"],
form.formtools select,
form.formtools textarea,
form.formtools .captcha_block {
	/* Set width */
}

/* Infield Label Width */
form.formtools label.infield {
	/* Set width & top,left offsets */
}

/* Infield * position */
form.formtools label.infield sup {
	top: 10px;
}

form.formtools .captcha_block input {
	/* Captcha usually about 60px wide */
}

form.formtools input[type="submit"],
form.formtools input[type="submit"]:focus {
	/* Button style */
}

form.formtools input[type="submit"]:hover,
form.formtools input[type="submit"]:active {
	/* Button hover style */
}

form.formtools .required-label {
	/* Adjust margin, font size */
}

/** FORM TEMPLATE **/

/* ----- Specific Pages ----- */

a.btn {
	display: inline-block;
	font-size: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 1;
	color: var(--color-secondary);
	border: 1px solid var(--color-secondary);
	background: rgba(255, 255, 255, 0.15);
	margin-top: 40px;
	padding: 15px 30px;
	border-radius: 0;
	transition: all .3s;
}

a.btn:hover {
	text-decoration: none;
	color: #fff;
	background: var(--color-secondary);
}

a.btn-white {
	color: #fff;
	border-color: #fff;
	background: transparent;
}

a.btn-white:hover {
	color: var(--color-primary);
	background: #fff;
}

a.btn-blue {
	color: var(--color-primary);
	border-color: var(--color-primary);
	background: transparent;
}

a.btn-blue:hover {
	color: #fff;
	background: var(--color-primary);
}

.section > .inner {
	position: relative;
	margin: 0 auto;
	padding: 150px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.section > .inner h2 {
	font-size: 2.75em;
	line-height: 1;
	font-weight: 500;
	margin: 0 auto 50px;
}

.section-fullwidth > .inner {
	max-width: none;
}

.content-full {width: 100%;}
.content-left {width: 50%;}
.content-right {width: 50%;}

#about {
	color: #fff;
	background: #222;
}

#about > .inner {
	height: 100vh;
}

#about > .inner > .content-full {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	max-width: 960px;
	margin: 0 auto;
	height: 100%;
}

#about > .inner > .content-full p {
	font-size: 1.2em;
}

#intumescent-coatings > .inner {
	align-items: stretch;
	padding: 0;
}

#intumescent-coatings > .inner .content-left {
	background: #efefef;
}

#intumescent-coatings > .inner .content-left .content-txt h2,
#intumescent-coatings > .inner .content-right .content-txt h2 {
	font-size: 2.5em;
	color: var(--color-primary);
}

#intumescent-coatings > .inner .content-txt > div {
	text-align: center;
	max-width: 620px;
	margin: 0 auto;
	padding: 200px 40px;
}

#intumescent-coatings > .inner .content-txt > div p {
	font-size: 1.1em;
}

#intumescent-coatings > .inner .content-txt > div p:last-of-type {
	margin-bottom: 0;
}

#intumescent-coatings > .inner .content-left .content-img,
#intumescent-coatings > .inner .content-right .content-img {
	height: 600px;
}

#intumescent-coatings > .inner .content-left .content-img img,
#intumescent-coatings > .inner .content-right .content-img img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

#benefits {
	background: #efefef;
}

#benefits > .inner {
	max-width: none;
	padding-left: 40px;
	padding-bottom: 0;
}

#benefits-tabs ul.tab-nav {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #ddd;
}

#benefits-tabs ul.tab-nav li {
	margin: 0 0 -1px;
	padding: 0;
	list-style: none;
}

#benefits-tabs ul.tab-nav li + li {
	margin-left: 50px;
}

#benefits-tabs ul.tab-nav li a {
	display: block;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	padding: 5px 0 35px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 1px solid transparent;
	transition: all .3s;
}

#benefits-tabs ul.tab-nav li.r-tabs-state-active a {
	color: var(--color-secondary);
	border-bottom-color: var(--color-secondary);
}

#benefits-tabs ul.tab-nav li a:hover {
	text-decoration: none;
}

.r-tabs .r-tabs-panel {
	padding: 0;
	opacity: 0;
	transition: all 2s;
}

.r-tabs .r-tabs-panel .container {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

.r-tabs .r-tabs-panel .container .content-left {
	width: 40%;
	padding: 120px 80px 150px 0;
}

.r-tabs .r-tabs-panel .container .content-left p:last-of-type {
	margin-bottom: 0;
}

.r-tabs .r-tabs-panel .container .content-right {
	width: 60%;
}

.r-tabs .r-tabs-panel .container .content-right img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

.r-tabs .r-tabs-panel h3 {
	font-size: 2.75em;
	line-height: 1.1;
	margin: 0 0 40px;
	color: var(--color-primary);
}

.r-tabs .r-tabs-panel h3 span {
	display: block;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	font-weight: 500;
	margin: 0 0 10px;
	color: #333;
}

.r-tabs .r-tabs-panel h4 {
	font-size: 1.2em;
	margin: 0 0 .25em;
}

.r-tabs .r-tabs-panel p {
	font-size: 1em;
}

.r-tabs .r-tabs-panel.r-tabs-state-active {
	opacity: 1;
}

#projects > .inner {
	text-align: center;
	padding-bottom: 0;
}

#projects > .inner h2 {
	color: var(--color-primary);
	max-width: 960px;
}

#projects > .inner p {
	font-size: 1.2em;
	max-width: 960px;
	margin: 0 auto 1em;
}

#projects > .inner p:last-of-type {
	margin-bottom: 0;
}

.gallery-list {
	display: flex;
	flex-wrap: wrap;
	margin: 80px 0 0;
}

.gallery-list > .gallery-tile {
	position: relative;
	width: 33.333%;
	height: 400px;
	background: #000;
}

.gallery-list > .gallery-tile .project-gallery {
	width: 100%;
	height: 100%;
}

.gallery-list > .gallery-tile .project-gallery a {
	display: block;
	width: 100%; height: 100%;
	overflow: hidden;
	transition: all .5 ease-in-out;
}

.gallery-list > .gallery-tile .project-gallery a:not(:first-of-type) {
	display: none;
}

.gallery-list > .gallery-tile .project-gallery a img {
	display: block;
	width: 100%;
	height: 100% !important;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	transition: all .5s ease-in-out;
}

.gallery-list > .gallery-tile .project-gallery .project-title {
	position: absolute;
	top: 40px; bottom: 40px;
	left: 40px; right: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
	opacity: 0;
	transition: all .3s;
}

.gallery-list > .gallery-tile .project-gallery .project-title h3 {
	color: #fff;
	font-size: 1.6em; line-height: 1.2;
	margin: 0;
}

.gallery-list > .gallery-tile .project-gallery .project-title h3:after {
	content: '';
	display: block;
	width: 40px; height: 2px;
	margin: 20px auto;
	background: var(--color-secondary);
}

.gallery-list > .gallery-tile .project-gallery .project-title p {
	color: #fff;
	font-size: 1em !important;
	margin: 0;
}

.gallery-list > .gallery-tile:hover .project-gallery a img {
	opacity: 0.6;
	background-size: auto 110%;
}

.gallery-list > .gallery-tile:hover .project-title {
	opacity: 1;
}

#contact {
	color: #fff;
	background: var(--color-primary);
}

#contact > .inner .content-left {
	width: 30%;
}

ul.contact-details-list {
	margin: 0;
	padding: 0;
}

ul.contact-details-list > li {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.contact-details-list > li + li {
	margin-top: 40px;
}

ul.contact-details-list > li h3 {
	font-size: .75em;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 .5em;
	line-height: 1;
	display: flex;
	align-items: left;
	color: var(--color-secondary);
}

ul.contact-details-list p {
	font-size: 1.2em;
	margin: 0;
}

ul.contact-details-list p a {
	color: #fff;
	transition: all 0.3s;
}

ul.contact-details-list p a:hover {
	text-decoration: none;
	color: var(--color-secondary);
}

#contact > .inner .content-right {
	width: 67.5%;
}

#contact_form {
	margin: 0;
	text-align: left;
}

#contact_form_row_1,
#contact_form_row_2,
#contact_form_row_3 {
	float: left;
	width: 30%;
	margin: 0 5% 30px 0;
	clear: none;
}

#contact_form_row_3 {
	margin-right: 0;
}

#contact_form .input-wrap-email,
#contact_form .input-wrap-number,
#contact_form .input-wrap-password,
#contact_form .input-wrap-select,
#contact_form .input-wrap-text,
#contact_form .input-wrap-textarea,
#contact_form .input-wrap-tel {
	width: 100%;
}

#contact_form .input-wrap-button,
#contact_form .input-wrap-reset,
#contact_form .input-wrap-submit {
	width: 100%;
	margin-bottom: 0;
}

#contact_form input[type="text"],
#contact_form input[type="password"],
#contact_form input[type="email"],
#contact_form input[type="number"],
#contact_form input[type="tel"],
#contact_form select,
#contact_form textarea {
	width: 100%;
	height: 50px;
	color: var(--color-white);
	background: var(--color-primary);
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
	box-shadow: none;
	padding: 5px 2px;
	font-family: var(--font-primary);
	font-size: 18px;
	font-weight: 400;
	-webkit-appearance: none;
}

#contact_form input[type="text"]:focus,
#contact_form input[type="tel"]:focus,
#contact_form input[type="password"]:focus,
#contact_form input[type="email"]:focus,
#contact_form select:focus {
	border-bottom: 1px solid var(--color-secondary) !important;
	box-shadow: none;
}

form.formtools .input-wrap-textarea .chars_remain {
	display: none;
}

#contact_form textarea {
	padding: 16px 15px;
	width: 100%;
	height: 220px;
	margin: 10px 0 30px;
	border: 1px solid #fff;
	-webkit-appearance: none;
}

#contact_form textarea:focus {
	border: 1px solid var(--color-secondary) !important;
	box-shadow: none;
}

#contact_form #contact_form-field-message_label {
	top: 19px;
	left: 15px; right: 15px;
}

#contact_form label.infield {
	top: 5px;
	left: 1px;
	right: 1px;
	color: var(--color-white);
	font-family: var(--font-primary);
	font-weight: 300;
	font-size: 18px;
	padding: 0;
	text-transform: none;
}

#contact_form_row_5 {
	width: 245px;
	float: left;
}

#contact_form-captcha_wrap {
	width: 280px;
	float: right;
}

#contact_form .captcha_block input {
	text-align: left;
	width: 100px;
	right: 40px;
	top: 10px;
	height: 40px;
}

#contact_form .captcha_block .captcha-refresh {
	top: 20px;
	right: 10px;
}

#contact_form_row_6 {
	width: 210px;
	float: right;
	clear: none;
	padding: 0;
}

form.formtools .infield.label_captcha {
	display: none;
}

#contact_form-field-submit-label_label {
	display: none;
}

#contact_form input[type="submit"] {
	width: 100%;
	box-shadow: none;
	float: right;
	margin: 0;
	padding: 20px 0;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1;
	text-align: center;
	color: #fff;
	border: 1px solid var(--color-white);
	background: transparent;
	border-radius: 0;
	transition: all 0.3s;
	-webkit-appearance: none;
}

#contact_form input[type="submit"]:hover {
	text-decoration: none;
	color: var(--color-secondary);
	background: var(--color-white);
}

form.formtools sup.required {
	color: var(--color-white);
}

#contact_form_row_7 {
	display: none;
}

#contact_form .inline_error {
	margin: 0;
}

/* Common Sizes */
@media only screen and (max-width: 1465px) /* 1366 (Laptops) */ {

	.page-width {
		max-width: 1280px;
	}

}

@media only screen and (max-width: 1365px) /* 1280 */ {

	.page-width {
		max-width: 1200px;
	}

}

@media only screen and (max-width: 1279px) /* 1024 */ {

	.page-width {
		max-width: 980px;
	}

	#masthead .business-name {
		margin-left: 20px;
	}

	nav.primary {
		margin: 0 20px 0 0;
	}

	nav.primary ul.slimmenu li a {
		padding: 15px 25px;
	}

	#banner > .inner .banner-content h1 {
		font-size: 50px;
	}

	#banner-sub > .inner {
		padding: 80px 20px 0;
	}

	.section > .inner {
		padding: 120px 0;
	}

	.section > .inner h2 {
		font-size: 2.5em;
	}

	#intumescent-coatings > .inner .content-txt > div {
		padding: 150px 20px;
	}

	#intumescent-coatings > .inner .content-left .content-img,
	#intumescent-coatings > .inner .content-right .content-img {
		height: 500px;
	}

	#benefits > .inner {
		padding-left: 20px;
	}

	#benefits-tabs ul.tab-nav li a {
		padding: 5px 0 30px;
	}

	#benefits-tabs ul.tab-nav li + li {
		margin-left: 35px;
	}

	.r-tabs .r-tabs-panel .container .content-left {
		padding: 100px 40px 100px 0;
	}

	.r-tabs .r-tabs-panel h3 {
  		font-size: 2.5em;
	}

	.gallery-list > .gallery-tile {
		height: 280px;
	}

	.gallery-list > .gallery-tile .project-gallery .project-title {
		top: 20px; bottom: 20px;
		left: 20px; right: 20px;
	}

	.gallery-list > .gallery-tile .project-gallery .project-title h3 {
		font-size: 1.4em;
	}

	#contact > .inner {
		flex-wrap: wrap;
	}

	#contact > .inner .content-left,
	#contact > .inner .content-right {
		width: 100%;
	}

	#contact > .inner .content-left {
		margin: 0 0 50px;
	}

	#contact > .inner .content-left h2 {
		margin-bottom: 60px;
	}

	ul.contact-details-list {
		display: flex;
		justify-content: space-between;
	}

	ul.contact-details-list > li + li {
		margin: 0;
	}

	footer#colophon > .inner {
		padding: 100px 0;
	}

	footer#colophon > .inner .foot-logo a {
		max-width: 120px;
	}

	footer#colophon > .inner .foot-social ul.social-list li a {
		width: 50px;
		height: 50px;
		font-size: 22px;
		line-height: 54px;
	}

	footer#colophon .foot-lower {
		padding: 20px;
	}

	#foot_scroll_top {
		right: 20px;
	}

}

@media only screen and (max-width: 1023px) /* 980  */ {

	.page-width {
		max-width: none;
	}

	#masthead > .inner {
		display: block;
	}

	#masthead .business-name {
		position: relative;
		z-index: 1;
		float: left;
		width: 120px;
		margin-left: 20px;
	}

	nav.primary {
		width: 100%;
		float: right;
		margin: -110px 0 0;
		padding: 0;
	}

	.menu-collapser {
		background: transparent;
		text-shadow: none;
		padding: 0;
		height: 85px;
	}

	.collapse-button {
		right: 20px;
		background: transparent;
		box-shadow: none;
		text-shadow: none;
		padding: 3.5px 7px;
		width: 58px;
		border: none;
		border-radius: 0;
		transition: all 0.3s;
	}

	.collapse-button:hover {
		background: transparent;
	}

	.collapse-button .icon-bar {
		box-shadow: none;
		background: #fff;
		border-radius: 3px;
		width: 100%;
		height: 3px;
		margin: 12px 0;
		transition: all 0.3s;
	}

	.home .collapse-button .icon-bar {
		background: #fff;
	}

	nav.primary ul.slimmenu {
		display: block;
		width: auto;
		text-align: center;
		margin: 20px 0 0;
		background: rgba(255, 255, 255, 0.95);
	}

	nav.primary ul.slimmenu li {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	nav.primary ul.slimmenu > li + li,
	.home nav.primary ul.slimmenu > li + li {
		border-left: none;
	}

	nav.primary ul.slimmenu > li a,
	nav.primary ul.slimmenu > li.has_children > a,
	nav.primary ul.slimmenu > li:last-of-type > a,
	nav.primary ul.slimmenu > li.nav-contact > a,
	.home nav.primary ul.slimmenu li a {
		font-size: 20px;
		text-align: center;
		margin: 0;
		padding: 18px 15px;
		border: none;
		border-radius: 0;
		color: var(--color-primary);
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

	nav.primary ul.slimmenu > li a:hover,
	nav.primary ul.slimmenu > li.has_children a:hover,
	nav.primary ul.slimmenu > li:last-of-type a:hover,
	nav.primary ul.slimmenu > li.nav-contact a:hover,
	.home nav.primary ul.slimmenu li a:hover {
		color: #fff;
		background: var(--color-primary);
	}

	nav.primary ul.slimmenu li {
		display: block;
		float: none;
		border-right: none;
	}

	nav.primary ul.slimmenu li ul,
	nav.primary ul.slimmenu li ul li a {
		width: auto;
		text-align: center;
	}

	nav.primary ul.slimmenu li ul,
	.scrolled nav.primary ul.slimmenu li ul {
		padding: 0 !important;
	}

	nav.primary ul.slimmenu li ul li {
		background: transparent;
		border: none;
	}

	nav.primary ul.slimmenu li ul {
		margin: 0;
	}

	nav.primary ul.slimmenu li ul li a {
		padding: 15px;
		color: #fff;
		background: var(--color-primary);
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	}

	nav.primary ul.slimmenu li a i {
		display: none;
	}

	ul.slimmenu li .sub-toggle {
		width: 90px;
		color: var(--color-primary);
		margin: 0;
		font-size: 24px;
		line-height: 56px;
	}

	ul.slimmenu.collapsed li .sub-toggle {
		height: 56px;
		margin: 0;
	}

	ul.slimmenu li .sub-toggle:before {
		display: none;
	}

    #masthead .top-phone {
        display: block !important; position: absolute; top: 48px; right: 90px;
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
    }

    #masthead .top-phone a {
        color: white;
    }

    .scrolled #masthead .top-phone {
        top: 32px;
    }

    .scrolled #masthead .top-phone a {
        color: var(--color-primary);
    }

	.scrolled #masthead {
		background: rgba(255, 255, 255, 0.95);
	}

	.scrolled nav.primary {
		margin: -80px 0 0;
	}

	.scrolled .collapse-button .icon-bar {
		background: var(--color-primary);
	}

	.scrolled nav.primary ul.slimmenu {
		margin-top: 0;
		background: transparent;
	}

	#banner > .inner .banner-content {
		padding: 60px 20px 0;
	}

	#banner > .inner .banner-content h1 {
		font-size: 46px;
		margin: 0 0 40px;
	}

	#banner-sub > .inner {
		height: 350px;
	}

	#banner-sub > .inner h1 {
		font-size: 2em;
	}

	.section > .inner {
		flex-wrap: wrap;
    	padding: 120px 20px;
	}

	#intumescent-coatings > .inner .content-left,
	#intumescent-coatings > .inner .content-right {
		width: 100%;
	}

	#intumescent-coatings > .inner .content-txt > div {
		width: 100%;
		padding: 120px 20px;
		max-width: none;
	}

	#intumescent-coatings > .inner .content-left .content-img,
	#intumescent-coatings > .inner .content-right .content-img {
		height: auto;
	}

	#intumescent-coatings > .inner .content-right {
		display: flex;
		flex-wrap: wrap;
	}

	#intumescent-coatings > .inner .content-right .content-txt {
		order: 1;
	}

	#intumescent-coatings > .inner .content-right .content-img {
		order: 2;
	}

	#benefits > .inner {
		padding: 120px 20px;
	}

	.r-tabs-accordion-title {
		display: none !important;
	}

	.r-tabs-accordion-title a {
		display: block;
	}

	.r-tabs .r-tabs-panel {
		display: block !important;
		opacity: 1;
		margin-top: 120px;
	}

	#enhanced-fire-protection {
		margin-top: 0;
	}

	.r-tabs .r-tabs-panel h3 {
		font-size: 2.2em;
		margin: 0 0 20px;
	}

	.r-tabs .r-tabs-panel .container {
		flex-wrap: wrap;
	}

	.r-tabs .r-tabs-panel .container .content-left {
		width: 100%;
		padding: 0 0 40px;
	}

	.r-tabs .r-tabs-panel .container .content-right {
		width: 100%;
	}

	#projects > .inner {
		padding-bottom: 20px;
	}

	.gallery-list > .gallery-tile {
		width: 100%;
		height: auto;
	}

	.gallery-list > .gallery-tile + .gallery-tile {
		margin-top: 20px;
	}

	.gallery-list > .gallery-tile .project-gallery a img,
	.gallery-list > .gallery-tile:hover .project-gallery a img {
		background-size: cover;
	}

	#contact_form_row_1,
	#contact_form_row_2,
	#contact_form_row_3 {
		float: none;
		width: 100%;
		margin: 0 0 30px;
	}

	footer#colophon > .inner {
		padding: 80px 20px;
	}

	footer#colophon > .inner .foot-col.foot-links {
		display: none;
	}

	footer#colophon > .inner .foot-social ul.social-list li + li {
		margin: 0 0 0 10px;
	}

}

@media only screen and (max-width: 767px)  /* 810-768 (Tablets) */ {

	#masthead .business-name {
		width: 90px;
		margin-left: 15px;
	}

	nav.primary {
		margin: -95px 0 0;
	}

	.collapse-button {
		right: 15px;
	}

	nav.primary ul.slimmenu {
		margin: 10px 0 0;
	}

	#banner > .inner .banner-content {
		padding: 60px 15px 0;
	}

	#banner > .inner .banner-content h1 {
		font-size: 42px;
		text-align: center;
	}

	#banner-sub > .inner {
		height: 250px;
	}

	#banner-sub > .inner {
		padding: 60px 15px 0;
	}

	#banner-sub > .inner h1 {
		font-size: 1.75em;
	}

	.section > .inner {
		padding: 80px 15px;
	}

	.section > .inner h2 {
		font-size: 1.75em;
		margin: 0 auto 40px;
	}

	#about > .inner {
		height: auto;
	}

	#about > .inner > .content-full p {
		font-size: 1em;
	}

	#intumescent-coatings > .inner .content-txt > div {
		padding: 80px 15px;
	}

	#intumescent-coatings > .inner .content-left .content-txt h2,
	#intumescent-coatings > .inner .content-right .content-txt h2 {
		font-size: 1.75em;
	}

	#benefits > .inner {
		padding: 80px 15px;
	}

	.r-tabs .r-tabs-panel {
		margin-top: 80px;
	}

	.r-tabs .r-tabs-panel h3 {
		font-size: 1.5em;
	}

	#projects > .inner {
		padding-bottom: 15px;
	}

	#projects > .inner p {
		font-size: 1.1em;
	}

	.gallery-list > .gallery-tile + .gallery-tile {
		margin-top: 15px;
	}

	.gallery-list > .gallery-tile .project-gallery .project-title {
		top: 15px; bottom: 15px;
		left: 15px; right: 15px;
	}

	#contact > .inner .content-left h2 {
		text-align: center;
		margin-bottom: 40px;
	}

	ul.contact-details-list {
		flex-wrap: wrap;
	}

	ul.contact-details-list > li {
		width: 100%;
		text-align: center;
	}

	ul.contact-details-list > li + li {
		margin-top: 30px;
	}

	ul.contact-details-list > li h3 {
		display: block;
		margin: 0 auto;
	}

	ul.contact-details-list p {
		font-size: 1.1em;
	}

	#contact_form_row_5 {
		float: none;
		clear: both;
		width: 100%;
		margin-bottom: 20px;
	}

	#contact_form_row_6 {
		width: 100%;
		clear: both;
		float: none;
	}

	footer#colophon > .inner {
		flex-wrap: wrap;
		padding: 60px 15px;
	}

	footer#colophon > .inner .foot-col {
		width: 100%;
	}

	footer#colophon > .inner .foot-logo a {
		width: 100px;
		margin: 0 auto 30px;
	}

	footer#colophon > .inner .foot-contact {
		text-align: center;
		margin: 0 auto 30px;
	}

	ul.foot-contact-list li {
		display: block;
	}

	ul.foot-contact-list li::before {
		font-size: 0.8em;
		margin: 0 3px 0 0;
	}

	footer#colophon .foot-lower {
		padding: 20px 15px;
	}

	#foot_scroll_top {
		right: 10px;
	}

}

@media only screen and (max-width: 413px)  /* 810-768 (Tablets) */ {

	nav.primary ul.slimmenu > li a, nav.primary ul.slimmenu > li.has_children > a, nav.primary ul.slimmenu > li:last-of-type > a, nav.primary ul.slimmenu > li.nav-contact > a, .home nav.primary ul.slimmenu li a {
		font-size: 18px;
	}

    #masthead .top-phone {
        top: 40px;
    }

    .scrolled #masthead .top-phone {
        top: 32px;
    }

	#banner > .inner .banner-content h1 {
		font-size: 2em;
	}

	#banner-sub > .inner {
		height: 220px;
	}

	#banner-sub > .inner h1 {
		font-size: 1.5em;
	}

	.gallery-list > .gallery-tile .project-gallery .project-title h3 {
		font-size: 1.2em;
	}

	.gallery-list > .gallery-tile .project-gallery .project-title h3::after {
		margin: 10px auto;
	}

}

@media only screen and (max-width: 359px)  /* 320 (Old Phones)  */ {

	nav.primary ul.slimmenu > li a, nav.primary ul.slimmenu > li.has_children > a, nav.primary ul.slimmenu > li:last-of-type > a, nav.primary ul.slimmenu > li.nav-contact > a, .home nav.primary ul.slimmenu li a {
		padding: 15px;
	}

	#banner > .inner .banner-content h1 {
		font-size: 1.8em;
	}

	.section > .inner h2,
	#intumescent-coatings > .inner .content-left .content-txt h2,
	#intumescent-coatings > .inner .content-right .content-txt h2 {
		font-size: 1.6em;
	}

}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
	   only screen and (   min--moz-device-pixel-ratio: 2),
	   only screen and (	 -o-min-device-pixel-ratio: 2/1),
	   only screen and (		min-device-pixel-ratio: 2),
	   only screen and (				min-resolution: 192dpi),
	   only screen and (				min-resolution: 2dppx) {

	/* Retina 2x background images... */

	/* Embed Images Format:
			{{ theme:image file="file.jpg" x2="file@2x.jpg" }}
	   Expands to:
			<img src="file.jpg" srcset="file@2x.jpg 2x" />
	*/
}
