/* CSS Document */
@font-face{
	font-family:gabrielle;
	src: url("../font/Gabrielle.ttf");
}
@font-face{
	font-family:Poison;
	src: url("../font/Poison-Regular.ttf");
}

@font-face{
	font-family:BogartThinTrial;
	src: url("../font/Bogart-Thin-trial.ttf");
}


@font-face{
	font-family:BogartThinItalicTrial;
	src: url("../font/Bogart-Thin-Italic-trial.ttf");
}

/* ========================================*/
/* CSS VARIABLEN*/
/* ========================================*/
:root{
	--grundFarbe1:rgba(0,0,51,1); /*Azul do logo*/
	--grundFarbe2:rgba(171,152,122,1); /*couro do logo*/
	--grundFarbe3:rgba(255,87,88,1); /*coral do logo*/
	--grundFarbe4:rgba(177,135,67,1.00); /*dourado*/
	--grundFarbe5:rgba(99,129,127,1.00); /*verde azulado*/
	--grundFarbe6:#99bcb4; /*azul da sombra das letras*/
	--grundFarbeRadial:radial-gradient(circle, rgba(171,152,122,1) 13%, rgba(255,87,88,1) 35%, rgba(0,0,51,1) 68%); /*fundo do site*/
	--grundradius:5px;
	/*background-image: url("bilder/pexels-jakub-novacek-924824.jpg");
	--linkFarbeActive:rgba(63,128,189,1.00); /*Farbe Schrift Link*/
	--linkFarbeHover:rgba(255,87,88,1); /*Farbe Schrift Link*/
	--linkFarbeVisited:rgba(177,135,67,1.00); /*Farbe BackgroundContainer*/
	--linkFarbe:rgba(171,152,122,1);
	--farbeBoxShadow:rgba(0,0,0,0.4); /*Farbe von Box Shadow*/
	--farbeBoxShadowleicht:rgba(171,152,122, .4); /*Farbe von Box Shadow*/
	--farbeContainer:rgba(255,255,255,0.0); /*Farbe für footer*/
	--hauptabstand:1rem;
	--SchriftgrosseMenu: 24px;
	--SchriftgrosseH1: 30px;
	--SchriftgrosseH2: 20px;
	--SchriftgrosseH3: 18px;
	--SchriftgrosseText: 18px;
	--SchriftgrosseTextKlein: 16px;
	--SchriftgrosseFusszeile: 12px;
	--SchriftgrosseFusszeile2: 11px;
	}

/* ========================================*/
/* RESET ALLE DEFINITIONEN */
/* ========================================*/
* {
    /* reset */
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
	background: var(--grundFarbe2);
	color: var(--grundFarbe2);
	font-family: 'Poison', verdana, arial, sans-serif;
	height: 100%;
	position: relative;
}

body, input, textarea, select{
	border-radius: var(--grundradius);
	font-family: 'Poison', verdana, arial, sans-serif;
	color: var(--grundFarbe2);
	font-size: var(--SchriftgrosseText);
}



h1, h2, h3{
	text-align: center;
	margin: 0 auto;
	padding: 1rem 0.3rem;
}

h1{
	background-color: var(--grundFarbe2);
	border: 2px solid var(--grundFarbe5);
	border-radius: var(--grundradius);
	box-shadow: 0px 0px 3px 4px var(--farbeBoxShadow);/*var(--grundFarbe5);*/
	color: var(--grundFarbe1);
    text-shadow:1px 1px 1px #99bcb4;
	font-family: 'BogartThinItalicTrial', verdana, arial, sans-serif;
	font-size: var(--SchriftgrosseH1);
	margin: 01rem auto;
	width: 95%;
}
h2{
	font-size: var(--SchriftgrosseH2);
}
h3{
	font-size: var(--SchriftgrosseH3);
}
p{
	font-size: var(--SchriftgrosseText);
	line-height: 2rem;
	margin: 0 auto;
	max-width: 800px;
	padding: 2rem;
	text-align:center;
}


fieldset {
	/*background: var(--f_backgrondText);*/
	border-radius: var(--grundradius);
	box-shadow: 0px 0px 3px 4px var(--farbeBoxShadow);/*var(--grundFarbe5);*/
	height: auto;
	width: 31.5%;
	margin: 0.5rem;
	padding: 0.5rem;
	text-align:match-parent;
}
fieldset legend {
    background-color: var(--grundFarbe2);
	border: 2px solid var(--grundFarbe5);
	border-radius: var(--grundradius);
	color: var(--grundFarbe1);
    text-shadow:1px 1px 1px #99bcb4;
	font-family: 'BogartThinItalicTrial', verdana, arial, sans-serif;
	font-size: var(--SchriftgrosseH3);
	margin: 1rem;
    padding: 0.3rem 1rem;
    font-weight: 600;
	width: 95%
}
.f100{
	width: 97%;
}

ul{
	list-style-type: none;
	font-size: var(--SchriftgrosseText);
	line-height: 2rem;
	margin: 0 auto;
	padding: 0.5rem 2rem;
	/*text-align:center;*/
}
/* ========================================*/
/* Definicao da area de trabalho horizontal*/
/* ========================================*/
#container{
	/*background-color: var(--grundFarbe1);*/
	/*border: 6px solid yellow;*/
	height: 100vh;
    max-width: 1500px;
    margin: 0 auto;
    min-height: 100%;
	position: relative;
	width: 100vw;
}

/* ========================================*/
/* DEFINICAO DO CABECALHO*/
/* ========================================*/
header{
	border: 1px solid var(--grundFarbe2);
	background-color:var(--grundFarbe1);
	border-radius: var(--grundradius);
	box-shadow: 0px 0px 3px 4px var(--farbeBoxShadow);
	display: flex;
	justify-content: space-between;
	align-items:flex-end;
	margin: 1rem auto;
	height: 200px;
	float: left;
	position:relative;
	top: 0rem;
	z-index: 1;
	width: 100%;
}

#sprachen_auswall{
	display: flex;
	justify-content:flex-end;
	padding: 1rem 0rem;	
	position: absolute;
	right: 120px;
	top: 0rem;
	width: 30%;
}


#socialmedia{
	display: flex;
	flex-direction: column;
	justify-content:flex-end;
	padding: 1rem 0rem;	
	position: absolute;
	right: 0rem;
	top: 0rem;
	width: 80px;
}

#socialmedia .fab{
	color: var(--grundFarbe2);
	margin: 0 auto;
	padding: 0rem 1rem;
	font-size: 30px;
	text-align:center;
}

#socialmedia a, #sprachen_auswall a{
	font-size: var(--SchriftgrosseMenu);
	padding-top: 0rem;
	margin: 0;
}

#menu{
	background-color: var(--grundFarbe1);
	position: absolute;
	top: 50px;
	left: 0;
}

#menuSymbol{
	visibility:hidden;  
	/*display: none;*/
}



#logo{
	justify-content: center;
	padding: 0.5rem 0 0.5rem 1rem;
	margin: 0 auto;
	position: absolute;
	top: 1rem;
	left: 1rem;
}

#logo img{	
	height: 150px;
	width: auto;
}

/* ========================================*/
/* LINK DEFINITIONEN*/
/* ========================================*/

a{
	color: var(--grundFarbe5);
	font-size: var(--SchriftgrosseFusszeile);
	padding: 1rem 0.3rem;
	text-decoration: none;
    text-shadow:1px 1px 1px var(--grundeFarbe6);
}

a:hover{
	color: var(--linkFarbeHover);
}

a:visited{
	color: var(--linkFarbeVisited);
}

.far, .fab, .fa{
	border-radius: var(--grundradius);
	font-size: var(--SchriftgrosseH1);
}


/* ========================================*/
/* NAV DEFINITIONEN*/
/* ========================================*/
.window-size{
	height: 3rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 3rem;
}


#menu{
	border-radius: var(--grundradius);
	border: 1px solid var(--grundFarbe1);
	position: relative;

}

#menu .fa {
	border-radius: var(--grundradius);
	font-size:3rem;
	background-color:var(--grundFarbe1);
	color: var(--grundFarbe2);

}
#links{
	display: flex;
	align-items:center;
	flex-direction: column;
	margin: 1rem auto;
	max-width: 300px;
	min-width: 250px;
	min-height: 400px;
	height: 50vh;/*
	position: absolute;*/
	width: 20%;
	z-index: 10;
}
#rechts{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	height: auto;
	margin: 1.5rem auto;
	width:80%;
}

#unten{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	height: auto;
	margin: 1.5rem auto;
	width:100%;
}

nav{
	align-items:center;
	display: flex;
	flex-direction: column;
	padding: 1rem 0.3rem;
	position: absolute;
}

nav a{
	background-color: var(--grundFarbe1);
	border-top: 1px solid var(--grundFarbe2);
	border-right: 2px solid var(--grundFarbe3);
	border-bottom: 2px solid var(--grundFarbe3);
	border-left: 1px solid var(--grundFarbe2);
	box-shadow: 0px 0px 3px 4px var(--farbeBoxShadowleicht);
	color: var(--linkFarbe);
	font-size: var(--SchriftgrosseMenu);
	font-weight: 700;
	margin: 0.5rem;
	width: 220px;
	padding: 1rem 2rem;
	text-align: center;
	text-decoration: none;
    text-shadow:1px 1px 1px black;
}
nav .aktivesmenu {
	background-color: var(--grundFarbe2);
	color: var(--grundFarbe1);
    text-shadow:1px 1px 1px var(--grundFarbe6);
}

/* ========================================*/
/* DEFINICAO DA AREA DE CONTEUDO: 		   */
/* ========================================*/
main{
	border: 1px solid var(--grundFarbe2);
	border-radius: var(--grundradius);
	background-color:var(--grundFarbe1);
	box-shadow: 0px 0px 3px 4px var(--farbeBoxShadow);
	display: flex;
	flex-wrap: wrap;
	padding: 0rem;
	width: 100%;
}



#vid{
	height: 45vh;
	max-width: 800px;
	margin: 2rem auto;
	width: 70%;
	
}


/* ========================================*/
/* DEFINICAO DO RODAPE */
/* ========================================*/
footer{
	border: 1px solid var(--grundFarbe2);
	border-radius: var(--grundradius);
	box-shadow: 0px 0px 3px 4px var(--farbeBoxShadow);
	background-color:var(--grundFarbe1);
	color: var(--grundFarbe2);
	display: flex;
	margin: 1rem auto;
	height: 50px;
	position: relative;
	width: 100%;
}

#datenschutz{
	/*border: 1px solid yellow;*/
	align-items: flex-end;
	color: var(--grundFarbe2);	
	display: flex;
	justify-content:flex-end;
	padding: 0 0 0.8rem 0.5rem ;
	position: absolute;
	left: 0;
	text-align:left;
	bottom: 0rem;
	width:100%;
	}
#datenschutz a{
	color: var(--grundFarbe2);	
	font-size: var(--SchriftgrosseH2);
	padding: 0.1rem;
	margin: 0;
}

#copy{
	font-size: var(--SchriftgrosseFusszeile2);
	position: relative;
	padding: 0.1rem 2rem;
}

#copy .far{
	font-size: var(--SchriftgrosseH2);
}




/* ========================================*/
/* Uberuns DEFINITIONEN */
/* ========================================*/

.uberunsbild{
	border: 2px solid var(--grundFarbe5);
	border-radius: var(--grundradius);
	height:auto;
	margin: 1rem auto;
	overflow:hidden;
	position:relative;  
	width: 35%;
}

.uberunsbild img{
	border-radius: var(--grundradius);
	height: 100%;
	margin: 0 auto;
	object-fit: cover;
	transition:all ease-in-out 0.4s;
	width: 100%;
}

.uberunsbild img:hover{
			transition:all ease-in-out 0.6s;
			transform:scale(1.1);
		}

.uberunstext{
	width: 65%;
	height: auto;
	margin: 0 auto;
	/*position: absolute;*/
	right: 0;
	text-align: center;
	top: 0;
}

/*==========================================*/
/* DEFINICAO DO DIENSTLEISTUNG     */
/*==========================================*/
.dienstleistungcontainer{
	/*border: 7px dashed yellow;*/
	display: flex;
	flex-wrap: wrap;
	padding: 0rem;
	
}

.bilddienstleistung {
	border:1px solid black;
	border-radius: var(--grundradius);
	margin:1rem auto;
	height:30vw;
	width:30vw;
	min-height: 300px;
	min-width: 300px;
	 /*aussenbereich nicht zeigen*/
	overflow:hidden;
	/* damit innerhalb mit absolute gearbeitet werden kann */
	position:relative;
}

.bilddienstleistung img {
	border: 2px solid var(--grundFarbe5);
	border-radius: var(--grundradius);
	object-fit:cover;
	opacity:1;
	height:100%;
	width:100%;
	transition:all ease-in-out 0.4s;
}

.bilddienstleistung img:hover {
	border: 2px solid var(--grundFarbe5);
	opacity:0.8;
	transition:all ease-in-out 0.6s;
	transform:scale(1.1);
}

.bilddienstleistung .bildtitel {
	background-color: var(--grundFarbe2);
	border: 2px solid var(--grundFarbe5);
	border-radius: var(--grundradius);
	box-shadow: 0px 0px 3px 4px var(--farbeBoxShadow);/*var(--grundFarbe5);*/
	color: var(--grundFarbe1);
    text-shadow:1px 1px 1px #99bcb4;
	font-family: 'BogartThinItalicTrial', verdana, arial, sans-serif;
	font-size: var(--SchriftgrosseH1);
	font-weight: 700;
	margin: 0rem auto;
	width:100%;
	/* positionierung absolute geht nur innerhalb relativer elemente */
	position:absolute;
	bottom:0;
	opacity:1;
	/* padding-top:0.5rem; */
	height:105%;
	left:0rem;
	transition:all ease-in-out 0.6s;
	text-align:center;
	/* zentrieren vertikal */
	display:flex;
	justify-content:center;
	/*align-items: center;*/
	/* untereinander darstellen */
	flex-direction:column;
	/* Spezielle Google Font */
}
.bilddienstleistung:hover .bildtitel {
	border: 2px solid var(--grundFarbe5);
	bottom:-100%;
	opacity:0;
	transition:all ease-in-out 0.6s;
}
.bildtitel_klein {
	font-family: 'Poison', verdana, arial, sans-serif;
	font-size: var(--SchriftgrosseH3);
	color:var(--grundFarbe1);
	padding: 1.5rem;
    text-shadow:none ;
}

/* ========================================*/
/* DEFINICOES DA TELA DE CONTATO */
/* ========================================*/

#adresse{
	height: auto;
	margin: 0 auto;
	width: 100%;	
}
#formulare{
	align-items:center;
	 	
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	margin: 0 auto;
	max-width: 1000px;
	position: relative;
	
	
}
formularreturn{
	
	align-items:center;
	 	
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	margin: 0 auto;
	max-width: 1000px;
	position: relative;
}
form {
	font-weight: bold;
	overflow: hidden;
	padding: 1rem;
}

form input{ /*email*/
	appearance:normal;
	background-color: var(--grundFarbe1);
	border-bottom: solid 2px var(--grundFarbe3);
	border-radius: var(--grundradius);
	border-top: none;
	border-left: none;
	border-right: none;
	color: var(--grundFarbe2);
}

/* Cor de fundo do autocomplete */


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid var(--grundFarbe1);
  -webkit-text-fill-color: var(--grundFarbe2) !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--grundFarbe1) inset;
	-webkit-text-stroke-color:var(--grundFarbe2);
  /*transition: background-color 5000s ease-in-out 0s;*/
}




input[type=text], textarea,  select { /*todos os outros campos*/
	background:  var(--grundFarbe1);
	border-bottom: solid 2px var(--grundFarbe3);
	border-radius: var(--grundradius);
	border-top: none;
	border-left: none;
	border-right: none;
	color: var(--grundFarbe2);
	display: inline-block;
  	margin: 8px 0;
  	padding: 12px 20px;
  	width: 300px;
}

input[type=checkbox]{
	background: var(--f_backgroundForm);
	border-radius: var(--grundradius);
	margin: 8px 0;
  	padding: 12px 20px;
}

input[type=email], select { /*email*/
	background:  var(--grundFarbe1);
	border-bottom: solid 2px var(--grundFarbe3);
	border-radius: var(--grundradius);
	border-top: none;
	border-left: none;
	border-right: none;;
	color: var(--grundFarbe2);
	/*box-sizing:content-box;*/
	display: inline-block;
	margin: 8px 0;
	padding: 12px 20px;
	width: 300px;
	appearance: none;
}

textarea, select { /*herr/frau - mensagem*/
	background:  var(--grundFarbe1);
	border-radius: var(--grundradius);
	box-sizing: border-box;
	color: var(--grundFarbe2);
	display:block;
	margin: 8px 0;
	padding: 12px 20px;
	width: 100%;
}
input::placeholder{
 		color:  var(--grundFarbe2);  		
		}


input[type=submit] { /*Botao de enviar*/
	background-color: var(--grundFarbe1);
	border-top: 1px solid var(--grundFarbe2);
	border-right: 2px solid var(--grundFarbe3);
	border-bottom: 2px solid var(--grundFarbe3);
	border-left: 1px solid var(--grundFarbe2);
	border-radius: var(--grundradius);
	box-shadow: 0px 0px 3px 4px var(--farbeBoxShadowleicht);
	color: var(--linkFarbe);
	font-size: var(--SchriftgrosseMenu);
	font-weight: 700;
	
	/*background-color: var(--grundFarbe2);
	border: 1px solid var(--grundFarbe2);*/
	box-sizing: border-box;
	 
	/*box-shadow:0px 0px 11px 4px rgba(33,33,33,0.3);*/
	cursor: pointer;
	margin: 8px 0;
	padding: 14px 20px;
	width: 100%;
}

input[type=submit]:hover {
  color: var(--grundFarbe3);
}

.geschlecht{
	width: 200px;
}

.kontakt{
	/*border: 1px solid orange;*/
	display: flex;
	justify-content: center;
	padding: 0.5rem;
	margin: 0 auto;
	position: relative;
	text-align: center;
	top: 0rem;
	width: 100%;
}





/* ========================================*/
/* KARTE DEFINITIONEN */
/* ========================================*/
.googlekarte{
	border: 2px solid var(--grundFarbe5);
	border-radius: var(--grundradius);
	width: 100%;
	height:50vh;
	
} 

.googlekarte iframe{
	width: 100%;
	height:100%;
}

/* ========================================*/
/* DEFINICAO DO IMPRESSUM*/
/* ========================================*/

#impressum{
	/*border: 1px solid darkviolet;*/
	display: flex;
	flex-wrap: wrap;
	margin: 1rem auto;
	width: 100%;
	height: auto;
	
}

/*==========================================*/
/* DEFINICAO DO DIENSTLEISTUNG CARROCEL     */
/*==========================================*/
.home_handy{
	display: none;
	justify-content: center;
	visibility:hidden; 
	width: 99%
}

.home_handy img{
	align-content: center;
	border-radius: 5px;
	object-fit: cover;
}


.carrocel{
	border: 1px solid var(--grundFarbe2);
	border-radius: 5px;
	background-color:var(--grundFarbe1);
	width: 100%;
	height: 600px;
	display:contents;
	visibility:visible;
}
.ca-container{
	border-radius: var(--grundradius);
    position:relative;
    margin:25px auto 20px auto;
    width:990px;
    height:450px;
    }
.ca-wrapper{
	border-radius: var(--grundradius);
    width:100%;
    height:100%;
    position:relative;
    }
/*.ca-item-main h3{

	color: var(--grundFarbe1);
	font-size: 20px !important;
}*/
.ca-item{
	background: var(--grundFarbe2);
	background-color: var(--grundeFarbe2);
	border-radius: var(--grundradius);
    position:relative;
    float:left;
    width:330px;
    height:100%;
    text-align:center;
    }

.ca-item-main{
	/*nao esta funcionando*/
	border-radius: var(--grundradius);
	background-color: var(--grundFarbe2) !important; 
}
.ca-more{
	border-radius: var(--grundradius);
    position:absolute;
    bottom:10px;
    right:0;
    padding:4px 15px;
    font-weight:bold;
    background:var(--grundFarbe1);
    text-align:center;
    color:var(--grundFarbe2) !important;
    /*font-family:"Georgia","Times New Roman",serif;*/
    font-style:italic;
    text-shadow:1px 1px 1px #897c63;
	}
.ca-close{
	border-radius: var(--grundradius);
    position:absolute;
    top:10px;
    right:10px;
    background:var(--grundFarbe2) url(../img/cross.png) no-repeat center center;
    width:27px;
    height:27px;
    text-indent:-9000px;
    outline:0;
    -moz-box-shadow:1px 1px 2px rgba(0,0,0,0.2);
    -webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.2);
    box-shadow:1px 1px 2px rgba(0,0,0,0.2);
    opacity:.7;
    }
.ca-close:hover{opacity:1.0}.ca-item-main{
    padding:20px;
    position:absolute;
    top:5px;
    left:5px;
    right:5px;
    bottom:5px;
    background:#fff;
    overflow:hidden;
    -moz-box-shadow:1px 1px 2px rgba(0,0,0,0.2);
    -webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.2);
    box-shadow:1px 1px 2px rgba(0,0,0,0.2);
    }
.ca-icon{
	background-color: var(--grundFarbe1);
	border-top: 1px solid var(--grundFarbe2);
	border-right: 2px solid var(--grundFarbe3);
	border-bottom: 2px solid var(--grundFarbe3);
	border-left: 1px solid var(--grundFarbe2);
	border-radius: var(--grundradius);
	box-shadow: 0px 0px 3px 4px var(--farbeBoxShadowleicht);
    width:233px;
    height:189px;
    position:relative;
    margin:0 auto;
    background:url("../img/confiabilidade.jpg") no-repeat center center;
	object-fit: cover;
    }

.ca-item-2 .ca-icon{
    background-image:url("../img/Marketing.jpg");
    }
.ca-item-3 .ca-icon{
    background-image:url("../img/identidade.jpg");
    }
.ca-item-4 .ca-icon{
    background-image:url("../img/grafico.jpg");
    }
.ca-item-5 .ca-icon{
    background-image:url("../img/custo beneficio.jpg");
    }
.ca-item h3{
	border-radius: var(--grundradius);
    font-family:'BogartThinItalicTrial',sans-serif;
    text-transform:uppercase;
    font-size:20px;
	font-weight: 700;
	
    color:var(--grundFarbe1);
    text-shadow:1px 1px 1px var(--grundFarbe6);
    margin-bottom:20px;
    height:85px;
    text-align:center;/*
    text-shadow:0 1px 1px #e4ebe9;*/
    }
.ca-item h4{
	color: var(--grundFarbe1);
    font-family:"Poison",serif;
    font-size:16px;
    text-align:left;
    /*border-left:3px solid var(--grundFarbe1);*/
    padding-left:10px;
    line-height:24px;
    margin:10px;
    position:relative;
    }
.ca-item h4 span{
    /*text-indent:40px;*/
    display:block;
    }
/*.ca-item h4 span.ca-quote{
    color:#f4eee3;
    font-size:100px;
    position:absolute;
    top:20px;
    left:0;
    text-indent:0;
    }
*/
.ca-content-wrapper{
	border-radius: var(--grundradius);
    background:var(--grundFarbe2);
    position:absolute;
    width:0;
    height:440px;
    top:5px;
    text-align:left;
    z-index:10000;
    overflow:hidden;
    }
.ca-content{
    width:660px;
    overflow:hidden;
    }
.ca-content-text{
	border-radius: var(--grundradius);
    font-size:14px !important;
    font-family:"Poison",serif;
    margin:10px 20px;
    padding:10px 20px;
    line-height:24px;
    }
.ca-content-text p{
	border-radius: var(--grundradius);
	color:var(--grundFarbe1);
    padding-bottom:5px;
    }
.ca-content h6{
	border-radius: var(--grundradius);
    margin:25px 20px 0 35px;
    font-size:32px;
    padding-bottom:5px;
    /*color:#000;*/
    font-family:'BogartThinItalicTrial',sans-serif;
    color:var(--grundFarbe1);
    border-bottom:2px solid var(--grundFarbe6);
    text-shadow:1px 1px 1px var(--grundFarbe6);
    }
.ca-nav .ca-nav-prev .ca-nav-next{
	border-radius: var(--grundradius);
	background-color:  var(--grundFarbe2)!important;
	color:  var(--grundFarbe1)!important;
}
.ca-nav span{
    width:25px;
    height:38px;
    background:var(--grundFarbe2)  url("../img/arrows.png") no-repeat top left;
    position:absolute;
    top:50%;
    margin-top:-19px;
    left:-40px;
    text-indent:-9000px;
    opacity:.7;
    cursor:pointer;
    z-index:100;
    }
.ca-nav span.ca-nav-next{
	color: var(--grundfarbe2);
    background-position:top right;
    left:auto;
    right:-40px;
    }
.ca-nav span:hover{
	color: var(--grundFarbe2);
    opacity:1.0;
    }


/*------------------------------------------------------------*/
/*Botao de contato*/
/*------------------------------------------------------------*/



.kontaktieren_uns a{
	color: var(--grundFarbe4);
	font-size: var(--SchriftgrosseH3);
	padding: 0.5rem;
	
}



/* ========================================*/
/* DEFINICAO DO PROJETO*/
/* ========================================*/
.projekt{
	/*border: 2px solid white;*/
	border: 1px solid var(--grundFarbe2);
	background-color:var(--grundFarbe1);
	border-radius: var(--grundradius);
	margin: 1rem auto 0 auto;
	width: 99%;
}

.projekt img{
	border: 1px solid var(--grundFarbe5);
	border-radius: var(--grundradius);
	background-color:var(--grundFarbe1);
	color:white;
	height: 40vh;
	width: auto;
	margin: 0.3rem;
	min-height: 190px;
	
	/*min-width:450px; */
}
.subprojeckt{
	display: flex;
	flex-wrap: wrap; 
	justify-content: center;
	padding: 0.5rem;
	width: 100%;
}


