html,
body {
	height: 100%;
}

.ZRKTSMlogo {
	width: 600px;
}

body {
	margin: 0px;
	padding: 0px;
	/* background: #E63946; */
	background: #008a20;
	font-family: "Questrial", sans-serif;
	font-size: 12pt;
	color: rgba(0, 0, 0, 0.6);
}

h1,
h2,
h3 {
	margin: 0;
	padding: 0;
	color: #404040;
}

p,
ol,
ul {
	margin-top: 0;
}

ol,
ul {
	padding: 0;
	list-style: none;
}

p {
	line-height: 180%;
}

strong {
}

a {
	color: #008a20;
}

a:hover {
	text-decoration: none;
}

.container {
	margin: 0px auto;
	width: 1200px;
}

/*********************************************************************************/
/* Form Style                                                                    */
/*********************************************************************************/

form {
}

form label {
	display: block;
	text-align: left;
	margin-bottom: 0.5em;
}

form input[type="submit"] {
	font-family: "Questrial", sans-serif;
	margin-top: 2em;
	line-height: 1.5em;
	padding: 1em;
}

form input[type="text"],
form input[type="email"],
form select,
form textarea {
	position: relative;
	-webkit-appearance: none;
	display: block;
	border: 0;
	background: #fff;
	background: rgba(255, 255, 255, 0.75);
	width: 100%;
	border-radius: 0.5em;
	margin: 1em 0em;
	padding: 1em;
	box-shadow: inset 0 0.1em 0.1em 0 rgba(0, 0, 0, 0.05);
	border: solid 1px rgba(0, 0, 0, 0.15);
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	font-size: 1em;
	outline: none;
	font-family: "Questrial", sans-serif;
	box-sizing: border-box;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form select:focus,
form textarea:focus {
	box-shadow: 0 0 2px 1px #e0e0e0;
	background: #fff;
}

form textarea {
	min-height: 12em;
}

form .formerize-placeholder {
	color: #555 !important;
}

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;
}

/*********************************************************************************/
/* Image Style                                                                   */
/*********************************************************************************/

.image {
	display: inline-block;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.image img {
	display: block;
	width: 100%;
}

.image-full {
	display: block;
	width: 100%;
	margin: 0 0 3em 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;
}

.fade-in {
	animation: fadeIn 1s;
	-webkit-animation: fadeIn 1s;
	-moz-animation: fadeIn 1s;
	-o-animation: fadeIn 1s;
	-ms-animation: fadeIn 1s;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-ms-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*********************************************************************************/
/* Social Icon Styles                                                            */
/*********************************************************************************/

ul.contact {
	margin: 0;
	padding: 2em 0em 0em 0em;
	list-style: none;
}

ul.contact li {
	display: inline-block;
	padding: 0em 0.1em;
	font-size: 1em;
}

ul.contact li span {
	display: none;
	margin: 0;
	padding: 0;
}

ul.contact li a {
	color: #fff;
}

ul.contact li a:before {
	display: inline-block;
	background: #4c93b9;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: rgba(255, 255, 255, 1);
}

/*********************************************************************************/
/* Button Style                                                                  */
/*********************************************************************************/

button {
	display: inline-block;
	margin-top: 0.5em;
	padding: 0.8em 2em;
	/* background: #64abd1; */
	background: #008a20;
	line-height: 1.8em;
	letter-spacing: 1px;
	text-decoration: none;
	font-size: 1em;
	color: #fff;
	font-family: "Questrial", sans-serif;
	border: 0;
	box-shadow: 0 0 2px 1px #e0e0e0;
	border-radius: 0.5em;
}

button:active {
	box-shadow: inset 0 0.1em 0.1em 0 rgba(0, 0, 0, 0.05);
}

button:before {
	display: inline-block;
	background: #8dcb89;
	margin-right: 1em;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
	text-align: center;
	color: #272925;
}

button:hover {
	cursor: pointer;
}

.button-small {
}

/*********************************************************************************/
/* Heading Titles                                                                */
/*********************************************************************************/

.title {
	margin-bottom: 3em;
}

.title h2 {
	font-size: 2.8em;
}

.title .byline {
	font-size: 1.1em;
	color: #6f6f6f;
}

/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

#header-wrapper {
	overflow: hidden;
	background: #008a20;
}

#header {
	text-align: center;
}

/*********************************************************************************/
/* Logo                                                                          */
/*********************************************************************************/

#logo {
	padding: 4em 0em 2em 0em;
}

#logo h1 {
	display: block;
	margin-bottom: 0.2em;
	padding: 0.2em 0.9em;
	font-size: 3.5em;
}

#logo a {
	text-decoration: none;
	color: #fff;
}

#logo span {
	text-transform: uppercase;
	font-size: 2.9em;
	color: rgba(255, 255, 255, 1);
}

#logo span a {
	color: rgba(255, 255, 255, 0.8);
}

/*********************************************************************************/
/* Menu                                                                          */
/*********************************************************************************/

#menu {
	height: 60px;
}

#menu ul {
	display: inline-block;
	padding: 0em 2em;
	text-align: center;
}

#menu li {
	display: inline-block;
}

#menu li a,
#menu li span {
	display: inline-block;
	padding: 0em 1.5em;
	text-decoration: none;
	font-size: 0.9em;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 60px;
	outline: 0;
	color: #fff;
}

#menu li:hover a,
#menu li.active a,
#menu li.active span {
	background: #fff;
	border-radius: 7px 7px 0px 0px;
	color: #008a20;
}

#menu .current_page_item a {
}

/*********************************************************************************/
/* Banner                                                                        */
/*********************************************************************************/

#banner {
	padding-top: 5em;
}

#banner img {
	display: block;
	width: 70%;
	margin: auto;
}

#culturebanner {
	margin-top: 3em;
	background-image: url("images/kultura.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 840px;
	height: 500px;
}

#sportbanner {
	margin-top: 3em;
	background-image: url("images/sport.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 840px;
	height: 500px;
}

#tourismbanner {
	margin-top: 3em;
	background-image: url("images/tourism.jpg");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	width: 840px;
	height: 500px;
}

#youthbanner {
	margin-top: 3em;
	background-image: url("images/mladi.jpg");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	width: 840px;
	height: 500px;
}

/*********************************************************************************/
/* Wrapper                                                                       */
/*********************************************************************************/

.wrapper {
	overflow: hidden;
	padding: 0em 0em 5em 0em;
	background: #fff;
}

#wrapper1 {
	background: #fff;
}

#wrapper2 {
	overflow: hidden;
	background: #f3f3f3;
	padding: 5em 0em;
	text-align: center;
}

#wrapper3 {
}

#wrapper4 {
}

/*********************************************************************************/
/* Welcome                                                                       */
/*********************************************************************************/

#welcome {
	overflow: hidden;
	width: 800px;
	padding: 6em 100px 0em 100px;
	text-align: center;
}

#welcome .content {
	padding: 0em 8em;
}

#welcome .title h2 {
}

#welcome a,
#welcome strong {
}

/*********************************************************************************/
/* culture, tourism, youth, sport                                                */
/*********************************************************************************/

#culture,
#tourism,
#youth,
#sport {
	overflow: hidden;
	width: 800px;
	padding: 3em 5em 0em 5em;
}

/*********************************************************************************/
/* Cards                                                                         */
/*********************************************************************************/

div#cards-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 6em 100px 0em 100px;
	text-align: center;
	width: 800px;
	gap: 1em;
}

.card {
	padding: 2em;
	border: 1px solid grey;
	border-radius: 1em;
	box-shadow: 0 0 3px 1px #e0e0e0;
}

h3.title {
	margin: 0 0 1em 0;
}

/*********************************************************************************/
/* Page                                                                          */
/*********************************************************************************/

#page-wrapper {
	overflow: hidden;
	background: #2f1e28;
	padding: 3em 0em 6em 0em;
	text-align: center;
}

#page {
}

/*********************************************************************************/
/* Content                                                                       */
/*********************************************************************************/

#content {
	float: left;
	width: 700px;
	padding-right: 100px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/*********************************************************************************/
/* Sidebar                                                                       */
/*********************************************************************************/

#sidebar {
	float: right;
	width: 350px;
}

/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/

#footer {
	overflow: hidden;
	padding: 5em 0em;
	/* background: #e3f0f7; */
	background: #e5e9ec;
	text-align: center;
}

#footer .fbox1,
#footer .fbox2,
#footer .fbox3 {
	float: left;
	width: 320px;
	padding: 0px 40px 0px 40px;
}

#footer .icon {
	display: block;
	margin-bottom: 1em;
	font-size: 3em;
}

#footer .title span {
	/* color: rgba(255, 255, 255, 0.4); */
	color: #ffffff;
}

#footer span a {
	color: rgba(0, 0, 0, 0.6);
	text-decoration: none;
}

#footer span a:hover {
	font-weight: bold;
}

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/

#copyright {
	overflow: hidden;
	padding: 5em 0em;
	border-top: 20px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

#copyright p {
	letter-spacing: 1px;
	font-size: 0.9em;
	color: rgba(255, 255, 255, 0.6);
}

#copyright a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.8);
}

/*********************************************************************************/
/* Form controls                                                                 */
/*********************************************************************************/

fieldset {
	border: 1px solid grey;
	display: block;
	margin: 3em auto;
	padding: 1em;
	text-align: left;
	width: 25em;
	border-radius: 0.5em;
	width: 800px;
}

form > textarea {
	resize: none;
}

form > input[type="submit"] {
	border: 0;
	width: 100%;
	border-radius: 0.5em;
	font-family: "Questrial", sans-serif;
}

/*********************************************************************************/
/* culture.html                                                                  */
/*********************************************************************************/
