@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,900,300italic");

@font-face {
    font-family: 'CustomFont';
    src: url('/assets/webfonts/MyfontBold-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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;
	font-family: 'CustomFont';

}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
	

}

h1 {
	font-family: 'CustomFont';
}

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;
}

body {
	-webkit-text-size-adjust: none;
}

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

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

	html {
		box-sizing: border-box;
	}

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

	body {
		background: #252122;
		background-image: url("images/bg02.png");
	}

		body.is-preload *, body.is-preload *:before, body.is-preload *:after {
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
			-moz-transition: none !important;
			-webkit-transition: none !important;
			-ms-transition: none !important;
			transition: none !important;
		}

	body, input, textarea, select {
		font-family: 'Source Sans Pro';
		font-weight: 300;
		color: #5d5d5d;
		font-size: 14pt;
		line-height: 1.75em;
	}

	strong, b {
		color: #252122;
		font-weight: 400;
	}

	i, em {
		font-style: italic;
	}

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

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

	blockquote {
		border-left: solid 0.75em #dddddd;
		padding: 1em 0 1em 1.5em;
		font-style: italic;
	}

	h1, h2, h3, h4, h5, h6 {
		color: #252122;
		font-weight: 700;
	}

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

	h2 {
		font-size: 1.5em;
	}

	h3 {
		font-size: 1.35em;
	}

	a {
		color: #d52349;
		text-decoration: underline;
	}

		a:hover {
			text-decoration: none;
		}

	br.clear {
		clear: both;
	}

	hr {
		border: 0;
		border-top: solid 1px #dddddd;
		height: 1px;
		margin: 2em 0 2em 0;
	}

	p, ul, ol, dl, table {
		margin-bottom: 2em;
	}

/* Container */

	.container {
		margin: 0 auto;
		max-width: 100%;
		width: 70em;
	}

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

			.container {
				width: 70em;
			}

		}

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

			.container {
				width: calc(100% - 60px);
			}

		}

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

			.container {
				width: calc(100% - 80px);
			}

		}

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

			.container {
				width: calc(100% - 40px);
			}

		}

/* 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: 0px;
			margin-left: 0px;
		}

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

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

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

		.row.gtr-25 {
			margin-top: -12.5px;
			margin-left: -12.5px;
		}

			.row.gtr-25 > * {
				padding: 12.5px 0 0 12.5px;
			}

			.row.gtr-25.gtr-uniform {
				margin-top: -12.5px;
			}

				.row.gtr-25.gtr-uniform > * {
					padding-top: 12.5px;
				}

		.row.gtr-50 {
			margin-top: -25px;
			margin-left: -25px;
		}

			.row.gtr-50 > * {
				padding: 25px 0 0 25px;
			}

			.row.gtr-50.gtr-uniform {
				margin-top: -25px;
			}

				.row.gtr-50.gtr-uniform > * {
					padding-top: 25px;
				}

		.row {
			margin-top: -50px;
			margin-left: -50px;
		}

			.row > * {
				padding: 50px 0 0 50px;
			}

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

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

		.row.gtr-150 {
			margin-top: -75px;
			margin-left: -75px;
		}

			.row.gtr-150 > * {
				padding: 75px 0 0 75px;
			}

			.row.gtr-150.gtr-uniform {
				margin-top: -75px;
			}

				.row.gtr-150.gtr-uniform > * {
					padding-top: 75px;
				}

		.row.gtr-200 {
			margin-top: -100px;
			margin-left: -100px;
		}

			.row.gtr-200 > * {
				padding: 100px 0 0 100px;
			}

			.row.gtr-200.gtr-uniform {
				margin-top: -100px;
			}

				.row.gtr-200.gtr-uniform > * {
					padding-top: 100px;
				}

		@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: 0px;
					margin-left: 0px;
				}

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

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

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

				.row.gtr-25 {
					margin-top: -12.5px;
					margin-left: -12.5px;
				}

					.row.gtr-25 > * {
						padding: 12.5px 0 0 12.5px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -12.5px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 12.5px;
						}

				.row.gtr-50 {
					margin-top: -25px;
					margin-left: -25px;
				}

					.row.gtr-50 > * {
						padding: 25px 0 0 25px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -25px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 25px;
						}

				.row {
					margin-top: -50px;
					margin-left: -50px;
				}

					.row > * {
						padding: 50px 0 0 50px;
					}

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

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

				.row.gtr-150 {
					margin-top: -75px;
					margin-left: -75px;
				}

					.row.gtr-150 > * {
						padding: 75px 0 0 75px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -75px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 75px;
						}

				.row.gtr-200 {
					margin-top: -100px;
					margin-left: -100px;
				}

					.row.gtr-200 > * {
						padding: 100px 0 0 100px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -100px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 100px;
						}

		}

		@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: 0px;
					margin-left: 0px;
				}

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

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

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

				.row.gtr-25 {
					margin-top: -7.5px;
					margin-left: -7.5px;
				}

					.row.gtr-25 > * {
						padding: 7.5px 0 0 7.5px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -7.5px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 7.5px;
						}

				.row.gtr-50 {
					margin-top: -15px;
					margin-left: -15px;
				}

					.row.gtr-50 > * {
						padding: 15px 0 0 15px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -15px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 15px;
						}

				.row {
					margin-top: -30px;
					margin-left: -30px;
				}

					.row > * {
						padding: 30px 0 0 30px;
					}

					.row.gtr-uniform {
						margin-top: -30px;
					}

						.row.gtr-uniform > * {
							padding-top: 30px;
						}

				.row.gtr-150 {
					margin-top: -45px;
					margin-left: -45px;
				}

					.row.gtr-150 > * {
						padding: 45px 0 0 45px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -45px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 45px;
						}

				.row.gtr-200 {
					margin-top: -60px;
					margin-left: -60px;
				}

					.row.gtr-200 > * {
						padding: 60px 0 0 60px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -60px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 60px;
						}

		}

		@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: 0px;
					margin-left: 0px;
				}

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

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

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

				.row.gtr-25 {
					margin-top: -10px;
					margin-left: -10px;
				}

					.row.gtr-25 > * {
						padding: 10px 0 0 10px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -10px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 10px;
						}

				.row.gtr-50 {
					margin-top: -20px;
					margin-left: -20px;
				}

					.row.gtr-50 > * {
						padding: 20px 0 0 20px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -20px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 20px;
						}

				.row {
					margin-top: -40px;
					margin-left: -40px;
				}

					.row > * {
						padding: 40px 0 0 40px;
					}

					.row.gtr-uniform {
						margin-top: -40px;
					}

						.row.gtr-uniform > * {
							padding-top: 40px;
						}

				.row.gtr-150 {
					margin-top: -60px;
					margin-left: -60px;
				}

					.row.gtr-150 > * {
						padding: 60px 0 0 60px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -60px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 60px;
						}

				.row.gtr-200 {
					margin-top: -80px;
					margin-left: -80px;
				}

					.row.gtr-200 > * {
						padding: 80px 0 0 80px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -80px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 80px;
						}

		}

		@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: 0px;
					margin-left: 0px;
				}

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

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

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

				.row.gtr-25 {
					margin-top: -5px;
					margin-left: -5px;
				}

					.row.gtr-25 > * {
						padding: 5px 0 0 5px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -5px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 5px;
						}

				.row.gtr-50 {
					margin-top: -10px;
					margin-left: -10px;
				}

					.row.gtr-50 > * {
						padding: 10px 0 0 10px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -10px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 10px;
						}

				.row {
					margin-top: -20px;
					margin-left: -20px;
				}

					.row > * {
						padding: 20px 0 0 20px;
					}

					.row.gtr-uniform {
						margin-top: -20px;
					}

						.row.gtr-uniform > * {
							padding-top: 20px;
						}

				.row.gtr-150 {
					margin-top: -30px;
					margin-left: -30px;
				}

					.row.gtr-150 > * {
						padding: 30px 0 0 30px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -30px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 30px;
						}

				.row.gtr-200 {
					margin-top: -40px;
					margin-left: -40px;
				}

					.row.gtr-200 > * {
						padding: 40px 0 0 40px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -40px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 40px;
						}

		}

/* Form */

	form label {
		display: block;
		color: #252122;
		font-weight: 400;
		margin: 0 0 0.5em 0;
	}

	form input[type=text],
	form input[type=email],
	form input[type=password],
	form select,
	form textarea {
		-webkit-appearance: none;
		display: block;
		border: 0;
		padding: 0.75em 1em;
		font-size: 1em;
		border-radius: 5px;
		border: solid 1px #dddddd;
		background: #fff;
		width: 100%;
	}

		form input[type=text]:focus,
		form input[type=email]:focus,
		form input[type=password]:focus,
		form select:focus,
		form textarea:focus {
			box-shadow: inset 0px 0px 1px 1px #43bff0;
		}

	form textarea {
		height: 15em;
	}

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

	form :-moz-placeholder {
		color: #555 !important;
	}

	form ::-moz-placeholder {
		color: #555 !important;
	}

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

	form ::-moz-focus-inner {
		border: 0;
	}

/* Tables */

	table {
		width: 100%;
	}

		table tr {
			border-top: solid 1px #dddddd;
		}

			table tr:first-child {
				border-top: 0;
			}

		table td {
			padding: 0.5em 1em 0.5em 1em;
		}

		table th {
			text-align: left;
			padding: 0.5em 1em 0.5em 1em;
			font-weight: 700;
			margin: 0 0 1em 0;
		}

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

/* Section/Article */

	section, article {
		margin-bottom: 0em;
	}

		section > :last-child, section:last-child, article > :last-child, article:last-child {
			margin-bottom: 0;
		}

	header {
		margin: 0 0 1.5em 0;
		
	}

		header > p {
			display: block;
			font-style: italic;
			margin: 0.5em 0 0 0;
			padding-bottom: 0.5em;
		}

		header.major {
			position: relative;
			text-align: center;
			border-top: solid 1px #ccc;
			top: 1em;
			margin: 0 0 3em 0;
		}

			header.major h2 {
				background: #fff;
				position: relative;
				top: -0.65em;
				display: inline;
				margin: 0;
				padding: 0 1em 0 1em;
			}

	footer {
		margin: 2.25em 0 0 0;
	}

/* Box */

	.box {
		background: #ffffff;
		border-bottom: solid 1px #ccc;
		padding: 2.75em 1.75em 2.75em 1.75em;
		
    }

		.box .image.featured {
			position: relative;
			width: auto;
			left: 1.75em;
			top: 1.75em;
			margin: -4.5em 0 4.25em -3.5em;
		}

		.box.post header {
			padding-top: 1em;
			margin: 0 0 2em 0;
			
			display: flex;
			justify-content: center;
 			align-items: center;
		}

		.box.post h2 {
			font-size: 2.5em;
			letter-spacing: -0.015em;
		}

		.box.post header > p {
			margin-top: 1.25em;
			font-size: 1.25em;
		}

		.box footer {
			display: flex;
			justify-content: center;
 			align-items: center;
		}

		.box footer ul.actions {
			margin-bottom: 0;
		}

/* Scroll to Top Button */
	#scrollToTopBtn {
		display: none; /* Hidden by default */
		position: fixed; /* Fixed/sticky position */
		bottom: 20px; /* Place the button at the bottom of the page */
		right: 30px; /* Place the button 30px from the right */
		z-index: 99; /* Make sure it does not overlap */

		background-color: #333;
		color: white;
		border: none;
		padding: 20px 30px;
		border-radius: 10px;
		cursor: pointer;
		
	}

	#scrollToTopBtn:hover {
		background-color: #555;
	}
/* Button */

	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	button,
	.button {
		-webkit-appearance: none;
		display: inline-block;
		text-decoration: none;
		cursor: pointer;
		border: 0;
		border-radius: 5px;
		background: #d52349;
		color: #fff !important;
		font-weight: 700;
		outline: 0;
		font-size: 1.1em;
		padding: 0.65em 1.5em 0.65em 1.5em;
		text-align: center;
		-moz-transition: background-color .25s ease-in-out;
		-webkit-transition: background-color .25s ease-in-out;
		-ms-transition: background-color .25s ease-in-out;
		transition: background-color .25s ease-in-out;
	}

		input[type="button"]:hover,
		input[type="submit"]:hover,
		input[type="reset"]:hover,
		button:hover,
		.button:hover {
			background: #e53359;
		}

		input[type="button"]:active,
		input[type="submit"]:active,
		input[type="reset"]:active,
		button:active,
		.button:active {
			background: #c51349;
		}

		input[type="button"].alt,
		input[type="submit"].alt,
		input[type="reset"].alt,
		button.alt,
		.button.alt {
			background: #252122;
		}

			input[type="button"].alt:hover,
			input[type="submit"].alt:hover,
			input[type="reset"].alt:hover,
			button.alt:hover,
			.button.alt:hover {
				background: #353132;
			}

			input[type="button"].alt:active,
			input[type="submit"].alt:active,
			input[type="reset"].alt:active,
			button.alt:active,
			.button.alt:active {
				background: #151112;
			}

		input[type="button"].icon:before,
		input[type="submit"].icon:before,
		input[type="reset"].icon:before,
		button.icon:before,
		.button.icon:before {
			opacity: 0.35;
			position: relative;
			top: 0.05em;
			margin-right: 0.75em;
		}

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

/* Image */

	.image {
		display: inline-block;
		outline: 0;
		position: relative;
		border: 0;
	}

	.image.filtered:after {
		background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
		background-size: 128px 128px, auto;
		pointer-events: none;
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 1;
		z-index: 1;
	}

	.image.filtered.tinted:after {
		background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25)), linear-gradient(0deg, rgba(0, 0, 0, 0.125), rgba(0, 0, 0, 0.125));
		background-size: 128px 128px, auto, auto;
	}

	

	.image[data-position="top left"] img {
		-moz-object-position: top left;
		-webkit-object-position: top left;
		-ms-object-position: top left;
		object-position: top left;
	}

	.image[data-position="top"] img {
		-moz-object-position: top;
		-webkit-object-position: top;
		-ms-object-position: top;
		object-position: top;
	}

	.image[data-position="top right"] img {
		-moz-object-position: top right;
		-webkit-object-position: top right;
		-ms-object-position: top right;
		object-position: top right;
	}

	.image[data-position="right"] img {
		-moz-object-position: right;
		-webkit-object-position: right;
		-ms-object-position: right;
		object-position: right;
	}

	.image[data-position="bottom right"] img {
		-moz-object-position: bottom right;
		-webkit-object-position: bottom right;
		-ms-object-position: bottom right;
		object-position: bottom right;
	}

	.image[data-position="bottom"] img {
		-moz-object-position: bottom;
		-webkit-object-position: bottom;
		-ms-object-position: bottom;
		object-position: bottom;
	}

	.image[data-position="bottom left"] img {
		-moz-object-position: bottom left;
		-webkit-object-position: bottom left;
		-ms-object-position: bottom left;
		object-position: bottom left;
	}

	.image[data-position="left"] img {
		-moz-object-position: left;
		-webkit-object-position: left;
		-ms-object-position: left;
		object-position: left;
	}

	.image[data-position="center"] img {
		-moz-object-position: center;
		-webkit-object-position: center;
		-ms-object-position: center;
		object-position: center;
	}

	.image[data-position="25% 25%"] img {
		-moz-object-position: 25% 25%;
		-webkit-object-position: 25% 25%;
		-ms-object-position: 25% 25%;
		object-position: 25% 25%;
	}

	.image[data-position="75% 25%"] img {
		-moz-object-position: 75% 25%;
		-webkit-object-position: 75% 25%;
		-ms-object-position: 75% 25%;
		object-position: 75% 25%;
	}

	.image[data-position="75% 75%"] img {
		-moz-object-position: 75% 75%;
		-webkit-object-position: 75% 75%;
		-ms-object-position: 75% 75%;
		object-position: 75% 75%;
	}

	.image[data-position="25% 75%"] img {
		-moz-object-position: 25% 75%;
		-webkit-object-position: 25% 75%;
		-ms-object-position: 25% 75%;
		object-position: 25% 75%;
	}
	

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

	.image.centered {
		display: block;
		margin: 0 0 2em 0;
	}

		.image.centered img {
			margin: 0 auto;
			width: auto;
		}

	.image.featured {
		display: block;
		width: 100%;
		margin: 0 0 2em 0;
	}

	.image.left {
		float: left;
		margin: 0 2em 2em 0;
	}

/* List */

	ul {
		list-style: disc;
		padding-left: 1em;
	}

		ul li {
			padding-left: 0.5em;
		}

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

		ol li {
			padding-left: 0.25em;
		}

/* Actions */

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

		ul.actions li {
			display: inline-block;
			margin-left: 1em;
			padding-left: 0;
		}

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

	
/* Links */

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

		ul.links li {
			display: inline-block;
			border-left: solid 1px rgba(255, 255, 255, 0.05);
			padding: 0 0 0 1em;
			margin: 0 0 0 1em;
		}

			ul.links li:first-child {
				border-left: 0;
				padding-left: 0;
				margin-left: 0;
			}

/* Contact */

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

		ul.contact li {
			position: relative;
			border-top: solid 1px #ddd;
			padding: 1.3em 0 1.3em 7em;
		}

			ul.contact li h3 {
				position: absolute;
				left: 0;
				top: 1.3em;
				font-size: 1.1em;
			}

			ul.contact li p {
				margin: 0;
			}

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

				ul.contact li:first-child h3 {
					top: 0;
				}

/* Dates */

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

		ul.dates li {
			position: relative;
			border-top: solid 1px #ddd;
			padding: 3em 0 1.3em 6.75em;
		}

		ul.dates .date {
			display: block;
			position: absolute;
			left: 0;
			top: 1.3em;
			background-color: #d52349;
			height: 3.5em;
			text-align: center;
			color: #fff;
			line-height: 1em;
			border-top-left-radius: 5px;
			border-bottom-left-radius: 5px;
			padding: 0.5em 0.75em 0 1em;
		}

			ul.dates .date:after {
				content: '';
				position: absolute;
				bottom: 0;
				right: -1.2em;
				border-left: solid 1.25em #d52349;
				border-top: solid 1.8em transparent;
				border-bottom: solid 1.8em transparent;
			}

			ul.dates .date strong {
				display: block;
				font-size: 1.75em;
				padding-top: 0.15em;
			}

		ul.dates h3 {
			font-size: 1.1em;
		}

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

			ul.dates li:first-child .date {
				top: 0;
			}
		


			

/* Divided */

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

		ul.divided li {
			border-top: solid 1px #ddd;
			padding: 1em 0 1em 0;
		}

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

/* Social */

	ul.social {
		list-style: none;
		padding-left: 0;
		overflow: hidden;
		cursor: default;
		margin: 0 0 3.25em 0;
	}

		ul.social li {
			display: inline-block;
			padding-left: 0;
			margin-left: 0.75em;
		}

			ul.social li:first-child {
				margin-left: 0;
			}

			ul.social li a {
				display: inline-block;
				width: 3em;
				height: 3em;
				text-align: center;
				border-radius: 5px;
				background: #888;
				-moz-transition: background-color .25s ease-in-out;
				-webkit-transition: background-color .25s ease-in-out;
				-ms-transition: background-color .25s ease-in-out;
				transition: background-color .25s ease-in-out;
			}

				ul.social li a:before {
					color: #fff;
					font-size: 2em;
					line-height: 1.5em;
				}

				ul.social li a.fa-facebook {
					background: #3c5a98;
				}

					ul.social li a.fa-facebook:hover {
						background: #4c6aa8;
					}

				ul.social li a.fa-twitter {
					background: #2daae4;
				}

					ul.social li a.fa-twitter:hover {
						background: #3dbaf4;
					}

				ul.social li a.fa-dribbble {
					background: #c4376b;
				}

					ul.social li a.fa-dribbble:hover {
						background: #d4477b;
					}

				ul.social li a.fa-linkedin {
					background: #006599;
				}

					ul.social li a.fa-linkedin:hover {
						background: #1075a9;
					}

				ul.social li a.fa-tumblr {
					background: #2b4661;
				}

					ul.social li a.fa-tumblr:hover {
						background: #3b5671;
					}

				ul.social li a.fa-google-plus {
					background: #da2713;
				}

					ul.social li a.fa-google-plus:hover {
						background: #ea3723;
					}
				

					

/* Icons */

	.icon {
		text-decoration: none;
		position: relative;
		text-decoration: none;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			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: 400;
		}

		.icon.solid:before {
			font-weight: 900;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands';
		}

		.icon:before {
			line-height: inherit;
		}

		.icon > .label {
			display: none;
		}

		.icon.featured {
			position: relative;
			display: inline-block;
			background-color: #d52349;
			width: 9em;
			padding: 1.75em 0 0.75em 0;
			border-top-left-radius: 5px;
			border-top-right-radius: 5px;
			margin: 0 0 4.5em 0;
			cursor: default;
		}

			.icon.featured:before {
				font-size: 4.5em;
				line-height: 1em;
				color: #fff;
			}

			.icon.featured:after {
				content: '';
				position: absolute;
				bottom: -1.95em;
				left: 0;
				border-top: solid 2em #d52349;
				border-left: solid 4.5em transparent;
				border-right: solid 4.5em transparent;
			}

			.icon.featured.alt {
				background-color: #252122;
			}

				.icon.featured.alt:after {
					border-top-color: #252122;
				}

			.icon.featured.alt2 {
				background-color: #827a7c;
			}

				.icon.featured.alt2:after {
					border-top-color: #827a7c;
				}
/* Gallery */

@-moz-keyframes gallery-modal-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes gallery-modal-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-ms-keyframes gallery-modal-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes gallery-modal-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.gallery {
	-moz-align-items: -moz-stretch;
	-webkit-align-items: -webkit-stretch;
	-ms-align-items: -ms-stretch;
	align-items: stretch;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	height: 100%;
}

	.gallery > * {
		width: 20rem;
		height: 100%;
	}

	.gallery .image {
		display: block;
		position: relative;
		border-bottom: 0;
		overflow: hidden;
	}

		.gallery .image img {
			-moz-transition: -moz-transform 0.2s ease-in-out;
			-webkit-transition: -webkit-transform 0.2s ease-in-out;
			-ms-transition: -ms-transform 0.2s ease-in-out;
			transition: transform 0.2s ease-in-out;
		}

		.gallery .image:after {
			-moz-transition: opacity 0.2s ease-in-out;
			-webkit-transition: opacity 0.2s ease-in-out;
			-ms-transition: opacity 0.2s ease-in-out;
			transition: opacity 0.2s ease-in-out;
		}

		.gallery .image:hover img {
			-moz-transform: scale(1.025);
			-webkit-transform: scale(1.025);
			-ms-transform: scale(1.025);
			transform: scale(1.025);
		}

		.gallery .image:hover:after {
			opacity: 0;
		}

	.gallery .group {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

		.gallery .group > * {
			height: 50%;
		}

	.gallery .modal {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		pointer-events: none;
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
		-moz-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
		-webkit-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
		-ms-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
		transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(46, 43, 55, 0.875);
		opacity: 0;
		outline: 0;
		visibility: none;
		z-index: 0;
	}

		.gallery .modal:before {
			-moz-animation: gallery-modal-spinner 1s infinite linear;
			-webkit-animation: gallery-modal-spinner 1s infinite linear;
			-ms-animation: gallery-modal-spinner 1s infinite linear;
			animation: gallery-modal-spinner 1s infinite linear;
			-moz-transition: opacity 0.25s ease;
			-webkit-transition: opacity 0.25s ease;
			-ms-transition: opacity 0.25s ease;
			transition: opacity 0.25s ease;
			-moz-transition-delay: 0.5s;
			-webkit-transition-delay: 0.5s;
			-ms-transition-delay: 0.5s;
			transition-delay: 0.5s;
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			left: 50%;
			width: 4rem;
			height: 4rem;
			margin: -2rem 0 0 -2rem;
			background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='96px' height='96px' viewBox='0 0 96 96' zoomAndPan='disable'%3E%3Cstyle%3Ecircle %7Bfill: transparent%3B stroke: rgba(255, 255, 255, 0.875)%3B stroke-width: 1.5px%3B %7D%3C/style%3E%3Cdefs%3E%3CclipPath id='corner'%3E%3Cpolygon points='0,0 48,0 48,48 96,48 96,96 0,96' /%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23corner)'%3E%3Ccircle cx='48' cy='48' r='32'/%3E%3C/g%3E%3C/svg%3E");
			background-position: center;
			background-repeat: no-repeat;
			background-size: 4rem;
			opacity: 0;
		}

		.gallery .modal:after {
			content: '';
			display: block;
			position: absolute;
			top: 0.5rem;
			right: 0.5rem;
			width: 4rem;
			height: 4rem;
			background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='64px' viewBox='0 0 64 64' zoomAndPan='disable'%3E%3Cstyle%3Eline %7Bstroke: rgba(255, 255, 255, 0.875)%3Bstroke-width: 1.5px%3B%7D%3C/style%3E%3Cline x1='20' y1='20' x2='44' y2='44' /%3E%3Cline x1='20' y1='44' x2='44' y2='20' /%3E%3C/svg%3E");
			background-position: center;
			background-repeat: no-repeat;
			background-size: 3rem;
			cursor: pointer;
		}

		.gallery .modal .inner {
			-moz-transform: translateY(0.75rem);
			-webkit-transform: translateY(0.75rem);
			-ms-transform: translateY(0.75rem);
			transform: translateY(0.75rem);
			-moz-transition: opacity 0.25s ease, -moz-transform 0.25s ease;
			-webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
			-ms-transition: opacity 0.25s ease, -ms-transform 0.25s ease;
			transition: opacity 0.25s ease, transform 0.25s ease;
			opacity: 0;
		}

			.gallery .modal .inner img {
				display: block;
				max-width: 90vw;
				max-height: 85vh;
				box-shadow: 0 1rem 3rem 0 rgba(0, 0, 0, 0.35);
			}

		.gallery .modal.visible {
			pointer-events: auto;
			opacity: 1;
			visibility: visible;
			z-index: 11000;
		}

			.gallery .modal.visible:before {
				opacity: 1;
			}

		.gallery .modal.loaded .inner {
			-moz-transform: translateY(0);
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
			-moz-transition: opacity 0.5s ease, -moz-transform 0.5s ease;
			-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
			-ms-transition: opacity 0.5s ease, -ms-transform 0.5s ease;
			transition: opacity 0.5s ease, transform 0.5s ease;
			opacity: 1;
		}

		.gallery .modal.loaded:before {
			-moz-transition-delay: 0s;
			-webkit-transition-delay: 0s;
			-ms-transition-delay: 0s;
			transition-delay: 0s;
			opacity: 0;
		}

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

	.gallery .modal .inner img {
		max-width: 100vw;
	}

}

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

	.gallery {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
	}

		.gallery > * {
			height: auto;
			width: 100%;
		}

		.gallery .image {
			width: 100%;
			height: 40rem;
		}

		.gallery .group .span-0-25 {
			width: 8.33333%;
		}

		.gallery .group .span-0-5 {
			width: 16.66666%;
		}

		.gallery .group .span-0-75 {
			width: 25.0%;
		}

		.gallery .group .span-1 {
			width: 33.33333%;
		}

		.gallery .group .span-1-25 {
			width: 41.66666%;
		}

		.gallery .group .span-1-5 {
			width: 49.99999%;
		}

		.gallery .group .span-1-75 {
			width: 58.33333%;
		}

		.gallery .group .span-2 {
			width: 66.66666%;
		}

		.gallery .group .span-2-25 {
			width: 74.99999%;
		}

		.gallery .group .span-2-5 {
			width: 83.33332%;
		}

		.gallery .group .span-2-75 {
			width: 91.66666%;
		}

		.gallery .group .span-3 {
			width: 99.99999%;
		}

		.gallery .group .span-3-25 {
			width: 108.33332%;
		}

		.gallery .group .span-3-5 {
			width: 116.66665%;
		}

		.gallery .group .span-3-75 {
			width: 124.99999%;
		}

		.gallery .group .span-4 {
			width: 133.33332%;
		}

		.gallery .group .span-4-25 {
			width: 141.66665%;
		}

		.gallery .group .span-4-5 {
			width: 149.99998%;
		}

		.gallery .group .span-4-75 {
			width: 158.33332%;
		}

		.gallery .group .span-5 {
			width: 166.66665%;
		}

		.gallery .group .span-5-25 {
			width: 174.99998%;
		}

		.gallery .group .span-5-5 {
			width: 183.33331%;
		}

		.gallery .group .span-5-75 {
			width: 191.66665%;
		}

		.gallery .group .span-6 {
			width: 199.99998%;
		}

		.gallery .group .span-6-25 {
			width: 208.33331%;
		}

		.gallery .group .span-6-5 {
			width: 216.66664%;
		}

		.gallery .group .span-6-75 {
			width: 224.99998%;
		}

		.gallery .group .span-7 {
			width: 233.33331%;
		}

		.gallery .group .span-7-25 {
			width: 241.66664%;
		}

		.gallery .group .span-7-5 {
			width: 249.99997%;
		}

		.gallery .group .span-7-75 {
			width: 258.33331%;
		}

		.gallery .group .span-8 {
			width: 266.66664%;
		}

		.gallery .group .span-8-25 {
			width: 274.99997%;
		}

		.gallery .group .span-8-5 {
			width: 283.3333%;
		}

		.gallery .group .span-8-75 {
			width: 291.66664%;
		}

		.gallery .group .span-9 {
			width: 299.99997%;
		}

		.gallery .group .span-9-25 {
			width: 308.3333%;
		}

		.gallery .group .span-9-5 {
			width: 316.66663%;
		}

		.gallery .group .span-9-75 {
			width: 324.99997%;
		}

		.gallery .group .span-10 {
			width: 333.3333%;
		}

		.gallery .group .image {
			height: 20rem;
		}

}

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

	.gallery .image {
		height: 30rem;
	}

	.gallery .group .image {
		height: 7rem;
	}

}
/* Panel */

.panel {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-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;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-moz-align-items: -moz-stretch;
	-webkit-align-items: -webkit-stretch;
	-ms-align-items: -ms-stretch;
	align-items: stretch;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

	.panel > * {
		position: relative;
		min-width: 10rem;
	}

		.panel > *.color0 {
			background-image: url("../../images/overlay.png"), linear-gradient(45deg, #726193 20%, #e37b7c 60%, #ffe4b4);
			background-size: 128px 128px, auto;
		}

		.panel > *.color1 {
			background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #726193;
		}

		.panel > *.color2 {
			background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #e37b7c;
		}

		.panel > *.color3 {
			background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #ffe4b4;
		}

		.panel > *.color4 {
			background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #353865;
		}

		.panel > *.color1-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #6c5e86;
		}

		.panel > *.color2-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #de7172;
		}

		.panel > *.color3-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #fedea6;
		}

		.panel > *.color4-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #323459;
		}

	.panel > .intro {
		padding: 3.5rem 3.5rem 2rem 3.5rem ;
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-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;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		-moz-align-items: -moz-flex-start;
		-webkit-align-items: -webkit-flex-start;
		-ms-align-items: -ms-flex-start;
		align-items: flex-start;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 22rem;
	}

		.panel > .intro.joined {
			width: 18.5rem;
			padding-right: 0;
		}

			.panel > .intro.joined + .inner {
				padding-left: 2.625rem;
			}

	.panel > .inner {
		padding: 3.5rem 3.5rem 2rem 3.5rem ;
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-grow: 1;
		-webkit-flex-grow: 1;
		-ms-flex-grow: 1;
		flex-grow: 1;
		-moz-flex-shrink: 1;
		-webkit-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		-moz-align-items: -moz-flex-start;
		-webkit-align-items: -webkit-flex-start;
		-ms-align-items: -ms-flex-start;
		align-items: flex-start;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		position: relative;
		width: 100%;
	}

		.panel > .inner.columns {
			display: -moz-flex;
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-moz-justify-content: center;
			-webkit-justify-content: center;
			-ms-justify-content: center;
			justify-content: center;
			-moz-align-items: center;
			-webkit-align-items: center;
			-ms-align-items: center;
			align-items: center;
			-moz-flex-direction: row;
			-webkit-flex-direction: row;
			-ms-flex-direction: row;
			flex-direction: row;
		}

			.panel > .inner.columns > * {
				-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;
				margin-left: 3.5rem;
			}

			.panel > .inner.columns > :first-child {
				margin-left: 0;
			}

			.panel > .inner.columns.divided > * {
				margin-left: 7rem;
			}

				.panel > .inner.columns.divided > *:before {
					content: '';
					position: absolute;
					top: 3.5rem;
					width: 2px;
					height: calc(100% - 7rem);
					margin-left: -3.5rem;
					background-color: rgba(255, 255, 255, 0.25);
				}

			.panel > .inner.columns.divided > :first-child {
				margin-left: 0;
			}

				.panel > .inner.columns.divided > :first-child:before {
					display: none;
				}

			.panel > .inner.columns.aligned {
				-moz-align-items: -moz-flex-start;
				-webkit-align-items: -webkit-flex-start;
				-ms-align-items: -ms-flex-start;
				align-items: flex-start;
			}

	.panel .span-0-25 {
		width: 2.5rem;
	}

	.panel .span-0-5 {
		width: 5rem;
	}

	.panel .span-0-75 {
		width: 7.5rem;
	}

	.panel .span-1 {
		width: 10rem;
	}

	.panel .span-1-25 {
		width: 12.5rem;
	}

	.panel .span-1-5 {
		width: 15rem;
	}

	.panel .span-1-75 {
		width: 17.5rem;
	}

	.panel .span-2 {
		width: 20rem;
	}

	.panel .span-2-25 {
		width: 22.5rem;
	}

	.panel .span-2-5 {
		width: 25rem;
	}

	.panel .span-2-75 {
		width: 27.5rem;
	}

	.panel .span-3 {
		width: 30rem;
	}

	.panel .span-3-25 {
		width: 32.5rem;
	}

	.panel .span-3-5 {
		width: 35rem;
	}

	.panel .span-3-75 {
		width: 37.5rem;
	}

	.panel .span-4 {
		width: 40rem;
	}

	.panel .span-4-25 {
		width: 42.5rem;
	}

	.panel .span-4-5 {
		width: 45rem;
	}

	.panel .span-4-75 {
		width: 47.5rem;
	}

	.panel .span-5 {
		width: 50rem;
	}

	.panel .span-5-25 {
		width: 52.5rem;
	}

	.panel .span-5-5 {
		width: 55rem;
	}

	.panel .span-5-75 {
		width: 57.5rem;
	}

	.panel .span-6 {
		width: 60rem;
	}

	.panel .span-6-25 {
		width: 62.5rem;
	}

	.panel .span-6-5 {
		width: 65rem;
	}

	.panel .span-6-75 {
		width: 67.5rem;
	}

	.panel .span-7 {
		width: 70rem;
	}

	.panel .span-7-25 {
		width: 72.5rem;
	}

	.panel .span-7-5 {
		width: 75rem;
	}

	.panel .span-7-75 {
		width: 77.5rem;
	}

	.panel .span-8 {
		width: 80rem;
	}

	.panel .span-8-25 {
		width: 82.5rem;
	}

	.panel .span-8-5 {
		width: 85rem;
	}

	.panel .span-8-75 {
		width: 87.5rem;
	}

	.panel .span-9 {
		width: 90rem;
	}

	.panel .span-9-25 {
		width: 92.5rem;
	}

	.panel .span-9-5 {
		width: 95rem;
	}

	.panel .span-9-75 {
		width: 97.5rem;
	}

	.panel .span-10 {
		width: 100rem;
	}

	.panel.small {
		width: 35rem;
	}

	.panel.medium {
		width: 50rem;
	}

	.panel.large {
		width: 65rem;
	}

	.panel.small .span-0-25, .panel.medium .span-0-25, .panel.large .span-0-25 {
		width: 2.5%;
	}

	.panel.small .span-0-5, .panel.medium .span-0-5, .panel.large .span-0-5 {
		width: 5%;
	}

	.panel.small .span-0-75, .panel.medium .span-0-75, .panel.large .span-0-75 {
		width: 7.5%;
	}

	.panel.small .span-1, .panel.medium .span-1, .panel.large .span-1 {
		width: 10%;
	}

	.panel.small .span-1-25, .panel.medium .span-1-25, .panel.large .span-1-25 {
		width: 12.5%;
	}

	.panel.small .span-1-5, .panel.medium .span-1-5, .panel.large .span-1-5 {
		width: 15%;
	}

	.panel.small .span-1-75, .panel.medium .span-1-75, .panel.large .span-1-75 {
		width: 17.5%;
	}

	.panel.small .span-2, .panel.medium .span-2, .panel.large .span-2 {
		width: 20%;
	}

	.panel.small .span-2-25, .panel.medium .span-2-25, .panel.large .span-2-25 {
		width: 22.5%;
	}

	.panel.small .span-2-5, .panel.medium .span-2-5, .panel.large .span-2-5 {
		width: 25%;
	}

	.panel.small .span-2-75, .panel.medium .span-2-75, .panel.large .span-2-75 {
		width: 27.5%;
	}

	.panel.small .span-3, .panel.medium .span-3, .panel.large .span-3 {
		width: 30%;
	}

	.panel.small .span-3-25, .panel.medium .span-3-25, .panel.large .span-3-25 {
		width: 32.5%;
	}

	.panel.small .span-3-5, .panel.medium .span-3-5, .panel.large .span-3-5 {
		width: 35%;
	}

	.panel.small .span-3-75, .panel.medium .span-3-75, .panel.large .span-3-75 {
		width: 37.5%;
	}

	.panel.small .span-4, .panel.medium .span-4, .panel.large .span-4 {
		width: 40%;
	}

	.panel.small .span-4-25, .panel.medium .span-4-25, .panel.large .span-4-25 {
		width: 42.5%;
	}

	.panel.small .span-4-5, .panel.medium .span-4-5, .panel.large .span-4-5 {
		width: 45%;
	}

	.panel.small .span-4-75, .panel.medium .span-4-75, .panel.large .span-4-75 {
		width: 47.5%;
	}

	.panel.small .span-5, .panel.medium .span-5, .panel.large .span-5 {
		width: 50%;
	}

	.panel.small .span-5-25, .panel.medium .span-5-25, .panel.large .span-5-25 {
		width: 52.5%;
	}

	.panel.small .span-5-5, .panel.medium .span-5-5, .panel.large .span-5-5 {
		width: 55%;
	}

	.panel.small .span-5-75, .panel.medium .span-5-75, .panel.large .span-5-75 {
		width: 57.5%;
	}

	.panel.small .span-6, .panel.medium .span-6, .panel.large .span-6 {
		width: 60%;
	}

	.panel.small .span-6-25, .panel.medium .span-6-25, .panel.large .span-6-25 {
		width: 62.5%;
	}

	.panel.small .span-6-5, .panel.medium .span-6-5, .panel.large .span-6-5 {
		width: 65%;
	}

	.panel.small .span-6-75, .panel.medium .span-6-75, .panel.large .span-6-75 {
		width: 67.5%;
	}

	.panel.small .span-7, .panel.medium .span-7, .panel.large .span-7 {
		width: 70%;
	}

	.panel.small .span-7-25, .panel.medium .span-7-25, .panel.large .span-7-25 {
		width: 72.5%;
	}

	.panel.small .span-7-5, .panel.medium .span-7-5, .panel.large .span-7-5 {
		width: 75%;
	}

	.panel.small .span-7-75, .panel.medium .span-7-75, .panel.large .span-7-75 {
		width: 77.5%;
	}

	.panel.small .span-8, .panel.medium .span-8, .panel.large .span-8 {
		width: 80%;
	}

	.panel.small .span-8-25, .panel.medium .span-8-25, .panel.large .span-8-25 {
		width: 82.5%;
	}

	.panel.small .span-8-5, .panel.medium .span-8-5, .panel.large .span-8-5 {
		width: 85%;
	}

	.panel.small .span-8-75, .panel.medium .span-8-75, .panel.large .span-8-75 {
		width: 87.5%;
	}

	.panel.small .span-9, .panel.medium .span-9, .panel.large .span-9 {
		width: 90%;
	}

	.panel.small .span-9-25, .panel.medium .span-9-25, .panel.large .span-9-25 {
		width: 92.5%;
	}

	.panel.small .span-9-5, .panel.medium .span-9-5, .panel.large .span-9-5 {
		width: 95%;
	}

	.panel.small .span-9-75, .panel.medium .span-9-75, .panel.large .span-9-75 {
		width: 97.5%;
	}

	.panel.small .span-10, .panel.medium .span-10, .panel.large .span-10 {
		width: 100%;
	}

	.panel.color0 {
		background-image: url("../../images/overlay.png"), linear-gradient(45deg, #726193 20%, #e37b7c 60%, #ffe4b4);
		background-size: 128px 128px, auto;
	}

	.panel.color1 {
		background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
		background-size: 128px 128px, auto;
		background-color: #726193;
	}

	.panel.color2 {
		background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
		background-size: 128px 128px, auto;
		background-color: #e37b7c;
	}

	.panel.color3 {
		background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
		background-size: 128px 128px, auto;
		background-color: #ffe4b4;
	}

	.panel.color4 {
		background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
		background-size: 128px 128px, auto;
		background-color: #353865;
	}

	.panel.color1-alt {
		background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
		background-size: 128px 128px, auto;
		background-color: #6c5e86;
	}

	.panel.color2-alt {
		background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
		background-size: 128px 128px, auto;
		background-color: #de7172;
	}

	.panel.color3-alt {
		background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
		background-size: 128px 128px, auto;
		background-color: #fedea6;
	}

	.panel.color4-alt {
		background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
		background-size: 128px 128px, auto;
		background-color: #323459;
	}

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

	.panel {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
	}

		.panel > *.color1 {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #726193;
		}

		.panel > *.color2 {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #e37b7c;
		}

		.panel > *.color3 {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #ffe4b4;
		}

		.panel > *.color4 {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #353865;
		}

		.panel > *.color1-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #6c5e86;
		}

		.panel > *.color2-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #de7172;
		}

		.panel > *.color3-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #fedea6;
		}

		.panel > *.color4-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #323459;
		}

		.panel > .intro {
			padding: 2.8875rem 1.75rem 1.3875rem 1.75rem ;
			width: 100% !important;
		}

			.panel > .intro.joined {
				padding-bottom: 0;
				padding-right: 1.75rem;
			}

				.panel > .intro.joined + .inner {
					padding-top: 0;
					padding-left: 1.75rem;
				}

		.panel > .inner {
			padding: 2.8875rem 1.75rem 1.3875rem 1.75rem ;
		}

			.panel > .inner.columns {
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
			}

				.panel > .inner.columns > * {
					margin-left: 0;
					margin-top: 0;
				}

				.panel > .inner.columns > :first-child {
					margin-top: 0;
				}

				.panel > .inner.columns.divided > * {
					margin-left: 0;
					margin-top: 3.5rem;
				}

					.panel > .inner.columns.divided > *:before {
						content: '';
						position: absolute;
						top: auto;
						left: 1.75rem;
						width: calc(100% - 3.5rem);
						height: 2px;
						margin-left: 0;
						margin-top: -1.75rem;
					}

				.panel > .inner.columns.divided > :first-child {
					margin-top: 0;
				}

		.panel .span-0-25 {
			width: 100%;
		}

		.panel .span-0-5 {
			width: 100%;
		}

		.panel .span-0-75 {
			width: 100%;
		}

		.panel .span-1 {
			width: 100%;
		}

		.panel .span-1-25 {
			width: 100%;
		}

		.panel .span-1-5 {
			width: 100%;
		}

		.panel .span-1-75 {
			width: 100%;
		}

		.panel .span-2 {
			width: 100%;
		}

		.panel .span-2-25 {
			width: 100%;
		}

		.panel .span-2-5 {
			width: 100%;
		}

		.panel .span-2-75 {
			width: 100%;
		}

		.panel .span-3 {
			width: 100%;
		}

		.panel .span-3-25 {
			width: 100%;
		}

		.panel .span-3-5 {
			width: 100%;
		}

		.panel .span-3-75 {
			width: 100%;
		}

		.panel .span-4 {
			width: 100%;
		}

		.panel .span-4-25 {
			width: 100%;
		}

		.panel .span-4-5 {
			width: 100%;
		}

		.panel .span-4-75 {
			width: 100%;
		}

		.panel .span-5 {
			width: 100%;
		}

		.panel .span-5-25 {
			width: 100%;
		}

		.panel .span-5-5 {
			width: 100%;
		}

		.panel .span-5-75 {
			width: 100%;
		}

		.panel .span-6 {
			width: 100%;
		}

		.panel .span-6-25 {
			width: 100%;
		}

		.panel .span-6-5 {
			width: 100%;
		}

		.panel .span-6-75 {
			width: 100%;
		}

		.panel .span-7 {
			width: 100%;
		}

		.panel .span-7-25 {
			width: 100%;
		}

		.panel .span-7-5 {
			width: 100%;
		}

		.panel .span-7-75 {
			width: 100%;
		}

		.panel .span-8 {
			width: 100%;
		}

		.panel .span-8-25 {
			width: 100%;
		}

		.panel .span-8-5 {
			width: 100%;
		}

		.panel .span-8-75 {
			width: 100%;
		}

		.panel .span-9 {
			width: 100%;
		}

		.panel .span-9-25 {
			width: 100%;
		}

		.panel .span-9-5 {
			width: 100%;
		}

		.panel .span-9-75 {
			width: 100%;
		}

		.panel .span-10 {
			width: 100%;
		}

		.panel.small, .panel.medium, .panel.large {
			width: 100% !important;
		}

			.panel.small .span-0-25, .panel.medium .span-0-25, .panel.large .span-0-25 {
				width: 100%;
			}

			.panel.small .span-0-5, .panel.medium .span-0-5, .panel.large .span-0-5 {
				width: 100%;
			}

			.panel.small .span-0-75, .panel.medium .span-0-75, .panel.large .span-0-75 {
				width: 100%;
			}

			.panel.small .span-1, .panel.medium .span-1, .panel.large .span-1 {
				width: 100%;
			}

			.panel.small .span-1-25, .panel.medium .span-1-25, .panel.large .span-1-25 {
				width: 100%;
			}

			.panel.small .span-1-5, .panel.medium .span-1-5, .panel.large .span-1-5 {
				width: 100%;
			}

			.panel.small .span-1-75, .panel.medium .span-1-75, .panel.large .span-1-75 {
				width: 100%;
			}

			.panel.small .span-2, .panel.medium .span-2, .panel.large .span-2 {
				width: 100%;
			}

			.panel.small .span-2-25, .panel.medium .span-2-25, .panel.large .span-2-25 {
				width: 100%;
			}

			.panel.small .span-2-5, .panel.medium .span-2-5, .panel.large .span-2-5 {
				width: 100%;
			}

			.panel.small .span-2-75, .panel.medium .span-2-75, .panel.large .span-2-75 {
				width: 100%;
			}

			.panel.small .span-3, .panel.medium .span-3, .panel.large .span-3 {
				width: 100%;
			}

			.panel.small .span-3-25, .panel.medium .span-3-25, .panel.large .span-3-25 {
				width: 100%;
			}

			.panel.small .span-3-5, .panel.medium .span-3-5, .panel.large .span-3-5 {
				width: 100%;
			}

			.panel.small .span-3-75, .panel.medium .span-3-75, .panel.large .span-3-75 {
				width: 100%;
			}

			.panel.small .span-4, .panel.medium .span-4, .panel.large .span-4 {
				width: 100%;
			}

			.panel.small .span-4-25, .panel.medium .span-4-25, .panel.large .span-4-25 {
				width: 100%;
			}

			.panel.small .span-4-5, .panel.medium .span-4-5, .panel.large .span-4-5 {
				width: 100%;
			}

			.panel.small .span-4-75, .panel.medium .span-4-75, .panel.large .span-4-75 {
				width: 100%;
			}

			.panel.small .span-5, .panel.medium .span-5, .panel.large .span-5 {
				width: 100%;
			}

			.panel.small .span-5-25, .panel.medium .span-5-25, .panel.large .span-5-25 {
				width: 100%;
			}

			.panel.small .span-5-5, .panel.medium .span-5-5, .panel.large .span-5-5 {
				width: 100%;
			}

			.panel.small .span-5-75, .panel.medium .span-5-75, .panel.large .span-5-75 {
				width: 100%;
			}

			.panel.small .span-6, .panel.medium .span-6, .panel.large .span-6 {
				width: 100%;
			}

			.panel.small .span-6-25, .panel.medium .span-6-25, .panel.large .span-6-25 {
				width: 100%;
			}

			.panel.small .span-6-5, .panel.medium .span-6-5, .panel.large .span-6-5 {
				width: 100%;
			}

			.panel.small .span-6-75, .panel.medium .span-6-75, .panel.large .span-6-75 {
				width: 100%;
			}

			.panel.small .span-7, .panel.medium .span-7, .panel.large .span-7 {
				width: 100%;
			}

			.panel.small .span-7-25, .panel.medium .span-7-25, .panel.large .span-7-25 {
				width: 100%;
			}

			.panel.small .span-7-5, .panel.medium .span-7-5, .panel.large .span-7-5 {
				width: 100%;
			}

			.panel.small .span-7-75, .panel.medium .span-7-75, .panel.large .span-7-75 {
				width: 100%;
			}

			.panel.small .span-8, .panel.medium .span-8, .panel.large .span-8 {
				width: 100%;
			}

			.panel.small .span-8-25, .panel.medium .span-8-25, .panel.large .span-8-25 {
				width: 100%;
			}

			.panel.small .span-8-5, .panel.medium .span-8-5, .panel.large .span-8-5 {
				width: 100%;
			}

			.panel.small .span-8-75, .panel.medium .span-8-75, .panel.large .span-8-75 {
				width: 100%;
			}

			.panel.small .span-9, .panel.medium .span-9, .panel.large .span-9 {
				width: 100%;
			}

			.panel.small .span-9-25, .panel.medium .span-9-25, .panel.large .span-9-25 {
				width: 100%;
			}

			.panel.small .span-9-5, .panel.medium .span-9-5, .panel.large .span-9-5 {
				width: 100%;
			}

			.panel.small .span-9-75, .panel.medium .span-9-75, .panel.large .span-9-75 {
				width: 100%;
			}

			.panel.small .span-10, .panel.medium .span-10, .panel.large .span-10 {
				width: 100%;
			}

		.panel.color1 {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #726193;
		}

		.panel.color2 {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #e37b7c;
		}

		.panel.color3 {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #ffe4b4;
		}

		.panel.color4 {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
			background-size: 128px 128px, auto;
			background-color: #353865;
		}

		.panel.color1-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #6c5e86;
		}

		.panel.color2-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #de7172;
		}

		.panel.color3-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #fedea6;
		}

		.panel.color4-alt {
			background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
			background-size: 128px 128px, auto;
			background-color: #323459;
		}

}

/* Panel (Banner) */

.panel.banner {
	-moz-align-items: -moz-stretch;
	-webkit-align-items: -webkit-stretch;
	-ms-align-items: -ms-stretch;
	align-items: stretch;
}

	.panel.banner .content {
		padding: 3.5rem 3.5rem 2rem 3.5rem ;
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		-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;
	}

		.panel.banner .content > .actions:last-child {
			margin-bottom: 0;
		}

	.panel.banner .image {
		-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;
		position: relative;
	}

		.panel.banner .image img {
			-moz-object-fit: cover;
			-webkit-object-fit: cover;
			-ms-object-fit: cover;
			object-fit: cover;
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}
	
	#banner header {
		background-color: #000;
	}

	.panel.banner.left {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.panel.banner.right {
		-moz-flex-direction: row-reverse;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}

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

	.panel.banner .content {
		padding: 2.8875rem 1.75rem 1.3875rem 1.75rem ;
		-moz-flex-basis: 60%;
		-webkit-flex-basis: 60%;
		-ms-flex-basis: 60%;
		flex-basis: 60%;
	}

		.panel.banner .content > .actions:last-child {
			margin-bottom: 1.5rem;
		}

	.panel.banner .image {
		-moz-flex-basis: 40%;
		-webkit-flex-basis: 40%;
		-ms-flex-basis: 40%;
		flex-basis: 40%;
	}

}

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

	.panel.banner .content {
		-moz-flex-basis: auto;
		-webkit-flex-basis: auto;
		-ms-flex-basis: auto;
		flex-basis: auto;
	}

	.panel.banner .image {
		-moz-flex-basis: auto;
		-webkit-flex-basis: auto;
		-ms-flex-basis: auto;
		flex-basis: auto;
		height: 18rem;
	}

	.panel.banner.left {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.panel.banner.right {
		-moz-flex-direction: column-reverse;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

}



/* Page Wrapper */

	#page-wrapper > section {
		margin-bottom: 0;
	}

/* Header */

	#header {
		position: relative;
		background: #ffffff;
		border-bottom: solid 1px #ccc;
		padding: 5em 0 4em 0;
		text-align: center;
	}

		#header h1 {
			color: #252122;
			font-weight: 900;
			font-size: 2.5em;
			letter-spacing: -0.035em;
			line-height: 1;
		}

/* Nav */

	#nav {
		margin: 2.5em 0 0 0;
		font-family: 'CustomFont';
		word-spacing: 0.2em;
		
	}

		#nav > ul {
			margin: 0;
		}

			#nav > ul > li {
				display: inline-block;
				/*font-style: italic;*/
				margin: 0 0.35em 0 0.35em;
			}

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

				#nav > ul > li > a {
					border-radius: 5px;
					color: #020202;
					text-decoration: none;
					padding: 0.6em 1.2em 0.6em 1.2em;
					-moz-transition: background-color .25s ease-in-out;
					-webkit-transition: background-color .25s ease-in-out;
					-ms-transition: background-color .25s ease-in-out;
					transition: background-color .25s ease-in-out;
					outline: 0;
					font-weight: 700;
				}

				#nav > ul > li:hover > a, #nav > ul > li.active > a {
					background: #d52349;
					color: #fff !important;
					font-weight: 1000;
				}

				#nav > ul > li.current > a {
					background: none;           /* remove background color */
					color: #d52349;  /* text color (red) */
					font-weight: 1000;          /* keep or adjust as needed */
					border: 2px solid #d52349;  /* add a red border */
					padding: 0.5em 1.1em 0.5em 1.1em;       /* add some padding so the border doesn't hug the text too tightly */
					border-radius: 4px;
				}

				#nav > ul > li.current:hover > a {
					background: #d52349;
					color: #fff !important;
					font-weight: 1000;
					border: 2px solid #d52349;
					border-radius: 4px;
				}

				#nav > ul > li.buymecoffee:hover > a {
					background: #40dca5;
					color: #fff !important;
					font-weight: 1000;
				}

	.dropotron {
		border-radius: 5px;
		background-color: #252122;
		background-color: rgba(34, 30, 31, 0.98);
		padding: 1.25em 1.5em 1.25em 1.5em;
		font-style: italic;
		min-width: 13em;
		box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.5);
		text-align: left;
		margin-top: -1.25em;
		margin-left: -1px;
		list-style: none;
	}

		.dropotron a, .dropotron span {
			color: #aaa;
			text-decoration: none;
			-moz-transition: color .25s ease-in-out;
			-webkit-transition: color .25s ease-in-out;
			-ms-transition: color .25s ease-in-out;
			transition: color .25s ease-in-out;
		}

		.dropotron li {
			padding: 0.25em 0 0.25em 0;
		}

			.dropotron li:hover > a, .dropotron li:hover > span {
				color: #fff;
			}

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

			.dropotron.level-0:before {
				content: '';
				display: block;
				position: absolute;
				left: 50%;
				margin-left: -10px;
				top: -9px;
				border-left: solid 10px transparent;
				border-right: solid 10px transparent;
				border-bottom: solid 10px #252122;
				border-bottom-color: rgba(34, 30, 31, 0.98);
			}

/* Banner */

	#banner {
		background: #CCE8F4 url("../../images/BANER.JPG");
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;
		text-align: center;
		position: relative;
		padding: 8em 0;
		margin: 0 0 0 0;
		font-size: 25px;
	}

		#banner header {
			background-color: rgba(37, 34, 56, 0.6);
			display: inline-block;
			padding: 2em 1.5em;
			border-radius: 20px;
		}

			#banner header h2 {
				color: #000;
				font-weight: 700;
				font-size: 2.5em;
				margin: 0 0 0.65em 0;
			}

			#banner header p {
				color: #fff;
				padding: 0;
				font-style: normal;
				margin: 0;
				font-size: 1.5em;
			}

/* Intro */

	#intro {
		text-align: center;
		overflow: hidden;
	}

		#intro section {
			margin: 3em 0;
			padding: 2.5em 0;
		}

		#intro h2 {
			font-size: 1.75em;
		}

		#intro p {
			margin: 0;
		}

		#intro .middle {
			position: relative;
			z-index: 1;
		}

			#intro .middle:before {
				content: '';
				width: 32px;
				height: 100%;
				position: absolute;
				left: -24px;
				top: 0;
				display: block;
				z-index: -1;
				box-shadow: 32px 0 0 0 #fff, 0 -32px 0 0 #fff, 0 32px 0 0 #fff, 32px 32px 0 0 #fff, 32px -32px 0 0 #fff, 0 0 32px 0 rgba(0, 0, 0, 0.15);
			}

			#intro .middle:after {
				content: '';
				width: 32px;
				height: 100%;
				position: absolute;
				right: -24px;
				top: 0;
				display: block;
				z-index: -1;
				box-shadow: -32px 0 0 0 #fff, 0 -32px 0 0 #fff, 0 32px 0 0 #fff, -32px 32px 0 0 #fff, -32px -32px 0 0 #fff, 0 0 32px 0 rgba(0, 0, 0, 0.15);
			}

		#intro .button {
			min-width: 12em;
		}

		#intro footer {
			margin: 0;
		}

/* Main */

	#main {
		position: relative;
		background: #f7f7f7 url("images/bg02.png");
		padding: 0 0 3em 0;
	}

		#main:before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			background: url("images/bg01.png");
			background-size: 100% 100%;
			z-index: 0;
			opacity: 0.1;
		}

		#main .major h2 {
			background: #f7f7f7 url("images/bg02.png");
		}

/* Footer */

	#footer {
		position: relative;
		color: #858484;
		padding: 4em 0;
	}

		#footer:before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			background: url("images/bg01.png");
			background-size: 100% 100%;
			z-index: 0;
			opacity: 0.5;
		}

		#footer a {
			color: #c5c4c4;
		}

		#footer h2, #footer h3, #footer h4, #footer h5, #footer h6, #footer strong, #footer b {
			color: #fff;
		}

			#footer h2 a, #footer h3 a, #footer h4 a, #footer h5 a, #footer h6 a, #footer strong a, #footer b a {
				color: inherit;
			}

		#footer ul.contact li,
		#footer ul.dates li,
		#footer ul.divided li {
			border-top-color: #353434;
			border-top-color: rgba(255, 255, 255, 0.05);
		}

		#footer header {
			margin: 0 0 3em 0;
		}

			#footer header h2 {
				font-size: 1.75em;
			}
/* Contact text */
#contact {
	text-align: center;
	font-size: 2em;
	color: #fff;
	margin: 0em 0 0 0;
}

/* Copyright */

	#copyright {
		text-align: center;
		margin: 0em 0 0em 0;
	}

		#copyright ul.links {
			display: inline-block;
			background: #2C2929;
			background: rgba(255, 255, 255, 0.05);
			border-radius: 5px;
			margin: 0;
			padding: 0.85em 2.25em 0.85em 2.25em;
		}

/* XLarge */

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

		/* Basic */

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

	}

/* Large */

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

		/* Basic */

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

		/* Section/Article */

			header.major {
				margin: 0.75em 0 2.5em 0;
			}

				header.major h2 {
					padding: 0 1em 0 1em;
				}

		/* Social */

			ul.social li {
				margin: 0 0 0.25em 0.75em;
			}

		/* Header */

			#header {
				padding: 4em 0 3em 0;
			}

		/* Banner */

			#banner {
				padding: 6em 0;
				margin: 3em 0 0 0;
			}

		/* Intro */

			#intro {
				padding: 0;
			}

				#intro section {
					padding: 1em 2em;
				}

				#intro .middle:before {
					left: -12px;
				}

				#intro .middle:after {
					right: -12px;
				}

		/* Main */

			#main {
				padding: 30px 0;
			}

		/* Footer */

			#footer {
				padding: 3em 0;
			}

				#footer:before {
					height: 2.5em;
				}

				#footer header {
					margin: 0 0 1.5em 0;
				}

					#footer header h2 {
						font-size: 1.25em;
					}

		/* Copyright */

			#copyright {
				margin: 0;
			}

	}

/* Medium */

	#navPanel, #titleBar {
		display: none;
	}

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

		/* Basic */

			html, body {
				overflow-x: hidden;
			}

		/* Box */

			.box footer ul.actions li {
				margin: 1em 0 0 0;
				display: block;
			}

				.box footer ul.actions li .button {
					width: 100%;
				}

				.box footer ul.actions li:first-child {
					margin-top: 0;
				}

		/* Header */

			#header {
				padding: 3.5em 0 3em 0;
			}

		/* Nav */

			#nav {
				display: none;
			}

		/* Intro */

			#intro {
				padding: 3em 0 0 0;
			}

				#intro section {
					position: relative;
					border-top: solid 1px #dfdfdf;
					margin: 0;
					padding: 40px 0 0 0;
				}

					#intro section.first {
						border-top: 0;
						padding-top: 0;
					}

					#intro section p {
						margin: 0;
					}

				#intro .middle:before, #intro .middle:after {
					display: none;
				}

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

					#intro footer ul.actions {
						margin-bottom: 0;
					}

		/* Main */

			#main {
				padding: 40px 0;
			}

		/* Copyright */

			#copyright ul.links {
				display: block;
			}

		/* Nav */

			#page-wrapper {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				padding-bottom: 1px;
			}

			#titleBar {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 44px;
				left: 0;
				position: fixed;
				top: 0;
				width: 100%;
				z-index: 10001;
				background: none;
			}

				#titleBar .toggle {
					text-decoration: none;
					width: 80px;
					height: 60px;
				}

					#titleBar .toggle:before {
						-moz-osx-font-smoothing: grayscale;
						-webkit-font-smoothing: antialiased;
						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;
					}

					#titleBar .toggle:before {
						content: '\f0c9';
						display: block;
						position: absolute;
						left: 10px;
						top: 10px;
						width: 50px;
						height: 40px;
						line-height: 40px;
						font-size: 18px;
						color: #fff;
						text-align: center;
						background: rgba(150, 150, 150, 0.75);
						border-radius: 5px;
					}

					#titleBar .toggle:active:before {
						background-color: #969696;
					}

			#navPanel {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transform: translateX(-275px);
				-webkit-transform: translateX(-275px);
				-ms-transform: translateX(-275px);
				transform: translateX(-275px);
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 100%;
				left: 0;
				overflow-y: auto;
				position: fixed;
				top: 0;
				width: 275px;
				z-index: 10002;
				color: #858484;
				background-image: url("images/bg02.png");
				box-shadow: inset -3px 0px 5px 0px rgba(0, 0, 0, 0.35);
			}

				#navPanel .link {
					display: block;
					color: #888;
					text-decoration: none;
					height: 44px;
					line-height: 44px;
					border-top: solid 1px rgba(255, 255, 255, 0.05);
					padding: 0 1em 0 1em;
					font-style: italic;
				}

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

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

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

				#navPanel .indent-3 {
					display: inline-block;
					width: 3em;
				}

				#navPanel .indent-4 {
					display: inline-block;
					width: 4em;
				}

				#navPanel .indent-5 {
					display: inline-block;
					width: 5em;
				}

				#navPanel .depth-0 {
					color: #fff;
				}

			body.navPanel-visible #page-wrapper {
				-moz-transform: translateX(275px);
				-webkit-transform: translateX(275px);
				-ms-transform: translateX(275px);
				transform: translateX(275px);
			}

			body.navPanel-visible #titleBar {
				-moz-transform: translateX(275px);
				-webkit-transform: translateX(275px);
				-ms-transform: translateX(275px);
				transform: translateX(275px);
			}

			body.navPanel-visible #navPanel {
				-moz-transform: translateX(0);
				-webkit-transform: translateX(0);
				-ms-transform: translateX(0);
				transform: translateX(0);
			}

	}

/* Small */

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

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

			h2, h3, h4, h5, h6 {
				font-size: 1.25em;
			}

		/* Button */

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

		/* Actions */

			ul.actions li {
				margin: 1em 0 0 0;
				display: block;
			}

				ul.actions li .button {
					width: 100%;
				}

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

		/* Section/Article */

			section, article {
				margin-bottom: 20px;
			
			}

			header {
				margin: 0 0 1em 0;
			}

			footer {
				margin: 2em 0 0 0;
			}

		/* Box */

			.box {
				padding: 25px 15px 20px 15px;
			}

				.box .image.featured {
					left: 15px;
					top: 15px;
					margin: -40px 0 40px -30px;
				}

				.box.post header {
					padding-top: 0;
					margin: 0 0 1em 0;
				}

				.box.post h2 {
					font-size: 1.5em;
					line-height: 1.5em;
				}

				.box.post header > p {
					margin-top: 0;
					font-size: 1em;
				}

		/* Divided */

			ul.divided li {
				padding: 0.5em 0 0.5em 0;
			}

		/* Contact */

			ul.contact li {
				padding: 0.8em 0 0.8em 7em;

			}

			ul.contact li h3 {
				top: 0.8em;
			}

		/* Dates */

			ul.dates li {
				padding-left: 6em;
			}

			ul.dates h3 {
				margin: 0 0 0.5em 0;
			}

		/* Links */

			ul.links li {
				display: block;
				padding: 0.25em 0 0 0;
				margin: 0.25em 0 0 0;
				border-left: 0;
			}

				ul.links li:first-child {
					padding-top: 0;
					margin-top: 0;
				}

		/* Social */

			ul.social li {
				margin: 0 0.5em 0.75em 0;
			}

		/* Icons */

			.icon.featured {
				width: 8em;
				margin: 0 0 3em 0;
			}

				.icon.featured:after {
					border-left: solid 4em transparent;
					border-right: solid 4em transparent;
				}

		/* Header */

			#header {
				text-align: center;
				padding: 1.5em 0;
			}

				#header h1 {
					color: #252122;
					font-weight: 900;
					font-size: 1.75em;
					letter-spacing: -0.035em;
				}
				

		/* Intro */

			#intro {
				padding: 2em 0 0 0;
			}

				#intro section {
					padding: 40px 0 0 0;
					margin: 20px 0 0 0;
				}

				#intro h2 {
					font-size: 1.25em;
				}

		/* Banner */

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

				#banner header {
					padding: 1.5em 1em 1.5em 1em;
					display: block;
					border-radius: 0;
				}

					#banner header h2 {
						font-size: 1.5em;
						line-height: 1.5em;
						margin: 0 0 0.25em 0;
					}

					#banner header p {
						font-size: 1.2em;
					}

		/* Main */

			#main {
				padding: 20px 0;
			}

		/* Footer */

			#footer {
				padding: 40px 0 20px 0;
			}

		

	}

	/*===============MOJE UBACENO=====================*/

	/*=== paket1 ===*/
.container-slideshow-form {
	width: 100%;
	display: flex; 
    flex-direction: column; /* Stack items vertically */
	align-items: center; /* Vertically align items */
    gap: 20px; /* Space between slideshow and form */
    max-width: 1200px; /* Optional: Limit the maximum width */
    margin: 0 auto; /* Center the container in the viewport */
	padding: 4em 0 0 0;
}

/*SLIDE SHOW*/
	* {box-sizing:border-box}

	/* Slideshow container */
	.slideshow-container {
	width: 35%;
	position: relative;
	
	}

	/* Hide the images by default */
	.mySlides {
	display: none;
	
	}

	/* Next & previous buttons */
	.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: black;
	font-weight: bold;
	font-size: 20px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	}

	/* Position the "next button" to the right */
	.next {
	right: 0;
	border-radius: 3px 0 0 3px;
	}

	/* On hover, add a black background color with a little bit see-through */
	.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
	color: white
	}


	/* The dots/bullets/indicators */
	.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
	}

	.active, .dot:hover {
	background-color: #3b3939;
	}

	/* Fading animation */
	.fade {
	animation-name: fade;
	animation-duration: 1.5s;
	}

	@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
	}


	/* Form Container */
	.form-buy-container {
		width: 100%;
		max-width: 600px; /* Limit the maximum width */
		margin: 20px auto; /* Center the form */
		padding: 20px;
		border: 1px solid #ccc; /* Add a border */
		border-radius: 8px; /* Rounded corners */
		background-color: #f9f9f9; /* Light background */
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
	}

	

	/* Form Elements */
	.form-buy {
		display: flex;
		flex-direction: column;
		gap: 15px; /* Space between elements */
	}

	.form-buy label {
		font-size: 1rem; /* Label text size */
		color: #333; /* Label color */
		font-weight: bold;
	}

	.form-buy input[type="text"],
	.form-buy textarea {
		width: 100%; /* Full-width inputs */
		padding: 10px; /* Internal spacing */
		font-size: 1rem; /* Input text size */
		border: 1px solid #ccc; /* Border style */
		border-radius: 4px; /* Rounded corners */
		background-color: #fff; /* White background */
		box-sizing: border-box; /* Ensure consistent sizing */
	}

	.form-buy input[type="text"]:focus,
	.form-buy textarea:focus {
		outline: none; /* Remove default outline */
		border-color: #007bff; /* Highlighted border color */
		box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Subtle shadow */
	}

	.form-buy input[type="radio"] {
		appearance: auto;
		display: flex;
		align-items: center;
	}

	.radio-container {
		display: flex;
		align-items: center;
		gap: 10px; /* Adds spacing between options */
	}
	.radio-container input {
		margin: 0;
	}

	/* Submit Button */
	.form-buy input[type="submit"] {
		font-family: 'CustomFont';
		width: 100%; /* Full-width button */
		padding: 10px 15px; /* Button padding */
		font-size: 1rem; /* Button text size */
		font-weight: bold;
		color: #fff; /* White text */
		background-color: #d52349; /* Primary color */
		border: none; /* Remove border */
		border-radius: 4px; /* Rounded corners */
		cursor: pointer; /* Pointer cursor */
		transition: background-color 0.3s ease; /* Smooth hover transition */
	}

	.form-buy input[type="submit"]:hover {
		background-color: rgb(147, 22, 22); /* Darker shade on hover */
	}

	.form-buy input[type=date] {
		width: 150px; /* Adjust width as needed */
		padding: 5px;
		font-size: 14px;
	}

	/* Responsive Design */
	@media (max-width: 480px) {
		.form-buy-container {
			padding: 15px;
		}

		.form-buy input[type="submit"] {
			font-size: 0.9rem; /* Adjust button size */
		}
	}


	/*=== responsive design ===*/
	@media (max-width: 1200px) {
		.container-slideshow-form {
			gap: 15px;
		}
	
		.slideshow-container {
			width: 40%; /* Increase width for smaller screens */
		}
	}
	
	@media (max-width: 768px) {
		.container-slideshow-form {
			padding: 3em 1em;
		}
	
		.slideshow-container {
			width: 60%; /* Adjust width for medium-sized screens */
		}
	}
	
	@media (max-width: 480px) {
		.container-slideshow-form {
			padding: 2em 1em;
		}
	
		.slideshow-container {
			width: 90%; /* Full width for small screens */
		}
	
		.prev,
		.next {
			font-size: 16px; /* Smaller buttons for small screens */
			padding: 10px;
		}
	}


	

	/*===============INSTAGRAM=====================*/
	
	.icon.brands.fa-instagram {
		display: inline-block;
		font-size: 2rem;
		text-decoration: none;
	}

	.icon.brands.fa-instagram:hover {
		transform: scale(1.2);
	}
	

	/* Center the content on smaller devices */
@media screen and (max-width: 768px) {
    #naruci .row {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center horizontally */
        justify-content: center; /* Center vertically */
    }

    #naruci .col-3 {
        width: 100%; /* Make each column take full width */
        margin-bottom: 20px; /* Add space between items */
    }

    #naruci .box {
        text-align: center; /* Center text content */
    }

    #naruci .actions {
        justify-content: center;
    }
}


#naruci {
	padding: 0 0 3em 0;
	
	
}
#naruci h5{
	font-size: 25px;
}

#naruci .box {
	height: 100%; /* Make each column take full width */

}

#umedijima {
	padding: 0 0 3em 0;	
}




/*=== FORM footer ====*/

/* ======Modal form contact me =============*/
#contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* Dim background */
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

/* Visible State for the Modal */
#contact-modal.show {
    visibility: visible;
    opacity: 1;
}

/* Modal Content */
.modal-content {
    background: #2C2929;
	padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
	opacity: 1; /* Fully opaque */
}

.modal-content label {
	color: white;
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content textarea {
	-webkit-text-fill-color: white;
	border-radius: 0px;
	background-color: transparent;
	border: none;
	border-bottom: 2px solid #706f6f;
	outline: none;
	font-size: 20px;
	padding: 5px 0;
	margin-bottom: 20px;
	transition: border-color 0.3s ease-in-out;
  }
  
.modal-content input[type="text"]:focus,
.modal-content  input[type="email"]:focus,
.modal-content  textarea:focus {
	box-shadow: none;
	border-bottom-color: #007bff;

}
.modal-content textarea {
	resize: vertical;
	max-height: 100px;	
}

.modal-content input[type="submit"] {
	font-family: 'CustomFont';
}

/* Close Button */
.close-button {
    background: none;
    border: none;
    font-size: 20px;
    color: black;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}



/* ===== PAPER PLANE ICON ===============*/
@keyframes pulse {
    0% {
        transform: scale(1);
        color: #007bff;
    }
    50% {
        transform: scale(1.1);
        color: #00bfff;
    }
    100% {
        transform: scale(1);
        color: #007bff;
    }
}

@keyframes fly {
	10% {
        transform: translate(-10px, 10px);
    }
	40% {
		transform: translate(-25px, 20px);
		opacity: 1;
	}
    100% {
        transform: translate(100px, -100px);
		opacity: 0;

      }
   
}


#toggle-form {
    cursor: pointer;
    animation: pulse 2s infinite;
    color: #007bff;
	transition: color 0.3s ease, transform 0.3s ease;
}

#toggle-form:hover {
    animation: none; 
    color: #a5daeb;
    transform: translate(-5px, 5px) ;
	
}

/* Flying animation */
#toggle-form.flying {
    animation: fly 1s forwards; /* Set animation duration to 4s */
}

.logo_header img {
	width: 100%; /* Make the image scale to 100% of its container */
    max-width: 300px;
    height: auto; /* This maintains the aspect ratio */
}

.opis_procesa {
	max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    gap: 20px;
    justify-content: center;
}

/* Make it a single column on smaller screens */
@media (max-width: 768px) {
    .opis_procesa {
        grid-template-columns: 1fr; /* Single column layout */
    }
}

.opis_procesa .image_featured {
    width: 100%;
    height: auto;
}

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

.center_header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.profile_pic {
	width: 50%;
	height: 50%;
	border-radius: 25%;
	margin: 0 auto;
	display: block;
}

/* Default styling for larger screens */
#naruci h2 {
    font-size: 2.5rem; /* Adjust based on design */
    text-align: center;
}

#naruci h5 {
    font-size: 1.2rem;
    text-align: center;
    font-weight: normal;
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
    #naruci h2 {
        font-size: 2rem;
    }

    #naruci h5 {
        font-size: 1rem;
    }
}

/* Small screens (mobile) */
@media (max-width: 480px) {
    #naruci h2 {
        font-size: 1.8rem;
    }

    #naruci h5 {
        font-size: 0.9rem;
    }
}

.prica_slika img {
    width: 100%; /* Ensures image takes full width of its container */
    height: auto; /* Maintains aspect ratio */
    max-width: 200px; /* Adjust as needed */
    display: block; /* Removes extra spacing */
    margin: 0 auto; /* Centers the image */
}

/* If you want the container to limit image scaling */
.prica_slika {
    max-width: 100%;
    text-align: center; /* Ensures alignment */
}


