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, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}



mark {
	background-color: transparent;
	color: inherit;
}



/* Basic */


	@media screen and (max-width: 480px) {

		html, body {
			min-width: 320px;
		}

	}

	html {
		box-sizing: border-box;
	}

	*, *:before, *:after {
		box-sizing: inherit;
	}

	body {
		background: #000000;
	}


/* Type */

	body {
		background-color: #ffffff;
		color: #5a5a5a;
	}

	body, input, select, textarea {
		font-family: 'Fira Sans Condensed', sans-serif;
		font-size: 13pt;
		font-weight: 300;
		line-height: 1.75;
	}

		@media screen and (max-width: 1680px) {

			body, input, select, textarea {
				font-size: 11pt;
			}

		}

	a {
		color: #76D6FF;
	}

		a:hover {
			text-decoration: none;
		}

	strong, b {
		font-weight: 400;
	}

	em, i {
		font-style: italic;
	}

	p {
		margin: 0 0 1em 0;
	}

	h1, h2, h3, h4, h5, h6 {
		font-family: 'Fira Sans Condensed', sans-serif;
        line-height: 1.5;
		letter-spacing: 0.04em;
		margin: 0 0 1em 0;
	}

		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
			color: inherit;
			text-decoration: none;
		}

	h1 {
		font-size: 3.25em;
		line-height: 1.3;
	}

	h2 {
		font-size: 2em;
	}

	h3 {
		font-size: 1.2em;
		font-weight: 400;
	}

	h4 {
		font-size: 1em;
		font-weight: 400;
	}

	h5 {
		font-size: 1em;
		font-weight: 400;
	}

	h6 {
		font-size: 1em;
		font-weight: 400;
	}

	@media screen and (max-width: 1280px) {

		h1 {
			font-size: 2.5em;
			line-height: 1.5;
		}

		h2 {
			font-size: 1.75em;
		}

		h3 {
			font-size: 1em;
		}

		h4 {
			font-size: 1em;
		}

	}

	@media screen and (max-width: 736px) {

		h1 {
			font-size: 1.75em;
		}

		h2 {
			font-size: 1.25em;
		}

		h3 {
			font-size: 1em;
		}

	}

	sub {
		font-size: 0.8em;
		position: relative;
		top: 0.5em;
	}

	sup {
		font-size: 0.8em;
		position: relative;
		top: -0.5em;
	}

	blockquote {
		border-left: dashed 1px;
        border-left-color: #76D6FF;
		font-style: italic;
		margin: 0 0 2em 0;
		padding: 0.5em 0 0.5em 2em;
	}

	hr {
		border: 0;
		border-bottom: solid 1px;
		margin: 0.5em 2em 0em 1em;
        border-bottom-color: rgba(255, 255, 255, 0.6);
	}

    hr.major {
        margin: 3em 0;
		}

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

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

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

	input, select, textarea {
		color: #333333;
	}

	a {
		color: #76D6FF;
	}

	strong, b {
		color: #333333;
	}

	h1, h2, h3, h4, h5, h6 {
	color: #76D6FF;
    font-size: 2em;
	}


/* Row */

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

		.row > * {
			box-sizing: border-box;
		}

		.row.gtr-uniform > * > :last-child {
			margin-bottom: 0;
		}

		.row.aln-left {
			justify-content: flex-start;
		}

		.row.aln-center {
			justify-content: center;
		}

		.row.aln-right {
			justify-content: flex-end;
		}

		.row.aln-top {
			align-items: flex-start;
		}

		.row.aln-middle {
			align-items: center;
		}

		.row.aln-bottom {
			align-items: flex-end;
		}

		.row > .imp {
			order: -1;
		}

		.row > .col-1 {
			width: 8.33333%;
		}

		.row > .off-1 {
			margin-left: 8.33333%;
		}

		.row > .col-2 {
			width: 16.66667%;
		}

		.row > .off-2 {
			margin-left: 16.66667%;
		}

		.row > .col-3 {
			width: 25%;
		}

		.row > .off-3 {
			margin-left: 25%;
		}

		.row > .col-4 {
			width: 33.33333%;
		}

		.row > .off-4 {
			margin-left: 33.33333%;
		}

		.row > .col-5 {
			width: 41.66667%;
		}

		.row > .off-5 {
			margin-left: 41.66667%;
		}

		.row > .col-6 {
			width: 50%;
		}

		.row > .off-6 {
			margin-left: 50%;
		}

		.row > .col-7 {
			width: 58.33333%;
		}

		.row > .off-7 {
			margin-left: 58.33333%;
		}

		.row > .col-8 {
			width: 66.66667%;
		}

		.row > .off-8 {
			margin-left: 66.66667%;
		}

		.row > .col-9 {
			width: 75%;
		}

		.row > .off-9 {
			margin-left: 75%;
		}

		.row > .col-10 {
			width: 83.33333%;
		}

		.row > .off-10 {
			margin-left: 83.33333%;
		}

		.row > .col-11 {
			width: 91.66667%;
		}

		.row > .off-11 {
			margin-left: 91.66667%;
		}

		.row > .col-12 {
			width: 100%;
		}

		.row > .off-12 {
			margin-left: 100%;
		}

		.row.gtr-0 {
			margin-top: 0;
			margin-left: 0em;
		}

			.row.gtr-0 > * {
				padding: 0 0 0 0em;
			}

			.row.gtr-0.gtr-uniform {
				margin-top: 0em;
			}

				.row.gtr-0.gtr-uniform > * {
					padding-top: 0em;
				}

		.row.gtr-25 {
			margin-top: 0;
			margin-left: -0.5em;
		}

			.row.gtr-25 > * {
				padding: 0 0 0 0.5em;
			}

			.row.gtr-25.gtr-uniform {
				margin-top: -0.5em;
			}

				.row.gtr-25.gtr-uniform > * {
					padding-top: 0.5em;
				}

		.row.gtr-50 {
			margin-top: 0;
			margin-left: -1em;
		}

			.row.gtr-50 > * {
				padding: 0 0 0 1em;
			}

			.row.gtr-50.gtr-uniform {
				margin-top: -1em;
			}

				.row.gtr-50.gtr-uniform > * {
					padding-top: 1em;
				}

		.row {
			margin-top: 0;
			margin-left: -2em;
		}

			.row > * {
				padding: 0 0 0 2em;
			}

			.row.gtr-uniform {
				margin-top: -2em;
			}

				.row.gtr-uniform > * {
					padding-top: 2em;
				}

		.row.gtr-150 {
			margin-top: 0;
			margin-left: -3em;
		}

			.row.gtr-150 > * {
				padding: 0 0 0 3em;
			}

			.row.gtr-150.gtr-uniform {
				margin-top: -3em;
			}

				.row.gtr-150.gtr-uniform > * {
					padding-top: 3em;
				}

		.row.gtr-200 {
			margin-top: 0;
			margin-left: -4em;
		}

			.row.gtr-200 > * {
				padding: 0 0 0 4em;
			}

			.row.gtr-200.gtr-uniform {
				margin-top: -4em;
			}

				.row.gtr-200.gtr-uniform > * {
					padding-top: 4em;
				}

		@media screen and (max-width: 1680px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-xlarge {
					order: -1;
				}

				.row > .col-1-xlarge {
					width: 8.33333%;
				}

				.row > .off-1-xlarge {
					margin-left: 8.33333%;
				}

				.row > .col-2-xlarge {
					width: 16.66667%;
				}

				.row > .off-2-xlarge {
					margin-left: 16.66667%;
				}

				.row > .col-3-xlarge {
					width: 25%;
				}

				.row > .off-3-xlarge {
					margin-left: 25%;
				}

				.row > .col-4-xlarge {
					width: 33.33333%;
				}

				.row > .off-4-xlarge {
					margin-left: 33.33333%;
				}

				.row > .col-5-xlarge {
					width: 41.66667%;
				}

				.row > .off-5-xlarge {
					margin-left: 41.66667%;
				}

				.row > .col-6-xlarge {
					width: 50%;
				}

				.row > .off-6-xlarge {
					margin-left: 50%;
				}

				.row > .col-7-xlarge {
					width: 58.33333%;
				}

				.row > .off-7-xlarge {
					margin-left: 58.33333%;
				}

				.row > .col-8-xlarge {
					width: 66.66667%;
				}

				.row > .off-8-xlarge {
					margin-left: 66.66667%;
				}

				.row > .col-9-xlarge {
					width: 75%;
				}

				.row > .off-9-xlarge {
					margin-left: 75%;
				}

				.row > .col-10-xlarge {
					width: 83.33333%;
				}

				.row > .off-10-xlarge {
					margin-left: 83.33333%;
				}

				.row > .col-11-xlarge {
					width: 91.66667%;
				}

				.row > .off-11-xlarge {
					margin-left: 91.66667%;
				}

				.row > .col-12-xlarge {
					width: 100%;
				}

				.row > .off-12-xlarge {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.5em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.5em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.5em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.5em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -1em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 1em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -1em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 1em;
						}

				.row {
					margin-top: 0;
					margin-left: -2em;
				}

					.row > * {
						padding: 0 0 0 2em;
					}

					.row.gtr-uniform {
						margin-top: -2em;
					}

						.row.gtr-uniform > * {
							padding-top: 2em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -3em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 3em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -3em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 3em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -4em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 4em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -4em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 4em;
						}

		}

		@media screen and (max-width: 1280px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-large {
					order: -1;
				}

				.row > .col-1-large {
					width: 8.33333%;
				}

				.row > .off-1-large {
					margin-left: 8.33333%;
				}

				.row > .col-2-large {
					width: 16.66667%;
				}

				.row > .off-2-large {
					margin-left: 16.66667%;
				}

				.row > .col-3-large {
					width: 25%;
				}

				.row > .off-3-large {
					margin-left: 25%;
				}

				.row > .col-4-large {
					width: 33.33333%;
				}

				.row > .off-4-large {
					margin-left: 33.33333%;
				}

				.row > .col-5-large {
					width: 41.66667%;
				}

				.row > .off-5-large {
					margin-left: 41.66667%;
				}

				.row > .col-6-large {
					width: 50%;
				}

				.row > .off-6-large {
					margin-left: 50%;
				}

				.row > .col-7-large {
					width: 58.33333%;
				}

				.row > .off-7-large {
					margin-left: 58.33333%;
				}

				.row > .col-8-large {
					width: 66.66667%;
				}

				.row > .off-8-large {
					margin-left: 66.66667%;
				}

				.row > .col-9-large {
					width: 75%;
				}

				.row > .off-9-large {
					margin-left: 75%;
				}

				.row > .col-10-large {
					width: 83.33333%;
				}

				.row > .off-10-large {
					margin-left: 83.33333%;
				}

				.row > .col-11-large {
					width: 91.66667%;
				}

				.row > .off-11-large {
					margin-left: 91.66667%;
				}

				.row > .col-12-large {
					width: 100%;
				}

				.row > .off-12-large {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.375em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.375em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.375em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.375em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -0.75em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 0.75em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -0.75em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 0.75em;
						}

				.row {
					margin-top: 0;
					margin-left: -1.5em;
				}

					.row > * {
						padding: 0 0 0 1.5em;
					}

					.row.gtr-uniform {
						margin-top: -1.5em;
					}

						.row.gtr-uniform > * {
							padding-top: 1.5em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -2.25em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 2.25em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -2.25em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 2.25em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -3em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 3em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -3em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 3em;
						}

		}

		@media screen and (max-width: 980px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-medium {
					order: -1;
				}

				.row > .col-1-medium {
					width: 8.33333%;
				}

				.row > .off-1-medium {
					margin-left: 8.33333%;
				}

				.row > .col-2-medium {
					width: 16.66667%;
				}

				.row > .off-2-medium {
					margin-left: 16.66667%;
				}

				.row > .col-3-medium {
					width: 25%;
				}

				.row > .off-3-medium {
					margin-left: 25%;
				}

				.row > .col-4-medium {
					width: 33.33333%;
				}

				.row > .off-4-medium {
					margin-left: 33.33333%;
				}

				.row > .col-5-medium {
					width: 41.66667%;
				}

				.row > .off-5-medium {
					margin-left: 41.66667%;
				}

				.row > .col-6-medium {
					width: 50%;
				}

				.row > .off-6-medium {
					margin-left: 50%;
				}

				.row > .col-7-medium {
					width: 58.33333%;
				}

				.row > .off-7-medium {
					margin-left: 58.33333%;
				}

				.row > .col-8-medium {
					width: 66.66667%;
				}

				.row > .off-8-medium {
					margin-left: 66.66667%;
				}

				.row > .col-9-medium {
					width: 75%;
				}

				.row > .off-9-medium {
					margin-left: 75%;
				}

				.row > .col-10-medium {
					width: 83.33333%;
				}

				.row > .off-10-medium {
					margin-left: 83.33333%;
				}

				.row > .col-11-medium {
					width: 91.66667%;
				}

				.row > .off-11-medium {
					margin-left: 91.66667%;
				}

				.row > .col-12-medium {
					width: 100%;
				}

				.row > .off-12-medium {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.375em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.375em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.375em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.375em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -0.75em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 0.75em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -0.75em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 0.75em;
						}

				.row {
					margin-top: 0;
					margin-left: -1.5em;
				}

					.row > * {
						padding: 0 0 0 1.5em;
					}

					.row.gtr-uniform {
						margin-top: -1.5em;
					}

						.row.gtr-uniform > * {
							padding-top: 1.5em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -2.25em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 2.25em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -2.25em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 2.25em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -3em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 3em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -3em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 3em;
						}

		}

		@media screen and (max-width: 736px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-small {
					order: -1;
				}

				.row > .col-1-small {
					width: 8.33333%;
				}

				.row > .off-1-small {
					margin-left: 8.33333%;
				}

				.row > .col-2-small {
					width: 16.66667%;
				}

				.row > .off-2-small {
					margin-left: 16.66667%;
				}

				.row > .col-3-small {
					width: 25%;
				}

				.row > .off-3-small {
					margin-left: 25%;
				}

				.row > .col-4-small {
					width: 33.33333%;
				}

				.row > .off-4-small {
					margin-left: 33.33333%;
				}

				.row > .col-5-small {
					width: 41.66667%;
				}

				.row > .off-5-small {
					margin-left: 41.66667%;
				}

				.row > .col-6-small {
					width: 50%;
				}

				.row > .off-6-small {
					margin-left: 50%;
				}

				.row > .col-7-small {
					width: 58.33333%;
				}

				.row > .off-7-small {
					margin-left: 58.33333%;
				}

				.row > .col-8-small {
					width: 66.66667%;
				}

				.row > .off-8-small {
					margin-left: 66.66667%;
				}

				.row > .col-9-small {
					width: 75%;
				}

				.row > .off-9-small {
					margin-left: 75%;
				}

				.row > .col-10-small {
					width: 83.33333%;
				}

				.row > .off-10-small {
					margin-left: 83.33333%;
				}

				.row > .col-11-small {
					width: 91.66667%;
				}

				.row > .off-11-small {
					margin-left: 91.66667%;
				}

				.row > .col-12-small {
					width: 100%;
				}

				.row > .off-12-small {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.3125em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.3125em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.3125em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.3125em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -0.625em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 0.625em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -0.625em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 0.625em;
						}

				.row {
					margin-top: 0;
					margin-left: -1.25em;
				}

					.row > * {
						padding: 0 0 0 1.25em;
					}

					.row.gtr-uniform {
						margin-top: -1.25em;
					}

						.row.gtr-uniform > * {
							padding-top: 1.25em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -1.875em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 1.875em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -1.875em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 1.875em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -2.5em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 2.5em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -2.5em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 2.5em;
						}

		}

		@media screen and (max-width: 480px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-xsmall {
					order: -1;
				}

				.row > .col-1-xsmall {
					width: 8.33333%;
				}

				.row > .off-1-xsmall {
					margin-left: 8.33333%;
				}

				.row > .col-2-xsmall {
					width: 16.66667%;
				}

				.row > .off-2-xsmall {
					margin-left: 16.66667%;
				}

				.row > .col-3-xsmall {
					width: 25%;
				}

				.row > .off-3-xsmall {
					margin-left: 25%;
				}

				.row > .col-4-xsmall {
					width: 33.33333%;
				}

				.row > .off-4-xsmall {
					margin-left: 33.33333%;
				}

				.row > .col-5-xsmall {
					width: 41.66667%;
				}

				.row > .off-5-xsmall {
					margin-left: 41.66667%;
				}

				.row > .col-6-xsmall {
					width: 50%;
				}

				.row > .off-6-xsmall {
					margin-left: 50%;
				}

				.row > .col-7-xsmall {
					width: 58.33333%;
				}

				.row > .off-7-xsmall {
					margin-left: 58.33333%;
				}

				.row > .col-8-xsmall {
					width: 66.66667%;
				}

				.row > .off-8-xsmall {
					margin-left: 66.66667%;
				}

				.row > .col-9-xsmall {
					width: 75%;
				}

				.row > .off-9-xsmall {
					margin-left: 75%;
				}

				.row > .col-10-xsmall {
					width: 83.33333%;
				}

				.row > .off-10-xsmall {
					margin-left: 83.33333%;
				}

				.row > .col-11-xsmall {
					width: 91.66667%;
				}

				.row > .off-11-xsmall {
					margin-left: 91.66667%;
				}

				.row > .col-12-xsmall {
					width: 100%;
				}

				.row > .off-12-xsmall {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.3125em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.3125em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.3125em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.3125em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -0.625em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 0.625em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -0.625em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 0.625em;
						}

				.row {
					margin-top: 0;
					margin-left: -1.25em;
				}

					.row > * {
						padding: 0 0 0 1.25em;
					}

					.row.gtr-uniform {
						margin-top: -1.25em;
					}

						.row.gtr-uniform > * {
							padding-top: 1.25em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -1.875em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 1.875em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -1.875em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 1.875em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -2.5em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 2.5em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -2.5em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 2.5em;
						}

		}

/* Box */

	.box {
		border-radius: 4px;
		border: solid 1px;
		margin-bottom: 2em;
		padding: 1.5em;
	}

		.box > :last-child,
		.box > :last-child > :last-child,
		.box > :last-child > :last-child > :last-child {
			margin-bottom: 0;
		}

		.box.alt {
			border: 0;
			border-radius: 0;
			padding: 0;
		}

	.box {
		border-color: #76D6FF;
	}



/* Quotes */

	.quotes {
		display: flex;
		flex-wrap: wrap;
		background-color: #76D6FF;
		color: rgba(255, 255, 255, 0.75);
		text-align: center;
	}

		.quotes input, .quotes select, .quotes textarea {
			color: #ffffff;
		}

		.quotes a {
			color: #ffffff;
		}

		.quotes strong, .quotes b {
			color: #ffffff;
		}

		.quotes h1, .quotes h2, .quotes h3, .quotes h4, .quotes h5, .quotes h6 {
			color: #ffffff;
		}

		.quotes blockquote {
			border-left-color: rgba(255, 255, 255, 0.25);
		}


		@media screen and (max-width: 1280px) {

			.quotes > article:nth-child(odd) {
				padding-left: 3em;
				padding-right: 3em;
			}

			.quotes > article:nth-child(even) {
				padding-left: 3em;
				padding-right: 3em;
			}

		}

		@media screen and (max-width: 980px) {

			.quotes > article {
				width: 100%;
			}

		}

		@media screen and (max-width: 736px) {

			.quotes > article {
				padding: 4em 0 2em 0 ;
			}

		}



/* Button */

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
        appearance: none;
		transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
		border-radius: 4px;
		border: 0;
		cursor: pointer;
		display: inline-block;
		font-size: 0.9em;
		font-weight: 400;
		height: 3.5em;
		letter-spacing: 0.05em;
		line-height: 3.5em;
		padding: 0 2em;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		white-space: nowrap;
	}

		input[type="submit"].icon:before,
		input[type="reset"].icon:before,
		input[type="button"].icon:before,
		button.icon:before,
		.button.icon:before {
			margin-right: 0.5em;
		}

		input[type="submit"].fit,
		input[type="reset"].fit,
		input[type="button"].fit,
		button.fit,
		.button.fit {
			width: 100%;
		}

		input[type="submit"].small,
		input[type="reset"].small,
		input[type="button"].small,
		button.small,
		.button.small {
			font-size: 0.8em;
            font-weight: 400;
		}

		input[type="submit"].large,
		input[type="reset"].large,
		input[type="button"].large,
		button.large,
		.button.large {
			font-size: 1.1em;
		}

		input[type="submit"].wide,
		input[type="reset"].wide,
		input[type="button"].wide,
		button.wide,
		.button.wide {
			min-width: 15em;
		}

		input[type="submit"].disabled, input[type="submit"]:disabled,
		input[type="reset"].disabled,
		input[type="reset"]:disabled,
		input[type="button"].disabled,
		input[type="button"]:disabled,
		button.disabled,
		button:disabled,
		.button.disabled,
		.button:disabled {
			pointer-events: none;
			opacity: 0.25;
		}

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
		background-color: transparent;
		box-shadow: inset 0 0 0 1px #5a5a5a;
		color: #333333 !important;
	}

		input[type="submit"]:hover,
		input[type="reset"]:hover,
		input[type="button"]:hover,
		button:hover,
		.button:hover {
			background-color: rgba(144, 144, 144, 0.075);
		}

		input[type="submit"]:active,
		input[type="reset"]:active,
		input[type="button"]:active,
		button:active,
		.button:active {
			background-color: rgba(144, 144, 144, 0.2);
		}

		input[type="submit"].icon:before,
		input[type="reset"].icon:before,
		input[type="button"].icon:before,
		button.icon:before,
		.button.icon:before {
			color: #aaaaaa;
		}

		input[type="submit"].primary,
		input[type="reset"].primary,
		input[type="button"].primary,
		button.primary,
		.button.primary {
			box-shadow: none;
			background-color: #76D6FF;
			color: #ffffff !important;
		}

			input[type="submit"].primary.icon:before,
			input[type="reset"].primary.icon:before,
			input[type="button"].primary.icon:before,
			button.primary.icon:before,
			.button.primary.icon:before {
				color: #ffffff !important;
			}

			input[type="submit"].primary:hover,
			input[type="reset"].primary:hover,
			input[type="button"].primary:hover,
			button.primary:hover,
			.button.primary:hover {
				background-color: #999999;
			}

			input[type="submit"].primary:active,
			input[type="reset"].primary:active,
			input[type="button"].primary:active,
			button.primary:active,
			.button.primary:active {
				background-color: #ff7162;
			}

/* Form */

	form {
		margin: 0 0 2em 0;
	}

		form > :last-child {
			margin-bottom: 0;
		}

		form > .fields {
			
			width: calc(100% + 3em);
			margin: -1.5em 0 2em -1.5em;
		}

			form > .fields > .field {
				-moz-flex-grow: 0;
				-webkit-flex-grow: 0;
				-ms-flex-grow: 0;
				flex-grow: 0;
				-moz-flex-shrink: 0;
				-webkit-flex-shrink: 0;
				-ms-flex-shrink: 0;
				flex-shrink: 0;
				padding: 1.5em 0 0 1.5em;
				width: calc(100% - 1.5em);
			}

				form > .fields > .field.half {
					width: calc(50% - 0.75em);
				}

				form > .fields > .field.third {
					width: calc(100%/3 - 0.5em);
				}

				form > .fields > .field.quarter {
					width: calc(25% - 0.375em);
				}

		@media screen and (max-width: 480px) {

			form > .fields {
				width: calc(100% + 3em);
				margin: -1.5em 0 2em -1.5em;
			}

				form > .fields > .field {
					padding: 1.5em 0 0 1.5em;
					width: calc(100% - 1.5em);
				}

					form > .fields > .field.half {
						width: calc(100% - 1.5em);
					}

					form > .fields > .field.third {
						width: calc(100% - 1.5em);
					}

					form > .fields > .field.quarter {
						width: calc(100% - 1.5em);
					}

		}

	label {
		display: block;
		font-size: 0.9em;
		font-weight: 400;
		margin: 0 0 1em 0;
	}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	select,
	textarea {
		appearance: none;
		border-radius: 4px;
		border: solid 1px;
		color: inherit;
		display: block;
		outline: 0;
		padding: 0 1em;
		text-decoration: none;
		width: 100%;
	}

		input[type="text"]:invalid,
		input[type="password"]:invalid,
		input[type="email"]:invalid,
		select:invalid,
		textarea:invalid {
			box-shadow: none;
		}

	select {
		background-size: 1.25rem;
		background-repeat: no-repeat;
		background-position: calc(100% - 1rem) center;
		height: 3.5em;
		padding-right: 3.5em;
		text-overflow: ellipsis;
	}

		select:focus::-ms-value {
			background-color: transparent;
		}

		select::-ms-expand {
			display: none;
		}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	select {
		height: 3.5em;
	}

	textarea {
		padding: 0.75em 1em;
		resize: vertical;
	}

	input[type="checkbox"],
	input[type="radio"] {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		display: block;
		float: left;
		margin-right: -2em;
		opacity: 0;
		width: 1em;
		z-index: -1;
	}

		input[type="checkbox"] + label,
		input[type="radio"] + label {
			text-decoration: none;
			cursor: pointer;
			display: inline-block;
			font-size: 1em;
			font-weight: 300;
			padding-left: 2.85em;
			padding-right: 0.75em;
			position: relative;
		}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				
				font-weight: 900;
			}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				border-radius: 4px;
				border: solid 1px;
				content: '';
				display: inline-block;
				font-size: 0.8em;
				height: 2.625em;
				left: 0;
				line-height: 2.625em;
				position: absolute;
				text-align: center;
				top: 0;
				width: 2.625em;
			}

		input[type="checkbox"]:checked + label:before,
		input[type="radio"]:checked + label:before {
			content: '\f00c';
		}

	input[type="checkbox"] + label:before {
		border-radius: 4px;
	}

	input[type="radio"] + label:before {
		border-radius: 100%;
	}

	::-webkit-input-placeholder {
		opacity: 1.0;
	}

	:-moz-placeholder {
		opacity: 1.0;
	}

	::-moz-placeholder {
		opacity: 1.0;
	}

	:-ms-input-placeholder {
		opacity: 1.0;
	}

	label {
		color: #333333;
	}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	select,
	textarea {
		background-color: transparent;
		border-color: rgba(144, 144, 144, 0.25);
	}

		input[type="text"]:focus,
		input[type="password"]:focus,
		input[type="email"]:focus,
		select:focus,
		textarea:focus {
			border-color: #76D6FF;
			box-shadow: 0 0 0 1px #76D6FF;
		}

		select option {
			color: #333333;
			background: #ffffff;
		}

	input[type="checkbox"] + label,
	input[type="radio"] + label {
		color: #5a5a5a;
	}

		input[type="checkbox"] + label:before,
		input[type="radio"] + label:before {
			background: rgba(144, 144, 144, 0.075);
			border-color: rgba(144, 144, 144, 0.25);
		}

	input[type="checkbox"]:checked + label:before,
	input[type="radio"]:checked + label:before {
		background-color: #76D6FF;
		border-color: #76D6FF;
		color: #ffffff;
	}

	input[type="checkbox"]:focus + label:before,
	input[type="radio"]:focus + label:before {
		border-color: #76D6FF;
		box-shadow: 0 0 0 1px #76D6FF;
	}

	::-webkit-input-placeholder {
		color: #aaaaaa !important;
	}

	:-moz-placeholder {
		color: #aaaaaa !important;
	}

	::-moz-placeholder {
		color: #aaaaaa !important;
	}

	:-ms-input-placeholder {
		color: #aaaaaa !important;
	}

	.formerize-placeholder {
		color: #aaaaaa !important;
	}




/* Image */

	.image {
		
		border: 0;
		display: inline-block;
		margin: 0 0 2em 0;
		position: relative;
	}

		.image img {
			
			display: block;
		}

		.image.left, .image.right {
			max-width: 45%;
		}

			.image.left img, .image.right img {
				width: 100%;
			}

		.image.left {
			float: left;
			margin: 0 1.5em 1em 0;
			top: 0.25em;
            
		}

        .image.center {
			
			margin: 0;
			top: 0.25em;
            
		}

		.image.right {
			float: right;
			margin: 0 0 1em 1.5em;
			top: 0.25em;
		}

		.image.fit {
			display: block;
			width: 100%;
		}

			.image.fit img {
				width: 100%;
			}


        .image.fitter {
			display: block;
			width: 100%;
            
		}

			.image.fitter img {
				width: 100%;
			}

		.image.main {
			display: block;
			margin: 0 0 3em 0;
			width: 100%;
		}

			.image.main img {
				width: 100%;
			}

		@media screen and (max-width: 980px) {

			.image.fit.portrait img {

				object-fit: cover;
				object-position: center;
				max-height: 30em;
			}

		}

		@media screen and (max-width: 736px) {

			.image.fit.portrait img {
				max-height: 20em;
			}

			.image.main {
				margin: 0 0 2em 0;
			}

		}

/* List */

	ol {
		list-style: decimal;
		margin: 0 0 2em 0;
		padding-left: 1.25em;
	}

		ol li {
			padding-left: 0.25em;
		}

	ul {
		list-style:square;
		margin: 0 0 2em 0;
		padding-left: 1em;
	}

		ul li {
			padding-left: 0.5em;
            font-size: 1em;
            color: #5a5a5a;
		}

		ul.alt {
			list-style: none;
			padding-left: 0;
		}

			ul.alt li {
				border-top: solid 1px;
				padding: 0.5em 0;
			}

				ul.alt li:first-child {
					border-top: 0;
					padding-top: 0;
				}

	dl {
		margin: 0 0 2em 0;
	}

		dl dt {
			display: block;
			font-weight: 400;
			margin: 0 0 1em 0;
		}

		dl dd {
			margin-left: 2em;
		}

	ul.alt li {
		border-top-color: rgba(144, 144, 144, 0.25);
	}

/* Icons */

	ul.icons {
		cursor: default;
		list-style: none;
		margin-left: -1em;
		margin-top: -1em;
		padding-left: 0;
	}

		ul.icons li {
			display: inline-block;
			padding: 1em 0 0 1em;
		}

			ul.icons li:last-child {
				padding-right: 0;
			}

			ul.icons li .icon:before {
				font-size: 1.25em;
			}

/* Actions */

	ul.actions {
		display: flex;
		cursor: default;
		list-style: none;
		margin-left: -1em;
		padding-left: 0;
	}

		ul.actions li {
			padding: 0 0 0 1em;
			vertical-align: middle;
		}

		ul.actions.special {
			justify-content: center;
			width: 100%;
			margin-left: 0;
		}

			ul.actions.special li:first-child {
				padding-left: 0;
			}

		ul.actions.stacked {
			flex-direction: column;
			margin-left: 0;
		}

			ul.actions.stacked li {
				padding: 1.3em 0 0 0;
			}

				ul.actions.stacked li:first-child {
					padding-top: 0;
				}

		ul.actions.fit {
			width: calc(100% + 1em);
		}

			ul.actions.fit li {
				flex-grow: 1;
				flex-shrink: 1;
				width: 100%;
			}

				ul.actions.fit li > * {
					width: 100%;
				}

			ul.actions.fit.stacked {
				width: 100%;
			}

		@media screen and (max-width: 480px) {

			ul.actions:not(.fixed) {
				flex-direction: column;
				margin-left: 0;
				width: 100% !important;
			}

				ul.actions:not(.fixed) li {
					flex-grow: 1;
					flex-shrink: 1;
					padding: 1em 0 0 0;
					text-align: center;
					width: 100%;
				}

					ul.actions:not(.fixed) li > * {
						width: 100%;
					}

					ul.actions:not(.fixed) li:first-child {
						padding-top: 0;
					}

					ul.actions:not(.fixed) li input[type="submit"],
					ul.actions:not(.fixed) li input[type="reset"],
					ul.actions:not(.fixed) li input[type="button"],
					ul.actions:not(.fixed) li button,
					ul.actions:not(.fixed) li .button {
						width: 100%;
					}

						ul.actions:not(.fixed) li input[type="submit"].icon:before,
						ul.actions:not(.fixed) li input[type="reset"].icon:before,
						ul.actions:not(.fixed) li input[type="button"].icon:before,
						ul.actions:not(.fixed) li button.icon:before,
						ul.actions:not(.fixed) li .button.icon:before {
							margin-left: -0.5em;
						}

		}

/* Icons (Bordered) */

	ul.icons-bordered {
		list-style: none;
		margin-left: -1em;
		margin-top: -1em;
		padding-left: 0;
	}

		ul.icons-bordered li {
			display: inline-block;
			padding: 1em 0 0 1em;
		}

			ul.icons-bordered li:last-child {
				padding-right: 0;
			}

			ul.icons-bordered li .icon {
				transition: background-color 0.2s ease-in-out;
				border-radius: 4px;
				border-style: solid;
				border-width: 1px;
				display: block;
				font-size: 1.25em;
				height: 2.25em;
				line-height: 2.25em;
				text-align: center;
				width: 2.25em;
			}

	ul.icons-bordered .icon {
		border-color: #5a5a5a;
	}

		ul.icons-bordered .icon:hover {
			background-color: rgba(144, 144, 144, 0.075);
		}

		ul.icons-bordered .icon:active {
			background-color: rgba(144, 144, 144, 0.2);
		}


/* Section/Article */

	section.special, article.special {
		text-align: center;
	}

	header p {
		position: relative;
		margin: 0 0 2em 0;
	}

	header h1 + p {
		font-size: 1.5em;
		margin-top: -2.65em;
	}

	header h2 + p {
		font-family: 'Fira Sans Condensed', sans-serif;
        font-size: 1em;
		margin-top: -2em;
        text-transform: uppercase;
	}

	header h3 + p {
		font-size: 1em;
		margin-top: -1.25em;
	}

	header h4 + p,
	header h5 + p,
	header h6 + p {
		font-size: 0.9em;
		margin-top: -0.65em;
	}

	@media screen and (max-width: 1280px) {

		header h1 + p {
			font-size: 1.25em;
			margin-top: -2.5em;
		}

		header h2 + p {
			font-size: 1em;
			margin-top: -2em;
		}

	}

	@media screen and (max-width: 736px) {

		header h1 + p {
			font-size: 1.25em;
			margin-top: -1.65em;
		}

		header h2 + p {
			font-size: 1em;
			margin-top: -1.25em;
		}

	}

	header p {
		color: #aaaaaa;
	}

/* Table */

	.table-wrapper {
		overflow-x: auto;
	}

	table {
		margin: 0 0 2em 0;
		width: 100%;
	}

		table tbody tr {
			border: solid 1px;
			border-left: 0;
			border-right: 0;
		}

		table td {
			padding: 0.75em 0.75em;
		}

		table th {
			font-size: 0.9em;
			font-weight: 400;
			padding: 0 0.75em 0.75em 0.75em;
			text-align: left;
		}

		table thead {
			border-bottom: solid 2px;
		}

		table tfoot {
			border-top: solid 2px;
		}

		table.alt {
			border-collapse: separate;
		}

			table.alt tbody tr td {
				border: solid 1px;
				border-left-width: 0;
				border-top-width: 0;
			}

				table.alt tbody tr td:first-child {
					border-left-width: 1px;
				}

			table.alt tbody tr:first-child td {
				border-top-width: 1px;
			}

			table.alt thead {
				border-bottom: 0;
			}

			table.alt tfoot {
				border-top: 0;
			}

	table tbody tr {
		border-color: rgba(144, 144, 144, 0.25);
	}

		table tbody tr:nth-child(2n + 1) {
			background-color: rgba(144, 144, 144, 0.075);
		}

	table th {
		color: #333333;
	}

	table thead {
		border-bottom-color: rgba(144, 144, 144, 0.25);
	}

	table tfoot {
		border-top-color: rgba(144, 144, 144, 0.25);
	}

	table.alt tbody tr td {
		border-color: rgba(144, 144, 144, 0.25);
	}






/* Wrapper */

	.wrapper {
		padding: 7.5em 0 5.5em 0 ;
		position: relative;
        background-color: rgba(0, 0, 0, 0.06);
        
	}

		.wrapper > .inner {
			margin: 0 auto;
			width: 80em;
			max-width: calc(100% - 6em);
		}


        .wrapper > .inner i:before {
                color: #fff;
                display: block;
            }

        .wrapper > .inner i.fa-map-marker-alt:before{
                color: #76D6FF;
                
            }

    

        .wrapper > .inner a >i:hover {
                color: #ffffff !important;
            }

        .wrapper h1 {
            font-family: 'Fira Sans Condensed', sans-serif;
            color: #5a5a5a;
            font-weight: 600;
            

        }

        .wrapper > .inner h2 {
            font-family: 'Fira Sans Condensed', sans-serif;
            color: #76D6FF;
            font-size: 1.3em;
            font-weight: 500;
            
        }

        .wrapper > .inner h3 {
            font-family: 'sans-serif', sans-serif;
            color: #5a5a5a;
            font-size: 1.1em;
            font-weight: 500;
            
        }

        .wrapper > .inner h4 {
            font-family: 'Fira Sans Condensed', sans-serif;
            color:  #76D6FF;
            font-size: 1.2em;
            font-weight: 600;
            
        }

        .wrapper > .inner p {
            font-family: 'sans-serif', sans-serif;
            color: #5a5a5a;
            font-size: 1em;
           
            
        }

    

        .wrapper .image.fit img {
        border-radius: 50%;

        }

/* Wrapper Style1 */
            .wrapper.style1{
                background-color: #76D6FF;
                border-top:0.5em;
                text-align: left;
                padding: 1em 0 0.1em 0 ;

            }

            .wrapper.style1.inner {
                margin: 0 auto;
                text-align: center;
                width: 80em;
                max-width: calc(100% - 6em);
            }

            .wrapper.style1 img {
            display:inherit;
            align-content: center;
            width: 250px;
            
        }


           

            .wrapper.style1 p {
				color: #fff;
                
                            
			}

            .wrapper.style1 h1 {
				color: #fff;
                
                            
			}

            .wrapper.style1 h2 {
				color: #fff;
                text-align: center;
                font-size: 1.2em;
                line-height: 1.5;
                letter-spacing: 0.04em;
                margin: 0 0 0.3em 0;
                
                            
			}

        

            .wrapper.style1 h3 {
				font-family: 'Fira Sans Condensed', sans-serif;
                color: #ffffff;
                font-size: 1.2em;
                text-align: center;
                
			}


		

/* Wrapper style 2*/

    .wrapper.style2{
                background-attachment: fixed;
                background-image: url("../../images/kitchen-banner.jpg");
                background-position: center;
                background-size: cover;
                background-color: rgba(0, 0, 0, 0.6);
                border-top:0.5em;
                text-align: left;
                padding: 7.5em 0 5.5em 0 ;

            }

            .wrapper.style2 > .inner {
                margin: 0 auto;
                
                width: 80em;
                max-width: calc(100% - 6em);
            }

            .wrapper.style2 > .inner i:before {
                color: #fff;
                
            }


           .wrapper.style2 h1 {
            
            color: #fff;
          
        }

         .wrapper.style2 > .inner h3 {
                 color: #fff;
            }


            .wrapper.style2 ul li {
                color: #fff;
            }

            .wrapper.style2 p {
				font-family: 'Fira Sans Condensed', sans-serif;
                color: #ffffff;
                            
			}

            .wrapper.style2 a {
				font-family: 'Fira Sans Condensed', sans-serif;
                color: #ffffff;
                              
			}

            .wrapper.style2 a:hover {
                color: #cccccc;
                text-decoration: none;
                            
			}

            


			.wrapper.style2blockquote {
				border-left-color: rgba(255, 255, 255, 0.15);
			}

			.wrapper.style2hr {
				border-bottom-color: rgba(255, 255, 255, 0.15);
			}

			.wrapper.style2.box {
				border-color: rgba(255, 255, 255, 0.15);
			}


/* Wrapper Style3 */

    .wrapper.style3{
                background-attachment: fixed;
                background-image: url("../../images/roof.jpg");
                background-position: center;
                background-size: cover;
                background-color: rgba(0, 0, 0, 0.6);
                border-top:0.5em;
                text-align: left;
                padding: 7.5em 0 5.5em 0 ;

            }

            .wrapper.style3 > .inner {
                margin: 0 auto;
                
                width: 80em;
                max-width: calc(100% - 6em);
            }

            .wrapper.style3 > .inner i:before {
                color: #fff;
                
            }


           .wrapper.style3 h1 {
            
            color: #fff;
          
        }

         .wrapper.style3 > .inner h3 {
                 color: #fff;
            }


            .wrapper.style3 ul li {
                color: #fff;
            }

            .wrapper.style3 p {
				font-family: 'Fira Sans Condensed', sans-serif;
                font-size: 1.2em;
                color: #ffffff;
                            
			}

            .wrapper.style3 a {
				font-family: 'Fira Sans Condensed', sans-serif;
                color: #ffffff;
                              
			}

            .wrapper.style3 a:hover {
                color: #cccccc;
                text-decoration: none;
                            
			}

            .wrapper.style3 b {
				
                color: #76D6FF;
			}


			.wrapper.style3 blockquote {
				border: none;
                color: #fff;
                font-size: 1.2em;
                padding: 0.5em 0 0.5em 1em;
			}

            .wrapper.style3 > .inner i.fa-comment:before{
                color: #76D6FF;
                
            }

			.wrapper.style3hr {
				border-bottom-color: rgba(255, 255, 255, 0.15);
			}

			.wrapper.style3.box {
				border-color: rgba(255, 255, 255, 0.15);
			}


   






		@media screen and (max-width: 1280px) {

			.wrapper {
				padding: 5em 0 3em 0 ;
			}

		}

		@media screen and (max-width: 736px) {

			.wrapper {
				padding: 3em 0 1em 0 ;
			}
            
            
            .wrapper.style2{
               
                background-image: url("../../images/kitchen-banner-mobile.jpg");
               

            }

				.wrapper > .inner {
					max-width: calc(100% - 3em);
				}

		}

/* Header */

	#header {

		display: flex;
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		-moz-transition-duration: 0.2s;
		-webkit-transition-duration: 0.2s;
		-ms-transition-duration: 0.2s;
		transition-duration: 0.2s;
		-moz-transition-timing-function: ease-in-out;
		-webkit-transition-timing-function: ease-in-out;
		-ms-transition-timing-function: ease-in-out;
		transition-timing-function: ease-in-out;
		background-color: rgba(64, 64, 64, 0.9);
		color: #ffffff;
		left: 0;
		padding: 1em 2em;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 10001;
	}

		#header input[type="submit"],
		#header input[type="reset"],
		#header input[type="button"],
		#header button,
		#header .button {
			background-color: transparent;
			box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
			color: #ffffff !important;
		}

			#header input[type="submit"]:hover,
			#header input[type="reset"]:hover,
			#header input[type="button"]:hover,
			#header button:hover,
			#header .button:hover {
				background-color: rgba(255, 255, 255, 0.075);
			}

			#header input[type="submit"]:active,
			#header input[type="reset"]:active,
			#header input[type="button"]:active,
			#header button:active,
			#header .button:active {
				background-color: rgba(255, 255, 255, 0.2);
			}

			#header input[type="submit"].icon:before,
			#header input[type="reset"].icon:before,
			#header input[type="button"].icon:before,
			#header button.icon:before,
			#header .button.icon:before {
				color: rgba(255, 255, 255, 0.5);
			}

			#header input[type="submit"].primary,
			#header input[type="reset"].primary,
			#header input[type="button"].primary,
			#header button.primary,
			#header .button.primary {
				box-shadow: none;
				background-color: #ffffff;
				color: #76D6FF !important;
			}

				#header input[type="submit"].primary.icon:before,
				#header input[type="reset"].primary.icon:before,
				#header input[type="button"].primary.icon:before,
				#header button.primary.icon:before,
				#header .button.primary.icon:before {
					color: #76D6FF !important;
				}

		#header a {
			font-family: 'Fira Sans Condensed', sans-serif;
            font-weight: 500;
            color: #76D6FF;
			text-decoration: none;
            text-transform: uppercase;
		}

			#header a:hover {
				color: #fff;
                text-decoration: underline;
			}

		#header > .logo {
			flex-grow: 1;
			flex-shrink: 1;
			cursor: default;
		}

			#header > .logo > * {
				display: inline-block;
				vertical-align: middle;
			}

			#header > .logo > a {
				font-family: 'Fira Sans Condensed', sans-serif;
                font-size: 1.25em;
                margin-right: 1px;
                color: #ffffff;
			}

            #header > .logo > p {
				padding: 0;
                margin: 0;
                font-size: 1.25em;
                
			}

			#header > .logo > span {
				font-family: 'Fira Sans Condensed', sans-serif;
				color: #ffffff;
                font-size: 1.25em;
                margin-left: 3px;
			}

            #header > nav {

                flex-grow: 0;
                flex-shrink: 0;

            }

            #header > nav b {
                color: #76D6FF;
            }

			#header > nav > ul {

				display: flex;
				list-style-type: none;
				margin: 0;
				padding: 0;
			}

				#header > nav > ul > li {
					margin-left: 2.25em;
					padding: 0;
                    
				}

					#header > nav > ul > li > ul {
						display: none;
					}

			#header > nav a.icon:before {
				margin-right: 0.625em;
			}

			#header > nav a[href="#navPanel"] {
				text-decoration: none;
				display: none;
				font-weight: 500;
				margin-left: 0.5em;
				padding: 0.5em 1.25em;
			}

				#header > nav a[href="#navPanel"]:before {
					display: inline-block;
					font-style: normal;
					font-variant: normal;
					text-rendering: auto;
					line-height: 1;
					text-transform: none !important;
					font-weight: 900;
				}

				#header > nav a[href="#navPanel"]:before {
					content: '\f0c9';
					line-height: inherit;
				}

			.dropotron {
				background-color: #ffffff;
				
				list-style-type: none;
				margin: -0.5em 0 0 1px;
				min-width: 10em;
				padding: 0.5em 0;
			}

				.dropotron.level-0 {
					margin-top: 1.125em;
					margin-left: 0;
				}

					.dropotron.level-0:before {
						
						transform: rotate(45deg);
						background-color: #ffffff;
						box-shadow: -2px -2px 3px -1px rgba(0, 0, 0, 0.1);
						content: '';
						height: 0.75em;
						position: absolute;
						right: 2em;
						top: -0.375em;
						width: 0.75em;
					}

				.dropotron li {
					border-top: solid 1px rgba(144, 144, 144, 0.25);
					padding: 0;
					position: relative;
				}

					.dropotron li:first-child {
						border-top: none;
					}

					.dropotron li.active > a {
						background-color: #76D6FF;
						color: #ffffff;
					}

				.dropotron a {
					color: #5a5a5a;
					padding: 0.5em 1em;
					text-decoration: none !important;
				}

					.dropotron a:active, .dropotron a:hover, .dropotron a:focus {
						background-color: #76D6FF;
						color: #ffffff;
					}

		#header > .navPanelToggle {
			transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, top 0.2s ease-in-out, right 0.2s ease-in-out;
			text-decoration: none;
			display: none;
			height: 3em;
			line-height: 3em;
			margin-right: -0.5em;
			padding: 0 1.5em;
		}

			#header > .navPanelToggle:before {
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 900;
			}

			#header > .navPanelToggle:before {
				content: '\f0c9';
				line-height: inherit;
				margin: 0 0 0 0;
			}

		#header.alt {
			background-color: rgba(64, 64, 64, 0.9);
            padding: 1em 2em;
            
		}

			#header.alt > nav {
				margin-right: 0;
			}

			#header.alt > .navPanelToggle {
				margin-right: -0.5em;
			}

		@media screen and (max-width: 1280px) {

			#header > .logo > a {
				font-size: 1.25em;
			}

			#header > .logo > span {
				font-size: 1.25em;
                margin-left: 3px;
				
			}

		}

		@media screen and (max-width: 980px) {

			#header {
				padding: 0.75em 1.25em;
			}

				#header > nav {
					display: none;
				}

				#header > .navPanelToggle {
					display: block;
				}

				#header.alt {
					padding: 2em 2em;
				}

		}

		@media screen and (max-width: 736px) {

			#header {
				padding: 0.5em 0.9em;
			}

				#header > .logo > a {
					display: inherit;
				}

				#header > .logo > span {
					display: inherit;
				}

				#header > .navPanelToggle {
					height: 2.5em;
					line-height: 2.5em;
					padding: 0 1em;
				}

				#header.alt {
					padding: 0.5em 0.9em;
				}

		}

/* Nav Panel */

	#navPanel {
		transform: translateX(100%);
		transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		background:  rgba(0, 0, 0, 0.75);
		box-shadow: none;
		color: rgba(255, 255, 255, 0.95);
		height: 100%;
		max-width: 80%;
		overflow-y: auto;
		position: fixed;
		right: 0;
		top: 0;
		visibility: hidden;
		width: 20em;
		z-index: 10002;
	}

		#navPanel.visible {
			transform: translateX(0);
			box-shadow: 0 0 1.5em 0 rgba(0, 0, 0, 0.2);
			visibility: visible;
		}

		#navPanel nav {
			padding: 3em 2em;
		}

		#navPanel .link {
			transition: color 0.2s;
			border-top: solid 1px rgba(255, 255, 255, 0.15);
			color: inherit !important;
			display: block;
			padding: 0.75em 0;
			text-decoration: none;
		}

			#navPanel .link:first-child {
				border-top: 0;
			}

			#navPanel .link.depth-0 {
				color: #ffffff !important;
				font-weight: 400;
			}

			#navPanel .link:active, #navPanel .link:focus, #navPanel .link:hover {
				color: #76D6FF !important;
			}

			#navPanel .link .indent-1 {
				display: inline-block;
				width: 1.25em;
			}

			#navPanel .link .indent-2 {
				display: inline-block;
				width: 2.5em;
			}

		#navPanel .close {
			text-decoration: none;
			transition: color 0.2s ease-in-out;
			border: 0;
			color: rgba(255, 255, 255, 0.5);
			cursor: pointer;
			display: block;
			height: 3.25em;
			line-height: 3.25em;
			padding-right: 1.25em;
			position: absolute;
			right: 0;
			text-align: right;
			top: 0;
			vertical-align: middle;
			width: 7em;
		}

			#navPanel .close:before {
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 900;
			}

			#navPanel .close:before {
				content: '\f00d';
				font-size: 1.25em;
			}

			#navPanel .close:hover {
				color: #ffffff;
			}

			@media screen and (max-width: 736px) {

				#navPanel .close {
					height: 4em;
					line-height: 4em;
				}

			}

		@media screen and (max-width: 736px) {

			#navPanel nav {
				padding: 2.5em 1.75em;
			}

		}

/* Banner */

	#banner {
        
        background-color: #000;
		color: rgba(255, 255, 255, 0.75);
		padding: 6em 0 6em 0 ;
		display: flex;
		align-items: center;
		justify-content: center;
		background-attachment: fixed;
        background-image: url("../../images/bluebanner.jpg");
        background-position: center;
        background-size: cover;
		min-height: 85vh;
		position: relative;
		text-align: center;
		width: 100%;
	}

        #banner .inner {
			padding: 4em 0 6em 0 ;
            position: relative;
			width: 90em;
            max-width: calc(100% - 6em);
			z-index: 1;
		}

        #banner .image img {
            display:inherit;
            width: 175px;
            height: 155px;
        }


		#banner a {
			color: #76D6FF;
            text-decoration: none;
            
		}


        #banner a:hover {
			color: #5a5a5a;
            
           
		}

        #banner a .fa-chevron-down:before {
            color: #ffffff;
        }

         #banner .fa-certificate:before {
            color: #76D6FF;
        }

         

        #banner a .fa-chevron-down:after {
            color: #76D6FF;
        }

		#banner strong, #banner b {
			color: #000;
		}

		#banner h1 {
			color: #fff;
            font-size: 3em;
            font-weight: 600;
            text-transform: uppercase;
            margin: 0;
            
		}

        #banner h2 {
			color: #76D6FF;
            font-size: 1.9em;
            font-weight: 200;
            margin-top: -0.5em;
            margin-bottom: 0em;
            letter-spacing: -0.02em;
		}

        
         #banner h3 {
			color: #76D6FF;
            font-size: 1.5em;
            font-weight: 400;
            text-transform: uppercase;
            margin: 0;
            letter-spacing: -0.01em;
		}
        
       



		#banner p {
			color: #fff;
            text-align: left;
            font-size: 1.2em;
            font-weight: 200;
            margin: 1em 0em 0em 0em;
		}

        #banner b {
			color: #fff;
            
		}



		@media screen and (max-width: 1680px) {

			#banner {
				min-height: 0;
			}

		}

		@media screen and (max-width: 1280px) {

			#banner {
				padding: 6em 0 3em 0 ;
				background-attachment: scroll;
			}

		}

		@media screen and (max-width: 980px) {

			#banner {
				padding: 10em 0 6em 0 ;
			}

				#banner .icon {
					margin-bottom: 0.5em;
				}

		}

		@media screen and (max-width: 736px) {

			#banner {
				padding: 5em 0 2em 0 ;
			}

				#banner > .inner {
					max-width: calc(100% - 3em);
				}

				#banner .icon {
					font-size: 3.25em;
				}

				#banner .actions {
					padding-top: 2em;
				}
                
                #banner h1 {
					font-size: 2.5em;
				}
            

		}

		@media screen and (max-width: 480px) {

			#banner {
				padding: 2em 0 1em 0;
                background-image: url("../../images/bluebanner-mobile.jpg");
			}
            
            #banner .inner {
			
            margin: 0 2em 0 2em;
			
		}
            
             #banner h1 {
				 font-size: 1.9em;
                
				}
            
            

        #banner h2 {
			
            font-size: 1.4em;
            margin-top: -0.5em;
            
		}
            
            #banner p {
			color: #fff;
            font-size: 1.1em;
            font-weight: 200;
            margin: 1em 0.5em 0em 0.5em;
		}
            
        #banner .image img {
            display:inherit;
            margin-top: 1em;
            width: 149px;
            height: 132px;
        }
            
            #banner .fa-certificate:before {
            align-content: center;
        }

		}

/* Main */

	#main {
		padding: 10em 0 4em 0;
	}

		@media screen and (max-width: 1280px) {

			#main {
				padding: 8em 0 3em 0;
			}

		}

		@media screen and (max-width: 736px) {

			#main {
				padding: 6em 0 2em 0;
			}

		}

/* Footer */

	#footer {
		background-color: #76D6FF;
		background-size: cover;
		color: rgba(255, 255, 255, 0.75);
		padding: 1em 0 1em 0 ;
		
	}

		#footer input, #footer select, #footer textarea {
			color: #ffffff;
		}

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

         #footer a:hover {
			color: #000;
            text-decoration: none;
		}

         #footer i:hover {
			color: #000;
            text-decoration: none;
		}
        
        #footer .fa-facebook-square:before {
            color: #fff;
        }

        #footer .fa-facebook-square:after {
            color: #000;
        }

        #footer .fa-instagram-square:before {
            color: #fff;
        }

        #footer .fa-twitter-square:before {
            color: #fff;
        }


		#footer strong, #footer b {
			color: #ffffff;
		}

		#footer h4 {
			color: #ffffff;
            font-size: 1.2em;
		}

        #footer h2 {
			color: #76D6FF;
            font-size: 1.2em;
		}

		#footer hr {
			border-bottom-color: rgba(255, 255, 255, 0.25);
		}

		#footer > .inner {
			margin: auto;
			width: 80em;
			max-width: calc(100% - 6em);
		}


		@media screen and (max-width: 1280px) {

			#footer {
				padding: 3em 0 1em 0 ;
			}

		}

		@media screen and (max-width: 736px) {

			#footer {
				padding: 3em 0 1em 0 ;
			}

				#footer > .inner {
					max-width: calc(100% - 3em);
				}

				#footer .copyright {
					margin-top: 2em;
					padding-top: 2em;
				}

		}



/*Cookie Consent Begin*/

#cookieConsent {
    background-color: rgba(20,20,20,0.8);
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: 'Fira Sans Condensed', sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}
#cookieConsent a {
    color: #76D6FF;
    text-decoration: none;
}
#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}
#closeCookieConsent:hover {
    color: #000;
}
#cookieConsent a.cookieConsentOK {
    background-color: #76D6FF;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
    background-color: #76D6FF;
    color: #000;
    font-weight: bold;
}
/*Cookie Consent End*/



/*Gallery Begin*/

div#quad { 
  background-color: #f2f2f2;
     
  font-size: 0; width: 100%; 
  margin: 0 auto;
  
}
div#quad figure { 
  margin: 0; width: 50%; 
  height: auto; transition: 1s; 
  border: solid 4px #f2f2f2;
  display: inline-block; 
  position: relative; overflow: hidden; 
}
div#quad figure:hover { cursor: pointer; z-index: 4; }
div#quad figure img { width: 100%; height: auto; }
div#quad figure:nth-child(1) { transform-origin: top left; }
div#quad figure:nth-child(2) { transform-origin: top right; }
div#quad figure:nth-child(3) { transform-origin: bottom left; }
div#quad figure:nth-child(4) { transform-origin: bottom right; }

div#quad figure figcaption { 
  margin: 0; opacity: 0; 
  background: rgba(64, 64, 64, 0.9); 
  color: #76D6FF; padding: .3rem; 
  font-size: 0.5rem;
  font-weight: 500;
  position: absolute; 
  bottom: 0; width: 100%;
	transition: 1s 1s opacity; 
}
.expanded { transform: scale(2); z-index: 5;  }
div#quad figure.expanded figcaption { opacity: 1; }
div.full figure:not(.expanded) { pointer-events: none; }