*{
	margin: 0;
	padding: 0;
	text-decoration: none;
	font-family: "Ubuntu",sans-serif;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.noscroll { 
	overflow: hidden;
}


a {
	text-decoration: none;
}

li {
	list-style-type: none;
}




#home{
	height: 10vh;
	min-height: 350px;
	background: url("../images/unsere-enny/bg.jpg") no-repeat center;
	background-size: cover;
}


#home .inner-width{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
}

#home .content h1{
	padding-top: 25%;
	font-size: 400%;
	color: #f2f2f2;
}






#enny {
	background: #212529;
}

#enny h3 {
	font-weight: 1000;
	color: #fff;
	padding-top: 3%;
	font-size: 40px;
	text-align: center;
}


hr.miniline {
	width: 50px;
	height: 3px;
	background: #494949;
	border: 0;
	margin: 0px auto 40px auto;
}


#enny p {
	font-family: 'Roboto', sans-serif;
	padding: 50px;
	font-size: 23px;
	color: #A2A2A2;
}
	
	
	







#galerie{
	background: #17191C;
	padding: 60px;
}

#galerie h3 {
	font-weight: 1000;
	color: #fff;
	font-size: 40px;
	text-align: center;
}

#galerie h4 {
	font-weight: 1000;
	color: #fff;
	font-size: 25px;
	text-align: center;
}

hr.miniline-2 {
	width: 40px;
	height: 3px;
	background: #494949;
	border: 0;
	margin: 0px auto 40px auto;
}

.galerie-section .galerie{
	display: flex;
	flex-wrap: wrap-reverse;
 	justify-content: center;
}

.galerie-section .image{
	flex: 25%;
  	overflow: hidden;
 	cursor: pointer;
	border-radius: 15px;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
}

.galerie-section .image img{
	padding: 10px;
	width: 100%;
  	height: 100%;
	transition: 0.4s;
	border-radius: 25px;
}



.galerie-section .image img:hover {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}




@media screen and (max-width:960px) {
  .galerie-section .image{
    flex: 33.33%;
  }
}

@media screen and (max-width:768px) {
  .galerie-section .image{
    flex: 50%;
  }
}

@media screen and (max-width:480px) {
  .galerie-section .image{
    flex: 100%;
  }
}


@media all and (max-width: 500px) {
  .card-list {
    flex-direction: column;
  }
}










.loader-wrapper {
	position: fixed;
	z-index: 999999;
	background: #000;
	width: 100%;
	height: 100%;
}

.loader {
	border: 0 soild transparent;
	border-radius: 50%;
	width: 150px;
	height: 150px;
	position: absolute;
	top: calc(50vh - 75px);
	left: calc(50vw - 75px);
}

.loader p {
	color: #0027ab;
	margin-top: 160px;
	text-align: center;
}

.loader:before, .loader:after {
	content: '';
	border: 0.5em solid #0027ab;
	border-radius: 50%;
	width: inherit;
	height: inherit;
	position: absolute;
	top: 0;
	left: 0;
	animation: loader 2s linear infinite;
	opacity: 0;
	margin: -9px;
}

.loader:before {
	animation-delay: .5s;
}

@keyframes loader {
	0%{
		transform: scale(0);
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	100%{
		transform: scale(1);
		opacity: 0;
	}
}