@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
/* Setup */
body {
    font-family: 'Overpass', sans-serif;
    background: #000;
	overflow: hidden;
    position: relative;
}
html, body {

  display: flex;
  justify-content: center;
  align-items: center;
  animation: none;
}
.h1, h1 {
    font-size: 2rem;
  	padding-bottom: 5px;
}
h2 {
            hyphens: auto;
            -webkit-hyphens: auto; /* Safari and older browsers */
            -ms-hyphens: auto; /* IE 10+ */
            word-wrap: break-word;
            overflow-wrap: break-word;
            word-break: break-word; /* Optional: if you need to break long words */
            /* For better results, ensure that the text is justified */
            text-align: justify;  
}
    .h3, h3 {
        font-size: 1.5rem;
    }
.h4, h4 {
    font-size: 1em;
    line-height: 1.5em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}
p {
    font-family: 'Overpass', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
  	margin-top: 25px;
            hyphens: auto;
            -webkit-hyphens: auto; /* Safari and older browsers */
            -ms-hyphens: auto; /* IE 10+ */
            word-wrap: break-word;
            overflow-wrap: break-word;
            word-break: break-word; /* Optional: if you need to break long words */
            /* For better results, ensure that the text is justified */
            text-align: justify;  
}
a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}
a:hover, a:focus {
    text-decoration: none;
    transition: all 0.3s;
  	color: #aeaeae;
}
.btn {
  font-weight: 500;
  font-size: 20px;
  color: #7b7c7e;
  border-color: #b5b8bb;
  border-radius: 100px;
  background-color: transparent;
  padding: 15px 50px;
  letter-spacing: 1px;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}
.btn:focus,
.btn:hover {
  color: #005067;
  background-color: #fff;
  border-color: #fff;
  opacity: 1;
  outline: 0;
}
.btn-design {
	color: #fff;
    background-color: #005067;
    border-color: #005067;
    opacity: 1;
    outline: 0;
    padding: 16px 8px;
}
.btn-design:hover {
	transition: all 0.5s;
  	transform: scale(1.05);
}
.container {
  width: 80%;
  height: 80%;
}
.noStyleList {
  list-style:none;
  margin-left:0;
  padding-left:0
}
.mainWrapper {
    position: relative;
    margin-top: 100vh;
    height: 100%;
    z-index: 1;
}
.homeWrapper {
	position: absolute;
    top: 0;
    z-index: 3;
    color: #fff;
    height: 100vh;
    width: 100vw;
    /* left: 0; */
    text-align: center;
  	transition: all 0.5s;
}
.homeWrapper h1 {
    width: 100%;
  	transition: all 0.5s;
 	z-index: 2;
}
.bg-design {
  background-color: #005067 !important;
}

/* Navbar */
.navbar {
    z-index: 99;
    height: 70px;
    top: 0;
}
.navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    max-width: 80%;
    transform: translateX(100%);
    transition: transform 0.75s ease-in-out;
    background-color: #f8f9fa; /* Bootstrap light background */
}
.navbar-collapse.show {
    transform: translateX(0);
}
.navbar-toggler {
    position: absolute;
    top: 1rem;
    right: 2rem;
  	z-index:999;
}
.topleft-logo {
  top: 50px;
  left: 50px;
  width: 250px;
  height: auto;
  opacity:0;
  z-index: 99;
}
/*********/

/* slider */

.overlayMenu {
  transition:all 0.5s;  
	z-index: 9;
    position: absolute;
    color: white;
    left: 50.75vw;
    top: 35vh;
    cursor: pointer;
}
.overlayMenu li {
    cursor: pointer;
}

.carousel-inner, .carousel, .carousel-item, .carousel-container {
  height: 100vh;
  width: 100vw;
  background-position: center center;
  background-size: cover;
}

.carousel-item-prev:not(.carousel-item-end), .active.carousel-item-start {
  transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
}

.carousel-item-next:not(.carousel-item-start), .active.carousel-item-end {
  transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
}

.carousel-indicators {
    top: 15px;
    margin-right: auto;
    height: 20px;
    left: 15px;
    right: auto;
    display: block;
    position: fixed;
    margin-left: 0;
}
.carousel-indicators [data-bs-target] {
  background: none;
  border: 2px solid white;
  border-radius: 12px;
  width: 12px;
  height: 12px;
  margin-bottom: 5px;
}

.carousel-indicators li.active {
  background: white;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 4rem;
  height: 4rem;
  position: fixed;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  z-index: -1;
}

.carousel-control-prev-icon {
  top: 5%;
}
.carousel img.logo {
	width: 475px;
    height: auto;
}
.carousel-item-next, .carousel-item-prev, .carousel-item.active {
    z-index: 9;
}
.mainLogo {
  margin-top:-250px
}
.mainLogo2, .mainLogo2 span {
  height: 38.39px
}
.unclickable {
  pointer-events: none;
  z-index: 9999;
}

.clickable {
  pointer-events: all;
}

.shouldFade1, .shouldFade2, .shouldFade3 {
  opacity:0;
}

.dienstleistungImg {
  max-height: 250px;
}
/* x pages */

.circleDemo {
  max-height:250px;
  position: fixed;
    left: 20%;
    top: 40%;
  z-index: 2;
}

/* Subpages */

#webseiten, #print {
    height: 105%;
}
.demoPart {
    overflow-y: scroll;
    overflow-x: hidden;
    height:102vh;
	background-size: cover !important;
    background-repeat: no-repeat !important;  
}
.serviceList ul {
  list-style: none; /* Removes default list styling */
  padding-left: 0; /* Ensures no left padding on the list itself */
}

.serviceList ul li {
  position: relative; /* Allows absolute positioning of the pseudo-element */
  padding-left: 25px; /* Provides space for the favicon */
}


.serviceList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* Vertically centers the favicon */
  width: 16px; /* Adjust to the actual size of your favicon */
  height: 16px; /* Adjust to the actual size of your favicon */
  background-image: url('/img/circle-check-light.svg'); /* Path to your favicon */
  background-size: contain; /* Ensures the image fits within the defined size */
  background-repeat: no-repeat; /* Prevents repeating of the image */
  filter: invert(1);
}

.printImg {
    height: 400px;
}

/* mac mockup */
.chooseCheckWrapperDekstop, .chooseCheckWrapperMobile {
  width:150px;
  background: white;
  border:none;
  color: #005067;
}
.chooseCheckWrapperDekstop.active, .chooseCheckWrapperMobile.active {
  width:150px;
  background: #005067;
  border:none;
  color: white;
}
.macWrapper.demoDesktop  {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.macWrapper.demoDesktop .macShowspage {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    transform-origin: 0 0;
}

.macWrapper.demoMobile .macShowspage {
    height: 42vw;
    width: 25vw;
    border-radius: 30px;
}
/**************/
/************************/
/* 	End Section Styles 	*/
/************************/

/* Animations */

@keyframes hide-scroll {
  0% { overflow: hidden; } 
  100% { overflow: auto; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}


@-webkit-keyframes slide-in-blurred {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
            filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes slide-in-blurred {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
            filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}


.slide-in {
    transform: translateY(1000px);
    transform-origin: 50% 100%;
    filter: blur(40px);
    opacity: 0;  
}
.slide-in-blurred {
	-webkit-animation: slide-in-blurred 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	        animation: slide-in-blurred 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.fade-in {
    animation: fadeIn 2s ease-in forwards;
}
.fade-out {
    animation: fadeOut 2s ease-out forwards;
}

/*button*/
.btn-default, .btn-default:visited {
	background: transparent;
    color: #fff;
    border-radius: 35px;
    border: #fff solid 2px;
    transition: all 0.5s;
}
.btn-default:hover, .btn-default:active {
    background: #fff;
    color: #000;
    border: #000 solid 2px;
}
.main-form-button {
  display: block;
}
.trigger {
  transition: all 0.5s;
  cursor: pointer;
}
.trigger:hover {
  background: darkslategray;
}
/*********/

/* Video BG */

video {
    width: 100vw;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    min-width: 100vw;
    opacity: 1;
    filter: blur(40px);  
}
.vidBG {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    min-width: 100vw;
    background-color: #006a88;
}

/*******/

/*Form*/

input.form-control, textarea.form-control {
    border: none;
    border-radius: 5px;
}
.success-message-main {
    padding: 15px;
    margin-top: -25px;
    width: 100%;
    background: #89ffc9;
    display: none;
}
/********/


/*Footer*/
footer img {
    bottom: 15px;
  	right: 15px;
    z-index: 99;
    position: fixed;
  	width: 100px;
  	height: auto;
}

footer, .footerCopyright {
z-index: 10;
    position: absolute;
      background: #0d4050;
}

#cconsent-bar {
    background-color: #000;
    color: #fff;
    padding: 15px;
    text-align: right;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 18px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 45% !important;
    z-index: 9998;
    transform: translateY(0);
    transition: transform .6s ease-in-out;
    transition-delay: .3s;
	border-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
/**********/

/* width */
::-webkit-scrollbar {
  width: 2px;
}
/* Track */
::-webkit-scrollbar-track {
  background: black;
  border: solid 1px black;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: white; 
  border: solid 1px white;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: white; 
}
/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 1600px) {
#homeVid {
    height: auto;
    width: 100vh;  
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
    left:0;
}
  }
@media (max-width: 1399px) {
.container {
  width: 90%;
}
  #homeVid {
    height: 100vh;
    width: auto;
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
    left:0;
}
  }
@media (max-width: 1199px) and (min-width: 992px) {
.secondPart {
  margin-top: 18vh;
}
      .secondPart.addressPart {
        margin-top: 24vh !important;
    }
     .serviceList .display-4 {
        font-size: 1.5rem;
    }
  }
@media (max-width: 991px) {    
.overlayMenu {
    left: 0;
    right: 0;
}  
  .secondPart {
    margin-top:-25vh;
  }
.topleft-logo {
    top: 5px;
    left: 50px;
    width: 200px;
}    
.secondPart.teamPart {
        margin-top: -7vh;
    }  
.secondPart.xPart {
        margin-top: -7vh;
    }    
      .secondPart.addressPart {
        margin-top: 24vh !important;
    }
  .mainLogo {
    margin-top: 0px;
}
  .circleDemo {
        max-height: 120px;
        position: fixed;
        left: 50%;
        bottom: 18%;
        z-index: 2;
        top: unset;
        transform: translateX(-50%);
}
}
@media (max-width: 768px) {
video {
  	width: auto;
  	height: 100vh;
}
.homeWrapper h1 {
	font-size: 50px;
}
  .carousel-control-prev, .carousel-control-next {
    opacity:0;
    pointer-events:none;
  }
      .mainLogo {
        margin-top: 200px;
    }
.logoFooter {
    width: 30px;
    height: auto;
  }
.topleft-logo {
    top: 5px;
    left: 50px;
    width: 125px;
} 
  .teamText {
     font-size:14px;
     line-height: 14px;
  }
    .secondPart p {
    line-height: 1.25;
}
.secondPart.teamPart {
        margin-top: -14vh;
    }  
.secondPart.xPart {
        margin-top: -30vh;
    }   
  .tempHide {
    display:none;
  }
  
  #cconsent-bar {
    width: 100% !important;
    margin: 0px;
    border-radius: 0px;
}
  .outerRef {
    border: none !important;
}
}

@media (max-width: 500px) {
    .logo {
        width: 200px !important;
        height: auto;
        left: 30px;
        position: fixed;
        top: 120px;
    }  
  .carousel-control-prev, .carousel-control-next {
    display: none !important;
  }
.dienstleistungImg {
    max-height: 110px;
}
  footer span {
    font-size: 14px;
  }
    .secondPart {
        margin-top: -14vh;
    }
  .secondPart p {
    line-height: 1.25;
            font-size: 15px;
}
      .secondPart.addressPart {
        margin-top: 9vh !important;
    }
      .secondPart.addressPart2 {
        margin-top: -45vh !important;
    }  
  #map {
    height: 100px !important;
  }
  .serviceList .fs-4, .projectList .fs-4 {
    font-size: 15px !important;
}
    .projectList i.display-4 {
    font-size: 20px !important;
}
}
@media (max-width: 400px) {
.topleft-logo {
    top: 10px;
    left: 50px;
    width: 100px;
}  
  #map {
    height: 80px !important;
  }
}


