@font-face {
  font-family: 'Danger';
  src: url('/AllertaStencil-Regular.ttf') format('truetype'); /* Safari, Android, iOS */
}
@font-face {
  font-family: 'Cousine';
  src: url('/Cousine-Regular.ttf') format('truetype'); /* Safari, Android, iOS */
}
@font-face {
  font-family: 'Caveat';
  src: url('/Caveat-Regular.ttf') format('truetype'); /* Safari, Android, iOS */
}
@font-face {
  font-family: 'Noto';
  src: url('/NotoSans-Regular.ttf') format('truetype'); /* Safari, Android, iOS */
}

.icon {
  text-align: center;
  height: 30px;
}
.icon-wrapper {
  margin-right: 10px;
  margin-left: 10px;
}

h2 {
  font-family: 'Danger';
  /* font-size: 2.4em; */
  letter-spacing: 0.5px;
  font-weight: normal;
  /* color: #cccbc5; */
  color: #dd7a10;
  /* text-shadow: 2px 2px 4px #000000; */
}
.materials {
  display: flex;
  height: 30px;
  /* margin-top: 50px; */
}
.wood {
  flex: 1;
  background: url('/wood-texture.jpg') repeat-x;
  /* box-shadow: inset 0 0 0 1000px rgba(0,0,0,.7); */
}
.bricks {
  flex: 1;
  background: url('/brick-texture.jpg') repeat-x;
  background-position: 0px -5px;
  /* box-shadow: inset 0 0 0 1000px rgba(0,0,0,.7); */
}
.tiles {
  flex: 1;
  background: url('/tiles-texture.jpg') repeat-x;
  /* box-shadow: inset 0 0 0 1000px rgba(0,0,0,.7); */
}
.metal {
  flex: 1;
  background: url('/metal-texture.jpeg') repeat-x;
  /* box-shadow: inset 0 0 0 1000px rgba(0,0,0,.7); */
}
.top {
  background: url('/top-final-2.jpg') no-repeat;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: cover;
  height: 100vh;
  /* height: 50%; */
  box-sizing: border-box;
  position: relative;
  padding-left: 20px;
  z-index: 3;
}
.top img {
  position: absolute;
  top: 20px;
  /*bottom: 50px;*/
  /* left: 10px; */
}
.middle {
  padding: 20px;
}
.footer {
  /* margin-top: 35px; */
  display: flex;
  justify-content: space-between;
  padding: 20px;
  /* height: 200px; */
  /* background-color: #2c2a2a; */
  /* background-image: url('/eric.jpeg'); */
  /* background: linear-gradient(to right, #2c2a2a, #2b292dbf); */
  background: linear-gradient(to right, #2c2a2a, rgba(10, 10, 10, 0.75)), url('/eric.jpeg') no-repeat;
  background-size: 100% 626px;
  font-size: 90%;
  /* background-color: grey; */
  /* background-image: linear-gradient(to bottom, #1a1f27, #494949;); */
}

html {
  /* height: 100%; */
  font-family: 'Noto';
  max-width: 2000px;
  background-color: #fff;
}
body {
  /* background-color: #ffedde; */
  background-color: #f3f5f9;
  padding: 0;
  margin: 0;
  /* font-family: Arial; */
  /* color: #dd7a10; */
  color: black;
  overflow-x: hidden;
  /* height: 100%; */
}
.homepage-content {
  padding-left: 10px;
  padding-right: 10px;
  /* background: url('bigbog.png') no-repeat bottom left; */
}
.contact {
  flex-wrap: wrap;
  background-color: rgba(245, 245, 245, 1);
  padding-bottom: 10px;
  padding-top: 10px;
}

.contact div {
  /* margin-left: 10px;
  margin-right: 10px; */
}
.responsive {
  max-width: 90%;
  height: auto;
}

.tab-viewport {
  display: flex;
}

/* Style the tab */
.tab {
  overflow: hidden;
  /* border: 1px solid #ccc; */
  /* background-color: #f1f1f1; */
  display: flex;
  flex-direction: column;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  text-align: left;
  border-left: 2.5px solid #ccc;
  border-left-color: #ccc;
  transition: border-left-color 0.25s linear;
}

/* Change background color of buttons on hover */
.tab button:hover {
  /* background-color: #ddd; */
  color: orange;
}

/* Create an active/current tablink class */
.tab button.active {
  /* background-color: #dd7a10; */
  /* border-left-color: #dd7a10;; */
  border-left-color: #dd7a10;
  color: #dd7a10;
}

/* Style the tab content */
.tabcontent {
  flex: 1;
  /* margin-top: 20px; */
  display: none;
  /* padding: 6px 12px; */
  /* border: 1px solid #ccc; */
  /* border-top: none; */
}

.tabcontent {
  animation: fadeEffect 0.5s; /* Fading effect takes 1 second */
}

.write-us {
  margin-top: 10px;
  text-align: center;
}

.write-us-left {
  width: 50%;
}

@media only screen and (min-height: 560px) {
  .write-us-left {
    width: 100%;
  }
}

.write-us button {
  background-color: #dd7a10;
  border: none;
  outline: none;
  cursor: pointer;
  color: white;
  border-radius: 5px;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  font-weight: bold;
}
.write-us button:hover {
  background-color: orange;
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.map {
  display: none;
}

@media only screen and (min-width: 640px) {
  .map {
    display: block;
  }
}

/* Style inputs with type="text", select elements and textareas */
input[type='email'],
input[type='text'],
select,
textarea {
  width: 100%; /* Full width */
  padding: 8px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
}

input[type='submit'] {
  background-color: #dd7a10;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

label {
  color: #dd7a10;
}

.modal-form {
  display: none;
  z-index: 10;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.92);
  animation: fadeEffect 0.5s;
}
.modal-form-inner {
  max-width: 640px;
  padding: 10px;
  margin: auto;
}

.welcome {
  /* font-family: 'Caveat'; */
  font-size: 120%;
  color: #333;
  /* color: #4a7adb; */
  padding: 40px;
  padding-bottom: 10px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.specialty {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  /* border: thin solid red; */
  text-align: center;
  justify-content: space-around;
}

.specialty p {
  margin: 0;
  /* border-top: thin solid grey; */
}
.specialty div {
  max-width: 400px;
  margin-top: 20px;
}

.team {
  padding-left: 20px;
  max-width: 900px;
  /* font-size: 180%; */
  /* text-align: right; */
  background: url('/team3.png') no-repeat;
  background-size: 600px;
  background-position: bottom left;
  height: 750px;
}

a {
  color: #7c7c7c;
}
a:visited {
  color: #7c7c7c;
}

a.custom {
  color: white;
  text-decoration: none;
}
.impressum {
  padding: 30px;
}
