body {
  margin: 0;
  overflow-x: hidden;
  word-wrap: break-word;	
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #333;
}
img {
  max-width: 100%;
  height: auto;
  /* display: block; */
}

a {text-decoration: none;}

h2 {
	text-align: center;
	font-size: 42px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: underline solid #e67e22;
	line-height: 1;
}
#contact {
	background-color: rgba(236,102,8,0.2);	
}
#location {
	background-color: #efefef;	
}
#services {
	background-image: url("img/office_sketch_bg_1.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;	
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb();
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
 /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
  z-index: 1000;
}
.logo {
  font-size: 1.5em;
  max-width: 70%;
  margin-top: -20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.burger {
  font-size: 1.8em;
  cursor: pointer;
  z-index: 2001;
  position: relative;
  margin-right: 35px;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2em;
  cursor: pointer;
  color: white;
}
.close-btn:hover {
  color: rgb(236, 102, 8);
}
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  position: absolute;
  top: 0;
  width: 100%;
  box-sizing: border-box;
}
.nav-icon {
  height: 100px;
  width: auto;
  margin-right: 10px;
  padding-left: 25px;

}
.nav {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: #333;
  color: white;
  display: flex;
  flex-direction: column;
  padding-top: 130px;
  transition: right 0.3s ease;
  z-index: 2000;
}
.nav.active {
  right: 0;
}
.nav a {
  color: white;
  padding: 15px 15px 15px 35px;
  text-decoration: none;
}
.nav a:hover {
  color: rgb(236, 102, 8);
}
.hero {
  height: 45vh;
  background: url('img/desk_hero.png') center/cover no-repeat;
/* background: #cf5600;
  background: linear-gradient(180deg,rgba(236, 102, 8, 1) 25%, rgba(255, 255, 255, 1) 100%); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero p {
  color: #222;
  font-weight: 600;
  background-color: #e67e22;
  border-radius: 7px;
  padding: 14px;
  text-align: center;
  rotate: -3deg;
  box-shadow: 0 2px 5px rgba(0,0,0,0.7);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}

/* Liste arrow */
li.arrow {
	list-style: none;
	list-style-image: url("img/arrow.svg");
	padding: 0px 0px 40px 30px;
	background-repeat: no-repeat;
    background-position: left top;
	font-family: sans-serif;
	font-size: 20px;
	font-weight: 500;
  }

.section {
  padding: 25px 40px;
  scroll-margin-top: 0px; /* Abstand Anker zu Header */
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.wide-img {
  position: relative;
  height: 500px;
  background: url('img/IMG_5246.jpg') center/cover no-repeat;
  color: #fff;
}
.wide-img p {
  position: absolute;
  bottom: 10px;
  right: 10px;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5); 
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.6em;
}
.block {
  flex: 1 1 300px; /* Mindestbreite, dann umbrechen */
  margin: 10px;
 /* background: #f4f4f4; */
  padding: 20px;
  box-sizing: border-box;
}
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 40px 20px;
}
.footer-links a {
  color: #e67e22;
  margin: 0 10px;
  text-decoration: none;
}
.impress {
  padding: 150px;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  .section {
    padding: 60px 20px;	
}
}