/* //////////////////////////////////// ALLGEMEIN //////////////////////////////////// */
html {
	box-sizing: border-box;
	background-color: #FAF9F6;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body{
	font-family: "calibri", sans-serif;
	color: #000;
	margin: 0px;
	line-height: 1.6;
	font-size: 1.25rem;
	scroll-behavior: smooth;
}
h1 {
	font-family: "alana", sans-serif;
	font-size: 5rem;
	margin: 0 auto 10px;	
	line-height: 1.2;
	font-weight: 800;
}
h2 {
	font-family: "alfabet", sans-serif;
	font-size: 2rem;
	text-transform: uppercase;
	margin: 0 auto 10px;	
	line-height: 1.2;
	font-weight: 800;
}
h3, h4, h5, h6 {
	font-family: "alfabet", sans-serif;
	font-size: 1.2rem;
	color: #d9e8d1;
	text-transform: none;
	margin: 0 auto 20px;	
	line-height: 1.2;
	font-weight: 800;
}
div p{
	margin: 0px 0px 15px 0px;
}
div p:last-child, p:last-child{
	margin: 0 auto;
}
img, svg, video{
	max-width: 100%;
	height:auto;
}
a{
	color: #008b31;
	text-decoration: none;
}
a:active, a:hover {
	color: #d9e8d1;
}
ul{
	padding-left: 20px;
	margin: 0 auto 15px;
}
.textcenter{
	text-align: center;
}
.headertitel{
	background-image:url('https://volksmusik-wettbewerb.it/wp-content/themes/effekt/images/instrumente.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 50%;
	background-color: #008029;
	padding: 110px 20px;
}
/* //////////////////////////////////// CONTENT //////////////////////////////////// */
.w1280{
	max-width: 1280px;
	margin: 0 auto;
	position:relative;
	padding: 0px 40px;
}
.w960{
	max-width:960px;
	margin:0 auto;
	position:relative;
}
.w750{
	max-width:750px;
	margin:0 auto;
	position:relative;
}
.margin_oben{
	margin-top: 100px;
}
.margin_unten{
	margin-bottom: 100px;
}
.fullwidth{
	width:100%;
	background-repeat:no-repeat;
	background-size:cover;
	background-position: center;
	position: relative;
}

/* //////////////////////////////////// Header //////////////////////////////////// */
.header{
	background-color: #ECECEC;
	padding: 30px 0;
}
.header .w1280{
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}
.header_logo{
	display: block;
	z-index: 1;
}

/* //////////////////////////////////// ANMELDESEITE //////////////////////////////////// */
.block-wrapper {
    width: 100%;
    padding: 60px 20px;
}
.inner {
    max-width: 750px;
    margin: 0 auto;
}
.w1280 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.bg-green { background: #d9e8d1; }
.bg-grey { background: #f0f0f0; }
h1 {
    margin: 0;
    color: #ffdd00;
}
.headertitel h3{
	color:#fff!important;
}
h3 {
    margin-top: 0;
    font-size: 22px;
    color: #007328;
}
.content-text {
    margin: 30px 0;
    font-size: 18px;
    line-height: 1.6;
}
.btn-programmheft {
    display: inline-block;
    background: #007328;
    color: white;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}
.btn-programmheft:hover {
    background: #005f22;
}
.center {
    text-align: center;
}
h2 {
    color: #007328;
    margin-top: 40px;
}

/* Logo Header Block */
.logo-header-wrapper {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
}
.logo-header-wrapper img {
    max-width: 280px;
    height: auto;
}

/* Footer */
.footer-wrapper {
    padding: 60px 20px 30px 20px;
    background: #ffffff;
}
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-col {
    flex: 1 1 260px;
    font-size: 14px;
    line-height: 1.6;
}
.footer-col h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #007328;
}
.footer-col p {
    margin: 0 0 4px;
}
.footer-links {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 13px;
}
.footer-links a {
    text-decoration: none;
    color: #007328;
}
.footer-links a:hover {
    text-decoration: underline;
}

/* Logos Footer */
.footer-logos-wrapper {
    padding: 0 20px 40px 20px;
    background: #ffffff;
}
.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.footer-logos a,
.footer-logos span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-logos img {
    height: 60px; /* alle dieselbe Höhe */
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
    }

    .logo-header-wrapper img {
        max-width: 220px;
    }
}


/* //////////////////////////////////// CLEARFIX do not group these rules //////////////////////////////////// */
.clearfix:before,
.clearfix:after {
	content:"";
	display:table;
}
.clearfix:after {
	clear:both;
}
.clearfix {
	zoom:1; /* For IE 6/7 (trigger hasLayout) */
}