/*
Theme Name: Spectrum
Author: John King
Version: 2019
*/


/* CSS for Spectrum */
/* Design by Sarah Rothwell @ Borderless */
/* CSS by John King @ King Websites */

/* Normalise / Reset CSS */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0;
	padding: 0;	border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
article, aside, figcaption, figure, footer, header, nav, section {display: block;}
html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
a:hover, a:active { outline: 0; }
b, strong { font-weight: 700; }
i, em { font-style: italic; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
small { font-size: 85%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
li { list-style: none; list-style-image: none; }
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
svg:not(:root) { overflow: hidden; }
form { margin: 0; }
button, input, select, textarea { font-size: 100%; font-family: inherit; line-height: inherit; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; *overflow: visible; }
table button, table input { *overflow: auto; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }
.clearfix:after { content: ""; display: block; clear: both;}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }


/* --------------------------- */
/* Main Layout and Positioning */

html {
	min-width: 320px;
	overflow-y: scroll;
}

html.no-mediaqueries,
html.no-mediaqueries body {
	min-width: 1000px;
}

.tablet-show,
.desktop-show,
.mobile-nav-hide {
	display: none !important;
}

.main-content {
  overflow: hidden;
}

.bg-cover {
	background-position: 50% 50%;
	background-size: cover;
}

.constrictor {
	position: relative;
	max-width: 1024px;
	margin: 0px auto;
}

.responsive {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0px auto;
}

.square-mob::before {
  content: "";
  width: 1px;
  margin-left: -1px;
  float: left;
  height: 0;
  padding-top: 100%;
}

.square-mob::after {
  content: "";
  display: table;
  clear: both;
}

.top-line {
  position: relative;
}

.top-line::before {
  position: absolute;
	content: '';
  height: 2px;
  width: 27px;
	top: -7px;
	left: 0px;
  background: #202020;
}

.top-line-white::before {
  background: #ffffff;
}

/* Palette */

.bg-blue {
	background-color: #5dd8f7;
}

.bg-red {
	background-color: #f76d5d;
}

.bg-yellow {
	background-color: #fff023;
}

.bg-green {
	background-color: #5df7c6;
}

.bg-white {
	background-color: #ffffff;
}

.bg-black {
	background-color: #000000;
}

.bg-grey {
	background-color: #e6e7ec;
}


/* --------- */
/* Base Font */

body, button, input, select, textarea {
	font-family: 'din-2014', sans-serif;
	color: #202020;
	font-size: 17px;
	line-height: 1.25em;
	font-weight: 300; /* 400, 600, 700, 800 */
	-webkit-font-smoothing: antialiased;
}

a {
	color: #202020;
	text-decoration: none;
}

.color-white a {
  color: #ffffff;
}

a:hover {
	transition: all 0.2s;
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.5);
}

h1, h2, h3, h4, h5, h6 {
	margin: 20px 0px 20px 0px;
	line-height: 1.3125em;
	font-size: 17px;
	font-weight: 600;
}

h1 {
	line-height: 1.0625em;
	font-size: 28px;
}

h2 {
	line-height: 1.125em;
	font-size: 24px;
}

h3 {
	line-height: 1.25em;
	font-size: 20px;
}

h4 {
	margin: 22px 0px 5px 0px;
	font-weight: 400;
}

p {
	margin: 22px 0px 22px 0px;
	line-height: 1.5em;
}

label, input, select, textarea {
	font-size: 16px;
	color: #434343;
}

::-moz-placeholder {	color: #434343; opacity: 1; }
::-webkit-input-placeholder { color: #434343; }
:-ms-input-placeholder { color: #434343; }
::placeholder { color: #434343; }

.color-blue {
	color: #00afed;
}

.color-white {
	color: #ffffff;
}

.color-black {
	color: #202020;
}

.centred {
	text-align: center;
}

.uppercase {
	text-transform: uppercase;
}

.underline {
	text-decoration: underline;
}

.unselectable {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}


/* ------------- */
/* Form & Button */

form {
  position: relative;
  padding: 20px;
}

select,
input[type=text],
input[type=email],
input[type=password],
textarea {
	width: 100%;
	padding: 10px 10px;
	margin-bottom: 20px;
	border: none;
	-webkit-appearance: none;
	border-radius: 0;
}

select {
	padding: 12px 10px;
	margin-bottom: 30px;
	background: #ffffff;
}

input {
	color: #434343;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
  box-shadow: inset 0 0 3px #f76d5d;
  border-radius: 4px;
}

input.small {
  max-width: 85px;
}

input.medium {
  max-width: 487px;
}

label {
	display: inline-block;
	margin-bottom: 7px;
	line-height: 1.25em;
	font-size: 14px;
  font-weight: 400;
}

input[type=submit],
a.button,
.button-style {
	display: block;
  margin: 0px auto;
	padding: 10px 48px;
	line-height: 20px;
	border: none;
	font-size: 16px;
  font-weight: 800;
	cursor: pointer;
	color: #ffffff !important;
  background-color: #f76d5d;
	text-align: center;
  text-transform: uppercase;
	-webkit-transition: background-color 200ms linear;
	-ms-transition: background-color 200ms linear;
	transition: background-color 200ms linear;
}

a.button,
.button-style {
  display: inline-block;
}

.input[type=submit]:hover,
a.button:hover,
.button-style:hover {
  opacity: 0.9;
}

.wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

input.wpcf7-not-valid {
  color: rgba(247,109,93, .25);
  background-color: rgba(247,109,93, .25)
}

.wpcf7 .screen-reader-response {
  display: none;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  top: 8px;
  left: 10px;
}

.wpcf7 .ajax-loader.is-active {
  position: absolute;
  display: block;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0px auto 0px auto;
  height: 40px;
  width: 40px;
}

.wpcf7 .ajax-loader.is-active::after {
	content: " ";
	display: block;
	margin: 1px;
  width: 38px;
	height: 38px;
	border-radius: 50%;
	animation: loading-ring-spin 1.2s linear infinite;
  border: 4px solid #8a8a8a;
	border-color: #8a8a8a transparent #8a8a8a transparent;
}

@keyframes loading-ring-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.wpcf7-response-output {
  display: none !important;
}

.form-response-message {
  display: inline-block;
  padding: 5px 20px 20px 20px;
  font-size: 16px;
}

.form-response-message.alert-icon {
  padding-left: 32px;
  background: transparent url(/wp-content/themes/spectrum/graphics/warning-icon.png) no-repeat 0px 4px;
}

.form-message {
  margin: 0px;
  padding: 0px 20px 10px 20px;
  font-size: 14px;
}

.form-message p {
  margin-top: 0px;
  margin-bottom: 10px;
}


/* ------------ */
/* Header & Nav */

header {
	position: relative;
	height: 100px;
	z-index: 1000;
}

header .logo a {
	display: block;
	padding: 10px 0px 5px 0px;
}

header .logo a img {
	display: block;
	height: 40px;
	width: 227px;
  margin: 0px auto;
}

header .mob-nav-button {
	padding: 10px 10px 10px 10px;
	font-size: 23px;
  line-height: 16px;
	font-weight: 400;
	cursor: pointer;
}

header .mob-nav-button .mob-nav-icon {
  display: inline-block;
  height: 16px;
  width: 16px;
  margin-right: 7px;
  background: transparent url(/wp-content/themes/spectrum/graphics/menu-hamburger.png) no-repeat 0% 50%;
  background-size: 16px 16px;
  transition: transform 0.2s;
}

header .mob-nav-button .mob-nav-icon.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

header nav {
	display: none;
	position: absolute;
	top: 100px;
	width: 100%;
	height: calc(100vh - 100px);
  border-top: 2px solid #202020;
	opacity: 0;
}

header nav li a {
	position: relative;
	display: block;
	line-height: 30px;
	padding: 10px 14px;
	border-bottom: 2px solid #202020;
	font-size: 18px;
	white-space: nowrap;
	color: #202020;
}

header nav li a:hover,
header nav li a:active {
	background: #fafafa;
	color: #1f419b;
}

.skip-navigation a {
	position: absolute;
	display: block;
	top: 0px;
	left: -10000px;
	padding: 10px;
	z-index: 2000;
}

.csstransforms .skip-navigation a:focus {
	left: 50%;
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}


/* ------- */
/* Banners */

.banner {
	position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.banner-box {
  max-width: 290px;
  margin: 15px auto 15px auto;
  padding: 20px;
}

.banner-box h1 {
  margin: 0px 0px 15px 0px;
  font-size: 26px;
}

.banner-box h2 {
  margin: 15px 0px 0px 0px;
  line-height: 1.0625em;
  font-size: 25px;
  font-weight: 400;
}


/* --------------- */
/* Content Generic */

.element-padding {
  padding-right: 25px;
  padding-left: 25px;
}

.element-margin {
  margin: 25px auto;
}

.element-introduction p {
  line-height: 1.25em;
	font-size: 26px;
  font-weight: 400;
}

.wysiwyg-text a,
.document .document-size {
	border-bottom: 2px solid #999898;
}

.wysiwyg-text a.button {
	border-bottom: none;
}

.wysiwyg-text a:hover,
.document:hover .document-size {
	color: #999898;
}

.mob-touch-edge {
	margin-right: -25px;
  margin-left: -25px;
}

figure figcaption {
	padding-top: 6px;
  line-height: 1.25em;
	font-size: 14px;
}

.wysiwyg-text ul {
	margin: 22px 0px;
	padding-left: 17px;
}

.wysiwyg-text ul li,
.wysiwyg-text ol li {
	line-height: 1.5em;
	margin: 13px 0px;
	list-style-type: disc;
}

.wysiwyg-text ol li {
	list-style-type: decimal;
}


/* ----- */
/* Boxes */

.quick-link {
  display: block;
  margin: 10px 0px;
}

a.quick-link:hover {
  opacity: 0.9;
}

.quick-link .box-text {
  padding: 25px 20px 25px 20px;
  margin: 0px auto;
}

.quick-link img.teaser-thumb {
  float: right;
  max-width: 50%;
  height: auto;
  padding: 0px 0px 10px 10px;
}

.teaser-text .meta {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 800;
}

.box-text h2 {
  min-height: 93px;
  margin: 7px 0px 0px 0px;
  padding-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
}

.box-text h2 span.light {
  font-weight: 300;
}

.teaser-text h2 {
  overflow: hidden;
  min-height: 110px;
  margin-top: 5px;
  font-size: 24px;
}

.people-text h2 {
  min-height: 124px;
}

.people-text h2 span.container {
  overflow: hidden;
  display: block;
}

.box-text .box-desc {
  position: relative;
  line-height: 1.25em;
  font-size: 15px;
}

.box-text .box-desc::before {
  position: absolute;
  content: "";
	top: -16px;
  left: 0px;
  width: 11px;
  height: 11px;
  background: #ffffff;
  opacity: 0.5;
}


/* ------- */
/* SideBox */

.sidebox {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-size: 15px;
}

.sidebox-block {
  padding: 15px 15px;
}

.sidebox-title {
  font-weight: 600;
}

.sidebox-text p {
  line-height: 1.25em;
  margin: 5px 0px 0px;
}


/* ----------- */
/* Blockquotes */

.blockquote-text {
	padding: 40px;
  font-weight: 400;
}

.blockquote-text p {
  margin: 0px;
	font-size: 24px;
  font-weight: 400;
	line-height: 1.25em;
}

.blockquote-text p:first-child {
	position: relative;
}

.blockquote-text p:first-child::before {
	position: absolute;
  content: '\201c';
	top: 4px;
	left: -15px;
  font-size: 30px;
}

blockquote cite {
	display: block;
	margin: 10px 0px 0px 0px;
}

.blockquote-block img.blockquote-image {
  margin-top: 30px;
}

dl.project-details {
  margin-top: 20px;
  line-height: 1.25em;
}

dl.project-details dt {
  margin-top: 15px;
}

dl.project-details dd {
  font-weight: 600;
}


/* ------- */
/* Twitter */

.twitter {
  max-width: 700px;
  margin: 0px auto;
}

.tweet-footer {
  margin-top: 15px;
}


/* ----------------- */
/* Galleries & Video */

.gallery {
  position: relative;
  margin-top: 96px;
  margin-bottom: 20px;
}

.gallery img {
	max-width: 100%;
	height: auto;
	margin: 0px auto;
}

.wp-caption-text {
  padding-top: 6px;
  line-height: 1.25em;
	font-size: 14px;
}

.element-gallery .wp-caption-text {
  padding-right: 20px;
  padding-left: 20px;
}

.gallery .slick-arrow {
	position: absolute;
	top: -70px;
	width: 60px;
	height: 60px;
	z-index: 1;
	border: none;
	background: #000000 url(/wp-content/themes/spectrum/graphics/slider-arrows.png) no-repeat 0% 0%;
  background-size: cover;
	font-size: 0;
	line-height: 0;
}

.gallery .slick-arrow.slick-prev {
	left: 0px;
}

.gallery .slick-arrow.slick-next {
	right: 0px;
  background-position: 100% 0%;
}

.gallery .slick-arrow.slick-disabled {
  cursor: auto;
  background-image: none;
  background-color: transparent;
}

.video-container {
	position: relative;
	margin: 25px auto 25px;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* ---- */
/* Faqs */


.faq {
	border-top: 1px solid #999898;
}

.bg-white .faq {
	border-top: 1px solid #e3e6e8;
}

.faq h3 {
  position: relative;
  margin: 0px;
	padding: 15px 25px 15px 0px;
  cursor: pointer;
}

.faq h3::after {
  position: absolute;
  content: "";
  top: 23px;
  right: 1px;
  width: 10px;
  height: 5px;
  background: transparent url(/wp-content/themes/spectrum/graphics/accordian-arrows.png) no-repeat 50% 0%;
}

.faq h3.faq-on::after {
  background-position: 50% 100%;
}

.faq .faq-answer {
  display: none;
}

.faq .faq-answer p {
  margin: 0px;
  padding-bottom: 22px;
}


/* ---------------- */
/* Price List Chart */

.price-list-control {
  padding: 0px 15px;
}

.price-list-control span {
  display: inline-block;
  padding: 3px 5px;
  border: 1px solid #e3e6e8;
  cursor: pointer;
}

.price-list-control span.active {
  border-color: #888888;
  cursor: auto;
}

table {
  width: 100%;
  margin: 20px 0px;
  border-collapse: separate;
}

table th,
table td {
  padding: 5px 15px;
  text-align: left;
}

table th.price-col,
table td.price-col {
  text-align: right;
}

table tbody tr td {
  border-top: 2px solid #f2f2f2;
  border-bottom: 2px solid #f2f2f2;
}

table tbody tr:nth-child(odd) td {
  border-color: #ffffff;
}

table tbody tr:nth-child(even) td {
  background-color: #f2f2f2;
}

table tbody tr:first-child td {
  border-top-color: #f2f2f2;
}

table tbody tr:last-child td {
  border-bottom-color: #f2f2f2;
}

table tbody tr:hover td {
  border-color: black;
}

table tfoot tr td {
  padding: 10px 15px 0px 15px;
  text-align: center;
  font-size: 15px;
}

table tfoot tr td p {
  margin: 0px;
}


/* --------- */
/* Documents */

.documents-header {
	border-top: 1px solid #e3e6e8;
}

.documents-header h2 {
	margin: 20px 0px 0px 0px;
}

.document {
	display: block;
	padding: 10px 60px 10px 0px;
	border-bottom: 1px solid #e3e6e8;
	background: transparent url(/wp-content/themes/spectrum/graphics/download-icon.png) no-repeat 100% 20px;
}

.document h3 {
	margin: 5px 0px 5px 0px;
  font-weight: 400;
}

.document p {
	margin: 5px 0px 5px 0px;
}


/* ------------ */
/* Pagination */

.element-pagination {
	overflow: hidden;
}

.pagination-tab {
	position: relative;
	display: block;
  margin: 0px 0px 10px 0px;
  line-height: 1.125em;
	font-size: 28px;
  padding: 30px 20px 20px 20px;
}

a.pagination-tab:hover {
	opacity: 0.8;
}

.pagination-numbers .pagination-label {
  display: inline-block;
  padding-right: 10px;
  line-height: 40px;
  font-size: 13px;
  font-weight: 800;
  vertical-align: middle;
}

.pagination-numbers .screen-reader-text {
  display: none;
}

.pagination-numbers .pagination {
  display: inline-block;
  vertical-align: middle;
}

.pagination-numbers .page-numbers li {
  display: inline-block;
  width: 40px;
  line-height: 40px;
  font-weight: 400;
}

.pagination-numbers .page-numbers li a,
.pagination-numbers .page-numbers li span {
  display: block;
}

.pagination-numbers .page-numbers li a:hover {
  background: #e6e7ec;
}

.pagination-numbers .page-numbers li span.current {
  background: #202020;
  color: #ffffff;
}


/* ------ */
/* Footer */

footer {
  padding: 20px 0px;
}

.footer-content {
  padding: 0px 20px;
}

.footer-block {
  clear: both;
  padding: 10px 35px;
}

footer a {
  display: inline-block;
  margin: 0px -6px;
  padding: 6px 6px;
}

footer a:hover {
  background: #ffffff;
}

footer .footer-block h4 {
  position: relative;
  margin: 4px 0px 4px;
	line-height: 18px;
	font-weight: 900;
	font-size: 14px;
}

footer .footer-block h4::before {
  position: absolute;
  content: "";
	top: 3px;
  left: -20px;
  width: 11px;
  height: 11px;
  background: #8a8a8a;
}

footer .footer-block p {
	margin: 12px 0px 12px 0px;
	line-height: 18px;
	font-size: 14px;
}

footer .footer-block ul {
  margin: 8px 0px;
}

footer .footer-block li {
	line-height: 16px;
  padding: 4px 0px;
	font-size: 14px;
}

footer .footer-bar > div {
  padding: 5px 20px;
  font-size: 11px;
  text-align: center;
}

footer .footer-bar > div p {
  margin: 0px;
}

footer .footer-bar > div a {
  margin: 0px -2px;
}

.cookie-notice-container {
  padding: 30px 10px;
}

a.cookie-button {
  color: #ffffff;
  text-decoration: underline;
}


/* -------------- */
/* Responsive CSS */


/* Desktop Menu */

@media (min-width: 925px) {

  .mobile-nav-hide {
    display: block !important;
  }

  .mobile-nav-show {
    display: none !important;
  }

  .contact-bar {
    padding: 1px 20px;
    font-size: 11px;
  }

  header {
    height: auto;
  }

  header .logo a {
    padding: 16px 0px 5px 0px;
  }

	header nav {
		display: block !important;
		position: relative;
    top: auto;
		width: auto;
		height: auto;
    border: none;
    text-align: center;
		opacity: 1 !important;
	}

	header nav li {
		display: inline-block;
	}

	header nav li a {
		height: 40px;
		line-height: 40px;
		padding: 0px 8px;
    margin-bottom: 10px;
		border: none;
		font-size: 14px;
    color: #7f7f7f;
	}

	header nav li a:hover,
	header nav li a:active,
  header nav li.active a {
		color: #202020;
	}

	header nav li.active a::after,
	header nav li a:hover::after {
		position: absolute;
		content: '';
		left: 8px;
		right: 8px;
		bottom: 7px;
		height: 3px;
		background: #202020;
	}

}


/* Mobile Small */

@media (max-width: 500px) {

  .element-padding {
    padding-right: 15px;
    padding-left: 15px;
  }

  .mob-touch-edge {
    margin-right: -15px;
    margin-left: -15px;
  }

  .blockquote-text {
    padding: 25px;
  }

  .document {
    padding-right: 0px;
    background-image: none;
  }

  table th:nth-child(3),
  table td:nth-child(3) {
    width: 40%;
  }

	.footer-content {
    padding: 0px 0px;
  }

}


/* Tablet and Above */

@media (min-width: 740px) {

  .pagination-tab {
    float: left;
    width: 50%;
  }

  .pagination-tab-left {
    text-align: right;
    border-right: 5px solid #ffffff;
  }

  .pagination-tab-right {
    float: right;
    text-align: left;
    border-left: 5px solid #ffffff;
  }

  .top-line.top-line-right::before {
    left: auto;
    right: 0px;
  }

  .pagination-text {
    display: inline-block;
    max-width: 350px;
  }

}


/* Desktop and Above */

@media (min-width: 925px) {

	.desktop-show {
		display: block !important;
	}

	.desktop-hide {
		display: none !important;
	}

  .element-padding {
    padding-right: 30px;
    padding-left: 30px;
  }

  .element-margin,
  .gallery {
    margin: 40px auto;
  }

  .mob-touch-edge {
    margin-right: 0px;
    margin-left: 0px;
  }

  .element-sidebox-container {
    min-height: 205px;
  }

  article h1 {
		font-size: 40px;
	}

  .intro-text {
    padding-right: 100px;
  }

  .text-constrictor {
    padding-left: 215px;
    padding-right: 100px;
  }

  figure figcaption {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  .element-sidebox {
    position: absolute;
    padding: 0px;
    margin-top: 3px; /* removed so images line up */
    margin: 0px 0px 0px 30px;
  }

  .sidebox {
    max-width: 200px !important;
    text-align: left;
  }

  .blockquote-has-image {
    position: relative;
  }

  .blockquote-has-image blockquote {
    width: 55%;
  }

  .blockquote-has-image.blockquote-project blockquote {
    width: 50%;
  }

  .blockquote-has-image .blockquote-image {
		position: absolute;
		top: 0px;
		bottom: 0px;
    right: 0px;
		width: 45%;
	}

  .blockquote-has-image.blockquote-project .blockquote-image {
		width: 50%;
	}

  .element-gallery .wp-caption-text {
    padding-right: 0px;
    padding-left: 0px;
  }

  .gallery .slick-arrow {
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
  }

  .gallery .slick-arrow.slick-prev {
    left: -30px;
  }

  .gallery .slick-arrow.slick-next {
    right: -30px;
  }

  .pagination-numbers .pagination-label {
    line-height: 28px;
  }

  .pagination-numbers .page-numbers li {
    width: 28px;
    line-height: 28px;
  }

}


/* Grid Boxes - Tablet */

@media (min-width: 650px) {

  .square-tab::before {
    content: "";
    width: 1px;
    margin-left: -1px;
    float: left;
    height: 0;
    padding-top: 100%;
  }

  .square-tab::after {
    content: "";
    display: table;
    clear: both;
  }

  .sidebox {
    max-width: 300px;
  }

  .boxes-grid {
    margin: 10px -5px 0px -5px;
  }

  .boxes-grid-big .grid-item,
  .teaser-wide-with-image .box-text,
  .teaser-wide-with-image .blog-teaser-image {
    float: left;
    width: 50%;
  }

  .grid-item .quick-link,
  .grid-item .holder-image {
    margin: 0px 5px 10px;
  }

  .teaser-item-wide .quick-link {
    margin-top: 0px;
  }

  .quick-link .box-text {
    padding: 40px 30px 30px 30px;
  }

  .teaser-item-wide .box-text {
    padding-bottom: 40px;
  }

  .teaser-item-wide .teaser-thumb {
    display: none;
  }

  .grid-item .holder-image.holder-image-cols-two {
    display: block !important;
  }

  .grid-item .holder-image.holder-image-cols-three {
    display: none !important;
  }

  .boxes-grid-big .grid-item .teaser-text h2 {
    min-height: 140px;
  }

  .people-text h2 {
    min-height: 187px;
  }

  .teaser-item-wide .teaser-text h2 {
    min-height: 100px;
    font-size: 28px;
  }

}


/* Grid Boxes - Desktop */

@media (min-width: 960px) {

  .square::before {
    content: "";
    width: 1px;
    margin-left: -1px;
    float: left;
    height: 0;
    padding-top: 100%;
  }

  .square::after {
    content: "";
    display: table;
    clear: both;
  }

  .grid-item {
    float: left;
    width: 33.333% !important;
  }

  .box-text {
    padding: 48px 38px 38px 38px;
  }

  .people-text h2 {
    min-height: 220px;
  }

  .grid-item .holder-image.holder-image-cols-two {
    display: none !important;
  }

  .grid-item .holder-image.holder-image-cols-three {
    display: block !important;
  }

}


/* Banner Mobile */

.banner-caption-text {
	padding-bottom: 10px;
	line-height: 1.25em;
	writing-mode: horizontal-tb;
	font-size: 13px;
}

/* Banner Tablet */

@media (min-width: 501px) and (max-width: 799px ) {

	.banner-caption {
		position: absolute;
		left: 10px;
		bottom: 15px;
		top: 15px;
	}

	.banner-caption-text {
		padding: 0px;
		writing-mode: vertical-rl;
	}

}

/* Banner Desktop */

@media (min-width: 800px) {

  .banner-constrictor {
    overflow: hidden;
  }

  .banner-box {
    position: relative;
    max-width: 305px;
    margin: 60px 60px 60px 30px;
    padding: 25px;
    z-index: 10;
  }

  .banner-image-right {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 340px;
    z-index: 5;
  }

	.banner-caption {
		position: absolute;
		right: 0;
		left: 0;
		bottom: 9px;
	}

	.banner-caption-text {
		max-width: 800px;
		padding-bottom: 6px;
	}

}


/* Footer Desktop */

@media (min-width: 840px) {

  footer a {
    padding: 2px 6px;
  }

  footer .footer-bar {
    clear: both;
    margin: 0px 20px;
    border-top: 1px solid #cccccc;
  }

  footer .footer-bar > div {
    padding: 10px 0px;
  }

  footer .footer-bar .footer-box-lower-menu {
    float: right;
  }

  footer .footer-bar .footer-box-copyright {
    float: left;
  }

}

/* Footer Cols Layout & Logos */

footer .footer-cols {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 25px;
}

footer .footer-logos {
  display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
	width: 100%;
	padding: 10px 35px;
}

footer .footer-logos img {
  display: block;
	margin: 0px auto;
}

@media (min-width: 600px) {
  footer .footer-logos {
    margin-top: -100px;
  }
}

@media (min-width: 1000px) {

	footer .footer-cols {
    flex-wrap: nowrap;
		gap: 0px;
		min-height: 505px; /* Image height */
  }

	footer .footer-col {
    width: 33.33%;
  }

	footer .footer-col-three .footer-block {
    padding-right: 175px;
  }

	footer .footer-logos {
		position: absolute;
		right: 0px;
		top: 0px;
		flex-direction: column;
		flex-wrap: nowrap;
		width: 140px;
		margin-top: 0px;
		padding: 10px 0px 10px 0px;
	}
}

/* ---------- */
/* Slider CSS */

.slick-slider {
	position: relative;
	display: block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-arrow.slick-hidden {
  display: none;
}


/* Calculator Box - Legacy System */

#calculator-box {
	padding: 20px;
}

.pc-label {
	float: left;
	width: 25%;
	clear: both;
	margin-bottom: 10px;
	line-height: 2em;
	font-size: 14px;
}

.pc-input {
	width: 75%;
	float: left;
}
.pc-input input[type="text"] {
	padding-top: 12px;
	padding-bottom: 12px;
}
#calculator-box .calc_input_size {
	width: 65%;
}
#calculator-box input#frm_width,
#calculator-box input#frm_height {
	width: 25%;
	text-align: center;
}
#calculator-box input#frm_width {
	margin-right: 2%;
}
#calculator-box input#frm_height {
	margin-left: 2%;
}
#calculator-box select#frm_units {
	float: right;
	width: 35%;
}
#calculator-box #frm_paper,
#calculator-box #frm_mount,
#calculator-box #frm_seal
{
	width: 100%;
}
#calculator-box #price {
	width: 35%;
	font-size: 30px;
	/* color: #006699; */
	color: #333333;
}
.calc-price-vats {
	font-size: 13px;
	width: 60%;
	float: right;
}
#calculator-box #frm_vat_n {
	margin-left: 10px;
}

/* Message Modal */

.message-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

.message-modal .modal-content {
	width: 100%;
	max-width: 500px;
  min-width: 300px;
	min-height: 400px;
	padding: 2rem;
  margin: 10% auto;
	line-height: 1.0625em;
	background: rgb(164, 216, 216);
	text-align: center;
	color: #202020;
  font-size: 25px;
  font-weight: 400;
}

.message-modal .modal-content #close-modal {
	margin-top: 30px;
}


/* ----------------- */
/* Print Style Sheet */

@media print {
	* { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important;}
	a, a:visited { text-decoration: underline; }
	a[href]:after { content: " (" attr(href) ")"; }
	a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
	img { max-width: 100% !important; page-break-inside: avoid; }
	p, h2, h3 { orphans: 3; widows: 3; }
	h2, h3 { page-break-after: avoid; }
}