/* Easier Than (www.easierthan.co.uk) Website Template CSS */
/* Last Modified: 16/06/2015 - DB */

@import url(https://fonts.googleapis.com/css?family=Audiowide:400,700);
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(https://fonts.googleapis.com/css?family=Muli:400,700);
@import url(https://fonts.googleapis.com/css?family=Satisfy:400,700);
/* @import url(https://fonts.googleapis.com/css?family=Poppy:400,700); */

	/* START Basic HTML Tags */	
		html {
			scroll-behavior: smooth;
			height: 100%;
		}

		body {
			font-size: 1em;
			font-family: Verdana, Helvetica, Arial, sans-serif;
			/* font-family: 'Poppy', sans-serif; */
			margin: 0px;
			padding: 0px;
			background-color: #fff;
			color: #000;
			height: 100%;
			background-image: url('/images/background-body.jpg');
			background-attachment: fixed;
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
		}

		/* Code added because useless iPads and iPhones can't handle the background attachment being fixed on body. */
		body:after {
			content:"";
			position:fixed;
			top:0;
			height:100vh;
			left:0;
			right:0;
			z-index:-1;
			background-image: url('/images/background-body.jpg');
			background-position: top center;
			background-repeat: no-repeat;
			-webkit-background-size: cover;
			-moz-background-size: cover;
			-o-background-size: cover;
			background-size: cover;
		}

		img {
			border: 0px;
		}

		h1 {
			font-family: 'Audiowide', sans-serif;
			font-weight: 400;
			font-size: 2.0em;
			color: #888;
			letter-spacing: 2px;
			padding: 8px 15px;
			margin: 5px 0px 50px 0px;
		}

		h2 {
			font-family: 'Audiowide', sans-serif;
			font-weight: 400;
			font-size: 1.5em;
			color: #333;
			letter-spacing: 1px;
			margin: 20px 0px 10px 0px;
		}

		h3 {
			font-family: 'Audiowide', sans-serif;
			font-weight: 400;
			font-size: 1.3em;
			color: #333333;
			margin: 20px 0px 10px 0px;
		}

		h4 {
			color: #555555;
			font-size: 1.1em;
			margin: 10px 0px 10px 0px;
		}

		ul {
			list-style-type: square;
		}
			
		li {
			padding: 2px 2px 4px 2px;
		}

		a {
			text-decoration: none;
			color: #005309;
			background-color: transparent;
		}
		
		a:hover, a:active, a:focus { 
			background-color: transparent;
			color: #702d4e;
		}

		label {
			font-size: 1.1em;
			color: #444;
		}

		input[type="text"] {
			font-family: Verdana, Helvetica, Arial, sans-serif;
			font-size: 1.1em;
			color: #444;
			margin-top: 5px;
		}

		input[type="submit"] {
			background-color: #005309;
			color: #eee;
			font-family: Verdana, Helvetica, Arial, sans-serif;
			font-size: 1.1em;
			font-weight: bold;
			text-shadow: 0px 0px 2px rgba(50, 50, 50, 0.75);
			text-decoration: none;
			transition: .5s ease 0s;
			margin-top: 30px;
			padding: 10px 18px 10px 18px;
			border: 1px solid #005309;
		}

		input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
		    cursor: pointer;
			opacity: 0.8;
			transition: .5s ease 0s;
		}

		textarea {
			font-family: Verdana, Helvetica, Arial, sans-serif;
			font-size: 1.1em;
			color: #444;
			margin-top: 5px;
		}

		select {
			font-family: Verdana, Helvetica, Arial, sans-serif;
			font-size: 1.1em;
			color: #444;
			margin-top: 5px;
		}

		address {
			font-style: normal;
		}

		table {
			width: 100%;
			margin: 10px 0px 5px 0px;
			border-spacing: 20px 2px;
		}
		
		caption {
			text-align: left;
			font-family: 'Montserrat', sans-serif;
			letter-spacing: 2px;
			color: #555;
			font-size: 1.2em;
			font-weight: bold;
		}

		th {
			font-family: 'Montserrat', sans-serif;
			color: #555;
			font-size: 0.9em;
			border-bottom: 2px dotted #CCC;
			letter-spacing: 2px;
			text-align: left;
			padding: 6px 6px 6px 6px;
			background-color: transparent;
			vertical-align: top;
		}

		td {
			border-bottom: 2px dotted #CCC;
			background-color: transparent;
			padding: 6px 6px 6px 6px;
			vertical-align: top;
		}

		.table-notes {
			font-size: 0.85em;
			font-style: italic;
			text-align: right;
			margin-top: 0px;
			padding-right: 30px;
		}

	/* END Basic HTML Tags */	

	/* START Basic Layout Blocks */	

		.stripe {
			margin: 0px;
			padding-left: 0px;
			padding-right: 0px;
		}

		.holding {
			display: table;
			width: 90%;
			max-width: 1200px;
			margin: 0px;
			margin-left: auto;
			margin-right: auto;
			padding-left: 15px;
			padding-right: 15px;
			background-color: inherit;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
		}

		.row {
			clear: both;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
		}

		.col-12, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1, .col-2-4 {
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			float: left;
		}
		
		.col-12 { width: 100%; }
		.col-9 { width:75%; }
		.col-8 { width:66.66666667%; }
		.col-7 { width:58.33333333%; }
		.col-6 { width:50%; }
		.col-5 { width:41.66666667%; }
		.col-4 { width:33.33333333%; }
		.col-3 { width:25%; }
		.col-2 { width:16.66666667%; }
		.col-1 { width:8.33333333%; }

		.col-2-4 { width:20%; }

		.col-11-fixed, .col-10-fixed, .col-9-fixed, .col-8-fixed, .col-7-fixed, .col-6-fixed, .col-5-fixed, .col-4-fixed, .col-3-fixed, .col-2-fixed, .col-1-fixed, .col-2-4-fixed {
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			float: left;
		}
		
		.col-11-fixed { width:91.66666667%; }
		.col-10-fixed { width:83.33333333%; }
		.col-9-fixed { width:75%; }
		.col-8-fixed { width:66.66666667%; }
		.col-7-fixed { width:58.33333333%; }
		.col-6-fixed { width:50%; }
		.col-5-fixed { width:41.66666667%; }
		.col-4-fixed { width:33.33333333%; }
		.col-3-fixed { width:25%; }
		.col-2-fixed { width:16.66666667%; }
		.col-1-fixed { width:8.33333333%; }

		.col-2-4-fixed { width:20%; }

		.col-clear {
			clear: both;
		}

	/* END Basic Layout Blocks */	

	/* START Specific Stripe Blocks */

		.test-mode {
			background-color: #000;
		}

		.test-mode .holding {
			background-color: transparent;
			padding-top: 5px;
			padding-bottom: 5px;
			color: #fff;
			font-size: 0.8em;
		}

		.test-mode a {
			color: #2ba1c9;
		}

		.test-mode a:hover, .test-mode a:active, .test-mode a:focus {
			color: #fff;
		}

		.top-links {
			background-color: #001a02;
		}
		
		.top-links .holding {
			background-color: transparent;
			padding: 0px 0px 0px 0px;
		}

		.top-links ul {
			list-style: none;
			background-color: transparent;
			padding: 3px 0px 3px 0px;
			margin: 0px;
		}

		.top-links .accessibility ul {
			font-size: 0.6em;
			float: right;
		}

		.top-links .accessibility li {
			padding: 0px 3px 0px 3px;
			display: inline-block;
		}

		.top-links .accessibility a {
			color: #eee;
		}

		.top-links .accessibility a:hover, .accessibility a:active, .accessibility a:focus { 
			color: #fff;
		}

		.navigation {
			position: fixed;
			left: 0;
			top: 0;
			width: 100%;
			z-index:1000;
		}

		.header {
/*			position: relative;*/
			padding-top: 5px;
			padding-bottom: 5px;
			background-color: #fff;
		}

		.header .holding {
			background-color: transparent;
			padding-left: 0px;
			padding-right: 0px;
		}

		.header .logo {
			text-align: center;
			width: 20%;
		}

		.header .logo img {
			padding: 5px 0px;
			height: 175px;
			width: auto;
		}

		.header .tag-line {
			font-family: 'Satisfy', sans-serif;
			padding: 45px 5px 0px 10px;
			text-align: left;
			width: 40%;
		}

		.header .contacts {
			padding: 40px 5px 0px 5px;
			text-align: right;
			width: 40%;
		}

		.header .contacts p {
			font-family: 'Muli', sans-serif;
			font-weight: 700;
			letter-spacing: 1.5px;
			margin-top: 2px;
			margin-bottom: 2px;
		}

		.header .contacts a {
			text-decoration: none;
			font-weight: normal;
		}

		.header .social-icons {
			padding: 0px 0px 0px 0px;
		}
		
		.header .social-icons ul {
			float: left;
			list-style: none;
			padding: 4px 0px 0px 0px;
			margin: 0px;
		}

		.header .social-icons li {
			padding-left: 2px;
			display: inline-block;
		}

		.header .social-icons a:hover, .header .accreditations a:hover {
			opacity: 0.8;
			transition: .5s ease 0s;
		}

		.header .social-icons img {
			max-width: 30px;
		}

		.announcement {
			background-color: #222;
		}

		.announcement .holding {
			background-color: transparent;
		}

		.announcement h2, .announcement p, .announcement a {
			color: #fff;
		}

		.announcement a:hover {
			color: #ddd;
		}

		.dropdown-menu {
			font-family: 'Montserrat', sans-serif;
			font-weight: 400;
			background-color: #00700c;
			position: relative;
			z-index: 998;
			border-bottom: solid 2px #fff;
			border-top: solid -1px #e9e9e9;
		}

		.dropdown-menu .holding {
			background-color: transparent;
			padding: 0px;
			text-align: left;
		}
		
		.dropdown-menu ul {
			list-style-type: none;
			margin: 0;
			padding: 0;
			overflow: hidden;
			background-color: transparent;
		}

		.dropdown-menu li {
			display: inline;
			padding: 0px;
		}

		.dropdown-menu li a, .dropdown-menu .dropdown-link {
			display: inline-block;
			color: #fff;
			text-align: center;
			padding: 9px 14px;
			text-decoration: none;
			font-size: 1.1em;
			transition: .3s background-color;
		}

		.dropdown-menu li a:hover, .dropdown-menu .dropdown:hover .dropdown-link {
			color: #fff;
			background-color: #005309;
		}

		.dropdown-menu li.dropdown {
			display: inline-block;
		}

		.dropdown-menu .dropdown-content {
			display: none;
			position: absolute;
			background-color: #f9f9f9;
			min-width: 160px;
			box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
			z-index: 998;
		}

		.dropdown-menu .dropdown-content a {
			color: #444;
			font-size: 1.2em;
			padding: 10px 16px;
			text-decoration: none;
			display: block;
			text-align: left;
			transition: .3s background-color;
		}

		.dropdown-menu .dropdown-content a:hover {
			color: #005309;
			background-color: #eaeaea;
		}

		.dropdown-menu .dropdown:hover .dropdown-content {
			display: block;
		}

		.dropdown-content-show {
			display: block !important;
		}

		.slideshow {
			background-image: url('/images/background-overlay-dotted-dark.png');
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			overflow: hidden;
		}

		.slideshow .holding {
			background-color: transparent;
			padding: 0px;
		}

		.slideshow .col-12 {
			background-color: #eee;
		}

		.slideshow .slides .slide {
			display:none;
		}

		.slideshow .slides, .slideshow .slides .slide {
			position: relative;
		}

		.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
			min-height: 300px;
			max-height: 550px;
		}

		.slideshow .slides .slide img {
			width: 100%;
			height: auto;
			object-fit: cover;
		}

		.slideshow .caption {
			position:absolute;
			bottom: 20px;
			right: 0px;
			padding: 10px;
			background-color: rgba(10, 10, 10, .6);
			text-align: left !important;
			width: 65%;
		}

		.slideshow .caption h2 {
			font-size: 50px;
			font-weight: 400;
			color: #fff;
			margin: 5px;
			line-height: initial;
			text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
		}

		.slideshow .caption p {
			font-size: 20px;
			color: #bbb;
			margin: 5px;
			line-height: initial;
		}

		.slideshow .caption:hover, .slideshow .caption:hover {
			background-color: rgba(60, 60, 60, .6);
			transition: .5s ease 0s;
		}

		.slideshow .button-left, .slideshow .button-right {
			position: absolute;
			font-size: 24px;
			top:30%;
			border:none;
			display: inline-block;
			outline:0;
			padding:8px 16px;
			vertical-align:middle;
			overflow:hidden;
			text-decoration:none;
			color: #eee;
			background-color: rgba(0, 0, 0, .6);
			text-align:center;
			cursor:pointer;
			white-space:nowrap
		}

		.slideshow .button-left {
			left: 0%;
		}

		.slideshow .button-right {
			right: 0%;
		}

		.slideshow .button-left:hover, .slideshow .button-right:hover {
			color: #333;
			background-color: rgba(175, 175, 175, .6);
			transition: .5s ease 0s;
		}

		.slideshow .animated-fade {
			animation: slideshow-fade 10s infinite;
		}
		
		@keyframes slideshow-fade {
			0% { opacity:0; }
			10% { opacity:1; }
			90% { opacity:1; }
			100%{ opacity:0; }
		}

		.banner-image {
			position: relative;
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			overflow: hidden;
			font-size: 0.95em;
			min-height:250px;
			height: 20%;
			max-height:3000px;
			/* box-shadow: inset 0 0 75px #222; */
		}

		.banner-image .holding {
			background-color: transparent;
			position: relative;
		}

		.banner-image .holding, .banner-image .row, .banner-image .col-12 {
			display: block;
			height: 100%;
		}

		.banner-image .title {
			position:absolute;
			bottom: 40px;
			right: -15px;
			padding: 5px 10px;
			background-color: rgba(0, 83, 9, .9);
			text-align: left !important;
			width: 70%;
		}

		.banner-image .title h1 {
			font-weight: 400;
			color: #fff;
			margin: 0px;
			padding: 0px;
			line-height: initial;
		}

		.message {
			background-color: transparent;
			width: 100%;
			height: 100%;
		}

		.message .message-div {
			display: inline-block;
			width: 50%;
			padding: 25px;
			z-index: 999;
			position: fixed;
			left: calc(25% - 25px);
		    top: 20%;
			background-color: #222;
			text-align: left;
			line-height: 1.3em;
			transition: .5s ease 0s;
		}

		.message .message-close {
			position: absolute;
			right: 10px;
			top: 10px;
			width: 25px;
			cursor:pointer;
		}

		.message .message-close:hover {
			transition: .5s ease 0s;
		}

		.message .message-close img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			display: block;
		}

		.message .message-div h2, .message .message-div p, .message .message-div a {
			color: #fff;
		}

		.message .message-div a:hover {
			transition: .5s ease 0s;
		}

		.content {
			background-color: rgba(255,255,255,1);
			/*background-image: url('/images/background-content.jpg');
			background-position: top center;
			background-repeat: repeat-x;*/
			font-size: 1em;
			line-height: 1.5em;
		}

		.content .holding {
			background-color: transparent;
			padding: 30px 15px;
		}

		.content h1 {
			margin: 5px 25px 30px -15px;
			line-height: 1.1em;
			position: relative;
			z-index: 10;
			display: inline-block;
			color: #fff;
			min-width: 40%;
			background-color:#005309;
			padding-right: 75px;
			clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
		}

		.content h2 {
			margin: 40px 0px 25px 0px;
		}
		
		.content a {
			text-decoration: underline;
		}

		.content .shout-out {
			padding: 50px 0px 30px 0px;
			margin-left:-15px;
			margin-right: -15px;
		}

		.content .shout-out .light-green-box, .content .shout-out .light-grey-box, .content .shout-out .dark-pink-box {
			padding: 25px;
		}

		.content .shout-out .light-green-box {
			background-color: #effff1;
		}

		.content .shout-out .light-grey-box {
			background-color: #f8f4fc;
		}

		.content .shout-out .dark-pink-box {
			background-color: #712b4f;
			font-family: 'Montserrat', sans-serif;
			font-size: 1.1em;
		}

		.content .shout-out h2 {
			margin-top: 20px;
		}

		.content .shout-out .dark-pink-box h2, .content .shout-out .dark-pink-box p {
			color: #eee;
		}

		.content .shout-out .dark-pink-box a, .content .shout-out .dark-pink-box b {
			color: #fff;
			font-weight: bold;
		}

		.content .shout-out .dark-pink-box a:hover {
			color: #ddd;
		}

		.content .shout-out ul {
			color: #222;
		}

		.content .shout-out ul span {
			color: #444;
		}

		.content .shout-out ul a {
			font-weight: bold;
		}

		.content .shout-out ul span a {
			font-weight: normal;
		}

		.content .shout-out ul b {
			font-size: 1em;
			color: #005309;
		}

		.content .shout-out li {
			padding: 5px 0px 5px 0px;
		}
		
		.content .shout-out .poem {
			font-family: 'Montserrat', sans-serif;
			font-size: 1.1em;
			line-height: 1.8em;
			font-style: italic;
			font-weight: normal;
		}

	`	.content .shout-out .poem blockquote {
			padding: 0.8em 10px 0.1em 10px;
			margin: 0px;
			quotes: "\201C""\201D""\2018""\2019";
		}

		.content .shout-out .poem blockquote:before {
			color: #702d4e;
			content: "\201C";
			font-size: 5em;
			line-height: 0em;
			margin-right: 0.25em;
			margin-left: -55px;
			vertical-align: -0.4em;
		}

		.content .shout-out .poem blockquote:after {
			color: #702d4e;
			content: "\201D";
			font-size: 5em;
			line-height: 0.1em;
			margin-left: 0.25em;
			vertical-align: -0.6em;
		}

		.content .shout-out .photo img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
		}
		
		.content .signature {
			font-family: 'Satisfy', sans-serif;
			font-size: 1.6em;
			color:#702d4e;
		}
		
		.content .registered-theraptist img {
			width: 90%;
			max-width: 475px;
			height: auto;
			width: auto\9; /* ie8 */
		}

		.content .diagram {
			text-align: center;
			padding: 5px;
		}

		.content .diagram img {
			width: 100%;
			max-width: 900px;
			height: auto;
			width: auto\9; /* ie8 */
		}

		.content .energy-saving-trust {
			float: right;
			margin: 0px 0px 25px 25px;
			width: 33%;
			max-width: 150px;
			height: auto;
			width: auto\9; /* ie8 */
		}
		
		.content .content-text {
			padding: 0px 15px 0px 0px;
		}

		.content .content-feature {
			text-align:center;
			position: relative;
			padding: 15px 0px 15px 15px;
		}

		.content .content-feature .star-image {
			position: relative;
			text-align: center;
			margin: 0px;
			padding: 0px;
		}

		.content .content-feature .star-image img {
			max-width: 400px;
			width: 100%;
			height: auto;
			height: auto\9; /* ie8 */
		}

		.content .content-feature .star-image .offer {
			width: 100%;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			-webkit-transform: translateY(-50%);
			-moz-transform: translateY(-50%);
			-o-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
			color: #222;
			font-weight: bold;
			text-shadow: 0px 0px 5px rgba(250, 250, 250, 1);
		}

		.content .content-feature .star-image .offer p {
			padding: 20px 15px 5px 15px;
			line-height: initial;
		}

		.content .content-feature .star-image .offer a {
			color: #000;
		}

		.content .content-feature input[type="submit"] {
			margin-top: 0px;
		}

		.content .content-feature .decorative-image {
			text-align: center;
			margin: 0px;
			padding: 0px;
		}

		.content .content-feature .decorative-image img {
			max-width: 375px;
			width: 100%;
			height: auto;
			height: auto\9; /* ie8 */
		}

		.content .content-feature a {
			text-decoration: none;
		}

		.content .content-feature a:hover {
			opacity: 0.8;
			transition: .5s ease 0s;
		}

		.page-links {
			background-color: rgba(255,255,255,0.9);
		}

		.page-links .holding {
			background-color: transparent;
			width: 98%;
			/* max-width: 1500px;*/
			padding: 0px 0px 0px 0px;
			text-align: center;
		}

		.page-link {
			font-family: 'Montserrat', sans-serif;
			font-weight: 400;
			text-align: center;
			padding: 10px 15px 10px 15px;
		}

		.page-link a {
			color: #888;
		}

		.page-link a:hover {
			transition: .5s ease 0s;
			color: #444;
		}

		.page-link img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			/*border-radius:50%;
			-webkit-border-radius:50%;
			-moz-border-radius:50%;*/
		}

		.page-link img:hover {
			transition: .5s ease 0s;
			-moz-transform: scale(1.05);
			-webkit-transform: scale(1.05);
			transform: scale(1.05);
		 }

		.page-link p {
			margin: 15px 5px 10px 5px;
			font-size: 1.3em;
		}

		.logos-inline {
			text-align: left;
		}

		.logos-inline img {
			width: 90%;
			max-width: 250px;
			height: auto;
			width: auto\9; /* ie8 */
			margin: 5px;
		}

		.important {
			background-color: #fff;
		}

		.important .holding {
			background-color: transparent;
		}

		.gallery-photos {
			background-color: rgba(50,50,50,0.7);
			padding: 0px;
		}

		.gallery-photos .holding {			
			background-color: transparent;
			padding: 15px;
			width: 100%;
			border: 0px;
			max-width: 2000px;
		}

		.gallery-photos .gallery-photo {
			position: relative;
			overflow: hidden;
			border: solid 15px transparent;
		}

		.gallery-photos .photo {
			position: relative;
		}

		.gallery-photos .photo img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			display: block;
		}

		.gallery-photos a {
			text-decoration: none;
		}

		.gallery-photos a:hover {
			opacity: 0.7;
			transition: .3s ease 0s;
		}

		.gallery-photos .label {
			font-family: 'Montserrat', sans-serif;
			font-weight: 400;
			padding: 7px 0px 7px 0px;
			background-color: rgba(10, 10, 10, 0.6);
			color: #fff;
			position: absolute;
			bottom: 0px;
			left: 0px;
			width: 100%;
			font-size: 1.5em;
			text-align: center;
		}

		.gallery-photos .different-sizes {
			margin: 0px 30px 0px 30px;
			line-height: 0;
			-webkit-column-count: 3;
			-moz-column-count:    3;
			column-count:         3;
			-webkit-column-gap:   30px;
			-moz-column-gap:      30px;
			column-gap:           30px;
		}

		.gallery-photos .different-sizes img {
			width: 100% !important;
			height: auto !important;
			padding: 15px 0px 15px 0px;
		}

		.gallery-links {
			background-color: rgba(255,255,255,0.9);
		}

		.gallery-links .holding {
			background-color: transparent;
			padding: 15px;
			width: 100%;
			border: 0px;
			max-width: 1500px;
		}

		.gallery-link {
			font-family: 'Montserrat', sans-serif;
			font-weight: 400;
			text-align: center;
			padding: 20px 25px 10px 25px;
		}

		.gallery-link a {
			color: #888;
		}

		.gallery-link a:hover {
			transition: .5s ease 0s;
			color: #444;
		}

		.gallery-link img {
			width: 100%;
			max-width: 220px;
			height: auto;
			width: auto\9; /* ie8 */
			border-radius:50%;
			-webkit-border-radius:50%;
			-moz-border-radius:50%;
		}

		.gallery-link img:hover {
			transition: .5s ease 0s;
			-moz-transform: scale(1.05);
			-webkit-transform: scale(1.05);
			transform: scale(1.05);
		 }

		.gallery-link p {
			margin: 15px 5px 10px 5px;
			font-size: 1.3em;
		}

		.enquiries input[type="text"], .enquiries textarea, .enquiries select {
			max-width: 70%;
			width: 70%;
		}

		.carousel-links {
			background-color: #005309;
			background: linear-gradient(to left, #a3d9eb 0%, #005309 30%, #005309 70%, #a3d9eb 100%);
			background: -webkit-linear-gradient(to left, #a3d9eb 0%, #005309 30%, #005309 70%, #a3d9eb 100%);
			background: -moz-linear-gradient(to left, #a3d9eb 0%, #005309 30%, #005309 70%, #a3d9eb 100%);
			background: -ms-linear-gradient(to left, #a3d9eb 0%, #005309 30%, #005309 70%, #a3d9eb 100%);
		}

		.carousel-links .holding {			
			background-color: transparent;
			padding: 20px 0px;
			width: 100%;
			max-width: 1700px;
			height: 230px;
		}

		.carousel-links .carousel-link {
			margin: 5px;
			width: 180px;
			opacity: 0.2;
			border-radius: 50%;
			-webkit-border-radius: 50%;
			-moz-border-radius: 50%;
			box-shadow: 0 0 2px rgba(50, 50, 50, .8);
			-webkit-box-shadow: 0 0 2px rgba(50, 50, 50, .8);
			-moz-box-shadow: 0 0 2px rgba(50, 50, 50, .8);
		}
		
		.carousel-links .carousel-link.is-selected {
			opacity: 1.0;
		}

		.carousel-links .carousel-link.is-previous, .carousel-links .carousel-link.is-next {
			opacity: 0.8;
		}

		.carousel-links .carousel-link.is-previous-before, .carousel-links .carousel-link.is-next-after {
			opacity: 0.5;
		}

		.carousel-links .carousel-link img {
			border-radius: 50%;
			-webkit-border-radius: 50%;
			-moz-border-radius: 50%;
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			display: block;
		}

		.carousel-links .carousel-link a {
			text-decoration: none;
		}

		.carousel-links .carousel-link:hover {
			box-shadow: 0 0 8px rgba(250, 250, 250, .8);
			-webkit-box-shadow: 0 0 8px rgba(250, 250, 250, .8);
			-moz-box-shadow: 0 0 8px rgba(250, 250, 250, .8);
			transition: .5s ease 0s;
		}

		.carousel-links .carousel-link-caption {
			font-size: 1.2em;
			color: #fff;
			margin: 0px;
			padding: 10px 10px 0px 10px;
			text-align: center;
		}

		.carousel-links .carousel .flickity-page-dots {
			bottom: -60px;
		}

		.towns {
			position: relative;
			background: #fbf5f8;
			color: #555;
/*			background-image:url('/images/background-towns.jpg');
			background-attachment: fixed;
			background-position: top right;
			background-repeat: no-repeat;
			background-size: cover;
			overflow: hidden;*/
		}

		.towns .holding {
			background-color: transparent;
		}

		.towns h2 {
			color: #48293b;
			padding: 5px 0px 10px 0px;
		}

		.towns .col-12 {
			color: #222;
			padding: 20px 0px;
			text-align: left;
			line-height: 1.5em;
		}

		.towns .town {
			font-size: 1em;
			padding: 5px 0px;
			text-align: center;
		}

		.towns .acknowledgement {
			position: absolute;
			bottom: 4px;
			right: 0px;
			font-size: 0.7em;
			color: #ddd;
			text-align: right;
		}

		.towns .acknowledgement span {
			background-color: #000;
			padding: 4px;
		}

		.towns .acknowledgement a {
			color: #eee;
		}

		.towns .acknowledgement a:hover {
			color: #ccc;
		}

		.services-list {
			text-align: center;
			font-size: 90%;
			margin-top: 40px;
			font-style: italic;
			color: #333333;
		}

		.features {
			background-color: rgba(255,255,255,1);
			font-size: 1em;
			line-height: 1.5em;
		}

		.features .holding {
			background-color: transparent;
			padding: 0px 10px;
		}

		.features .polaroid {
			position: relative;
			background: #fff;
			display: inline-block;
			width: 50%;
			max-width: 250px;
			padding: 15px;
			margin: 5px 20px;
			text-align: center;	
			box-shadow: 1px 1px 3px #222;
			-moz-box-shadow: 1px 1px 3px #222;
			-webkit-box-shadow: 1px 1px 3px #222;
			transform: rotate(5deg);
			-moz-transform: rotate(5deg);
			-webkit-transform: rotate(5deg);
			-o-transform: rotate(5deg);
			z-index: 990;
		}

		.features .polaroid img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			margin-bottom: 10px;
		}

		.features .polaroid span {
			color: #222;
		}

		.features .polaroid.left {
			float: left;
			margin-right: 50px;
		}

		.features .polaroid.right {
			float: right;
			margin-left: 50px;
		}

		.features h3 {
			color: #005309;
			padding: 50px 5px 15px 5px;
		}

		.feature p {
			padding-left: 5px;
			padding-right: 5px;
		}

		.testimonial .quote {
			padding: 0.8em 0px 0.1em 0px;
			margin: 0px;
			quotes: "\201C""\201D""\2018""\2019";
		}

		.testimonial .quote.start:before {
			color: #666;
			content: "\201C";
			font-family: 'Muli', sans-serif;
			font-size: 4em;
			line-height: 0em;
			margin-right: 0.25em;
			vertical-align: -0.4em;
		}

		.testimonial .quote.end:after {
			color: #666;
			content: "\201D";
			font-family: 'Muli', sans-serif;
			font-size: 4em;
			line-height: 0.1em;
			margin-left: 0.25em;
			vertical-align: -0.6em;
		}

		.testimonial .customer {
			font-family: 'Satisfy', sans-serif;
			font-size: 1.2em;
			color: #444;
			font-style: normal;
		}

		.testimonial b {
			color: #222;
			font-weight: 600;
		}

		.testimonial-link {
			position: relative;
			font-family: 'Muli', sans-serif;
			font-weight: 400;
			background-color: rgba(50,50,50,0.7);
/*			background-color: #2ba1c9;*/
		}

		.testimonial-link .holding {
			background-color: transparent;
		}

		.testimonial-link .quote {
			background-color: #005309;
			border-left: 20px solid rgba(10,10,10,0.5);
			color: #eee;
			margin: 75px 0px 50px 0px;
			padding: 20px 20px 20px 50px;
		}

		.testimonial-link .quote a {
			color: #eee;
		}

		.testimonial-link .quote blockquote {
			background-color: transparent;
			font-size: 1.5em;
			padding: 0.8em 10px 0.1em 10px;
			margin: 0px;
			quotes: "\201C""\201D""\2018""\2019";
		}

		.testimonial-link .quote blockquote:before {
			color: #ddd;
			content: "\201C";
			font-size: 4em;
			line-height: 0em;
			margin-right: 0.25em;
			vertical-align: -0.4em;
		}

		.testimonial-link .quote blockquote:after {
			color: #ddd;
			content: "\201D";
			font-size: 4em;
			line-height: 0.1em;
			margin-left: 0.25em;
			vertical-align: -0.6em;
		}

		.testimonial-link .quote p {
			margin: 0px;
			padding: 20px;
			text-align: right;
			font-size: 1.3em;
		}
		
		.testimonial-link .quote:hover {
		    cursor: pointer;
			opacity: 0.9;
			transition: .5s ease 0s;
		}

		.testimonial-link .polaroid {
			position: relative;
			background: #fff;
			display: inline-block;
			width: 50%;
			max-width: 250px;
			padding: 15px;
			margin: 25px;
			text-align: center;	
			box-shadow: 1px 1px 3px #222;
			-moz-box-shadow: 1px 1px 3px #222;
			-webkit-box-shadow: 1px 1px 3px #222;
			transform: rotate(5deg);
			-moz-transform: rotate(5deg);
			-webkit-transform: rotate(5deg);
			-o-transform: rotate(5deg);
			z-index: 999;
		}

		.testimonial-link .polaroid img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			margin-bottom: 10px;
		}

		.testimonial-link .polaroid span {
			color: #222;
		}

		.contact-intro {
			background-color: #fff;
			font-size: 1em;
			line-height: 1.5em;
		}

		.contact-intro .holding {
			background-color: transparent;
			padding-top: 0px;
			padding-bottom: 20px;
		}

		.contact-details {
			background-color: rgba(0, 83, 9, 0.9);
		}

		.contact-details .holding {
			background-color: transparent;
			padding: 25px 0px;
			width: 100%;
			max-width: 1400px;
		}

		.contact-details .contact-links a {
			font-family: 'Muli', sans-serif;
			font-weight: 700;
			display: block;
			color: #eee;
			text-decoration: none;
			letter-spacing: 1px;
			transition: .3s background-color;
			background-color: transparent;
		}

		.contact-details .contact-links a:hover, .contact-details .contact-links a:active, .contact-details .contact-links a:focus {
			color: #fff;
			text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.75);
			transition: .5s ease 0s;
		}

		.contact-details .contact-links p {
			margin-top: 1px;
			margin-bottom: 1px;
			padding: 0px 10px;
		}

		.contact-details .contact-links .contact-icon {
			padding: 0px 10px 20px 10px;
			font-size: 4em;
			font-weight: normal;
		}

		.contact-details .contact-links .contact-icon div {
			background-color: rgba(255, 255, 255, 0.1);
			display: inline-block;
			padding: 10px 17px;
			border-radius: 50%;
			-webkit-border-radius: 50%;
			-moz-border-radius: 50%;
/*			box-shadow: inset 0px 0px 10px 2px rgba(250,250,250,0.8);
			box-shadow: 0px 0px 5px 2px rgba(250,250,250,0.8);*/
			box-shadow: 0px 0px 1px 1px rgba(200,200,200,0.7);
		}

		.contact-details .contact-links .contact-for {
			font-family: 'Raleway', sans-serif;
			font-size: 1.3em;
			font-weight: 400;
			color: #ddd;
		}

		.contact-details .contact-links .contact-link {
			font-family: 'Muli', sans-serif;
			font-size: 1.5em;
			font-weight: normal;
			letter-spacing: 1.5px;
		}

		.google-map {
			background-color: #fff;
		}
		
		.google-map .holding {
			background-color:transparent;
			width: 100%;
			max-width: 2000px;
			padding:0px;
		}
		
		.google-map iframe {
			width:100%;
			height:450px;
			margin: 0px;
		}

		.footer {
			color: #f3f3f3;
			background-color: rgba(0, 48, 5, 0.9);
/*			background-image: url('/Images/Background_Footer.jpg');
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			overflow: hidden;*/
		}

		.footer a {
			text-decoration: none;
			color: #ddd;
		}

		.footer	a:hover, .footer a:active, .footer a:focus { 
			color: #fff;
		}

		.footer .holding {
			background-color: transparent;
			padding-top: 20px;
		}

		.footer .footer-menu, .footer .footer-contact-details, .footer .footer-opening-hours {
			padding: 0px 5px;
			text-align: center;
		}

		.footer .footer-contact-details div {
			margin-top: 12px;
		}
		
		.footer .footer-contact-details address {
			line-height: 1.4em;
		}
		
		.footer .footer-contact-details div, .footer .footer-menu div {
			margin-top: 12px;
		}
		
		.footer .footer-menu ul {
			list-style: none;
			padding: 0px;
			margin: 0px;
		}

		.footer .footer-menu-sub {
			padding-left: 30px;
		}

		.footer .footer-menu a, .footer .footer-menu b {
			font-weight: normal;
		}

		.footer .footer-opening-hours {
			font-family: 'Montserrat', sans-serif;
			background-color: #fff;
			color:#702d4e;
		}
		
		.footer .accreditations {
			padding-top: 10px;
			text-align: center;
			vertical-align: middle;
		}

		.footer .accreditations img {
			margin: 0px;
			width: 70%;
			max-width: 300px;
			height: auto;
		}

		.footer .tagline {
			color: #fff;
			text-align: center;
			padding: 20px 15px;
			margin-top: 25px;
			font-family: 'Satisfy', sans-serif;
			letter-spacing: 0.1em;
			font-size: 1.7em;
			border-top: solid 2px #aaa;
		}

		.footer .registered {
			color: #ddd;
			text-align: center;
			font-style:italic;
			font-size: 0.9em;
		}
		
		.footer .terms {
			color: #eee;
			text-align: center;
			font-size: 0.9em;
			padding: 15px 0px 30px 0px;
		}

		.footer .social-icons {
			padding: 0px 0px 0px 0px;
			margin: 0px 0px 15px 0px;
		}
		
		.footer .social-icons ul {
			float: left;
			list-style: none;
			padding: 0px;
			margin: 0px;
		}

		.footer .social-icons li {
			padding-right: 10px;
			display: inline-block;
		}

		.footer .social-icons a:hover, .footer .accreditations a:hover {
			opacity: 0.8;
			transition: .5s ease 0s;
		}

		.footer .social-icons img {
			width: 35px;
			height: auto;
			height: auto\9; /* ie8 */
		}

		.footer .copyright {
			font-size: 0.8em;
			text-align: right;
			color: #bbb;
			margin: 0px 0px 15px 0px;
		}

		.footer .copyright p {
			margin: 10px 0px 0px 0px;
		}

		.footer .copyright a {
			color: #ccc;
		}

		.footer .copyright a:hover, .footer .copyright a:active, .footer .copyright a:focus { 
			color: #fff;
		}

	/* END Specific Stripe Blocks */

	/* START General Layout Elements */

		.align-left { 
			text-align: left;
		}

		.align-right { 
			text-align: right;
		}

		.align-center { 
			text-align: center;
		}

		.block-left, .block-left-space, .block-left-space-border, .block-left-space-border-label { 
			float: left;
		}

		.block-right, .block-right-space, .block-right-space-border, .block-right-space-border-label { 
			float: right;
		}

		.block-none-space, .block-none-space-border, .block-none-space-border-label {
			margin: 10px;
		}

		.block-right-space, .block-right-space-border, .block-right-space-border-label {
			margin: 10px 10px 10px 30px;
		}

		.block-left-space, .block-left-space-border, .block-left-space-border-label {
			margin: 10px 30px 10px 10px;
		}

		.block-none-space-border img, .block-none-space-border-label img,
		.block-right-space-border img, .block-right-space-border-label img,
		.block-left-space-border img, .block-left-space-border-label img {
			padding: 0px;
			/* border: solid 1px #555555;
			box-shadow: 0px 0px 5px 0px #999;
			-webkit-box-shadow: 0px 0px 5px 0px #999;
			-moz-box-shadow: 0px 0px 5px 0px #999;*/
		}

		.block-none-space-border img, .block-right-space-border img, .block-left-space-border img {
			margin: 0px 0px 0px 0px;
		}

		.block-none-space-border-label img, .block-right-space-border-label img, .block-left-space-border-label img {
			margin: 0px 0px 7px 0px;
		}

		.block-none-space-border-label, .block-right-space-border-label, .block-left-space-border-label {
			color: #555555;
			font-style:italic;
			font-size: 0.85em;
			padding: 0px 8px 9px 8px;
		}

		.block-none-space, .block-none-space-border, .block-none-space-border-label,
		.block-right-space, .block-right-space-border, .block-right-space-border-label,
		.block-left-space, .block-left-space-border, .block-left-space-border-label {
			width: 50%;
			max-width: 404px;
		}
		
		.block-none-space img, .block-none-space-border img, .block-none-space-border-label img,
		.block-right-space img, .block-right-space-border img, .block-right-space-border-label img,
		.block-left-space img, .block-left-space-border img, .block-left-space-border-label img {
			width: 100%;
			max-width: 400px;
			height: auto;
			width: auto\9; /* ie8 */
			/*border-radius:50%;
			-webkit-border-radius:50%;
			-moz-border-radius:50%;*/
		}

		.block-diagram {
			width: 100%;
			max-width: 425px;
			height: auto;
			width: auto\9; /* ie8 */
		}

		.block-slider-align-right {
			float:right;
			margin: 10px;
			width:60%;
		}

		.video-clip {
			position:relative;
			padding-bottom:56.25%;
			padding-top:30px;
			margin: 35px 25px;
			height:0;
			overflow:hidden;
		}

		.video-clip iframe, .video-clip object, .video-clip embed {
			position:absolute;
			top:0;
			left:0;
			width:100%;
			height:100%;
		}

		.upper {
			text-transform: uppercase;
		}

		.bold {
			font-weight: bold;
		}

		.colour-white {
			color: white;
		}

		.colour-black {
			color: black;
		}

		.colour-red {
			color: red;
		}

		.colour-grey {
			color: #777777;
		}

		.colour-dark-grey {
			color: #333333;
		}

		.colour-site {
			color: #005309;
		}

		.colour-site-2 {
			color: #005309;
		}

		.coloured-list {
			color: #005309;
		}

		.coloured-list span {
			color: #444;
		}

		.coloured-list li {
			padding: 3px 0px 3px 0px;
		}

		.map iframe {
			width:100%;
			height:450px;
			border:solid 1px #aaa;
			margin: 15px 0px;
			box-shadow: 1px 1px 4px #aaa;
			-webkit-box-shadow: 1px 1px 4px #aaa;
			-moz-box-shadow: 1px 1px 4px #aaa;
		}

		.font-70 {
			font-size: .7em;
		}

		.font-80 {
			font-size: .8em;
		}

		.font-90 {
			font-size: .9em;
		}

		.font-100 {
			font-size: 1em;
		}

		.font-110 {
			font-size: 1.1em;
		}
		
		.font-120 {
			font-size: 1.2em;
		}
		
		.font-130 {
			font-size: 1.3em;
		}

		.font-140 {
			font-size: 1.4em;
		}

		.font-150 {
			font-size: 1.5em;
		}

		.font-160 {
			font-size: 1.6em;
		}

		.font-170 {
			font-size: 1.7em;
		}

		.font-180 {
			font-size: 1.8em;
		}

		.font-190 {
			font-size: 1.9em;
		}

		.font-200 {
			font-size: 2em;
		}

		.font-250 {
			font-size: 2.5em;
		}

		.font-300 {
			font-size: 3em;
		}

		.indent-10 {
			margin-left: 10px;
		}

		.indent-20 {
			margin-left: 20px;
		}

		.indent-30 {
			margin-left: 30px;
		}

		.indent-50 {
			margin-left: 30px;
		}

		.company-name {
			font-weight: bold;
			font-style:italic;
			color: #005309;
		}

		.no-screen {
			display: none;
		}

		.no-screen-print {
			display: none;
		}

		.overlay-dotted-dark {
			background-image: url('/images/background-overlay-dotted-dark.png');
		}

		.overlay-dotted-light {
			background-image: url('/images/background-overlay-dotted-light.png');
		}

		.overlay-sheen-light {
			background-image: url('/images/background-overlay-sheen-light.png');
		}

		.overlay-sheen-dark {
			background-color: rgba(10,10,10,0.5);
		}

		.overlay-dotted-dark, .overlay-dotted-light, .overlay-sheen-light {
			background-position: center center;
			background-repeat: repeat;
			background-color: transparent;
		}

		.margin-top-0 {
			margin-top: 0px !important;
		}

		.margin-bottom-5 {
			margin-bottom: 5px !important;
		}
		
		.padding-left-10 {
			padding-left: 10px;
		}

		.spacer-40 {
			height: 40px;
		}

		.fade-in {
			animation: fadeIn ease 2s;
			-webkit-animation: fadeIn ease 2s;
		}
		
		@keyframes fadeIn {
			0% {opacity:0;}
			100% {opacity:1;}
		}

		@-webkit-keyframes fadeIn {
			0% {opacity:0;}
			100% {opacity:1;}
		}

		.fade-out {
			animation: fadeOut ease 2s;
			-webkit-animation: fadeOut ease 2s;
		}
		
		@keyframes fadeOut {
			0% {opacity:1;}
			100% {opacity:0;}
		}

		@-webkit-keyframes fadeOut {
			0% {opacity:1;}
			100% {opacity:0;}
		}

		.fade-in-out {
			animation: flickerAnimation 2s infinite;
			-webkit-animation: flickerAnimation 2s infinite;
		}

		@keyframes flickerAnimation {
			0%   { opacity: 1; }
			50%  { opacity: 0.8; }
			100% { opacity: 1; }
		}

		@-webkit-keyframes flickerAnimation{
			0%   { opacity: 1; }
			50%  { opacity: 0.8; }
			100% { opacity: 1; }
		}

	/* END General Layout Elements */

	/* START Screen Size Dependent Formatting */

		/* width >= 1440px */
		@media only screen and (min-width: 1440px) {

			.computer-only, .header .computer-only {
				display: initial;
			}

			.mobile-only, .header .mobile-only, .show-only-480, .show-only-768, .show-only-960 {
				display: none;
			}

			.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
				max-height: 625px;
			}

		}

		/* 1280px <= width < 1440px */
		@media only screen and (min-width: 1280px) and (max-width: 1439px) {

			.computer-only, .header .computer-only {
				display: initial;
			}

			.mobile-only, .header .mobile-only, .show-only-480, .show-only-768, .show-only-960 {
				display: none;
			}

			.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
				max-height: 600px;
			}

		}

		/* 1024px <= width < 1280px */
		@media only screen and (min-width: 1024px) and (max-width: 1279px) {
			
			.computer-only, .header .computer-only {
				display: initial;
			}

			.mobile-only, .header .mobile-only, .show-only-480, .show-only-768, .show-only-960 {
				display: none;
			}

			.header {
				font-size: 90%;
			}
			
			.content .content-feature {
				padding-right: 0px;
			}

			.content .content-feature .star-image .offer p {
				font-size: 80%;
			}
			
			.page-links .holding {
				width: 90%;
			}

			.page-link {
				width: 33.33333333%;
				padding: 0px 15px 0px 15px;
			}

			.gallery-link {
				padding: 20px 20px 10px 20px;
			}

			.contact-details .contact-links {
				font-size: 90%;
			}

		}

		/* 960px <= width < 1024px */
		@media only screen and (min-width: 960px) and (max-width: 1023px) {

			.holding {
				background-color: green;
			}

			.computer-only, .header .computer-only {
				display: initial;
			}

			.mobile-only, .header .mobile-only, .hide-below-1024, .show-only-480, .show-only-768, .show-only-960 {
				display: none;
			}

			.header {
				font-size: 90%;
			}
			
			.slideshow .caption {
				width: 70%;
			}

			.message .message-div {
				width: 64%;
				left: calc(18% - 25px);
			}

			.content .content-feature {
				padding-right: 0px;
			}

			.content .content-feature .star-image .offer p {
				font-size: 75%;
			}

			.page-links .holding {
				width: 90%;
			}

			.page-link {
				width: 33.33333333%;
				padding: 0px 15px 0px 15px;
			}

			.case-study-category-link {
				width: 50%;
			}

			.contact-details .contact-links {
				font-size: 90%;
			}

		}

		/* 768px <= width < 960px */
		@media only screen and (min-width: 768px) and (max-width: 959px) {

			.holding {
				width: 96%;
				background-color: yellow;
			}

			.computer-only, .header .computer-only {
				display: initial;
			}

			.mobile-only, .header .mobile-only, .hide-below-960, .hide-below-1024, .show-only-480, .show-only-768 {
				display: none;
			}

			.header {
				font-size: 80%;
			}

			.header .logo {
				width: 24%;
			}
			
			.header .logo img {
				height: 150px;
			}

			.header .tag-line {
				padding: 40px 5px 0px 10px;
				width: 38%;
			}

			.header .contacts {
				padding: 35px 5px 0px 5px;
				width: 38%;
			}

			.content .content-feature {
				padding-right: 0px;
			}

			.content .content-feature .star-image .offer p {
				font-size: 70%;
			}

			.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
				max-height: 450px;
			}

			.slideshow .caption {
				width: 80%;
			}
			.slideshow .caption h2 {
				font-size: 36px;
			}
			.slideshow .caption p {
				font-size: 16px;
			}

			.message .message-div {
				width: 70%;
				left: calc(15% - 25px);
			}

			.page-links .holding {
				padding: 0px 15px 0px 15px;
			}

			.page-link {
				width: 33.33333333%;
				padding: 0px 10px 0px 10px;
			}

			.case-study-category-link {
				width: 50%;
			}

			.tab-gallery-photo, .kitchen-case-study-link, .case-study-kitchen-link {
				width: 50%;
			}

			.case-study-equipment-link {
				width: 33.33333333%;
			}

			.gallery-photos .label {
				font-size: 1.4em;
				padding: 5px 0px 5px 0px;
			}

			.gallery-photos .different-sizes {
				margin: 0px 20px 0px 20px;
				line-height: 0;
				-webkit-column-gap:   20px;
				-moz-column-gap:      20px;
				column-gap:           20px;
			}

			.gallery-photos .different-sizes img {
				width: 100% !important;
				height: auto !important;
				padding: 10px 0px 10px 0px;
			}

			.gallery-link {
				padding: 20px 15px 10px 15px;
			}
			
			.enquiries input[type="text"], .enquiries textarea, .enquiries select {
				max-width: 75%;
				width: 75%;
			}

			.carousel-links .holding {
				height: 220px;
			}

			.carousel-links .carousel-link {
				width: 170px;
			}

			.towns .town {
				width:33.33333333%;
			}

			.features h3 {
				padding-top: 30px;
			}

			.features p {
				font-size: 95%;
			}

			.contact-details .contact-links {
				font-size: 80%;
			}
			
			.footer .holding {
				padding: 15px 5px;
			}

		}

		/* 480px <= width < 768px */
		@media only screen and (min-width: 480px) and (max-width: 767px) {

			table {
				font-size: 90%;
				border-spacing: 10px 2px;
			}
			
			.holding {
				width: 94%;
				background-color: red;
			}

			.col-7 { width: 100%; }
			.col-6 { width: 100%; }
			.col-5 { width: 100%; }
			.col-3 { width: 50%; }
			.col-2 { width:33.33333333%; }
			.col-1 { width:16.66666667%; }

			.computer-only, .header .computer-only, .sub-menu .holding, .hide-below-768, .hide-below-960, .hide-below-1024, .show-only-480, .show-only-960, .hide-only-768 {
				display: none;
			}

			.mobile-only, .header .mobile-only {
				display: initial;
			}
			
			.navigation {
				position: relative;
			}

			.header {
				border-top: solid 15px #001a02;
			}
			
			.header .holding {
				width: 98%;
			}

			.header .logo {
				width: 100%;
				text-align:center;
			}

			.header .logo img {
				height: 200px;
			}

			.header .tag-line {
				font-size: 80%;
				padding: 20px 10px 20px 10px;
				width: 100%;
				text-align: center;
			}

			.header .contacts {
				width: 100%;
				text-align: center;
				padding: 0px 0px 0px 0px;
				font-size: 80%;
			}

			.header .contacts p {
				display: inline-block;
				margin: 10px 10px 0px 10px;
			}
			
			.header .contacts p .font-120, .header .contacts p .font-140 {
				font-size: 1.8em;
			}

			.dropdown-menu .dropdown-content .sub-item {
				color: #888;
				padding-left: 40px;
				padding-right: 40px;
			}
			
			.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
				max-height: 325px;
			}

			.slideshow .caption {
				width: 85%;
			}
			.slideshow .caption h2 {
				font-size: 32px;
			}
			.slideshow .caption p {
				font-size: 14px;
			}
			
			.banner-image {
				margin-top: 0px;
			}
			
			.banner-image .title {
				width: 85%;
				font-size: 80%;
			}

			.message .message-div {
				width: 80%;
				left: calc(10% - 25px);
			}

			.content h1 {
				margin-right: 5px;
				min-width: 75%;
			}

			.content .content-text, .content .content-feature {
				width: 100%;
				padding: 0px;
			}
			
			.content .shout-out .poem {
				text-align: center;
			}

			.page-links .holding {
				width: 94%;
			}

			.page-link {
				width: 50%;
				padding: 0px 15px 0px 15px;
			}

			.case-study-category-link {
				width: 50%;
			}

			.tab-gallery-photo, .kitchen-case-study-link, .case-study-kitchen-link, .case-study-equipment-link {
				width: 50%;
			}

			.kitchen-link, .equipment-link {
				width: 50%;
			}

			.gallery-photos .holding {
				padding: 0px;
			}

			.gallery-photos .gallery-photo {
				border: solid 5px #transparent;
				width: 50%;
			}

			.gallery-photos .label {
				font-size: 1.3em;
				padding: 5px 0px 5px 0px;
			}

			.gallery-photos .different-sizes {
				margin: 10px 20px 10px 20px;
				line-height: 0;
				-webkit-column-count: 2;
				-moz-column-count:    2;
				column-count:         2;
				-webkit-column-gap:   20px;
				-moz-column-gap:      20px;
				column-gap:           20px;
			}

			.gallery-photos .different-sizes img {
				width: 100% !important;
				height: auto !important;
				padding: 10px 0px 10px 0px;
			}

			.gallery-link {
				padding: 20px 15px 10px 15px;
			}

			.request-brochure .request-form {
				width: 60%;
			}

			.request-brochure .request-image {
				width: 40%;
			}

			.enquiries input[type="text"], .enquiries textarea, .enquiries select {
				max-width: 85%;
				width: 85%;
			}
		
			.carousel-links .holding {
				height: 210px;
			}

			.carousel-links .carousel-link {
				width: 160px;
			}

			.towns {
				background-position: bottom center;
			}

			.towns .town {
				width:50%;
				padding: 5px;
			}

			.features .polaroid {
				width: 40%;
				max-width: 225px;
				margin: 20px 25px;
			}

			.features h3 {
				padding-top: 10px;
				padding-bottom: 10px;
			}

			.testimonial-link .quote {
				padding: 20px 20px 20px 25px;
				font-size: 80%;
			}
	
			.testimonial-link .quote p {
				text-align: left;
				padding: 0.8em 10px 0.1em 10px;
			}

			.testimonial-link .polaroid {
				width: 40%;
				/*max-width: 500px;*/
			}

			.contact-details .contact-links {
				font-size: 80%;
			}

			.footer .holding {
				padding: 15px 5px;
			}

			.footer .footer-contact-details, .footer .accreditations, .footer .footer-menu {
				font-size: 90%;
			}

			.footer .footer-contact-details, .footer .footer-menu  {
				width: 50%;
			}

			.footer .accreditations {
				width: 50%;
			}

			.footer .tagline {
				font-size: 1.6em;
			}
			
			.footer .social-icons, .footer .copyright {
				width: 100%;
				margin: 20px 0px 15px 0px;
				text-align: center;
			}

			.footer .social-icons ul {
				float: none;
			}

			.footer .social-icons li {
				padding: 0px 10px;
			}

			.footer .copyright p {
				margin: 0px;
			}

			.block-none-space, .block-none-space-border, .block-none-space-border-label,
			.block-right-space, .block-right-space-border, .block-right-space-border-label,
			.block-left-space, .block-left-space-border, .block-left-space-border-label {
				/* margin: 10px; */
			}

			.block-none-space img, .block-none-space-border img, .block-none-space-border-label img,
			.block-right-space img, .block-right-space-border img, .block-right-space-border-label img,
			.block-left-space img, .block-left-space-border img, .block-left-space-border-label img {
				max-width: 350px;
			}

			.block-slider-align-right {
				float:none;
				margin: 0px 0px 15px 0px;
				width:100%;
			}

		}

		/* width < 480px */
		@media only screen and (max-width: 479px) {

			table {
				font-size: 90%;
				border-spacing: 10px 2px;
			}
			
			.holding {
				width: 100%;
				background-color: blue;
			}

			.col-8 { width: 100%; }
			.col-7 { width: 100%; }
			.col-6 { width: 100%; }
			.col-5 { width: 100%; }
			.col-4 { width: 100%; }
			.col-3 { width: 100%; }
			.col-2 { width:33.33333333%; }
			.col-1 { width:33.33333333%; }

			.col-2-4 { width: 100%; }

			.computer-only, .header .computer-only, .sub-menu .holding, .hide-below-480, .hide-below-768, .hide-below-960, .hide-below-1024, .show-only-768, .show-only-960 {
				display: none;
			}

			.mobile-only, .header .mobile-only {
				display: initial;
			}

			.navigation {
				position: relative;
			}
			
			.header {
				border-top: solid 15px #001a02;
			}

			.header .logo {
				width: 100%;
				text-align:center;
			}
			
			.header .logo img {
				height: 200px;
			}

			.header .tag-line {
				font-size: 80%;
				padding: 20px 10px 20px 10px;
				width: 100%;
				text-align: center;
			}

			.header .contacts {
				width: 100%;
				text-align: center;
				padding: 0px 0px 0px 0px;
				font-size: 90%;
			}

			.header .contacts p {
				margin: 5px 0px 5px 0px;
			}
			
			.dropdown-menu .dropdown-content .sub-item {
				color: #888;
				padding-left: 40px;
				padding-right: 40px;
			}

			.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
				max-height: 300px;
			}

			.slideshow .caption {
				width: 90%;
			}

			.slideshow .caption h2 {
				font-size: 28px;
			}

			.slideshow .caption p {
				font-size: 12px;
			}

			.banner-image {
				margin-top: 0px;
			}
			
			.banner-image .title {
				width: 90%;
				font-size: 70%;
				right: 0px;
			}
			
			.message .message-div {
				width: 84%;
				left: calc(8% - 25px);
			}

			.content h1 {
				margin-right: 15px;
				min-width: 75%;
				padding-right: 50px;
			}

			.content .content-text, .content .content-feature {
				width: 100%;
				padding: 0px;
			}

			.content .shout-out .poem {
				text-align: center;
			}

			.page-link {
				width: 100%;
				padding: 0px 15px 0px 15px;
			}

			.page-link p {
				font-size: 1.2em;
			}

			.prev, .next {
				margin-right: 0px;
				margin-left: 0px;
			}

			.tab-gallery-photo, .kitchen-case-study-link, .case-study-kitchen-link, .case-study-equipment-link {
				padding: 5px 0px 0px 0px;
			}

			.about-link {
				width: 50%;
			}

			.gallery-photos .holding {
				padding: 6px;
			}

			.gallery-photos .gallery-photo {
				border: solid 3px #transparent;
			}

			.gallery-photos .label {
				font-size: 1.4em;
				padding: 5px 0px 5px 0px;
			}

			.gallery-photos .different-sizes {
				margin: 4px 14px 4px 14px;
				line-height: 0;
				-webkit-column-count: 1;
				-moz-column-count:    1;
				column-count:         1;
				-webkit-column-gap:   20px;
				-moz-column-gap:      20px;
				column-gap:           20px;
			}

			.gallery-photos .different-sizes img {
				width: 100% !important;
				height: auto !important;
				padding: 10px 0px 10px 0px;
			}

			.gallery-link {
				width: 50%;
				padding: 20px 12px 10px 12px;
			}

			.request-brochure .request-image {
				min-height: 180px;
			}

			.bespoke-design blockquote {
				font-size: 1.3em;
				margin: 45px 0px 25px 0px;
			}

			.enquiries input[type="text"], .enquiries textarea, .enquiries select {
				max-width: 95%;
				width: 95%;
			}
		
			.carousel-links .holding {			
				height: 200px;
			}

			.carousel-links .carousel-link {
				width: 150px;
			}

			.towns {
				background-position: bottom center;
			}

			.towns .town {
				width:50%;
				padding: 5px;
			}	

			.features .polaroid {
				width: 40%;
				max-width: 200px;
				margin: 20px 15px;
			}

			.features .polaroid.left {
				margin-right:25px;
			}

			.features .polaroid.right {
				margin-left:25px;
			}

			.features h3 {
				padding-top: 10px;
				padding-bottom: 10px;
			}

			.features p {
				font-size: 90%;
			}

			.testimonial-link .quote {
				padding: 10px 10px 10px 30px;
			}

			.testimonial-link .polaroid {
				width: 70%;
				max-width: 500px;
			}

			.contact-details .contact-links {
				font-size: 70%;
			}
			
			.contact-details .contact-links .contact-for {
				display: none;
			}
			
			.footer .footer-contact-details, .footer .accreditations {
				width: 100%;
				margin-bottom: 15px;
			}
			
			.footer .tagline {
				font-size: 1.5em;
			}
			
			.footer .social-icons, .footer .copyright {
				width: 100%;
				margin: 20px 0px 15px 0px;
				text-align: center;
			}

			.footer .social-icons ul {
				float: none;
			}

			.footer .social-icons li {
				padding: 0px 10px;
			}

			.footer .copyright p {
				margin: 0px;
			}
			
			.indent-20, .indent-30, .indent-50 {
				margin-left: 0px;
			}

			.block-none-space, .block-none-space-border, .block-none-space-border-label,
			.block-right-space, .block-right-space-border, .block-right-space-border-label {
				margin: 10px 0px 10px 10px;
			}

			.block-left-space, .block-left-space-border, .block-left-space-border-label {
				margin: 10px 10px 10px 0px;
			}

			.block-none-space img, .block-none-space-border img, .block-none-space-border-label img,
			.block-right-space img, .block-right-space-border img, .block-right-space-border-label img,
			.block-left-space img, .block-left-space-border img, .block-left-space-border-label img {
				/*width: 80%;*/
				max-width: 250px;
			}

			.block-slider-align-right {
				float:none;
				margin: 0px 0px 15px 0px;
				width:100%;
			}

		}

	/* END Screen Size Dependent Formatting */