.headline {
  text-transform: uppercase;
  color: #878786;
  text-align: center;
  overflow: hidden;
}

h1, .h1 {
  text-transform: uppercase;
  font-family: "CooperHewitt-Bold", sans-serif !important;
  margin: 25px 0px;
  font-size: 23px;
  color: black;
  padding: 0px !important;
  font-weight: 700 !important;
}

h2, .h2 {
  font-size: 17px;
  position: relative;
  display: inline-block;
  font-family: "CooperHewitt-Bold", sans-serif !important;
}

h3 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 17px;
  font-family: "CooperHewitt-Bold", sans-serif;
}

.lato p {
  font-family: "Lato, regular";
  text-align: center;
  font-size: 20px;
  line-height: 15px;
  color: rgba(12, 12, 12, 0.9019607843);
}

.cooper p {
  font-family: "CooperHewitt-Bold", sans-serif;
  text-align: center;
  font-size: 27px;
  line-height: 15px;
  color: black;
}

P, li, td, dt, dl {
  margin: 20px 0px;
  font-size: 15px;
  font-family: "Lato, regular";
}

.fonts {
  justify-content: space-around;
}

.grey {
  color: #878786 !important;
  margin-bottom: 1px !important;
}

.overline {
  font-size: 15px;
  font-family: "Lato, regular";
}

.text-orange h1, .text-orange .h1 {
  color: #EE7100;
}

a {
  font-size: 15px;
  font-family: "Lato, regular";
}

.logo-link, .logo-link:hover {
  color: transparent;
}

.link-intern {
  font-weight: bold;
  text-decoration: underline;
  color: #EE7100;
}

.link-extern {
  color: #EE7100;
  font-weight: bold;
  text-decoration: none;
}

.link-extern:hover {
  text-decoration: underline;
}

.colorbox3, .colorbox2, .colorbox1 {
  width: 236px;
  height: 229px;
  margin: 0px 50px;
}

.colorbox1 {
  background-color: #EE7100;
  transform: rotate(-90deg);
  border-radius: 86% 60% 51% 54%/47% 74% 52% 64%;
}

.colorbox2 {
  background-color: #0C0C0C;
  transform: rotate(-10deg);
  border-radius: 71% 64% 100% 50%/78% 100% 74% 66%;
}

.colorbox3 {
  background-color: #878786;
  transform: rotate(45deg);
  border-radius: 86% 60% 51% 54%/47% 74% 52% 64%;
}

@media (min-width: 768px) {
  h1, .h1 {
    margin: 30px 0px;
    font-size: 40px;
  }
  h2, .h2 {
    font-size: 19px;
  }
  h3 {
    font-size: 20px;
  }
  .lato p {
    font-size: 76px;
    line-height: 15px;
  }
  .cooper p {
    font-family: "CooperHewitt-Bold", sans-serif;
    text-align: center;
    font-size: 27px;
    line-height: 15px;
    color: black;
  }
  p, li, td, dt, dl {
    margin: 20px 0px;
    font-size: 17px;
    font-weight: medium;
  }
  .overline {
    font-size: 17px;
  }
  a {
    font-size: 17px;
  }
}
@media (min-width: 1920px) {
  .overline {
    font-size: 20px;
  }
  h1, .h1 {
    font-size: 58px;
  }
  h2, .h2 {
    font-size: 20px !important;
  }
  p, li, td, dt, dl {
    font-size: 20px;
  }
}
.btn-area {
  justify-content: space-around;
}

button {
  border: none;
  background-color: transparent;
}

.btn-secondary, .btn-primary, .btn-secondary-background, .btn-primary-background {
  font-family: "Lato, regular";
  font-size: 15px;
  padding: 13px 29px;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover, .btn-primary:hover, .btn-secondary-background:hover, .btn-primary-background:hover {
  cursor: context-menu;
  text-decoration: none;
  box-shadow: 5px 5px 20px -1px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
  transition: transform 0.3s ease-out, box-shadow 0.3s;
}

.btn:focus {
  cursor: context-menu;
  text-decoration: none;
  background-color: #FD902C;
  box-shadow: 5px 5px 20px -1px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
  transition: transform 0.3s ease-out, box-shadow 0.3s;
}

.btn-primary-background {
  background-color: white;
  color: #EE7100;
  border: 2px solid #EE7100;
  border-radius: 4px;
}

.mood {
  margin: 50px 100px;
}

.btn-secondary-background {
  background-color: transparent;
  border: 2px solid white;
  border-radius: 4px;
  color: white;
}

.btn-secondary-background:hover {
  color: white;
  cursor: pointer;
}

.btn-link-background {
  font-family: "Lato, regular";
  font-size: 15px;
  padding: 0px;
  text-decoration: none;
  color: white;
  border: 2px solid #EE7100;
  background-color: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.5s ease 0s;
  margin: 30px 70px 25px 0px;
}

.btn-link-background:hover {
  cursor: pointer;
  text-decoration: underline;
  color: white;
  padding-right: 10px;
}

.btn-link-background::after {
  content: " ";
  background-image: url(../Icons/arrow-right-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -35px;
  width: 23px;
  height: 15px;
}

.btn-link-background:hover > img {
  transform: translateX(15px);
  transition: transform 0.3s ease-out;
}

.btn-primary {
  background-color: #EE7100;
  border-radius: 4px;
  color: white;
  border: 2px solid #EE7100;
  margin: 10px 100px 25px 0px;
  white-space: nowrap;
}

.btn-primary:hover {
  cursor: pointer;
  color: white;
  background-color: #FD902C;
  border: 2px solid #EE7100;
}

.btn-primary-background:hover {
  cursor: pointer;
  color: #EE7100;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #EE7100;
  border-radius: 4px;
  color: #EE7100;
  margin: 0px 100px 25px 0px;
}

.btn-secondary:hover {
  color: #EE7100;
  cursor: pointer;
}

.btn-link {
  font-family: "Lato, regular";
  font-size: 15px;
  color: #EE7100;
  border: none;
  background-color: transparent;
  text-decoration: none;
  padding: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.5s ease 0s;
  margin: 0px 70px 25px 0px;
}

.btn-link:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #EE7100;
  padding-right: 10px;
}

.btn-link::after {
  content: " ";
  background-image: url(../Icons/arrow-right-orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -35px;
  top: 4px;
  width: 23px;
  height: 15px;
}

.btn-zurueck {
  font-family: "Lato, regular";
  font-size: 15px;
  color: #EE7100;
  border: none;
  background-color: transparent;
  text-decoration: none;
  padding: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.5s ease 0s;
  margin: 0px 70px 25px 45px;
}

.btn-zurueck:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #EE7100;
}

.btn-link:hover > img {
  transform: translateX(15px);
  transition: transform 0.3s ease-out;
}

.btn-link-background img {
  width: 32px;
  height: 21px;
  margin: 10px;
}

.btn-link img {
  width: 32px;
  height: 21px;
  margin: 10px;
}

@media (min-width: 768px) {
  .btn-link-background {
    font-size: 18px;
  }
  .btn-primary, .btn-primary-background, .btn-secondary, .btn-secondary-background {
    margin: 0px 40px 40px 0px;
    white-space: unset;
  }
  .btn-link, .btn-link-background {
    margin: 0px 60px 40px 0px;
  }
}
@media (min-width: 1400px) {
  .btn-link img {
    width: 29px;
    height: 15px;
  }
  .btn-primary {
    margin: 15px 40px 40px 0px;
  }
}
@media (min-width: 1920px) {
  .btn-primary-background, .btn-secondary-background, .btn-primary, .btn-secondary {
    font-family: "Lato, regular";
    font-size: 18px;
    padding: 16px 32px;
  }
  .btn-link {
    font-size: 18px;
  }
  .btn-primary {
    margin: 15px 50px 40px 0px;
  }
}
.illu-color img {
  width: 137px;
  height: 148px;
  margin: 40px;
}

.icons-color img {
  width: 100px;
  height: 100px;
  margin: 30px;
}

.icons img {
  width: 40px;
  height: 40px;
  margin: 20px;
}

.icon-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.file-description {
  color: #878786;
  font-weight: 300;
  margin: 20px 0px 20px -5px !important;
  padding: 0px 12px;
}

.gallery {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 0px !important;
  padding: 0px !important;
}

.gallery-item {
  padding: 0px;
}

.gallery-item1 img, .gallery-item2 img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery-item1, .gallery-item2 {
  position: relative;
  padding-bottom: 56.2%;
}

.gallery-item2 img {
  padding-top: 16px;
}

.svg {
  margin: 0px;
  width: 50px;
  height: 50px;
}

.bild {
  padding: 0px 34px;
}

img {
  width: 20%;
  height: auto;
}

.logo-img {
  width: 42% !important;
  height: auto;
  margin-right: 15px;
  margin-top: 15px;
}

.file-description-row {
  margin: 0px !important;
}

@media (min-width: 768px) {
  .bild {
    padding: 0px;
  }
  .file-description {
    padding: 0px;
  }
  .svg {
    width: 40px;
    height: 40px;
  }
  img {
    width: 15%;
  }
  .gallery-item2 img {
    padding-left: 16px;
    padding-top: 0px;
  }
  .gallery {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: nowrap;
    margin: 0px !important;
    padding: 0px !important;
  }
  .gallery-item1 img, .gallery-item2 img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .gallery-item1, .gallery-item2 {
    position: relative;
    padding-bottom: 35%;
  }
}
@media (min-width: 1440px) {
  .bild {
    padding: 0px 12px;
  }
}
@media (min-width: 1920px) {
  .svg {
    width: 50px;
    height: 50px;
  }
  img {
    width: 20%;
  }
  .gallery-item2 img {
    padding-left: 16px;
  }
  .gallery-item1 img, .gallery-item2 img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.navbar {
  margin: 0px !important;
  width: 100%;
  position: relative;
  height: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 15px 0px;
}

.position {
  position: unset !important;
}

.logo {
  position: relative;
  right: auto;
  top: auto;
  width: 76px;
  height: 45px;
}

.logo-sofa {
  width: 120px !important;
}

.haupt-link {
  font-family: "CooperHewitt-Bold", sans-serif;
  font-size: 23px;
  text-transform: uppercase;
}

.mobile-img {
  display: block;
  width: 24px;
  height: 15px;
}

.haupt-item {
  fill: black;
}

li.haupt-item, .sub-menu > ul > li, .menu-items-secondary > li {
  list-style: none;
}

.haupt-link.aktiv {
  position: absolute;
  top: 50px;
}

label.hamburg {
  display: flex;
  justify-content: flex-end;
  margin: 0px 0px 0px 70px;
  width: 150px;
  height: 50px;
  position: relative;
  border-radius: 4px;
  right: 0px;
}

#hamburg, .hamburg {
  display: none;
  z-index: 100;
}

.line {
  position: absolute;
  height: 4px;
  width: 40px;
  background: #EE7100;
  transition: 0.2s;
  border-radius: 2px;
}

.hamburg:hover > .line {
  cursor: pointer;
  position: absolute;
  background: #FD902C;
  transition: 0.2s;
}

.hamburg:hover > .middle {
  width: 30px;
}

.middle {
  width: 22px;
}

.line:nth-child(1) {
  top: 12px;
}

.line:nth-child(2) {
  top: 22px;
}

.line:nth-child(3) {
  top: 32px;
}

#hamburg:checked + .hamburg .line:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
  width: 40px;
}

#hamburg:checked + .hamburg .line:nth-child(2) {
  opacity: 0;
}

#hamburg:checked + .hamburg .line:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
  width: 40px;
}

.nav-item {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 36px;
  padding: 5px;
}

.nav-item:hover {
  color: #EE7100;
  text-decoration: none;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  position: fixed;
  bottom: 0px;
  z-index: 99;
  background-color: white;
  width: 100%;
  box-shadow: -3px 0px 15px rgba(0, 0, 0, 0.1607843137);
}

.menu-items-secondary a {
  color: black;
  text-decoration: none;
}

.menu-items a {
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.body-effect::after {
  left: 99.3% !important;
}

.ext-link a:hover, .menu-items-secondary > li > a:hover {
  color: #EE7100 !important;
  text-decoration: none;
  font-weight: bold;
}

.menu-items li::marker, .menu-items-secondary li::marker {
  content: " ";
}

.menu-items-secondary li a {
  font-family: "CooperHewitt-Bold", sans-serif;
  font-size: 17px;
  display: inline-flex;
  text-transform: uppercase;
  font-weight: bold;
}

.menu {
  margin: 10px !important;
}

.overlay {
  height: auto;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  pointer-events: none;
  padding: 30px 0px;
  opacity: 0;
  background-color: white;
  background-attachment: fixed;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

body.menu-open {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.menu-open::after {
  content: "";
  background-color: #EE7100;
  width: 4px;
  height: 250%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
  transition: all 0.8s ease 0s;
}

.ext-link a {
  color: #878786 !important;
}

.sub-menu {
  display: none;
  background-color: transparent !important;
  border: none;
  position: absolute;
  inset: 0px auto auto 0px;
  margin: 0px;
  top: 120px;
  left: -5px;
}

.aktiv {
  color: #EE7100 !important;
  font-weight: bold !important;
}

.sub-menu2 {
  background-color: transparent !important;
  border: none;
  position: absolute;
  inset: -5px auto auto -50px;
  margin: 0px;
  transform: translate(330px, 7px) !important;
}

.sub-menu-item2 {
  text-transform: none;
  font-size: 14px;
  font-weight: 300 !important;
}

.sub-menu-item2:hover {
  color: #EE7100;
  text-decoration: underline;
  cursor: pointer;
}

.haupt-link:hover {
  cursor: pointer;
  text-decoration: none;
  color: #EE7100;
}

.sub-menu-item {
  text-transform: none;
  font-size: 14px;
}

.sub-menu-item.click {
  text-transform: none;
  font-size: 14px;
  position: absolute;
  top: -57px;
  left: 100px;
}

.sub-menu li {
  height: 40px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: bold;
  width: 100% !important;
}

.sub-menu-item:hover {
  color: #EE7100;
  background-color: transparent;
  cursor: pointer;
  text-decoration: underline;
}

.sub-img {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 270px;
}

.sub-mobile-img {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 330px;
}

.sub-menu2 {
  display: none;
}

.hide {
  display: none !important;
}

.menu-clicked {
  font-size: 15px;
  height: 50px;
}

.menu-img {
  display: none;
  position: absolute;
  left: 40px;
  top: 60px;
}

.mobile-img {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 320px;
}

.mobile-back {
  width: 20px;
  height: 20px;
  position: absolute;
  left: -50px;
  transform: rotate(180deg);
  display: none;
}

.sub-mobile-back {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50px;
  top: -55px;
  transform: rotate(180deg);
  display: none;
}

.menu-secondary {
  margin: 30px 0px !important;
}

.hauptmenu {
  padding: 0px;
}

.show-item {
  display: block !important;
}

li.active > a {
  color: #EE7100 !important;
}

.sub-menu2 > ul {
  margin-top: 35px;
}

.menu-items-secondary > li, .haupt-item {
  padding: 0px 15px;
}

@media (min-width: 768px) {
  .menu-box {
    position: fixed;
    right: 70px;
    z-index: 9999999999;
  }
  .haupt-link.aktiv {
    position: unset;
    top: 0px;
  }
  .show-item {
    display: block !important;
  }
  .menu-clicked {
    font-size: 17px;
    height: 50px;
    margin-left: 0px;
  }
  .mobile-img {
    display: none;
  }
  .haupt-link {
    font-size: 40px;
  }
  .menu-open::after {
    content: "";
    background-color: #EE7100;
    width: 13px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
    transition: all 0.8s ease 0s;
  }
  .nav {
    position: unset;
    top: 0px;
    bottom: unset;
    box-shadow: unset !important;
  }
  .navbar {
    margin: 0px !important;
    width: 100%;
    position: relative;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    position: relative;
    right: auto;
    top: auto;
    width: 150px;
    height: auto;
    padding-left: 10px;
  }
  .logo-sofa {
    width: 230px !important;
  }
  label.hamburg {
    margin: 25px 35px 20px 70px;
    width: 30px;
    height: 50px;
  }
  #hamburg, .hamburg {
    display: none;
    z-index: 100;
  }
  .line {
    position: absolute;
    height: 4px;
    width: 40px;
    background: #EE7100;
    transition: 0.2s;
    border-radius: 2px;
  }
  .hamburg:hover > .line {
    cursor: pointer;
    position: absolute;
    background: #FD902C;
    transition: 0.2s;
  }
  .hamburg:hover > .middle {
    width: 30px;
  }
  .middle {
    width: 22px;
  }
  .line:nth-child(1) {
    top: 12px;
  }
  .line:nth-child(2) {
    top: 22px;
  }
  .line:nth-child(3) {
    top: 32px;
  }
  #hamburg:checked + .hamburg .line:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
    width: 40px;
  }
  #hamburg:checked + .hamburg .line:nth-child(2) {
    opacity: 0;
  }
  #hamburg:checked + .hamburg .line:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
    width: 40px;
  }
  .nav-item {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 36px;
    padding: 5px;
  }
  .nav-item:hover {
    color: #EE7100;
    text-decoration: none;
  }
  .menu-items-secondary a {
    color: black;
    text-decoration: none;
  }
  .body-effect::after {
    left: 99.3% !important;
  }
  .menu-items li::marker, .menu-items-secondary li::marker {
    content: " ";
  }
  .menu-items-secondary li {
    display: inline-flex;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 30px;
  }
  .overlay {
    height: auto;
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    pointer-events: none;
    padding: 30px 0px;
    opacity: 0;
    background-color: white;
    background-attachment: fixed;
  }
  .overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  body.menu-open {
    overflow: hidden;
  }
  .menu-open::after {
    content: "";
    background-color: #EE7100;
    width: 13px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
    transition: all 0.8s ease 0s;
  }
  .ext-link a {
    color: #878786 !important;
  }
  .sub-menu {
    display: none;
    background-color: transparent !important;
    border: none;
    inset: 0px auto auto 0px;
    margin: 0px;
    top: 75px;
    left: 420px;
  }
  .sub-menu2 {
    background-color: transparent !important;
    border: none;
    margin: 0px;
    transform: translate(390px, 7px) !important;
  }
  .sub-menu-item2 {
    text-transform: none;
    font-size: 17px;
    font-weight: 300 !important;
  }
  .sub-menu-item2:hover {
    color: #EE7100;
    text-decoration: underline;
  }
  .sub-menu-item {
    text-transform: none;
    font-size: 17px;
    position: unset;
    top: 0px;
  }
  .sub-menu li {
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: bold;
    width: 100% !important;
  }
  .sub-menu-item:hover {
    color: #EE7100;
    background-color: transparent;
  }
  .sub-img {
    display: none;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 260px;
    top: 30px;
  }
  .sub-menu2 {
    display: none;
  }
  .sub-menu-item:hover ~ .sub-img {
    display: block;
  }
  .menu-items li {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 32px;
    padding: 5px;
    margin: 10px 0px;
    height: 60px;
  }
  .menu-items a {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
  }
  .menu-items-secondary li {
    margin: 0px 30px 0px 0px;
    padding: 5px !important;
  }
  .menu-items-secondary a {
    font-size: 14px;
  }
  .menu {
    margin: 50px 70px !important;
  }
  .menu-img {
    width: 20px;
    height: 20px;
    display: none;
    position: absolute;
    left: 350px;
    top: 107px;
  }
  .menu-secondary {
    position: absolute;
    bottom: 0px;
    margin-left: 60px !important;
  }
  .submenu {
    position: absolute;
    left: 700px;
    top: 70px;
    display: none;
  }
  .submenu-auf {
    display: block;
  }
  .submenu li {
    font-size: 12px;
  }
  .overlay {
    padding: 20px 0px;
  }
  .clicked {
    color: #EE7100 !important;
  }
  .menu-clicked {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  .sub-menu-item, .sub-menu-item2 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .hauptmenu__sub-arrow,
  .back-menu-link {
    display: none;
  }
  .overlay .menu {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 30px;
    padding-right: 30px;
  }
  .overlay .menu-secondary {
    margin-left: 0 !important;
  }
  .overlay .menu-secondary .col {
    padding-left: 105px;
  }
}
@media (max-width: 767px) {
  .overlay {
    overflow-x: hidden;
    width: 100%;
  }
  .overlay .menu {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 10px;
    padding-right: 10px;
  }
  .hauptmenu > .menu-items > .haupt-item > .sub-menu,
  .hauptmenu > .menu-items > .haupt-item .sub-menu2 {
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    transition: all 0.4s ease 0s;
    transform: translateX(0) !important;
    background-color: #fff !important;
    display: block !important;
    pointer-events: none;
  }
  .hauptmenu > .menu-items > .haupt-item > .sub-menu.show-item,
  .hauptmenu > .menu-items > .haupt-item .sub-menu2.show-item {
    opacity: 1;
    left: 0;
    pointer-events: auto;
    z-index: 1;
  }
  .menu .hauptmenu {
    overflow-x: hidden;
    width: 100%;
    padding-right: 20px;
  }
  .back-menu-link {
    text-transform: uppercase;
    color: #EE7100;
  }
  .back-menu-link svg {
    transform: rotate(180deg);
    margin-right: 15px;
    height: auto;
  }
  .hauptmenu__sub-arrow {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg xmlns='http://www.w3.org/2000/svg' id='Outline' fill='%230C0C0C' viewBox='0 0 24 24' width='512' height='512'%3E%3Cpath d='M23.12,9.91,19.25,6a1,1,0,0,0-1.42,0h0a1,1,0,0,0,0,1.41L21.39,11H1a1,1,0,0,0-1,1H0a1,1,0,0,0,1,1H21.45l-3.62,3.61a1,1,0,0,0,0,1.42h0a1,1,0,0,0,1.42,0l3.87-3.88A3,3,0,0,0,23.12,9.91Z'/%3E%3C/svg%3E");
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
  }
  .haupt-item .haupt-link,
  .sub-menu .sub-menu-item {
    position: relative;
  }
  .sub-menu .sub-menu-item {
    width: 100%;
  }
  .sub-menu li {
    height: auto;
    margin-bottom: 0;
    padding-left: 30px;
    margin-left: 0;
    padding-right: 0;
  }
  .menu .hauptmenu .sub-menu {
    padding-right: 30px;
  }
  .nav.position {
    position: fixed !important;
  }
  .sub-menu-item.click,
  .haupt-link.aktiv {
    left: auto;
    top: auto;
  }
  .navbar {
    justify-content: center;
  }
  .navbar > div {
    margin-left: auto;
  }
  .navbar > div label.hamburg,
  .navbar > div label.hamburg .line,
  .navbar > div #hamburg:checked + .hamburg .line:nth-child(3),
  .navbar > div #hamburg:checked + .hamburg .line:nth-child(1) {
    width: 30px;
  }
  .navbar > div label.hamburg {
    margin: 0 15px 0 0;
  }
  .navbar > div:last-child {
    justify-self: flex-end;
  }
  .logo {
    margin-left: 25px;
    width: 85px;
    height: auto;
  }
  .overlay {
    padding-bottom: 66px;
    transform: translateY(100%);
    transition: transform 0.6s ease;
  }
  .overlay::before {
    content: "";
    background-color: #EE7100;
    width: 4px;
    height: 250%;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 9999;
    transition: all 0.4s ease 0s;
  }
  .overlay.open {
    transform: translateY(0);
  }
  .overlay.open::before {
    top: 0;
  }
  .body-effect .overlay.open::before {
    left: auto;
    right: 0;
  }
  body::after,
  body.menu-open::after {
    top: 100%;
    height: 0;
    transition: all 0.4s ease 0s;
    display: none;
  }
  body.menu-open::after {
    top: 0;
    height: 250%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .overlay {
    padding-top: 0;
  }
  .menu {
    margin-top: 50px !important;
    margin-bottom: 0 !important;
    position: relative;
    width: 100%;
    height: calc(100% - 190px);
    overflow: auto;
    max-height: calc(100% - 190px);
  }
  .haupt-link:not(.menu-clicked) {
    font-size: 30px;
  }
  .menu-items li {
    margin: 0;
  }
  .menu-items li li {
    height: 40px;
  }
  .menu-secondary {
    margin-left: 30px !important;
  }
  .sub-menu {
    top: 13px;
    left: 240px;
    max-width: 250px;
  }
  .menu-img {
    top: 22px;
    left: 205px;
  }
  .sub-img {
    top: 15px;
    left: 210px;
  }
  .menu-open::after {
    width: 8px;
  }
  .menu-clicked {
    font-size: 18px;
  }
  label.hamburg {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .navbar .logo {
    max-width: 120px;
  }
  .logo-sofa {
    max-width: 200px !important;
  }
  .sub-menu-item {
    font-size: 15px;
  }
  .menu-items li li li {
    height: 35px;
    margin-bottom: 2px;
  }
  .sub-menu-item2 {
    font-size: 13px;
    line-height: 17px;
  }
  .sub-menu2 {
    transform: translate(292px, 11px) !important;
    max-width: 240px;
  }
}
@media (min-width: 1200px) {
  .overlay .menu {
    max-height: calc(100% - 120px);
    height: calc(100% - 120px);
    overflow: auto;
    position: relative;
    margin-bottom: 30px !important;
    padding-left: 70px;
    padding-right: 70px;
  }
  .sub-menu {
    top: 5px;
  }
  .menu-img {
    top: 24px;
  }
  .sub-img {
    top: 17px;
  }
  .menu-items li {
    margin-top: 0;
    height: 55px;
  }
}
.footer {
  background-color: #EE7100;
  height: 750px;
  padding: 0px 22px;
}

.logo-footer {
  width: 100px;
  height: auto;
  margin: 30px 10px 30px 0px;
}

.footer-links {
  align-items: center;
}

.footer-links li {
  content: " ";
  list-style: none;
  margin-left: 0px;
  text-transform: uppercase;
  padding: 10px 0px 10px 0px !important;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 17px;
  font-family: "CooperHewitt-Bold", sans-serif !important;
}

.footer-links a:hover {
  text-decoration: underline;
  color: white;
}

.footer-items {
  margin: 0px !important;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.thin a {
  display: flex;
  font-weight: 300 !important;
  text-transform: none;
  font-size: 15px;
  font-family: "Lato, regular" !important;
  width: 320px;
}

.facebook {
  position: relative;
  top: -45px;
  width: 25px;
  margin: 0px !important;
}

.social-links {
  margin-top: 50px !important;
  height: 180px;
}

.instagram {
  position: relative;
  top: -94px;
  right: -50px;
  width: 25px;
  margin: 0px !important;
}

.last-li {
  margin: 10px 0px 50px 12px !important;
}

.footer-logo1 img {
  width: 180px;
}

.footer-ext-link {
  width: 18px;
  height: 18px;
  margin-right: 12px;
}

.footer-logo1 {
  position: relative;
  top: -77px;
  margin-bottom: -80px;
  width: 180px;
  margin: 0px !important;
}

.footer-logo2 {
  position: relative;
  top: -150px;
  right: -215px;
  margin-bottom: 20px;
  width: 90px;
  margin: 0px !important;
}

.footer-logo2 > a > img {
  width: 90px;
}

.footer-logo2 a {
  width: 80px;
}

.thin li {
  margin: 0px;
}

.thin li::marker {
  content: " ";
}

.some-icons {
  width: 30px;
  height: 30px;
}

li img {
  width: 30%;
}

.footer-links li::marker {
  content: " ";
}

.instagram > a {
  width: 35px;
}

.facebook > a {
  width: 35px;
}

@media (min-width: 1200px) {
  .footer {
    height: auto;
    padding: 30px 66px 20px 66px;
  }
  .logo-footer {
    width: 120px;
    height: auto;
    position: relative;
    top: -15px;
    margin: 30px 0px;
  }
  li img {
    width: 100%;
  }
  .last-li {
    margin: 10px 0px 50px 0px !important;
  }
  .footer-links {
    display: inline-flex;
    margin: 0px 0px 20px 0px;
    padding: 0px;
    height: 30px;
  }
  .footer-links li {
    padding: 0px;
    width: 225px;
  }
  .footer-links a {
    font-size: 17px;
  }
  .thin a {
    font-size: 15px;
    width: auto;
  }
  .thin {
    margin-left: 0px;
    margin-bottom: 20px;
  }
  .thin li {
    margin: 10px 20px 50px 0px !important;
    width: auto;
  }
  .some-icons {
    width: 25px;
    height: 25px;
  }
  li img {
    width: 70%;
  }
  .facebook {
    right: inherit;
    top: 0px;
    margin: 10px 35px 35px 0px !important;
  }
  .first, .second {
    width: 180px !important;
  }
  .instagram {
    right: inherit;
    top: 0px;
    margin: 10px 35px 35px 0px !important;
  }
  .footer-logo1 img {
    width: 150px;
  }
  .footer-logo1 {
    top: 0px;
  }
  .footer-logo2 {
    right: inherit;
    top: 0px;
  }
  .footer-logo2 img {
    width: 70px;
  }
  .newsletter {
    width: 330px !important;
  }
}
@media (min-width: 1440px) {
  .logo-footer {
    width: 120px;
    height: auto;
    position: relative;
    top: -15px;
    margin: 30px 0px;
  }
  li img {
    width: 100%;
  }
  .last-li {
    margin: 10px 0px 50px 0px !important;
  }
  .footer-links li {
    padding: 0px;
    margin: 10px 30px 50px 0px;
    width: 250px;
  }
  .footer-links a {
    font-size: 17px;
  }
  .thin a {
    font-size: 15px;
    width: auto;
  }
  .thin li {
    margin: 10px 30px 50px 0px !important;
    width: auto;
  }
  .some-icons {
    width: 25px;
    height: 25px;
  }
  li img {
    width: 70%;
  }
  .facebook {
    right: inherit;
    margin: 10px 35px 35px 0px !important;
  }
  .first, .second {
    width: 180px !important;
  }
  .instagram {
    right: inherit;
    margin: 10px 35px 35px 0px !important;
  }
  .footer-logo1 img {
    width: 155px;
  }
  .footer-logo2 img {
    width: 80px;
  }
  .newsletter {
    width: 330px !important;
  }
}
@media (min-width: 1920px) {
  .logo-footer {
    width: 150px;
    height: 95px;
    margin: 30px 0px;
  }
  .link {
    margin-left: 75px;
  }
  .footer-links {
    display: inline-flex;
    margin: 0px;
    padding: 0px;
    align-items: center;
  }
  .footer-links li {
    margin: 20px 0px 20px 10px;
    width: 290px !important;
  }
  li img {
    width: 100%;
  }
  .footer-links a {
    text-decoration: none;
    color: white;
    font-size: 20px;
  }
  .footer-items {
    margin-bottom: 30px !important;
  }
  .thin a {
    font-weight: 400 !important;
    font-size: 18px;
  }
  .thin li {
    margin: 10px 40px 50px 15px !important;
    width: auto !important;
  }
  .newsletter {
    width: 380px !important;
  }
  .some-icons {
    width: 30px;
    height: 30px;
  }
  li img {
    width: 100%;
  }
}
.owl-dots {
  counter-reset: dots;
  display: flex;
  justify-content: center;
}

.owl-dot:before {
  counter-increment: dots;
  content: counter(dots);
  margin: 15px;
  font-weight: bold;
}

.active {
  color: #EE7100 !important;
  font-weight: bold !important;
}

#bildslider > .owl-carousel > .owl-stage-outer > .owl-stage {
  padding-left: 0px !important;
}

.owl-stage {
  left: -2px;
  padding-left: 1px !important;
}

.slider-row {
  margin: 0px !important;
}

.owl-nav {
  width: 60%;
  position: absolute;
  right: 20%;
  bottom: 60px;
}

button.owl-next {
  width: 30px;
  position: absolute;
  right: -20%;
}

button.owl-prev {
  width: 30px;
  position: absolute;
  left: -20%;
}

button.owl-next svg {
  width: 70%;
}

button.owl-prev svg {
  transform: matrix(-1, 0, 0, -1, 0, 0);
  width: 70%;
}

#bildslider > .owl-carousel > .owl-nav {
  width: 50%;
  right: 25%;
}

.slider-bild {
  display: block;
  width: 100% !important;
  margin-bottom: 30px;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.bildslider > .owl-stage-outer {
  margin-left: -10px !important;
  margin-bottom: 25px;
}

.disabled > svg {
  fill: #878786 !important;
}

.slider-row > .item {
  position: relative;
  padding-bottom: 56.2%;
}

#owl-three > .owl-stage-outer > .owl-stage > .owl-item.active {
  height: 520px;
}

@media (min-width: 768px) {
  #owl-three > .owl-stage-outer > .owl-stage > .owl-item.active {
    height: auto;
  }
  #bildslider > .owl-carousel > .owl-nav {
    width: 90%;
    right: 5%;
  }
  .owl-stage {
    left: -10px;
  }
  .owl-stage-outer {
    margin-left: 12px !important;
  }
  .owl-item {
    margin-right: 10px !important;
  }
  .owl-nav {
    width: 80%;
    position: absolute;
    right: 10%;
    bottom: 20px;
  }
  button.owl-next {
    width: 30px;
    position: absolute;
    right: 10%;
  }
  button.owl-prev {
    width: 30px;
    position: absolute;
    left: 10%;
  }
  .owl-next svg {
    width: 25%;
  }
  .owl-prev svg {
    width: 25%;
  }
}
@media (min-width: 996px) {
  .slider-bild {
    margin-bottom: 40px;
  }
  button.owl-next {
    width: 30px;
    position: absolute;
    right: 35%;
  }
  button.owl-prev {
    width: 30px;
    position: absolute;
    left: 35%;
  }
  .owl-next svg {
    width: 25%;
  }
  .owl-prev svg {
    width: 25%;
  }
}
.kontakt {
  background-color: rgba(217, 217, 217, 0.2);
  padding: 1px 0px;
  height: auto;
}

.kontakt-daten {
  padding: 0px 22px;
  position: relative;
}

.kontakt-daten h2 {
  padding: 0px 0px 5px 0px;
}

.kontakt-bild {
  padding: 0px 22px;
  height: 240px;
}

.kontakt-bild img {
  box-shadow: 6px 15px 80px -8px rgba(0, 0, 0, 0.2);
}

.kontakt-bild img, .kontakt-bild > .border-orange {
  width: 210px;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
}

.kontakt-bild > .border-orange {
  position: relative;
  top: -210px;
  left: 0px;
  margin: 0px;
}

.text-orange {
  color: #EE7100;
  font-weight: bold;
  text-transform: uppercase;
  margin: 30px 0px;
}

.adress img {
  width: 15px;
  height: 15px;
  margin-right: 15px;
}

.adress {
  margin: 5px 0px;
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.kontakt-daten a {
  color: #EE7100;
  padding: 0px !important;
}

.kontakt-daten a:hover {
  text-decoration: underline;
  color: #EB7322;
  cursor: pointer;
}

@media (min-width: 768px) {
  .kontakt-daten {
    top: -60px;
  }
  .kontakt {
    padding: 100px 0px 0px 0px;
    height: auto;
  }
  .kontakt-daten h1 {
    margin-bottom: 40px;
  }
  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
  }
  .kontakt-bild {
    position: relative;
    padding-bottom: 12%;
    height: auto;
  }
  .kontakt-bild img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    width: 50%;
    height: 80%;
  }
  .kontakt-bild > .border-orange {
    width: 347px;
    height: 338px;
    top: -5px;
    left: -1px;
  }
  .adress img {
    width: 23px;
    height: auto;
    margin-top: 5px;
    margin-right: 20px;
  }
}
@media (min-width: 996px) {
  .kontakt-bild img {
    width: 100%;
    height: 70%;
  }
  .kontakt-bild > .border-orange {
    width: 325px;
    height: 330px;
    top: -10px;
    left: -6px;
  }
}
@media (min-width: 1200px) {
  .kontakt-bild > .border-orange {
    width: 355px;
    height: 365px;
    top: -10px;
    left: 7px;
  }
}
@media (min-width: 1400px) {
  .kontakt-bild > .border-orange {
    width: 415px;
    height: 420px;
    top: -10px;
    left: 7px;
  }
}
.download-icon {
  width: 20px;
  height: auto;
  margin-right: 20px;
}

.download-link {
  align-items: center;
  color: #EE7100;
  text-decoration: none;
}

.download-link p {
  margin: 10px 0px !important;
  text-transform: uppercase;
}

.download-link:hover > h3 {
  color: #FD902C;
}

.download-link:hover {
  color: #FD902C;
}

.download-link:hover > .text {
  text-decoration: underline;
}

.download-link > h3 {
  color: #0C0C0C;
}

.download-col {
  margin-top: 0px;
  margin-bottom: 50px;
  padding: 0px;
}

#download {
  padding: 0px 22px;
}

#download > .row {
  margin: 15px 12px;
}

#download > .row > .col-md-7, #download > .row > .col-12 {
  padding: 0px;
}

.fileinfos {
  color: black;
}

@media (min-width: 768px) {
  .download-col {
    margin-top: 20px;
    margin-bottom: 70px;
  }
}
#vorschau-kacheln {
  padding: 0px 22px;
}

.vorschau-img {
  width: 320px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 0px 20px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.vorschau-link {
  color: #0C0C0C;
  text-decoration: none;
}

.vorschau {
  margin-top: 0px !important;
}

.content img {
  width: 80px !important;
  margin: auto 0px;
  text-align: center;
}

.vorschau-item p {
  color: #EE7100;
  margin: 0px !important;
}

.vorschau-item h3 {
  margin-bottom: 12px;
}

.pfeil {
  width: 185px !important;
  height: 85px;
  position: absolute;
  top: 35%;
}

.vorschau-item {
  position: relative;
  padding: 0;
  display: block;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 50px;
}

.vorschau-link:hover {
  color: #EE7100;
}

.vorschau-item h3:hover ~ .overlay-content {
  opacity: 1;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-item img {
  opacity: 0;
}

.overlay-content {
  margin: 0px !important;
  display: flex;
  justify-content: flex-start;
}

.overlay-item {
  text-align: left;
  display: inline-flex;
  align-items: center;
}

.vorschau-img-mobile {
  opacity: unset !important;
  width: 20px;
  height: 15px;
  margin-left: 8px;
}

.vorschau-img-mobile:hover {
  margin-left: 25px;
}

@media (min-width: 768px) {
  .vorschau-img-mobile {
    opacity: 0 !important;
  }
  .pfeil {
    width: 165px !important;
    height: 65px;
    position: unset;
    margin-top: 30px;
  }
  .overlay-item {
    text-align: center;
    display: unset;
  }
  .overlay-item img {
    opacity: unset;
  }
  .overlay-content {
    margin: 0px !important;
    opacity: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background-color: rgba(238, 113, 0, 0.7);
    width: 220px;
    height: 160px;
    transition: all 400ms ease-out;
  }
  .overlay-content:hover {
    opacity: 1;
  }
  .vorschau-img {
    width: 220px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0px 30px 0px;
  }
  .vorschau-item p {
    color: white;
    text-decoration: underline;
    margin: 20px !important;
  }
}
@media (min-width: 996px) {
  .vorschau-img, .overlay-content {
    width: 300px;
    height: 195px;
  }
  .pfeil {
    width: 185px !important;
    height: 85px;
    position: unset;
    margin-top: 30px;
  }
  .vorschau-item p {
    color: white;
    text-decoration: underline;
    margin: 30px !important;
  }
}
@media (min-width: 1200px) {
  .vorschau-img, .overlay-content {
    width: 360px;
    height: 255px;
  }
}
@media (min-width: 1400px) {
  .vorschau-img, .overlay-content {
    width: 420px;
    height: 315px;
  }
  .pfeil {
    margin-top: 40px;
  }
  .vorschau-item p {
    margin: -70px !important;
  }
}
.kachel {
  background-color: #EE7100;
  width: 99%;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  margin-bottom: 20px;
}

.vorteils-kacheln {
  padding: 0px 34px;
}

.vorteils-text {
  padding: 0px;
}

.vorteils-text p {
  margin-bottom: 33px;
}

.kachel p {
  color: white;
  font-weight: 500;
  text-align: center;
  width: 200px;
  position: absolute;
  top: 180px;
  margin-bottom: 35px;
}

.kachel img {
  width: 100%;
  height: 140px;
  margin-bottom: 20px;
}

.kachel-headline {
  margin: 0px !important;
}

.kachel-headline p {
  padding: 0px;
}

.kachel-headline h1 {
  padding: 0px !important;
}

.kachel-content {
  padding: 12px 0px;
}

@media (min-width: 768px) {
  .vorteils-text {
    padding: 0px 12px;
  }
  .vorteils-text p {
    margin: 50px 0px 33px 0px;
  }
  .kachel-headline h1, .kachel-headline p {
    padding: 0px 0px !important;
  }
  .kachel {
    height: 370px;
    padding: 40px;
    margin-bottom: 20px;
  }
  .kachel p {
    width: 200px;
    top: 250px;
    margin-bottom: 50px;
  }
  .kachel img {
    width: 100%;
    height: 180px;
    margin-bottom: 70px;
  }
  .owl-carousel .owl-item img {
    width: 170px;
  }
  .vorteils-kacheln {
    padding: 0px 22px 0px 0px;
  }
}
.zitat {
  background-color: rgba(217, 217, 217, 0.2);
  padding: 50px 0px;
  height: auto;
}

.zitat p {
  margin: 0px !important;
}

.zitat-unten {
  display: flex;
  justify-content: flex-end;
}

.autor p {
  margin: 5px 0px 0px 0px !important;
  position: relative;
  top: -50px;
}

.bold {
  font-weight: bold;
}

.zitat-text {
  position: relative;
}

.zitat img, .zitat-unten img {
  width: 170px;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}

.zitat .border-orange {
  width: 170px;
  height: 170px;
  top: -160px;
  left: 0px;
}

.zitat-content {
  padding: 0px 10px;
  margin: 0px !important;
}

.zitat-img {
  height: 170px;
}

svg {
  width: 28px;
  height: 78px;
  margin: 10px 0px;
}

@media (min-width: 768px) {
  .zitat {
    padding: 50px 0px;
    height: 550px;
  }
  svg {
    width: auto;
    height: auto;
    margin: 0px;
  }
  .zitat-text {
    position: unset;
  }
  .zitat-content {
    padding: 0px;
  }
  .zitat p {
    margin: 0px !important;
  }
  .zitat-unten {
    display: flex;
    justify-content: flex-end;
  }
  .autor p {
    margin: 5px 0px 0px 0px !important;
    position: relative;
    top: -95px;
  }
  .zitat img, .zitat-unten img {
    width: 325px;
    height: 325px;
    position: relative;
    top: 45px;
  }
  .zitat .border-orange {
    width: 325px;
    height: 325px;
    top: -280px;
    left: 0px;
  }
}
.jobs {
  background-color: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px;
  padding: 0px 16px;
}

#jobs {
  margin: 0px 0px 10px 0px;
}

.jobs:hover {
  background-color: #EE7100;
}

.jobs svg {
  width: 28px;
  height: 28px;
}

.jobs h3 {
  margin: 0px;
  max-width: 250px;
  padding: 20px 0px;
}

.jobs-link {
  color: black;
  text-decoration: none;
  padding: 0px;
}

.jobs-link:hover {
  color: white;
  text-decoration: none;
}

.jobs-link:hover svg {
  fill: white;
}

.job-list {
  padding: 0px 22px;
}

.job-list button {
  margin: 0px !important;
}

@media (min-width: 768px) {
  .jobs {
    align-items: center;
    justify-content: space-between;
    margin: 5px;
    padding: 0px 90px 0px 100px;
  }
  .jobs svg {
    width: 50px;
    height: auto;
  }
  #jobs {
    margin: 16px 0px;
  }
  .jobs h3 {
    max-width: 100%;
    padding: 35px 0px 35px 0px;
  }
  .job-list button {
    margin-top: 50px !important;
  }
}
.teaser-content-orange h1, .teaser-content-orange p, .teaser-content-orange .h1 {
  color: white;
}

.teaser-content-orange h1, .teaser-content-orange .h1 {
  margin: 40px 0px 25px 0px;
}

.teaser-orange {
  background: transparent linear-gradient(14deg, #EE7100 0%, #FD902C 100%);
  color: white;
  margin: 0px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
  margin-top: 50px;
}

.teaser-content-orange {
  padding: 0px 22px;
}

.teaser-content-orange > .btn-primary-background {
  margin-top: 20px;
}

.teaser-content-orange > .btn-link-background {
  margin: 50px 0px;
  padding: 0px;
}

.double-check img {
  top: -20px !important;
}

.double-check .border-grey-light-big {
  top: -270px !important;
}

.teaser-orange > .container > .teaser-items > .teaser-content {
  height: 240px;
}

.teaser-content {
  padding: 0px 22px;
}

.teaser-content img {
  position: relative;
  width: 265px;
  height: 235px;
  top: -45px;
  box-shadow: 6px 15px 80px -8px rgba(0, 0, 0, 0.2);
  -o-object-fit: cover;
     object-fit: cover;
}

.teaser-content-white h1, .teaser-content-white .h1 {
  margin: 25px 0px;
}

.teaser-content > .border-grey-light-big {
  width: 260px;
  height: 260px;
  position: relative;
  top: -295px;
  left: 5px;
}

.teaser-items {
  display: flex;
  align-items: center;
  margin: 0px !important;
  padding: 0px 10px;
}

.teaser-content p {
  font-family: "Lato, regular";
  margin: 40px 0px;
  color: black;
}

.teaser-content-white > .btn-primary {
  margin: 30px 50px 30px 0px;
}

.teaser-content-white p {
  font-family: "Lato, regular";
  color: black;
}

.teaser-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}

.double-check {
  height: 210px !important;
}

@media (min-width: 768px) {
  .teaser-orange > .container > .teaser-items > .teaser-content {
    height: 300px;
  }
  .teaser-content img {
    position: relative;
    -o-object-fit: cover;
    object-fit: cover;
    width: 50%;
    height: 100%;
  }
  .teaser-content > .border-grey-light-big {
    left: -102px;
    width: 320px;
    height: 320px;
    top: -355px;
  }
}
@media (min-width: 996px) {
  .teaser-orange > .container > .teaser-items > .teaser-content {
    height: auto;
  }
  .double-check {
    height: auto !important;
  }
  .teaser-content img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    width: 30%;
    height: 45%;
    left: -5px;
  }
  .teaser-content > .border-grey-light-big {
    left: -100px;
    width: 300px;
    height: 300px;
    top: -290px;
  }
  .teaser-content-orange {
    position: unset;
    top: 0px;
  }
}
@media (min-width: 992px) {
  .teaser-orange {
    height: 470px;
  }
  .double-check img {
    top: 30px !important;
  }
  .double-check .border-grey-light-big {
    top: -355px !important;
  }
  .teaser-content-orange {
    position: unset;
    top: 0px;
    padding: 0px 22px;
    margin-bottom: -65px;
  }
  .teaser-content-orange h1, .teaser-content-orange .h1 {
    margin: 40px 0px;
  }
  .teaser-content-orange > .btn-primary-background {
    margin: 40px 50px 0px 0px;
  }
  .teaser-content-orange > .btn-link-background {
    margin: 50px 0px;
    padding: 0px;
  }
  .teaser-content {
    padding: 0px 22px;
  }
  .teaser-content img {
    width: 365px;
    height: 365px;
    position: relative;
    top: 40px;
  }
  .teaser-content > .border-grey-light-big {
    width: 365px;
    height: 365px;
    position: relative;
    top: -330px;
    margin: 0px;
    left: 0px;
  }
  .teaser-items {
    display: flex;
    align-items: center;
    margin: 0px;
  }
  .teaser-content p {
    margin: 45px 0px;
  }
  .teaser-content-white p {
    margin: 30px 0px;
  }
  .teaser-icon {
    width: 300px;
    height: 300px;
    margin: 0px;
  }
  .teaser-content-white > .btn-primary {
    margin: 0px 50px 30px 0px;
  }
}
@media (min-width: 1200px) {
  .teaser-content img {
    width: 440px;
    height: 440px;
    top: 125px;
  }
  .teaser-content > .border-grey-light-big {
    width: 440px;
    height: 440px;
    top: -320px;
  }
  .double-check img {
    top: 110px !important;
  }
}
.text-element {
  padding: 20px 34px;
}

.text-element-items {
  display: flex;
  align-items: flex-start;
  margin: 0px !important;
}

.content-text-icon img {
  width: 55px;
  height: 55px;
}

.text-element-content > img {
  width: 305px;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-element-content > .border-orange {
  width: 305px;
  height: 305px;
  left: -2px;
  top: -300px;
}

.overline-icon {
  width: 60px;
  height: 57px;
}

.text-element-content {
  height: 340px;
  padding: 0px 22px;
}

.spalte-rechts img {
  width: 50px;
  height: 50px;
}

.spalte-rechts {
  display: flex;
  align-items: center;
}

.marginal-img {
  width: 55px !important;
  height: 55px !important;
  margin: 20px 0px;
}

.test {
  transform: rotate(180deg);
  width: 25px !important;
  height: auto;
}

.info-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px !important;
  margin-top: 0px !important;
}

.info-row > .col-md-2, .col-md-9 {
  padding: 0px;
}

.info-row > .text-element {
  padding: 0px !important;
}

.marginal-col > p {
  margin: 0px 0px 20px 0px;
}

.margin-content {
  padding: 0px;
  background-color: rgba(135, 135, 134, 0.0509803922);
  margin-bottom: 35px;
}

.margin-content-row {
  margin: 10px 0px !important;
}

@media (min-width: 768px) {
  .text-element {
    padding: 0px 12px;
  }
  .margin-content {
    padding: 0px;
    background-color: white;
    margin-bottom: 35px;
  }
  .text-element-content > .border-orange {
    width: 285px;
    height: 285px;
    left: -5px;
    top: -12px;
  }
  .text-element-content {
    position: relative;
    padding-bottom: 12%;
  }
  .marginal-img {
    margin: 0px;
    margin-bottom: 30px;
  }
  .content-text {
    position: unset;
  }
  .text-element-content > img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 80%;
  }
}
@media (min-width: 992px) {
  .text-element-content > img {
    width: 85%;
    height: 90%;
  }
  .text-element-content > .border-orange {
    width: 325px;
    height: 325px;
    left: 7px;
    top: -12px;
  }
}
@media (min-width: 1200px) {
  .marginal-img {
    margin-bottom: 0px;
  }
  .text-element-content > img {
    width: 80%;
    height: 100%;
  }
  .text-element-content > .border-orange {
    width: 360px;
    height: 360px;
    left: 5px;
    top: -12px;
  }
}
@media (min-width: 1400px) {
  .text-element-content > .border-orange {
    width: 490px;
    height: 460px;
    left: 0px;
    top: -5px;
  }
  .text-element-content > img {
    width: 90%;
    height: 130%;
  }
  .text-element-items {
    display: flex;
    align-items: flex-start;
    margin: 0px;
  }
  .overline-icon {
    width: 60px;
    height: 57px;
  }
  .content-text-icon img {
    width: 55px;
    height: 55px;
  }
  .text-element {
    padding: 0px 22px;
  }
  .text-element-content > .border-orange {
    width: 500px;
    height: 485px;
    left: -3px;
    top: -20px;
  }
}
#formular, .form-overlay-hoppla {
  background-color: white;
}

.form-overlay-danke {
  background-color: white;
  padding: 100px 14px;
}

#fileupload {
  color: #878786 !important;
  margin: 10px 0px !important;
  font-size: 15px;
}

.modal {
  z-index: 9999999999;
}

.form-overlay-hoppla {
  display: none;
}

.modal-dialog {
  max-width: 1920px !important;
  width: auto !important;
}

.modal-body {
  padding-bottom: 50px;
}

.btn-close {
  background: url(/typo3conf/ext/faft3_package/Resources/Public/Icons/cross.svg) center/2em auto no-repeat;
  opacity: 1;
}

.btn-close:focus {
  border: none !important;
}

.modal-header {
  border-bottom: none;
  position: relative;
  right: 30px;
  top: 10px;
  z-index: 99;
}

.form-overlay-col > .btn-primary > a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.formular {
  border-left: 4px solid #EE7100;
  border-right: 4px solid #EE7100;
}

.formular > form > .row {
  margin-top: 0px;
  margin-bottom: 50px;
}

.formular > form > .row > .col-4, .formular > form > .row > .col-12, .formular > form > .row > .col-10 {
  padding: 0px;
}

.close, .close-danke, .close-hoppla {
  padding: 20px 0px 40px 0px !important;
}

.formular h2 {
  padding: 0px 0px 25px 0px !important;
}

.close, .close-danke, .close-hoppla {
  width: 20px;
  height: auto;
}

.close:hover {
  cursor: pointer;
}

.form-cross, .form-cross-danke, .form-cross-hoppla {
  display: flex;
  justify-content: flex-end;
}

.form-overlay-col > img {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}

.form-overlay-col > h1 {
  margin-bottom: z5px;
}

.form-overlay-col > p {
  margin-bottom: 10px;
}

.formular-head {
  width: 100%;
  display: inline-flex;
  align-items: center;
}

.set {
  width: 15px;
  height: auto;
  position: relative;
  left: 925px;
  top: 28px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../Icons/fi-rr-angle-small-down.svg);
  background-position: calc(100% - 15px) calc(1em - 13px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 20px 30px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
}

.btn-toolbar {
  justify-content: center;
}

.btn-group > button {
  margin: 0px 0px 50px 0px;
}

label {
  margin-top: 5px;
  margin-bottom: 4px;
  color: #878786;
  font-family: "Lato, regular";
  font-size: 12px;
}

input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #242424;
  border-radius: 0px;
}

input[type=file] {
  width: 100%;
  padding: 50px;
  border-radius: 0px;
  height: 130px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='2' stroke-dasharray='10' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

textarea {
  width: 100% !important;
  padding: 5px 15px !important;
  border: 1px solid #242424 !important;
  border-radius: 0px !important;
  min-height: 220px !important;
}

.checkbox-row {
  margin: 20px 0px !important;
}

select {
  width: 100%;
  padding: 12px 15px;
}

.textarea > placeholder {
  color: #0C0C0C;
}

.datenschutz a {
  color: #EE7100;
  text-decoration: underline;
  font-size: 12px;
  font-weight: bold;
}

#checkbox {
  width: 50px;
  height: auto;
  margin: 0px;
  position: absolute;
  z-index: 99;
  left: -2px;
  top: 16px;
}

.bewerben-button {
  display: flex;
  justify-content: flex-end;
  padding: 0px 0px 80px 0px;
}

.bewerben-button button {
  margin: 0px;
}

.check-datenschutz {
  position: relative;
  padding-left: 80px;
  margin-bottom: 12px;
  cursor: pointer;
}

.form-overlay-row {
  display: flex;
  justify-content: center;
}

.form-overlay-col {
  text-align: center;
}

.form-overlay-col > button {
  margin: 0px 0px 100px 0px;
}

/* Standard Checkbox ausblenden */
.check-datenschutz input {
  opacity: 0;
}

/* Eigene Checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: 1px solid #0C0C0C;
}

/* Style eigen Checkbox */
.check-datenschutz .checkmark:after {
  left: 13px;
  top: 3px;
  width: 15px;
  height: 25px;
  border: 1px solid #0C0C0C;
  border-radius: 0px 0px 3px 0px;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check-datenschutz input:checked ~ .checkmark {
  background-color: transparent;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.check-datenschutz input:checked ~ .checkmark:after {
  display: block;
}

.datenschutz {
  color: #0C0C0C;
  font-size: 12px;
  position: absolute;
  left: 85px;
  margin-top: 7px;
  width: 250px;
}

.checkbox-col {
  display: inline-flex;
  align-items: flex-start;
  padding: 0px;
}

legend {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 17px;
  font-family: "CooperHewitt-Bold", sans-serif;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .datenschutz {
    left: -15px;
    width: 100%;
  }
  .modal-header {
    border-bottom: none;
    position: relative;
    right: 237px;
    top: 160px;
    z-index: 99;
  }
  .formular {
    border-left: 11px solid #EE7100;
    border-right: 11px solid #EE7100;
  }
  .form-overlay-col > h1 {
    margin-bottom: 50px;
  }
  .form-overlay-col > p {
    margin-bottom: 45px;
  }
  .form-overlay-col > img {
    margin-bottom: 40px;
  }
  .checkbox-row {
    margin: 50px 0px;
  }
  #formular {
    padding: 0px 150px;
  }
  .formular {
    padding: 0px 50px;
  }
  .formular > form > .row {
    margin-bottom: 100px;
  }
  .formular > form > .row > .col-4, .formular > form > .row > .col-12, .formular > form > .row > .col-10 {
    padding: 0px;
  }
  .formular h2, .close {
    padding: 100px 0px 50px 0px !important;
  }
  .close {
    width: 30px;
    height: auto;
  }
  .formular-head {
    width: 100%;
    display: inline-flex;
    align-items: center;
  }
  .set {
    width: 15px;
    height: auto;
    position: relative;
    left: 925px;
    top: 28px;
  }
  select {
    background-position: calc(100% - 30px) calc(1em - 5px), calc(100% - 15px) calc(1em + 2px), 100% 0;
    background-size: 20px 30px, 5px 5px, 2.5em 2.5em;
    background-repeat: no-repeat;
  }
  .btn-toolbar {
    justify-content: flex-end;
  }
  .btn-group > button {
    margin: 0px;
  }
  label {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 20px;
  }
  input[type=text], input[type=email], input[type=tel], textarea, select {
    width: 100%;
    padding: 12px 15px;
  }
  textarea {
    padding: 12px 15px !important;
    border-radius: 0px !important;
    min-height: 220px !important;
  }
  select {
    width: 100%;
    padding: 12px 15px;
  }
  .datenschutz a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
  }
  .datenschutz {
    font-size: 16px;
    margin-top: 28px;
  }
  .datenschutz a:hover {
    text-decoration: underline;
  }
  #checkbox {
    width: 50px;
    height: auto;
    margin: 0px;
  }
  .bewerben-button {
    display: flex;
    justify-content: flex-end;
    padding: 0px 0px 80px 0px;
  }
  .bewerben-button button {
    margin: 0px;
  }
  .check-datenschutz {
    position: relative;
    padding-left: 80px;
    margin-bottom: 12px;
    cursor: pointer;
  }
  .check-datenschutz input:checked ~ .checkmark {
    background-color: transparent;
  }
  .datenschutz {
    position: relative;
    top: 50%;
  }
  .checkbox-col {
    display: inline-flex;
    align-items: flex-end;
  }
  legend {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 0px;
  }
}
.background {
  background-color: #EE7100;
}

.socialmedia {
  text-align: center;
  margin: 0px !important;
}

.socialmedia h1 {
  color: white;
  margin: 50px 0px 30px 0px;
}

.socialmedia img {
  width: 50px;
  height: 50px;
  margin: 0px 20px 50px 20px;
}

.socialmedia img:hover {
  transform: translateY(-7px);
  transition: transform 0.3s ease-out;
}

.social-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px;
}

@media (min-width: 768px) {
  .socialmedia h1 {
    color: white;
    margin: 100px 0px 50px 0px;
  }
  .socialmedia img {
    width: 80px;
    height: 80px;
    margin: 0px 20px 100px 20px;
  }
  .socialmedia img:hover {
    transform: translateY(-7px);
    transition: transform 0.3s ease-out;
  }
}
.news a {
  color: black;
  text-decoration: none;
}

.news-image img {
  width: 220px !important;
  height: 220px !important;
  margin-bottom: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-image-detail img, .news-image-detail > .border-orange {
  width: 322px;
  height: 325px;
}

.news-col {
  justify-content: center;
}

.news-col p, .headline-news, .news-col div {
  text-align: center;
}

.news-date {
  color: #878786;
  font-size: 20px;
  margin-bottom: 15px;
}

.news-datum > .col-md-6 {
  padding: 0px;
}

.news-col div {
  font-size: 15px;
}

.news-content {
  position: relative;
  top: -145px;
}

.headline-news {
  margin-bottom: 20px !important;
}

.ext h1 {
  margin-bottom: 50px;
}

.news a {
  color: #EE7100;
  font-size: 15px;
}

.more {
  display: block;
  margin-top: 20px;
  text-align: center;
}

.news-arrow {
  width: 23px;
  height: 15px;
  position: relative;
  left: 20%;
  top: -37px;
  transition: left 0.3s ease 0s;
}

.more:hover ~ .news-arrow {
  left: 25%;
}

.news-arrow-uebersicht {
  width: 23px;
  height: 15px;
  position: relative;
  left: 70%;
  top: -37px;
  transition: left 0.3s ease 0s;
}

.more:hover ~ .news-arrow-uebersicht {
  left: 75%;
}

.news-gesamt h3 {
  color: #EE7100;
}

.news-gesamt:hover .more {
  display: block;
}

.news .news-gesamt .teaser-text {
  margin: 0px 0px -250px 0px;
}

.teaser-text {
  font-size: 20px;
}

.article > .container {
  padding: 0px 22px;
}

.news-single .article .news-img-wrap {
  margin: 0px;
}

.news-image a > .border-orange {
  width: 220px !important;
  height: 220px !important;
  top: -250px !important;
  left: 1px !important;
  display: block;
  margin: 0px auto;
}

.news-text-wrap {
  margin-top: 50px;
}

.news-list-view > .row {
  width: 100%;
  margin-bottom: 120px;
}

.news-list-date {
  color: #878786 !important;
  font-size: 15px;
  font-family: "Lato, regular";
  font-weight: 400;
}

#related-headline {
  padding: 0px !important;
}

.news-datum {
  margin: 0px 0px 16px 0px !important;
  padding: 0px 12px !important;
}

.news-image {
  height: 380px;
}

.owl-carousel .owl-item .form {
  margin: 0px auto;
}

.news-image-detail {
  height: 380px;
}

.news-row {
  margin: 0px !important;
}

.teaser-text {
  font-family: "Lato, regular";
  color: #0C0C0C !important;
  margin-bottom: 70px;
}

.bold {
  font-weight: bold;
  height: auto;
}

.more:hover {
  text-decoration: underline;
}

.news-auswahl > .news-col > .news-gesamt > .news-image > span > a > .border-orange {
  top: -220px !important;
}

.desktop {
  display: none;
}

.mobile {
  display: block;
  padding: 0px 34px;
}

.news-image-detail > .border-orange {
  position: relative;
  left: 0px;
}

hr {
  border: solid 1px #EE7100;
  opacity: 1;
  margin: 25px 0px;
}

.backarrow {
  width: 23px;
  height: 15px;
  position: relative;
  left: -120%;
  top: -2px;
  transition: left 0.3s ease 0s;
  transform: rotate(180deg);
}

.btn-back {
  margin-left: 30px;
}

.btn-back:hover > .back {
  text-decoration: underline !important;
}

.btn-back:hover > .backarrow {
  left: -125px !important;
}

.news-detail-back {
  margin-bottom: 30px !important;
}

.news-list-view {
  display: inline-flex;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

#news-container-162 > #owl-three > .owl-nav {
  width: 80% !important;
  right: 10% !important;
}

.mediaelement img, .mediaelement .border-orange {
  width: 320px !important;
  height: 325px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.related-mobile {
  padding: 0px;
}

.related-mobile > .row {
  margin: 0px;
}

.mediaelement .border-orange {
  top: -325px;
  left: 0px;
}

.news-bild {
  display: flex;
}

.news-btn > div > a {
  margin: 0px !important;
}

.news-btn a {
  color: white !important;
}

.news h1 {
  margin-bottom: 25px !important;
}

.mediaelement {
  height: 360px;
}

.related-content > .teaser-text {
  margin-bottom: -190px !important;
}

.teaser-text > div {
  font-weight: 500;
}

.related-gesamt > .col > .news-image > span > a > .border-orange {
  top: -220px !important;
}

.related-gesamt {
  margin: 0px !important;
}

.content-element {
  margin-bottom: 30px !important;
}

.news-slider-image {
  margin: 0px auto;
}

.teaser-text > div {
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .news-list-view > div {
    margin-bottom: 150px;
  }
  .news-gesamt:hover h3 {
    color: #EE7100;
  }
  .news-gesamt h3 {
    color: #0C0C0C;
  }
  .news .article .teaser-text {
    margin: 0px 0px 10px 0px;
  }
  .news-gesamt {
    height: 550px;
  }
  .news-col div {
    font-size: 20px;
  }
  .news-list-date {
    font-size: 20px;
  }
  .news-image a > .border-orange {
    width: 80% !important;
    height: 50% !important;
    top: -220px !important;
  }
  .news-arrow, .news-arrow-uebersicht {
    left: 70%;
    top: -42px;
  }
  .more:hover ~ .news-arrow {
    left: 75%;
  }
  .more {
    margin: 25px 0px;
    display: none;
  }
  .teaser-text {
    font-family: "Lato, regular";
    color: #0C0C0C !important;
    margin-bottom: 70px;
  }
  .article > .container {
    padding: 0px 12px;
  }
  .news-single .article .news-img-wrap {
    margin: 0px 0px 0px 25px;
  }
  .teaser-text {
    margin-top: 20px !important;
    font-size: 20px;
  }
  .news h1 {
    margin-bottom: 50px !important;
  }
  .mediaelement {
    height: auto;
  }
  .mediaelement img, .mediaelement .border-orange {
    width: 305px !important;
    height: 285px !important;
  }
  .mediaelement .border-orange {
    top: -290px;
    left: 0px;
  }
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }
  .news-image img {
    width: 90% !important;
    height: 50% !important;
    margin-bottom: 30px;
  }
  .news-content {
    top: -165px;
  }
  .related-gesamt > .news-image > span > a > .border-orange {
    left: -15px !important;
    top: -225px !important;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .news-image img {
    margin-bottom: 50px;
    width: 80%;
    height: 50%;
  }
  .news-date {
    margin: 0px 0px 20px -5px !important;
  }
  .news-text-wrap {
    margin-top: 70px;
  }
  .news-datum {
    margin-bottom: 10px !important;
  }
  .news-detail {
    position: relative;
    top: -90px;
  }
  .news-image-detail img, .news-image-detail > .border-orange {
    width: 345px;
    height: 324px;
  }
  .news-image-detail > .border-orange {
    top: -330px;
  }
  .news-image img, .news-image > span > a > .border-orange {
    width: 90% !important;
    height: 70% !important;
    left: 0px !important;
    top: -315px !important;
  }
  .news-content {
    top: -70px;
    width: 90%;
  }
  .related-gesamt > .news-image > span > a > .border-orange {
    left: -20px !important;
    top: -315px !important;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .news-image img, .news-image > span > a > .border-orange {
    width: 90% !important;
    height: 80% !important;
    top: -360px !important;
  }
  .news-content {
    top: -35px;
  }
  .news-detail {
    top: -190px;
  }
  .news-image-detail img, .news-image-detail > .border-orange {
    width: 445px;
    height: 424px;
  }
  .news-image-detail > .border-orange {
    top: -430px;
  }
  .mediaelement img, .mediaelement .border-orange {
    width: 445px !important;
    height: 425px !important;
  }
  .mediaelement .border-orange {
    top: -430px;
    left: 0px;
  }
  .related-gesamt > .news-image > span > a > .border-orange {
    left: -20px !important;
    top: -360px !important;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .related-gesamt > .news-image > span > a > .border-orange {
    left: -20px !important;
    top: -412px !important;
  }
  .news-image img, .news-image > span > a > .border-orange {
    width: 90% !important;
    height: 95% !important;
    top: -410px !important;
    left: 2px !important;
  }
  .news-content {
    top: 0px;
  }
  .news-image-detail img, .news-image-detail > .border-orange {
    width: 545px;
    height: 524px;
  }
  .news-image-detail > .border-orange {
    top: -530px;
  }
}
@media (min-width: 768px) and (min-width: 1920px) {
  .news-image img, .news-image > span > a > .border-orange {
    width: 90% !important;
    height: 90% !important;
    top: -395px !important;
  }
  .news a {
    color: black;
    text-decoration: none;
  }
  .news-detail {
    top: -60px;
  }
  .news-image-detail img, .news-image-detail > .border-orange {
    width: 645px;
    height: 624px;
    margin-bottom: 30px;
  }
  .news-image-detail > .border-orange {
    top: -650px;
  }
  .news a {
    color: #EE7100;
    font-size: 18px;
  }
  .news-gesamt:hover .more {
    display: block;
  }
  .news-gesamt:hover .border-orange {
    display: block;
  }
  .news .article .teaser-text {
    margin: 0 0 10px 0;
  }
  .news-image a > .border-orange {
    top: -400px !important;
    left: 25px !important;
    display: block;
  }
  .news-image {
    height: 380px;
  }
  .mediaelement img, .mediaelement .border-orange {
    width: 645px !important;
    height: 625px !important;
  }
  .mediaelement .border-orange {
    top: -635px;
    left: 0px;
  }
}
.leistung-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 270px;
}

.leistung-col {
  position: relative;
  padding-bottom: 56.2%;
  margin-bottom: 10px;
}

.leistung-items {
  margin-top: 30px !important;
}

.leistung-desktop {
  display: none;
}

.leistung-content a {
  margin: 0px;
}

@media (min-width: 768px) {
  .leistung-col {
    padding-bottom: 30%;
  }
  .leistung-img {
    margin-bottom: 0px;
  }
  .leistung-desktop {
    display: block;
  }
}
@media (min-width: 1200px) {
  .leistung-img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 350px;
  }
}
.veranstaltungen-img, .events-img > .border-orange, .events-img > img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-list {
  padding: 22px;
}

.events-img {
  height: 100px;
}

.veranstaltungen {
  margin: 60px 0px !important;
}

.veranstaltungen-content {
  margin: 85px 0px 0px 0px !important;
}

.veranstaltungen-content h3 {
  margin: 0px;
  color: #EE7100;
}

.event-location {
  display: flex !important;
  align-items: flex-start !important;
}

.event-location > img {
  margin-top: 5px;
}

.event-list > .row {
  margin: 30px 0px;
}

.event-detail > h1 {
  margin-bottom: 50px;
}

.event-detail img {
  width: 100%;
}

.veranstaltungs-info p {
  color: #878786;
  margin: 10px 0px;
  display: flex;
  align-items: center;
}

.veranstaltungs-info {
  margin: 0px !important;
  padding: 0px !important;
}

.veranstaltungs-info img {
  height: 20px;
  width: 17px;
  margin-right: 16px;
}

.veranstaltungs-beschreibung {
  margin: 0px !important;
}

.event-list a {
  color: #EE7100;
  text-decoration: none;
}

.events-img > .border-orange {
  top: -150px !important;
  left: 0px !important;
}

.event-list a:hover .veranstaltungen-headline {
  color: #EE7100;
}

.event-mehrerfahren {
  display: flex;
  align-items: center;
  padding: 0px 24px;
  margin-top: 20px;
}

.event-mehrerfahren > .btn-link {
  margin: 0px !important;
}

.hr > hr {
  margin: 0px !important;
}

.hr {
  padding: 0px 24px;
}

dl > p {
  margin: 0px !important;
}

.events.btn {
  margin: 0px;
}

.media-heading > a {
  font-family: "CooperHewitt-Bold", sans-serif !important;
}

.event-btn > .mittig > a {
  color: white;
}

.event-btn > .mittig > .btn-primary {
  margin: 0px;
}

.steckbrief {
  display: inline-flex;
  align-items: center;
  padding: 0px;
}

.steckbrief-mobile > img {
  width: 50px;
  height: 50px;
}

.steckbrief-mobile {
  padding: 0px;
}

.steckbrief-row {
  margin: 0px !important;
}

.steckbrief > img {
  width: 50px;
  height: 50px;
}

.events-infos {
  padding-left: 0px;
}

.steckbrief > h3 {
  padding-left: 20px;
}

.events-infos > dl > dt {
  color: #878786;
  font-family: "Lato, regular";
  font-weight: 500;
  margin: 0px !important;
}

.events-infos > dl > dd, dl > dl > dt {
  font-family: "Lato, regular";
  font-weight: 500;
}

dl > dt {
  margin: 0px;
}

.events-detail > .row {
  padding: 0px 10px;
}

.events-detail {
  padding: 0px !important;
}

figure > a > img {
  width: 50px !important;
  height: 50px !important;
}

.mobile-kasten {
  background-color: rgba(135, 135, 134, 0.0509803922);
  margin-left: -35px;
  margin-right: -34px;
  padding: 30px 34px;
}

.mobile-kasten .row > .steckbrief > h3 {
  padding: 25px 0px;
}

.events-infos > dl > img {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .event-detail {
    padding: 0px;
  }
  .events-infos {
    padding-left: 70px;
  }
  .veranstaltungen-img, .events-img > .border-orange, .events-img > img {
    width: 100px;
    height: 100px;
  }
  .events-img > .border-orange {
    top: -100px !important;
    left: 0px !important;
  }
  .event-list a {
    color: black;
    text-decoration: none;
  }
  #events hr {
    display: none;
  }
  .event-list {
    padding: 0px 12px;
  }
  .veranstaltungen-img, .events-img > .border-orange, .events-img > img {
    width: 222px;
    height: 222px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .veranstaltungen {
    margin: 90px 0px !important;
  }
  .veranstaltungen-content {
    margin: 0px !important;
  }
  .veranstaltungen-content h3 {
    color: black;
    margin: 0px;
  }
  .veranstaltungs-info p {
    color: #878786;
    margin: 6px 0px;
    display: flex;
    align-items: center;
  }
  .veranstaltungs-info {
    margin: 0px !important;
  }
  .veranstaltungs-info img {
    height: 20px;
    width: 17px;
    margin-right: 16px;
  }
  .veranstaltungs-beschreibung {
    margin: 0px !important;
  }
  .event-list a {
    color: black;
    text-decoration: none;
  }
  .events-img > .border-orange {
    top: -225px !important;
    left: 0px !important;
  }
  .events .media-heading > a {
    color: #EE7100 !important;
  }
  .events:hover .event-mehrerfahren {
    display: flex;
    justify-content: center;
    position: relative;
    top: 50px;
  }
  .event-mehrerfahren {
    display: none;
    padding: 0px;
    margin-top: 0px;
  }
}
#highlights {
  background: transparent linear-gradient(14deg, #EE7100 0%, #FD902C 100%);
}

.highlight {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 30px 10px;
}

.highlight p {
  color: white;
  font-weight: 400;
}

.highlight-bild {
  background-color: white;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight-bild > img {
  width: 100% !important;
  height: 90px !important;
}

.highlight h3 {
  color: white;
  font-weight: 300;
  margin: 30px 0px 0px 0px;
}

.highlight img {
  width: 120px !important;
  height: auto !important;
}

#owl-four > .owl-dots {
  color: #D9D9D9;
}

#owl-four > .owl-dots > .active {
  color: white !important;
}

#owl-four > .owl-nav > .disabled > svg {
  fill: #D9D9D9 !important;
}

#owl-four > .owl-nav > .owl-next > svg {
  fill: white !important;
}

#owl-four > .owl-nav > .owl-prev > svg {
  fill: white !important;
}

#owl-four > .owl-dots {
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  #highlights {
    background: transparent linear-gradient(14deg, #EE7100 0%, #FD902C 100%);
  }
  .highlight {
    width: 100%;
    padding: 25px;
    margin-top: 40px;
  }
  .highlight p {
    color: white;
    font-weight: 400;
  }
  .highlight h3 {
    color: white;
    font-weight: 300;
    margin: 50px 0px 0px 0px;
  }
  .highlight img {
    width: 120px !important;
    height: auto !important;
  }
}
video {
  width: 100%;
  background-color: #8d8b8b;
}

.fullwidth-video {
  position: relative;
}

.playpause {
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  bottom: 0;
  margin: auto;
  background-size: contain;
  background-position: 50%;
}

.inner-play, .playpause {
  width: 100px;
  height: 100px;
}

.container-img {
  padding: 0px 30px;
}

.inner-play {
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.inner-play img {
  width: 100% !important;
}

@media (min-width: 768px) {
  .container-img {
    padding: 0px 190px;
  }
}
body {
  background-color: #F9FAFB !important;
  word-wrap: break-word;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  background-color: #fff;
}

.row {
  margin: 50px 0px;
}

.orange-background {
  background: transparent linear-gradient(14deg, #EE7100 0%, #FD902C 100%);
  text-align: center;
}

.white-background {
  text-align: center;
}

.spacing-small {
  height: 30px;
}

.spacing-medium {
  height: 80px;
}

.spacing-large {
  height: 125px;
}

.blobs {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.form {
  border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
}

::-moz-selection {
  color: white;
  background-color: #EE7100;
}

::selection {
  color: white;
  background-color: #EE7100;
}

li {
  padding: 10px 0px 10px 15px;
  margin-left: 15px;
}

li > p {
  margin: 0px !important;
}

.footer.links > li {
  padding: 10px 0px;
  margin-left: 0px;
}

ul {
  padding: 0px;
}

.margin0 {
  margin: 0px !important;
}

.sub-menu > ul {
  padding-top: 35px;
}

.sub-menu2 {
  padding-top: 45px;
}

.border-orange {
  width: 300px;
  height: 300px;
  border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
  position: relative;
  transform: rotate(-20deg);
  border: 2px solid #EE7100;
  top: -310px;
  left: 30px;
}

.border-grey-light {
  width: 300px;
  height: 300px;
  border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
  position: relative;
  transform: rotate(-20deg);
  border: 2px solid #D9D9D9;
  top: -310px;
  left: 30px;
}

.border-grey-dark {
  width: 300px;
  height: 300px;
  border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
  position: relative;
  transform: rotate(-20deg);
  border: 2px solid #878786;
  top: -310px;
  left: 30px;
}

.form-content {
  height: 450px;
}

.border-grey-light-big {
  width: 600px;
  height: 616px;
  border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
  position: relative;
  transform: rotate(-20deg);
  border: 2px solid #D9D9D9;
  top: -430px;
  left: 10px;
}

.border-orange-big {
  width: 600px;
  height: 616px;
  border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
  position: relative;
  transform: rotate(-20deg);
  border: 2px solid #FD902C;
  top: -435px;
  left: 10px;
}

.mittig {
  display: flex;
  justify-content: center;
}

a {
  color: #EE7100;
}

a:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #EE7100;
}

.btn-zurueck:hover > .back {
  text-decoration: underline !important;
}

.btn-zurueck:hover > .backarrow {
  left: -220px !important;
}

.back-home > div > .row {
  padding: 0px 22px;
}

.back-home {
  margin-top: 50px;
}

dt > p {
  margin: 0px !important;
}

@media (min-width: 768px) {
  .btn-zurueck:hover > .backarrow {
    left: -235px !important;
  }
  .btn-zurueck {
    margin-left: 30px;
  }
  .sub-menu2 {
    padding-top: 1px;
  }
  .umm-7lorfd {
    position: fixed;
    right: calc(0% + 24px);
    left: auto;
    bottom: calc(0% + 20px);
  }
  .sub-menu > ul {
    padding-top: 0px;
  }
  .sub-menu2 > ul {
    padding-top: 0px;
  }
  .border-grey-light-big {
    width: 406px;
    height: 409px;
    border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
    position: relative;
    transform: rotate(-20deg);
    top: -305px;
    left: -100px;
    margin: 0px 0px 0px 100px;
  }
  .border-orange-big {
    width: 450px;
    height: 466px;
    border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
    position: relative;
    transform: rotate(-20deg);
    top: -455px;
    left: -35px;
    margin: 0px 0px 0px 100px;
  }
  .teaser {
    margin: 50px 100px;
    padding: 0px;
  }
  .row {
    margin: 0px;
  }
}
@media (min-width: 1200px) {
  .border-grey-light-big {
    width: 450px;
    height: 466px;
    border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
    position: relative;
    transform: rotate(-20deg);
    top: -365px;
    left: -100px;
  }
}
@media (min-width: 1920px) {
  .row {
    margin: 50px 0px;
  }
  .spacing-small {
    height: 30px;
  }
  .spacing-medium {
    height: 80px;
  }
  .spacing-large {
    height: 125px;
  }
  .border-orange {
    width: 300px;
    height: 300px;
    border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
    position: relative;
    transform: rotate(-20deg);
    top: -310px;
    left: 30px;
  }
  .border-grey-light {
    width: 300px;
    height: 300px;
    border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
    position: relative;
    transform: rotate(-20deg);
    top: -310px;
    left: 30px;
  }
  .border-grey-dark {
    width: 300px;
    height: 300px;
    border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
    position: relative;
    transform: rotate(-20deg);
    top: -310px;
    left: 30px;
  }
  .form-content {
    height: 450px;
  }
  .border-grey-light-big {
    width: 450px;
    height: 466px;
    border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
    position: relative;
    transform: rotate(-20deg);
    top: -365px;
    left: -100px;
    margin-left: 100px;
  }
  .border-orange-big {
    width: 500px;
    height: 516px;
    border-radius: 59% 100% 53% 84%/76% 60% 90% 57%;
    position: relative;
    transform: rotate(-20deg);
    top: -520px;
    left: -100px;
  }
}
.umm-rdvk7j {
  right: calc(0% + 24px) !important;
  left: auto !important;
}

.umm-gg75no, .frame-1bq9tld {
  bottom: calc(0% + 10px) !important;
}

li::marker {
  content: url("../Icons/aufzaehlung rechteck.svg");
}

li.haken::marker {
  content: url("../Icons/hake.svg");
}

.external-link::after {
  content: url("../Icons/icon-extern-link orange.svg");
  margin-left: 10px;
}

.link-down {
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .umm-gg75no, .frame-1bq9tld {
    right: calc(0% + 20px) !important;
    left: auto !important;
  }
}/*# sourceMappingURL=style.css.map */