@charset "UTF-8";

body {
	background-color: #FBFEF9;
	color: #000500;
	font-family: "Arial", Arial, sans-serif;
	font-family: "Verdana", Verdana, sans-serif;
	display: block;
	position: relative;
	padding: 0;
	margin: 0;
	overflow: auto;
	min-width: 100%;
	min-height: 100vh;
}


/* Navigationsleiste oben */
.logo {
	line-height: 5rem;
	width: 5rem;
	height: 5rem;
	position: fixed;
	float: left;
	margin: 1rem 4rem;
	background: url("../pics/logo/Vereinswappen_weiss.svg") no-repeat center;
	cursor: pointer;
}

nav {
	position: fixed;
	top: 0;
	width: 100%;
	line-height: 5rem;
	z-index: 1;
	background-color: #000;
}
nav .menu {
	margin-left: 10rem;
}
nav ul {
	list-style: none;
	background: rgba(0, 0, 0, 0);
	overflow: hidden;
	color: #fff;
	padding: 0;
	text-align: right;
	margin: 0;
	padding-right: 3.3rem;
	transition: 1s;
}
nav.black {
	background: #69A041;
}
nav ul li {
	display: inline-block;
	padding: 1.3rem 1.2rem;;
}
nav ul li a {
	text-decoration: none;
	color: #ffffff;
	font-size: 1.4rem;
}

.menu-icon {
	line-height: 5rem;
	height: 7vh;
	width: 100%;
	background: #000;
	text-align: right;
	box-sizing: border-box;
	padding: 1.25rem 2rem;
	cursor: pointer;
	color: #fff;
	display: none;
}

@media(max-width: 1750px) {

	.logo {
		position: fixed;
		top: 0;
		margin: 0;
		margin-left: 2rem;
		height: 7vh;
	}

	.menu-icon {
		display: block;
		padding: 2vh 2rem;
		line-height: 3vh;
		font-size: 2vh;
	}

	nav ul {
		max-height: 0;
	}
	nav ul li {
		box-sizing: border-box;
		width: 100%;
		padding: 2rem;
		text-align: center;
		line-height: 1rem;
	}

	.showing {
		max-height: 93vh;
		overflow-y: auto;
	}
}
/* Navigationsleiste oben: Ende*/


/* Banner (Titel der Seite) */
img {
	margin-top: 7vh;
	width: 100%;
}
/*Banner: Ende*/


/* Footer */
.footer {
	position: absolute;
	bottom: 0;
	background-color: #323232;
	padding: 0 5%;
	text-align: right;
	width: 90%;
	margin-bottom: -4rem;
}
.footer .container{
	position: relative;
	background-color: #323232;
	padding: 0;
}


.btn-group .button {
	background-color: #ffffff00;
	border: none;
	color: white;
	padding: 1rem;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
	cursor: pointer;
	float: none;
	position: relative;
	border-left: 1px solid #323232;
	border-right: 1px solid #323232;

}
.btn-group .button:not(:last-child) {
	border: none;
}
.btn-group .button:hover {
	background-color: #292929;
	border-left: 1px solid #191919;
	border-right: 1px solid #191919;
}


.btn-group a .button {
	color: #69A041;
}
/* Footer: Ende*/



/* Panel Menue im article */

/*.article_panel {
	display: flex;
	flex-wrap: wrap ;
	justify-content: center;
}*/

.panels
{
	display: flex;
	flex-wrap: wrap ;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
}
.panels .box {
	position: relative;
	width: 24rem;
	padding: 2.5rem;
	background: #ffffff;
	box-shadow: 0 5px 15px rgba(0,0,0,.1);
	border-radius: 4px;
	margin: 1.2rem;
	box-sizing: border-box;
	overflow: hidden;
	text-align: center;
}
.panels .box:before {
	content:'';
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255,255,255,.2);
	z-index: 2;
	pointer-events: none;
}
.icon {
	position: relative;
	width: 5rem;
	height: 5rem;
	color: #ffffff;
	background: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	border-radius: 50%;
	font-size: 40px;
	transition: 1s;
}
.panels .box:nth-child(odd) .icon {
	box-shadow: 0 0 0 0 #69A041;
	background: #69A041;
}
.panels .box:nth-child(odd):hover .icon {
	box-shadow: 0 0 0 25rem #69A041;
	background: #69A041;
}
.panels .box:nth-child(even) .icon {
	box-shadow: 0 0 0 0 #323232;
	background: #323232;
}
.panels .box:nth-child(even):hover .icon {
	box-shadow: 0 0 0 25rem #323232;
	background: #323232;
}
.panels .box .topic {
	position: relative;
	z-index: 1;
	transition: 0.5s;
}
.panels .box:hover .topic {
	color: #ffffff;
}
.panels .box .topic h3 {
	font-size: 2rem;
	margin: 1rem 0;
	padding: 0;
}
.panels .box .topic p {
	margin: 0;
	padding: 0;
	height: 6em;
}
.panels .box .topic a {
	display: block;
	padding: 0.6rem 1.2rem;
	background: #ffffff;
	border-radius: 4px;
	text-decoration: none;
	color: #000000;
	font-weight: 500;
	margin-top: 1.2rem;
	box-shadow: 0 2px 5px rgba(0,0,0,.2);
	font-size: 1rem;
}
.panels .box:nth-child(odd) .topic a:hover {
	background-color: #323232;
	color: #fff;
}
.panels .box:nth-child(even) .topic a:hover {
	background-color: #69A041;
	color: #fff;
}

/* Panel Menue im article: Ende */

/* Ab hier nur noch Seiteninhalt */
.content {

	width: 100%;
	font-size: 1.6rem;
	line-height: 2.5rem;
	z-index: 0;
	position: relative;
	background-color: #FBFEF9;
}

hr {
	width: 50%;
	height: 0.05rem;
	margin: 0 auto;
	background: #69a041;
}
h1
{
	color: gray;
	font-weight: lighter;
}
/*#costum_h1 {
	font-size: 2rem;
	color: #323232;
	text-align: center;
}*/
.article {
	position: relative;
	width: 95%;
	color: #000500;
	margin: 2rem 0;
	padding: 1rem 2.5%;
	text-align: center;


	-moz-border-radius: 0.5rem;
	overflow: auto;
}
.article h2 {
	font-size: 2rem;
	font-weight: bold;
	color: #69a041;
	text-align: center;
}
.article img {
	float: right;
	max-height: 75vh;
	max-width: 33%;
	margin: 2rem 0 2rem 2rem;
	object-fit: contain;
}

a:hover {
	cursor: pointer;
	transform: scale(1.1);
}

a {
	color: #69A041;
	text-decoration: none;
}
b
{
	font-size: 4rem;
}
h4
{
	text-align: center;
}
/*.article_aktuelles {
	padding: 4rem;
}
.row:after {
	content: "";
	display: table;
	clear: both
}
.column-66 {
	float: left;
	width: 60%;
	padding: 1.25rem;
}
.column-33 {
	float: left;
	width: 30%;
	padding: 1.25rem;
}
.article_aktuelles img {
	display: block;
	width: 80%;
	object-fit: contain;
}
.article_aktuelles h2{
	color: #69A041;
}
@media screen and (max-width: 1000px) {
	.column-66,
	.column-33 {
		width: 100%;
		text-align: center;
	}
	img {
		 margin: auto;
	 }
}*/
.contact_btn {
	display: inline-block;
	padding: 0.4rem 0.8rem;
	color: #69a041;
	border: 1px solid #69a041;
	text-decoration: none;
	font-size: 1rem;
	line-height: 120%;
	cursor: pointer;
}

.contact_btn:hover {
	background-color: rgba(255, 255, 255, 0.3);
	color: #323232;
	border: 1px solid #323232;
}
.wrapper {
	text-align: center;
}

.article .slideshow {
	width: 100%;
	height: 25rem;
	max-height: 100vh;
	overflow: hidden;
	margin: 1rem 0;
}

.article .slideshow .slider {
	height: 100%;
	width: 100%;
	display: flex;

}

.article .slideshow .slider .slide {
	height: 100%;
	width: 100%;
	text-align: center;
}

.article .slideshow .slider .slide img {
	float: none;
	height: 100%;
	max-width: 100%;
	margin: 0;
}

.article .slideshow .radios {
	position: sticky;
	display: flex;
	bottom: 0.5rem;
	width: 100%;
    justify-content: center;
}

.article .slideshow .radios .radio {
	position: relative;
	width: 2rem;
	height: 0.5rem;
	border: 0.05rem solid rgba(0,0,0,0.5);
	background-color: rgba(0,0,0,0);
	margin: 0 0.5rem;
	cursor: pointer;
}

.article .slideshow .radios .radio.selected{
	background-color: rgba(105,160,65,.8);
}

.article .slideshow .radios .radio:hover {
	background-color: rgba(105,160,65,.8);
}

td {
	padding: 0.5rem;
}

::-webkit-scrollbar {
	width: 0.75rem;
}
::-webkit-scrollbar-thumb {
	background: #69A041;
}

::-webkit-scrollbar-track {
	background: #323232;
}
