@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://use.fontawesome.com/releases/v5.8.1/css/all.css");

:root {
    --bgDesign: #2a2674;
    --bgDesignDark: #012411;
    --fontDesign: #2a2674;
    --designFont: 'Overpass', sans-serif;
}
.logo, header, .navbar, .navbar-nav, .nav-item, .nav-link, .navContainer {
      -webkit-transition: all .3s;
    transition: all .3s;  
}
html{
  position:relative;
  min-height:100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body{
  font-family:var(--designFont);
  background-color:white;
  line-height:1.8;
  color:#606060;
  padding: 0;
}
a{
  color: var(--fontDesign);
  text-decoration: none;
}
p {
  font-size: 1.25rem;
  font-weight: 200;
}
hr {
    border-top: solid 0.25px var(--bgDesign);
    opacity: 0.25;
}
ul {
    list-style-type: none;
}
#map2 {
  min-height: 500px;
  margin-bottom: 85px;
}
.introBanner, .introImage {
    height: 69vh;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  overflow: hidden;
}
.introBanner {
  margin-top: 93px;
}
.video-background {
  margin-top: -50%;
  min-width: 100vw;
}
.introBlock img {
  transition: all 0.5s;
}
/*
.introBlock img:hover {
  transform: scale(1.1);
}
*/
#intermissionCarousel .carousel-item, #intermissionCarousel-two .carousel-item {
  	height: 35vw;
    background-position: center 0 !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.owl-dot {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
    background: gray !important;
}
.owl-dot.active {
  background: var(--bgDesign) !important;
}
.owl-prev {
position: absolute;
    left: -170px;
    font-size: 89px !important;
    top: 40%;
    font-weight: 100 !important;
    transform: scaleY(0.6);
    transition: all 0.5s;
}
.owl-next {
position: absolute;
    right: -170px;
    font-size: 89px !important;
    top: 40%;
    font-weight: 100 !important;
    transform: scaleY(0.6);
    transition: all 0.5s;
}
.storyText p {
    font-size: 1.75rem;
}

.serviceBlock i {
  width: 166px;
  height: 166px;
  font-size: 64px;
}
.icon {
  width: 106px;
  height: 106px;
}
.serviceBlock h2 {
  height: 77px;
}
.karriereBtnESYS {
  background:#2a2674;
}
.karriereBtnESTUD {
  background:#005067;
}
.karriereBtnECODE {
  background:#501946;
}
.karriereBtnESYS, .karriereBtnESTUD, .karriereBtnECODE {
  height: 270px;
    width: 270px;
  transition: all 0.5s;
}
.karriereBtnESYS:hover, .karriereBtnESTUD:hover, .karriereBtnECODE:hover {
    transform: scale(1.1);
}
.karriereImg {
  filter: saturate(0) invert(1) brightness(2.5);
  padding-top: 25px;
}
.fadeIn.visible {
    opacity: 1;
}
.fadeIn {
    opacity: 0;
    transition: opacity 1s ease-in;
}
.fadeIn {
  opacity: 0;
  transition: opacity 1s ease-in;
}

.fadeIn.delayed {
  opacity: 0;
  transition: opacity 2s ease-in;
}

.fadeIn.visible {
  opacity: 1;
}
#splash {
    animation: fadeOutIntro 0.6s ease-in 0.25s forwards; /* Fades out after 1 second */
    pointer-events:none;
      transform-origin: center;
}
#splash img {
    height:83px;
}
@keyframes fadeOutIntro {
    0% {
        opacity: 1;

        filter: blur(0px);
    }   
    10% {
        opacity: 1;

        filter: blur(0px);
    }  
    100% {
        opacity: 0;
        visibility: hidden; /* Ensures the element is hidden after the fade */

        filter: blur(5px);
    }
}
#erfolgsgeschichten, #kompetenzen, #datenschutzTrigger {
  margin-top:-102px;
  padding-top:102px
}

.designFont {
	color: var(--fontDesign) !important;
}
.bgDesign {
  	background: var(--bgDesign);
}
.bg-light {
  background-color: #e9e9e9 !important;
}

/*buttons*/
.btn {
      -webkit-transition: all .3s;
    transition: all .3s;
}
.btn {
    -webkit-transition: all .3s ease-in-out 0s;
  	transition: all .3s ease-in-out 0s;
	border-radius: 6px;
    padding-top: 10px;
}
.btn-design, .btn-design:visited {
    background: white;
    border: solid 1px #501946;
  	color: var(--fontDesign);
}
.btn-design:hover, .btn-design:active {
    background: var(--bgDesign);
    border: solid 1px #501946;
  	color: white;  
}
.btn-design-dark, .btn-design-dark:visited {
    background: var(--bgDesignDark);
    border: solid 1px var(--bgDesignDark);
  	color: white;
    border-radius: 0px;
}
.btn-design-dark:hover, .btn-design-dark:active {
    background: white;
    border: solid 1px var(--bgDesignDark);
  	color: var(--fontDesign);
}
.btn-white, .btn-white:visited {
    background: var(--bgDesign);
    border: solid 1px white;
  	color: white;
}
.btn-white:hover, .btn-white:active {
    background: white;
    border: solid 1px white;
  	color: var(--fontDesign);
}
/*********/
/*Navbar*/
.logo {
    max-height: 50px;
}
.nav-link {
  font-size: 25px;
  cursor: pointer;
}
.nav-link.active {
    text-decoration: underline;
}
.navbar {
  background-color: transparent;
  z-index: 99;
}
.navbar-brand {
    left: 50%;
}

.navbar-toggler, .navbar-toggler:focus, .navbar-toggler:focus-visible {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
    width: 54px;
    height: 40px;
    cursor: pointer;
    margin-left: 15px;
    box-shadow: none;
    margin-top: -3px;
  	transition: all 0.3s;
}
.navbar-toggler.open {
    margin-top: -7px;
    margin-bottom: 7px;  
}

.line {
	width: 42px;
    border-bottom: solid black 2px;
    transition: all 0.3s;
    padding-top: 0px;
    padding-bottom: 5px;
}

.navbar-toggler.open .line:nth-child(1) {
  transform: translateY(17px) translateX(6px) rotate(45deg)
}

.navbar-toggler.open .line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.open .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/**********/

/* side menu */
.side-nav {
  height: 100vh; /* Full height */
  width: 0px; /* Initial collapsed width */
  position: fixed;
  top: 0;
  right: 0;
  background-color: white; /* White background */
  transition: width 0.3s ease; /* Slide effect */
  overflow-x: hidden;
  z-index: 5; /* Ensure it's on top */
  border-left: 0.5px solid #f7f7f7; 
}
.side-nav.open {
  width: 40vw; /* Width when expanded */
}
.side-nav.open .closeBtn {
    position: absolute;
    left: 0;
    top: 50%;
    right: unset;
    height: 35px;
    width: 35px;
    color: black;
    padding-left: 9px;
    line-height: 40px;
    font-size: 30px;
    cursor: pointer;
    border-right: solid 1px #f1f1f1;
    border-top: solid 1px #f1f1f1;
    border-bottom: solid 1px #f1f1f1;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #f1f1f1;
}
.side-nav-content {
  display: none; /* Hidden initially */
  top: 50%;
  transform: translateY(-50%);
  position: relative;
}
.side-nav.open .side-nav-content {
  display: block; /* Display content when expanded */
}
.side-nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.side-nav ul li a {
  text-decoration: none;
  color: black;
  display: block;
}
.side-nav.open ~ .hamburger-container {
  right: 0; /* Align to the right edge when menu is expanded */
}
/* Hamburger button container */
.hamburger-container {
  position: fixed;
  top: 50%;
  left: 17px; /* Align to the right edge of the closed side-nav */
  transform: translateY(-50%);
  transition: left 0.3s ease; /* Smoothly move with the menu */
  cursor: pointer;
  z-index: 1001;
}
/* Hamburger button styling */
.hamburger {
  font-size: 30px;
}
/* Smooth transition for the hamburger button if needed */
.hamburger.active {
  color: #333;
}
/****/

/* intro */
.overlay {
  z-index:2;
  min-height:100vh;
  background-color: #ffffff40 !important;
}
#intro {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.cardHeight {
  min-height: 350px;
}
/* intro end */

/*Form*/
.kontaktBox input.form-control, .kontaktBox textarea.form-control {
	border: 1px solid #501946;
    color: black;
    padding: 10px;
    box-shadow: none;
    background: white;
}
select#gender {
    border: #501946 solid 1px;
    background: #501946;
    color: white;
}
form {
  color: #222;
  letter-spacing: -1px;
  -webkit-font-smoothing: antialiased;
}
.success-message-main {
  display: none;
  font-family:'Quicksand', sans-serif;
  background: #7bc557 !important;
  border: solid 2px #7bc557 !important;
  border-radius: 0px !important;
  color: #fff !important;
  -webkit-transition: color .3s, border-color .3s, background-color .3s;
  transition: color .3s, border-color .3s, background-color .3s;
  text-transform: uppercase;
  padding: 5px;
  text-align: center;
}
.ccm__content__heading p {
  font-weight: 200;
  font-size: 1.25;
  line-height: 1.25;
}
/******/
#partner {
  margin-bottom: -15px;
}
.partnerlogo {
    max-height: 25px;
    max-width: 92px;
}
footer {
  background: #222222;
}
.companies {
    background: #222222;
}
.footerLogo {
    height: 20px;
    margin-top: 19px;
    margin-bottom: 12px;
    width: auto;
    filter: brightness(0.5);
}
/* screenconnect */
#screenconnect {
    padding-left: 0 !important;
}
#screenconnect .modal-content {
    height: 560px;
    border-radius: 0 !important;
}
#screenconnect .modal-header {
    background: #2a2674;
    border-radius: 0;
}
#screenconnect h5 {
    color: white !important;
}
#screenconnect button.close {
    opacity: 1;
    color: white;
    background: black;
    border: none;
    border-radius: 300px;
    width: 28px;
    height: 28px;
}
/*Responsive*/
.serviceBlock p, .storyBlock p {
    min-height: 350px;
}
.serviceBlock p.homeP {
    min-height: unset !important;
}
@media (max-width:1799px){
.owl-prev {
position: absolute;
    left: -90px;
}
.owl-next {
position: absolute;
    right: -90px;
}
}
@media (max-width:1599px){
.side-nav.open {
  width: 50vw; /* Width when expanded */
}
  }
@media (max-width:1499px){
.owl-prev {
position: absolute;
    left: -40px;
}
.owl-next {
position: absolute;
    right: -40px;
}
}

@media (max-width:1399px){
  .cardHeight {
    min-height: 375px;
  }
  .side-nav.open {
    width: 75vw; /* Width when expanded */
  }  
}
@media (max-width:1199px){
  .cardHeight {
    min-height: 410px;
  }
  .navbar-brand {
      left: 6rem !important;
  }  
}
@media (max-width:991px){
  .cardHeight {
    min-height: unset;
  } 
  .side-nav.open {
    width: 95vw; /* Width when expanded */
  }   
  .side-nav.open .closeBtn {
      display:none;
  }
  .serviceBlock p, .storyBlock p {
    min-height: 480px;
}
  .serviceBlock p.homeP {
    min-height: unset !important;
}
}
@media (max-width:950px){
  .video-background {
  margin-top: 0;
  min-width: unset;
  height: 100%;
  width: auto;
} 
}
@media (min-width:768px){
  h1 {
    margin-left:-37px;
  }
}
@media (max-width:767px){
  .navContainer {
    border-bottom: none !important;
  }
  .logo {
      max-height: 38px;
      margin-top: 0px;
  }  
  .companies img {
    max-height: 25px;
  }
  .introWrapper {
    padding-top: 100px;
  }
    .introWrapper {
      margin-left: 0px;
  }
  .navbar-brand {
      left: 3rem !important;
  }  
  .nav-link {
    font-size: 20px;
  }
  #sideNav p, #sideNav a {
    line-height:25px;
  }
    .serviceBlock p, .storyBlock p {
    min-height: unset;
}
  .serviceBlock p.homeP {
    min-height: unset !important;
}
 
}
@media (max-width:450px){
.introBanner, .introImage {
    height: 60vh;
}
}
@media (max-width:350px){
.partnerlogo {
    max-height: 17px;
    max-width: 84px;
}
}
/* scrollbar */
/* width */
/*
::-webkit-scrollbar {
  width: 15px;
}
*/
/* Track */
/*
::-webkit-scrollbar-track {
  background: #21282f;
  border: solid 1px #21282f;
*/
}
/* Handle */
/*
::-webkit-scrollbar-thumb {
  background: var(--bgDesign); 
  border: solid 1px var(--bgDesign);
}
*/
/* Handle on hover */
/*
::-webkit-scrollbar-thumb:hover {
  background: var(--bgDesign); 
}
*/

/* overwrite */

.lh-sm p, .lh-sm h1, .lh-sm h2, .lh-sm h3, .lh-sm h4, .lh-sm h5 {
    line-height: 1.25 !important;
}

.fs-2 p, .fs-2 h1, .fs-2 h2, .fs-2 h3, .fs-2 h4, .fs-2 h5 {
  font-size: 1.75rem !important;
}

/* Redefine group to force it to be seen as separate */
@media (max-width: 1199px) {
  .fs-2 h1, .fs-2 h2, .fs-2 h3, .fs-2 h4, .fs-2 h5, .fs-2 p {
    font-size: calc(1.3rem + .6vw) !important;
  }
}

/* design test */

.designtest .introBanner, .designtest .intermissionBlock, .footerInner .row, .designtest.introBlock  {
    margin-left: 50px;
    margin-right: 50px;
}
@media (max-width: 1199px) {
.designtest .introBanner, .designtest .intermissionBlock, .footerInner .row, .designtest.introBlock  {
    margin-left: 15px;
    margin-right: 15px;
}
}
@media (max-width: 767px) {
  .companies .row .col-md-6.d-flex a {
    display: block;
    width: 100%;
  }
  .companies .row .col-md-6.d-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

.owl-carousel .owl-stage {
    margin:auto;
}

.storyBlockInner h2 {
  min-height: 77px;
  align-content: center;
}

.g-recaptcha div {
    margin: auto;
    margin-bottom: 25px;
}



