/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
  /* CSS */
}
/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
  /* CSS */
}
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
  /* CSS */
}
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  /* CSS */
}
/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
  /* CSS */
}
/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
  /* CSS */
  body {
    font-size: 14px !important;
  }
  header {
    display: none !important;
  }
  .main-left {
    display: none;
  }
  .main-center {
    width: 100%;
  }
  .main-center .pic-stripe {
    width: 100%;
    overflow: auto;
  }
  .main-right {
    display: none;
  }
  .nav-point {
    float: none !important;
  }
  nav {
    text-align: center;
  }
  nav:focus, nav:hover {
    height: auto;
  }
  nav {
    background: #990000 !important;
  }
  nav .mn {
    display: block !important;
  }
  nav .ss {
    display: none !important;
  }
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-wrapper .contact-left {
    margin-bottom: 1.5rem;
  }
  .team-box {
    font-size: 12px;
  }
  .logo-wrap {
    height: 200px !important;
  }
  .mobile-dropdown {
    display: block !important;
    height: 0px;
    overflow: hidden;
  }
  .sub-open {
    height: auto !important;
  }
}
@keyframes slide {
  0% {
    left: 0;
  }
  5% {
    left: 0;
  }
  10% {
    left: -100%;
  }
  15% {
    left: -100%;
  }
  20% {
    left: -100%;
  }
  25% {
    left: -100%;
  }
  30% {
    left: -200%;
  }
  35% {
    left: -200%;
  }
  40% {
    left: -200%;
  }
  45% {
    left: -200%;
  }
  50% {
    left: -300%;
  }
  55% {
    left: -300%;
  }
  60% {
    left: -300%;
  }
  65% {
    left: -300%;
  }
  70% {
    left: -400%;
  }
  75% {
    left: -400%;
  }
  80% {
    left: -400%;
  }
  85% {
    left: -400%;
  }
  90% {
    left: -500%;
  }
  95% {
    left: -500%;
  }
  100% {
    left: -500%;
  }
}
* {
  box-sizing: border-box;
}

a {
  color: #990000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.bmark {
  color: #990000;
}

.headline h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #222;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 20px;
  align-items: center;
}
.headline h1:after, .headline h1:before {
  content: " ";
  display: block;
  border-bottom: 2px solid #990000;
  border-top: 2px solid #990000;
  height: 5px;
}

.headline-wrap {
  text-align: center;
}
.headline-wrap h2 {
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  border-bottom: 3px solid #990000;
}
.headline-wrap h3 {
  margin: 0.5rem 0 2.5rem;
}

body {
  background: #fff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0;
  padding: 0;
  font-size: 16px;
  width: 100vw;
  overflow-x: hidden;
}

header {
  height: calc(100vh - 50px);
  background: #131313;
  position: relative;
  display: flex;
  overflow: hidden;
}
header .arrow {
  height: 100%;
  width: 50px;
  opacity: 0.3;
  position: absolute;
  top: 0;
  z-index: 999;
}
header .arrow:hover {
  opacity: 0.9;
}
header .arrow-left {
  background: url(/assets/images/site/arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center;
  left: 10px;
}
header .arrow-right {
  background: url(/assets/images/site/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  right: 10px;
}
header .indicator-space {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 120px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
}
header .indicator-space .indicator-circle {
  box-sizing: border-box;
  height: 15px;
  width: 15px;
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5019607843);
}
header .indicator-space .indicator-circle:hover {
  border-color: #990000;
}
header .indicator-space .indicator-focus {
  border-color: #990000;
}
header .slide {
  height: 100%;
  width: 100%;
  flex: 1 0 100%;
  position: relative;
  left: 0;
  animation: slide 25s 5s infinite alternate forwards;
}
header .slide .slide-label {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  padding: 5px;
  text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
  transition: all 0.5s ease;
}
header .slide .slide-label a {
  color: #fff;
}
header .slide .slide-label a:hover {
  text-decoration: none;
}
header .slide .slide-label:hover {
  background-color: rgba(255, 255, 255, 0.5019607843);
}
header .start {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/assets/images/site/header-background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
header .logo-svg {
  width: 50vw;
}

nav {
  position: sticky;
  top: 0;
  height: 51px;
  z-index: 9999;
  background: url(/assets/images/site/Logo_2022.svg), linear-gradient(45deg, black 10%, #990000 30%);
  background-repeat: no-repeat;
  background-size: 5%, 100%;
  background-position: 3%;
  overflow: hidden;
}
nav .nav-wrap {
  background: #990000;
  list-style: none;
  width: fit-content;
  margin: 0 auto;
  padding-left: 0;
}
nav .nav-point {
  color: #fff;
  display: block;
  float: left;
  position: relative;
  text-decoration: none;
  transition-duration: 0.5s;
  text-transform: uppercase;
  font-weight: 800;
}
nav .nav-point a {
  display: block;
  padding: 1rem;
  color: #fff;
  white-space: nowrap;
}
nav .nav-point:hover,
nav .nav-point:focus-within {
  background: #bf0000;
  cursor: pointer;
}
nav .nav-point:hover .dropdown,
nav .nav-point:focus-within .dropdown {
  background: #bf0000;
}
nav .nav-point:focus-within a {
  outline: none;
}
nav .mn {
  display: none;
}

main {
  display: flex;
  min-height: 100vh;
  min-width: 100vw;
}
main .main-left {
  flex: 1;
  background: #222;
}
main .main-center {
  flex: 2;
  padding: 1.5rem;
}
main .main-right {
  flex: 1;
  background: #222;
  direction: rtl;
}

footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 100px;
  padding: 1.5rem;
  background: #990000;
  color: #fff;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #bf0000;
}

.aus {
  margin: 1.5rem;
}
.aus .aus-header {
  background: #8b0100;
  text-align: center;
  padding: 0.5rem;
  border-radius: 5px 5px 0 0;
}
.aus .aus-header span {
  color: #fff;
  font-weight: 600;
}
.aus .aus-body {
  height: 300px;
  background: #fff;
  border: 2px solid #990000;
}
.aus .aus-body .aus-img-wrap {
  height: calc(100% - 35px);
  border-bottom: 2px solid #8b0100;
  padding-top: 1.5rem;
}
.aus .aus-body .aus-img-wrap img {
  width: 100%;
}
.aus .aus-body .aus-text {
  font-weight: 600;
  padding: 0.5rem;
  height: 35px;
  text-align: center;
}
.aus .aus-body .aus-contact {
  padding: 1.5rem;
}
.aus .aus-body .aus-contact .aus-contact-company {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

.images-wrap {
  display: flex;
  flex-direction: column;
  width: 100px;
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}
.images-wrap .image-container {
  height: 100px;
  width: 100px;
  border: 1px solid #990000;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0.5rem;
  overflow: hidden;
}
.images-wrap .image-container picture img {
  width: 100px;
}

table {
  margin-top: 3rem;
}
table td {
  background: #515151;
  color: #fff;
  padding: 0.4rem;
}

.last-projekt .last-projekt-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.last-projekt .last-projekt-title a {
  color: #000;
}
.last-projekt .last-projekt-title a:hover {
  text-decoration: none;
}
.last-projekt img {
  width: 100%;
  border: 3px #990000 solid;
  margin-bottom: 1.5rem;
}

.projekt-list-link {
  display: list-item;
  list-style-position: inside;
  list-style-type: circle;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.projekt-list-link::marker {
  color: #990000;
}
.projekt-list-link a {
  color: #000;
}
.projekt-list-link a:hover {
  color: #990000;
  text-decoration: underline;
}

.content-projekt .content-projekt-topimg {
  max-width: 100%;
  border: 3px #990000 solid;
}
.content-projekt .content-projekt-attribute {
  font-weight: 600;
}

.pic-stripe {
  display: flex;
  height: 90px;
  justify-content: space-between;
}
.pic-stripe div {
  border: 3px solid #990000;
}
.pic-stripe div img {
  height: 100%;
}

.contact-wrapper {
  display: flex;
}
.contact-wrapper .contact-left {
  flex: 1;
  font-size: 0.8rem;
}
.contact-wrapper .contact-right {
  flex: 1;
}
.contact-wrapper .contact-right input {
  width: 100%;
  margin-bottom: 1.5rem;
}
.contact-wrapper .contact-right textarea {
  resize: none;
  height: 200px;
  width: 100%;
}
.contact-wrapper .contact-right .button-wrap {
  direction: rtl;
}
.contact-wrapper .contact-right .button-wrap button {
  background: #990000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 3px;
  padding: 5px;
  font-weight: 600;
}
.contact-wrapper .contact-right .button-wrap button:hover {
  background: #bf0000;
}

.side-menu-wrap {
  position: sticky;
  top: 52px;
  overflow: hidden;
  max-width: 500px;
  transition: max-width 0.75s ease;
  direction: ltr;
}
.side-menu-wrap .dropdown {
  list-style: none;
  padding-left: 1rem;
  white-space: nowrap;
  margin: 0;
  font-weight: 600;
}
.side-menu-wrap .dd-cat {
  max-height: 36px;
  overflow: hidden;
  white-space: nowrap;
  transition: max-height 0.75s ease;
  cursor: pointer;
}
.side-menu-wrap .dd-cat div {
  padding: 0.5rem;
  color: #fff;
  background: #990000;
  margin-bottom: 1px;
}
.side-menu-wrap .dd-cat .sublist {
  list-style: none;
  padding-left: 0;
}
.side-menu-wrap .dd-cat .sublist li {
  transition: left 0.75s ease;
  background: #860202;
  padding: 0.5rem;
  margin-bottom: 1px;
  position: relative;
  left: 500px;
}
.side-menu-wrap .dd-cat .sublist li a {
  color: #fff;
}
.side-menu-wrap .dd-cat .sublist li a:hover {
  text-decoration: none;
}
.side-menu-wrap .dd-cat .sublist li:hover {
  background: #bf0000;
}

.side-menu-wrap-in {
  max-width: 0px;
}

.sublist-out {
  max-height: 800px !important;
}
.sublist-out .sublist li {
  left: 0 !important;
}

.logo-wrap {
  height: 30%;
  display: flex;
  justify-content: center;
}
.logo-wrap img {
  height: 30%;
  align-self: center;
}

.overlay {
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  height: 100vh;
  width: 100vW;
  background: rgba(153, 0, 0, 0.8392156863);
}

.overlay-image-frame {
  width: 80%;
  height: 80%;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  border: 3px solid #fff;
  align-self: center;
}

.overlay-closer {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  background: url(/assets/images/site/cross-icon.svg);
}

.overlay-hidden {
  display: none;
}

.team-box {
  display: flex;
  max-width: 800px;
  justify-content: space-evenly;
}
.team-box .team-box-member {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: center;
  border: 2px solid #990000;
  border-radius: 5px 5px 0 0;
  width: 30%;
  background-color: #990000;
}
.team-box .team-box-member .team-box-member-avatar {
  flex: 1 1 auto;
  overflow: hidden;
}
.team-box .team-box-member .team-box-member-avatar img {
  max-width: 100%;
}
.team-box .team-box-member .team-box-member-label {
  flex: 1;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 4px;
}
.team-box .team-box-member .team-box-member-sublabel {
  flex: 1;
  color: #fff;
  padding: 4px;
}

.mobile-dropdown {
  display: none;
  padding: 0px;
  background-color: #be0000;
  box-shadow: inset 0px 8px 6px -6px #262626, inset 0px -8px 6px -6px #262626;
}
.mobile-dropdown .mm-cat {
  height: 16px;
  overflow: hidden;
  margin: 20px 0;
}
.mobile-dropdown .mm-cat .sublist {
  padding: 0;
  background-color: #990000;
}
.mobile-dropdown .mm-cat:first-of-type {
  margin-top: 20px;
}
.mobile-dropdown .mm-cat:last-of-type {
  margin-bottom: 10px;
}

/*# sourceMappingURL=main.css.map */