main a {color:rgba(25,25,25,1);}

main a:hover {font-style: normal}


/*filter buttons */
.btn {
	background-color: white;
	border: 1px solid #43789B;
	border-radius: 30px;
	outline: none;
	padding: 8px 15px;
	margin: 5px;
	cursor: pointer;
	font-size: 1em;
	color: rgba(25,25,25,1);
}
.btn:hover {
	background-color: rgba(245,245,245,1.00);
}
.btn.active {
	background-color:  #43789B;
	color: white;
}


/*galerie formatierung*/
.gallery{
	display:flex;
	flex-wrap:wrap;
}
.gallery-item {
	min-width:300px;
	display: none;
	flex-direction:column;
	padding: 5px;
	margin: 5px;
	flex: 1 20%;
	background-color: white;
    border-radius: 3px;
	box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.25);
	}
.gallery-image{width: 100%;}
.gallery-text{margin-top: 5px;}
.show {display: flex;}


/*modal*/
.modal-trigger {cursor: pointer;}
.modal {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    transition: 0.2s ease-in-out opacity;
    visibility: hidden;
    width: 100%;
    z-index: 1000;
}
.modal.modal-visible {
    opacity: 1;
    visibility: visible;
}
.modal-content {
	position: relative;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    padding: 20px;
    transform: scale(0);
    transition: 0.2s ease-in-out all;
	margin: 3em auto;
	width: 90%;
	height: 90%;
	overflow-y: initial;
	max-width: 1500px;
}
.modal-visible .modal-content {
    transform: scale(1);
}
.modal-header {
	position: relative;
}
.modal-close {
	float: right;
    cursor: pointer;
    height: 30px;
    width: 30px;
}
.modal-close::before {
    content: "X";
    color: rgb(112, 112, 112);
}
.modal-close:hover::before {
    color: black;
}
.modal-body {
	height: 80%;
	overflow-y: auto;
	border-top: 1px solid #bbb;
}



/*slideshow*/
.slideshow-container{
  width:100%;
}
.text{padding: 1em 0;}

.slides {
	width:100%;
	margin: 0 auto;
}
.slides img{
	max-width:100%;
	margin: 0 auto;
}

.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	width: auto;
	padding: 10px;
	color: #43789B;
	font-size: 18px;
	transition: 0.6s ease;
	user-select: none;
}
.next {
	right: 0px;
}
.dotcontainer {
	display: block;
	top: 50%;
	width: 90px;
	margin: 1em auto;
}
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}
.active, .dot:hover {
	background-color: #43789B;
}



/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}





@media(min-width:576px){
.desktoponly {display: block;}
}

@media(min-width:992px){

}