*{
    margin: 0;
    padding: 0;
    font-family: 'Arial';
    scroll-behavior: smooth;
	text-decoration: none;
	font-weight: normal;
}

.row{
    display: flex;
    justify-content: space-between;
	max-width: 1200px;
}
.row-start{
    display: flex;
    justify-content: space-between;
	max-width: 1200px;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

p{
	color: #000;
    font-size: 25px;
    font-weight: 300;
    line-height: 22px;
    
}

a.anchor {
    display: block;
    position: relative;
    top: -83px;
    visibility: hidden;
}

/*------ header ------*/

.main-wrapper img{
    width: 296px;
    display: block;
}
.main-wrapper{
	width: 100%;
	margin: auto;
	background: #fff;
	position: fixed;
    top: 0;
    left: 0;
	box-shadow: 0 15px 10px -15px #ddd;
	z-index: 10;
}
.main-wrapper a{
    color: #000;
    text-decoration: none;

}
.main-wrapper ul li{
    list-style-type: none;
	
}
.navbar{
    background: #fff;
    padding: 0 1rem;
    width: 90%;
    display: flex;
    flex-direction: column;
	max-width: 1200px;
	margin: auto;
}
.navbar-brand img{
    max-width: 90px;
   padding: 10px;
}
.navbar-toggler{
    display: block;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.4s ease;
	color: #000;
}

.navbar-collapse{
    display: none;
}
.navbar-nav > li > a{
    font-size: 20px;
    font-weight: normal;
    display: block;
    border-bottom: 1px solid #ddd;
    border-radius: 1px;
    position: relative;
	padding: 10px;
}

.navbar ul li:last-child {
    padding-bottom: 30px;
    
}
.navbar ul li:first-child {
    padding-top: 30px;
    
}
.drop-icon{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.brand-and-icon{
    display: flex;
    justify-content: space-between;
}

@media(min-width: 900px){
    .navbar{
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        position: relative;
		margin: auto;
    }
	.navbar-collapse{
    	overflow-y: scroll;
		display: none;
		height: auto;
	}
    .navbar-toggler{
        display: none;
    }
    .brand-and-icon{
        flex: 0 0 0;
        border-bottom: none;
        padding: 0;
    }
    .navbar-collapse{
        display: block!important;
        overflow-y: hidden;
        flex: 1 auto;
    }
    .navbar-nav{
        display: flex;
        align-items: center;
        justify-content: center;
		float: right;
    }
    .navbar-nav > li > a{
        border-bottom: none;
        margin-left: 0.4rem;
        padding: 1.7rem 0 1.7rem 1.8rem;
        font-size: 20px;
    }
	.drop-icon{
    	font-size: 16px;
	}
	.navbar ul li:last-child {
    	padding: 0;
	}
	.navbar ul li:first-child {
    	padding: 0; 
	}
}

/*------ header-slideshow ------*/

.slider, .slider .imgs {
	height: 600px;
	position: relative;
	margin-top: 83px;
}

.slider .imgs {
	display: flex;
	overflow: hidden;
}

.slider .img {
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: absolute;
	left: 100%;
	animation: .6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s left;
	animation-fill-mode: forwards;
	background-size: cover !important;
	background-position: 50% !important;
}

.slider .img:nth-of-type(1) { background: url("images/bild1.jpg"); }
.slider .img:nth-of-type(2) { background: url("images/bild2.jpg"); }
.slider .img:nth-of-type(3) { background: url("images/bild3.jpg"); }

.slider .img span {
	padding: 7px 20px;
	background: rgba(0, 0, 0, .8);
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	color: #f0f0f0;
	font-size: 14px;
	font-family: sans-serif;
}

.dots {
	position: absolute;
	bottom: 18px;
	left: 0;
	display: flex;
	justify-content: center;
	width: 100%;
}

.dot {
	width: 10px;
	height: 10px;
	background: #ddd;
	border-radius: 50%;
	margin: 0 3px;
	cursor: pointer;
}

.active-dot {
	background: #fff;
	cursor: default;
}

@keyframes leftNext {
	from { left: 100%; }
	to { left: 0; }
}

@keyframes leftCurr {
	from { left: 0; }
	to { left: -100%; }
}

@keyframes rightNext {
	from { left: -100%; }
	to { left: 0; }
}

@keyframes rightCurr {
	from { left: 0; }
	to { left: 100%; }
}

@media(max-width: 1000px){
	.slider, .slider .imgs {
		height: 400px;
	}
}
@media(max-width: 600px){
	.slider, .slider .imgs {
		height: 280px;
	}
}

/*------ button ------*/

#toTop {
    display: none; 
    position: fixed; 
    bottom: 20px;
    right: 30px;
    z-index: 99; 
    border: 1px #1a4f76;  
    background-color: #1a4f76;
    color: #fff; 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 50%; 
    font-size: 18px;
}
#toTop:hover {
    border: 1px #2481c5;
    background:#2481c5;
    transition: 1s;
}
.background{
    background: #deecf6;
}

.btn{
    text-decoration:none;
    color: #fff;
    border: 1px solid #2481c5;
    padding: 10px 20px;
    font-size: 16px;
    background: #2481c5;
    cursor: pointer;
    text-align: center;
}

.btn:hover{
    color: #2481c5;
    border: 1px solid #2481c5;
    background: #fff;
}

.row2 .btn3{
    text-decoration:none;
    color: #fff;
    border: 1px solid #2481c5;
    padding: 10px 20px;
    font-size: 16px;
    background: #2481c5;
    cursor: pointer;
    text-align: center;
    float:left;
    margin: 20px;
    bottom: 20px;
    position: absolute;
}

.btn3:hover{
    text-decoration:none;
    color: #2481c5;
    border: 1px solid #2481c5;
    padding: 10px 20px;
    font-size: 16px;
    background: #fff;
    cursor: pointer;
    text-align: center;
    float:left;
    margin: 20px;
}

.btn5{
    text-decoration:none;
    color: #fff;
    border: 1px solid #1a4f76;
    padding: 10px 20px;
    font-size: 16px;
    background: #1a4f76;
    cursor: pointer;
    text-align: center;
    float:left;
    margin-top: 15px;
}

.btn5:hover{
    color: #1a4f76;
    border: 1px solid #1a4f76;
    background: #fff;
    margin-top: 15px;
}

/*------ box ------*/

.box{
    width: 80%;
	margin: auto;
	max-width: 1200px;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
}

.box3{
    width: 80%;
	margin: auto;
	max-width: 1200px;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
}

.box .row-start, .box3{
    width: 100%;
}

.box img{
	width: 100%;
}

.box3 img{
	width: 350px;
}
.box a, .box3 a {
    background-color: #fff;
    margin: 10px;
}

.box p, .box3 p{
    padding-top: 5px;
    padding-bottom: 10px;
}

.box .row2-start, .box3 .row2{
    display: flex;
}

.box .row-start .row2-start a, .box3 .row .row2 a{
    box-shadow: rgba(0, 0, 0, 0.18) 0 2px 20px;
}

@media(max-width: 1150px){
	.box img {
		width: 100%;
	}
	.box .row-start {
        display: inline-block;  width: 100%;
	}
    .box .row2-start {
        width: 100%;
        display: flex;
	}
}

@media(max-width: 800px){
    .box .row2-start {
        width: 100%;
        display: inline-block;
	}
    .box a {
    background-color: #f8f9fa;
    display: inline-block;
    }
}

/*------ info ------*/

.info{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
    max-width: 1200px;
    padding-bottom: 30px
}

.info h1{
	padding-bottom: 30px;
	text-align: center;
	font-size: 30px;
}

.info .row p{
    font-size: 20px;
    margin-bottom: 20px;
    color: #000;
}

.info .row img{
    width: 350px;
    height: auto;
}

.info .row{ 
    margin-bottom: 10px;
    margin-right: 10px;
    margin-left: 10px;
}
 
.info .row h1{
    font-size: 30px;
    text-align: center;
    padding-bottom: 5px;
    padding-top: 10px;
}

.info .row .box2{
    background-color: #ffffff;
    width: 350px;
    margin: auto;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.18) 0 2px 20px;
}


@media(max-width: 1200px){
    .info .row{ 
        flex-direction: column;
        margin: 30px
    }
}

@media(max-width: 500px){
    .info .row .box2{
    width: 100%;
    }
    .info .row img{
    width: 100%;
    }
}

/*------ details ------*/
.questions h1{
	padding-bottom: 30px;
	text-align: center;
	font-size: 30px;
}

.questions{
	padding-top: 40px;
    padding-bottom: 40px;
	max-width: 1200px;
	margin: auto;
}
.questions li{
	padding-top: 20px;
    margin-left: 20px;
}
.questions li:last-child{
	padding-bottom: 20px;
    margin-left: 20px;
}
.questions details {
    width: 80%;
    margin: 0 auto ;
    margin-bottom: 20px;
    overflow: hidden;
}

.questions summary {
    padding: 1rem;
    display: block;
    background: #f8f9fa;
    position: relative;
    cursor: pointer;
    font-size: 20px;
    border-radius: 10px;
}

.questions details > ul a{
	color: #3366bb;
	text-decoration: underline;
}

.questions summary:before{
	content: "❯";
	position: absolute;
    right: 1rem;
	transform: rotate(90deg);
    transform-origin: center;
	color: #000;
}

.questions details > ul{
    margin:20px;
    font-size: 20px;
}

.questions details[open] > summary:before {
    transform: rotate(270deg);
    transform-origin: center;
}

.questions details summary::-webkit-details-marker {
    display:none;
}

/*------ contact ------*/

.contact{
    width: 90%;
    margin: auto;
    text-align: left;
	max-width: 1200px;
	padding: 20px 0 40px 0;
}

.contact .row{
    display: flex;
    justify-content: space-between;
	max-width: 1200px;
}

.contact-col1{
    flex-basis: 40%;
    margin-bottom: 30px;
	margin-top: 30px;
    overflow: hidden;
	background: #fff;
	padding: 20px;
	margin: 20px 30px 20px 0;
	border-radius: 10px;
	box-shadow: 0 3px 34px rgba(0,0,0,0.10);
}

.contact-col2{
    flex-basis: 60%;
    margin-bottom: 30px;
	margin-top: 30px;
    overflow: hidden;
}

.contact h1{
    padding-bottom: 30px;
	font-size: 24px;
}

@media(max-width: 880px){
    .contact .row { 
        flex-direction: column;
    }
	.contact-col1{
		margin: 0;
	}
}

input[type=text], select, textarea {
  	width: 100%; 
  	padding: 12px; 
  	border: 1px solid #ccc; 
  	border-radius: 10px; 
  	box-sizing: border-box;
	margin-top: 6px; 
  	margin-bottom: 16px; 
	resize: vertical;
}

input[type=submit] {
  	background-color: #2481c5;
  	color: white;
  	padding: 12px 20px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 16px;
}

input[type=submit]:hover {
	background-color: #2481c5;
}

label:after {
    content:" *";
    color: red;
  }

/*------ imprint ------*/

.imprint {
	max-width: 1200px;
    margin: auto;
    padding-bottom: 30px;
}

.imprint p{
    text-align: left;
    padding: 0;
    font-size: 20px;
    line-height: 1.5;
}
.imprint h1{
    text-align: left;
    font-size: 35px;
    line-height: 1.5;
    padding: 20px 0 20px 0;
}
.imprint a{
    color: #164668;
}

/*------ datenschutz ------*/

.datenschutz {
	max-width: 1200px;
    margin: auto;
    padding-bottom: 30px;
}

.datenschutz p{
    text-align: left;
    padding: 0;
    font-size: 20px;
    line-height: 1.5;
}
.datenschutz h1{
    text-align: left;
    font-size: 35px;
    line-height: 1.5;
}
.datenschutz h2{
    text-align: left;
    font-size: 28px;
    line-height: 1.;
    padding: 20px 0 20px 0;
}
.datenschutz h3{
    text-align: left;
    line-height: 1.;
    padding: 20px 0 20px 0;
}

.datenschutz ul{
    list-style-type: disc;
    padding-left: 20px;
}
.datenschutz li{
    text-align: left;
    padding-bottom: 20px;
    font-size: 20px;
    line-height: 1.5;
}
.datenschutz a{
    color: #164668;
}

/*------ footer ------*/
summary::-webkit-details-marker {
    display: none;
}
.footer summary {
  	display: block;
	background: #f8f9fa;
	padding-left: 1.4rem;
	position: relative;
	cursor: pointer;
	margin-bottom: 10px;
}
.footer{
    width: 100%;
    text-align: left;
    background: #f8f9fa;
}
.footer .row{
    width: 90%; 
    margin: auto;
}
.footer-col{
    flex-basis: auto;
	margin-top: 20px;
    text-align: left;
    display: flex;
}
.footer h3{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: normal;
    text-align: left;
    font-size: 30px;
}
.footer-col p{
    padding: 0;
    text-align: left;
    font-size: 20px;
    color: #000;
}
.footer ul li{
    display: block;
    padding-bottom: 14px;
    position: relative;
}
.footer ul li a{
    font-size: 20px;
    color: #000;
	text-decoration: none;
}
.footer-col th{
	padding-top: px;
}
.footer-col .zeit{
	float: right;
	padding: 0;
	
}
.footer-col img{
	width: 150px;
    margin-top: 20px;
}
.footer-col table{
	width: 75%;
	padding-top: 10px;
}
.footer details{
	cursor: pointer;
	width: 100%;
	position: relative;
	padding-bottom: 10px;
}

.footer-col a{
	color: #3b5998;
    font-size: 20px;
}

.opening-day { 
  color: #61b22d;
}

@media(max-width: 1100px){
    .footer .row{
        flex-direction: column;
    }
	.footer img{
		margin-top: 50px;
	}
}

.footer summary:before {
	content: "❯";
	position: absolute;
	transform: rotate(90deg);
	color: #000;
	left: 0;
}

.footer details[open] >summary:before {
  transform: rotate(270deg);

}

/*------ copyright ------*/

.copyright{
    width: 100%;
    text-align: center;
    background: #deecf6;
    margin: auto;
	padding-top: 10px;
	padding-bottom: 10px;
}
.copyright p{
	color: #000;
	padding: 10px;
    font-size: 20px
}
.copyright a{
    text-decoration: none;
    color: #000;
}

/*------ gallery ------*/

.gallery{
    width: 90%;
	max-width: 1200px;
    margin: auto;
	padding: 240px 0 40px 0;
}

#myBtnContainer{
    padding-bottom: 20px;
}

.rowx,
.rowx > .column{
    margin: 20px 20px 0 0;
}

.column{
    float: left;
    width: 30%;
    height: auto;
    display: none;
}

.column-artikel{
    display: none;
    
}
.column-gewerbe{
    display: none;
}

.rowx:after{
    content: "";
    display: table;
    clear: both;
}

.content{
    background-color: #f8f9fa;
    box-shadow: rgba(0, 0, 0, 0.18) 0 2px 20px;
}

.content img{
    height: 200px;
    object-fit: cover;
    width: 100%;
    background-color: #fff;
}

.content p{
    padding: 20px 20px 20px 20px;
    font-size: 18px;
    height: 3em;
}

.content h2{
    padding: 20px 20px 0 20px;
    font-size: 25px;
    height: 2em;
}

.show{
    display: block;
}

.btn2{
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.btn2:hover{
    background-color: #f8f9fa;
}

.btn2.active{
    background-color: #2481c5;
    color: #fff;
}

.btn4{
    outline: none;
    padding: 12px 16px;
    background-color: #1a4f76;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    width: 100%;
    text-align: left;
    border: 1px solid #1a4f76;
    margin-bottom: 1px;
}

.btn4:hover{
    background-color: #2481c5;
    color: #fff;
    border: 1px solid #2481c5;
}
@media(max-width: 1400px){
    .column {
        width: 32%;
    }
}
@media(max-width: 1350px){
    .column {
        width: 48%;
    }
}
@media(max-width: 850px){
    .column {
        width: 70%;
    }
}
@media(max-width: 680px){
    .column {
        width: 80%;
    }
}
@media(max-width: 580px){
    .column {
        width: 100%;
    }
}


/*------ breadcrumbs ------*/

/* Style the list */
ul.breadcrumb {
  padding-bottom: 40px;
  list-style: none;
    font-size: 20px;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 20px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 6px;
  color: #000;
  content: "»";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #2481c5;
  text-decoration: none;
}

ul.breadcrumb .fa.fa-map-marker{
  color: #2481c5;
    font-size: 22px;
    
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #2481c5;
  text-decoration: underline;
}






.mid-col1 .weiter {
    color: #000;
    padding: 5px 10px 5px 10px;
    text-align: center;
    border: 1px solid #fff;
    font-size: 16px;
}

.mid-col1 .weiter:hover{
    background-color: #f8f9fa;
    color: #000;
    border: 1px solid #f8f9fa;
}
.weiter.active{
    background-color: #2481c5;
    color: #fff;
}
.weiter.active:hover{
    background-color: #2481c5;
    color: #fff;
}




.mid{
    margin: auto;
	text-align: left;
	max-width: 1200px;
	position: relative;
	height: auto;
	padding-bottom: 30px;
}


.mid-col1 .fa{
	color:#ed1b24;
	font-size: 30px;
}
.mid-col1 p{
	font-size: 20px;
}
.mid-col2 p{
	padding: 20px 0 0 0;
	color: #000;
	font-size: 16px;
}
.mid-col2 h1{
	margin-bottom: 20px;
    padding-bottom: 5px;
	color: #000;
	font-size: 30px;
    border-bottom: 1px solid #ddd;
}
.mid-col2 .bplan h1{
    margin-bottom: 0;
}
.mid-col1 img{
	width: 100%;
	height: auto;
}
.mid-col2 img{
    width: 100%;
    margin-bottom: 20px;
}
.mid .row{
    display: flex;
    justify-content: space-between;
	max-width: 1200px;
    
}
.mid-col1{
    flex-basis: 70%;
}
.mid-col2{
    flex-basis: 30%;
    overflow: hidden;
	padding-left: 30px;
}
.mid-col2 a{
    color: #0081c5;
	font-size: 14px;
	line-height: 1.4;
}

@media(max-width: 1000px){
    .mid .row {
        flex-direction: flex;
    }
	.mid-col2{
		padding-left: 20px;
        flex-basis: 40%;
	}
	.mid-col1{
		padding-bottom: 50px;
        flex-basis: 60%;
	}
}
@media(max-width: 650px){
    .mid .row {
        flex-direction: column;
    }
	.mid-col2{
		padding-left: 0;
	}
	.mid-col1{
		padding-bottom: 50px;
	}
}


/*------ Satzungen ------*/

.satzungen{
    width: 90%;
    margin: auto;
    text-align: left;
	max-width: 1200px;
	padding: 20px 0 40px 0;
}

.box-satzungen{
    background-color: #fff;
    display: flex;
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.18) 0 2px 4px;
    
}

.row1-satzungen{
    flex-basis: 250px;
    align-items: center;
    margin: auto;
    text-align: center;
}
.download-icon img{
    width: 40%;

}
.row2-satzungen{
    flex-basis: 70%;
    padding: 20px;
    background-color: #deecf6;
    border-left: 2px solid #fff;
}
.row2-satzungen h1{
    font-size: 25px;
    padding-bottom: 1em;
    color: #000;
}
.row2-satzungen p{
    font-size: 18px;
    color: #000;
}

@media(max-width: 950px){
    .row1-satzungen{
        display: none;
    }
    .row2-satzungen{
        border-left: none;
        flex-basis: 100%;
    }
}
/*------ Beitrag ------*/

.beitrag{
    width: 70%;
    margin: auto;
    text-align: center;
    max-width: 1200px;
    padding: 240px 0 60px 0;
}

.beitrag img{
    padding: 40px 0 30px 0;
    max-width: 90%;
  width: 100%;
}
.beitrag h1{
    text-align: left;
    width:80%;
    margin:auto;
    padding-bottom: 30px;
    font-size: 45px;
    font-weight: bold;
}

.beitrag h2{
    text-align: left;
    width:80%;
    margin:auto;
    font-size: 25px;
    border-bottom: 1px solid #ddd;
    border-radius: 1px;
    position: relative;
	padding-bottom: 30px;
}

.beitrag h3{
    text-align: left;
    width:80%;
    margin:auto;
    font-size: 18px;
    padding-top: 20px;
    font-weight: normal;
}

.beitrag p{
    text-align: left;
    width:80%;
    margin:auto;
    font-size: 20px;
  padding-bottom: 20px;
}

.beitrag li{
    text-align: left;
    margin:auto;
    font-size: 20px;
      width:80%;
  padding-bottom: 20px;
}

.beitrag ul.breadcrumb{
    text-align: left;
    width:80%;
    margin: auto;
}

@media(max-width: 1150px){
    .beitrag{
    width: 90%;
    }
}

/*------ gewerbebetriebe ------*/











/*------ gewerbebetriebe neu ------*/


    .filter-buttons {
  text-align: left;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

}

    .filter-button {
      padding: 10px 15px;
      margin: 5px;
      border: none;
      color: #000;
      border-radius: 5px;
      cursor: pointer;
      font-size: 20px;
    background-color: #fff;
      
    }

    .filter-button:hover {
      background-color: #f8f9fa
    }

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* ⬅ Links ausrichten */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
}

@media(max-width: 925px){
	.grid {
      justify-content: center;
    }
}
.card {
  width: 260px; /* oder 260px, je nach Geschmack */
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  
}


    .card h2 {
      font-size: 25px;
      margin: 0 0 10px;
      color: #000;
      margin-left: 15px;
      margin-right: 15px;
    }

    .card .details {
      font-size: 18px;;
      color: #000;
      margin-bottom: 6px;
      line-height: 1.4;
      margin-left: 15px;
      margin-right: 15px;
    }

    .card .details a {
      color: #0066cc;
      text-decoration: none;
    }

    .card .details a:hover {
      text-decoration: underline;
    }
    .card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  display: block;
  margin-bottom: 10px;
        background: #fff;
}
.filter-button.active {
  background-color: #2481c5;
  color: #fff;
}






































.mid2{
    margin: auto;
	text-align: left;
	max-width: 1200px;
	position: relative;
	height: auto;
	padding-bottom: 30px;
}

.mid2-col1 p{
	font-size: 20px;
}

.mid2-col1 img{
	width: 100%;
	height: auto;
}
.mid2 .row{
    justify-content: space-between;
	max-width: 1200px;
    
}
.mid2-col1{
    overflow: hidden;
}

@media(max-width: 1000px){
	.mid2-col1{
		padding-bottom: 50px;
        flex-basis: 100%;}
    .mid2 .row {
        display: flex;
	}
    .column-gewerbe {
        flex-basis: 50%;
	}
}
@media(max-width: 700px){
    .mid2 .row {
        flex-direction: column;
    }
	.mid2-col1{
		padding-bottom: 50px;
	}
}

.box-gewerbe h1{
	font-size: 25px;
    color: #000;
    padding: 20px 20px 0 20px;
    height: 2em;
}


.box-gewerbe p{
	font-size: 18px;
    color: #000;
    padding: 20px;
    height: 3em;
}

.box-gewerbe{
    width: 100%;
	margin: auto;
	max-width: 1200px;
	text-align: left;
	padding-bottom: 40px;
    float: left;
}

.box-gewerbe .row {
    width: 100%;
}

.box-gewerbe img{
    width: 100%;
}

.box-gewerbe a {
    background-color: #f8f9fa;
    margin-right: 10px;
}

.box-gewerbe .row2 {
    display: flex;
    padding-bottom: 10px;
    position: relative;
}

@media(max-width: 1150px){
	.box-gewerbe .row {
        display: flex;
	}
    .box-gewerbe .row2 {
        display: flex;
	}
    .box-gewerbe a:last-child {
    background-color: #f8f9fa;
    }
}

@media(max-width: 700px){
    .box-gewerbe .row2 {
        width: 100%;
        display: inline-block;
	}
    .box-gewerbe a {
    background-color: #f8f9fa;
    display: inline-block;
        margin-right: 0;
    }
}





/*------ Aktuelles ------*/


.box-artikel h2{
	font-size: 14px;
    color: #000;
    padding: 20px 20px 0 20px;
}
.box-artikel h1{
	font-size: 25px;
    color: #000;
    padding: 10px 20px 20px 20px;
    font-weight: bold;
    height: 3em;

}
.box-artikel p{
	font-size: 18px;
    color: #000;
    padding: 0 20px 130px 20px;
    height: 4em;
}

.box-artikel{
    width: 100%;
	margin: auto;
	max-width: 1200px;
	text-align: left;
	padding-bottom: 40px;
    float: left;
}

.box-artikel .row {
    width: 100%;
}

.box-artikel img{
    width: 100%;
}

.box-artikel a {
    background-color: #fff;
    margin-right: 20px;
}

.box-artikel .row2 {
    display: flex;
    padding-bottom: 20px;
    position: relative;
}

.box-artikel .row2 a{
    box-shadow: rgba(0, 0, 0, 0.18) 0 2px 15px;
}

@media(max-width: 1300px){
	.box-artikel h1{
    height: 4em;
    }
}
@media(max-width: 1150px){
	.box-artikel img {
		width: 100%;
	}
	.box-artikel .row {
        display: inline-block;  width: 100%;

	}
    .box-artikel .row2 {
        width: 100%;
        display: flex;
	}
    .box-artikel a {
        margin-right: 0;
    }
    .box-artikel h1{
    height: fit-content;
    }
    .box-artikel p{
    height: fit-content;
    }
}

@media(max-width: 800px){
    .box-artikel .row2 {
        width: 100%;
        display: inline-block;
	}
    .box-artikel a {
    background-color: #f8f9fa;
    display: inline-block;
        margin-right: 0;
    }
}


/*------ Kalender ------*/

.calendar {
    max-width: 900px;
    margin: auto;
    padding-bottom: 100px;
    width: 90%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.left-controls, .middle-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.left-controls .fa{
    margin: 10px;
    cursor: pointer;
}
.left-controls .button{
    cursor: pointer;
}
.month-year {
    font-size: 1.5em;
    min-width: 200px;
    text-align: center;
}

.view-button {
    padding: 5px 10px;
    font-size: 1em;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.view-button.active {
    background-color: #2481c5;
    color: #fff;
}

table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ddd;
    height: 100px;
    vertical-align: top;
    position: relative;
    padding: 0
}

th {
    background-color: #deecf6;
    font-weight: bold;
    height: 40px;
    padding-top: 10px;
}

td > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.event {
    font-size: 15px;
    color: #fff;
    background-color: #2481c5;
    border-radius: 4px;
    padding: 2px 4px;
    margin-top: 4px;
    cursor: pointer;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.today {
    background-color: #deecf6 !important;
    border: 2px solid #2481c5;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.modal-content h3{
    color: #000;
    font-size: 30px;
    padding: 0;
    text-align: left;
}
.modal-content p{
    color: #000;
    font-size: 20px;
}

.close-btn {
    background: #ed1b24;
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    float: right;
    cursor: pointer;
}

.event-overview {
    text-align: left;
    margin-top: 20px;
}

.event-item {
    margin-bottom: 8px;
    padding: 5px 10px;
    background: #f8f9fa;
    border-left: 4px solid #2481c5;
}

.event-date {
    font-weight: bold;
    margin-right: 8px;
}

/*------ Aktuelles ------*/

.row2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pagination {
  text-align: center;
  margin-top: 30px;
}

.pagination button {
  background-color: #f8f9fa;
  color: #000;
  border: none;
  padding: 10px 16px;
  margin: 0 4px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pagination button:hover:not(.active) {
  background-color: #f4f4f4;
}

.pagination button.active {
    background-color: #1a4f76;
    color: #fff;
}

.filter-btn {
    outline: none;
    padding: 12px 16px;
    background-color: #1a4f76;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    width: 100%;
    text-align: left;
    border: 1px solid #1a4f76;
    margin-bottom: 1px;
}

.filter-btn:hover {
    background-color: #2481c5;
    color: #fff;
    border: 1px solid #2481c5;
}

.filter-btn.active {
    background-color: #2481c5;
    border: 1px solid #2481c5;
    color: #fff;
}