/* -------------------------------------------------------
Allgemein
------------------------------------------------------- */
*, *:before, *:after {
  box-sizing: border-box; 
}

html {
	scroll-behavior: smooth;
	-ms-scroll-behavior: smooth;
	-moz-scroll-behavior: smooth;
	-webkit-scroll-behavior: smooth;
}
body {
	font-family: franklin-gothic-urw, sans-serif;
	font-weight: 400;
	font-style: normal;
	hyphens: auto;
}
#ueberUns, #richtpreise, #referenzen {
	background: linear-gradient(90deg, #365888 0%, #8697b7 100%);
	color: white;
}
.section {
	padding: 30px 0;
}
/* -------------------------------------------------------
Wrapper
------------------------------------------------------- */
.wrapper {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%; }
.content {
  display: flex !important;
	display:-moz-flex !important;
	display:-webkit-flex !important;
	display : -ms-flexbox !important;
  flex-flow: row wrap; }
.wrapperColTwo {
	display: flex !important;
	display:-moz-flex !important;
	display:-webkit-flex !important;
	display : -ms-flexbox !important;
	flex-wrap: wrap;
	justify-content: space-between;
}
.wrapperColTwo div {
	width: 100%;
}
.wrapperAblauf {
	margin: 40px 0 20px 0;
}	
.wrapperTeam {
	display: flex !important;
	display:-moz-flex !important;
	display:-webkit-flex !important;
	display : -ms-flexbox !important;
	flex-wrap: wrap;
}
.wrapperReferenzen {
	display: flex !important;
	display:-moz-flex !important;
	display:-webkit-flex !important;
	display : -ms-flexbox !important;
	flex-wrap: wrap;
}
.referenz {
	display: flex !important;
	display:-moz-flex !important;
	display:-webkit-flex !important;
	display : -ms-flexbox !important;
	align-items: center;
}
.wrapperTeam p {
	width: 100%;
}
button, input, optgroup, select, textarea {
	width: 100%;
	font-size: 20px;
}
/* -------------------------------------------------------
Fonts/Buttons
------------------------------------------------------- */
p, a {
	font-family: franklin-gothic-urw, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	line-height: 28px;
	margin: 10px 0;
}
a {
	color: #8697b7;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	transition: all .2s ease-in-out;
	color: #385988; 
}
.button button {
	background-color: #8697b7;
	color: white;
	padding: 15px;
	margin: 10px 0 0 0;
	border-radius: 10px;
	border: none;
}
.button button:hover {	
	background-color: #385988;
	cursor: pointer;
	transition: all .2s ease-in-out;
	color: white;
}
.strong {
	font-family: franklin-gothic-urw, sans-serif;
	font-weight: 600;
	font-style: normal;	
}
.strongBlue {
	font-family: franklin-gothic-urw, sans-serif;
	font-weight: 600;
	font-style: normal;		
	color: #385988;
}
h1 {
	font-size: 28px;
	font-weight: 600 !important;
}
h2 {
	font-size: 24px;
	color: #385988;
	margin: 10px 0 0 0;
	font-weight: 400;
		letter-spacing: 0.05em;
}
/* -------------------------------------------------------
Navigation
------------------------------------------------------- */
.list__item--content {
	font-family: franklin-gothic-urw, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 22px; 
	letter-spacing: 0.05em;
	color: white;
}
.navigation {
	display: flex !important;
	display:-moz-flex !important;
	display:-webkit-flex !important;
	display : -ms-flexbox !important;
	justify-content: center;
	align-items: center;
}
.navMobile {    
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}
.nav {
  background-color: black;
	padding: 15px;
	display: flex !important;
	display:-moz-flex !important;
	display:-webkit-flex !important;
	display : -ms-flexbox !important;
	align-items: center;
}
/* Hamburgernavigation */
.menu {
  -webkit-transition: 0.1s -webkit-transform linear;
  transition: 0.1s -webkit-transform linear;
  transition: 0.1s transform linear;
  transition: 0.1s transform linear, 0.1s -webkit-transform linear;
  position: relative;
  background: 0;
  float: left;
  margin: 20px;
  height: 2.7rem;
  width: 3rem;
  z-index: 1;
  outline: 0;
  padding: 0;
  border: 0;
}
.bar, .bar::before, .bar::after {
  -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s -webkit-transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s -webkit-transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear, 0.2s -webkit-transform linear;
  position: absolute;
  background: white;
  margin: auto;
  width: 100%;
  height: 0.3rem;
  content: '';
  top: 50%;
  left: 0;
}
.bar {
  margin-top: -0.2rem;
}
.bar::before {
  top: -1rem;
}
.bar::after {
  top: 1rem;
}
.bar::before, .bar::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.active .bar {
  background: 0;
}
.active .bar::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.active .bar::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.active .bar::before, .active .bar::after {
  top: 0;
}
.active .bar, .active .bar::before, .active .bar::after {
  -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s -webkit-transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s -webkit-transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s, 0.2s -webkit-transform linear 0.2s;
}
.navHamburger {
  width: 100%;
  height: 100%;
  background: black;
  position: fixed;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transition: -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91), -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  padding-top: 6.2rem;
}
.menu-open .navHamburger {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.navHamburger ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.navHamburger ul li {
  padding: 15px 15px;
  font-size: 2rem;
}
.navHamburger ul li:hover {
  color: #385988;
}

/********************************************************
Nur Mobile
********************************************************/
@media only screen and (max-width: 999px) {
	.pfeil {
		display: none;
	}
}

/********************************************************
Navigation Mobile/Tablet
********************************************************/
@media only screen and (max-width: 999px) {
	.header__logo {
		position: absolute;
		right: 15px;
		top: 15px;
	}
	/* Hamburger Navigation */
	.navMobile {
		background-color: black;
	}
	.mobileContainer {
		margin: auto;
		color: white;
	}
	.topNav {
		overflow: hidden;
		background-color: black;
		position: relative;
	}
	.topNav #myLinks {
		display: none;
	}
	.topNav a {
		color: white;
		padding: 15px;
		text-decoration: none;
		display: block;
		margin: 0;
	}
	.topNav a.icon {
		background: black;
		display: block;
		position: absolute;
		right: 0;
		top: 10px;
	}
	.fa-bars:before {
		font-size: 30px;
	}
	.active {
		color: white;
	}
	nav#top {
		display: none !important;
	}
}

/* -------------------------------------------------------
Header
------------------------------------------------------- */
.header__logo img {
	width: 130px;
}
.header {
  background-image: url("/img/sopa_elektrokontrollen_header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  height: 40vh;
  width: 100%; 
}
/* -------------------------------------------------------
Footer
------------------------------------------------------- */
.footer {
  color: white;
  background-color: black;
	padding: 30px 0;
}
.footerContent {
	display: flex !important;
	display:-moz-flex !important;
	display:-webkit-flex !important;
	display : -ms-flexbox !important;
	flex-direction: column;
}
/* -------------------------------------------------------
Ablauf
------------------------------------------------------- */	
.ablaufContent {
	display: flex !important;
	display:-moz-flex !important;
	display:-webkit-flex !important;
	display : -ms-flexbox !important;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.ablauf1 img, .ablauf4 img {
	max-width: 90px;
}
.ablauf2 img, .ablauf6 img {
	max-width: 60px;
}
.ablauf3 img {
	max-width: 70px;
}
.ablauf5 img {
	max-width: 80px;
}	
/* -------------------------------------------------------
Team
------------------------------------------------------- */	
.pllumiSopa, .fatlumHasani {
	width: 100%;
	height: auto;
	margin: 10px 0 0 0;
}
.teamText {
	margin: 10px 0 60px 0;
}
/* -------------------------------------------------------
Referenzen
------------------------------------------------------- */	
.referenz {
	margin: 10px 0;
}
.referenz img {
	width: 70px;
	height: auto;
}
.referenzText {
	font-size: 18px;
	line-height: 1.3em;
	margin: 5px 0 0 10px;
}
/* -------------------------------------------------------
Kontakt
------------------------------------------------------- */		
form {
	margin: 0 0 20px 0;
}
.wrapperColTwo .kontaktButtonWrapper {
	display: flex !important;
	display:-moz-flex !important;
	display:-webkit-flex !important;
	display : -ms-flexbox !important;
	flex-direction: column;
	width: 100%;
	margin: 20px 0 20px 0;
}
.kontaktButton {
	font-size: 18px;
	background-color: #385988;
	padding: 15px;
	color: white;
	border-radius: 10px;
	display: flex !important;
	display:-moz-flex !important;
	display:-webkit-flex !important;
	display : -ms-flexbox !important;
	justify-content: center;
	margin: 0;
}
.kontaktButton:hover {
	background-color: #8697b7;
	color: white;
}
.map {
	width: 100%;
	height: 300px;
}
/* -------------------------------------------------------
Formular
------------------------------------------------------- */		
input, textarea {
	background-color: rgba(134, 151, 183, 0.2);
	border-radius: 10px;
	padding: 10px;
	border: none;
}
input:focus, textarea:focus, select:focus{
	outline: none;
}
#send {
	margin: 20px 0 0 0;
	background-color: #365888;		
	color: white;
}
#send:hover {	
	background-color: #8697b7;
	cursor: pointer;
	transition: all .2s ease-in-out;
	color: white;
}

/********************************************************
Bis Tablet hoch
********************************************************/
@media only screen and (max-width: 768px) {
#send {
    border: 0;
    padding: 8px;
    border-radius: 7px;
    font-size: 20px;
}
	textarea {
		min-height: 90px;
	}
}

/********************************************************
Ab Tablet hoch
********************************************************/
@media only screen and (min-width: 768px) {
	/* -------------------------------------------------------
	Allgemein
	------------------------------------------------------- */
	body {
		hyphens: none;
	}
	.section {
		padding: 100px 0;
	}
	/* -------------------------------------------------------
	Fonts/Buttons
	------------------------------------------------------- */
	p, a {
		margin: 10px 0 20px 0;
	}
	h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 28px;
		margin: 25px 0 0 0;
		letter-spacing: 0.05em;
		font-weight: 400;
	}
	.button button {
		padding: 20px;
	}
	/* -------------------------------------------------------
	Navigation
	------------------------------------------------------- */
	nav#top {    
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 10;
	}
	.list {
		display: flex !important;
		display:-moz-flex !important;
		display:-webkit-flex !important;
		display : -ms-flexbox !important;
		justify-content: flex-end;
	}
	.navigation {
		display: flex !important;
		display:-moz-flex !important;
		display:-webkit-flex !important;
		display : -ms-flexbox !important;
		justify-content: space-between;
	}
	.list__item--content {
		display: inline-block;
		padding: 5px;
		margin: 0 10px;
		background-color: black;
		color: white;
		text-decoration: none;
		font-size: 42px; 
	}
	.list__item--content:hover {
		color: #385988;
	}
	.navHamburger ul li {
		padding: 30px 15px;
	}
	/* -------------------------------------------------------
	Wrapper
	------------------------------------------------------- */
	.wrapperColTwo {
		display: flex !important;
		display:-moz-flex !important;
		display:-webkit-flex !important;
		display : -ms-flexbox !important;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	button, input, optgroup, select, textarea, .wrapperColTwo div {
		width: 47%;
	}
	.wrapperSmall {
		max-width: 1100px;
		width: 70%;
	}
	.wrapper {
		max-width: 1100px;
	}	
	.wrapperCenter {
		align-items: center;
	}
	.wrapperAblauf {
		margin: 50px 0 20px 0;
	}	
	.wrapperTeam div {
		width: 50%;
	}
	.referenz {
		padding: 0 20px 0 0;
		width: 50%;
	}
	/* -------------------------------------------------------
	Footer
	------------------------------------------------------- */
	.footerContent {
		display: flex !important;
		display:-moz-flex !important;
		display:-webkit-flex !important;
		display : -ms-flexbox !important;
		flex-direction: row;
		justify-content: space-between;
	}
	/* -------------------------------------------------------
	Ablauf
	------------------------------------------------------- */	
	.ablauf1 img, .ablauf4 img {
		max-width: 120px;
	}
	.ablauf2 img {
		max-width: 100px;
	}
	.ablauf3 img, .ablauf5 img {
		max-width: 120px;
	}	
	
	.ablauf4 img {
		max-width: 120px;
	}
	.ablauf6 img {
		max-width: 90px;
	}
	.ablaufImg {
		display: flex !important;
		display:-moz-flex !important;
		display:-webkit-flex !important;
		display : -ms-flexbox !important;
		justify-content: center;
	}
	.ablaufImg img {
		height: auto;
		max-height: 180px;
	}
	.pfeil {
		display: flex;
		justify-content: center;
	}
	.pfeil img {
		width: 70px;
	}
	.pfeilRechts img {
		transform: scaleX(-1);
	}
	/* -------------------------------------------------------
	Team
	------------------------------------------------------- */	
	.pllumiSopa, .fatlumHasani {
		width: 300px;
		height: auto;
	}
	.teamText {
		margin: 20px 0 0 0;
	}
	/* -------------------------------------------------------
	Kontakt
	------------------------------------------------------- */		
	.kontaktButton {
		font-size: 18px;
		background-color: #385988;
		padding: 20px;
		margin: 20px 0 0 0;
	}
	.kontaktButton:hover {
		background-color: #8697b7;
		color: white;
	}
	.map {
		height: 400px;
	}
	/* -------------------------------------------------------
	Formular
	------------------------------------------------------- */		
	input, textarea {
		font-size: 20px;
	}
	#name, #email, #message, #adress, #tel, #nachricht {
		width: 100%;
	}
	#message, #nachricht {
		height: 200px;
	}
}

/********************************************************
Ab Tablet quer
********************************************************/
@media only screen and (min-width: 1024px) {
	/* -------------------------------------------------------
	Navigation
	------------------------------------------------------- */	
  .list__item {
    display: inline; 
	}
	.list__item--content {
		font-size: 20px; 
	}
	/* -------------------------------------------------------
	Referenzen
	------------------------------------------------------- */	
	.referenz {
		margin: 10px 0;
	}
	.referenz img {
		width: 109px;
	}
	.referenzText {
		font-size: 20px;
		margin: 5px 0 0 15px;
	}
}

/********************************************************
Navigation ohne Mobile
********************************************************/
@media only screen and (min-width: 1000px) {
	/* -------------------------------------------------------
	Header
	------------------------------------------------------- */
	.header__logo img {
		width: 170px;
	}
	.header {
		height: 65vh;
	}
	.navMobile {
		display: none;
	}
	/* -------------------------------------------------------
	Wrapper
	------------------------------------------------------- */
	.wrapperTeam div {
		width: 50%;
	}
	.referenz {
		width: 50%;
	}
}

/********************************************************
Headerbild ohne Mobile
********************************************************/
@media only screen and (min-width: 1025px) {
	.header {
		background-position: bottom center;
		background-attachment: fixed;
	}
}

/********************************************************
Ab Desktop
********************************************************/
@media only screen and (min-width: 1600px) {
	.list__item--content {
		padding: 10px;
		font-size: 22px; 
	}
}

/********************************************************
Sideicons
********************************************************/
.sideicons {
	float: right;
	position: fixed;
	z-index: 999 !important;
	margin-top: 50% auto;
}
.icons {
	height: 150px;
}
.icon {
	margin-bottom: 60px !important;
	clear: both;
	float: left;
}
.icon-text {
	display: none;
	font-size: 14px;
	right: 80px;
	position: fixed;
	padding-top: 25px;
}
.icon a:hover + .icon-text {
	display: block;
	transition: 1s;
}
.icon a {
	background-color: black;
	color: #fff;
	width: 50px;
	height: 50px;
	padding: 10px;
	text-transform: none;
	position: fixed;
	border-radius: 50%;
	right: 20px;
	box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
	z-index: 999;
}
.icon a:hover {
background-color: #365888 !important;
	transition: 0.5s;
}
