canvas,
img,
svg,
video {
  max-width: none;

  html.loading,
  body.loading {
    overflow: hidden; 
  }


  [data-aos] {
    overflow: hidden;
 
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.gallery-item {
  position: relative;
  margin-bottom: 20px; 
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item .caption {
  text-align: center;
  margin-top: 10px; /* Abstand zwischen Bild und Beschreibung */
  font-size: 14px; 
  color: #ffffff; 
}

.filter-button-group {
  margin-bottom: 20px; 
  text-align: center;
}

.filter-button-group .filter {
  margin: 5px;
  padding: 10px 20px; 
  background-color: #2c2c2c;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.filter-button-group .filter-active {
  background-color: #3f3f3f;
  font-weight: bold;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.slideshow div {
  width: 100%;
  height: 100%;
}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.content-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -0%);
  z-index: 10;
  text-align: center;
  width: 100%;
  color: white;
}

.content-wrap h1 {
  font-size: 2rem;
  margin: 0;
}

.content-wrap h1 a {
  display: block; /* block damit logo gecovert wird */
  z-index: 20; /* über anderem content */
}

.content-wrap img {
  max-width: 100%;
  height: auto;
}

/* CSS navbar */
.navbar {
  z-index: 1001; /* navbar über anderem content */
  position: fixed;
  top: 0;
  width: 100%;
}

.navbar-fixed-top .navbar-collapse {
  max-height: 400px;
}

.navbar-header,
.navbar-collapse {
  position: relative;
  z-index: 1002;
}


.navbar-header {
  position: relative;
  z-index: 1003; 
}

.navbar-brand {
  display: block;
  position: relative;
}

.logo-link {
  display: block;
  position: relative;
  z-index: 1003; 
}

.vis-hidden {
  visibility: hidden;
}

::-webkit-input-placeholder {
  color: #000000;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #000000;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000;
}

:-ms-input-placeholder {
  color: #ffffff;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  background-color: #1d1d1d;
}

i {
  color: #ffffff;
}

p,
ul.leistungen {
  font-family: "Lato", sans-serif;
}

ul.leistungen {
  margin-bottom: 40px;
}
ul.leistungen li {
  padding: 0 0 0 0.8em;
  position: relative;
}
ul.leistungen li:before {
  display: inline-block;
  content: "\003e";
  position: absolute;
  top: 0;
  left: 0;
}

body,
html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

h1,
h2,
h3,
h4 {
  font-family: "Roboto Condensed", sans-serif;
  color: #ffffff;
  font-weight: 300;
}

a {
  color: #fff;
}

a i {
  color: #fff;
}

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

input,
textarea {
  font-weight: 300;
  font-style: italic;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
}

i {
  font-size: 24px;
  margin-right: 10px;
}

p,
h1,
h2,
h3 {
  line-height: 1.5;
}

article {
  padding: 0;
}

img {
  display: block;
  width: 100%;
}

/* checkbox styles */
.custom-checkbox {
  display: inline-block; /* Inline-block checkboxes nebeneinander */
  margin-right: 10px; /* Abstand zwischen checkboxen */
  position: relative;
  cursor: pointer;
  font-size: 14px; 
  padding: 5px 10px; 
  background-color: #2b2e30;
  color: #ffffff;
  border-radius: 5px; 
  color: #fff; 
  transition: background-color 0.4s, color 0.4s; /* hover effect */
}

/* Hide default checkbox */
.custom-checkbox input[type="checkbox"] {
  visibility: hidden;
  position: absolute;
}

/* custom checkbox */
.custom-checkbox .checkmark {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #ddd;
  border-radius: 10px;
  position: relative;
  transition: background-color 0.4s;
  overflow: hidden;
  vertical-align: middle; 
  margin-right: 10px; 
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover {
  background-color: #383838; /* Slightly darker background on hover */
  color: #ffffff; /* Slightly lighter text color on hover */
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked */
.custom-checkbox input:checked ~ .checkmark {
  background-color: #08bb68; 
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(45deg) scale(1);
  opacity: 0;
  transition: all 0.4s;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotateZ(45deg) scale(1);
}

/* Style for the label text */
.custom-checkbox label {
  vertical-align: middle; /* Align with checkmark */
}

@media (max-width: 768px) {
  #projectMap {
    width: 100%;
    height: 300px;
  }
}

.suggestions {
  display: none; /* Hidden by default, shown when search box is focused  */
}

.suggestion-item {
  cursor: pointer; 
}

#projectMap {
  position: relative; /* Ensure the map container is relative */
}

.search-container {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(
    255,
    255,
    255,
    0.9
  ); /* Slightly transparent background */
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 777; 
}

#searchBox {
  color: #333;
  margin-bottom: 3px;
  width: 200px; 
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

#searchSuggestions {
  display: none;
  position: absolute;
  top: 35px; /* Adjust based on the height of the search box */
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%; /* Match the width of the search box */
  z-index: 1000; 
}

#searchBox:focus + #searchSuggestions,
#searchSuggestions:hover {
  display: block; /* Show suggestions when search box is focused or when hovering over suggestions */
}

#projectMap .leaflet-popup-content {
  font-size: 13px; 
}

#projectMap .leaflet-popup-content a {
  color: #0078d7; /* Blue color for links */
  text-decoration: underline;
}
#menu {
  width: 100%;
  background: #272a2c;
  z-index: 1000;
  position: relative;
}

#menu nav {
  border: medium none;
  background: transparent;
  margin-bottom: 0;
}

#menu nav.navbar {
  padding: 0;
  border-radius: 0;
}

#menu nav.navbar-fixed-top {
  background: #111111;
  border-bottom: 1px solid #272a2c;
  z-index: 1001;
  position: fixed;
  top: 0;
  width: 100%;
}

#menu nav a {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
}

#menu nav li {
  padding: 13px 0 0;
}

#menu nav li.active {
  border-top: 5px solid #ffffff;
  padding-top: 8px;
}

#menu nav li.active a {
  background-color: transparent;
}

#menu .navbar-header {
  margin: 5px 0;
}

#menu .navbar-brand {
  padding: 12px 0 0 15px;
}

#menu .navbar-brand img {
  width: 58px;
  float: left;
  margin-top: -10px;
  margin-right: 10px;
}

#menu .navbar-brand span {
  float: left;
  display: block;
  font-size: 48px;
  font-weight: 300;
}

#menu .navbar-brand > li > a {
  line-height: 15px;
}

@media all and (max-width: 767px) {
  #menu .nav a {
    color: #fff;
  }

  #menu .nav li.active {
    border-top: medium none;
  }

  #menu .navbar-brand {
    padding-left: 0;
  }

  #menu .navbar-brand img {
    width: 38px;
    float: left;
    margin-top: -4px;
  }

  #menu .navbar-brand span {
    font-size: 35px;
  }

  #menu #menu-content {
    background: #393939;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  #menu .navbar-brand span {
    display: none;
  }

  #menu .container {
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }
}

footer {
  text-align: right;
  background: #393939;
  padding: 15px 0;
  color: #fff;
}

footer ul {
  width: 305px;
  margin: 0 auto;
}

footer li {
  float: left;
  margin-right: 10px;
}

footer li:last-child {
  margin-right: 0;
}

html.js.csstransforms .feature .item {
  opacity: 0;
}

html.js.csstransforms .feature .item.ani-scale {
  opacity: 1;
}

html.js.csstransforms .ani-scale {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.btn {
  font-family: "Lato", sans-serif;
  background: #393939;
  color: #fff;
  border-radius: 0;
}

.btn:hover {
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.flex-direction-nav a {
  height: 45px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media all and (max-width: 767px) {
  .flex-direction-nav {
    display: none;
  }
}

.parallax {
  background-position: 50% 50%;
  background-size: cover;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 0;
  position: relative;
}

.parallax.active {
  background-attachment: fixed;
}

.parallax .container {
  padding: 90px 0;
}

.parallax.empty .container {
  padding: 150px 0;
}

div.light_rounded .pp_description,
div.light_square .pp_description {
  margin-right: 0;
}

.pp_gallery img {
  width: 50px;
  display: inline;
}

section {
  padding: 40px 0 90px;
  overflow: hidden;
}

section h2 {
  text-align: center;
  padding: 0;
  text-transform: uppercase;
}

section h2 span.etype {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  text-transform: none;
}

section .sec-header .sub-title {
  text-align: center;
}

section.no-padding {
  padding: 0;
}

section.alt {
  background: #2c2c2c;
  color: #fff;
}

section.alt i,
section.alt p,
section.alt h1,
section.alt h2,
section.alt h3,
section.alt h4,
section.alt h3.sub-title {
  color: #fff;
}

section.alt .sep {
  background: #272a2c;
}

.sec-header {
  text-align: center;
  margin-bottom: 80px;
}

.sec-header i {
  color: #000;
}

.sec-header h2 {
  margin: 10px 0;
  font-size: 48px;
  line-height: 1.1;
}

.eplusholder {
  position: relative;
}
.eplus {
  width: 120px;
  height: auto;
  position: absolute;
  left: -134px;
  top: -50px;
}

.sec-header h3.sub-title {
  font-size: 16px;
  color: #959595;
  text-transform: uppercase;
  margin-top: 0;
}

.sec-header .sep {
  height: 1px;
  margin: 0 auto 10px;
  display: block;
  width: 150px;
  background: #000;
}

@media all and (max-width: 767px) {
  .sec-header {
    margin-bottom: 60px;
  }
  .eplus {
    display: none;
  }
}

.head {
  position: relative;
  overflow: hidden;
}

.head .content-wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.head .content-wrap h1 {
  position: relative;
  top: 50%;
  margin-top: -1.2em;
}

.head .content-wrap img {
  display: inline-block;
  max-width: 800px;
  padding: 0 20px;
}

.head h1,
.head h2 {
  color: #fff;
}

.head h1 {
  font-size: 140px;
}

.head h1 span {
  padding: 0 60px;
  border: 5px solid #fff;
}

.head h2 {
  font-size: 48px;
}

.head img.big-header {
  position: relative;
  width: auto;
}

.head .hint,
.head .background {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.head .hint {
  text-align: center;
  padding: 10px 0;
  z-index: 101;
}

.head .hint img {
  width: auto;
  display: inline-block;
}

.head .background {
  height: 44px;
  opacity: 0.7;
  z-index: 100;
}

@media all and (max-width: 767px) {
  .head h1 {
    font-size: 70px;
  }

  .head h1 span {
    border: 2px solid #fff;
    padding: 0 20px;
  }

  .head h2 {
    font-size: 28px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .head h1 {
    font-size: 100.1px;
  }

  .head h2 {
    font-size: 47.88px;
  }
}

.modal-dialog {
  max-width: 768px;
  width: auto;
}

.modal-content {
  box-shadow: none;
  -webkit-box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.project .container {
  text-align: center;
}

.project .overlay,
.project .backdrop {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  text-align: center;
}

.project .backdrop {
  z-index: 100;
  background: #000;
}

.project .overlay {
  z-index: 101;
  padding-top: 15%;
}

.project .item {
  padding-left: 1px;
  padding-right: 1px;
  margin-bottom: 2px;
}

.project .item:hover .backdrop,
.project .item:hover .overlay {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  visibility: visible;
}

.project .item:hover .backdrop {
  opacity: 0.7;
}

.project .item:hover .overlay {
  opacity: 1;
}

.lt-wrap-overlay {
  position: relative;
  padding: 0;
  cursor: pointer;
}

.lt-wrap-overlay img {
  display: block;
  width: 100%;
}

.lt-wrap-overlay .lt-overlay {
  position: absolute;
  top: 0;
  text-align: center;
  padding: 17% 10px 10px;
  color: #fff;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.lt-wrap-overlay .lt-overlay .title {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lt-wrap-overlay .lt-overlay .excerpt {
  margin-bottom: 30px;
}

.lt-wrap-overlay .lt-overlay .zoom {
  padding: 11px 10px 11px 9px;
  border-radius: 25px;
}

.lt-wrap-overlay:hover .lt-overlay {
  opacity: 1;
}

.lt-wrap-overlay:hover img {
  opacity: 0.3;
  box-shadow: #000 0 0 0;
}

.proj-nav {
  margin-bottom: 35px;
}

.proj-nav li {
  float: left;
  margin-right: 20px;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .lt-wrap-overlay .lt-overlay .excerpt {
    display: none;
  }
}

/*----------------------
/* Reset pretty photo
/*----------------------*/
.pp_content_container .pp_nav {
  width: 100%;
  float: inherit;
}

.pp_content_container .pp-nav-wrapper {
  width: 60px;
  overflow: hidden;
  margin: 0 auto;
}

.testimonial .individual {
  margin-bottom: 60px;
}

.testimonial .individual .item {
  text-align: center;
}

.testimonial .individual .indicate {
  position: relative;
  height: 1px;
  border-bottom: 1px solid #000;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.testimonial .individual .indicate:after,
.testimonial .individual .indicate:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.testimonial .individual .indicate:after {
  border-color: transparent;
  border-top-color: #fff;
  border-width: 12px;
  margin-left: -12px;
}

.testimonial .individual .indicate:before {
  border-color: transparent;
  border-top-color: #000;
  border-width: 14px;
  margin-left: -14px;
}

.testimonial .individual .msg {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial .individual .avatar {
  width: 130px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.testimonial .individual .name {
  color: #000;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
  font-family: "Roboto Condensed", sans-serif;
}

.testimonial .individual .date {
  color: #959595;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

.testimonial .individual .flex-control-nav {
  bottom: -30px;
}

.testimonial .individual .flex-control-paging li {
  border: 1px solid;
  padding: 2px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin: 1px;
}

.testimonial .individual .flex-control-paging li a {
  width: 5px;
  height: 5px;
  background: #fff;
  box-shadow: none;
}

.testimonial .individual .flex-control-paging li a.flex-active {
  background: #000;
}

@media all and (max-width: 767px) {
  .testimonial .individual .indicate {
    width: 100%;
  }
}

.achievement {
  text-align: center;
}

.achievement .sec-header {
  margin-bottom: 65px;
}

.achievement span {
  font-size: 48px;
}

.achievement span i {
  font-size: 48px;
}

.achievement .sep {
  height: 1px;
  margin: 10px auto;
  display: block;
  width: 130px;
  background: #000;
}

@keyframes spin {
  from {
      transform: rotateX(0);
  }
  to {
      transform: rotateX(360deg);
  }
}

.stat {
  display: inline-block;
  font-size: 2em;
  animation: spin 0.5s linear infinite;
}

@media all and (max-width: 767px) {
  .achievement .item {
    margin-bottom: 70px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .achievement span {
    font-size: 30px;
  }
}

.pricing {
  text-align: center;
}

.pricing .item-wrapper {
  margin-bottom: 20px;
}

.pricing .item-wrapper li {
  color: #000;
}

.pricing .item-wrapper li:first-child,
.pricing .item-wrapper li:last-child {
  border-bottom: 1px solid #000;
  padding: 15px;
}

.pricing .item-wrapper li:last-child {
  border-top: 1px solid #000;
}

.pricing .item-wrapper li p {
  color: #000;
}

.pricing .item-wrapper li i {
  background: #000;
  padding: 10px;
  display: inline-block;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.pricing article ul {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #fff;
  margin-top: 30px;
}

.pricing article li.feature {
  margin-bottom: 15px;
}

.pricing article li.last {
  margin-bottom: 60px;
}

.pricing article li.head p {
  font-size: 40px;
}

.pricing article.emphasize ul {
  margin-top: 0;
}

.pricing article.emphasize li:first-child {
  padding-top: 40px;
}

.pricing article.emphasize li:last-child {
  padding-bottom: 40px;
}

.pricing .price {
  font-family: "Lato", sans-serif;
  margin: 15px 0;
}

.pricing .price .unit {
  vertical-align: top;
  font-size: 26.66667px;
}

.pricing .price .tag {
  font-size: 40px;
}

@media all and (max-width: 767px) {
  .pricing article ul {
    margin-top: 0;
  }
}

.team {
  text-align: center;
}

.team .social {
  float: left;
  width: 100px;
  text-align: left;
  margin-right: 15px;
}

.team .social li {
  float: left;
  width: 50%;
  text-align: center;
  background: #ffffff;
}

.team .social li a {
  padding: 10px 0;
}

.team .social li:first-child {
  width: 100%;
  border-bottom: 1px solid #fff;
}

.team .social li:first-child i {
  font-size: 30px;
}

.team .social li:nth-child(2) {
  border-right: 1px solid #fff;
}

.team .social i {
  color: #000;
  display: inline-block;
  margin-right: 0;
  padding: 10px 0;
}

.team .info {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 15px;
  padding: 5px 0 20px 0;
}

.team .pos {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  text-align: left;
  padding: 0 10px;
}

.team .name {
  text-align: left;
  padding: 10px;
  background-color: #242424;
}

.team-holder {
  height: auto;
  overflow: hidden;
  position: relative;
}
.team-hover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -webkit-transition: opacity ease 0.25s;
  -moz-transition: opacity ease 0.25s;
  -o-transition: opacity ease 0.25s;
  transition: opacity ease 0.25s;
}
.team-item {
  cursor: pointer;
}
.team-item:hover .team-hover {
  opacity: 1;
}

.service .sec-header {
  margin-bottom: 55px;
}

.service .item i {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 30px;
}

.service .item h3 {
  margin-bottom: 0;
  min-height: 60px;
  text-transform: uppercase;
  font-size: 20px;
  padding-left: 40px;
  position: relative;
}

.contact {
  padding-bottom: 0;
}

#logokontakt {
  width: 100%;
  height: auto;
  padding-bottom: 10px;
  max-width: 320px;
}

.contact .con-wrap {
  background: 1d1d1d;
  color: #ffffff;
  padding: 60px 0;
}

.contact .con-wrap a {
  color: #ffffff;
}

.contact .con-wrap h1,
.contact .con-wrap h2,
.contact .con-wrap h3,
.contact .con-wrap h4 {
  color: #fafafa;
}

.contact .con-wrap p {
  color: #ffffff;
}

.contact .con-wrap i {
  color: #959595;
  font-size: 14px;
  position: absolute;
  left: 2px;
  top: 2px;
}

.contact .con-wrap h3 {
  margin-top: 0;
  text-transform: uppercase;
  font-size: 16px;
}

.contact .con-wrap li {
  padding-left: 30px;
  position: relative;
  font-family: "Lato", sans-serif;
}

.contact .con-wrap textarea,
.contact .con-wrap input {
  width: 100%;
  border: 1px solid #000;
  padding: 10px;
  color: #000;
}

.contact .con-wrap textarea {
  margin-bottom: 10px;
  height: 160px;
}

.contact .con-wrap .btn {
  float: right;
}

.contact .item {
  margin-bottom: 20px;
}

.contact .sec-header {
  margin-bottom: 30px;
}

.contact input {
  margin-bottom: 15px;
}

.blog .sec-header {
  margin-bottom: 90px;
}

.blog .crd-info {
  background: #efeeef;
  padding: 5px 10px;
}

.blog .crd-info span {
  float: right;
}

.blog .crd-info .avatar img {
  display: inline-block;
  width: auto;
  height: 25px;
}

.blog .crd-info .date {
  margin-left: 10px;
  color: #000;
  font-size: 18px;
}

.blog h3 {
  margin: 0;
}

.blog a {
  color: #000;
}

@media all and (max-width: 767px) {
  .blog .item {
    margin-bottom: 20px;
  }
}

.video {
  text-align: center;
  background-position: center center;
  background-size: cover !important;
}

.video .sec-header {
  margin-bottom: 50px;
}

.video h4 {
  font-size: 36px;
  margin-bottom: 50px;
  margin-top: 0;
  line-height: 1.5;
}

.video i[data-toggle] {
  font-size: 48px;
  cursor: pointer;
}

.map {
  position: relative;
}

.map #map_content,
.map .backdrop {
  height: 110px;
}

.map .backdrop {
  position: absolute;
  bottom: 0;
  background: #393939;
  opacity: 0.5;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

.map .backdrop h3 {
  margin-top: 40px;
  color: #fff;
  text-transform: none;
}

.map.show .backdrop {
  visibility: hidden;
}

.map.show #map_content {
  height: 300px;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

#overlay {
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  z-index: 1;
  text-align: center;
}

#overlay:before {
  
  content: " ";
  display: inline-block;
  vertical-align: middle;
  
  height: 100%;
}

#overlay img {
  display: inline-block;
  vertical-align: middle;
  
}

.col20pro {
  float: left;
  width: 20%;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
@media all and (max-width: 1023px) {
  .col20pro {
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .col20pro {
    width: 100%;
  }
}

.col25pro {
  float: left;
  width: 25%;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
@media all and (max-width: 1023px) {
  .col25pro {
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .col25pro {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  body {
    font-size: 13px;
  }
  section {
    padding: 15px 0 40px;
  }
  .sec-header {
    margin-bottom: 20px;
  }
  #achievement {
    padding-bottom: 0;
  }
  .achievement .sec-header {
    margin-bottom: 20px;
  }
  .achievement .item {
    margin-bottom: 25px;
  }
  .contact .con-wrap {
    padding: 0;
  }
  .parallax .container {
    padding: 40px 0;
  }
  .sec-header h2,
  .head h2 {
    font-size: 22px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 17px;
  }
  h4 {
    font-size: 16px;
  }
  i {
    font-size: 16px;
  }
  .sec-header h3.sub-title {
    font-size: 14px;
  }
  .achievement span,
  .achievement span i,
  .video i[data-toggle] {
    font-size: 22px;
  }
  .team .info {
    font-size: 17px;
  }
  .team .pos,
  .contact .con-wrap i {
    font-size: 12px;
  }
  .service .item i {
    font-size: 17px;
  }
  .service .item h3 {
    font-size: 15px;
    min-height: 25px;
    padding-left: 25px;
  }
  .contact .con-wrap h3 {
    font-size: 15px;
  }
  .video h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

footer {
  line-height: 8px;
}
@media all and (max-width: 767px) {
}

#send,
#send:visited,
#send:hover,
#send:focus {
  width: auto;
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #ccc;
}

/* .button-group{text-align:center;margin-bottom:10px;}
.filter{margin:0 5px 5px 5px;border:2px solid #b3b3b3;background:#e5e5e5;color:#000;outline:0 !important;}
.filter-active{background:#b3b3b3;color:#000;}
h3.referenz{font-size:1em;padding:5px 0 10px 0;margin:0;text-align:center;}
a.boxed,a.boxed:focus,a.boxed:active{outline:0;} */
/* Container Setup */
.container-fluid {
  margin-top: 20px; 
}

/* Button Group */
.button-group {
  text-align: center;
  margin-bottom: 20px; /* Increased space below the button group for a more spaced layout */
  padding: 15px; /* Added padding for better appearance */
  border-radius: 5px; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

/* Filter Buttons */
.filter {
  margin: 5px;
  border: none; 
  background-color: #2b2e30; 
  color: #333; 
  outline: 0 !important;
  padding: 8px 16px; /* More padding for a larger clickable area */
  border-radius: 4px; 
  transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
  cursor: pointer; /* Cursor pointer to indicate clickable */
}

/* Hover and Focus styles for filter buttons */
.filter:hover,
.filter:focus {
  background-color: #525252; /* Lighter background on hover/focus */
  color: #ffffff; /* Keeping the text color the same for consistency */
}

/* Active Filter Button */
.filter-active {
  background-color: #b3b3b3; /* Active button background */
  color: #fff; /* White text for better contrast on active button */
  font-weight: bold; /* Make the active button text bold */
}

/* Reference Heading */
h3.referenz {
  font-size: 1em;
  padding: 5px 0 10px;
  margin: 0;
  text-align: center;
  color: #333; /* Ensured readability with darker color */
  font-weight: normal; 
}

/* Boxed Link */
a.boxed,
a.boxed:focus,
a.boxed:active {
  outline: 0;
  transition: transform 0.2s; /* Smooth transition for a subtle effect on click */
}

/* Adding a hover effect on boxed links for visual feedback */
a.boxed:hover {
  transform: scale(1.05); /* Slightly enlarge links on hover */
}

/* Responsive Adjustments - Example for smaller screens */
@media (max-width: 768px) {
  .button-group {
    display: flex;
    flex-direction: column; /* Stack buttons vertically on smaller screens */
    align-items: center; /* Center-align buttons for a tidy look */
  }
  .filter {
    width: 90%; /* Make buttons wider on smaller screens for easier interaction */
    margin-bottom: 10px; /* Increase space between stacked buttons */
  }
}

#buero {
  position: relative;
  padding-bottom: 140px !important;
}
#bmw {
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 382px;
  height: auto;
  z-index: 10;
}
#ingenieur {
  width: 50%;
  height: auto;
  max-width: 208px;
  position: relative;
  top: -20px;
}

.externav {
  float: right;
  background: url(https://www.e-plus.co.at/img/navbg.png) left center no-repeat;
  margin-left: 30px;
  padding-bottom: 10px;
  padding-left: 15px;
}
.externav li {
  float: left;
  padding: 13px 0 0;
}
.externav a {
  position: relative;
  display: block;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  padding: 15px;
  line-height: 20px;
}

@media all and (max-width: 1023px) {
  #bmw {
    width: 300px;
    bottom: -40px;
  }
}

@media all and (max-width: 767px) {
  #buero {
    padding-bottom: 120px !important;
  }
  #bmw {
    width: 250px;
    margin-left: -125px;
    bottom: -25px;
  }
  .externav {
    display: none;
  }
}

/* UIKIT */

.uk-lightbox {
  background: rgba(0, 0, 0, 1);
  z-index: 9999 !important;
}

.uk-lightbox-toolbar {
  background: transparent;
  transform: translateY(0) !important;
}

.uk-lightbox-caption {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 12px;
}

.uk-lightbox-button {
  background: transparent;
  color: #fff !important;
}

.uk-close {
  color: #fff !important;
  background: #000 !important;
}

.uk-light .uk-dotnav > * > * {
  border-color: #fff;
}

.uk-light .uk-dotnav > .uk-active > * {
  background-color: #fff;
}

.uk-lightbox-items > * > * {
  max-width: 90vw;
  max-height: 85vh;
}

@media (min-width: 768px) {
  .navbar-right {
    padding-bottom: 10px !important;
  }
}

/* Red marker */
.red-marker {
  filter: hue-rotate(128deg) saturate(1000%) brightness(0.5);
}

/* Blue marker */
.blue-marker {
  filter: hue-rotate(240deg) saturate(100%) brightness(0.8);
}

/* Green marker */
.green-marker {
  filter: hue-rotate(230deg) saturate(1000%) brightness(0.8);
}

/* Yellow marker */
.yellow-marker {
  filter: hue-rotate(190deg) saturate(700%) brightness(2.2);
}

/* Default marker */
.default-marker {
  filter: none;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (9/16 = 0.5625) */
  overflow: hidden;
}

#youtube-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-background-section {
  position: relative;
  overflow: hidden;
  height: 90vh; /* Adjust this value to reduce the height */
  margin-bottom: 40px;
}

.video-background-section iframe {
  object-fit: cover; /* Cover the area entirely */
  height: 100%; /* Adjust to ensure the video fits within the new height */
  width: 100%;
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start; /* Align items to the top left */
  align-items: flex-start; /* Align items to the top left */
  padding: 20px; 
  color: #ffffff; 
}

.content-overlay h1,
.content-overlay p {
  margin-top: 100px;
  padding: 0;
}

/* Responsive text styling for mobile devices */
@media (max-width: 768px) {
  .video-background-section {
    height: 29vh; /* Adjust the height for mobile view */
  }

  .content-overlay h1 {
    font-size: 2rem; /* Adjust font size for smaller screens */
  }

  .content-overlay p {
    font-size: 1rem; /* Adjust font size for smaller screens */
  }

  .content-overlay {
    padding: 10px; /* Reduce padding for smaller screens */
  }

  .content-overlay h1,
  .content-overlay p {
    margin-top: 50px; /* Adjust this value for better spacing on mobile */
  }

  section {
    margin-top: 0; /* Remove top margin to reduce white space */
  }
}

@media (max-width: 430px) {
  .video-background-section {
    height: 34vh; /* Adjust the height for mobile view */
  }
}

#toggle-projects-container {
  display: flex;
  justify-content: center;
  margin-top: 20px; /* Optional: add some space above the button */
}

#toggle-projects {
  display: inline-block;
}

.item span i {
  font-size: 1em; /* Adjust size as needed */
  margin-right: 10px; /* Space between icon and number */
  vertical-align: middle;
  color: #ffffff; 
}





/* neuejobs */



/* Hero Section */
.hero-content p {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -0%);
  z-index: 10;
  text-align: center;
  width: 100%;
  color: white;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero-content h1 a {
  display: block; /* Ensure the link is block level to cover the logo */
  z-index: 20; /* Ensure the link is above other content */
}

.cta-button {
  background: #BDCE00;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
}

/* Intro Section */
.intro {
  text-align: center;
  padding: 50px 20px;
  background: #f7f7f7;
}

.intro h2 {
  margin-bottom: 20px;
}

/* About Us Section */
/* Updated About Us Section */
.about-us {
  display: flex; /* Use Flexbox for alignment */
  gap: 20px; /* Space between the text and image */
  padding: 50px 20px;
  background: #fff;
  align-items: center; /* Vertically center the text */
  justify-content: space-between; /* Push the text to the left and image to the right */
}

.about-us .content {
  flex: 1; /* Allow the content to take up one portion of the available space */
  text-align: center; /* Center-align the text within its container */
}

.about-us .image {
  flex: 1; /* Allow the image to take up one portion of the available space */
  display: flex; /* Use Flexbox for the image container */
  justify-content: left; /* Align the image to the right */
}

.about-us .image img {
  width: 100%; /* Ensures it fits within its container */
  max-width: 500px; /* Limits the maximum width */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Rounded corners */
  object-fit: cover; /* Scale nicely */
}

.about-us .text-content {
  flex: 1;
}

.about-us ul {
  list-style-type: disc;
  margin: 20px 0;
  padding-left: 40px;
}

.about-us .cta-link
{
  display: inline-block;
    background-color: #BDCE00; /* Button color */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;

}

@media (max-width: 768px) {
  .about-us {
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center-align items */
  }

  .about-us .image {
    justify-content: center; /* Center the image in its row */
    margin-top: 20px; /* Add space between the text and image */
  }

  .about-us .image img {
    max-width: 300px; /* Reduce image size for smaller screens */
  }
}

.mitarbeiter {
  text-align: center; /* Centers text and images horizontally */
  padding: 50px 20px;
  background: #393939;
  display: flex; /* Enables Flexbox for centering */
  flex-direction: column; /* Stacks content vertically */
  align-items: center; /* Centers content horizontally */
  justify-content: center; /* Centers content vertically */
}

.mitarbeiter .content {
  text-align: center; /* Centers the text within the container */
  margin-bottom: 20px; /* Adds spacing below the heading and paragraph */
}

.team-grid {
  display: flex; /* Enables Flexbox for the grid */
  flex-wrap: wrap; /* Allows the images to wrap to the next row if necessary */
  justify-content: center; /* Centers the images horizontally */
  gap: 20px; /* Adds spacing between images */
}

.mitarbeiter img {
  width: 120px; /* Sets the image width */
  height: 120px; /* Sets the image height */
  max-width: 100%; /* Ensures responsiveness */
  object-fit: cover; /* Prevents distortion */
  border-radius: 50%; /* Keeps the images circular */
  margin: 10px; /* Adds uniform spacing around each image */
}

.mitarbeiter h2, .mitarbeiter p {
  color: white;
}

@media (max-width: 768px) {
  .about-us {
    flex-direction: column; /* Stacks the content vertically */
    text-align: center; /* Centers the text */
  }

  .about-us .image img {
    max-width: 300px; /* Reduces the size further for small screens */
  }

  .team-images {
    flex-wrap: wrap; /* Allows team images to wrap to the next line */
    justify-content: center; /* Centers the images */
  }

  .team-images img {
    width: 100px; /* Smaller size for mobile */
    height: 100px;
  }
}

/* Job Listings Section */
.jobs {
  padding: 50px 20px;
  background: #fff;
}

.job-item h3 {
  margin-bottom: 10px;
}

.expand-button {
  background: #BDCE00;
  color: rgb(0, 0, 0);
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer Section */
.footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
}

.jobs .cta-link {
  display: inline-block;
  background-color: #BDCE00; /* Button color */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
}

#jobs .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh; /* Adjust based on your preference */
}

#jobs .image-column, #jobs .text-column {
  flex: 0 0 50%; /* Ensure both columns take up equal space */
  max-width: 50%;
  box-sizing: border-box;
}

#jobs .image-column {
  text-align: left;
}

#jobs .text-column {
  padding-left: 180px;
}

#jobs h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
  color: rgb(0, 0, 0);
}

#jobs h3 {
  font-size: 1.2em;
  text-align: left;
  color: rgb(0, 0, 0);
}

.job-list {
  display: grid; /* Use grid layout for job items */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Auto-adjust columns */
  gap: 20px; /* Add space between job items */
  width: 100%;
}

.job-item {
  border: 1px solid #000; /* Optional: Add a border for better visual separation */
  border-radius: 5px; /* Optional: Rounded corners */
  padding: 20px;
  background-color: #f9f9f9; /* Optional: Add a background color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
  border-bottom: 1px solid #000000;
  padding: 20px 0;
}

.job-title {
  cursor: pointer;
  font-size: 1.5em;
  color: #000000;
  margin: 0;
  position: relative;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}

.job-title .plus-sign {
  font-size: 1em;
  color: #000000;
  justify-content: right;
  align-items: right;
}

.job-description {
  display: none;
  padding-left: 10px;
  font-size: 1em;
  color: #000000;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  max-height: 0px;
  margin-top: 10px;
  color: #666;
  text-align: center;
}

.job-item.active .job-description {
  display: block;

}

.job-item.active .plus-sign {
  transform: rotate(45deg);
}

.job-description.open {
  display: block; /* Show the content */
  max-height: 500px; /* Set a reasonable max height */
}

@media (max-width: 768px) {
  .job-item {
      flex: 1 1 100%; /* Single column for small screens */
  }

  .job-description {
      max-height: none; /* Allow full content visibility on smaller screens */
  }
}




.leaflet-top {
  z-index: 777;
}

.leaflet-container .leaflet-control-attribution {
  background-color: var(--darkreader-background-ffffffcc, rgba(24, 26, 27, 0.8));
  background-image: none;
  z-index: 1;
}