@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Oleo+Script:400|Open+Sans:300,300italic,600,600italic,800");

/*
	Verti by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}

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

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

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

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

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 */

	@-ms-viewport {
		width: device-width;
	}

	html {
		box-sizing: border-box;
	}

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

	body {
		background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0)), url("images/bg01.png");
		background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0)), url("images/bg01.png");
		background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0)), url("images/bg01.png");
		background-image: linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0)), url("images/bg01.png");
		background-color: #f7f7f7;
		background-position: top left, top left;
		background-repeat: repeat-x, repeat;
		background-size: 100% 30em, auto;
		font-family: 'Open Sans', sans-serif;
		font-size: 13pt;
		color: #696969;
		font-weight: 300;
		line-height: 2.25em;
	}

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

	input, select, textarea {
		font-family: 'Open Sans', sans-serif;
		font-size: 13pt;
		color: #696969;
		font-weight: 300;
		line-height: 2.25em;
	}

	a {
		color: #0090c5;
		text-decoration: underline;
	}

		a:hover {
			text-decoration: none;
		}

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

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

	h2 {
		font-size: 2.25em;
		margin: 0 0 1.1em 0;
		line-height: 1em;
	}

	h3 {
		font-size: 1.35em;
		margin: 0 0 1em 0;
	}

	b, strong {
		font-weight: 600;
		color: #60a5fa;
	}

	i, em {
		font-style: italic;
	}

	br.clear {
		clear: both;
	}

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

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

	hr {
		border: 0;
		border-top: solid 1px #eee;
	}

	blockquote {
		border-left: solid 0.5em #eee;
		padding: 1em 0 1em 2em;
		font-style: italic;
	}

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

/* Container */

	.container {
		margin: 0 auto;
		max-width: 100%;
		width: 1400px;
	}

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

			.container {
				width: 1200px;
			}

		}

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

			.container {
				width: 960px;
			}

		}

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

			.container {
				width: 90%;
			}

		}

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

			.container {
				width: 100%;
			}

		}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

		}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

		}

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

		}

/* Section/Article */

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

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

	header {
		margin: 0 0 2em 0;
	}

		header h2, header h3 {
			margin: 0 0 0.25em 0;
		}

		header p {
			margin: 0;
		}

	footer {
		margin: 2.5em 0 0 0;
	}

/* Forms */

	form label {
		display: block;
		font-weight: 800;
		margin: 0 0 1em 0;
		font-size: 0.8em;
		color: #444;
	}

	form input[type="text"],
	form input[type="email"],
	form input[type="password"],
	form select,
	form textarea {
		-webkit-appearance: none;
		display: block;
		width: 100%;
		border-radius: 8px;
		border: solid 1px #eee;
	}

		form input[type="text"]:focus,
		form input[type="email"]:focus,
		form input[type="password"]:focus,
		form select:focus,
		form textarea:focus {
			border-color: #0090c5;
		}

	form input[type="text"],
	form input[type="email"],
	form input[type="password"] {
		line-height: 3em;
		padding: 0 1em;
	}

	form select {
		line-height: 3em;
		padding: 0 1em;
	}

	form textarea {
		min-height: 9em;
		padding: 1em;
	}

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

			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: 800;
			margin: 0 0 1em 0;
		}

		table thead {
			background: #404248;
			color: #fff;
		}

.image.fit {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px;
    height: 200px;
    overflow: hidden;
}

.image.fit img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

/* 👇 Responsive override for mobile */
@media (max-width: 600px) {
    .image.fit {
        height: auto; /* Let image define height */
        padding: 4px;
    }

    .image.fit img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}


/* Image */

	/*.image {
		display: inline-block;
		outline: 0;
	}

		.image img {
			display: block;
			width: 100%;
			border-radius: 8px;
		}

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

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

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

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

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

	input [type="button"], input[type="submit"], input[type="reset"], button, .button {
		-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;
		-webkit-appearance: none;
		position: relative;
		display: inline-block;
		background: #0090c5;
		color: #fff;
		text-decoration: none;
		border-radius: 6px;
		font-weight: 800;
		outline: 0;
		border: 0;
		cursor: pointer;
		font-size: 1.35em;
		padding: 0.6em 1.5em;
	}

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

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

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

		input[type="button"].alt,
		input[type="submit"].alt,
		input[type="reset"].alt,
		button.alt,
		.button.alt {
			background: #f1f1f1;
			background: rgba(0, 0, 0, 0.05);
			color: #444;
		}

			input[type="button"].alt:hover,
			input[type="submit"].alt:hover,
			input[type="reset"].alt:hover,
			button.alt:hover,
			.button.alt:hover {
				background: #e8e8e8;
				background: rgba(0, 0, 0, 0.085);
			}

			input[type="button"].alt:active,
			input[type="submit"].alt:active,
			input[type="reset"].alt:active,
			button.alt:active,
			.button.alt:active {
				background: #e4e4e4;
				background: rgba(0, 0, 0, 0.15);
			}

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

/* List */

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

		ul li {
			padding-left: 0.5em;
		}

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

			ul.style2 li {
				padding-left: 0;
			}

	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;
			padding: 0 0 0 0.25em;
			margin: 0 0 0 0.25em;
		}

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

/* Menu */

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

		ul.menu li {
			border-left: solid 1px #e0e0e0;
			display: inline-block;
			padding: 0 0 0 0.75em;
			margin: 0 0 0 0.75em;
		}

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

/* Box */

	.box {
		background: #fff;
		border-radius: 6px;
		box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.05);
		padding: 2em;
	}

		.box.feature {
			padding: 0;
		}

			.box.feature .inner {
				padding: 4em 2em 3em 2em;
			}

			.box.feature h2 {
				font-size: 1.35em;
			}

			.box.feature p {
				margin: 0;
			}

			.box.feature .image {
				position: relative;
				margin: 0;
			}

				.box.feature .image img {
					border-bottom-left-radius: 0;
					border-bottom-right-radius: 0;
				}

/* 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:before {
			line-height: inherit;
		}

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

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

		.icon > .label {
			display: none;
		}

/* Widgets */

	.widget.thumbnails .grid {
		margin: 0 0 3em 0;
	}

	.widget.thumbnails .image {
		margin: 0;
	}

	.widget.contact ul {
		list-style: none;
		padding-left: 0;
		overflow: hidden;
		position: relative;
		left: -4px;
		top: 4px;
		margin-bottom: 1.5em;
	}

		.widget.contact ul li {
			display: inline-block;
			margin-right: 0.25em;
			padding-left: 0;
		}

			.widget.contact ul li a {
				-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;
				display: inline-block;
				width: 2.5em;
				height: 2.5em;
				text-align: center;
				line-height: 2.5em;
				border-radius: 0.35em;
				outline: 0;
				opacity: 0.75;
				text-decoration: none;
				background: #222222;
			}

				.widget.contact ul li a:before {
					color: #f3f3f3;
					font-size: 1.5em;
					line-height: inherit;
				}

				.widget.contact ul li a:hover {
					background: #444444;
				}

				.widget.contact ul li a:active {
					background: #666666;
				}

/* Wrappers */

	#header-wrapper {
		/*padding: 0 0 3em 0;
		padding: 4.5em 0 3em 0;*/
	}

	#features-wrapper {
		padding: 3em 0 3em 0;
	}

	#main-wrapper {
    box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.05);
    padding: 3em 1em; /* Base padding: 3em top/bottom, 1em sides */
}

/* Medium screens and above */
@media (min-width: 768px) {
    #main-wrapper {
        padding: 4em 2em;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    #main-wrapper {
        padding: 5em 4em;
    }
}


	#footer-wrapper {
		/*padding: 6em 0 8em 0;*/
	}

/* Header */

	#header {
		position: relative;
	}

/* Logo */

	#logo {
		display: inline-block;
	}

		#logo h1 {
			background: #ff4486;
			color: #fff;
			border-radius: 6px;
			font-family: 'Oleo Script', serif;
			font-weight: 400;
			padding: 0.25em 0.2em 0.25em 0.2em;
			font-size: 3.25em;
			letter-spacing: 0.05em;
			display: inline-block;
			vertical-align: middle;
		}

		#logo span {
			font-weight: 800;
			line-height: 4.5em;
			letter-spacing: 0.025em;
			font-size: 0.9em;
			vertical-align: middle;
			margin: 0 0 0 1.25em;
		}

/* Nav */

	#nav {
		position: absolute;
		right: 0;
		top: 0;
		font-size: 0.9em;
	}

		#nav ul {
			list-style: none;
			padding-left: 0;
		}

			#nav ul li {
				float: left;
				line-height: 4.5em;
				padding-left: 1.5em;
			}

				#nav ul li a, #nav ul li span {
					-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;
					font-weight: 800;
					letter-spacing: 0.025em;
					color: #696969;
					text-decoration: none;
					border-radius: 6px;
					padding: 0.5em 1em 0.5em 1em;
				}

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

				#nav ul li:hover a, #nav ul li:hover span {
					background: #fff;
				}

				#nav ul li.active a, #nav ul li.active span {
					background: #fff;
				}

				#nav ul li.current a {
					background: #444;
					color: #fff;
				}

	.dropotron {
		background: #fff;
		letter-spacing: 0.025em;
		color: #696969;
		text-decoration: none;
		border-radius: 6px;
		padding: 0.75em 0;
		min-width: 15em;
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0.25em 0.25em 0.1em rgba(0, 0, 0, 0.025);
		margin-top: calc(-0.75em + 1px);
		margin-left: -1px;
		list-style: none;
		padding-left: 0;
	}

		.dropotron li {
			border-top: solid 1px #eee;
			line-height: 3em;
			padding-left: 0;
		}

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

			.dropotron li > a, .dropotron li > span {
				-moz-transition: color .25s ease-in-out, background-color .25s ease-in-out;
				-webkit-transition: color .25s ease-in-out, background-color .25s ease-in-out;
				-ms-transition: color .25s ease-in-out, background-color .25s ease-in-out;
				transition: color .25s ease-in-out, background-color .25s ease-in-out;
				text-decoration: none;
				color: inherit;
				display: block;
				padding: 0 1.5em;
			}

				.dropotron li > a:hover, .dropotron li > span:hover {
					background: #eee;
				}

			.dropotron li.active > a, .dropotron li.active > span {
				background: #eee;
			}

		.dropotron.level-0 {
			font-size: 0.8em;
			margin-left: 1.5em;
			margin-top: 0;
		}

			.dropotron.level-0:before {
				content: '';
				position: absolute;
				top: -0.5em;
				left: 1em;
				border-bottom: solid 0.75em #ffffff;
				border-left: solid 0.75em transparent;
				border-right: solid 0.75em transparent;
				z-index: 1;
			}

/* Banner */

	#banner {
		position: relative;
		padding: 4.5em;
	}

		#banner h2 {
			font-size: 3.5em;
			margin: 0.1em 0 0.35em 0;
		}

		#banner p {
			font-size: 2.75em;
			line-height: 1.35em;
			margin: 0;
		}

		#banner .button {
			width: 100%;
			margin-bottom: 0.5em;
		}

			#banner .button.icon:before {
				position: absolute;
				right: 0.15em;
				top: 50%;
				margin-top: -0.5em;
			}

			#banner .button.alt {
				margin-bottom: 0;
			}

		#banner ul {
			list-style: none;
			padding-left: 0;
			margin: 0 0 0 2em;
		}

			#banner ul li {
				padding-left: 0;
			}

/* Footer */

	#footer {
		margin-top: 0;
	}

		#footer a {
			color: inherit;
		}

	#copyright {
		color: #aaa;
		padding: 4em 0 0 0;
		text-align: center;
	}

		#copyright a {
			color: inherit;
		}

/* XLarge */

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

		/* Basic */

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

	}

/* Large */

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

		/* Basic */

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

	}

/* Medium */

	#navPanel, #navToggle {
		display: none;
	}

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

		/* Basic */

			html, body {
				overflow-x: hidden;
			}

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

		/* Section/Article */

			section, article {
				clear: both;
				margin-bottom: 3em !important;
			}

			section.last, article.last {
				margin-bottom: 0 !important;
			}

		/* Image */

			.image.left {
				width: 25%;
				margin-bottom: 2em !important;
			}

		/* Menu */

			ul.menu li {
				display: block;
				border: 0 !important;
				padding: 0 !important;
				margin: 0 !important;
			}

		/* Actions */

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

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

		/* Button */

			input[type="button"],
			input[type="submit"],
			input[type="reset"],
			button,
			.button {
				width: 100%;
				text-align: center;
				font-size: 1.35em;
				padding: 0.85em 0 !important;
			}

				input[type="button"].icon,
				input[type="submit"].icon,
				input[type="reset"].icon,
				button.icon,
				.button.icon {
					padding-right: 0.75em !important;
				}

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

		/* Wrappers */

			#header-wrapper {
				padding: 3em 0 1em 0;
				text-align: center;
			}

			#footer-wrapper {
				padding: 6em 0 4em 0;
			}

		/* Header */

			#header {
				margin: 0 auto;
			}

		/* Logo */

			#logo span {
				display: block;
				margin: 0;
			}

		/* Nav */

			#nav {
				display: none;
			}

		/* Banner */

			#banner {
				padding: 4.5em 3em;
				text-align: center;
			}

				#banner ul {
					margin: 2em 0 0 0;
				}

				#banner .button.icon:before {
					position: relative;
					right: auto;
					top: auto;
				}

		/* Content */

			#content {
				border-bottom: solid 1px #e8e8e8;
				padding-bottom: 4em;
				margin-bottom: 0 !important;
			}

				#content > :last-child {
					margin-bottom: 0 !important;
				}

			#sidebar > :last-child {
				margin-bottom: 0 !important;
			}

		/* Footer */

			#copyright {
				padding: 0;
			}

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

			#navToggle {
				-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;
			}

				#navToggle .toggle {
					display:none; /*removed for nav bar hide*/
					text-decoration: none;
					width: 70px;
					height: 50px;
					opacity: 0.35;
				}

					#navToggle .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;
					}

					#navToggle .toggle:before {
						display: inline-block;
						text-decoration: none;
						position: absolute;
						left: 6px;
						top: 6px;
						background: rgba(0, 0, 0, 0.5);
						width: 58px;
						height: 38px;
						border-radius: 6px;
						content: '\f0c9';
						color: #fff;
						text-align: center;
						line-height: 38px;
						font-size: 20px;
					}

					#navToggle .toggle:active {
						opacity: 0.75;
					}

			#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:none;
				height: 100%;
				left: 0;
				overflow-y: auto;
				position: fixed;
				top: 0;
				width: 275px;
				z-index: 10002;
				background: #fff;
				box-shadow: inset -3px 0px 0px 0px #dfdfdf;
				padding: 0 23px 0 20px;
			}

				#navPanel .link {
					display: block;
					text-decoration: none;
					height: 54px;
					line-height: 54px;
					border-top: solid 1px #e8e8e8;
					color: #696969;
				}

					#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: #444;
					font-weight: 800;
				}

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

			body.navPanel-visible #navToggle {
				-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, select, textarea {
				line-height: 2em;
			}

			h2, h3, h4, h5, h6 {
				font-size: 13pt;
				margin: 0 0 1em 0;
			}

		/* Section/Article */

			section, article {
				clear: both;
				margin-bottom: 3em !important;
			}

				section.last, article.last {
					margin-bottom: 0 !important;
				}

		/* Image */

			.image.left {
				width: 25%;
				margin-bottom: 2em !important;
			}

		/* Menu */

			ul.menu li {
				display: block;
				border: 0 !important;
				padding: 0 !important;
				margin: 0 !important;
			}

		/* Actions */

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

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

		/* Button */

			input[type="button"],
			input[type="submit"],
			input[type="reset"],
			button,
			.button {
				width: 100%;
				text-align: center;
				font-size: 1.25em !important;
				padding: 0.65em 0 !important;
			}

				input[type="button"].icon,
				input[type="submit"].icon,
				input[type="reset"].icon,
				button.icon,
				.button.icon {
					padding-right: 0.75em !important;
				}

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

		/* Box */

			.box {
				padding: 15px 15px 15px 15px;
				margin: 0;
			}

				.box.feature {
					margin: 20px 0 0 0 !important;
					padding: 0;
				}

					.box.feature .inner {
						padding: 30px 15px 30px 15px;
					}

					.box.feature p {
						margin: 0;
					}

					.box.feature .image {
						position: relative;
						margin: 0;
					}

						.box.feature .image img {
							border-bottom-left-radius: 0;
							border-bottom-right-radius: 0;
						}

		/* Widgets */

			.widget.thumbnails .image {
				margin: 0;
			}

			.widget.thumbnails .x {
				padding: 1em 0.5em 0 0;
			}

			.widget.thumbnails .y {
				padding: 1em 0 0 0.5em;
			}

			.widget.thumbnails .row:first-child .x, .widget.thumbnails .row:first-child .y {
				padding-top: 0;
			}

		/* Wrappers */

			#header-wrapper {
				padding: 3em 0 1.5em 0;
			}

			#banner-wrapper {
				padding: 0 15px 0 15px;
			}

			#features-wrapper {
				padding: 0 15px 40px 15px;
			}

			#main-wrapper, #footer-wrapper {
				padding: 40px 30px 40px 30px;
			}

		/* Logo */

			#logo h1 {
				font-size: 2.75em;
				padding: 0.2em 0.275em;
			}

			#logo span {
				line-height: 3em;
			}

		/* Banner */

			#banner {
				text-align: center;
				padding: 15px 15px 15px 15px;
				margin: 0 auto !important;
			}

				#banner h2 {
					font-size: 2em;
					margin: 0.75em 0 0.5em 0;
				}

				#banner p {
					font-size: 1.5em;
					line-height: 1.5em;
					margin: 0;
				}

				#banner ul {
					margin: 0;
				}

				#banner .button {
					margin: 0 0 1em 0;
				}

		/* Content */

			#content {
				padding-bottom: 3em;
			}

		/* Footer */

			#footer section {
				border-bottom: solid 1px #ccc;
				padding-bottom: 3em;
				margin-bottom: 1em !important;
			}

			#copyright {
				text-align: left;
			}

	}
	
	
	            .hide{display:none;}

            /* Hide the scrollbar but still allow scrolling */
            .scrollable-element {
                /*width: 100%;
                    height: 600px;*/ /* Set the desired height */
                /*overflow: hidden; */ /* Hide the scrollbars */
            }

                .scrollable-element::-webkit-scrollbar {
                    display: none; /* Hide the scrollbar */
                }

/* Playlist container */
.playlist-container {
    max-height: 500px; /* or adjust based on your layout */
    overflow-y: auto;
    /* border: 1px solid #ccc;*/
    border-radius: 8px;
    padding: 10px;
    /*background-color: #f9f9f9;*/
   
    background-color: #3b82f6;
    color: #0b1220;
}

    /* Webkit scrollbar styling (for Chrome/Edge/Safari) */
    .playlist-container::-webkit-scrollbar {
        width: 6px;
    }

    .playlist-container::-webkit-scrollbar-track {
        background: #eee;
    }

    .playlist-container::-webkit-scrollbar-thumb {
        background-color: #bbb;
        border-radius: 3px;
    }

/* Each video item */
.video {
    padding: 10px 14px;
    margin-bottom: 6px;
    background-color: #fff;
   /* border: 1px solid #e2e2e2;*/
    border-radius: 6px;
   /* font-size: 16px;
    transition: background-color 0.2s, transform 0.2s;*/
    cursor: pointer;
}

    /* Hover effect */
    .video:hover {
        background-color: #f0f8ff;
        transform: translateX(5px);
    }

    /* Optional: highlight selected item (add a class via JS) */
    .video.active {
        background-color: #dceeff;
        border-color: #3399ff;
        font-weight: bold;
    }
@media (max-width: 600px) {
    .video {
        font-size: 14px;
        padding: 8px 12px;
    }
}


           /* .playlist-container {
                display: flex;
                flex-direction: column;
                /width: 300px;
                border-radius: 8px;
                background-color: white;
                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
                padding: 20px;
                max-height: 300px;
                overflow-y: scroll;
            }*/

            .audio-item {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 10px;
                cursor: pointer;
                border-bottom: 1px solid #ddd;
                transition: background-color 0.3s ease;
            }

                .audio-item:hover {
                    background-color: #f0f0f0;
                }

            .audio-player {
                width: 100%;
                margin-top: 20px;
            }

            .progress-container {
                width: 100%;
                height: 10px;
                background-color: #ddd;
                margin-top: 10px;
                border-radius: 5px;
            }

            .progress-bar {
                height: 100%;
                width: 0;
                background-color: #007BFF;
                border-radius: 5px;
            }

.audio-title {
    margin-top: 10px;
    font-size: 18px;
    color: #fffafa;
    text-align: center;
}

            /*.controls {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: 10px;
                
                border-radius: 5PX;
            }

                .controls button {
                    background-color: #007BFF;
                    border: none;
                    color: white;
                    padding: 10px;
                    cursor: pointer;
                    border-radius: 30%;
                    transition: background-color 0.3s ease;
                }

                    .controls button:hover {
                        background-color: #0056b3;
                    }*/

            .Row1 {
                display: table;
                width: 100%; /*Optional*/
                table-layout: fixed; /*Optional*/
                border-spacing: 10px; /*Optional*/
            }

            .Column1 {
                display: table-cell;
                /*background-color: #ffffff;*/ /*Optional*/
                text-align: center;
            }

          /*  controls {
                border: 3px solid #b1b3b4;
                background-color: #287bd3;
                color: white;
                border-radius: 5px;
                justify-content: space-between;
                align-items: center;
            }

                controls:hover {
                    background-color: #0056b3;
                    border-color: #afcff2;
                }

                controls:active {
                    transform: scale(0.95);
                }

            i {
                margin-left: 7px;
            }*/


           /* .volume-control {
                background-color: #007bff;
                width: 100px;
            }*/


.image-container {
    height: 360px; /* Adjust height as needed */
    width: auto; /* Optional: set a width or let it auto */
    overflow: hidden; /* Prevent scrollbars */
    display: flex;
    justify-content: center;
    align-items: center;
}

    .image-container img {
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain; /* Ensures the whole image fits */
    }

/*.image-container {
    position: relative;
    border-radius: 50%;
    overflow: hidden;*/
    /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);*/
    /*display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1s ease-out;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}*/

.playing {
    animation: rotateImage 5s linear infinite;
}

/* Rotation keyframes */
@keyframes rotateImage {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

   /* Unique dropdown container */
   .bible-dropdown {
       position: relative;
       display: inline-block;
   }

       /* Dropdown button */
       .bible-dropdown button {
           padding: 10px 15px;
           cursor: pointer;
           border: 1px solid #ccc;
           background: #fff;
           border-radius: 5px;
           font-size: 14px;
           color: #1d1d1f;
           text-decoration:none;
       }

       /* Dropdown menu */
       .bible-dropdown .dropdown-content {
           display: none;
           position: absolute;
           top: 100%;
           left: 0;
           width: 250px;
           background: #ffffff;
           border: 1px solid #ccc;
           border-radius: 5px;
           box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
           z-index: 99999;
           max-height: 250px;
           overflow-y: auto;
           padding: 10px;
       }

           /* Force checkboxes to be visible */
           .bible-dropdown .dropdown-content label {
               display: flex !important;
               align-items: center !important;
               padding: 10px;
               cursor: pointer;
               font-size: 14px;
               user-select: none;
               white-space: nowrap;
           }

           /* Ensure checkboxes are displayed */
           .bible-dropdown .dropdown-content input[type="checkbox"] {
               appearance: auto !important;
               display: inline-block !important;
               width: 16px !important;
               height: 16px !important;
               margin-right: 10px !important;
           }

           /* Hover effect */
           .bible-dropdown .dropdown-content label:hover {
               background-color: #f0f0f0;
           }

       /* Show dropdown when open */
       .bible-dropdown.open .dropdown-content {
           display: block;
       }

/*.slideshow-container {
    max-width: 100%;
    height: 550px;
    position: relative;
    margin: auto;
}

 .slide {
     display: none;
     width: 100%;
    height: 100%;
 }

 img {
     width: 100%;     
     border-radius: 10px;
 }*/
.slideshow-container {
    position: relative;
    margin: auto;
    overflow: hidden; /* Optional: to hide overflow if any */
}

.slide {
    display: none;
    width: 100%;
    height: 100%; /* Make slides fill the container height */
    transition: opacity 1s ease-in-out, visibility 1s;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Keeps entire image visible */
        border-radius: 10px;
		border-radius:6px;
    }

 .prev, .next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background-color: rgba(0, 0, 0, 0.5);
     color: white;
     padding: 10px;
     border: none;
     cursor: pointer;
     border-radius: 5px;
 }

 .prev {
     left: 10px;
 }

 .next {
     right: 10px;
 }

 .dots {
     text-align: center;
     padding: 10px;
 }

 .dot {
     height: 10px;
     width: 10px;
     margin: 5px;
     background-color: #bbb;
     border-radius: 50%;
     display: inline-block;
     cursor: pointer;
 }

/* .active {
     background-color: #717171;
 }*/

 .filter-buttons {
     margin-bottom: 20px;
 }

     .filter-buttons button {
         padding: 10px;
         margin: 5px;
         font-size: 16px;
         cursor: pointer;
     }

 /* V-Cut Ribbon */
 .ribbon {
     position: absolute;
     top: 10px;
     left: 50%;
     transform: translateX(-50%);
     background: red;
     color: white;
     padding: 10px 30px;
     font-size: 14px;
     font-weight: bold;
     text-transform: uppercase;
     box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
     clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
 }
 .video-container {
     position: relative;
     max-width: 100%;
     width: 90%;
     margin: auto;
     background: #000;
     border-radius: 10px;
     overflow: hidden;
 }

 .logo-overlay {
     display: flex; /* Arrange items in a row */
     align-items: center; /* Align items vertically */
     bottom: 149px;
     position: absolute;
     pointer-events: none;
     display: flex;
 }

     .logo-overlay img {
         width: 66px;
         height: auto;
     }

 .play-btn {
     font-size: 50px;
     color: white;
     background: rgba(0, 0, 0, 0.5);
     padding: 20px;
     border-radius: 50%;
     cursor: pointer;
 }      

 .progress-container {
     width: 80%;
     margin: 10px 10px 10px 50px;
 }

 .progress-bar {
     width: 100%;
     height: 10px;
     background: #e0e0e0;
     border-radius: 5px;
     position: relative;
 }

 .progress {
     height: 100%;
     width: 0;
     background: #007bff;
     border-radius: 5px;
 }

 @media (max-width: 768px) {
     .logo-overlay {
         flex-direction: column;
         align-items: flex-start;
     }

     .play-btn {
         font-size: 40px;
         padding: 15px;
     }

     .controls_vc {
         flex-direction: column;
         gap: 5px;
     }
 }


 ul {
     list-style-type: none;
     padding: 0;
 }

     ul li {
         display: inline;
         margin-right: 15px;
     }

         ul li a {
             text-decoration: none;
             color: blue;
             font-weight: bold;
             cursor: pointer;
         }

 table {
     width: 100%;
     border-collapse: collapse;
     margin-top: 20px;
 }

 table, th, td {
     border: 1px solid black;
 }

 th, td {
     padding: 10px;
     text-align: left;
 }

 .table-container {
     display: none; /* Hide all tables initially */
 }

 .active {
     display: block; /* Show active table */
 }


 .marquee {
     width: 150px; /* Adjust width as needed */
     overflow: hidden;
     white-space: nowrap;
     position: relative;
 }

     .marquee span {
         display: inline-block;
         padding-left: 100%;
         animation: marquee-scroll 15s linear infinite;
     }

 @keyframes marquee-scroll {
     from {
         transform: translateX(0%);
     }

     to {
         transform: translateX(-100%);
     }
 }

.marquee:hover span {
    animation-play-state: paused;
}


  .share-container {
     text-align: center;
     margin-top: 20px;
 }

 .share-button {
     padding: 5px 10px;
     background-color: #007bff;
     color: white;
     border: none;
     cursor: pointer;
     border-radius: 5px;
     position: static !important;
 }

 .share-options {
     display: none;
     margin-top: 10px;
 }

     .share-options a {
         display: block;
         text-decoration: none;
         margin: 5px 0;
         padding: 8px;
         background-color: #f1f1f1;
         border-radius: 5px;
     }
/*	    nav {
       position: static;
       top: 0;
       left: 0;
       width: 100%;
       background: #333;
       padding: 10px 0;
       text-align: center;
   }

       nav a {
           color: white;
           text-decoration: none;
           padding: 10px 20px;
           display: inline-block;
       }

           nav a:hover {
               background: #555;
           }*/

   /* Floating "Go to Top" button */
   #topBtn {
       position: fixed;
       bottom: 20px;
       right: 20px;
       background: #007bff;
       color: white;
       border: none;
       padding: 12px 15px;
       /* border-radius: 50%;
       font-size: 20px;*/
       cursor: pointer;
       display: none; /* Hidden by default */
       transition: background 0.3s ease, transform 0.2s ease;
       box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
   }

       #topBtn:hover {
           background: #0056b3;
           transform: scale(1.1);
       }


   /*   @keyframes highlightFade {
       0% {
           background-color: yellow;
       }

       100% {
           background-color: transparent;
       }
   }*/

   .highlight {
       background-color: yellow;
       transition: background-color 0.5s ease-in-out;
       padding: 10px !important;
   }

.crisp-input {
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    background-color: #fff;
    color: #333;
}

    .crisp-input::placeholder {
        color: #aaa;
    }

    .crisp-input:focus {
        border-color: #4A90E2; /* Nice blue focus */
        box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2); /* Soft outline */
    }

/* Base Navbar Style */
.modern-navbar {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    background: linear-gradient(to right, #03bafc, #005c97);
    padding: 10px 20px;
    /*position: fixed;*/
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

/* Title */
.navbar-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navigation Links */
.navbar-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    margin: 5px 10px;
    padding: 6px 10px;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 6px;
    font-weight: 500;
}

.navbar-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hamburger Icon */
.navbar-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #005c97;
        margin-top: 10px;
    }

    .navbar-links.show {
        display: flex;
    }

    .navbar-toggle {
        display: block;
    }
}


.quote-container {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 2em;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.05);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .quote-container {
        padding: 1em;
    }
}

.chapter-section {
    background: #fdfdfd;
    border-left: 4px solid #4a90e2;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-family: 'Segoe UI', sans-serif;
}

    .chapter-section .action {
        font-size: 1.2em;
        font-weight: bold;
        margin-bottom: 10px;
        color: #2c3e50;
    }

.chapter-summary {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

    .chapter-summary li {
        display: list-item; /* ensures default behavior */
        margin-bottom: 8px;
        line-height: 1.5;
        font-size: 1em;
        color: #333;
    }

    .chapter-summary strong {
        color: #1a73e8;
    }

.slideshow-container {
    max-width: 900px;
    margin: 20px auto;
}

.slide {
    position: relative; /* keep relative if you want ribbons absolutely positioned */
    margin-bottom: 30px; /* spacing between slides */
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
    box-sizing: border-box;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    z-index: 2;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.caption {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-align: center;
    cursor: pointer;
    user-select: none;
}



.tile {
    background: #fff;
   /* border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 12px !important;
    height: 260px; /* Or adjust based on your design */
    box-sizing: border-box;
    overflow: hidden;
}

    /* Image styling */
    .tile img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 6px;
    }

    /* Title text inside tile */
    .tile span {
        font-size: 14px;
        font-weight: 500;
        margin-top: 10px;
        color: #333;
        height: 40px; /* Fixed height for alignment */
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%;
    }

.scroll-container {
    max-height: 500px; /* Adjust height as needed */
    overflow-y: auto; /* Enables vertical scrollbar */
    padding-right: 10px; /* Prevents content hiding behind scrollbar */
    border: 1px solid #ccc; /* Optional: border around scroll area */
    border-radius: 6px;
    background: #fafafa;
}

        .video-container {
            position: relative;          
            background: #000;
            transition: all 0.5s;
        }

        iframe {
            width: 100%;
            height: 450px;
            pointer-events: none;
            border: none;
        }



        .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-size: contain;         /* ✅ Show full image without cropping */
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 8000s;
}

/*.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-size: auto;
    background-position: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 8000s;
    background-repeat: no-repeat;
}*/

        /*.play-btn {
            font-size: 40px;
            color: white;
            background: rgba(0, 0, 0, 0.5);
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            opacity: 1;
            transition: opacity 0.3s;
        }

        .controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            background: rgba(0, 0, 0, 0.8);
        }

        .play-pause-btn,
        .next-btn,
        .previous-btn,
        .mute-btn,
        .fullscreen-btn {
            background: none;
            border: none;*/
            /*color: white;*/
            /*font-size: 18px;
            cursor: pointer;
        }*/

        .progress-bar {
            flex-grow: 1;
            margin: 0 10px;
            /*height: 5px;*/
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            position: relative;            
        }

            .progress-bar span {
                display: block;
                height: 100%;
                background: #f00;
                width: 0%;
            }

       /* .volume-slider {
            width: 100px;
        }

        .playlist {
            margin-top: 20px;
            list-style: none;
            padding: 0;
            text-align: center;
        }

            .playlist li {
                margin: 5px;
                padding: 5px;
                background-color: #333;
                color: white;
                cursor: pointer;
                border-radius: 5px;
                transition: background-color 0.3s;
            }

                .playlist li:hover {
                    background-color: #555;
                }

            .playlist .active {
                background-color: #f00;
            }*/

        .video-thumbnail:hover .play-btn {
            opacity: 1; /* Show play button on hover */
        }

        /* Fullscreen button styles */
        .fullscreen-btn {
            font-size: 20px;
           /* color: white;*/
            padding: 5px;
            border-radius: 50%;
        }

        /* Make the video container full screen when active */
        .fullscreen iframe {
            width: 100vw;
            height: 100vh;
        }

.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

 /* ─── Reset & Base ─── */
    *, *::before, *::after { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #0b1220;
      color: #fff;
      font-size: 16px;
      line-height: 1.6;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 15px;
    }

    /* ─── Navbar ─── */
    .modern-navbar {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      padding: 10px 0;
    }

    .logo img {
      height: 45px;
      width: auto;
      object-fit: contain;
    }

    .navbar-toggle {
      display: none;
      background: #334155;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 8px 12px;
      font-size: 20px;
      cursor: pointer;
      margin-left: auto;
    }

    .navbar-links {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      align-items: center;
    }

    .navbar-links a {
      color: #93c5fd;
      text-decoration: none;
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 14px;
      transition: background 0.2s;
    }

    .navbar-links a:hover { background: #1e3a5f; }

    .lang-btns {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-left: auto;
    }

    .lang-btns button {
      padding: 6px 12px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      background: #334155;
      color: #fff;
      font-size: 13px;
      transition: background 0.2s;
    }

    .lang-btns button.active { background: #22c55e; }

    /* ─── Marquee ─── */
    .marquee-wrap {
      margin: 8px 0;
      font-weight: bold;
      color: #167ac6;
      overflow: hidden;
    }

    /* ─── Social Links ─── */
.social-links a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:6px 10px;
  text-decoration:none;
  font-size:16px;
}
.social-links i{
  font-size:20px;
}

    /* ─── Verse Card ─── */
    .verse-card {
      background: #1e293b;
      padding: 20px;
      border-radius: 12px;
      margin-bottom: 20px;
    }

    .verse-card h3 {
      margin: 6px 0;
      font-size: 16px;
      color: #93c5fd;
    }

    .section {
      margin-bottom: 14px;
      padding-bottom: 12px;
      border-bottom: 1px solid #334155;
    }

    .section:last-of-type { border-bottom: none; }

    .label {
      font-weight: bold;
      color: #60a5fa;
      margin-bottom: 5px;
      font-size: 14px;
    }

    /* ─── Buttons ─── */
    button {
      padding: 8px 14px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      background: #22c55e;
      color: #fff;
      font-size: 14px;
      transition: background 0.2s;
    }

    button:hover { background: #16a34a; }

    /* ─── Feature Boxes ─── */
    #features-wrapper { padding: 0 !important; }

    .quote-container {
      background: #1e293b;
      border-radius: 12px;
      padding: 15px;
      margin-bottom: 16px;
    }

    .author { color: #60a5fa; font-size: 18px; }

    #Points { color: #1d1d1f; background-color: #fff; padding: 10px; border-radius: 6px; }
    #TNSummary, #ENSummary { color: #e2e8f0; }
    #Action { font-weight: 700; color: #167ac6; background-color: #fff; padding: 8px; border-radius: 6px; display: block; }

    .share-button { background: #167ac6; margin-top: 10px; }
    .share-button:hover { background: #1259a7; }

    /* ─── Chapter Summary ─── */
    .chapter-section {
      max-height: 550px;
      overflow-y: auto;
      padding-right: 6px;
    }

    .chapter-section::-webkit-scrollbar { width: 6px; }
    .chapter-section::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }

    .action {
      font-weight: bold;
      color: #60a5fa;
      margin: 14px 0 6px;
    }

    .chapter-summary { color: #cbd5e1; padding-left: 20px; }
    .chapter-summary li { margin-bottom: 4px; font-size: 14px; }

    /* ─── Video Player ─── */
.video-container {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

    .audio-title {
      font-size: 15px;
      color: #007bff;
      font-weight: 700;
      text-align: center;
      margin: 10px 0;
    }

    .playlist-container { max-height: 300px; overflow-y: auto; }

    /* ─── Tiles Grid ─── */
    .tiles-wrapper {
       display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 10px;
    }

    .tile {
      background: #1e293b;
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      transition: transform 0.2s;
    }

    .tile:hover { transform: scale(1.02); }

    .tile span {
      display: block;
      margin: 8px 0;
      font-size: 14px;
      color: #e2e8f0;
      word-break: break-word;
    }

    .tile a.image.fit {
      /*display: block;*/
      width: 100%;
      border-radius: 6px;
      overflow: hidden;
    }

    .tile img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 6px;
    }

    /* ─── Search Input ─── */
    .crisp-input {
      width: 100%;
      padding: 8px 12px;
      border-radius: 6px;
      border: 1px solid #334155;
      background: #1e293b;
      color: #fff;
      font-size: 14px;
    }

    @media (min-width: 768px) {
    .tiles-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .tiles-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}
    .crisp-input::placeholder { color: #64748b; }

    /* ─── Pagination ─── */
    #pagination-controls, #playlist-pagination-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    #pagination-controls button,
    #playlist-pagination-controls button {
      background: #334155;
      padding: 6px 12px;
    }

    #pagination-controls select,
    #playlist-pagination-controls select {
      padding: 6px 10px;
      border-radius: 6px;
      background: #1e293b;
      color: #fff;
      border: 1px solid #334155;
    }

    /* ─── Sidebar & Tables ─── */
    .table-container { display: none; }
    .table-container.active { display: block; }

    .widget.thumbnails h3 { color: #60a5fa; }
    .widget.thumbnails ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
    .widget.thumbnails ul li a { cursor: pointer; color: #93c5fd; font-size: 14px; text-decoration: underline; }

    /* ─── Footer ─── */
    #footer-wrapper {
      background: #0f172a;
      padding: 30px 0 10px;
      margin-top: 30px;
    }

    .style2 { color: #94a3b8; font-size: 14px; line-height: 1.6; }

    .widget.links h3, .widget.contact h3 { color: #60a5fa; }

    #copyright { text-align: center; color: #475569; font-size: 13px; margin-top: 20px; }
    #copyright ul { list-style: none; padding: 0; margin: 0; }

    /* ─── Back to Top ─── */
    #topBtn {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      background: #167ac6;
      color: #fff;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      font-size: 18px;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    #topBtn.visible { display: flex; }

    /* ─── Row/Column helpers for player ─── */
    .Row1 { gap: 8px; flex-wrap: wrap; margin: 8px 0; align-items: center; }
    .Column1 { flex: 0 0 auto; }

    .progress-container { flex: 1; height: 8px; background: #334155; border-radius: 4px; overflow: hidden; cursor: pointer; }
    .progress-bar { height: 100%; background: #007bff; width: 0%; border-radius: 4px; }

    /* ─── Responsive ─── */
    @media (max-width: 768px) {
      .navbar-toggle { display: block; }

      .navbar-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        background: #0f172a;
        padding: 10px;
        border-radius: 8px;
        margin-top: 8px;
      }

      .navbar-links.show { display: flex; }

      .lang-btns { margin-left: 0; }

      .tiles-wrapper { grid-template-columns: repeat(2, 1fr); }

      .col-6 { width: 100% !important; }

      .Row1 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0;
  align-items: center;
  justify-content: center;
}
    }

    @media (max-width: 480px) {
      .tiles-wrapper { grid-template-columns: 1fr; }

      .social-links { font-size: 18px; gap: 8px; }

      .verse-card { padding: 14px; }

      body { font-size: 14px; }
    }

    /* ─── Row layout for sections ─── */
    .row { display: flex; flex-wrap: wrap; gap: 16px; }
    .col-6 { flex: 1 1 45%; }
    .col-12 { flex: 1 1 100%; }

    /* =========================
   MODERN PWA NAVBAR
========================= */

.modern-navbar{
  position: sticky;
  top: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(15,23,42,.92);
  backdrop-filter: blur(12px);

  padding: 10px 16px;

  border-bottom: 1px solid rgba(255,255,255,.08);

  gap: 12px;
}

/* Logo */

.logo{
  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  min-width: 0;
}

.logo img{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.logo-text{
  color: white;
  font-size: 1rem;
  font-weight: 700;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right side */

.nav-right{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Navigation links */

.navbar-links{
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-links a{
  text-decoration: none;
  color: #cbd5e1;

  padding: 10px 14px;

  border-radius: 10px;

  transition: all .25s ease;

  font-size: 15px;
  font-weight: 500;
}

.navbar-links a:hover{
  background: rgba(255,255,255,.08);
  color: #60a5fa;
}

/* Language buttons */

.lang-btns{
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btns button{
  border: none;
  cursor: pointer;

  padding: 8px 12px;

  border-radius: 10px;

  background: #1e293b;
  color: white;

  font-size: 14px;
  font-weight: 600;

  transition: all .25s ease;
}

.lang-btns button.active{
  background: #2563eb;
}

.lang-btns button:hover{
  transform: translateY(-1px);
}

/* Toggle */

.navbar-toggle{
  display: none;

  border: none;
  cursor: pointer;

  width: 44px;
  height: 44px;

  border-radius: 10px;

  background: #1e293b;
  color: white;

  font-size: 20px;
}

/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 900px){

  .modern-navbar{
    flex-wrap: wrap;
  }

  .navbar-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-links{

    width: 100%;

    display: none;
    flex-direction: column;

    gap: 8px;

    padding-top: 12px;
  }

  .navbar-links.show{
    display: flex;
  }

  .navbar-links a{
    width: 100%;
    background: rgba(255,255,255,.04);
  }

  .logo-text{
    max-width: 140px;
  }
}

/* =========================
   SMALL DEVICES
========================= */

@media (max-width: 480px){

  .modern-navbar{
    padding: 10px;
  }

  .logo img{
    width: 42px;
    height: 42px;
  }

  .logo-text{
    font-size: .9rem;
    max-width: 110px;
  }

  .lang-btns button{
    padding: 7px 10px;
    font-size: 13px;
  }

}

/* =========================
   Verse Top Bar
========================= */

.verse-top-bar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:15px;
  flex-wrap:wrap;
}

/* =========================
   Language Dropdown
========================= */

.language-dropdown{
  margin-left:auto;
}

.language-dropdown select{

  background:#1e293b;
  color:#fff;

  border:1px solid #334155;

  padding:10px 14px;

  border-radius:10px;

  font-size:14px;
  font-weight:600;

  cursor:pointer;

  outline:none;

  transition:all .25s ease;
}

.language-dropdown select:hover{
  border-color:#60a5fa;
}

.language-dropdown select:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,.25);
}

/* Mobile */

@media (max-width:600px){

  .verse-top-bar{
    align-items:flex-start;
  }

  .language-dropdown{
    width:100%;
  }

  .language-dropdown select{
    width:100%;
  }

}