/* Colors

	Blau		#13377D				19, 55, 125
	Orange		##D9652F			217, 101, 47
	Grün		#9B9537				155, 149, 55
	Gelb		#F1A738
	Beige		#FDF2E4

*/


/* Base */

:root {
	--primary-bg-blue		: #13377D;
	--primary-bg-blue-rgb	: 19, 55, 125;
	--primary-bg-orange		: #D9652F;
	--primary-bg-orange-rgb	: 217, 101, 47;
	--primary-bg-green		: #9B9537;
	--primary-bg-green-rgb	: 155, 149, 55;
	--primary-bg-yellow		: #F1A738;
	--primary-bg-beige		: #FDF2E4;
}

body {
	overflow-x			: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family			: 'Rubik', sans-serif;
	font-size			: 22px;
	background-color	: var(--primary-bg-beige);
	color				: white;
}

::-moz-selection {
    background			: var(--primary-bg-yellow);
    color				: white;
    text-shadow			: none !important;
}

::selection {
    background			: var(--primary-bg-yellow);
    color				: white;
    text-shadow			: none !important;
}

/* COOKIE */

.consent_manager-background {
	background-color: rgba(255,255,255,0.2) !important;
	color			: black;
}

p.consent_manager-headline {
	color			: #95a24b !important;
}

a.consent_manager-accept-all {
	background-color: #864e35 !important;
	border-color	: #864e35 !important;
	color			: white;
}

#consent_manager-toggle-details {
	color			: #864e35;
}

.consent_manager-show-details .icon-info-circled::before {
	background-color: white !important;
}

.consent_manager-cookie a {
	color			: #864e35;
}

a#consent_manager-toggle-details {
	color			: white;
}

.consent_manager-sitelinks a {
	color			: #95a24b !important;
}

.consent_manager-accept-none {
	background-color: #95a24b !important;
	border-color	: #95a24b !important;
}

.consent_manager-save-selection {
	background-color: #864e35 !important;
	border-color	: #864e35 !important;
}

.consent_manager-accept-all {
	background-color: #864e35 !important;
	border-color	: #864e35 !important;
}

.text-dark, .text-dark label {
	color			: black;
}

/* HEADER */


header {
	background-color: white;
	height			: 150px;
	position		: fixed;
	width			: 100%;
	color			: white;
	z-index			: 999;
}

header .logo {
	margin-top		: 30px;
	height			: 50px;
}

header .claim {
	padding-top		: 10px;
	padding-left	: 5px;
	font-size		: 22px;
	color			: var(--primary-bg-yellow);
}

.nav-non-mobile {
	display			: flex;
	float			: right;
	padding-top		: 0px;
}

.nav-non-mobile ul {
	padding-left	: 0;
	padding-top		: 75px;
}

.nav-non-mobile li {
	display			: inline;
	float			: left;
	padding			: 6px 10px 7px 10px;
}

.nav-non-mobile li a {
	padding			: 15px 0px 5px 0px;
	text-align		: center;
	font-size		: 16px;
	font-weight		: 700;
	color			: black;
	text-decoration	: none;
	transition		: ease all 0.2s;
	padding			: 10px;
}

.nav-non-mobile li a:hover, ul li.rex-current a.rex-current {
	color			: white;
	text-align		: center;
	background-color: var(--primary-bg-blue);
	border-radius	: 5px;
}

.nav-non-mobile ul li ul {
	position		: absolute;
	float			: none;
	visibility		: hidden;
	opacity			: 0;
	background		: #f2e5c5;
	margin-top		: 10px;
	margin-left		: 15px;
	padding-top		: 5px;
	padding-bottom	: 5px;
	z-index			: 2;
	width			: 200px;
	transition		: ease all 0.2s;
}

.nav-non-mobile ul li ul li {
	float			: none;
	margin			: 0 !important;
	padding			: 15px 15px;
	height			: 30px;
}

.nav-non-mobile ul li ul li a {
	color			: white;
	float			: left;
	width			: 100%;
	height			: auto !important;
	padding			: 10px 15px;
	text-align		: left;
}

.nav-non-mobile ul li:hover ul, .nav-non-mobile ul li a:hover ul {
	visibility		: visible;
	opacity			: 1;
}

.nav-non-mobile ul li ul li a:hover, .nav-non-mobile ul li ul li a.rex-current  {
	color			: white;
	filter			: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9));
}


/* Mobile NAV */

#myNavbar {
	border-bottom	: 3px solid #606060;
}

.nav-mobile {
	display			: none;
}

.nav-mobile ul {
	list-style-type	: none;
	padding-left	: 0;
	padding-top		: 20px;
}

.nav-mobile ul li {
	float			: none;
	display			: inline-table;
	width			: 100%;
	text-align		: left;
	padding			: 0;
}

.nav-mobile ul li a, .nav-mobile ul li.has-sub a {
	font-size		: 20px;
	color			: white;
	font-weight		: 400;
	text-decoration	: none;
	background		: none;
	padding			: 5px 0px 5px 10px;
	margin			: 0;
	display			: block;
	transition		: ease all 0.2s;
}

.nav-mobile ul li a:hover, .nav-mobile ul li.has-sub a:hover {
	color			: #c26148;
}

.nav-mobile ul li ul {
	padding-left	: 20px;
}

.nav-mobile ul.nav.navbar-nav li.rex-active a {
	font-weight		: 700;
}

.nav-mobile ul.nav.navbar-nav li a, .nav-mobile ul.nav.navbar-nav li.rex-active ul li a {
	font-weight		: 400;
}

#dropdown {
	display			: none;
	position		: absolute;
	top				: -10px;
	right			: -5px;
	z-index			: 9900;
}

.dropdown-ff {
	position		: relative;
	top				: 15px;
	z-index			: 10;
}

#menu {
	position		: absolute;
	left			: 0px;
	width			: 100%;
	top				: 100px;
	padding			: 20px 25px;
	background-color: rgba(242, 229, 197, 0.95);
	color			: white;
	z-index			: 9999;
	transform		: scaleY(0);
	transform-origin: top;
	transition		: transform ease 0.3s;
}

#menu.visible {
	transform		: scaleY(1);
}

#menu ul {
	padding-left	: 0;
	margin-bottom	: 0;
	list-style-type	: none;
}

#menu ul li {
	padding-top		: 5px;
	padding-bottom	: 5px;
}

#menu ul li:nth-child(3) {
	display			: block;
	color: black;
}

#menu ul li a {
	color			: black;
	font-size		: 18px;
	text-decoration	: none;
	transition		: ease all 0.2s;
}

#menu ul li a:hover {
	color			: white;
	text-decoration	: none;
}

#menu ul li a.rex-current {
	color			: #864e35;
	border-bottom	: 0;
	text-decoration	: none;
}

#menu ul li ul {
	padding-top		: 0px;
	padding-bottom	: 0px;
	padding-left	: 15px;
}

/* Navigation */

.nav-pills > li.current > a, .nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
	background-color: #814a97;
	color: #000;
	text-shadow: 1px 1px 0px #fff;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	border-bottom: 1px solid #8d8d8d;
}

.nav-pills > li > a {
	border-radius: 0;
	border-bottom: 1px solid #444;
	border-top: 1px solid #8d8d8d;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
}

.nav-pills > li > a:hover {
	background-color: #814a97;
	color: #000;
	text-shadow: 1px 1px 0px #fff;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	border-bottom: 1px solid #8d8d8d;
}

.nav-stacked > li + li {
	margin: 0;
}

.suche{
	margin: 0 15px;
}

.navbar-toggle {
	position		: absolute;
	right			: 9px;
}

.navbar-toggle {
	position		: absolute;
	top				: 30px;
	right			: 20px;
	width			: 50px;
	background-color: transparent;
	height			: 45px;
	border			: 0;
	margin-top		: 8px;
	padding-top		: 6px;
	border-radius	: 4px;
	z-index			: 9;
	transition		: ease all 0.2s;
}

.navbar-toggle:hover {
	color			: rgb(149, 162, 75);
	background-color: transparent;
}

.navbar-toggle .icon-bar {
	display			: block;
	background-color: rgb(242, 229, 197);
	width			: 30px;
	height			: 3px;
	border-radius	: 1px;
	margin-left		: 6px;
	margin-bottom	: 6px;
	transition		: ease all 0.2s;
}

.navbar-toggle:hover .icon-bar {
	background-color: rgb(149, 162, 75) !important;
}

.navbar-collapse {
	border: 0;
	box-shadow: none;
}

.logo {
	height			: auto;
}

.centered {
	margin: 0 auto;
	display: block;
	text-align: center;
}

/* Content */

.img-fluid {
	width			: 100%;
}

#backgroundimage {
	min-height		: 100%;
	height			: 100vh;
}

.pad-big { padding-top: 50px; padding-bottom: 50px; }
.pad-top, .pad-big-top { padding-top: 50px; }
.pad-bottom, .pad-big-bottom { padding-bottom: 50px; }

.pad-mid { padding-top: 25px; padding-bottom: 25px; }
.pad-mid-top { padding-top: 25px; }
.pad-mid-bottom { padding-bottom: 25px; }

.pad-small { padding-top: 10px; padding-bottom: 10px; }
.pad-small-top { padding-top: 10px; }
.pad-small-bottom { padding-bottom: 10px; }

.marg-big { margin-top: 50px; margin-bottom: 50px; }
.marg-top, .marg-big-top { margin-top: 50px; }
.marg-bottom, .marg-big-bottom { margin-bottom: 50px; }

.b-lazy {
	opacity				: 0;
	transition			: all 500ms;
}

.b-loaded {
	opacity				:1;
}

.video, .embed-responsive-item {
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 200ms ease-out;
    cursor: pointer;
}

.video .play {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'><path d='M256 8C119 8 8 119 8 256s111 249 249 249 249-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z' style='fill:rgb(191, 22, 70);fill-rule:nonzero;' /></svg>") no-repeat center center;
    background-size: 164px 164px;
    position: absolute;
	top: 0;
	left: 0;
    height: 100%;
    width: 100%;
    opacity: .5;
    filter: alpha(opacity=80);
    transition: all 0.2s ease-out;
}

.video .play:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

.btn .fas {
	font-size		: 20px;
}

.btn .fas:hover {
	color			: white;
}

.headline-left h2 {
	text-align		: left;
}

.headline-left h3 {
	text-align		: left;
}

a img { border: none; }

ol li {
	margin-bottom:15px;
}

table h4 {
	margin-top	: 0;
}

table td {
	padding			: 5px;
}

h1 {
	font-family		: 'Slabo 13px', serif;
	font-size		: 50px;
	font-weight		: 700;
	padding-top		: 5px;
	padding-bottom	: 10px;
	margin-bottom	: 0;
}

h2 {
	font-family		: 'Slabo 13px', serif;
	font-size		: 35px;
	color			: #FBB03B;
	font-weight		: 700;
	padding-bottom	: 10px;
	margin-bottom	: 0;
}

h3 {
	font-family		: 'Slabo 13px', serif;
	font-size		: 20px;
	color			: #293815;
	font-weight		: 700;
	padding-bottom	: 10px;
	margin-bottom	: 0;
}

main a { color: rgb(251, 176, 59); text-decoration: none; border-bottom: 1px dotted silver; transition: ease all 0.2s; }
main a:hover { color: rgba(251, 176, 59, 0.5); text-decoration: none; border-bottom: 1px solid silver; }

.container-bg-white h1 a, .container-bg-white h2 a, .container-bg-white h3 a, .container-bg-white h4 a, .container-bg-white h5 a, .container-bg-white h6 a {
	text-decoration	: none;
	border-bottom	: 1px dotted silver;
}

main {
	padding-top		: 150px;
	padding-bottom	: 100px;
}

main p {
	color			: var(--primary-bg-blue);
	font-size		: 22px;
	word-wrap		: break-word;
	padding-bottom	: 20px;
	margin-bottom	: 0;
	line-height		: 150%;
}

main .btn-primary, main a.btn-primary {
	background-color: var(--primary-bg-blue);
	color			: #ffffff;
	border			: 2px solid var(--primary-bg-blue);
	font-size		: 20px;
	padding			: 10px 20px;
	transition		: ease all 0.2s;
}

main .btn-primary:hover, main a.btn-primary:hover {
	background-color: rgba(var(--primary-bg-blue-rgb), 0.75);
	border			: 2px solid var(--primary-bg-blue);
	color			: white;
}

main .btn-secondary, main a.btn-secondary {
	background-color: var(--primary-bg-orange);
	color			: #ffffff;
	border			: 2px solid var(--primary-bg-orange);
	font-size		: 20px;
	padding			: 10px 20px;
	transition		: ease all 0.2s;
}

main .btn-secondary:hover, main a.btn-secondary:hover {
	background-color: rgba(var(--primary-bg-orange-rgb), 0.75);
	border			: 2px solid var(--primary-bg-orange);
	color			: white;
}

main .btn-third, main a.btn-third {
	background-color: var(--primary-bg-green);
	color			: #ffffff;
	border			: 2px solid var(--primary-bg-green);
	font-size		: 20px;
	padding			: 10px 20px;
	transition		: ease all 0.2s;
}

main .btn-third:hover, main a.btn-third:hover {
	background-color: rgba(var(--primary-bg-green-rgb), 0.75);
	border			: 2px solid var(--primary-bg-green);
	color			: white;
}

main .hero {
	padding-top		: 100px;
	padding-bottom	: 100px;
	background		: linear-gradient(0deg,rgb(0 0 0 / .3) 0%,rgb(0 0 0 / 0.4) 100%), url('../../media/familien-im-park.webp');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

main .hero h1, .hero h2, .hero p {
	color			: white;
}

main .subhero {
	padding-bottom	: 60px;
	clip-path		: polygon(0 3vw, 100% 0, 0 0, 0 100%);
}

main .blue { min-height: 100px; background-color: var(--primary-bg-blue); }
main .orange { min-height: 50px; background-color: var(--primary-bg-orange); }
main .green { min-height: 50px; background-color: var(--primary-bg-green); }
main .yellow { min-height: 50px; background-color: var(--primary-bg-yellow); }
main .beige { min-height: 50px; background-color: var(--primary-bg-beige); }

#content .pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	list-style: none;
}
  
#content .page-link {
	position: relative;
	display: block;
	padding: 0.75rem 1rem;
	margin-left: -1px;
	line-height: 1;
	color: #814a97;
	background-color: #ffffff;
	border	: 1px solid silver !important;
}

#content .page-link:hover {
	background-color: #814a97 !important;
	color: #ffffff !important;
	text-decoration: none;
}

#content ul.pagination li::before {
	content			: "";
	list-style-type	: none;
}

#content .active a.page-link {
	background-color: #814a97 !important;
	color: #ffffff !important;
}

.page-link:focus {
	z-index: 2;
	outline: 0;
	-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 211, 0, 0.25);
			box-shadow: 0 0 0 0.2rem rgba(255, 211, 0, 0.25);
}

#content .page-link:not(:disabled):not(.disabled) {
	cursor: pointer;
}
  

.no-pad p {
	padding-bottom	: 0 !important;
}

#content .alert {
	margin			: 0 auto 30px auto;
	max-width		: 780px;
}

#content .alert h3 {
	margin-top		: 0;
}

#content .alert ul li::before {
	list-style-type	: none;
	content			: "";
	background-color: transparent;
}

#co1ntent img {
	float			: left;
}

#content li { font-weight: 300; line-height: 26px; position: relative; margin-bottom: 10px; }
#content ul { padding-left : 15px; }

#content .picturebox {
	width			: 400px;
	height			: 400px;
	float			: right;
	margin-top		: -140px;
	margin-bottom	: 20px;
	background-size	: cover;
	background-position: top center;
}

#content blockquote {
	color			: #814a97;
	padding			: 0;
	margin			: 20px 0;
	border-left		: 0;
	font-size		: 30px;
}

.projekte {
}

.projekt {
	min-height		: 200px;
	background-position: center top;
	background-size	: 100% auto;
	background-repeat: no-repeat;
	cursor			: pointer;
	overflow		: hidden;
	margin-bottom	: 30px;
	position		: relative;
}

.projekt_plus {
	color			: #814a97;
	width			: 100%;
	height			: 100%;
	text-align		: center;
	background-color:rgba(222, 197, 12, 0.95);
	opacity			: 0;
	transition		: opacity ease 0.2s;
	position		: absolute;
	top				: 0px;
	left			: 0px;
}

.projekt .projekt_plus h3 {
	position		: absolute;
	bottom			: -50px;
	width			: 100%;
	transition		: bottom ease 0.2s;
}

.projekt .projekt_plus .fa {
	color			: rgba(255, 255, 255, 1);
	font-size		: 50px;
	opacity			: 0;
	width			: 100%;
	margin-top		: 70px;
	transition		: opacity ease 0.5s;
}

.projekt:hover .projekt_plus {
	opacity			: 1.0;
}

.projekt:hover .projekt_plus h3 {
	bottom			: 10px;
}

.projekt:hover .projekt_plus .fa {
	opacity			: 1.0;
}


@media only screen and (max-width: 990px) {
	#content .picturebox { width: 100%; margin-top : 0px; float: left; }
}

.carousel {
	width			: 100%;
	overflow		: hidden;
}

.carousel li {
	margin-left	: 0px;
}

.carousel img {
	width			: 100%;
	height			: auto;
}

.carousel-caption {
	background-color: rgba(240, 183, 54, 0.3);
	position		: absolute;
	width			: 600px;
	height			: 450px;
	top				: 15%;
	margin-left		: 25%;
	padding			: 25px;
	text-shadow		: none;
}

.carousel-caption h4 {
	font-weight		: 700;
	line-height		: 125%;
	font-size		: 30px;
	color			: white;
	text-shadow		: 0 0 5px rgba(0, 0, 0, 0.5);
}

.carousel-caption h5 {
	font-weight		: 700;
	line-height		: 125%;
	font-size		: 20px;
	color			: white;
	text-shadow		: 0 0 5px rgba(0, 0, 0, 0.5);
}

.carousel-caption a {
	color			: white;
	text-decoration	: none;
}

.carousel-caption img {
	filter			: drop-shadow(0px 25px 5px rgba(0,0,0,0.3));
	max-width		: 200px !important;
}

.carousel-indicators {
	bottom			: 0px !important;
}

ol.carousel-indicators li {
	margin-right	: 10px !important;
}

.imagenavi {
	position		: relative;
	overflow		: hidden;
	min-height		: 400px;
}

.imagenavi_title {
	position		: absolute;
	top				: 0;
	left			: 0;
	background		: rgba(41,128,185,0.9);
	margin			: 0 15px 0 0;
	padding			: 10px;
	width			: 100%;
	overflow		: hidden;
	z-index			: 9;
}

.imagenavi_title h3 {
	font-size		: 24px;
	line-height		: 125%;
	font-weight		: 300;
	color			: white;
	margin			: 0;
}

.imagenavi_description {
	font-size		: 16px;
	line-height		: 125%;
	font-weight		: 300;
	padding-top		: 20px;
	padding-bottom	: 20px;
}

.imagenavi_image {
	overflow		: hidden;
}

.imagenavi_image img {
	transition: transform 0.5s;
}

.imagenavi_image img:hover {
	transform: scale(1.2, 1.2);
}

.full-height {
	height			: calc(100vh - 110px);
}

@media only screen and (max-width: 990px) {
	.full-height { height : 100%; }
}

.thumbnail {
	background-color: transparent;
	border			: 0;
	padding			: 10px 5px !important;
	margin			: 0 !important;
	border-radius	: 0;
}

.galerie .col-md-4 {
	margin			: 0 !important;
	padding			: 0 !important;
}

.thumbnail_title {
	text-align		: center;
}


.lity { background-color: rgba(0, 0, 0, 0.7) !important; }
.lity .lity-container { max-width: 1300px !important; max-height: 100% !important; height: 100% !important; }
.lity_full .lity-container { max-width: 95% !important; max-height: 100% !important; height: 100% !important; }
.lity-iframe-container { background-color: white; height: 100% !important; }
.lity-content { height: 100% !important; }
.lity-close {
	background-color	: #814a97;
	font-size			: 40px;
	height				: 55px;
	width				: 55px;
	transition			: ease all 0.2s;
}

.lity-close:hover {
	background-color	: #814a97;
	font-size			: 50px;
}

@media only screen and (max-width: 990px) {
	.galerie img { margin-bottom: 10px; }
}

td {
	color					: black;
	padding					: 0 0 20px 0;
	vertical-align			: bottom;
}

td .fa-running {
	font-size				: 20px;
	margin-right			: 10px;
}

.table-red table {
	margin-left				: auto;
	margin-right			: auto;
	width					: 85% !important;
	border					: 2px solid #ddd;
}

.table-red table thead th {
	background-color		: #814a97;
	color					: white;
}

.table-red table tbody tr {
	background-color		: white;
}

.table-blue table tr {
	background-color		: #4379b4;
}

.table-grey table tr {
	background-color		: #9b9fa3;;
}

.hidden_text {
	padding-top: 25px;
}

.main ul {
	padding-bottom: 15px;
	padding-left: 27px;
	margin: 10px 0 10px 0;
}

.main ul li {
	position: relative;
	margin-bottom: 10px;
	list-style-type: none;
}

.main ul li::before {
    position: relative;
    left: -18px;
    top: 12px;
    content: '\0020';
    background-color: #814a97;
    border-radius: 2px;
    display: block;
    width: 15px;
    height: 2px;
    line-height: inherit;
    margin-left: -10px;
}

.produktbild img {
	display: inline;
	margin: 10px 0;
}


.cat_cloud {
	text-align: center;
}


/* Suche */

.single_result {
	margin-bottom: 25px;
	border-top: 1px solid silver;
	padding-top: 15px;
}


.video-button .fa {
	position		: absolute;
	top				: 40%;
	text-align		: center;
	width			: 100%;
	font-size		: 75px;
	color			: white;
	padding			: 0;
	margin			: 0 -15px;
	transition		: color 0.3s;
}

.video-button .fa:hover {
	color			: rgba(255,255,255,0.6);
}

.form-control:focus {
    border-color: #814a97;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px #814a97,0 0 8px #814a97;
    box-shadow: inset 0 1px 1px #814a97,0 0 8px #814a97;
}

label {
	color: white;
}

#yform-formular-field-73 {
	min-height: 50px;
}

.yform .form-captcha a.btn {
	height: 50px;
	padding-top: 15px;
	color: black;
}

.yform p.help-block {
	padding-bottom: 0 !important;
}

#yform-deskformular-fixdesk_2, #yform-deskformular-fixdesk_3, #yform-deskformular-flexdesk_2, #yform-deskformular-tagesdesk_2, #yform-virtuellesformular-virtuell_2 {
	padding-left	: 25px;
}

.scrollup {
    position        : fixed;
	width			: 50px;
	text-align		: center;
    bottom          : 30px;
    right			: 30px;
	background-color: rgba(41, 56, 21, 0.95);
    padding         : 10px;
	z-index			: 999;
    transition      : background-color ease-in-out 0.2s;
}

.scrollup i {
    color           : #f2e5c5;
    font-size       : 18px;
}

.scrollup:hover {
    background-color: rgba(41, 56, 21, 0.5);
    cursor          : pointer;
}
.scrollup:hover i {
    transform       : translateY(-3px);
}


/* Footer */

footer {
	position		: relative;
	z-index			: 9;
	bottom			: 0;
	width			: 100%;
	background-color: var(--primary-bg-yellow);
	font-size		: 18px;
	color			: #293815;
	height			: 180px;
	padding			: 25px 0 0 0;
	margin			: 0;
	text-align		: center;
}

footer address {
	font-size		: 18px;
}

footer a {
	font-size		: 18px;
	color			: #293815;
	text-decoration	: none;
	transition		: ease all 0.2s;
}

footer a:hover, footer a.rex-current {
	color			: #D13535;
	text-decoration	: none;
}

footer h3 {
	font-size		: 24px;
	color			: white;
	padding			: 10px 0 5px 0;
	margin			: 0;
}

footer img {
	height			: 120px;
	padding-top		: 30px;
}

.footer_sponsoren {
	position		: absolute;
	display			: flex;
	height			: 0px;
	width			: 100%;
	bottom			: 45px;
	background-color: white;
	
}

.subfooter {
	position		: absolute;
	display			: flex;
	height			: 45px;
	width			: 100%;
	bottom			: 0;
	background-color: var(--primary-bg-blue);
	padding			: 10px 0;
	color			: white;
	font-size		: 16px;
}

.subfooter a {
	color			: white;
	font-size		: 16px;
	text-decoration	: none;
	padding-left	: 15px;
	transition		: color 0.2s;
}

.subfooter a:hover, .subfooter a.rex-current {
	color			: var(--primary-bg-yellow);
}

.subfooter i {
	font-size		: 20px;
}

.social-links {
	margin			: 10px 0 20px 0;
}

.social-links a {
	font-size: 36px;
	margin: 10px;
	border-bottom: 0px !important;
	opacity: .5;
	color: #fff;
}

.social-links a:hover {
	background-color: transparent;
	color: #fff;
	opacity: 1;
	text-shadow: 0 0 15px #FFF;
}

@media only screen and (max-width: 1280px) {
	p.title { font-size: 20px ;}
	.nav-non-mobile li {
		padding			: 0 30px 10px 0px;
	}
	.nav-non-mobile li a {
		font-size		: 14px;
	}
}

@media only screen and (max-width: 990px) {
	header { height	: 100px; }
	header .logo { height	: 30px; margin-top: 20px; }
	header .claim { font-size: 20px; }
	#content { padding-top : 100px; }
	.navbar { margin: 0; padding: 0; }
	.nav-non-mobile { display: none;}
	.nav-mobile { display: block;}
	#dropdown { display : block; }
	span#logo_mobil img { height: 100px; padding-top: 0px; }
	.nav-non-mobile li a { font-size: 14px; }
	.carousel-caption h5 { display: none; }
	footer { text-align: center; height: 200px; }
	.subfooter { height: 70px; }
	h1 {
		font-size		: 25px;
		font-weight		: 700;
		padding-top		: 5px;
		padding-bottom	: 5px;
	}
	h2 { font-size		: 22px; }
	h3 { font-size		: 18px; }
	#title { position: absolute; margin-top: 25px; }
	#title a { color	: white; text-decoration: none; font-size: 24px; text-transform: uppercase; text-align: center; padding-left: 10px; }
}

@media only screen and (max-width: 768px) {
	.topheader, #logo { display: none; }
	.nav-non-mobile { display: none; }
	main {padding-top : 20px; }
	main .subhero { clip-path : polygon(0 5vw, 100% 0, 0 0, 0 100%); }
	#title { margin-top: 40px; }
	#title a { font-size: 18px;}
}
