/* Section */

.ge-section {
	padding: 1px 0;
}
section.bg-bright { background: var(--color-navy-bright); }
section.bg-dark { background: var(--color-pink); }

section.text-bright {
	h1,h2,h3,p,a:not(class),ul,li { color: #fff; }
	a.button-style {
		color: var(--color-navy);
		background-color: #fff;
		border-color: #fff;
	}
	a.button-style:hover {
		color: #fff;
		background-color: transparent;
		border-color: #fff;
	}
}


/* 2-spaltig */

.ge-cols_2 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}
	
.ge-cols_2 .ge-left { flex-basis: 49%; }
.ge-cols_2 .ge-right { flex-basis: 49%; }

.ge-cols_2.width-1 {
	max-width: 1440px;
}

.ge-cols_2.valign-bottom  { align-items: flex-end; }
.ge-cols_2.valign-middle  { align-items: center; }

/* 3-spaltig */

.ge-cols_3 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}
.ge-cols_3 .ge-col { flex-basis: 32%; }
.ge-cols_3.width-1 {
	max-width: 1440px;
}
.ge-cols_3.valign-bottom  { align-items: flex-end; }
.ge-cols_3.valign-middle  { align-items: center; }

/* 2-spaltig mit Einleitung */

.ge-cols_2_intro .ge-intro { display: block; width: 100%; float: none; clear: both; text-align: center; }
.ge-cols_2_intro .ge-intro * { text-align: center; }


/* Team Mitglied */

.ge-member {
	display: block;
}
.ge-member-intro {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.ge-member-image {
	flex-basis: 100%;
}
.ge-member-image img {
	display: block;
	width: 100%;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	border-radius: 50%;
}
.ge-member-text {
	flex-basis: 100%;
}
.ge-member-contact {
	flex-basis: 100%;
}

a.email-link,
a.tel-link,
a.mobile-link {
	display: inline-block;
	width: 60px;
	height: 60px;
	overflow: hidden;
	text-decoration: none;
	margin: 10px 10px 0 0;
}

a.email-link:before,
a.tel-link:before,
a.mobile-link:before {
	display: block;
	padding: 0;
	color: #fff;
	width: 60px;
	height: 60px;
	line-height: 60px;
	background: var(--color-pink);
	font-size: 36px;
	text-align: center;
	transition: 0.2s ease;
}
a.email-link:hover:before,
a.tel-link:hover:before,
a.mobile-link:hover:before {
	background: var(--color-navy);
}

.ge-member-sep {
	display: block;
	width: 100%;
	margin-top: 40px;
	padding-bottom: 40px;
	border-top: solid 1px var(--color-sand);
}
.ge-member-table table {
	border-collapse: collapse;
	width: 100%;	
}
.ge-member-table table tr td:first-child,
.ge-member-table table thead th:first-child {
	font-weight: bold;
	padding-right: 40px;
}
.ge-member-table table tr td,
.ge-member-table table thead th {
	padding-bottom: 10px;
}

@media only screen and (max-width: 959px) {
	
	.ge-member-table table,
	.ge-member-table thead,
	.ge-member-table th,
	.ge-member-table tbody,
	.ge-member-table tr,
	.ge-member-table td {
		display: block;
		width: 100%;
	}

}

@media only screen and (min-width: 768px) {
	.ge-member-image {
		flex-basis: 25%;
	}
	.ge-member-text {
		flex-basis: 55%;
	}
	.ge-member-contact {
		flex-basis: 10%;
		text-align: right;
	}
}

@media only screen and (min-width: 1200px) {
	.ge-member-image {
		flex-basis: 25%;
	}
	.ge-member-text {
		flex-basis: 70%;
	}
	.ge-member-contact {
		display: inline-block;
		position: absolute;
		right: 0;
		top: 0;
		white-space: nowrap;
		flex-basis: fit-content;
	}
	a.email-link,
	a.tel-link,
	a.mobile-link {
		width: 60px;
		height: 60px;
		margin: 0 0 10px 10px;
	}

}



/* Teaser fullwidth */

.ge-teaser-fullwidth-wrap {
	display: block;
	padding: 60px 0;
}
.ge-teaser-fullwidth {
	width: 100%;
	max-width: var(--content-width);
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}
.ge-teaser-fullwidth .ge-teaser-image {
	display: block;
	width: 100%;
	overflow: hidden;
	position: relative;
}
.ge-teaser-fullwidth .ge-teaser-image-caption {
	display: inline-block;
	position: absolute;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,0.5);
	color: var(--farbe-text);
	font-size: 0.9em;
	line-height: 1.4em;
	z-index: 10;
	padding: 0 5px;
}
.ge-teaser-fullwidth img {
	display: block;
	width: 100%;
	height: auto;
}
.ge-teaser-fullwidth .ge-teaser-text {
	display: block;
	width: 100%;
	font-size: 1em; 
	line-height: 1.8em;
	position: relative;
	padding: 0 5%;
	background: #b6aba0;
	text-align: center;
	padding: 100px 20%;
}
.ge-teaser-fullwidth .ge-teaser-text.bg-blue { background: var(--farbe-text); }
.ge-teaser-fullwidth .ge-teaser-text * { color: #fff; }
.ge-teaser-fullwidth h3 {
	font-size: 2.4em;
	color: var(--farbe-text);
	font-weight: normal;
	text-transform: none;
	padding: 0 0 20px 0;
	margin: 0;
	line-height: 1.4em;
}

.ge-teaser-fullwidth h4 {
	font-size: 1.2em;
	color: var(--farbe-text);
	text-transform: normal;
	padding: 0 0 20px 0;
	margin: 0;
	line-height: 1.4em;
}


/* Teaser multi columns */

.ge-teasers-multicol-wrap {
	container-type: inline-size;
}
.ge-teasers-multicol-wrap.width-1 {
	max-width: 1440px;
}
.ge-teasers-cols {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr; 
	gap: 29px;
	gap: clamp(10px, 2cqw, 29px);
}
@media only screen and (max-width: 960px) {

	.ge-teasers-cols {
		grid-template-columns: 1fr;
	}

}

/* Team */

.ge-team-wrap {
	display: block;
	padding: 30px 0;
	width: 100%;
	max-width: var(--content-width);
	margin: 0 auto;
}
.ge-team-slider {
	display: block;
	padding: 30px 0;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	position: relative;
}
.ge-team {
	display: block;
	width: 320px;
	float: left;
}
.ge-team a { text-decoration: none; }
.ge-team-image {
	max-width: 240px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.ge-team-image:after {
	display: block;
	width: 100%;
	padding-top: 100%;
	content: '';
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	box-shadow: 0 0 20px rgba(0,0,0,0.1) inset;
}	
.ge-team img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.ge-team-cat {
	display: block;
	height: 20px;
	line-height: 20px;
	font-weight: bold;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.8em;
	color: #b6aba0;
}

.ge-team-text {
	padding: 20px;
}
.ge-team-text * { text-align: center; }
.ge-team h2 {
	font-size: 1.6em;
	color: var(--farbe-text);
	text-transform: none;
	padding: 20px 0;
	margin: 0;
	line-height: 1.4em;
	float: none;
	clear: both;
}
.ge-team h3 {
	font-size: 1.2em;
	text-transform: none;
	padding: 0 0 10px 0;
	margin: 0;
	line-height: 1.4em;
}
.ge-team h4 {
	font-size: 1.2em;
	text-transform: normal;
	padding: 0 0 20px 0;
	margin: 0;
	line-height: 1.4em;
}

.ge-team-slider .flex-direction-nav { position: static; }
.ge-team-slider .flex-direction-nav a { top: 150px; }
.ge-team-slider .flex-direction-nav a.flex-next { right: -50px; }
.ge-team-slider .flex-direction-nav a.flex-prev { left: -50px; }
.ge-team-slider .flex-direction-nav a.disabled { display: none; }



/* Icons */

.ge-icon-wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1440px;
}
.ge-icon {
	width: 200px;
}

.ge-icon a { text-decoration: none; }
.ge-icon-title {
	padding: 0.5em 0;
	font-size: 1.2em;
	font-weight: 600;
	font-family: 'xeye_serif', Arial, Helvetica, sans-serif;
}

.ge-icon-text {
	text-align: center;
	padding-top: 10px;
}
.ge-icon-text p { padding: 0; }
.ge-icon-text a { text-decoration: underline; }

.ge-icon-symbol-text,
.ge-icon-symbol {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: solid 1px var(--color-navy-bright);
	background: var(--color-navy-bright);
	font-family: 'xeye_serif', Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: 600;
}
.ge-icon:hover .ge-icon-symbol,
.ge-icon:hover .ge-icon-text {
	border-color: var(--color-navy);
}
.ge-icon-symbol-text p {
	padding: 0;
	line-height: normal;
}
.ge-icon-symbol-text p.ge-icon-moimage-title {
	font-size: 1.4em;
}

.ge-icon-symbol img,
.ge-icon-symbol svg {
	display: inline-block;
	width: 100px;
	height: 100px;
}

/* Testimonials */

.ge-testi-wrap {
	display: block;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 0 60px 0;
	position: relative;
}
.ge-testi-window {
	display: block;
	margin: 0 40px;
	overflow: hidden;
}
.ge-testi-wrap ul.slides {
	display: flex;
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	padding: 0;
	list-style: none;
	transition-property: transform;
	will-change: transform;
}
.ge-testi-wrap ul.slides > li {
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.ge-testi-flex {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
	align-content: center;
	justify-content: center;
	padding: 0 80px;
}
.ge-testi-image {
	width: 200px;
}
.ge-testi-image.ge-ti-layout-1 {
	width: 200px;
	height: 200px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}

.ge-testi-image img {
	display: block;
	width: 100%;
	height: auto;
}
.ge-testi-text {
	width: 100%;
	padding: 0 40px;
	text-align: center;
}
.ge-testi-body { 
	line-height: 1.2em;
	font-weight: 100;
	padding: 0.4em 0;
	font-size: 1.4em;
	color: var(--text-color);
}
.ge-testi-header { 
	font-family: 'xeye_serif', 'Times New Roman', Georgia, Serif;
	line-height: 1.2em;
	font-weight: 500;
	padding: 0.4em 0;
	font-size: 1.6em;
	color: var(--text-color);
}
.ge-testi-subheader { 
	line-height: 1.2em;
	font-weight: 600;
	padding: 0;
	color: var(--text-color);
}

.ge-testi-wrap .flex-direction-nav { position: static; }
.ge-testi-wrap .flex-direction-nav a,
.ge-testi-wrap .flex-direction-nav button {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	padding: 0 0 60px 0;
	margin: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	line-height: inherit;
	text-align: inherit;
	cursor: pointer;
}
.ge-testi-wrap .flex-direction-nav li {
	position: static;
}
.ge-testi-wrap .flex-direction-nav a.flex-prev,
.ge-testi-wrap .flex-direction-nav button.flex-prev {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.ge-testi-wrap .flex-direction-nav a.flex-next,
.ge-testi-wrap .flex-direction-nav button.flex-next {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}


.ge-testi-wrap ol.flex-control-nav {
	display: inline-block;
	white-space: nowrap;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 20;
	color: #000;
	padding: 0;
	margin: 0;
	list-style-image: none;
	list-style-type: none;
	text-align: center;
	cursor: default;
	transform: translate(-50%,0);
}
.ge-testi-wrap ol.flex-control-nav li {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
	background-image: none;
}
.ge-testi-wrap ol.flex-control-nav a,
.ge-testi-wrap ol.flex-control-nav button {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	border: none;
	overflow: hidden;
	cursor: pointer;
	background: rgba(0,0,0,0.2);
	text-indent: -999em;
}
.ge-testi-wrap ol.flex-control-nav a.flex-active,
.ge-testi-wrap ol.flex-control-nav button.flex-active {
	background: rgba(0,0,0,0.5);
}


@media only screen and (max-width: 1024px) {

	.ge-testi-flex {
		padding: 0;
	}
	.ge-testi-text {
		width: 100%;
		padding: 20px 0 0 0;
		text-align: center;
		font-size: 0.9em;
	}

}



@media only screen and (max-width: 767px) {
	
	
	.ge-cols_2 .ge-left, .ge-cols_2 .ge-right { flex-basis: 100%; }
	.ge-cols_2.swap-cols-mobile .ge-left { order: 2; }
	.ge-cols_3 .ge-col { flex-basis: 100%; }
	
	.ge-teasers-multicol { flex-basis: 100%; max-width: 100%; }
	.ge-teaser-mc-text { margin: -100px 40px 0 40px; }
	.ge-teaser-mc-button-wrap { padding: 0 40px; }
	
	.ge-teaser-image, .ge-teaser-text { flex-basis: 100%; }
	
	.ge-teaser-fullwidth .ge-teaser-text { padding: 40px; }
	
	div.multicol-teasermenu-wrap { grid-template-columns: 1fr; }
		
}

.manschgerl-wrap {
	display: block;
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.manschgerl {
	display: block;
	width: 240px;
	width: 15vw;
	position: absolute;
	right: 7%;
	bottom: 60px;
}
.manschgerl img, .manschgerl svg {
	display: block;
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 1199px) {

	.manschgerl-wrap {
		height: 0;
	}
	.manschgerl {
		width: 240px;
		right: 40px;
		bottom: 20px;
	}

}

@media only screen and (max-width: 768px) {

	.manschgerl-wrap {
		height: 0;
	}
	.manschgerl {
		width: 160px;
		right: -40px;
		bottom: 20px;
	}

}



/* slider */

.ge-teasers-slider {
	overflow: hidden;
	position: relative;
	touch-action: pan-y;
	padding-bottom: 60px;
}
.ge-teasers-slider-window {
	display: block;
	margin: 0 40px;
	overflow: hidden;
	padding: 2px 0;
}
.ge-teasers-slider .slides {
  display: flex;
  transition-property: transform;
  will-change: transform;
}

.ge-teasers-slider .slides > li {
  flex: 0 0 auto;
}
.ge-teasers-slider .slides > li a {
	text-decoration: none;
}
.ge-teasers-slider-button span {
	display: inline-block;
}
.ge-teasers-slider-button .button-style.bs-navy {
	display: block;
	width: 100%;
	text-align: center;
	padding: 1em;
}

.ge-teasers-slider-image img {
	display: block;
	width: 100%;
	height: auto;
}

.ge-teasers-slider-image-contain {
	display: block;
	width: 80%;
	margin: 0 auto;
	height: 100px;
}
.ge-teasers-slider-image-contain img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.ge-teasers-slider-text {
	text-align: center;
}
.ge-teasers-slider-text h3:after {
	display: block;
	padding-top: 20px;
	content: '';
	border-bottom: solid 1px var(--color-sand);
}

.ge-teasers-slider .flex-direction-nav { position: static; }
.ge-teasers-slider .flex-direction-nav a,
.ge-teasers-slider .flex-direction-nav button {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	padding: 0 0 60px 0;
	margin: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	line-height: inherit;
	text-align: inherit;
	cursor: pointer;
}
.ge-teasers-slider .flex-direction-nav li {
	position: static;
}
.ge-teasers-slider .flex-direction-nav a.flex-prev,
.ge-teasers-slider .flex-direction-nav button.flex-prev {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.ge-teasers-slider .flex-direction-nav a.flex-next,
.ge-teasers-slider .flex-direction-nav button.flex-next {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}


.ge-teasers-slider ol.flex-control-nav {
	display: inline-block;
	white-space: nowrap;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 20;
	color: #000;
	padding: 0;
	margin: 0;
	list-style-image: none;
	list-style-type: none;
	text-align: center;
	cursor: default;
	transform: translate(-50%,0);
}
.ge-teasers-slider ol.flex-control-nav li {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
	background-image: none;
}
.ge-teasers-slider ol.flex-control-nav a,
.ge-teasers-slider ol.flex-control-nav button {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	border: none;
	overflow: hidden;
	cursor: pointer;
	background: rgba(0,0,0,0.2);
	text-indent: -999em;
}
.ge-teasers-slider ol.flex-control-nav a.flex-active,
.ge-teasers-slider ol.flex-control-nav button.flex-active {
	background: rgba(0,0,0,0.5);
}


@media only screen and (min-width: 1200px) {

	.ge-teasers-slider-image {
		overflow: hidden;
	}
	.ge-teasers-slider-image img {
		display: block;
		width: 100%;
		height: auto;
		transition: 0.2s;
	}
	.ge-teasers-slider .slides li:hover .ge-teasers-slider-image img {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
}




/* Logos */

.logo-carousel {
	overflow: hidden;
	position: relative;
	touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
.logo-carousel *,
.logo-carousel *::before,
.logo-carousel *::after {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
.logo-carousel.is-dragging {
    cursor: grabbing;
}
.logo-carousel .logo-carousel__track{
	display: flex;
	align-items: center;
	width: max-content;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 60px;
	transition-property: transform;
	will-change: transform;
}
.logo-carousel .logo-carousel__track > li {
  flex: 0 0 auto;
}
.logo-carousel .logo-carousel__track > li a {
	text-decoration: none;
	-webkit-user-drag: none;
}
.logo-carousel img {
	display: block;
    max-height: 100px;
    max-width: 180px;
    pointer-events: none;
	object-fit: contain;
    -webkit-user-drag: none;
    user-drag: none;
}
