@charset "UTF-8";

:root {
    --farbe_orange: #fab957;
    --farbe_gruen: #73a362;
    --farbe_dunkelgruen: #568444;
    --farbe_grau: #f4f4ee;
    --font_1: "Quicksand-Regular", Helvetica, Arial, sans-serif;
    --font_2: "Quicksand-Medium", Helvetica, Arial, sans-serif;

    --farbe_gruenbg_barrierefrei: #597d4f;
    --farbe_orangerbg_barrierefrei_schrift: #624D32;

    --barrierefreie_farbe_1: #006fd6; 
    --barrierefreie_farbe_2: #ffffff;
    --barrierefreie_schriftfarbe_1: #006fd6;
}

/* @font-face, family and size */

@font-face {
  src: url("fonts/Quicksand-Regular.woff2") format("woff2");
  font-family: "Quicksand-Regular";
    font-weight: 400;
}

@font-face {
  src: url("fonts/Quicksand-Medium.woff2") format("woff2");
  font-family: "Quicksand-Medium";
    font-weight: 500;
}

body {
	font-family: var(--font_1);
	font-weight: 400;
	font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font_2);
	font-weight: 500;
}

buttons, .btn {
	font-family: var(--font_2);
	font-weight: 500;
	font-size: 1em;
}

.lowercase {
	text-transform: lowercase;
}

.uppercase {
	text-transform: uppercase;
}

/* Colors */

body {
	background: var(--farbe_grau);
	color: var(--farbe_dunkelgruen);
}

button, .btn, a.btn_white_orange.btn_nav_mob {
	background: var(--farbe_orange);
	color: var(--farbe_orangerbg_barrierefrei_schrift);
}

button:hover, .btn:hover, a.btn_white_orange.btn_nav_mob:hover {
	background: var(--farbe_gruenbg_barrierefrei);
	color: #fff;
}

.btn_white_gruen {
	background: #fff;
	color: var(--farbe_orangerbg_barrierefrei_schrift);
}

.btn_white_gruen:hover, .btn_white_gruen:active {
	background: var(--farbe_gruenbg_barrierefrei);
	color: #fff;
}

.btn_white_orange {
	background: #fff;
	color: var(--farbe_orange);
}

.btn_white_orange:hover, .btn_white_orange:active {
	background: var(--farbe_orange);
	color: var(--farbe_orangerbg_barrierefrei_schrift);
}

.btn_gruen_white {
	background: var(--farbe_gruenbg_barrierefrei);
	color: #fff;
}

.btn_gruen_white:hover, .btn_gruen_white:active {
	background: var(--farbe_orange);
	color: var(--farbe_orangerbg_barrierefrei_schrift);
}

.btn_orange_white {
	background: var(--farbe_orange);
	color: var(--farbe_orangerbg_barrierefrei_schrift);
}

.btn_orange_white:hover, .btn_orange_white:active {
	background: var(--farbe_gruenbg_barrierefrei);
	color: #fff;
}

.btn_nav_mob {
	padding: 10px 24px 10px;
}

.btn_nav_mob img {
	display: block;
}

a {
	color: var(--farbe_dunkelgruen);
}

a:hover, a:active {
	color: var(--farbe_dunkelgruen);
}

.bg_orange {
	background: var(--farbe_orange);
	color: var(--farbe_orangerbg_barrierefrei_schrift);
}

.bg_gruen {
	background: var(--farbe_gruenbg_barrierefrei);
	color: #fff;
}

/* Basics */

html {
	scroll-behavior: smooth;
}

body {
	height: 100%;
	margin: 0 auto;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: grayscale;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
    overflow-x: hidden;
    overflow-wrap: break-word;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

img {
	width: 100%;
}

address {
  font-style: normal;
}

:focus { 
	outline: none
}

.show_mobile {
	display: block;
}

.show_tablet {
	display: none;
}

.show_desk {
	display: none;
}

.show_mobile_2 {
	display: block;
}

.show_desk_2 {
	display: none;
}

.wrapper {
	width: calc(100% - 40px);
	max-width: 1180px;
	margin: 0 auto;
}

section {
	width: 100vw;
	overflow: hidden;
}

.section_padding_1 {
	padding: 100px 0;
}

.section_padding_2 {
	padding: 200px 0;
}

.max_width_250 {
	max-width: 250px;
}

.max_width_265 {
	max-width: 265px;
}

.max_width_300 {
	max-width: 300px;
}

.max_width_315 {
	max-width: 315px;
}

.max_width_375 {
	max-width: 375px;
}

.max_width_380 {
	max-width: 380px;
}

.max_width_330 {
	max-width: 330px;
}

.max_width_530 {
	max-width: 530px;
}

.max_width_545 {
	max-width: 545px;
}

.max_width_555 {
	max-width: 555px;
}

.max_width_570 {
	max-width: 570px;
}

.max_width_575 {
	max-width: 575px;
}

.max_width_680 {
	max-width: 680px;
}

.pad_top_footer {
	padding-top: 73px;
}

.marg_auto {
	margin-left: auto;
	margin-right: auto;
}

.marg_top_100 {
	margin-top: 100px;
}

.marg_bot_80 {
	margin-bottom: 80px;
}

.marg_50_50 {
	margin: 50px 0;
}

.marg_0 {
	margin: 0 !important;
}

/* Links */

a {
	text-decoration: none;
	transition: all 250ms ease;
	cursor: pointer;
    outline: none;
}

a:focus, a:hover, a:active {
  	outline: none;
	transition: all 250ms ease;
}

/* Text and Headers */

.nohyph {
    -webkit-hyphens: none; 
    -ms-hyphens: none; 
    hyphens: none;
}

h1, .like_h1 {
	font-size: 2em; 
  	margin: 0.67em 0;
}

h2, .like_h2 {
	font-size: 1.5em; 
	margin: 0.83em 0;
}

h3, .like_h3 {
	font-size: 1.17em;
  	margin: 1em 0;
}

h4, .like_h4 {
	font-size: 1em;
  	margin: 1.33em 0;
}

h5, .like_h5 {
	font-size: .83em;
	margin: 1.67em 0;
}

h6, .like_h6 {
	font-size: .67em; 
	margin: 2.33em 0;
}

p {
	font-size: 1em;
}

.muted_text {
	font-size: 0.8em;
	opacity: 0.8;
}

li {
    list-style-type: none;
}

/* Positioning */

.align_left {
    text-align: left;
}

.align_right {
    text-align: right;
}

.align_center {
    text-align: center;
}

.align_justify {
    text-align: justify;
}

.clearer {
    clear: both;
}

.pos_rel {
	position: relative;
}

/* Buttons */

button, .btn {
    border: 0px;
	padding: 10px 30px;
	margin: 10px 0;
	transition: all 250ms ease;
	cursor: pointer;
	border-radius: 100px;
	font-size: 1rem;
	display: inline-block;
}

button:hover, .btn:hover {
	transition: all 250ms ease;
}

/* Navigation */

.logo_wrapper {
	width: 150px;
	height: 140px;
	position: fixed;
	z-index: 240000;
	top: 18px;
	left: 0;
	background: urL("img/basicobjects/logo_bg.svg");
	background-size: contain;
	background-position: top left;
	background-repeat: no-repeat;
}

.logo_wrapper a{
	position:absolute;
	inset:0;
	display:block;
}

.logo_wrapper a:focus,
.logo_wrapper a:focus-visible{
	outline:2px solid var(--barrierefreie_farbe_1) !important;
	outline-offset: -20px;
	border-radius: 32px;
}

#logo {
	fill: var(--farbe_orange);
	width: 65px;
	position: absolute;
	top: 20px;
	left: 18px;
	animation: logo 15s ease-out infinite;
 	animation-fill-mode: forwards;
}

@-webkit-keyframes logo {
	0% {
		fill: var(--farbe_orange);
		-webkit-transform: scale(1) rotate(0deg);
		        transform: scale(1) rotate(0deg);
	}

	20% {
		fill: var(--farbe_orange);
		-webkit-transform: scale(0.8) rotate(-2deg);
		        transform: scale(0.8) rotate(-2deg);
	}

	40% {
		fill: var(--farbe_gruen);
		-webkit-transform: scale(0.9) rotate(2deg);
		        transform: scale(0.9) rotate(2deg);
	}

	80% {
		fill: var(--farbe_gruen);
		-webkit-transform: scale(0.8) rotate(-2deg);
		        transform: scale(0.8) rotate(-2deg);
	}

	100% {
		fill: var(--farbe_orange);
		-webkit-transform: scale(1) rotate(0deg);
		        transform: scale(1) rotate(0deg);
	}
}
@keyframes logo {
	0% {
		-webkit-transform: scale(1) rotate(0deg);
		        transform: scale(1) rotate(0deg);
		fill: var(--farbe_orange);
	}

	20% {
		-webkit-transform: scale(0.8) rotate(-2deg);
		        transform: scale(0.8) rotate(-2deg);
		fill: var(--farbe_orange);
	}

	40% {
		-webkit-transform: scale(0.9) rotate(2deg);
		        transform: scale(0.9) rotate(2deg);
		fill: var(--farbe_gruen);
	}

	80% {
		-webkit-transform: scale(0.8) rotate(-2deg);
		        transform: scale(0.8) rotate(-2deg);
		fill: var(--farbe_gruen);
	}

	100% {
		-webkit-transform: scale(1) rotate(0deg);
		        transform: scale(1) rotate(0deg);
		fill: var(--farbe_orange);
	}
}

.nav_wrapper {
	width: 735px;
	height: 112px;
	position: fixed;
	z-index: 22000;
	top: -22px;
	right: 20px;
	background: urL("img/basicobjects/nav_bg.svg");
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
}

.nav_desk {
	display: none;
}

.nav_wrapper ul {
	position: absolute;
	right: 45px;
	top: 25px;
}

.nav_wrapper li {
	display: inline-block;
	margin: 0 15px;
	vertical-align: middle;
}

.nav_wrapper a:hover {
	color: var(--farbe_orange);
}

.nav_wrapper li img, .nav_wrapper_mobile li img {
	width: 25px;
	transform: scale(1);
	transition: 100ms ease-out;
}

.nav_wrapper li:hover img {
	transform: scale(1.1);
	transition: 350ms ease-out;
}

.nav_wrapper_mobile {
	width: 150px;
	height: 70px;
	position: fixed;
	z-index: 235000;
	top: 0;
	right: 0;
	background: urL("img/basicobjects/nav_mob_bg.svg");
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
}

input[type=checkbox]{ display: initial; }

#menu_toggle:focus + label::before {
  outline:2px solid var(--barrierefreie_farbe_1);
  outline-offset: -10px;
  border-radius: 20px;
}

#menu_toggle{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  border:0;
  overflow:hidden;
  clip:rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  white-space:nowrap;
}

label {
	position: relative; 
	display: inline-block; 
	width: 35px; 
	color: #000; 
	cursor: pointer;
}

#menu {
	width: calc(100vw - 50px);
	max-width: 290px;
	height: 540px;
	visibility: hidden;
	color: #FFF !important;
	background: transparent;
	background-image: url("img/basicobjects/bg_nav_mobile.svg");
	background-position: left top;
	background-size: contain;
	background-repeat: no-repeat;
	transition: all 300ms ease;
	position: fixed;
	top: 75px;
	right: 0;
	overflow: hidden;
	z-index: 24000;
	-webkit-transform: translate(100%, 40px);
	transform: translate(100%, 40px);
	opacity: 0;
	text-align: center;
}

#menu ul a {
    display: block !important;
    color: #fff;
}

input[type=checkbox]:checked ~ #menu {
	visibility: visible; 
	transition: all 500ms ease-out; 
	-webkit-transform: translate(0%);
	transform: translate(0%);
	opacity: 1;
}

#menu ul {
	margin-top: 65px;
	margin-right: 22px;
	width: 155px;
	font-size: 1.2rem;
	margin-left: auto;
}

#menu li {
	margin: 18px 0;
	text-align: right;
}

#menu li:last-child {
	margin-top: 25px;
}

.inl_bl {
	display: inline-block;
}

label:before {
	position: fixed; 
	content: ""; 
	height: 30px; 
	width: 30px; 
    right: 0;
    top: 0;
	background: url("img/basicobjects/navigation_icon_open.svg"); 
	background-repeat: no-repeat; 
	z-index: 25001; 
	display: block;
    padding: 20px;
    background-size: 50%;
    background-position: center;
}

input[type=checkbox]:checked ~ label:before {
	background: url("img/basicobjects/navigation_icon_close.svg");
	background-repeat: no-repeat; 
    background-size: 50%;
    background-position: center;
	z-index: 25000;
	display: block;
}

/* footer {
	width: 100%;
	height: 250px;
	background: url("img/basicobjects/footer_bg.svg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff !important;
} */

footer {
	width: 100%;
	background: var(--farbe_gruenbg_barrierefrei);
	color: #fff !important;
	padding: 0 0 50px;
}

footer a {
	color: #fff !important;
}

/* BARRIEREFREIHEIT */

.skiplink {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skiplink:focus {
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    background: var(--barrierefreie_farbe_1);
    color: #fff;
    z-index: 400000;
    font-weight: bold;
    text-decoration: none;
}

:focus {
    outline: 2px solid var(--barrierefreie_farbe_1) !important;
    outline-offset: 10px;
    transition: none !important;
}

:focus-visible {
    outline: 2px solid var(--barrierefreie_farbe_1);
}

a:focus {
    outline: 2px solid var(--barrierefreie_schriftfarbe_1);
    outline-offset: 4px;
}

.visually_hidden {
	position:absolute!important;
	width:1px;height:1px;
	padding:0;margin:-1px;border:0;
	overflow:hidden;clip:rect(1px,1px,1px,1px);
	white-space:nowrap
}

a.btn_white_orange.btn_nav_mob {
  display: inline-flex;
  align-items: center;      
  justify-content: center; 
  padding: 10px;
  border-radius: 100px;     
  text-decoration: none;
  background: #fff !important;
}

a.btn_white_orange.btn_nav_mob img {
  display: block;
  width: 20px;
  height: 20px;
  padding: 0 17px;
}

/* Content */

.section_bg_1 {
	width: 100%;
	height: 650px;
	background: url("img/start_1_mobile.jpg");
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: -1;
}

.section_bg_2 {
	width: 100%;
	height: 650px;
	background: url("img/leistungen_1_mobile.jpg");
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: -1;
}

.section_bg_3 {
	width: 100%;
	height: 650px;
	background: url("img/team_1_mobile.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: -1;
}

.section_bg_4 {
	width: 100%;
	height: 650px;
	background: url("img/kontakt_1_mobile.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: -1;
}

.section_bg_5 {
	width: 100%;
	height: 650px;
	background: url("img/imp_1_mobile.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: -1;
}

.overlay_img_1 {
	width: 100%;
	height: 482px;
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translate(-50%);
	background: url("img/basicobjects/overlay_img_1.svg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}

.start_h1 {
	color: #fff;
	padding-top: 380px;
	margin-top: 0;
}

.start_3 {
	max-width: 700px;
	margin: -146px 0 -100px 300px;
	display: block;
	z-index: -1;
}

.z_300 {
	z-index: 300;
}

.credit_af {
	width: 100%;
	padding: 15px 0;
	background: var(--farbe_orange);
	color: var(--farbe_orangerbg_barrierefrei_schrift);
	font-size: 0.7rem;
}

.credit_af a, .credit_af a:hover, .credit_af a:active {
	color: var(--farbe_orangerbg_barrierefrei_schrift);
}

.dreier_links h3, .dreier_mitte h3, .dreier_rechts h3 {
	margin: 50px 0 20px;
}

.vita ul {
	padding: 0;
}

.vita h3 {
	margin-top: 40px;
}

.vita li {
	margin-bottom: 10px;
}

.team p {
	max-width: 235px;
	margin: 0 auto;
}

.team img {
	max-width: 300px;
	margin: 0 auto;
}

.kontakt_wrapper img {
	max-width: 60px;
	margin: 0 auto;
}

@media (prefers-color-scheme: dark) {

	/* Colors */

	/* Basics */

	/* Links */

	/* Text and Headers */

	/* Positioning */

	/* Buttons */

	/* Navigation */

	/* Content */

}

@media (min-width: 768px) {

	/* Basics */

	.show_mobile {
		display: none;
	}

	.show_tablet {
		display: block;
	}

	.show_desk {
		display: none;
	}

	/* Links */

	/* Text and Headers */

	/* Positioning */

	/* Buttons */

	/* Navigation */

	/* Content */
    
}

@media (min-width: 850px) {

	.start_h1 {
		padding-top: 350px;
	}

	.logo_wrapper {
		width: 190px;
		height: 210px;
		position: fixed;
		top: 30px;
		left: 0;
		background: urL("img/basicobjects/logo_bg.svg");
		background-size: contain;
		background-position: top left;
		background-repeat: no-repeat;
	}

	#logo {
		width: 80px;
		position: absolute;
		top: 42px;
		left: 28px;
		animation: logo 15s ease-out infinite;
	}

	.nav_desk {
		display: block;
	}

	.nav_wrapper_mobile {
		display: none;
	}

	.nav_wrapper li img {
		display: block;
	}

	.nav_wrapper ul li a{
		display:inline-flex;        
		align-items:center;
		justify-content:center;         
		border-radius:6px;  
	}

	.nav_wrapper ul li a:focus,
	.nav_wrapper ul li a:focus-visible{
		outline:2px solid var(--barrierefreie_farbe_1);
		outline-offset:4px;
	}

	.nav_wrapper li img{
		display:inline-block;  
		width:25px;
		transform:scale(1);
		transition:100ms ease-out;
	}
}

@media (min-width: 900px) {

	.marg_top_100_desk {
		margin-top: 100px;
	}

	.section_bg_1 {
		background: url("img/start_1.jpg");
		background-position: center right;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.section_bg_2 {
		background: url("img/leistungen_1.jpg");
		background-position: center right;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.section_bg_3 {
		background: url("img/team_1.jpg");
		background-position: center right;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.section_bg_4 {
		background: url("img/kontakt_1.jpg");
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.section_bg_5 {
		background: url("img/imp_1.jpg");
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.container_leistungen {  
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 1fr;
		gap: 0px 60px;
		grid-auto-flow: row;
		grid-template-areas:
		"dreier_links dreier_mitte dreier_rechts";
	}

	.dreier_links { grid-area: dreier_links; }

	.dreier_mitte { grid-area: dreier_mitte; }

	.dreier_rechts { grid-area: dreier_rechts; }

	.dreier_links h3, .dreier_mitte h3, .dreier_rechts h3 {
		margin: 50px 0 20px;
	}

	.container_zweier {  
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr;
		gap: 0px 60px;
		grid-auto-flow: row;
		grid-template-areas:
		"zweier_links zweier_rechts";
}

.zweier_links { grid-area: zweier_links; }

.zweier_rechts { grid-area: zweier_rechts; }



}

@media (min-width: 1024px) {

	.start_2 {
		position: absolute;
		width: 700px;
		top: 160px;
		left: calc(50% - 170px);
		z-index: -1;
	}

}

@media (min-width: 1180px) {

	/* Basics */

	.show_mobile {
		display: none;
	}

	.show_tablet {
		display: none;
	}

	.show_desk {
		display: block;
	}

	.show_mobile_2 {
		display: none;
	}

	.show_desk_2 {
		display: block;
	}

	.marg_auto_desk {
		margin-left: auto;
		margin-right: auto;
	}

	/* Links */

	/* Text and Headers */

	/* Positioning */

	.align_left_desk {
		text-align: left;
	}

	.align_right_desk {
	    text-align: right;
	}

	.align_center_desk {
	    text-align: center;
	}

	.align_justify_desk {
	    text-align: justify;
	}

	/* Buttons */

	/* Navigation */

	/* Content */
 
}

@media (max-width: 1023px) {

	.section_padding_1 {
		padding: 50px 0;
	}

	.mobile_100 {
		max-width: 100% !important;
	}

	.start_2 {
		width: calc(100% - 60px);
		max-width: 600px;
		margin: 50px auto;
		display: block;
	}

	.start_3 {
		max-width: 500px;
		margin: 0 auto;
		display: block;
		z-index: -1;
	}

	.dreier_links, .dreier_mitte, .dreier_rechts { 
		margin-bottom: 100px;
	}

}

@media (max-width: 899px) {

	.marg_top_100_mobile {
		margin-top: 100px;
	}

}