/* ------------------- */
/* STYLESHEET SECTIONS */
/* ------------------- */
/* 1__CSS Resets
   2__Layout helpers
   3__Header
   4__Main content
   5__Footer
   6__Typo3 Overrides
   7__Bootstrap overrides
   8__Media queries
*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
	--colour-primary: #F58020;
	--colour-primary-darker: #dc731d;
	--colour-primary-darker2: #c16519;
	--colour-dark-grey: #545252;
	--colour-secondary: #545252;
	--colour-secondary-darker: #474545;
	--colour-secondary-darker2: #3a3838;
	--colour-mid-grey: #8D8D8D;
	--asr-50: 50%;
	--asr-75: 75%;
	--asr-100: 100%;

}

/* ------------------------ */
/* 1__CSS Resets            */
/* ------------------------ */
/* Limited CSS reset */
/* See normalize-4.1.1.css */

html, body, button, input, select, textarea {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

html {
	height: 100%;
	font-size: 16px; /* This is the base size the rem unit refers to */
}

body {
	position: relative;
	font-size: 1rem;
	min-height: 100%;
	margin: 0;
	padding: 0;
	color: var(--colour-secondary-darker2);
}

/* ------------------ */
/* 2__Layout helpers  */
/* ------------------ */
.constrain-825w {
	position: relative;
	/*position: inherit;*/
	max-width: 825px;
	margin: 0 auto;
}

.constrain-1240w {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
}

.mobile-only-block,
.mobile-only-inline {
	display: none;
}

.desktop-only-block {
	display: block;
}

.desktop-only-inline {
	display: inline-block;
}

/* START object-fit:cover Fix for IE & IE Edge */
/* Note, requires JS to write the "compat-object-fit class to appropriate container element */
.compat-object-fit {
	background-size: cover;
	background-position: center center;
}

.compat-object-fit-x-left {
	background-size: cover;
	background-position-x: left;
}

.compat-object-fit-x-center {
	background-size: cover;
	background-position-x: center;
}

.compat-object-fit-x-right {
	background-size: cover;
	background-position-x: right;
}

.compat-object-fit-y-top {
	background-size: cover;
	background-position-y: top;
}

.compat-object-fit-y-center {
	background-size: cover;
	background-position-y: center;
}

.compat-object-fit-y-bottom {
	background-size: cover;
	background-position-y: bottom;
}

/* Hide the image if object fit is not supported in IE/Edge - opacity to 0 for the link area */
.compat-object-fit img {
	opacity: 0;
}

/* ------------------------ */
/* 3__Header styles         */
/* ------------------------ */
#top-header .header-row-1 {
	background-color: black;
	color: white;
}

#top-header .header-row-1 .header-row-1__contents {
	padding: 25px 15px;
	display: grid;
	grid-template-columns: 250px 1fr;
	grid-template-areas: "hdr-contact-options-box hdr-contact-options-box";
}

#top-header .header-row-1 .header-row-1__contents .support-button-box {
	grid-area: hdr-support-button;
	display: none;
}

#top-header .header-row-1 .header-row-1__contents .contact-options-box {
	grid-area: hdr-contact-options-box;
	/*font-size: 1.3em;*/
	font-size: 1.1em;
	font-weight: 600;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#top-header .header-row-1 .email-contact {
	margin-right: 35px;
}

#top-header .header-row-1 a,
#top-header .header-row-1 a:visited {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}

#top-header .header-row-1 a:active,
#top-header .header-row-1 a:focus,
#top-header .header-row-1 a:hover {
	color: rgba(255, 255, 255, .8);
	text-decoration: none;
}

#top-header .header-row-1 .icon-email,
#top-header .header-row-1 .icon-phone {
	margin-right: 10px;
}

#top-header .header-row-2 {
	padding: 15px 0 0;
	/*border-bottom: 1px solid #ddd;*/
	background-color: #474646;
	/*background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%), #474646;*/
}

.header-row-2-grid {
	display: grid;
	grid-template-columns: 240px 1fr;
	grid-template-areas: "header-logo-box header-support-box" "header-logo-box header-menu-box";
	grid-column-gap: 20px;
	padding: 0 15px;
}

.header-row-2-grid .header-logo-box {
	grid-area: header-logo-box;
	display: flex;
	align-items: center;
	padding-bottom: 15px;
}

.header-row-2-grid .header-support-box {
	grid-area: header-support-box;
	display: flex;
	/*align-items: center;*/
	justify-content: flex-end;
}

.header-row-2-grid .header-logo-box img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.header-row-2-grid .header-menu-box {
	grid-area: header-menu-box;
	padding-left: 20px;
	padding-top: 15px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header-row-2-grid .header-mobile-nav-btn-box {
	grid-area: header-mobile-nav-btn-box;
	display: none;
}

#top-header .header-home-btn {
	font-size: 1.7em;
	margin-right: 15px;
	color: white;
	transition: color .3s;
}

#top-header .header-home-btn:hover,
#top-header .header-home-btn:focus,
#top-header .header-home-btn:active {
	color: var(--colour-primary);
}

#top-header .header-home-btn:hover,
#top-header .header-home-btn:focus,
#top-header .header-home-btn:active {
	text-decoration: none;
}

/* ------------------------ */
/* 4__Main Content          */
/* ------------------------ */

h1 {
	font-weight: 800;
	font-size: 2.25em;
	margin-bottom: .75em;
	text-transform: uppercase;
}

h2 {
	font-weight: 700;
	font-size: 1.8em;
	margin-bottom: .3em;
	line-height: 1.1;
	text-transform: uppercase;
}

h3 {
	margin-bottom: .6em;
	font-weight: 700;
	font-size: 1.5em;
}

h4 {
	margin-bottom: .6em;
	font-weight: 700;
	font-size: 1.2em;
}

a,
a:visited {
	color: var(--colour-primary);
	text-decoration: underline;
}

a:hover,
a:focus,
a:active {
	color: var(--colour-primary);
	text-decoration: none;
}

.text-primary {
	color: var(--colour-primary) !important;
}

.masthead-home {
	background-color: #8D8D8D;
	color: white;
	/*font-size: 1.4375em;*/
}

.masthead-home__grid {
	display: flex;
	flex-direction: row;
}

.masthead-home__grid .box-1 {
	flex: 0 0 50%;
	width: 50%;
	padding: 30px 15px;
}

.masthead-home__grid .box-2 {
	padding: 30px 45px 30px 35px;
	flex: 0 0 50%;
	width: 50%;
	display: flex;
	flex-directioN: column;
	/* align-items: center; */
	justify-content: center;
	background-color: var(--colour-primary);
}

.masthead-home h1 {
	font-size: 2em;
	font-weight: 700;
}

.masthead-home h2 {
	font-size: 2em;
}

.masthead-home h3 {
	font-size: 1.725em;
}

.masthead-home p {
	/*font-size: 1.2em;*/
	font-size: 1.1em;
}

.img-strip-home {
	height: 460px;
}

.img-strip-home .cover {
	padding: 230px 0;
}

.img-strip-home img {
	display: none;
}

.img-strip-home .img-grid {
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1240px 1fr 1fr;
	grid-template-areas: "img-grid-box1 img-grid-box2 img-grid-box3 img-grid-box4 img-grid-box5";
}

.img-strip-home .img-grid .box-1 {
	grid-area: img-grid-box1;
	position: relative;
	/*background-color: red;*/
}

.img-strip-home .img-grid .box-2 {
	grid-area: img-grid-box2;
	position: relative;
	/*background-color: green;*/
}

.img-strip-home .img-grid .box-3 {
	grid-area: img-grid-box3;
	position: relative;
	/*background-color: blue;*/
}

.img-strip-home .img-grid .box-4 {
	grid-area: img-grid-box4;
	position: relative;
	/*background-color: hotpink;*/
}

.img-strip-home .img-grid .box-5 {
	grid-area: img-grid-box5;
	position: relative;
	/*background-color: orange;*/
}

.img-strip-home .img-grid .img-grid-subgrid {
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas: "img-sub-grid-box1 img-sub-grid-box2"
}

.img-strip-home .img-grid-subgrid .sub-g-box-1 {
	grid-area: img-sub-grid-box1;
	position: relative;
	/*background-color: purple;*/
}

.img-strip-home .img-grid-subgrid .sub-g-box-2 {
	grid-area: img-sub-grid-box2;
	position: relative;
	/*background-color: #037da3;*/
}

.special-content-home {
	background-image: url("../images/adi-goldstein-EUsVwEOsblE-unsplash 2.png");
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.special-content-home__content {
	padding: 60px 30px;
	background: rgba(255, 255, 255, .7);
	text-align: center;
}

.graphic-pathway {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-template-areas: "gp-item-1 gp-item-2 gp-item-3 gp-item-4 gp-item-5 gp-item-6 gp-item-7";
	/*grid-gap: 30px;*/
}

.graphic-pathway .item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/*justify-content: space-around;*/ /* NO GOOD!! */
}

.graphic-pathway .item-1 {
	grid-area: gp-item-1;
}

.graphic-pathway .item-2 {
	grid-area: gp-item-2;
	justify-content: space-around;
	padding: 0 15px;
}

.graphic-pathway .item-3 {
	grid-area: gp-item-3;
}

.graphic-pathway .item-4 {
	grid-area: gp-item-4;
	justify-content: space-around;
	padding: 0 15px;
}

.graphic-pathway .item-5 {
	grid-area: gp-item-5;
}

.graphic-pathway .item-6 {
	grid-area: gp-item-6;
	justify-content: space-around;
	padding: 0 15px;
}

.graphic-pathway .item-7 {
	grid-area: gp-item-7;
}

.graphic-pathway .item .text {
	padding-top: 15px;
	font-weight: bold;
	text-transform: uppercase;
}

.graphic-pathway .icon-wrap img {
	width: 80%;
	max-width: 100%;
	height: auto;
}

.partners-panel {
	background-color: #474646;
	padding: 60px 20px;
}

/*.partners-panel .partners-panel-grid {
	display: grid;
}*/
/*
.partners-panel .container-fluid {
	text-align: center;
}
*/
.partners-panel .statement {
	position: relative;
	display: inline-flex;
	flex-direction: row;
	color: white;
	font-weight: bold;
	font-size: 1.3em;
	text-transform: uppercase;
	text-align: center;
}

.partners-panel .statement .statement-logo {
	width: 80px;
	height: auto;
	margin-right: 10px;
}

.partners-panel .statement span.text {
	display: flex;
	align-items: center;
}

.partners-panel .logo-grid .item {
	display: inline-block;
	margin: 5px 20px;
}

.partners-panel .logo-grid .item img {
	height: 80px;
	width: auto;
	opacity: 1;
	transition: opacity .3s;
}

.partners-panel .logo-grid .item:hover img {
	opacity: .5;
}


/* START: Custom owl carousel styling for testimonials on home page */
.carousel-wrap {
	width: 1000px;
	margin: auto;
	position: relative;
}

.owl-carousel .owl-nav {
	overflow: hidden;
	height: 0px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: #474646;
}

.owl-carousel .owl-item {
	/*text-align: center;*/
}

.owl-carousel .owl-item > div {
	position: relative;
	margin-left: 34px;
}

.owl-carousel .owl-item > div:before {
	position: absolute;
	content: url(../images/icons/icon-quote-mark.svg);
	top: 0;
	left: -22px;
	transform: translateX(-50%);
}

.owl-carousel .nav-btn {
	height: 47px;
	position: absolute;
	width: 26px;
	cursor: pointer;
	top: 50% !important;
	transform: translateY(-50%);
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
	pointer-events: none;
	opacity: 0.2;
}

.owl-carousel .prev-slide {
	background: url(../images/icons/arrow-left.svg) no-repeat scroll 0 0 / 30px 30px;
	left: -28px;
}

.owl-carousel .next-slide {
	background: url(../images/icons/arrow-right.svg) no-repeat scroll 0 0 / 30px 30px;
	right: -33px;
}

.owl-carousel .prev-slide:hover {
	opacity: .7;
}

.owl-carousel .next-slide:hover {
	opacity: .7;
}

span.img-text {
	text-decoration: none;
	outline: none;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	cursor: pointer;
	width: 100%;
	font-size: 23px;
	display: block;
	text-transform: capitalize;
}

span.img-text:hover {
	color: #2caae1;
}

/* END: Custom owl carousel styling for testimonials on home page */


.feature-panel {
	background-color: var(--colour-primary);
	color: white;
}

.feature-panel .panel-heading {
	padding: 15px 20px;
	background-color: rgba(255, 255, 255, .25);
	color: white;
}

.feature-panel .panel-heading h3 {
	margin: 0;
	font-weight: 600;
	font-size: 1.75em;
	color: white;
}

.feature-panel .panel-body {
	padding: 15px 20px 20px;
}

.feature-panel .panel-body p {
	text-indent: 0;
}

.feature-panel .panel-body p:last-child {
	margin-bottom: 0;
}

.feature-panel .panel-body a,
.feature-panel .panel-body a:visited {
	color: var(--colour-dark-grey);
	font-size: 1.25em;
	/*font-family: 'Merriweather', serif;*/
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 1px;
	transition: color .2s;
}

.feature-panel .panel-body a > i {
	margin-left: 2px;
}

.feature-panel .panel-body a:hover,
.feature-panel .panel-body a:focus,
.feature-panel .panel-body a:active {
	text-decoration: none;
	color: #fff;
}

.service-items .item {
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 2px solid rgba(255, 255, 255, .3);
}

.service-items .item:last-child {
	margin-bottom: 0;
	padding-bottom: 1em;
	border-bottom: none;
}

/* START: Contact form */
form.contact-us-form {
	overflow: hidden;
	margin-left: -15px;
	margin-right: -15px;
}

form.contact-us-form .form-group {
	margin-bottom: 30px;
}

form.contact-us-form .form-control:focus {
	box-shadow: 0 0 0 0.1rem rgba(93, 175, 190, .25);
}

form.contact-us-form .form-control,
form.trademark-filing-form .form-control {
	border-radius: 0;
}

form.contact-us-form label,
form.trademark-filing-form label {
	margin-bottom: .2em;
	font-weight: bold;
}

form.contact-us-form .powermail_fieldset_1 > .row {
	display: inline-block;
	width: 49.5%;
	margin-left: 0;
	margin-right: 0;
}

@media screen and (max-width: 576px) {
	form.contact-us-form .powermail_fieldset_1 > .row {
		width: 100%;
		display: block;
	}
}

form.contact-us-form .powermail_fieldset_1 > .row > .powermail_fieldwrap {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

form.contact-us-form .optional {
	font-weight: normal;
	font-size: .8em;
}

/* END: Contact form  */


/* ------------------------ */
/* 5__Footer Content        */
/* ------------------------ */
/* A sticky footer. Requires:
		1. "position: relative;" to be set on the body tag.
		2. Javascript to dynamically determine footer height (on initial page launch and upon browser resizing
		   & set appropriate bottom padding on #site-body tag. Eg. function setStickyFooter() */
footer {
	position: absolute;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	/*font-size: 0.8em;*/
	bottom: 0;
	width: 100%;
	z-index: 10001;
	background: black;
	color: white;
	text-transform: uppercase;
}

.footer-icon-text-pair {
	display: flex;
	align-items: center;
}

.footer-icon-text-pair .footer-contact-icon {
	margin-right: 8px;
	font-size: 1.6em;
}


footer a {
	color: white;
	text-decoration: underline;
}


/* ------------------------ */
/* 6__Typo3 Overrides       */
/* ------------------------ */

/* ------------------------ */
/* 7__Bootstrap Overrides   */
/* ------------------------ */
.btn {
	padding: 1em 1.4em;
	font-size: 1em;
}

.btn.btn-small {
	padding: .8em 1.12em;
	/*font-size: .95em;*/
}

a.btn-primary,
.btn-primary {
	color: white;
	background-color: var(--colour-primary);
	border: 2px solid var(--colour-primary);
	border-radius: 100px;
	letter-spacing: 1px;
	font-weight: 600;
	text-decoration: none;
}

.btn-primary:hover {
	color: #fff;
	background-color: var(--colour-primary-darker);
	border: 2px solid var(--colour-primary-darker);
	text-decoration: none;
}

.btn-primary:focus,
.btn-primary.focus {
	color: #fff;
	background-color: var(--colour-primary-darker2);
	outline: none;
	border: 2px solid var(--colour-primary-darker2);
	text-decoration: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: var(--colour-primary-darker2);
	border: 2px solid var(--colour-primary-darker2);
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	box-shadow: none;
	border: 2px solid var(--colour-primary-darker2);
}

a.btn-primary-reverse,
.btn-primary-reverse {
	color: var(--colour-primary);
	background-color: white;
	border: 2px solid var(--colour-primary);
	border-radius: 100px;
	letter-spacing: 1px;
	font-weight: 600;
	text-decoration: none;
	transition: all .2s;
}

.btn-primary-reverse:hover {
	color: #fff;
	background-color: var(--colour-primary);
	text-decoration: none;
}

.btn-primary-reverse:focus,
.btn-primary-reverse.focus {
	color: #fff;
	background-color: var(--colour-primary-darker2);
	outline: none;
	text-decoration: none;
	border: 2px solid var(--colour-primary);
}

.btn-primary-reverse:not(:disabled):not(.disabled).active,
.btn-primary-reverse:not(:disabled):not(.disabled):active,
.show > .btn-primary-reverse.dropdown-toggle {
	color: #fff;
	background-color: var(--colour-primary-darker2);
	border: 2px solid var(--colour-primary-darker2);
}

.btn-primary-reverse.focus,
.btn-primary-reverse:focus,
.btn-primary-reverse:not(:disabled):not(.disabled).active:focus,
.btn-primary-reverse:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary-reverse.dropdown-toggle:focus {
	box-shadow: none;
	border: 2px solid var(--colour-primary-darker2);
}


a.btn-secondary,
.btn-secondary {
	color: white;
	background-color: var(--colour-secondary);
	border: 2px solid var(--colour-secondary);
	border-radius: 100px;
	letter-spacing: 1px;
	font-weight: 600;
	text-decoration: none;
}

.btn-secondary:hover {
	color: #fff;
	background-color: var(--colour-secondary-darker);
	border: 2px solid var(--colour-secondary-darker);
	text-decoration: none;
}

.btn-secondary:focus,
.btn-secondary.focus {
	color: #fff;
	background-color: var(--colour-secondary-darker2);
	outline: none;
	border: 2px solid var(--colour-secondary-darker2);
	text-decoration: none;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: var(--colour-secondary-darker2);
	border: 2px solid var(--colour-secondary-darker2);
}

.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
	box-shadow: none;
	border: 2px solid var(--colour-secondary-darker2);
}

a.btn-secondary-reverse,
.btn-secondary-reverse {
	color: var(--colour-secondary);
	background-color: none;
	border: 2px solid var(--colour-secondary);
	border-radius: 100px;
	letter-spacing: 1px;
	font-weight: 600;
	text-decoration: none;
	transition: all .2s;
}

.btn-secondary-reverse:hover {
	color: #fff;
	background-color: var(--colour-secondary);
	text-decoration: none;
}

.btn-secondary-reverse:focus,
.btn-secondary-reverse.focus {
	color: #fff;
	background-color: var(--colour-secondary-darker2);
	outline: none;
	text-decoration: none;
}

.btn-secondary-reverse:not(:disabled):not(.disabled).active,
.btn-secondary-reverse:not(:disabled):not(.disabled):active,
.show > .btn-secondary-reverse.dropdown-toggle {
	color: #fff;
	background-color: var(--colour-secondary-darker2);
	border: 2px solid var(--colour-secondary-darker2);
}

.btn-secondary-reverse.focus,
.btn-secondary-reverse:focus,
.btn-secondary-reverse:not(:disabled):not(.disabled).active:focus,
.btn-secondary-reverse:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary-reverse.dropdown-toggle:focus {
	box-shadow: none;
	border: 2px solid var(--colour-secondary-darker2);
}


/* ------------------------ */
/* 8__Media Queries         */
/* ------------------------ */
@media only screen and (max-width: 1900px) {
	.img-strip-home .img-grid {
		height: 100%;
		display: grid;
		grid-template-columns: 1fr 1240px 1fr;
		grid-template-areas: "img-grid-box2 img-grid-box3 img-grid-box4";
	}
}

@media only screen and (max-width: 1299px) {
	.header-row-2-grid {
		grid-template-columns: 200px 1fr;
	}

	#top-header .header-home-btn {
		font-size: 1.5em;
	}
}

@media only screen and (max-width: 1240px) {
	.img-strip-home .img-grid {
		grid-template-columns: 1fr;
		grid-template-areas: "img-grid-box3";
	}
}

@media only screen and (max-width: 1180px) {
	.img-strip-home {
		height: 360px;
	}

	.img-strip-home .cover {
		padding: 180px 0;
	}
}

@media only screen and (max-width: 1050px) {
	#top-header .header-row-1 .header-row-1__contents {
		padding: 15px 15px;
	}

	#top-header .header-row-2 {
		padding: 20px 0 0;
	}

	.header-row-2-grid {
		grid-template-columns: 240px 1fr 80px;
		grid-template-areas: "header-logo-box header-support-box header-mobile-nav-btn-box"
							"header-menu-box header-menu-box header-menu-box";
	}

	.header-row-2-grid .header-support-box {
		align-items: center;
	}

	.header-row-2-grid .header-logo-box {
		padding-left: 15px;
		padding-bottom: 0;
	}

	.header-row-2-grid .header-mobile-nav-btn-box {
		padding-right: 15px;
	}

	.header-row-2-grid .header-menu-box {
		margin-left: -15px;
		margin-right: -15px;
		padding: 20px 0 0;
	}

	#top-header .header-home-btn {
		display: none;
	}

	.header-row-2-grid .header-mobile-nav-btn-box {
		display: flex;
		text-align: right;
		align-items: center;
		justify-content: flex-end;
	}
}

@media only screen and (max-width: 950px) {
	.img-strip-home {
		height: 300px;
	}

	.img-strip-home .cover {
		padding: 150px 0;
	}
}

@media only screen and (max-width: 850px) {
	.masthead-home__grid {
		flex-direction: column;
	}

	.masthead-home__grid .box-1 {
		flex: 0 0 100%;
		width: 100%;
		padding: 30px 15px;
	}

	.masthead-home__grid .box-2 {
		flex: 0 0 100%;
		width: 100%;
		padding: 30px 65px;
	}
}

@media only screen and (max-width: 768px) {
	body {
		font-size: .85em;
	}

	.header-row-2-grid {
		grid-template-columns: 210px 1fr 80px;
	}

	.graphic-pathway {
		margin-top: 30px;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-areas: "gp-item-1 gp-item-2 gp-item-3" "gp-item-5 gp-item-6 gp-item-7";
		grid-row-gap: 40px;
	}

	.graphic-pathway .item-4 {
		display: none;
	}
}

@media only screen and (max-width: 680px) {
	#top-header .header-row-1 .header-row-1__contents {
		padding: 12px 15px;
	}

	#top-header .header-row-1 .header-row-1__contents .contact-options-box {
		font-size: 1.1em;
	}

	.masthead-home__grid .box-2 {
		padding: 30px 50px;
	}

	.owl-carousel .prev-slide {
		background: url(../images/icons/arrow-left.svg) no-repeat scroll 0 0 / 30px 30px;
		left: -45px;
	}

	.owl-carousel .next-slide {
		background: url(../images/icons/arrow-right.svg) no-repeat scroll 0 0 / 30px 30px;
		right: -45px;
	}

	.img-strip-home {
		height: 200px;
	}

	.img-strip-home .cover {
		padding: 100px 0;
	}
}


@media only screen and (max-width: 600px) {
	#top-header .header-row-1 .header-row-1__contents {
		grid-template-columns: 250px 1fr;
		grid-template-areas: "hdr-support-button hdr-contact-options-box";
	}

	#top-header .header-row-1 .header-row-1__contents .support-button-box {
		grid-area: hdr-support-button;
		display: block;
	}

	#top-header .header-row-1 .header-row-1__contents .support-button {
		display: inline;
	}

	.header-email-contact {
		display: none;
	}

	.header-row-2-grid {
		grid-template-columns: 240px 1fr;
		grid-template-areas:
        "header-logo-box header-mobile-nav-btn-box"
        "header-menu-box header-menu-box";
	}

	.header-row-2-grid .header-support-box {
		display: none;
	}
}

@media only screen and (max-width: 550px) {
	#top-header .header-row-1 .header-row-1__contents {
		padding: 10px 15px;
	}

	/*
	#top-header .header-row-1 .header-row-1__contents .support-button-box {
		 display: flex;
		 align-items: center;
	}
	*/
	#top-header .header-row-1 .header-row-1__contents .contact-options-box {
		font-size: 1.7em;
	}

	.header-email-contact,
	.header-phone-text {
		display: none;
	}
}

@media only screen and (max-width: 480px) {
	#top-header .header-row-1 .header-row-1__contents {
		grid-template-columns: 200px 1fr;
	}

	#top-header .header-row-2 {
		padding: 15px 0 0;
	}

	.header-row-2-grid {
		grid-template-columns: 160px 1fr;
	}

	.masthead-home h1 {
		font-size: 1.8em;
	}

	.masthead-home h2 {
		font-size: 1.4em;
	}

	.masthead-home p {
		font-size: 1.2em;
	}

	.img-strip-home {
		height: 150px;
	}

	.img-strip-home .cover {
		padding: 75px 0;
	}

	.desktop-only-inline,
	.desktop-only-block {
		display: none;
	}

	.mobile-only-block {
		display: block;
	}

	.mobile-only-inline {
		display: inline;
	}
}

@media only screen and (max-width: 400px) {
	#top-header .header-row-1 .header-row-1__contents {
		grid-template-columns: 170px 1fr;
	}

	#top-header .header-row-1 .header-row-1__contents .support-button-box {
		font-size: .8em;
	}

	.header-row-2-grid {
		grid-template-columns: 150px 1fr;
	}
}
