/* Allgemein */

body {
    font-family: "Encode Sans Condensed", sans-serif;
  	font-size: auto;
  	font-weight: 200%;
  	font-style: condensed;
	background-color: rgb(107, 152, 152); 
	color: rgb(21, 21, 62);
}

.red {
    color: red;
}

.navbar,
.carousel {
    border-bottom: 1px solid #d8d7d7;
}

#about {
    padding-top: 50px;
}

/* Navigation */

.nav-link {
    cursor: pointer;
}

.bg-gradient{
  background-image: bg-secondary(--bs-gradient);
}

.nav-link:active,
.nav-link:hover {
    color:rgb(32, 66, 140) !important;
}

/* slider */

.slider-image {
    width: 90;
    height: 50vh;
	padding: 20px;
	
    background-position: center;
   
}

/* cards */

.card-image {
    height: 400px;
    background-position: center;
    background-size: cover;
}

@media (max-width: 991px) {
    .card-group {
      display: flex;
      flex-flow: column wrap;
    }
}


.port {
	padding: 2px;
}
.gallery-item {
	position: relative;
	box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.5);
}
/* overlay */

.gallery-item img {
	width: 100%;
}
.gallery-item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.5s ease;
}
.gallery-item:hover .overlay {
	opacity: 1;
}
.gallery-item .overlay h3 {
	font-size: 24px;
	margin-bottom: 10px;
}
.gallery-item .overlay p {
	font-size: 16px;
	margin-bottom: 20px;
}
.gallery-item .overlay .btn {
	font-size: 16px;
}
.modal {
	background: rgba(0, 0, 0, 0.8);
}

.modal.body {
 background-color: rgb(0, 0, 0);
}

@media (max-width: 991px) {
	.gallery-item {
    flex-direction: column;
    align-items: center;
		margin-bottom: 30px;
	}
}




