@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic|Open+Sans+Condensed:700");

/*
	TXT 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;
}



/* Basic */

	html {
		box-sizing: border-box;
	}

	*, *:before, *:after {
		box-sizing: inherit;
	}

	body {
		background: #f2f5f3;
	}

		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: 'Open Sans', sans-serif;
		font-weight: 400;
		color: #6b7770;
		font-size: 13pt;
		line-height: 2em;
	}

	h1, h2, h3, h4, h5, h6 {
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		color: #6b7770;
		margin: 0 0 0.5em 0;
		line-height: 1.3;
	}

	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
		text-decoration: none;
		color: inherit;
	}

	h2 {
		font-size: 1.65em;
	}

	h2 a {
		text-decoration: none;
	}

	h2 a:hover {
		text-decoration: underline;
	}

		h2.major {
			position: relative;
			border-top: solid 5px #e7eae8;
			font-size: 1.65em;
			text-align: center;
			margin: 0 0 3em 0;
			top: 0.775em;
		}

			h2.major span {
				background: #fff;
				position: relative;
				display: inline-block;
				top: -0.775em;
				padding: 0 1.25em 0 1.25em;
			}

			h3 {
		font-size: 2em;
	}

	 h4 {
		font-size: 1.25em;
		margin-top: 2em;
	}

	a {
		color: #006376;
		text-decoration: underline;
	}

		a:hover {
			text-decoration: none;
		}

	b, strong {
		font-weight: 700;
		color: #6b7770;
	}

	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 2px #E7EAE8;
		margin: 0 0 3em 0;
	}

	blockquote {
		border-left: solid 5px #E7EAE8;
		padding: 1em 0 1em 1.5em;
		font-style: italic;
	}

	p, ul, ol, dl, table {
		margin-bottom: 2em;
		color: black;
	}

/* Section/Article */

	article {
		
	}

		section > :last-child, section:last-child, article > :last-child, article:last-child {
			margin-bottom: 0;
			    text-align: left;
		}

	header > p {
		display: block;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		color: #c1cac5;
	}

/* Container */

	.container {
		margin: 0 auto;
		max-width: 100%;
		width: 64em;
	}

		@media screen and (max-width: 1680px) {

			.container {
				width: 75em;
			}

		}

		@media screen and (max-width: 1280px) {

			.container {
				width: calc(100% - 100px);
			}

		}

		@media screen and (max-width: 980px) {

			.container {
				width: calc(100% - 100px);
			}

		}

		@media screen and (max-width: 736px) {

			.container {
				width: calc(100% - 40px);
			}

		}

		@media screen and (max-width: 360px) {

			.container {
				width: calc(100% - 30px);
			}

		}

/* 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 > * {
				
			}

			.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: -50px;
			margin-left: -100px;
		}

			.row.gtr-200 > * {
				padding: 0px 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: 40px 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: -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: 30px 0 0 80px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -80px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 80px;
						}

		}

		@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: -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: 50px 0 0 100px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -100px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 100px;
						}

		}

		@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;
						}

		}

		@media screen and (max-width: 360px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-xsmall {
					order: -1;
				}

				.row > .col-1-xsmall {
					width: 8.33333%;
				}

				.row > .off-1-xsmall {
					margin-left: 8.33333%;
				}

				.row > .col-2-xsmall {
					width: 16.66667%;
				}

				.row > .off-2-xsmall {
					margin-left: 16.66667%;
				}

				.row > .col-3-xsmall {
					width: 25%;
				}

				.row > .off-3-xsmall {
					margin-left: 25%;
				}

				.row > .col-4-xsmall {
					width: 33.33333%;
				}

				.row > .off-4-xsmall {
					margin-left: 33.33333%;
				}

				.row > .col-5-xsmall {
					width: 41.66667%;
				}

				.row > .off-5-xsmall {
					margin-left: 41.66667%;
				}

				.row > .col-6-xsmall {
					width: 50%;
				}

				.row > .off-6-xsmall {
					margin-left: 50%;
				}

				.row > .col-7-xsmall {
					width: 58.33333%;
				}

				.row > .off-7-xsmall {
					margin-left: 58.33333%;
				}

				.row > .col-8-xsmall {
					width: 66.66667%;
				}

				.row > .off-8-xsmall {
					margin-left: 66.66667%;
				}

				.row > .col-9-xsmall {
					width: 75%;
				}

				.row > .off-9-xsmall {
					margin-left: 75%;
				}

				.row > .col-10-xsmall {
					width: 83.33333%;
				}

				.row > .off-10-xsmall {
					margin-left: 83.33333%;
				}

				.row > .col-11-xsmall {
					width: 91.66667%;
				}

				.row > .off-11-xsmall {
					margin-left: 91.66667%;
				}

				.row > .col-12-xsmall {
					width: 100%;
				}

				.row > .off-12-xsmall {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 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: -3.75px;
					margin-left: -3.75px;
				}

					.row.gtr-25 > * {
						padding: 3.75px 0 0 3.75px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -3.75px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 3.75px;
						}

				.row.gtr-50 {
					margin-top: -7.5px;
					margin-left: -7.5px;
				}

					.row.gtr-50 > * {
						padding: 7.5px 0 0 7.5px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -7.5px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 7.5px;
						}

				.row {
					margin-top: -15px;
					margin-left: -15px;
				}

					.row > * {
						padding: 15px 0 0 15px;
					}

					.row.gtr-uniform {
						margin-top: -15px;
					}

						.row.gtr-uniform > * {
							padding-top: 15px;
						}

				.row.gtr-150 {
					margin-top: -22.5px;
					margin-left: -22.5px;
				}

					.row.gtr-150 > * {
						padding: 22.5px 0 0 22.5px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -22.5px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 22.5px;
						}

				.row.gtr-200 {
					margin-top: -30px;
					margin-left: -30px;
				}

					.row.gtr-200 > * {
						padding: 30px 0 0 30px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -30px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 30px;
						}

		}

/* Image */

	.image {
		position: relative;
		display: inline-block;
		border-radius: 8px;
	}

		.image img {
			display: block;
			width: 100%;
			border-radius: 8px;
		}

		.image:before {
			content: '';
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background: url("images/overlay.png");
			border-radius: 8px;
		}

		.image.fit {
			display: block;
			width: 100%;
		}

		.image.featured {
			display: block;
			width: 100%;
			margin: 0 0 2em 0;
		}

		.image.left {
			float: left;
			margin: 0 2em 2em 0;
		}

		.image.centered {
			display: block;
			margin: 0 0 2em 0;
		}

			.image.centered img {
				margin: 0 auto;
				width: auto;
			}

/* Button */

	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	button,
	.button {
		-webkit-appearance: none;
		display: inline-block;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		text-decoration: none;
		background: #b1ddab;
		color: #fff;
		border: 0;
		line-height: 1em;
		border-radius: 8px;
		outline: 0;
		cursor: pointer;
		-moz-transition: background-color .2s ease-in-out;
		-webkit-transition: background-color .2s ease-in-out;
		-o-transition: background-color .2s ease-in-out;
		-ms-transition: background-color .2s ease-in-out;
		transition: background-color .2s ease-in-out;
		font-size: 1.25em;
		padding: 0.85em 1.85em;
		text-align: center;
	}


	@media screen and (max-width: 1730px) {
				button, .button {
					font-size: 1em;
				}

			
			 }

		input[type="button"]:hover,
		input[type="submit"]:hover,
		input[type="reset"]:hover,
		button:hover,
		.button:hover {
			background: #c1edbb;
		}

		input[type="button"]:active,
		input[type="submit"]:active,
		input[type="reset"]:active,
		button:active,
		.button:active {
			background: #a1cd9b;
		}

		input[type="button"].alt,
		input[type="submit"].alt,
		input[type="reset"].alt,
		button.alt,
		.button.alt {
			background: #c1cac5;
		}

			input[type="button"].alt:hover,
			input[type="submit"].alt:hover,
			input[type="reset"].alt:hover,
			button.alt:hover,
			.button.alt:hover {
				background: #ccd5d0;
			}

			input[type="button"].alt:active,
			input[type="submit"].alt:active,
			input[type="reset"].alt:active,
			button.alt:active,
			.button.alt:active {
				background: #b1bab5;
			}

		input[type="button"].large,
		input[type="submit"].large,
		input[type="reset"].large,
		button.large,
		.button.large {
			font-size: 1.65em;
		}

/* 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;
		}

/* Divided */

	ul.divided {
		list-style: none;
		padding-left: 0;
	}

		ul.divided > li {
			border-top: solid 2px #e7eae8;
			padding-top: 2.35em;
			margin-top: 2.35em;
			padding-left: 0;
		}

			ul.divided > li:first-child {
				border-top: 0;
				padding-top: 0;
				margin-top: 0;
			}

/* Actions */

	ul.actions {
		list-style: none;
		padding-left: 0;
		text-align: center;
		margin: 2em 0 0 0;
	}

		ul.actions li {
			display: inline-block;
			margin: 0 0 0 1em;
			padding-left: 0;
		}

			ul.actions li:first-child {
				margin-left: 0;
			}

/* Contact */

	ul.contact {
		list-style: none;
		padding-left: 0;
		cursor: default;
		text-align: center;
	}

		ul.contact li {
			-moz-transition: top .15s ease-in-out;
			-webkit-transition: top .15s ease-in-out;
			-ms-transition: top .15s ease-in-out;
			transition: top .15s ease-in-out;
			position: relative;
			display: inline-block;
			margin: 0 0.25em 0 0.25em;
			top: 0;
			padding-left: 0;
		}

			ul.contact li a {
				-moz-transition: background-color .2s ease-in-out;
				-webkit-transition: background-color .2s ease-in-out;
				-ms-transition: background-color .2s ease-in-out;
				transition: background-color .2s ease-in-out;
				display: block;
				position: relative;
				width: 48px;
				height: 48px;
				border-radius: 6px;
				outline: 0;
				background: #c1cac5;
				text-align: center;
			}

				ul.contact li a:before {
					color: #f2f5f3;
					font-size: 32px;
					line-height: 48px;
				}

			ul.contact li:hover {
				top: -5px;
			}

				ul.contact li:hover a.fa-facebook-f {
					background-color: #c1cac5;
				}

				ul.contact li a.fa-tiktok {
					background-color: #e2e3e4b8;
				}

				
				ul.contact li:hover a.fa-youtube {
					background-color: #c1cac5;
				}

				ul.contact li:hover a.fa-instagram {
					background-color: #c1cac5;
				}

				

			ul.contact li:active {
				top: 0;
			}

/* Special */

	ul.special {
		list-style: none;
		padding-left: 0;
		cursor: default;
		position: relative;
		margin: -2em 0 2.5em -2em;
		text-align: center;
	}

		ul.special li {
			-moz-transition: top .15s ease-in-out;
			-webkit-transition: top .15s ease-in-out;
			-ms-transition: top .15s ease-in-out;
			transition: top .15s ease-in-out;
			position: relative;
			display: inline-block;
			top: 0;
			padding: 2em 0 0 2em;
		}

			ul.special li a {
				display: block;
				outline: 0;
			}

				ul.special li a:before {
					-moz-transition: background-color .2s ease-in-out;
					-webkit-transition: background-color .2s ease-in-out;
					-ms-transition: background-color .2s ease-in-out;
					transition: background-color .2s ease-in-out;
					display: block;
					text-align: center;
					background: #c1cac5;
					border-radius: 100%;
					width: 2.25em;
					height: 2.25em;
					line-height: 2.175em;
					font-size: 5em;
					color: #fff;
				}

			ul.special li:hover {
				top: -1em;
			}

				ul.special li:hover a:before {
					background: #b9d2ce;
				}

/* Meta */

	ul.meta {
		font-size: 0.85em;
		color: #a1aaa5;
		list-style: none;
		padding-left: 0;
	}

		ul.meta li {
			position: relative;
			display: inline-block;
			margin-left: 1em;
			padding-left: 0;
		}

			ul.meta li a {
				color: inherit;
				outline: 0;
			}

			ul.meta li:first-child {
				margin-left: 0;
			}

			ul.meta li:before {
				opacity: 0.5;
				cursor: default;
				margin-right: 0.5em;
			}

/* Menu */

	ul.menu {
		list-style: none;
		padding-left: 0;
	}

		ul.menu li {
			border-left: solid 1px #E7EAE8;
			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;
			}

/* Forms */

	form label {
		
		margin: 0 0 1em 0;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		color: #6b7770;
	}

	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 2px #E7EAE8;
	}

		form input[type="text"]:focus,
		form input[type="email"]:focus,
		form input[type="password"]:focus,
		form select:focus,
		form textarea:focus {
			border-color: #a1cd9b;
		}

	form input[type="text"],
	form input[type="email"],
	form input[type="password"],
	form select {
		line-height: 3.4em;
		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.default {
			width: 100%;
		}

			table.default tr {
				border-top: solid 2px #E7EAE8;
			}

				table.default tr:first-child {
					border-top: 0;
				}

			table.default td {
				padding: 0.5em 1em 0.5em 1em;
			}

			table.default th {
				text-align: left;
				padding: 0.5em 1em 0.5em 1em;
				margin: 0 0 1em 0;
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 700;
				text-transform: uppercase;
				color: #6b7770;
			}

			table.default thead {
				background: #E7EAE8;
				color: #fff;
			}


.logo_pohar {    position: relative;
               

}

    .logo_pohar img {
    position: absolute;
    top: -56px;
    right: 12em;
    width: 85px;

}


    	@media screen and (max-width: 2000px) {

    	.logo_pohar img {right: 9em;}  
    }


@media screen and (max-width: 1800px) {

    	.logo_pohar img {right: 6em;}  
    }

    @media screen and (max-width: 1500px) {

    	.logo_pohar img {right: 5em;
    		}  
    }

     @media screen and (max-width: 1400px) {

    	.logo_pohar img {right: 5em;
    		}  
    }


      @media screen and (max-width: 1400px) {

    	#nav {padding-left: 7em;}  
    }
/* Box */

	.box.highlight {
		margin-top: 20px;
	}


	@media screen and (max-width: 1680px) {

			.box.highlight {
		margin-top: 30px;
	}

		}

		.box.highlight h2 {
			font-size: 2.6em;
			margin: 0 0 0.25em 0;
		}

		.box.highlight header > p {
			font-size: 1.65em;
			margin: 0 0 1.5em 0;
		}

	.box.feature {
		text-align: center;
	}

	.box.post header {
		margin: 0 0 2.5em 0;
	}

	.box.post h3 {
		font-size: 3em;
		margin: 0 0 0.25em 0;
	}

	.box.post header > p {
		font-size: 1.65em;
		margin: 0 0 0.5em 0;
	}

	.box.post ul.meta {
		margin: 0 0 0.5em 0;
	}

	.box.post-summary h3 {
		line-height: 1em;
		margin: 0 0 0.75em 0;
	}

	.box.post-summary .meta {
		margin: 0;
		line-height: 1em;
	}

@media screen and (max-width: 1280px) {
	.box.page-content header {
		margin-top: 60px;
		        margin-bottom: 25px;
	}
}

	.box.page-content h2 {
		font-size: 2em;
		margin: 0 0 0 0;
	}

	.box.page-content header > p {
		font-size: 1.65em;
		margin: 0 0 0.5em 0;
	}

	.box.page-content ul.meta {
		margin: 0 0 0.5em 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 > .label {
			display: none;
		}

		.icon.solid:before {
			font-weight: 900;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands';
		}

/* Page Wrapper */

	#page-wrapper > section {
		margin-bottom: 0;
		display: flex;
	}

/* Header */

	#header {
		text-align: center;
		font-size: 2em;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		    padding: 2em 0 0.6em 0;
		background: #fff;
		margin: 0 auto;
	}

		#header .logo {
			position: relative;
			text-align: center;
			border-top: solid 5px #e7eae8;
			    top: 1.3em;
    margin: 7px auto;
		}

			#header .logo div {
				background: #fff;
				position: relative;
				display: inline-block;
				padding: 0 1.5em 0 1.5em;
				top: -1.65em;
			}

			#header .logo h1 {
				display: inline;
			}

			#header .logo p {
				display: inline;
				color: #C1CAC5;
			}

/* Nav */

	body {
		padding-top: 3.25em;
	}

	#nav {
		position: fixed;
		top: 50px;
		left: 0;
		z-index: 1000;
		background-color: rgba(255, 255, 255, 0.95);
		background-image: url("images/overlay.png");
		width: 100%;
		height: 3.25em;
		line-height: 3.25em;
		text-align: center;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		cursor: default;
		border-bottom: 2px solid #b1ddab;
}
	}

		#nav ul {
			position: relative;
			z-index: 1001;
		}

		#nav li {
			display: inline-block;
			margin: 0 0.5em 0 0.5em;
			top: 0;
			position: relative;
			-moz-transition: top .15s ease-in-out;
			-webkit-transition: top .15s ease-in-out;
			-o-transition: top .15s ease-in-out;
			-ms-transition: top .15s ease-in-out;
			transition: top .15s ease-in-out;
		}

			#nav li > ul {
				display: none;
			}

			#nav li a, #nav li span {
				-moz-transition: background-color .075s ease-in-out, color .075s ease-in-out;
				-webkit-transition: background-color .075s ease-in-out, color .075s ease-in-out;
				-ms-transition: background-color .075s ease-in-out, color .075s ease-in-out;
				transition: background-color .075s ease-in-out, color .075s ease-in-out;
				position: relative;
				display: block;
				text-decoration: none;
				color: #6b7770;
				top: 0px;
				padding: 0px 1.5em 0.25em 1.5em;
				border-bottom-left-radius: 6px;
				border-bottom-right-radius: 6px;
				outline: 0;

			}

			#nav li:hover, #nav li.active {
				top: 3px;
			}

			#nav li:hover a, #nav li:hover span {
				background: #C1CAC5;
				color: #fff;
			}

			#nav li.active a, #nav li.active span {
				background: #C1CAC5;
				color: #fff;
			}

			#nav li.current a {
				background: #b1ddab;
				color: #fff;
			}


			.esh a {
				-moz-transition: background-color .075s ease-in-out, color .075s ease-in-out;
				-webkit-transition: background-color .075s ease-in-out, color .075s ease-in-out;
				-ms-transition: background-color .075s ease-in-out, color .075s ease-in-out;
				transition: background-color .075s ease-in-out, color .075s ease-in-out;
				position: relative;
				display: block;
				text-decoration: none;
				top: -6px;
				border-bottom-left-radius: 6px;
				border-bottom-right-radius: 6px;
				outline: 0;
				background: #C1CAC5;
				color: #fff;
			}

			.esh a:hover {
				background: red;
				color: #fff;
			}


	.dropotron {
		list-style: none;
		background: #6B7770;
		color: #fff;
		border-radius: 6px;
		line-height: 2.75em;
		text-align: center;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		padding: 1em 0;
		text-align: left;
		min-width: 14em;
		margin-top: -1em;
		box-shadow: 0 1em 2em 0 rgba(0, 0, 0, 0.1);
	}

		.dropotron li {
			padding-left: 0;
		}

			.dropotron li > a, .dropotron li > span {
				display: block;
				color: #D7DAD8;
				text-decoration: none;
				padding: 0 1.25em;
			}

			.dropotron li:hover > a, .dropotron li:hover > span {
				color: #fff;
				background: #7B8780;
			}

			.dropotron li.active > a, .dropotron li.active > span {
				color: #fff;
				background: #7B8780;
			}

			.dropotron li:first-child {
				border-top: 0;
			}

		.dropotron.level-0 {
			margin-top: 1em;
			font-size: 0.9em;
		}

			.dropotron.level-0:before {
				content: '';
				position: absolute;
				left: 50%;
				margin-left: -1em;
				top: -0.65em;
				border-bottom: solid 1em #6B7770;
				border-left: solid 1em transparent;
				border-right: solid 1em transparent;
			}

/* Banner */

	#banner {
		position: relative;
		background-image: url("images/overlay.png"), url("images/overlay.png"), url("../../images/banner.jpg");
		background-position: top left, top left, center center;
		background-repeat: repeat, repeat, no-repeat;
		background-size: auto, auto, cover;
		z-index: 1;
		padding: 22% 0;
	
	}





		#banner .content {
			
			text-align: center;
			width: 25em;
			  
		}

	

			#banner .content h2 {
				color: #fff;
				font-size: 2em;
				margin: 0 0 0.5em 0;
			}


			@media screen and (max-width: 1730px) {
				#banner .content h2 {
					font-size: 1.5em;
				}

				#banner .content p {
					font-size: 0.9em;
				}
			 }


			 @media screen and (max-width: 1590px) {
				#banner .content {
					width: 20em;
				}

			
			 }

			#banner .content p {
				display: block;
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 700;
				text-transform: uppercase;
				color: #a9aaaa;
				font-size: 1.2em;
				margin: 0 0 1.25em 0;
				padding: 0 1.5em;
			}

			.left { text-align: left; }

			#banner .content .button {
				-moz-transition: border-color .2s ease-in-out, color .2s ease-in-out;
    -webkit-transition: border-color .2s ease-in-out, color .2s ease-in-out;
    -ms-transition: border-color .2s ease-in-out, color .2s ease-in-out;
    transition: border-color .2s ease-in-out, color .2s ease-in-out;
    color: black;
    /* background: transparent !important; */
    border: solid 4px #8e908f;
    /* border-color: rgb(119 129 122 / 35%); */
 
}
			}

				#banner .content .button:hover {
					color: #e4e7e5;
					border-color: rgba(87, 93, 89, 0.75);
				}

				#banner .content .button:active {
					color: #fff;
					border-color: #616763;
				}


				@media screen and (max-width: 1260px) {

					#banner .content .button {
						font-size: 1em;
					}
				} 

/* Main */

	#main {
		background: #fff;
		border-top: solid 5px #b1ddab;
		border-bottom: solid 5px #c1cac5;
		border-top-width: 35px;
		border-bottom-width: 10px;
		padding: 4em 0 0 0;
	}

/* Sidebar + Content */

	.sidebar h2.major {
		text-align: left;
		margin: 0 0 1.5em 0;
	}

		.sidebar h2.major span {
			padding-left: 0;
		}

/* Footer */

	#footer {
		text-align: center;
		padding: 3em 0 0 0;
	}

		#footer a {
			color: inherit;
		}

		#footer h2.major {
			margin: 0 0 1.3em 0;
		}

			#footer h2.major span {
				background: #f2f5f3;
			}


			@media screen and (min-width: 1300px) {
					#footer h2.major {
			margin: 1.5em 0 1.3em 0;
		}
			}

/* Copyright */

	#copyright {
		display: inline-block;
		background: #e7eae8;
		padding: 0.75em 2em 0.75em 2em;
		border-radius: 8px;
		color: #8b9790;
		margin: 4em 0 0 0;
	}

		#copyright a {
			color: inherit;
		}

		#copyright .menu {
			margin: 0;
		}

			#copyright .menu li {
				border-color: #C1CAC5;
				border-width: 2px;
				line-height: 1em;
			}

/* XLarge */

	@media screen and (max-width: 1680px) {

		/* Basic */

			body, input, textarea, select {
				font-size: 12pt;
				line-height: 1.75em;
			}

	}

/* Large */

	@media screen and (max-width: 1335px) {

		/* Basic */

			body, input, textarea, select {
				font-size: 11pt;
			}

		/* Special */

			ul.special li a:before {
				font-size: 60px;
			}

		/* Box */

			.box.highlight h2 {
				font-size: 2.5em;
			}

			.box.highlight header > p {
				font-size: 1.25em;
			}

			.box.post h3 {
				font-size: 2.5em;
			}

			.box.post header > p {
				font-size: 1.25em;
			}

		/* Header */

			#header {
				font-size: 1.5em;
			}

		/* Banner */

			#banner {
				padding: 16em 0;
			}

			

					#banner .content h2 {
						margin: 0 0 0.65em 0;
					}

					#banner .content p {
						margin: 0 0 1em 0;
					}

		/* Main */

			#main {
				border-top-width: 20px;
				border-bottom-width: 10px;
			}

		/* Footer */

			#footer {
				padding: 6em 0 6em 0;
			}

	}

/* Medium */

	#navPanel, #titleBar {
		display: none;
	}



	@media screen and (max-width: 1200px) {

		/* Basic */

			html, body {
				overflow-x: hidden;
			}

		/* Box */

			.box br {
				display: none;
			}

		/* Header */

			#header {
				display: none;
			}

		/* Banner */

			#banner {
				padding: 13em 0;
			}

			#banner .content {
				margin: 0;
				padding: 1em 0;
				width: 100%;

			}

			


		/* Nav */

			#nav {
				display: none;
			}

		/* Main */

			#main {
				border-top-width: 0;
			}

		/* Sidebar */

			.sidebar {
				border-top: solid 2px #e7eae8;
				padding-top: 50px;
			}

		/* Nav */

			body {
				padding-top: 44px;
			}

				body.homepage {
					padding-top: 0;
				}

			#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;
			}


			#page-wrapper > section {
				display: block;
			}

			#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: 50px;
				width: 100%;
				z-index: 9998;
				background-color: rgb(91 95 92);
				background-image: url("images/overlay.png");
			}

				#titleBar .title {
					display: block;
					position: relative;
					font-family: 'Open Sans Condensed', sans-serif;
					font-weight: 700;
					text-transform: uppercase;
					font-size: 1.25em;
					line-height: 44px;
					color: #fff;
					z-index: 1000;
					text-align: center;
				}
				#titleBar .toggleshop {
					text-decoration: none;
					position: absolute;
					right: 0;
					top: 0;
					width: 45px;
					height: 60px;
					z-index: 1001;
				}

					#titleBar .toggleshop: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 .toggleshop:before {
						display: inline-block;
						text-decoration: none;
						position: absolute;
						left: 0;
						top: 0;
						background: #b1ddab;
						width: 44px;
						height: 44px;
						content: '\f07a';
						color: #fff;
						text-align: center;
						line-height: 44px;
						font-size: 20px;
					}

					#titleBar .toggleshop:active:before {
						background-color: #a1cd9b;
					}

				#titleBar .toggle {
					text-decoration: none;
					position: absolute;
					left: 0;
					top: 0;
					width: 80px;
					height: 60px;
					z-index: 1001;
				}

					#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 {
						display: inline-block;
						text-decoration: none;
						position: absolute;
						left: 0;
						top: 0;
						background: #b1ddab;
						width: 44px;
						height: 44px;
						content: '\f0c9';
						color: #fff;
						text-align: center;
						line-height: 44px;
						font-size: 20px;
					}

					#titleBar .toggle:active:before {
						background-color: #a1cd9b;
					}

			#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;
				background-color: #353c37;
				background-image: url("images/overlay.png"), -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
				background-image: url("images/overlay.png"), -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
				background-image: url("images/overlay.png"), -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
				background-image: url("images/overlay.png"), linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
				background-repeat: repeat, no-repeat;
				background-size: auto, 100% 100%;
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 700;
				text-transform: uppercase;
				font-size: 1.25em;
				box-shadow: inset -3px 0px 10px 0px rgba(0, 0, 0, 0.25);
			}

				#navPanel nav {
					position: relative;
					z-index: 1000;
				}

				#navPanel .link {
					display: block;
					color: inherit;
					text-decoration: none;
					height: 44px;
					line-height: 44px;
					padding: 0 1em 0 1em;
					color: #888;
					color: rgba(255, 255, 255, 0.5);
					border-top: solid 2px rgba(87, 93, 89, 0.15);
					font-size: 0.8em;
				}

					#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 {
				font-size: 1.25em;
			}

				h2.major {
					font-size: 1.25em;
					margin: 0 0 2em 0;
				}

					h2.major span {
						padding: 0 1em;
					}

		/* Section/Article */

			section, article {
				margin-bottom: 2em;
			}

		/* Button */

			input[type="button"],
			input[type="submit"],
			input[type="reset"],
			button,
			.button {
				
				
			}


				input[type="button"].large,
				input[type="submit"].large,
				input[type="reset"].large,
				button.large,
				.button.large {
					font-size: 1.25em;
				}

		/* Actions */

			ul.actions li {
				display: block;
				margin: 1em 0 0 0;
			}

				ul.actions li:first-child {
					margin-top: 0;
				}

		/* Special */

			ul.special {
				margin: -0.75em 0 2em -0.75em;
			}

				ul.special li {
					padding: 0.75em 0 0 0.75em;
				}

					ul.special li a:before {
						font-size: 28px;
					}

		/* Box */

			.box.highlight h2 {
				font-size: 2em;
			}

			.box.highlight header > p {
				font-size: 1.25em;
			}

			.box.post h3 {
				font-size: 2em;
			}

			.box.post header > p {
				font-size: 1.25em;
			}

			.box.page-content h2 {
				font-size: 2em;
			}

			.box.page-content header > p {
				font-size: 1.25em;
			}

		/* Banner */

			#banner {
				padding: calc(6em + 44px) 0 6em 0;
			}

				#banner .content .button {
					font-size: 1em;
				}

					#banner .content h2 {
						font-size: 2em;
					}

					#banner .content p {
						font-size: 1.25em;
					}

				


		/* Main */

			#main {
				padding: 3em 0;
			}

		/* Sidebar */

			.sidebar {
				border-top: solid 2px #e7eae8;
				padding-top: 50px;
				margin-top: 30px;
			}

		/* Footer */

			#footer {
				padding: 3em 0;
			}

		/* Copyright */

			#copyright .menu li {
				display: block;
				border-left: 0;
				padding-left: 0;
				line-height: 1.75em;
			}

	}

/* Small */

	@media screen and (max-width: 360px) {

		/* Basic */

			body, input, textarea, select {
				font-size: 10pt;
			}

	}

	:root {
  --color-black: #373636;
  --color-neutral-1: #f6f5f6;
  --color-neutral-5: #999798;
  --color-primary-1: #f0f5f6;
  --color-primary-2: #dce9eb;
  --color-primary-3: #c6dcdf;
  --color-primary-4: #82b1b8;
  --color-primary: #247783;
  --color-primary-6: #1d5f69;
  --color-white: #fdfdfe;
  --font-family-text: 'Inter', sans-serif;
  --font-family-title: 'Lora', serif;
}



button {
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  margin-top: 15px;
}






small {
  font-size: .75rem;
  font-weight: 300;
  letter-spacing: .5px;
}

small.muted {
  color: var(--color-neutral-5);
}


/*
  body content + header + main
*/


.body-content {
  margin: 0 auto;
  max-width: 100rem;
  padding-bottom: 7%;


}

header {
  background: none;
  color: var(--color-white);
  padding: 0 0 0 0;
}

main {
  color: var(--color-black);
  overflow-x: hidden;

}






/*
  tables
*/

table {
  border-collapse: collapse;
  margin: 1px 0 0;
  width: 100%;
}

tr {
  border-bottom: 1px solid var(--color-primary-3);
  border-top: 1px solid var(--color-primary-3);
  margin: -1px 0 0;
  width: 100%;
}

tr:hover:not(.selected):not(.no-hover),
tr.hover {
  background: var(--color-primary-1);
  cursor: pointer;
}

tr.selected {
  background: var(--color-primary-2);
}

td,
th {
  font: inherit;
  line-height: inherit;
  text-align: left;
  min-width: 3rem;
}

td:first-of-type,
th:first-of-type {
  padding-left: 1.5rem;
}

td:last-of-type,
th:last-of-type {
  padding-right: 1.5rem;
}

th {
  color: var(--color-primary-4);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 1.5rem 1rem;
}

td {
  font-size: .875rem;
  padding: 1rem 1rem;
}

.bulk-actions {
  align-items: center;
  background: var(--color-primary-3);
  border-radius: .25rem;
  color: var(--color-black);
  display: inline-flex;
  gap: .75rem;
  padding: .75rem 1.5rem;
}

.bulk-actions .icon {
  color: var(--color-primary);
  cursor: pointer;
}

.bulk-actions .icon:hover {
  color: var(--color-primary-6);
}


.center {
	text-align: center;
}


/*
  utility
*/

.flex { display: flex; }
.flex-column { flex-direction: column; }
.gap-05 { gap: .5rem; }
.gap-1 { gap: 1rem; }
.gap-15 { gap: 1.5rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }
.grow { flex-grow: 1; }
.hidden { display: none; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.leading-none { line-height: 1; }


.line { 
	display: flex;
    position: relative;
    background-color: rgb(21 28 23 / 46%);
    background-image: url(images/overlay.png), url(images/highlight.png);
    background-position: top left, center center;
    background-size: auto, 100% 250%;
    background-repeat: repeat, no-repeat;
    width: 100%;
 }



 .text_line {
 	display: flex;
    padding: 1% 40%;
 }


 .pravidla_text {
	line-height: 3em;
}


.col-3 div.content {
    border-right: 1px solid #757575;
}

.col-3 {
     float: left;
width: 33.33%;
box-sizing: border-box;
 	 
 }

.col-3:last-child .content {
 	 border-right: none;
 } 

 .sm a {
 	text-decoration: underline;
 }

 .sm a:hover {
 	text-decoration: none;
 }


 @media screen and (max-width: 7000px)
 {
.text_line {
	padding: 1% 37%;
}
 }


 @media screen and (max-width: 6000px)
 {
.text_line {
	padding: 1% 34%;
}
 }


 @media screen and (max-width: 5000px)
 {
.text_line {
	padding: 1% 30%;
}
 }



  @media screen and (max-width: 4000px)
 {
.text_line {
	padding: 1% 26%;
}
 }


 @media screen and (max-width: 3500px)
 {
.text_line {
	padding: 1% 21%;
}
 }



 @media screen and (max-width: 3000px)
 {
.text_line {
	padding: 3% 17%;
}
 }

  @media screen and (max-width: 2100px)
 {
.text_line {
	padding: 3% 8%;
}
 }


   @media screen and (max-width: 1900px)
 {
.text_line {
	padding: 3% 5%;
}
 }


   @media screen and (max-width: 1800px)
 {
.text_line {
	padding: 3% 2%;
}
 }


   @media screen and (max-width: 1450px)
 {
.text_line {

}
 }


   @media screen and (max-width: 1250px)
 {
.text_line {
	
}
 }

 .under {text-decoration: underline;}

 .right {float: right;right: 5%;}


 	@media screen and (max-width: 1200px) {
 	

 		.logo_mobile {
    position: fixed;
    top: 61px;
    left: 33%;
    z-index: 9999;
   
 		}


 		.col-3 {
 			width: 100%;
 		}
 	

.col-3 div.content {
    border-bottom: 1px solid #757575;
}

.col-3 {
     float: bottom;

box-sizing: border-box;
 	 
 }

.col-3:last-child .content {
 	 border-bottom: none;
 } 

 	.text_line {
 		padding: 0 4%;
 		display: block;
 		width: 100%;
 	}

 	.col-3 div.content {
 		border-right: 0px;
 	}

}


 	@media screen and (max-width: 720px) {
 	

 		.logo_mobile {
   left: 93%;
 		}
 	}



 	@media screen and (max-width: 625px) {
 	

 		.logo_mobile {
   left: 97%;
 		}
 	}



 	@media screen and (max-width: 600px) {
 	

 		.logo_mobile {

    position: fixed;
 		}
 	}


 	@media screen and (max-width: 530px) {
 	

 		.logo_mobile {

 left: 100%;
 		}
 	}



 	@media screen and (max-width: 500px) {
 	

 		.logo_mobile {

 left: 103%;
 		}


 		    .logo_pohar img {
 		    	width: 65px;
    margin-top: 10px;
 		    }
 	}




 	 	@media screen and (max-width: 420px) {
 	

 		.logo_mobile {

 left: 107%;
 		}

}



 		@media screen and (max-width: 400px) {
 	

 		.logo_mobile {
    margin: auto 5%;
    position: fixed;
 		}
 	}


@media screen and (max-width: 355px) {
    .logo_pohar img {
        width: 50px;
        margin-top: 20px;
    }
}


 	section.prav p{
 		margin-bottom: 10px;
 	}

 	.small-logo {
width: 40px;
height: 40px;
}

 	.s5_logo {
background-position: 0 0;
background-repeat: no-repeat;
-webkit-transition: background-position .4s ease-in;
-moz-transition: background-position .4s ease-in;
-o-transition: background-position .4s ease-in;
transition: background-position .4s ease-in;
}

.s5_logo_path {
background-image: url(/images/logo.png);
}

.s5_logo_path .small-logo {
background-position: 0px -122px; //here play with the position.
}


.lista_vrch {
	position: fixed;
    top: 0;
    height: 50px;
    padding: 7px 0 0px 0;
    background: #6b7770;
    z-index: 999;
    width: 100%;
}


.lista_kontakt {
	float: right;
    margin-right: 20px;
}

.lista_kontakt a {
	color: white;
	text-decoration: none;
}

.lista_kontakt a:hover {
	text-decoration: underline;
}


.lista_text {
	margin-right: 20px;
	color: white;
}



@media screen and (max-width: 1000px) {
 	

 		.lista_text {
   display: none;
 		}
 	}


@media screen and (max-width: 720px) {
 	

 		.lista_kontakt {
      margin: 0 20px;
      float: left;
 		}

 		.lista_text {
 			display: inline;
 		}

 		.fa-envelope, .fa-mobile, .fa-user  {
 			font-size: 25px;
 		}

 		.text_email, .text_tel {
 			display: none;
 		}

 	
 	}


@media screen and (max-width: 545px) {
 	

 		.lista_text {
   display: none;
 		}
 	}


.reg {
	font-size: 16px;
    background: #b1ddab;
    padding: 15px;
    border-radius: 5px;
    color: #2f2e2e;
    text-decoration: none;

}


/* IMAGE */
.image-container {
    overflow-x: hidden;
}
.image-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((50% - (1.5rem * (var(--per-view) - 1))) / var(--per-view));
    grid-gap: 1.5rem;
    position: relative;
    left: 0;
    transition: .3s;
}
.image-wrapper > * {
 
}
.image-wrapper img {
    width: 100%;

    object-fit: cover;
    display: block;
    border-radius: .5rem;
}
/* IMAGE */

.verti {
	padding-top: 35%;
}


.alert_message_error {
	border: 1px solid #cd0000;
    border-radius: 10px;
    background: #ff0000ad;
    color: white;
    padding: 10px 0 10px 15px;
}

.alert_message_error p {
	margin: 0;
}


.succes_message {
	border: 1px solid #12cd00;
    border-radius: 10px;
    background: #b1ddab;
    color: black;
    padding: 10px 0 10px 15px;
}

.succes_message p {
	margin: 0;
}


@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;

  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}


.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: slide 55s infinite linear; /* Zde je změna: přidání animace slide */
}

.logos-slide img {
  height: 115px;
  margin: 0 30px;
}

.fot_a a {
	text-decoration: underline;
}

.fot_a a:hover {
	text-decoration: none;
}

  .ok {
    color: #70ba63;
     font-weight: bold;
  }

    .ko {
    color: #d9534f;
    font-weight: bold;
  }



@media screen and (max-width: 600px) {
 	

 		.buttons p a {
   display: block;
   margin-bottom: 5px;
 		}
 	}


 .comments {
 	    background: #80808029;
    border-radius: 10px;
    padding: 14px;
    color: #00000094;
    font-size: 14px;
 }

 .comments_user {

    font-weight: bold;
 }

.comments_time {
	float: right;
}

  .stats-container {
    display: flex;
    align-items: center;
    color: black;
    margin-bottom: 15px;
  }

  .stats-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
        color: #00000080;
  }

  .stats-item img {
    margin-right: 5px;
  }

  .radius_foto {
  	    border-radius: 10px;
    	border: 1px solid gray;
		max-width: 300px;
  }

  .profil_stats {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    list-style-type: none;

  }

    .profil_stats li {
  	padding: 0.6em 1.5rem;
    text-align: center;
    font-size: 1rem;
    color: gray;
    border: 1px solid gray;
    margin-right: 10px;
    border-radius: 10px;
    width: 15%;
}
  

    .profil_stats li span {
  	display: block;
    margin-bottom: 0.1rem;
    font-weight: bold;
    font-size: 1.6rem;
    color: gray;
  }



@media screen and (max-width: 1200px) {
 	

   .profil_stats {
 margin-bottom: 45px;
 		}


 		 .profil_stats li {
 		 	font-size: 14px;
 		 }
 	}



@media screen and (max-width: 1020px) {
 	

 		 .profil_stats li {
 		 	padding: 0.6em 0em;
 		 }
 	}


@media screen and (max-width: 700px) {
 	

 		 .profil_stats li {
 		 	width: 20%;
 		 }
 	}


 	@media screen and (max-width: 490px) {
 	

 		 .profil_stats li {
 		 	width: 25%;
 		 }
 	}

 		@media screen and (max-width: 405px) {
 	

 		 .profil_stats li {
 		 	width: 31%;
 		 }

 		  		 td:first-of-type,
th:first-of-type {
  padding-left: 0rem;
 	}
th {padding: 1.5rem 1rem;}
 	
 	}


 	 		@media screen and (max-width: 330px) {
 	

 		 .radius_foto {
 		 	width: 80%;
 		 }


 }


  .profil_tym {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    list-style-type: none;

  }

    .profil_tym li {
  	padding: 0.6em 0.5em;
    text-align: center;
    color: gray;
    border: 1px solid gray;
    margin-right: 10px;
    border-radius: 10px;
    width: 15%;
}
  

    .profil_tym li span {
  	display: block;
    margin-bottom: 0.1rem;
    color: gray;
  }

  .pozice {
  	font-size: 15px;
  	text-align: left;
  	display: block;
  }

  .jmeno {
  	font-weight: bold;
  }


   	 		@media screen and (max-width: 800px) {
 	
   	 			.profil_tym {
   	 				margin-top: 2rem;
    				list-style-type: none;
       				 margin: 7% 28%;

   	 			}


   	 			.profil_tym li {
   	 padding: 0.6em 0.5em;
    color: gray;
    border: 1px solid gray;
    margin-bottom: 10px;
    border-radius: 10px;
    display: block;
    width: 100%;
 
   	 			}

   	 			.jmeno {
   	 				font-size: 22px;
   	 				text-align: left;
   	 			}

 		
 	}





.pagination {
	text-align: center;
}

.pagination a {
	/*border: 1px solid gray;*/
    padding: 4px 11px;
    text-decoration: none;
    color: gray;
}

.pagination a:hover {
	border: 1px solid gray;
    padding: 4px 11px;
    text-decoration: none;
    color: gray;
}

.pagination strong {
	border: 1px solid gray;
    padding: 4px 11px;
    text-decoration: none;
    color: gray;
    background: #00000014;
}




	@media screen and (max-width: 900px) {
 	
   	 td {
   	         padding-left: 6px;
}



   td:last-of-type, th:last-of-type {
    text-align: center;
}
}


 .uni_foto {
   	 width: 700px;
}


	@media screen and (max-width: 900px) {
 	
   	 .uni_foto {
   	 width: 350px;
   	         margin-bottom: 8px;
   	         margin-top: -11px;
}


}

@media screen and (max-width: 900px) {
    .box.page-content header {

        margin-bottom: 25px;
        /* padding-right: 12px; */
    }


.radius_foto {
       margin-bottom: 12px;

}



    .profil_stats {
        margin-bottom: 30px;   
}

}

@media screen and (max-width: 900px) {
    td:last-of-type, th:last-of-type {
        text-align: left;
    }
}


@media screen and (max-width: 900px) {
    #titleBar {

        top: 65px;
       } 


       .lista_vrch {
    height: 13%;
}
    }

	@media screen and (orientation: landscape) and (max-width: 950px) { 

		/* Styly pro landscape režim a maximální šířku obrazovky 900px */
		#titleBar {

			top: 11% !important;
		   } 
		   .vlaj {
			display: inline-block !important;
					padding-top: 3px;
					margin-left: 2px;
		}
	}


    @media screen and (max-width: 900px) {
    .logo_pohar img {
        width: 60px;
        margin-top: -2px;
}
.vlaj {
	display: block;
	        padding-top: 3px;
	        margin-left: 2px;
			vertical-align: sub;
}

.vlaj a img {
	margin-right: 4px;
}

    }



        @media screen and (min-width: 901px) {
   
.vlaj {
	        padding-top: 3px;
	        margin-left: 11px;
	                vertical-align: sub;
}

    }


    .table-container {
    overflow-x: auto;  /* Povolit horizontální posouvání */
    -webkit-overflow-scrolling: touch;  /* Plynulý posuv pro iOS */
    margin-bottom: 20px;  /* Volitelné - pro vizuální oddělení od ostatního obsahu */
}

	@media screen and (max-width: 900px) {
 	
   	 td {
   	 
}

td:first-of-type, th:first-of-type {

}


   td:last-of-type, th:last-of-type {
   
}
}


 .uni_foto {
   	 width: 700px;
}


	@media screen and (max-width: 900px) {
 	
   	 .uni_foto {
   	 width: 350px;
}


}

.zivotopis {
    color: gray;
    max-width: 615px;
    margin: auto 24%;
    text-align: left;
}

@media screen and (max-width: 600px) {
.zivotopis {
	color: gray;
    width: 100%;
    margin: 0;
}
}

     @media (max-width: 470px) {
    .bubble
    {
        font-size: 12px;
    }
}

.shopbutton {
	background: #b1ddab;
	text-decoration: none;
    color: #fff;
    display: inline-block;
    padding: 1px 10px 1px 10px;
    border-radius: 10px;
}

.shopbutton:hover {
	background: #b1ddab;
	text-decoration: none;
    color: #fff;
    display: inline-block;
    padding: 1px 10px 1px 10px;
    border-radius: 10px;
}

a.disabled {
	pointer-events: none;
	cursor: default;
	background-color: #6b7770;
  }

  .fish-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fish-item {
    display: flex;
    align-items: center;
    background: #FFF;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fish-item img {
    height: auto;
    margin-right: 15px;
    object-fit: contain;
}

.fish-name {
    font-size: 1.8em;
    flex-grow: 1;
    word-wrap: break-word;
}

/* Responzivita pro mobily */
@media (max-width: 600px) {
    .fish-item {
        flex-direction: column;
        text-align: center;
    }

    .fish-item img {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100px; /* Nebo přizpůsobit */
    }

    .fish-name {
        font-size: 1.5em;
    }
}
