/*-------------------------- Home BG --------------------*/
.bg-fixed {
	background: #333;
	height: 800px;
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
    
}

.bg-fixed.bg1 {
	background-image: url(../images/bg_application.jpg);
}
/*-------------------------- Content --------------------*/
#content {
    position: absolute;
	width: 100%;
    height: auto;
    top: 80%;
    background-color: lightgray;
}
/*-------------------------- About me --------------------*/
.aboutme {
  position: relative;
  max-width: 70%;
  margin: 60px auto;
  margin-bottom: 60px;
}
/*-- alle Links im Onepager --*/
.link {
	color:#f90;
	text-decoration:none;
	display:inline-block;
}
h1{
	text-transform: uppercase;
	margin: 50px 0;
}
.aboutme > h2 {
	margin-bottom: 50px;
}
.aboutme > p {
	margin-bottom: 50px;
}
.wrapper-persoenlicheDaten {
		padding-bottom: 40px;
	}
.h2-persoenlicheDaten {
	text-align:center;
	padding: 30px 0;
}
.persoenlicheDaten {
	display: flex;
	flex-flow: row;
	justify-content:center;
}
.persoenlicheDaten-inhalt {
	width: 17em;
	font-size: 1.1rem;
	line-height: 1.7rem;
}

/*-----------------------Tooltip------------------------*/
#info {
	display: flex;
	flex-direction: row;
}
/* Tooltip container */
.tooltip {
  position: fixed;
  left: 20px;
  bottom:10px;
  display: block;
  /*border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
/*---------------------------Scrollbutton Top ---------------------------*/

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  box-shadow: inset 0 0 .3em #fff, inset 0 -1px .3em #fff;
  border: thin solid #f90;
  background: linear-gradient(to bottom, white, orange);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}
#myBtn:hover {
  cursor:pointer;
	background: white;
	color:#f90;
	border: 1px solid #f90;
}
/*-------------------- Contact -------------------------- */
.contact {
  position: relative;
  max-width: 70%;
  margin: 60px auto;
  margin-bottom: 550px;
}
#contact_start {
    margin-top: 50px;
}
#contact_form {
    margin-top: 50px;
    }
label {
	margin-left: 0px;
	display: inline-block;
	width: 120px;
    cursor: pointer;
}
/*Eigenschaften Eingabefelder Allgemein*/
input[type="text"],[type="email"], textarea {
	min-width: 375px;
    max-width: 40%;
	height: 30px;
    margin: 5px 0 5px 0px;
	border: 1px solid orange;
	border-radius:3px;
	box-shadow: 5px 5px 5px lightgrey;
	color:brown;
}
/*Eigenschaften Eingabefelder Spezial*/
textarea {
	height: 150px;
	vertical-align: top;
	resize:none;
}
#e-mail {
	margin-left: 200px;
}
/*Eigenschaften button*/
#button {
    margin: 20px 120px;
}
#submit {
	width: 13em;
	height: 2em;
	font-size: 1.25em;
	color: white;
	background: linear-gradient(to bottom, white, orange);
	box-shadow: inset 0 0 .3em #fff, inset 0 -1px .3em #fff;
	border: thin solid #f90;
	border-radius: 1em;
	margin: 1em 0;
}
#submit:hover {
	cursor:pointer;
	background: white;
	color:#f90;
	border: 1px solid #f90;
}

/* iframe */
.responsive-iframe {
    position: absolute;
    top: 650px;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 85%;
    border: none;
}
/*-------------------- Footer --------------------------*/
footer  {
    position: absolute;
    width: 100%;
    height: auto;
    top: 80%;
    background-color: aliceblue;
	z-index:125;
}
#logomobile {
	display:none;
}
/*-------------------- Danke Schön! --------------------------*/

.layout_danke_schoen {
	display: grid;
	grid-template-columns: 0.1fr 1fr 1fr 1fr 0.1fr;
	grid-gap: 30px;
	grid-template-areas: 
		". h h h ."
		". . b . ." 
		". . a . .";
	margin: 0px auto;
	margin-bottom: 20px;
	}
.h {
	grid-area: h;
	font-size: 6em;
	font-weight: 300;
	text-transform: uppercase;
	color: white;
	text-align: center;
	text-shadow: 0 0 0.2em #f90, 0 0 0.2em #f90, 0 0 0.2em #f90;
	margin-bottom: 0px
	}
.a {
	grid-area: a;
	}
.b {
	grid-area: b;
	}
	
/* ================================

- Tablet css 
- Breakpoint 1200px

================================ */ 

@media only screen and (min-width:481px) and (max-width:1200px) {
    /*-------------------- Contact -------------------------- */
	/*label + Eingabefeld + Fehlermeldung stehen untereinander*/
	#textfeldname, #sprytextfield2, #sprytextfield3, #sprytextarea1 {
		display: flex;
		flex-flow: column;
	}
	input[type="text"], [type="email"], textarea {
		margin: 0;
	}
	.contact {
    margin-bottom: 60px;
	}
    /*E-Mail Logo*/
    #e-mail {
        display: none;
    }
	.responsive-iframe {
    position: static;
    margin-top: 0px;
	}
}

/* ================================

- Handyscreen css 
- Breakpoint 480px

================================ */ 

@media screen and (max-width: 480px) {
/*-------------------------- Home BG --------------------*/	
	.bg-fixed.bg1 {
		background-image: url(../images/bg_mobile.jpg);
	}
/*-------------------------- Tooltip --------------------*/	
    .tooltip {
		left: 5px;
		bottom: 5px;
		width: 20%;
	}
	.tooltip .tooltiptext {
		margin-left: -34px;
	}
/*-------------------------- About me --------------------*/	
    .aboutme {
	   max-width: 90%;
    }
	.persoenlicheDaten {
		flex-flow: column;
	}
	.h2-persoenlicheDaten {
		padding: 0;
	}
	.persoenlicheDaten-inhalt > h3 {
		margin-top: 1em;
		margin-bottom: 0.3em;
	}
/*-------------------------- Contact --------------------*/	
	.contact {
		max-width: 75%;
		margin-bottom: 60px;
	}
   
	/*Eigenschaften Eingabefelder Allgemein*/
	input[type="text"],[type="email"], textarea {
		min-width: 275px;
	}
	/*Eigenschaften button*/
	#button {
		margin: 10px 10px;
	}
     /*E-Mail Logo*/
    #e-mail {
        display: none;
    }
	/*iframe*/
	.responsive-iframe {
		display: none;
	}
	#logomobile {
		display:block!important;
	}
/*-------------------- Danke Schön! --------------------------*/
		
	.h {
		grid-area: h;
		font-size: 4em;
	}
	section {
		grid-gap: 5px;
	}
}

