/* Standardwerte */
:root{
  --font-family: "Roboto";
  --primary: #ec6c34;
  --primary-dark: #bb4411;
  --primary-light: #f3a07c;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 2px 4px rgba(40, 41, 61, 0.04);
  --text-shadow-1: -1px -1px 0 #21241c, 1px 1px 0 var(--black), -1px 1px 0 var(--black), 1px -1px 0 var(--black);
}


/* HTML + Body */
html {
  scroll-behavior: smooth;
}
body{
  font-family: var(--font-family);
  color: var(--light-1);
  background-color: var(--dark-1);
  font-size: 16px;
  overflow-x: hidden;
}

/* IMG-Zeug */
.unselectable {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.img-fit {
   width: 100%;
   object-fit: cover;
   height: 1350px !important;
}

.text-in-img {
  position: absolute;
  right: 2px;
  bottom: 2px;
  display: inline-block;
  height: 12px;
  white-space: nowrap;
  text-align: right;
  font-weight: 700;
  font-size: 12px;
  color: var(--light-1);
  text-shadow: var(--text-shadow-1);
}

.image-box {
  width: 44px;
  height: 44px;
  display: inline-block;
  position: relative;
  padding: 4px;
  vertical-align: middle;
}


/* Zeug */
h1 small {
    font-size: .65em;
}

div .header {
  padding-left: 1rem !important;
  padding-top: 0.5rem !important;
}

div .header p {
  line-height: 0px;
}

section, #hero {
  padding-top: 200px;
}

section:first-child {
  padding-top: 100px;
}

section {
  padding-top: 50px;
}

#hero h1 {
  font-size: calc(1.37rem + 1.3vw) !important;
}

a {
  text-decoration: none;
  color: var(--primary);
  font-weight: bolder;
}

a:hover {
  text-decoration: none;
  color: var(--primary-light);
}

a:active {
  text-decoration: none;
  color: var(--primary-dark);
}

.tbolder {
  font-weight: bolder;
}

.nowrap {
  white-space: nowrap;
}

.pr-8 {
  padding-right: 8% !important;
}

.div-light {
  padding: 20px 10px;
  border-radius: 0;
  border: 0;
  border-bottom: 4px solid #CCCCCC;
  border-right: 1.5px solid #CCCCCC;
  border-color: #cacaca;
  margin:0;
  color: var(--black);
  -webkit-box-shadow: 0 5px 5px -6px var(--shadow);
     -moz-box-shadow: 0 5px 5px -6px var(--shadow);
      box-shadow: 0 5px 5px -6px var(--shadow);
  background-color: #f9f9f9;
}

.div-bg {
  background: var(--dark-2);
  border-right: 5px solid;
  border-bottom: 5px solid;
  color: var(--light-1);
  border-color: #f9f9f9 !important;
}

.hover-tile:hover{
  background: var(--dark-3);
  color: var(--light-1);
}
