
/* Farben
----------*/

	.heimat-weiss { color: #FFFFFF; }
	.schwarz { color: #000000 !important; }
	.heimat-blau { color: #62b1c4; }
	.bgr-heimat-weiss {background-color: #FFFFFF; }
	.bgr-heimat-blau { background-color: #62b1c4; }
	.heimat-orange { color: #da9a23 !important; }
	.bgr-heimat-orange { background-color: #da9a23; }
	.heimat-grau { color: #e9e5db; }
	.bgr-heimat-grau { background-color: #e9e5db; }

/* Überschriften
-----------------*/

	h1 {
		font-weight: normal;
	}

	h2 {
		font-size: 40px;
		line-height: 45px;
		text-transform: uppercase;
	}

	@media screen and (max-width: 800px) {
		h2 {
			font-size: 30px;
			line-height: 35px;
		}
	}

/* Absätze
-----------*/

	main p {
		margin-top: 10px;
	}

/* Header
----------*/

	header {
		height: 120px;
		background-color: #62b1c4;
		background-color: rgba(98, 177, 196, 0.93);
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 10;
		-webkit-box-shadow: 0px 0px 25px -18px rgba(0,0,0,1);
		-moz-box-shadow: 0px 0px 25px -18px rgba(0,0,0,1);
		box-shadow: 0px 0px 25px -18px rgba(0,0,0,1);
	}

	.header-spacer {
		display: block;
		height: 120px;
	}

		@media screen and (max-width: 800px) {
			header {
				height: 70px;
			}
		}

/* Logo
--------*/

	#logo {
		position: absolute;
		top: 25px;
		transition: all 1s ease 0s;
	}

	#logo:hover {
		opacity: 0.9;
		transform: scale(1.07) rotate(-1deg);
	}

	#logo img {
		height: 70px;
	}

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

			#logo {
				top: 15px;
			}

			#logo img {
				height: 40px;
			}
		}

/* Menütoggler
---------------*/

	#mobile-menu-toggler {
		height: 35px;
		width: 35px;
		position: absolute;
		top: 20px;
		right: 20px;
		background-image: url('/project/nok/scope/www/pub/img/menu.svg');
		background-size: 100% auto;
		background-repeat: no-repeat;
		background-position: center center;
		cursor: pointer;
		z-index: 3;
		display: none;
	}

	@media screen and (max-width: 800px) {
		#mobile-menu-toggler {
			display: block;
		}
	}

	#mobile-menu-toggler:hover {
		opacity: 0.8;
	}

/* Mobiles Menü
----------------*/

	#mobile-menu {
		position: absolute;
		top: 70px;
		right: 0;
		background-color: rgba(98, 177, 196, 1);
		z-index: 10;
		-webkit-box-shadow: 0px 0px 25px -18px rgba(0,0,0,1);
		-moz-box-shadow: 0px 0px 25px -18px rgba(0,0,0,1);
		box-shadow: 0px 0px 25px -18px rgba(0,0,0,1);
		display: none;
		padding-top: 10px;
	}

	#mobile-menu li {
		display: block;
	}

	#mobile-menu li a {
		display: block;
		padding: 5px 20px;
		color: #FFFFFF;
		text-decoration: none;
	}

	#mobile-menu li:hover a {
		color: #000000 !important;
	}

/* Quicklinks
--------------*/

	#quicklinks {
		position: absolute;
		top: 0;
		right: 0;
		height: 38px;
	}

	#quicklinks:after {
		content: '';
		clear: both;
		display: table;
	}

		#quicklinks a {
			display: block;
			float: left;
			height: 38px;
		}

		#quicklinks a:nth-child(1) {
			padding: 7px 10px 0 10px;
		}

		#quicklinks a:nth-child(2) {
			padding: 7px 5px 0 10px;
			background-color: #FFFFFF;
		}

		#quicklinks a:nth-child(3) {
			padding: 7px 10px 0 5px;
			background-color: #FFFFFF;
		}

			#quicklinks a img {
				display: block;
				height: 24px;
			}

	@media screen and (max-width: 800px) {
		#quicklinks {
			display: none;
		}
	}

/* Headernavigation
--------------------*/

	#headernav {
		position: absolute;
		right: -5px;
		top: 75px;
	}

	#headernav li {
		display: inline-block;
	}

	#headernav li a {
		display: block;
		color: #FFFFFF;
		font-family: "Manrope";
		font-weight: 300;
		padding: 0 10px 0 10px;
		line-height: 30px;
		position: relative;
	}

	#headernav li a span {
		color: #FFFFFF;
		position: relative;
		z-index: 2;
	}

	#headernav li.active > a:before {
		content: '';
		position: absolute;
		display: block;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #da9a23;
		transform: rotate(-1deg);
		z-index: 1;
	}

	#headernav li:hover a:before {
		content: '';
		position: absolute;
		display: block;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(255, 255, 255, 0.2);
		transform: rotate(-1deg);
		z-index: 1;
	}

	@media screen and (max-width: 800px) {
		#headernav {
			display: none;
		}
	}

/* Headslogan
--------------*/

	#head_slogan {
		background-color: #e9e5db;
		font-size: 30px;
		padding: 8px 0 10px 0;
	}

	#head_slogan .t1 {
		color: #da9a23;
		font-family: "Pacifico";
		font-size: 45px;
		line-height: 40px;
	}

	#head_slogan .t2 {
		color: #62b1c4;
		text-transform: uppercase;
		font-weight: 700;
	}

	@media screen and (max-width: 800px) {
		#head_slogan {
			padding: 10px 0 8px 0;

		}
		#head_slogan * {
			font-size: 20px !important;
			line-height: 25px;
		}
		#head_slogan .t1 {
			font-size: 30px !important;
			line-height: 25px;
		}
	}

/* Newsletter
--------------*/

	#newsletter {
		background-color: #da9a23;
		padding: 20px 0;
	}

	#newsletter > .container {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#newsletter h2 {
		color: #FFFFFF;
		text-transform: none !important;
		font-size: 30px;
		font-weight: 100;
	}

	@media screen and (max-width: 800px) {
		#newsletter h2 {
			font-size: 25px;
		}
	}

		#newsletter h2 .handwriting {
			font-family: Pacifico;
			color: #575756;
			text-transform: none !important;
			font-size: 50px;
			font-weight: 100;
		}

		@media screen and (max-width: 800px) {
			#newsletter h2 .handwriting {
				font-size: 30px;
			}
		}

	#newsletter input[type="submit"] {
		display: block;
		width: 100%;
		background-color: #62b1c4;
		color: #FFFFFF;
		border: 1px solid #FFFFFF;
		padding: 0 18px;
		text-transform: uppercase;
		cursor: pointer;
		line-height: 50px;
		height: 50px;
	}

	#newsletter input[type="submit"]:hover {
		opacity: 0.8;
	}

	#newsletter small {
		color: #FFFFFF;
		font-size: 14px;
	}

	#newsletter small a {
		color: #FFFFFF;
		text-decoration: underline;
	}

	#newsletter form {
		padding-top: 10px;
	}

	#newsletter form:after {
		content: '';
		clear: both;
		display: table;
	}

	#newsletter form input[type="text"] {
		padding: 10px 10px;
		display: block;
		width: 100%;
		font-size: 18px !important;
		border: 1px solid #DDDDDD;
	}

	#newsletter .field {
		position: relative;
		float: left;
		margin-right: 20px;
		display: inline-block;
	}

		#newsletter-registrierung .field-name {
			width: 250px;
		}

		#newsletter-registrierung .field-plz {
			width: 150px;
		}

		#newsletter-registrierung .field-email {
			width: 350px;
		}


		@media screen and (max-width: 1024px) {
			#newsletter .field {
				float: none;
				margin-right: 0;
				width: 100%;
				margin-bottom: 10px;
			}
		}

	/* Fehlermakrierung
	--------------------*/

		#newsletter .error-message {
			padding: 10px 20px;
			margin-top: 10px;
			background-color: #FFFFFF !important;
			color: #CF0234;
			font-weight: 600;
			font-size: 17px;
			display: none;
		}

	/* Label
	---------*/

		#newsletter .field label {
			position: absolute;
			left: 10px;
			bottom: 5px;
			font-size: 12px;
			color: #9D9D9C;
			opacity: 0.7;
			display: none;
		}

/* Footer
----------*/

	footer {
		background-color: #62b1c4;
		border-top: 5px dashed #FFFFFF;
		padding: 30px 0;
		position: relative;
	}

	footer:after {
		content: '';
		clear: both;
		display: table;
	}

	footer *  {
		color: #FFFFFF;
	}

	/* Navigation
	--------------*/

		footer ul {
			float: left;
		}

		footer ul li {
			display: inline-block;
		}

		footer ul li a {
			margin-right: 30px;
		}

	/* Copyright
	-------------*/

		#copyright {
			float: right;
		}

		@media screen and (max-width: 700px) {
			#copyright {
				display: block;
				margin-top: 20px;
			}
		}

/* Text-Bild Blöcke
---------------------------*/

	.image-text-block {
		padding: 40px 0;
	}

	.image-text-block::after {
		content: '';
		clear: both;
		display: table;
	}

	/* Text
	--------*/

		.image-text-block .text {
			display: block;
			width: 60%;
			padding-bottom: 30px;
		}

			.image-is-right .text {
				float: left;
				padding-right: 50px;
			}

			.image-is-left .text {
				float: right;
				padding-left: 50px;
			}

			@media screen and (max-width: 700px) {
				.image-text-block .text {
					float: none;
					width: 100%;
					padding-left: 0;
					padding-right: 0;
				}
			}

	/* Bild
	--------*/

		.image-text-block .image {
			display: block;
			position: relative;
			width: 40%;
		}

		.image-text-block .image:before {
			content: '';
			display: block;
			height: 90px;
			width: 90px;
			position: absolute;
			top: -25px;
			background-size: 100% auto;
			background-repeat: no-repeat;
			background-position: center center;
		}
			.image-is-right .image:before {
				left: -50px;
			}

			.image-is-left .image:before {
				right: -50px;
			}

			@media screen and (max-width: 700px) {
				.image-text-block .image:before {
					display: none;
				}
			}

		.image-text-block .image img {
			width: 100%;
		}

			.image-is-right .image {
				float: right;
			}

			.image-is-left .image {
				float: left;
			}

			@media screen and (max-width: 700px) {
				.image-is-right .image,
				.image-is-left .image {
					float: none;
					width: 100%;
					margin-bottom: 30px;
				}
			}

	/* Modifier:orange
	-------------------*/

		.image-text-block.bgr-heimat-orange h2 {
			color: #000000;
		}

		.image-text-block.bgr-heimat-orange .intro {
			color: #FFFFFF;
			font-weight: 600;
		}

		.image-text-block.image-is-right.bgr-heimat-orange .image:before {
			background-image: url('/project/nok/scope/www/pub/img/pfeil-weiss-links.svg');
		}

		.image-text-block.image-is-left.bgr-heimat-orange .image:before {
			background-image: url('/project/nok/scope/www/pub/img/pfeil-weiss-rechts.svg');
		}


	/* Modifier:grau
	-------------------*/

		.image-text-block.bgr-heimat-grau h2 {
			color: #62b1c4;
		}

		.image-text-block.bgr-heimat-grau .intro {
			color: #da9a23;
			font-weight: 600;
		}

		.image-text-block.image-is-right.bgr-heimat-grau .image:before {
			background-image: url('/project/nok/scope/www/pub/img/pfeil-orange-links.svg');
		}

		.image-text-block.image-is-left.bgr-heimat-grau .image:before {
			background-image: url('/project/nok/scope/www/pub/img/pfeil-orange-rechts.svg');
		}

	/* Modifier:blau
	-------------------*/

		.image-text-block.bgr-heimat-blau h2 {
			color: #000000;
		}

		.image-text-block.bgr-heimat-blau .intro {
			color: #FFFFFF;
			font-weight: 600;
		}

		.image-text-block.image-is-right.bgr-heimat-blau .image:before {
			background-image: url('/project/nok/scope/www/pub/img/pfeil-weiss-links.svg');
		}

		.image-text-block.image-is-left.bgr-heimat-blau .image:before {
			background-image: url('/project/nok/scope/www/pub/img/pfeil-weiss-rechts.svg');
		}

/* Schriftzug "Unsere Heimat"
-----------------------------*/

	.deko-logo {
		position: absolute;
		top: 0;
		left: 0;
		transform: translateX(-75%);
		width: 130px;
		height: 1500px;
		z-index: 5;
		background-image: url('/project/nok/scope/www/pub/img/schriftzug-unsere-heimat.svg');
		background-size: 100% auto;
		background-position: top left;
		background-repeat: no-repeat;
		opacity: 0.3;
	}

	@media screen and (max-width: 1100px) {
		.deko-logo {
			display: none;
		}
	}

/* Textintro-Block
-------------------*/

	.einleitung {
		padding: 40px 0;
		background-image: url('/project/nok/scope/www/pub/img/karte-nok.svg');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: top right 10%;
		background-color: #FFFFFF;
	}

		@media screen and (max-width: 1200px) {
			.einleitung {
				background-image: none;
			}
		}

	.einleitung .text {
		padding-right: 30%;
	}

		@media screen and (max-width: 1200px) {
			.einleitung .text {
				padding-right: 0;
			}
		}

/* Veranstaltungen
-------------------*/

	#veranstaltungen {
		position: relative;
		background-color: #62b1c4;
		padding: 40px 0;
		overflow: hidden;
	}

	#veranstaltungen:before {
		content: '';
		display: block;
		height: 400px;
		width: 400px;
		position: absolute;
		left: 30%;
		bottom: -40%;
		background-image: url('/project/nok/scope/www/pub/img/kalender-bgr.svg');
		background-repeat: no-repeat;
		opacity: 0.1;
	}

	/* Überschrift
	---------------*/

		#veranstaltungen h2 strong {
			position: relative;
		}

			#veranstaltungen h2 strong:before {
				content: '';
				position: absolute;
				display: block;
				top: 0;
				right: 0;
				bottom: 0;
				left: 0;
				background-color: #da9a23;
				transform: rotate(-0.5deg);
				z-index: 0;
			}

			#veranstaltungen h2 strong span {
				display: inline-block;
				position: relative;
				z-index: 2;
				color: #FFFFFF;
				padding-left: 10px;
				padding-right: 10px;
			}

		@media screen and (max-width: 800px) {
			#veranstaltungen h2,
			#veranstaltungen h2 * {
				font-size: 20px;
			}
		}

	/* Slider
	----------*/

		.eventslider {
			margin-top: 30px;
		}

		/* Navigationspfeile
		---------------------*/

			.eventslider .owl-nav {
				position: absolute;
				top: 20px;
				width: 100%;
			}

			.eventslider .owl-next,
			.eventslider .owl-prev {
				position: absolute;
				display: block;
				height: 70px;
				width: 70px;
				z-index: 1;
				background-repeat: no-repeat;
				background-size: contain;
				background-position: center center;
			}

			.eventslider .owl-next.disabled,
			.eventslider .owl-prev.disabled {
				opacity: 0.2;
			}

			.eventslider .owl-next span,
			.eventslider .owl-prev span {
				display: none;
			}

			.eventslider .owl-next {
				right: -100px;
				background-image: url('/project/nok/scope/www/pub/img/slider/pfeil-weiss-rechts.svg') !important;
			}

			.eventslider .owl-prev {
				left: -100px;
				background-image: url('/project/nok/scope/www/pub/img/slider/pfeil-weiss-links.svg') !important;
			}

	/* Event
	---------*/

		.event-meta {
			font-size: 18px;
			text-transform: uppercase;
			font-weight: 300;
			opacity: 0.8;
		}

		.event h3 {
			text-transform: uppercase;
			font-size: 35px;
			margin-top: 7px;
		}

			@media screen and (max-width: 800px) {
				.event h3 {
					font-size: 25px;
					margin-bottom: 10px;
				}
			}

		.event .untertitel {
			text-transform: uppercase;
			width: 70%;
			line-height: 22px;
		}

		.event-button {
			display: inline-block;
			position: relative;
			margin-top: 10px;
		}

			.event-button span {
				position: relative;
				color: #FFFFFF;
				z-index: 2;
				padding-left: 10px;
				padding-right: 10px;
				text-transform: uppercase;
			}

		.event-button:before {
			content: '';
			position: absolute;
			display: block;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			background-color: #da9a23;
			transform: rotate(1deg);
			z-index: 0;
		}

/* Slideshow (Startseite)
--------------------------*/

	#slideshow .owl-dots {
		position: absolute;
		bottom: 20px;
		left: 50%;
	}

	#slideshow .owl-dots .owl-dot {
		height: 20px;
		width: 20px;
		border-radius: 50px;
		margin: 0 5px;
		background-color: rgba(255, 255, 255, 0.4);
	}

	#slideshow .owl-dots .owl-dot.active {
		background-color: rgba(255, 255, 255, 1);
	}

	@media screen and (max-width: 800px) {
		#slideshow {
			margin-top: 70px;
		}
	}

/* Eventseite
--------------*/

	.eventpage {
		padding: 40px 0;
	}

	.eventpage-datum {
		display: block;
		font-weight: 600;
	}

	.eventpage-location {
		margin-top: 5px;
	}

	.eventpage-titel {
		font-size: 45px;
		font-weight: 600;
		text-transform: uppercase;
		margin-top: 7px;
	}

	.eventpage-untertitel {
		font-size: 25px;
		font-weight: 600;
		text-transform: uppercase;
		margin-top: -5px;
	}

	.eventpage-inhalt {
		margin-top: 30px;
	}

	.eventpage-btn {
		display: inline-block;
		position: relative;
		margin-top: 30px;
	}

		.eventpage-btn span {
			position: relative;
			color: #FFFFFF;
			z-index: 2;
			padding-left: 10px;
			padding-right: 10px;
			text-transform: uppercase;
		}

	.eventpage-btn:before {
		content: '';
		position: absolute;
		display: block;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #000000;
		transform: rotate(1deg);
		z-index: 0;
	}

/* Impressum
-------------*/

	.view-impressum {
		padding: 40px 0 50px 0;
	}

	.view-impressum h1 {
		font-size: 45px;
		font-weight: 600;
		text-transform: uppercase;
		margin-top: 7px;
		color: #FFFFFF;
	}

	.view-impressum h2 {
		margin-top: 20px;
		font-size: 30px;
		color: #FFFFFF;
		font-weight: 600;
		text-transform: none;
	}

	.view-impressum p {
		color: #FFFFFF;
	}

	.view-impressum p a {
		color: #FFFFFF;
		text-decoration: underline;
	}

	.view-impressum p a:hover {
		color: #000000;
	}

/* mobile-social-media
-----------------------*/

	.mobile-social-media {
		padding: 10px;
		margin-top: 10px;
		border-top: 1px solid rgba(255,255,255,0.3);
	}

	.mobile-social-media:after {
		content: '';
		clear: both;
		display: table;
	}

	.mobile-social-media a {
		float: left;
	}

	.mobile-social-media img {
		height: 20px;
		margin: 0 5px;
	}

/* Dots bei Eventslider
------------------------*/

	#veranstaltungen .owl-dots {
		position: absolute;
		bottom: -20px;
		left: 50%;
		transform: translateX(-50%);
	}

	#veranstaltungen .owl-dots .owl-dot {
		height: 20px;
		width: 20px;
		border-radius: 50px;
		margin: 0 5px;
		background-color: rgba(255, 255, 255, 0.4);
	}

	#veranstaltungen .owl-dots .owl-dot.active {
		background-color: rgba(255, 255, 255, 1);
	}

	@media screen and (max-width: 800px) {
		#veranstaltungen {
			margin-top: 70px;
		}
	}

/* Newsletter-Seite
--------------------*/

	.view-newsletter {
		padding: 50px 0;
		text-align: center;
	}

	.view-newsletter h1 {
		font-size: 45px;
		font-weight: 600;
		text-transform: uppercase;
		margin-top: 7px;
		color: #FFFFFF;
	}

	.view-newsletter * {
		color: #FFFFFF;
	}

	.view-newsletter img {
		height: 75px;
		display: block;
		margin: 40px auto 50px auto
	}


