@charset "utf-8";
/* CSS Document */

:root {
	--body-bk-color: white;
	--header-bk: linear-gradient(0deg, #034964, #02679A);
	--footer-bk: #0382ae;
	--social-footer-bk: #009ace;
}

@media(prefers-color-scheme: dark) {
	:root {
		--body-bk-color: #0d374d;
		--primary-color-bright: #86d6f0;
		--footer-bk: #0d374d;
		--social-footer-bk: #002835;
	}
}

/* TEST TEST */

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-repeat: no-repeat;
	-webkit-font-smoothing: antialiased;
}

html,
body {
	font-family: 'Open Sans', Open Sans, Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #222222;
	-webkit-font-smoothing: antialiased;
	line-height: 1.4;
	overflow-x: hidden;
	width: 100%;
	min-height: 100%;
	background-color: var(--body-bk-color);
	scroll-behavior: smooth;
}

@media(max-width:650px) {

	html,
	body {
		font-size: 13px;
	}
}

/* == Typography == */

h1,
h2,
h3,
h4,
h5,
h6,
p {}

/* Headings */

h1 {
	font-weight: 600;
	font-size: 3em;
	margin-bottom: .4em;
}

h2 {
	font-size: 1.6em;
	margin-bottom: 1em;
	font-weight: 600;
}

h3 {
	font-size: 1.25em;
	line-height: 1.4;
	margin-bottom: 1.3rem;
	letter-spacing: .2px;
	font-weight: 600;
}

p {
	font-size: 1em;
	line-height: 1.8em;
	margin-bottom: 2em;
}

p.LeadParagraph {
	font-size: 1.25rem;
	font-weight: 500;
}

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

p+h2 {
	margin-top: 2em;
}

b,
strong {
	font-weight: 600;
}

/* == form inputs == */

/* == Buttons == */

.btn {
	background-color: #009ace;
	color: white;
	border-radius: 1000px;
	border: none;
	padding: 14px 32px;
	margin-left: 3px;
	margin-right: 3px;
}

.btn:hover {
	background-color: #005c7c;
}

.btn-secondary,
.btn.secondary {
	border: solid 1px #005c7c;
	color: #005c7c;
	background: transparent;
}

.btn-secondary:hover {
	color: white;
}

@media(max-width:480px) {
	.btn {
		width: auto;
		min-width: 60%;
		margin-bottom: 12px;
	}

	.btn:last-child {
		margin-bottom: 0;
	}
}

/* == Icons == */

.icon {
	width: 1.3rem;
	cursor: pointer;
}

/* == Page Banners == */

.banner.hero {
	color: white;
}

.banner.hero p {
	font-size: 1.2em;
	margin: 0;
}

.banner.hero p+.btn {
	margin: 32px 0 0;
}

.banner.hero h2 {
	font-size: 2.5em;
	margin-bottom: .5em;
}

@media(max-width:768px) {

	.banner.hero h1,
	.banner.hero h2 {
		font-size: 6vh;
	}
}

.banner.image {
	background-color: #333333;
	color: white;
	box-shadow: inset 0px 10px 10px #00000075, inset 0px -18px 10px -10px #00000057;
}

.banner>.IE-background {
	display: none;
}

.banner.quote {
	padding: 0;
	display: block;
	background-color: #005c7c;
	color: white;
	display: flex;
	flex-flow: row nowrap;
}

.banner.quote .image {
	flex: 0 0 33%;
	background-size: cover;
	background-color: #005c7c;
	background-blend-mode: multiply;
}

.banner.quote .content {
	padding: 14vh;
}

.banner.quote .content h3 {
	font-weight: 300;
	font-size: 20px;
	margin-bottom: 32px;
}

@media(max-width: 799px) {
	.banner.quote .content h3 {
		font-size: 16px;
	}
}

.banner.quote .content p {
	font-weight: 600;
	margin-bottom: 40px;
}

.banner.quote .content p>.job-title {
	font-weight: 300;
}

.banner.quote .content>*:last-child {
	margin: 0;
}

.banner.quote .content .btn {
	padding: 0;
	border-radius: 0;
	background: transparent !important;
	border-bottom: solid 2px #009ace;
	padding-bottom: 12px;
}

.banner.quote .content .btn:hover {
	opacity: 0.5;
}

.banner.quote .content .btn:hover {
	background-color: #009ace;
}

@media(max-width:768px) {
	.banner.quote h3 {
		font-size: 4vh;
	}
}

@media(max-width:600px) {
	.banner.quote {
		flex-flow: row wrap;
		text-align: center;
	}

	.banner.quote .image {
		flex: 0 0 100%;
		height: 30vh;
	}

	.banner.quote .content {
		padding: 8vh 20px;
		;
	}
}

a.banner.quote:hover {
	color: rgba(255, 255, 255, 0.7);
}

.banner.container+.banner.container {
	padding-top: 0;
}

.banner+hr {
	margin-top: 0;
}

hr+.banner {
	padding-top: 0;
}

/* == Gradient Banner == */

.banner.gradient.light {
	background-image: linear-gradient(to right top, #d0f3ff, #e0f5ff, #eef7ff, #f9faff, #ffffff);
}

.banner.gradient.light+hr {
	border: none;
}

/* == Nav Banner (call to action) == */

.nav-banner {
	background-color: #009ace;
	color: white;
	margin: 0;
	padding: 16px 0;
	font-size: 1.2rem;
}

.nav-banner a:hover {
	opacity: 0.5;
}

/* == Grid Layout == */

.container {
	max-width: 1100px;
}

main .darkModeResponsive {
	background-color: var(--body-bk-color);
}

@media(prefers-color-scheme: dark) {
	main .darkModeResponsive {
		color: rgb(241, 241, 241);
	}
}

/*
@media(max-width:768px) {
	*[class*="lg-col"].image-col,
	*[class*="md-col"].image-col {
		margin-left:-20px;
		margin-right:-20px;
	}
}
*/

/* == Header == */

header {
	height: 110px;
	border-bottom: solid 1px rgba(0, 0, 0, 0.08);
	position: relative;
	color: white;
	z-index: 100000;
	background: var(--header-bk);
}

header .container {
	align-items: center;
	height: 100%;
	flex-direction: row;
	justify-content: space-between;
}

ul.site-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	flex-wrap: nowrap;
	gap: 22px;
}

ul.site-nav>li {
	display: inline-block;
	vertical-align: middle;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: .3px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

ul.site-nav>li.search-icon {
	display: none;
}

ul.site-nav>li>a {
	padding: 0;
	display: block;
	transition: 0.4s ease;
	border-bottom: solid 1px transparent;
	position: relative;
}

ul.site-nav>li>a:hover {
	opacity: 0.4;
}

ul.site-nav .logo img {
	width: 40vw;
	max-width: 220px;
}

ul.site-nav .logo>a {
	opacity: 1.0 !important;
}

ul.site-nav img.icon {
	min-width: 16px;
	max-height: 16px;
}

ul.site-nav .social-links {
	display: flex;
	flex-flow: row nowrap;
	gap: 12px;
	align-items: baseline;
	padding: 12px 12px 12px 18px;
	;
	background: var(--social-footer-bk);
	border-radius: 100px;
}

.header-search {
	position: relative;
	flex: 1;
	flex-basis: 25%;
	text-align: right;
}

.header-search input[type="text"] {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	margin: 0;
	color: white;
	transition: 0.4s ease;
	padding-right: 1.6rem;
	width: 100%;
	border-radius: 3px;
	padding-right: 3.3rem;
	font-weight: 400;
}

.header-search input[type="text"]:focus,
.header-search input[type="text"]:hover {
	outline: none;
	background: rgba(255, 255, 255, 0.2);
}

.header-search input[type="text"]::placeholder {
	color: rgba(255, 255, 255, 0.3);
	font-weight: 300;
}

.header-search .search-button {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.4s ease;
	margin: 0;
	padding: 0;
}

.header-search.mobile {
	flex-basis: 100%;
	text-align: left;
	width: 100%;
	background-color: #005c7c;
	color: white;
	padding: 1rem;
	display: none;
}

.header-search.mobile input[type="text"] {
	padding-right: 2rem;
	width: 100%;
	max-width: none;
}

.header-search.mobile .search-button {
	right: 2rem;
}

.header-search .search-button:hover {
	opacity: 0.5;
}

@media(max-width:1100px) {
	ul.site-nav>li.header-search {
		display: none;
	}

	ul.site-nav {
		justify-content: space-between;
	}

	ul.site-nav>li.search-icon {
		display: inline-block;
	}
}

@media(max-width:660px) {

	ul.site-nav>li.logo {
		flex: 1;
	}

	.header {
		height: 80px;
	}
}

/* == Website Navigation == */

.website-navigation {
	display: none;
	background-color: rgba(0, 92, 124, 0.98);
	color: white;
	padding: 4rem 0;
	padding: 8vh 0;
	z-index: 100;
	overflow: auto;
}

@media(max-width:650px) {
	.website-navigation {
		position: relative;
		top: 0;
	}
}

.website-navigation h3 {
	color: white;
	margin-bottom: 16px;
	font-weight: 600;
}

.website-navigation ul.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.website-navigation ul.menu>li {
	margin-bottom: 8px;
}

.website-navigation ul>li>a {}

.website-navigation ul>li>a:hover {
	opacity: 0.2;
}

.website-navigation .video {
	display: block;
	position: relative;
}

.website-navigation .video:hover::after {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 1px;
	content: 'The Digital Transformation channel';
	background: rgba(0, 0, 0, 0.8);
	z-index: 100;
	text-align: center;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.website-navigation p.video-caption {
	font-size: 13px;
	margin: 0;
}

/* -- Homepage: Hero Banner -- */

.home-slider .slide {
	background-size: cover;
	background-position: center 20%;
	background-color: #222222;
	color: white;
	height: 300px;
	min-height: 50vh;
	display: flex;
	text-align: center;
	align-items: center;
}

.home-slider .slide:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 0;
}

.home-slider .container {
	z-index: 1;
}

.home-slider h1 {
	margin: 0 auto;
	max-width: 800px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

@media(max-width:768px) {
	.home-slider {
		display: flex;
		align-items: stretch;
	}

	.home-slider .slide {
		height: auto;
		min-height: 0;
		padding: 10vh 0;
	}

	.home-slider h1 {
		font-size: 6vh;
	}
}

/* -- Homepage: Product blocks -- */

.home-product-blocks {
	position: relative;
	margin-left: -2rem;
	margin-top: -2rem;
	margin-bottom: 4rem;
}

.product-block {
	margin-left: 2rem;
	margin-top: 2rem;
	flex-grow: 1;
	flex-basis: 250px;
	padding: 32px 24px;
	background: #005c7c;
	color: white;
	transition: 0.4s ease;
	position: relative;
	justify-content: space-between;
	text-align: center;
	border-bottom: solid 8px #009ace;
}

.product-block:hover {
	cursor: pointer;
	transform: translateY(-4px);
	background-color: #005c7c;
	color: white;
}

.product-block h3 {
	margin: 0;
	font-weight: 400;
	font-size: 1.4rem;
	color: white !important;
}

.product-block h3::after {
	content: url(../media/icons/zipporah-divider.svg);
	display: block;
	margin: 8px auto 16px;
	width: 32px;
}

.product-block p:nth-last-child(1) {
	margin: 0;
}

.product-block p.product-name {
	margin: 0 0 16px;
	font-size: 1.1rem;
	letter-spacing: .4px;
}

@media(max-width:768px) {
	.product-block {
		padding: 20px;
		border-bottom: solid 6px #009ace;
	}

	.product-block h3 {
		margin: 0;
		font-weight: 400;
		font-size: 1.2rem;
		color: white !important;
	}

	.product-block h3::after {
		content: url(../media/icons/zipporah-divider.svg);
		display: block;
		margin: 8px auto 16px;
		width: 32px;
	}

	.product-block p:nth-last-child(1) {
		margin: 0;
	}

	.product-block p.product-name {
		margin: 0 0 16px;
		font-size: 1rem;
		letter-spacing: .4px;
	}
}

/* -- Homepage: Client Logo Showcase -- */

ul.client-logos {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-left: -6rem;
	margin-top: -4rem;
	justify-content: center;
	align-items: center;
}

ul.client-logos>li {
	flex: 1;
	padding-left: 6rem;
	padding-top: 4rem;
	flex-basis: 25%;
	max-width: 25%;
	flex-shrink: 0;
}

ul.client-logos>li>img {
	max-width: 100%;
	max-height: 80px;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.4;
}

@media(max-width:768px) {
	ul.client-logos {
		margin-left: -3rem;
		justify-content: flex-start;
	}

	ul.client-logos>li {
		flex-basis: 150px;
		max-width: none;
		padding-left: 3rem;
	}
}

ul.client-logos>li:hover>img {
	opacity: 0.8;
	transition: 0.4s ease;
}

/* == Homepage: Reports mockup graphic == */

img.reports-mockup {
	width: 90%;
}

@media(max-width:768px) {
	img.reports-mockup {
		margin-bottom: 3rem;
		width: 100%;
	}
}

/* -- Statiststics Display -- */

ul.statistics {
	list-style: none;
	margin: 0;
	margin-left: -5rem;
	margin-top: -2rem;
	padding: 0;
	justify-content: space-between;
}

ul.statistics>li {
	flex: 1;
	flex-basis: 300px;
	padding-left: 5rem;
	padding-top: 2rem;
}

ul.statistics>li.caption {
	/* Used on product page */
	text-align: center;
}

ul.statistics h3 {
	font-size: 5rem;
	font-size: 6.5vh;
	font-weight: 600;
	display: inline-block;
	border-bottom: solid 4px #009ace;
	padding-bottom: 4px;
	margin-bottom: 24px;
}

ul.statistics li.caption h3 {
	font-size: 2rem;
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
}

ul.statistics p {
	font-weight: 400 !important;
	font-size: 1.02rem;
	margin: 0;
}

.banner.light ul.statistics h3 {
	color: #005c7c;
	border-color: #009ace;
}

/* == About Page: Locations Banner == */

.banner.our-locations {
	padding-bottom: 40vh;
	background-position: center bottom;
}

@media(min-width: 960px) {
	.banner.our-locations .flex-grid+.flex-grid {
		margin-top: 5rem;
	}
}

/* == About Page: Our Values == */

ul.brand-values {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: -3rem;
	margin-left: -4rem;
}

ul.brand-values>li {
	flex: 1;
	flex-basis: 350px;
	margin-top: 3rem;
	margin-left: 4rem;
}

ul.brand-values>li>h3 {
	margin-bottom: 12px;
}

ul.brand-values>li>p {
	margin: 0;
	font-weight: 300;
}

@media(max-width:768px) {
	ul.brand-values {
		margin-top: 0;
	}
}

/* == About Page: IIP Banner == */

.iip-banner .iip-logo {
	max-width: 160px;
}

@media(max-width:768px) {
	.iip-banner .iip-logo {
		margin-bottom: 4rem;
	}
}

/* == Zip Divider Icon == */

.zip-divider,
.zip-divider-dark {
	z-index: 100;
	padding: 4rem 0;
	display: inline-block;
	width: 40px;
	content: url(../media/icons/zipporah-divider.svg);
}

@media(max-width:768px) {

	.zip-divider,
	.zip-divider-dark {
		padding: 2rem 0;
		width: 30px;
	}
}

.zip-divider-dark {
	content: url(../media/icons/zipporah-divider-dark.svg);
}

h2+.zip-divider,
h1+.zip-divider {
	padding-top: 0;
}

/* == Our Products: Product search == */

.product-search {
	background: rgba(0, 0, 0, 0.5);
	margin: 0;
	padding: 0;
	color: white;
	position: relative;
	height: 64px;
	margin-top: -64px;
	margin-bottom: 16px;
	background: rgba(0, 155, 206, 0.5);
	background: -moz-linear-gradient(left, rgba(0, 155, 206, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 155, 206, 0.5)), color-stop(100%, rgba(0, 0, 0, 0.5)));
	background: -webkit-linear-gradient(left, rgba(0, 155, 206, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
	background: -o-linear-gradient(left, rgba(0, 155, 206, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
	background: -ms-linear-gradient(left, rgba(0, 155, 206, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
	background: linear-gradient(to right, rgba(0, 155, 206, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009bce', endColorstr='#000000', GradientType=1);
}

@media(max-width:768px) {
	.product-search {
		margin-top: 0;
		background: #009ace;
		font-size: 1rem;
		line-height: 0;
		padding: 0;
		height: auto;
		margin: 0;
	}
}

.product-search i.fa {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.product-search input[type="text"] {
	border: none;
	padding: 20px 0;
	padding-left: 32px;
	line-height: 1;
	font-size: 16px;
	letter-spacing: .6px;
	height: 100%;
	border: none;
	font-size: 1.2rem;
	background: transparent;
	color: #ffffff;
	transition: 0.4s ease;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
}

.product-search input[type="text"]::placeholder {
	font-family: inherit;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 100 !important;
	font-family: open-sans, 'open-sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-weight: 300;
}

.product-search input[type="text"]:focus {
	outline: none;
	border-color: rgba(0, 0, 0, 0.3);
}

ul.ui-autocomplete {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	border: none !important;
}

ul.ui-autocomplete>li {
	display: inline-block;
	width: auto;
	padding: 0;
	margin: 0;
	margin-right: 24px !important;
	color: rgba(0, 0, 0, 0.75);
	font-size: 14px;
	padding-top: 12px;
}

ul.ui-autocomplete>li>div {
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
}

ul.ui-autocomplete>li:nth-child(n+5) {
	display: none;
}

/* == Our Products: Product Listing == */

.product-list {
	align-items: stretch;
}

.product-list>.individualProduct {
	-ms-flex-preferred-size: 33.333%;
	flex-basis: 33.333333%;
	max-width: 33.333%;
	flex-shrink: 0;
	flex-grow: 0;
	margin-bottom: 3rem;
}

.product-list .product {
	display: block;
	padding: 32px;
	width: 100%;
	height: 100%;
	transition: 0.4s ease;
	position: relative;
	background: #005c7c;
	color: white;
}

.product-list .product:hover {
	transform: translateY(-4px);
	background: #009ace;
}

.product-list .image {
	background-size: cover;
	background-position: center;
	padding-top: 60%;
	margin: -32px -32px 32px;
}

.product-list .product h3 {
	margin: 0 0 16px;
	font-weight: 400;
	font-size: 1.6rem;
	letter-spacing: .8px;
}

.product-list .product p.description {
	margin: 0;
	font-weight: 400;
}

.product-list .product p.category {
	position: absolute;
	top: 0;
	right: 0;
	background: #009ace;
	padding: 8px 16px;
	color: white;
	font-weight: 300;
}

.product-list .product p:nth-last-child(1) {
	margin: 0;
}

.product.all-in-one .image:after {
	display: inline-block;
	content: url(../media/all-in-one-banner.svg);
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	max-width: 140px;
}

@media(max-width:1200px) {
	.product-list>.individualProduct {
		max-width: none;
		flex-basis: 50%;
		max-width: 50%;
		flex-grow: 1;
		flex-shrink: 1;
	}
}

@media(max-width:650px) {
	.product-list>.individualProduct {
		max-width: none;
		flex-basis: 100%;
		max-width: 100%;
		flex-grow: 1;
		flex-shrink: 1;
	}

	.product-list .product {
		padding: 24px;
	}

	.product-list .image {
		margin: -24px -24px 24px;
	}
}

/* == Product page == */

.product-banner {
	background-color: #005c7c !important;
	color: white;
	position: relative;
	overflow: hidden;
	height: auto;
	background-blend-mode: multiply;
	background-attachment: fixed;
}

.product-banner .product-image {
	position: absolute;
	top: 0;
	z-index: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: inherit;
}

.product-banner .product-image img {
	-webkit-filter: grayscale(100%);
	/* Safari 6.0 - 9.0 */
	filter: grayscale(100%) blur(5px);
	object-fit: cover;
	max-width: 150%;
	min-width: 100%;
	mix-blend-mode: multiply;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

@media(max-width:768px) {
	.product-banner {
		text-align: center;
		padding-bottom: 0;
		background-attachment: initial;
	}

	.product-banner .container {
		padding-left: 0;
		padding-right: 0;
	}

	.product-banner .title {
		padding-bottom: 40px;
	}

	.product-banner .video {
		flex-basis: 100%;
		padding: 0;
	}

	.product-banner .product-image img {
		top: 0;
		transform: none;
		filter: grayscale(100%) blur(0px);
	}
}

.product-details {
	position: relative;
}

.banner.product-features {
	background-image: url(../media/product-features-bg.jpg);
	background-size: cover;
	background-position: center right;
	background-color: #005c7c;
	color: white;
	background-blend-mode: multiply;
	background-attachment: fixed;
}

.product-features ul {
	list-style: none;
	margin: 0;
	margin-top: -8vh;
	margin-left: -5rem;
	padding: 0;
}

.product-features ul>li {
	flex: 1;
	flex-basis: 300px;
	flex-shrink: 0;
	padding-top: 8vh;
	padding-left: 5rem;
}

@media(min-width:1100px) {
	.product-features ul>li {
		flex-basis: 33.333%;
		max-width: 33.333%;
		flex-grow: 0;
	}
}

.product-features i.fa {
	font-size: 1.4rem;
	margin-right: 16px;
	margin-top: 4px;
}

.product-features ul>li>p {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 400;
	flex: 1;
}

.product-banner>.container,
.banner.product-features>.container {
	z-index: 1;
	position: relative;
}

.banner>.IE-background {
	display: none;
}

_:-ms-lang(x),
.banner>.IE-background {
	display: block;
	background: #005c7c;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 0;
	opacity: 0.85;
}

/* --- Product page: Video --- */

.product-video {
	cursor: pointer;
	position: relative;
	width: 100%;
}

/* -- Case Studies -- */

.case-study-banner:nth-of-type(even) .case-study {
	flex-direction: row-reverse;
}

.case-study>.caption {
	min-width: 550px;
}

@media(max-width:960px) {
	.case-study>.video {
		flex-basis: 100%;
		padding: 0;
		margin: 0;
		margin-right: -5rem;
		margin-top: -10vh;
		margin-bottom: 10vh;
	}

	.case-study>.caption {
		min-width: 100%;
	}
}

@media(max-width:768px) {
	.case-study>.video {
		margin-right: -2rem;
	}
}

/* == Share Widget == */

ul.share-widget {
	list-style: none;
	margin: -12px 0 0 -12px;
	padding: 0;
	display: flex;
}

ul.share-widget>li {
	padding-top: 12px;
	padding-left: 12px;
}

ul.share-widget img:hover {
	transition: 0.2s ease;
	transform: scale(1.3);
}

/* == News Articles == */

.news-listing {
	display: flex;
	flex-wrap: wrap;
	margin-left: -8vh;
	margin-top: -8vh;
}

.news-listing>.news-item {
	display: block;
	flex: 1 1 400px;
	margin-left: 8vh;
	margin-top: 8vh;
	position: relative;
	transition: 0.2s ease;
	overflow: hidden;
}

.news-item>.image {
	display: block;
	width: 100%;
	padding-top: 40%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 20px;
	transition: 0.2s ease;
}

.news-item>.image:hover {
	opacity: 0.7;
}

.news-item h2 {
	font-size: 1.3rem;
	margin: 0;
}

.news-item>.content span.article-content {
	display: block;
	margin: 0;
}

.news-item>.content span.article-content * {
	font-size: 14px;
}

.news-item p.date {
	font-size: 14px;
	font-weight: 600;
	margin: 12px 0 12px;
	color: #005c7c;
}

@media(min-width:768px) {
	.news-listing>.news-item:nth-child(1) {
		margin-top: 0 !important;
		border-top: none !important;
	}

	.news-listing>.news-item:nth-child(3n+1) {
		flex: 1 1 100%;
		display: flex;
		border-bottom: dotted 1px rgba(0, 0, 0, 0.1);
		border-top: dotted 1px rgba(0, 0, 0, 0.1);
		padding: 8vh 0;
	}

	.news-listing>.news-item:nth-child(6n+1) {
		flex-direction: row-reverse;
	}

	.news-listing>.news-item:nth-last-child(1) {
		border-bottom: none !important;
	}

	.news-listing>.news-item:nth-child(3n+1)>.image {
		flex: 1 1 60%;
		margin: 0;
	}

	.news-listing>.news-item:nth-child(3n+1)>.content {
		flex: 1 1 40%;
		padding-left: 32px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.news-listing>.news-item:nth-child(6n+1)>.content {
		padding-right: 32px;
		padding-left: 0;
	}

	.news-listing>.news-item:nth-child(3n+1) h2 {
		font-size: 2rem;
	}
}

.article-banner {
	height: 50vh;
}

.article-sidebar {
	flex: 0 0 300px;
}

.article-sidebar h3 {
	font-weight: 600;
	margin: 0 0 8px;
}

.article-sidebar p {
	color: #005c7c;
}

.article-sidebar .widget+.widget {
	border-top: dotted 1px rgba(0, 0, 0, 0.2);
	margin-top: 24px;
	padding-top: 24px;
}

.article-image {
	margin: 4vh 0;
	text-align: center;
}

.article-image>img {
	margin: auto;
}

.article-image>p.caption,
.article-quote>p {
	font-size: 14px;
	font-style: italic;
	margin: 12px 0 0;
	color: #666666;
}

.article-quote {
	margin: 2rem 0;
	padding: 4rem 2rem;
	border-top: dotted 1px rgba(0, 0, 0, 0.2);
	border-bottom: dotted 1px rgba(0, 0, 0, 0.2);
}

.article-quote .quote-marks {
	display: block;
	font-family: 'EB Garamond', serif;
	font-size: 4rem;
	line-height: 1;
	color: #005c7c;
}

.article-quote>h3 {
	font-size: 1.6rem;
	margin-bottom: 32px;
}

.article-divider {
	display: block;
	width: 100%;
	margin: 32px 0;
	border-top: dotted 1px rgba(0, 0, 0, 0.1);
}

@media(max-width:768px) {
	.article-image {
		margin-left: -2rem;
		margin-right: -2rem;
	}

	.article-sidebar {
		margin-top: 24px;
	}
}

/* == Question and Answers == */

h2+.question-answers {}

ul.question-answers {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: column nowrap;
}

ul.question-answers>li:last-child {
	margin: 0;
}

ul.question-answers>li {
	display: block;
	background: white;
	padding: 40px;
	margin-bottom: 8vh;
	width: 100%;
	max-width: 800px;
	position: relative;
}

ul.question-answers>li:after {
	display: block;
	content: url(../media/arrow-border.svg);
	width: 40px;
	position: absolute;
	bottom: -26px;
}

ul.question-answers>li:nth-of-type(even) {
	align-self: flex-end;
	background-color: #005c7c;
	color: white;
}

ul.question-answers>li:nth-of-type(even):after {
	right: 40px;
	content: url(../media/arrow-border-blue.svg);
}

@media(max-width:650px) {
	ul.question-answers>li {
		padding: 32px;
		margin-bottom: 24px;
	}

	ul.question-answers>li:after {
		display: none;
	}
}

/* == Staff Page == */

.staff-member h2 {
	margin-bottom: .5em;
}

/* == Contact page == */

.contact-map {
	height: 50vh;
}

ul.contact-details {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 250px;
	position: relative;
	margin-top: -3rem;
	margin-top: -6vh;
}

ul.contact-details+ul.contact-details {
	border-top: solid 1px rgba(0, 0, 0, 0.1);
	margin-top: 3rem;
	margin-top: 6vh;
}

ul.contact-details>li {
	padding-right: 4rem;
	padding-top: 3rem;
	padding-top: 6vh;
}

ul.contact-details>li:nth-child(1) {
	position: absolute;
	left: 0;
	padding: inherit;
	padding-left: 0;
	top: 3rem;
	top: 6vh;
	margin-bottom: 3rem;
	margin-bottom: 6vh;
}

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

ul.contact-details>li>i.fa {
	margin-right: 12px;
}

ul.contact-details>li>p {
	margin: 0;
	font-size: 1.2rem;
}

ul.contact-details>li>p>a {
	color: #009ace;
}

@media(max-width:768px) {
	ul.contact-details {
		padding-left: 0;
	}

	ul.contact-details>li {
		flex-basis: 100%;
	}

	ul.contact-details>li:nth-child(1) {
		position: relative;
		padding: 0;
	}
}

/* == Contact Form == */

.contact-form {
	padding: 0;
	text-align: left;
}

.contact-form fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

.contact-form input[type="text"],
.contact-form textarea {
	margin: 8px 0 16px;
}

.contact-form textarea {
	height: 25vh;
	max-height: 175px;
}

@media(max-width:768px) {

	.contact-map,
	.contact-map .container {
		padding: 0;
	}
}

.umbraco-forms-container {
	margin: 0 0 0 -2rem;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.umbraco-forms-container>.umbraco-forms-field {
	padding: 0 0 0 2rem;
	flex: 1;
	flex-basis: 100%;
}

.umbraco-forms-container>.umbraco-forms-field:nth-last-child(n+3) {
	flex-basis: 300px;
}

.umbraco-forms-indicator {
	color: #009ace;
}

.ihavereadandagreetotheprivacypolicy {
	margin-bottom: 32px;
}

.ihavereadandagreetotheprivacypolicy>.umbraco-forms-field-wrapper {
	display: inline-block;
}

/* == Website Search results == */

.ezsearch-results {
	margin: -1rem 0 2rem;
	margin-left: -2rem;
}

.ezsearch-result {
	flex: 1;
	flex-basis: 300px;
	margin-left: 2rem;
	margin-top: 2rem;
	transition: 0.4s ease;
	border: solid 1px rgba(0, 0, 0, 0.2);
	padding: 4rem;
}

.ezsearch-result:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 0, 0, 0.4);
}

.ezsearch-result h3 {
	margin: 0;
	text-align: center;
}

ul.pagination {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-left: -12px;
	margin-right: -12px;
	flex-wrap: nowrap;
	justify-content: flex-end;
}

ul.pagination>li {
	text-align: center;
}

ul.pagination>li>a {
	font-weight: 600;
	color: #666666;
	padding-left: 12px;
	padding-right: 12px;
}

ul.pagination>li>a:hover {
	color: #222222;
}

ul.pagination>li>a.next,
ul.pagination>li>a.prev {}

ul.pagination>li>a.current {
	font-weight: 800;
	color: #222222;
}

ul.pagination>li.disabled {
	display: none;
}

ul.pagination>li:nth-child(1),
ul.pagination>li:nth-last-child(1) {}

ul.pagination>li:nth-last-child(1) {}

/* == Page Navigation == */

.page-nav {
	padding: 32px 0;
	border-bottom: dotted 1px rgba(0, 0, 0, 0.1);
	overflow: auto;
	-webkit-overflow-scrolling: auto;
}

.page-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-left: -40px;
	margin-right: -40px;
	margin-top: -24px;
	font-size: 1.15rem;
	display: flex;
	flex-flow: row nowrap;
	white-space: nowrap;
}

.page-nav ul>li {
	padding: 0 40px;
	margin-top: 24px;
}

.page-nav ul>li>a {
	display: block;
	padding-bottom: 2px;
}

.page-nav ul>li>a:hover {
	color: #005c7c;
}

@media(max-width:650px) {
	.page-nav ul {
		font-size: 1rem;
	}

	.page-nav ul {
		list-style: none;
		margin: 0;
		padding: 0;
		margin-left: -20px;
		margin-right: -20px;
		margin-top: -24px;
		font-size: 1.15rem;
		display: flex;
		flex-flow: row nowrap;
		white-space: nowrap;
	}

	.page-nav ul>li {
		padding: 0 20px;
		margin-top: 24px;
	}
}

/* == Social Media Bar == */

.social-media-bar {
	background-color: var(--social-footer-bk);
	color: white;
	padding: 16px 0;
}

.social-media-bar p {
	margin: 0;
}

.social-media-bar p a {
	margin-left: 12px;
}

.social-media-bar .zip-logo {
	max-width: 127px;
	width: 33%;
}

.social-media-bar ul.social-links {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-left: -16px;
	font-size: 1.2rem;
}

.social-media-bar ul.social-links>li {
	float: left;
	padding-left: 16px;
}

.social-media-bar ul.social-links>li>a:hover {
	opacity: 0.2;
	transform: scale(1.1);
}

@media(max-width: 909px){
	.social-media-bar p {
		text-align: center;
	}

	.social-media-bar ul.social-links {
		margin-left: 0;
		margin: auto;
		margin-top: 12px;
	}

	.social-media-bar ul.social-links li {
		padding: 0 10px;
	}
}

/* == Footer == */

.footer {
	background: var(--footer-bk) !important;
	color: white;
	padding: 8vh 0 12vh;
	background: #005c7c;
	position: relative;
	font-weight: 400;
}

.footer .zip-logo {
	width: 100%;
	max-width: 180px;
	margin-bottom: 24px;
}

.footer p {
	margin: 0 0 1.6em;
}

.footer p.copyright {
	font-size: 12px;
	margin: 0 0 .6em;
}

.footer ul.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
}

.footer ul.menu>li {
	margin-bottom: 8px;
}

.footer ul.menu>li>a:hover {
	opacity: 0.5;
}

.footer ul.menu.contact {}

.footer ul.menu.contact>li {
	position: relative;
	padding-left: 24px;
}

.footer ul.menu.contact>li i.fa {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.footer ul.certification {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-left: -6px;
	margin-top: -12px;
	display: flex;
	flex-flow: row wrap;
}

.footer ul.certification>li {
	padding-top: 12px;
	padding-left: 6px;
	flex: 0 1 110px;
}

.footer ul.certification>li>img {
	width: 100%;
}

@media(max-width:768px) {
	.footer {
		padding: 3rem 0;
	}
}

@media(max-width:550px) {
	.footer ul.certification>li {
		flex: 0 1 25%;
	}

	.footer .zip-logo {
		width: 50%;
	}
}

/* == Cookies Message == */

#cookieConsent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: auto;
	padding: 24px;
	text-align: center;
	background: #009ace;
	color: white;
	font-size: 1rem;
	z-index: 50000;
}

#cookieConsent .container * {
	margin: 0;
}

#cookieConsent .btn {
	background: transparent !important;
	border: solid 1px white !important;
}

/* == Misc == */

iframe {
	vertical-align: middle;
}

hr {
	border-top: dotted 1px rgba(0, 0, 0, 0.1);
}

/* == Custom == */

.custom-border-box {
	text-align: center;
	position: inherit;
	display: block;
	border: 10px solid;
	border-style: solid;
	border-image-slice: 1;
	border-width: 5px;
	border-image-source: -webkit-linear-gradient(100deg, #009ace 10%, transparent 20%, transparent 80%, #009ace 100%);
}

/* Aus */

.logo {
	width: 200px;
}

.openTabIcon {
	font-size: 13px;
	opacity: .8;
}


.sidePanel {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 3;
	top: 0;
	right: 0;
	color: rgb(241, 241, 241);
	background-color: #034964;
	overflow-x: hidden;
	transition: 0.5s;
	box-shadow: 0px 0 10px black;
	z-index: 100002;
}

.panelContent {
	padding: 22px;
	height: 100%;
	width: 100%;
	display: flex;
	flex-flow: column nowrap;
	gap: 22px;
	font-size: 18px;
	width: 206px;
}

.panelContent .closebtn:hover,
.panelContent .closebtn:focus,
.panelContent a:hover,
.panelContent a:focus{
	opacity: .7;
}

.panel-nav {
	padding: 0;
	margin: 0;
	list-style-type: none;
	line-height: 32px;
}

.panelContent .social-links{
	margin-top: auto;
}

.panelContent .social-links a i{
	width: 20px;
	text-align: center;
}

#overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2;
	animation: fadeIn .2s ease-in;
	z-index: 100001;
}

.site-nav #sidePanelButton {
	display: none;
	font-size: 20px;
}

@media (max-width:729px) {

	.site-nav li:not(:last-child),
	.site-nav li a:not(:last-child) {
		display: none;
	}

	.site-nav #sidePanelButton {
		display: block;
	}

	ul.site-nav .social-links {
		padding: 6px 8px;
	}
}

.banner.image{
	position: relative;
}

.imgOverlay{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 0;
}

@media(max-width: 769px){
	.imgOverlay{
		display: block;
	}
}