/* nunito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/nunito-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/nunito-v26-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/nunito-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/montserrat-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* material symbols */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  src: url(/icons/subset.woff2) format('woff2');
}

html {
  overflow-x: hidden !important;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  overflow-y:auto;
  overflow-x: hidden !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: rgba(190, 195, 198, 0.2);
}


/* General */
* {
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: rgb(58, 59, 60);
  margin: 0;
  padding: 0;
}

.secHeaders {
  width: 100%;
  text-align: left;
  visibility: hidden;
}

h1 {
  margin-bottom: 2px;
  color: #2E5266FF;
  font-size: 22px;
  font-weight: 700;
}

h2{
  width: 100%;
  margin-bottom: 30px;
  text-align: left;
  color: #3A3B3C;
  font-size: 28px;
  font-weight: 400;
}


button {

    cursor: pointer;

}



button:focus {

    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25) !important;

}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 0;
  font-size: 35px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  align-items: start;
  justify-content: center;
  text-align: center;
  overflow-x: hidden !important;
    background-color: rgba(242, 243, 243, 0.7);

}

.content {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
  padding-left: 30px;
  padding-right: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-container {
  width: 100%;
}


/* Moving Background Image */
#backimg {
  position: absolute;
  left: 70%;
  height: calc(100vh + 85px);
  z-index: 1;
  opacity: 0;
      display: none;

}

#backimg.docked {
  position: fixed;
}


/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  right: -200px;
  height: 100vh;
  width: 200px;
  z-index: 9;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  transition: all 500ms ease;
}

nav.active {
  right: 0px;
}

nav.short {
  top: 49px;
  height: calc(100vh - 50px);
  padding-top: 0;
}

nav.short .nav-links {
  padding-top: 10px !important;
}

ul.nav-links {
  position: relative;
  height: 100%;
  width: 200px;
  padding-top: 50px !important;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  font-size: 15px;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

ul.nav-links p {
  display: block;
  color: white;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700 !important;
  width: fit-content;
      border-bottom: 2px solid transparent;
      transition: all 0.25s ease;

  }

li.nav-click {
  margin: 0 25px;
  cursor: pointer;

}

li.nav-click:hover {
  opacity: 0.7;
}

li.nav-click.active p {
  border-bottom: 2px solid white;

  color: white;
}


/* Top Bar */
.top-bar {
  position: fixed;
  top: -50px;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  transition: all 500ms ease 0s;
  background-color: rgba(46, 82, 102, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.top-bar.active {
  position: fixed;
  top: 0;
    transition: all 500ms ease 0;

}


/* Menu Button */
.hamburger {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1000;
  -webkit-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition:all 0.3s linear;
  visibility: hidden;
}

.hamburger.fixed, .hamburger.is-active {
  position: fixed;
  top: 0px;
}



.hamburger-box {
  margin-top: 2px;
}



/* Language Button */
#language {
  display: none;
  color: white;
  position: absolute;
  border: none;
  right: 85px;
  top: 15px;
height: 50px;
background: transparent;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s linear;
z-index: 1000;
transition: all 0.2s ease;

}

#language.fixed {
  position: fixed;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.2s, opacity 0.2s linear;

}


#language.is-active {
  position: fixed;
  top: 0;
  visibility: visible; !important;
  opacity: 1 !important;

}


#language span {
  color: white;
display: flex;
flex-direction: row;
justify-content: center;
vertical-align: middle;

  background-color: rgba(255, 255, 255, 0.2);
    border: 4px solid transparent;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}



#language span p {
  
  font-weight: 700;
  color: rgb(58, 59, 60);
  margin-right: 3px;
  margin-left: 3px;
  font-size: 10px;
  padding: 3px;
    border: 2.5px solid transparent;
  border-radius: 20px;
  transition: all 0.2s ease;
}

#language span p:hover {
  
  
  background-color: rgba(255, 255, 255, 0.2);
}


#language span p.active {
  color: white;
  margin-top: 0px;
background-color: #2E5266FF;
padding: 3px;
font-size: 10px;
    border: 2px solid #2E5266FF;
  border-radius: 20px;
}





/* Section 1 */

#Sec1 {
  flex-direction: column;
  height: auto;
  overflow-y: hidden !important;
    background-color: transparent;

}

#Page1 {
  left: 0;
  top: 0;
  height: auto;
  min-height: 100vh;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
}

#logoPlaceholder {
  width: 50vw;
}

#logo {
  position: absolute;
  top: calc(50vh - 112.5px);
  left: calc(25vw - 135px);
  width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
  pointer-events: none;
  transition-property: left, right;
  transition-duration: 0.5s;
  z-index: 2;

}

#logo.fixed {
  position: fixed;
  top: 0;
    left: calc(25vw - 135px);


}

#logo.fixed.active {
left: 20px;

}

#logo.active {

  transition-delay: 0.5s;
}

#logoSvg {
  height: 135px;
  padding-top: 10px;
}

#logoSvg.active {
  height: 37px;
  transition-delay:0s;
}

#logoTxt {
  top: calc(45% + 80px);
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  visibility: hidden;
    transition: opacity 0.3s ease 0.5s;


    margin-top: 5px;
}

#logoTxt.active {
    margin-top: 80px;

  opacity: 0;
    transition: opacity 0.3s ease;

}

#logoTxt h1 {
  min-width: 300px;
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-size: 28px; 
  font-weight: 700;
  overflow-wrap: break-word;
  text-align: left;
}

#logo #logoTxt .vorname h1 {
  letter-spacing:10px;
  margin-top: 5px;
}

#logo #logoTxt .nachname h1 {
  letter-spacing:9px;
}

#logoTxt h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2E5266FF;
  font-size: 18px; 
  letter-spacing:10px;
  margin-top: 6px;
  margin-bottom: 0;
  text-align: left;
}



#logo a {

  
  top: 0;
width: 270px;
height: 113px;
margin-top: 6.5px;



}

.introLogo {

  position: absolute;
  left: 0;
  height: 113px;

  transition: height 0.3s ease 0.5s,  width 0.3s ease 0.5s;
  transform-origin: center;

  visibility: hidden;

}

#logo.active a, #logo.active a .introLogo {
  height: 37px;
  transition-delay:0.0s;
width: 90px;
}
#logo.active a {

width: 90px;

}



#contacts {
  height: auto;
    width: 50vw;
  margin-top: 90px;
  margin-bottom: 60px;
    padding-right: 20px;
    padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
visibility: hidden;
}

#forms {
  display: flex;
  flex-direction: column;
      width: calc(100% - 20px);

}

#formSwitchButton {
  display: flex;
  flex-direction: row;
    min-width: 20px;


}

.formIcons {
  height: 40px;
  width: calc(50%);
  max-width: 225px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #2E5266FF;
  border-style: solid;
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.2);
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.15s linear;
}

.formIconTxt {
  margin-left: 10px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  color: rgb(58, 59, 60);
  font-size: 12px;
  font-weight: 700;

 }

.formIcons .material-symbols-outlined {
  font-size: 25px;
}

#contactFormIcon{
  border-top-right-radius:5px;
  border-bottom-right-radius:5px;
}

#calendarFormIcon {
  border-top-left-radius:5px;
  border-bottom-left-radius:5px;
}

.formIcons.active {
  cursor: pointer;
  color: white;
  background-color: #2E5266FF;
border-style: solid;
    border-color: #2E5266FF;

}





.formIcons.active .formIconTxt {
 cursor: pointer;
  color: white;

}

.formIcons.active .material-symbols-outlined {
  color: white;
}

#formContainer {
  width: 100%;
max-width:450px;
  height: 360px;
  margin-top: 5px;
    overflow-y: hidden;
  transition: height 0.35s linear;
      border-bottom-style: solid;
  border-color: #2E5266FF;

}

#calendarForm {
  display: none;
  justify-content: center;
  height: 100%;
  width: 100%;
      border-top-style: solid;
    border-style: none;
  border-color: rgb(242, 243, 243);
border-radius: 10px;
    margin-top: 10px;
position: relative;
}

#calendarForm.active {


}

#calendarForm iframe{

  height: 100%;
  width: 100%;

    border:none;
visibility: hidden;
}

#loadIndicator {

position: absolute;


    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);

width: 80px;
height: 80px;

  margin-left: auto; 
  margin-right: auto; 

}

#contactForm {
height: 100%;
display: flex;
}

form {
  display: flex;
    width: 100%;
  margin-top: 5px;
  padding-bottom:8px;
  flex-direction: column;
  align-items: left;
  text-align: left;

  background-color: transparent;
}

#messageSent {
margin: auto;
  text-align: center;

  background-color: transparent;
    display: none;
}


form h1 {
    font-size: 14px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom:10px;
    color: rgb(58, 59, 60);
}

input, textarea {
  width: 100%;
  padding: 5px;
  background-color: rgba(255,255,255, 1);
  border: 0;
  border-bottom: 2px solid #2E5266FF;
  border-radius: 2.5px;
  color: black;
  font-size: 12px; 
  resize: none;
  margin-bottom: 15px;
}

label {
  padding-bottom: 5px;
  font-size: 12px; 
  font-weight: 400;
  color: rgb(58, 59, 60);

}

button { 
 background-color: rgba(255, 255, 255, 0.2);
transition: all 0.15s linear;
}





form button, #messageSent button{
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
  padding-left: 5px;
  color: rgb(58, 59, 60);
  text-decoration-thickness: 1.2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing:0.5px;
  border: solid 2.5px transparent;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

form button:hover, #messageSent button:hover, .formIcons:hover {

  cursor: pointer;
border: 2.5px solid #2E5266FF;

}

form button:active, #messageSent button:active {

  cursor: pointer;
border: 2.5px solid #2E5266FF;
background-color: #2E5266FF;
color: white;

}

#contactLinks {
  width: calc(50vw - 40px);
  max-width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contactIcons .material-symbols-outlined {
  color: #2E5266FF;

  margin-right: 5px;
  transition: 0.2s;
}

.contactIcons {
  position: relative;
  left: 0;
  width: 180px;
  margin-top: 15px;
  display: block;
  border: solid 2px transparent;
  border-radius: 5px;

}

.contactIcons a {
  width: max-content;
  display: flex;
  align-items: center;
  vertical-align: middle;
  text-align: left;
  color: #2E5266FF;
  letter-spacing:0.5px;
}

.contactIcons:hover .material-symbols-outlined {
  color: white;
}

.link{
  border-style: solid;
  border-width: 4px;
  border-color: transparent;
  color: #2E5266FF;
  font-size: 12px;
  font-weight: 700;
}

#developmentBanner {
  width: 100%;
  padding-top: 60px;

  padding-bottom: 60px;

  background-color: transparent;
display: flex;
justify-content: center;
visibility: hidden;
}


#developmentContainer {
  position: relative;
    width: 100%;
  max-width: 1000px;
  padding-left: 30px;
    padding-right: 30px;
}


#developmentIconContainer {
  position: absolute;
top: 10px;
right: 50px;
  width: 150px;
  height: 150px;

  background-color: #2E5266FF;
  border-style: solid;
  border-color: rgba(255, 255, 255, 1);
  border-width: 3px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
 }

#developmentIconContainer .material-symbols-outlined {
  margin-right: 2px;
  font-size: 90px;
  margin-top: 27px;
  height: 100px;
  color: white;

   }

  #developmentTxt {
width: calc(100% - 210px);
font-size: 18px;

  }


/* Section 2 */
#Sec2 {
  width: 100%;
  color: #2E5266FF;
  overflow-y: hidden;
  overflow-x: hidden !important;
  background-color: transparent;
  background-color: rgba(242, 243, 243, 0.8);
  min-height: initial;
}

#Page2 {
  flex-direction: column;
  font-size: 20px;
  overflow: visible;
}

.teamMember {
  top: 0px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: start;
  text-align: left;
  font-size: 25px;
    visibility: hidden;


}

 .teamName {
position: relative;
text-align: left;
margin-bottom: 0;
width: fit-content;
 }



.teamPosition {

font-size: 14pt;
width: fit-content;
margin-bottom: 30px;
}

.teamMember:nth-of-type(2n + 1) .teamName, .teamMember:nth-of-type(2n + 1) .teamPosition {

text-align: right;
 }



.teamAbout {
  top: 0px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
  align-items: start;
  text-align: justify;
  font-size: 25px;
}


.teamMember:nth-of-type(2n + 1) .teamAbout {
  flex-direction: row;

}



.teamTxt {
  width: calc(100% - 190px);
  margin-bottom: 30px;
  padding-left: 50px;
  font-size: 17px;
  color: #3A3B3C;
}

.teamMember:nth-of-type(2n + 1) .teamTxt {
  padding-left: 0;
    padding-right: 50px;


}



.teamMember:not(:last-of-type) {

  border-bottom: solid;
  border-color: #A6B8CA;
  border-width: 1px;
margin-bottom: 25px;
}


.teamMemberTitle {
display:inline-block;
width: fit-content;
margin-left: 0;
}

.teamMember:nth-of-type(2n + 1) .teamMemberTitle {
margin-left: auto;


}



  .teamFotoContainer {
  width: 175px;
  height: 175px;
  background-color: white;
  margin-top: 0px;
  margin-left: 20px;
  padding-left: 10px;
  border-style: solid;
  border-color: #A6B8CA;
  border-width: 3px;
  border-radius: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
 }

.teamMember:nth-of-type(2n + 1) .teamFotoContainer {
  margin-left: 0px;
  margin-right: 10px;

}


.teamFotoContainer .material-symbols-outlined {
  font-size: 100px;
  margin-top: 45px;
  height: 100px;
  color: white;

   }

.teamFoto {
  position: relative;
  width: 180px;
  margin-top: 5px;
  margin-left: -3px;
}






/* Section 3 */
#Sec3 {
  color: #2E5266;
  align-items: stretch;
    background-color: transparent;
display: none;
}

#Page3 {
  flex-direction: column;
}

.servicesIcon {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  text-align: left;
  align-items: end;
}

.accordionServices {
  position: relative;
  width: 550px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  text-align: left;
  background-color: rgba(242, 243, 243, 0.8);
  color: #3A3B3C;
  font-size: 22px;
  outline: none;
  border-style: solid;
  border-radius: 5px;
  border-color: transparent;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: width 0.3s ease-out 0.5s, background-color 0.2s linear;
  visibility: hidden;
}



.accordionServices.active, .accordionServices.active:hover {

  width: 100%;
  transition: width 0.3s ease-out 0s, background-color 0.15s linear;
}

.accordionServices:hover  {

}


.accordionServices p {
  width: 550px;
  margin-top: 30px;
  padding-left: 15px;
  font-size: 18px;
}

.accordionServices h2 {
  width: 100%;
  margin-bottom: 12px;
  color: #3A3B3C;
  font-size: clamp(18px, 6vw, 24px);
  font-weight: 700;
}

.accordionServices .material-symbols-outlined {
  margin-top: 15px;
  margin-right: 10px;
  margin-bottom: 15px;
  padding-left: 15px;
  color: #2E5266FF;
  font-size: clamp(45px, 15vw, 80px);
}

.panelServices {
  max-height: 0px;
  text-align: left;
  font-size: 20px;
  transition: max-height 0.5s ease-out 0s;
  overflow: hidden;

}

.accordionServices.active .panelServices {
  transition: max-height 0.5s ease-out 0.3s;

}

.panelServices p {
  width: calc(100% - 15px);
  padding-left: 15px;
  padding-bottom: 10px;
  margin-top: 5px;
  color: #3A3B3C;
  font-size: 18px;
}

.accordionServices .arrowContainer {
  border: none;
  background-color: transparent;
width: fit-content;
  text-align: center;
  width: 100%;
  padding-right: auto;
  padding-left: auto;
display: flex;
flex-direction: column;
height: auto;
justify-content: center;
align-items: center;
}

.arrowContainer p {
width: fit-content !important;

font-size: 12px;
font-weight: 700;
display:inline;
padding-left: 0;
margin-top: 20px;
  transition: all 0.25s ease, opacity 0.25s ease 0.3s;

border-bottom: 2px solid transparent;


}

.arrowContainer:hover p {


border-bottom: 2px solid #3A3B3C;;


}


.accordionServices .arrow {
  width: 15px;
  height: 15px;
  margin-bottom: 15px;


  display: inline-block;
  border-top: 3px solid #2E5266FF;
  border-right: 3px solid #2E5266FF;
  transform: rotate(135deg);
  transition: all 0.5s ease;
  overflow: visible;
}

.accordionServices.active .arrow {
  margin-top: 10px;
  transform: rotate(-45deg);
  transition: all 0.5s ease 0.3s;
}

.readMore {
      opacity:1;

    transition: all 0.25s ease 0.5s;

}

.accordionServices.active .readMore {
        transition: opacity 0.25s ease;


}


/* Section 4 */
#Sec4 {
  align-items: start;
}

#Page4 {
  height: 100%;
  flex-direction: column;
}


/* Section 5 */
#Sec5 {
}

#Page5 {
  flex-direction: column;
}

.accordion {
  position: relative;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  border-top: 1px solid #2E5266FF;
  display: flex;
  flex-direction: row;
  text-align: left;
  color: #3A3B3C;
  font-size: 1.25em;
  cursor: pointer;
  transition: 0.4s;
}

.accordion.active, .accordion:hover {
  background-color: #2E5266FF;
}

.accordion p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.accordion.active p, .accordion:hover p {
  color: white;
}

.accordion .arrow {
  height: 15px;
  width: 15px;
  margin: 25px;
  display: inline-block;
  border-top: 2px solid #3A3B3C;
  border-right: 2px solid #3A3B3C;
  transform: rotate(135deg);
  transition: all 0.5s ease;
  overflow: visible;
}

.accordion:hover .arrow{
  border-color: white;
}

.accordion div.active .arrow {
  border-color: white;
  transform: rotate(-45deg);
}

.panel {
  max-height: 0px;
  text-align: left;
  font-size: 1.1em;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel p {
  padding-left: 65px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #3A3B3C;
}


/* Section 6 */
#Sec6 {
  height: auto;
  min-height: 0;
  background-color: #2E5266FF;
  color: white;
  z-index: 1;
}

#Page6 {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-top: 70px;
  margin-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
  flex-direction: column;
  justify-content: left;
  text-align: left;
  color: white;
  z-index: 1;
    flex-direction: row;
    flex-wrap: wrap;

}

#Page6 h1 {
  width: 100%;
  margin-bottom: 15px;
  color: white;
  font-size: 22px;
  font-weight: 700;
}

#Page6 p, #Page6 a {
  height: auto;
  width: auto;
  margin-right: auto;
  margin-bottom: 5px;
  align-items: center;
  color: white;
  font-size: 13px;
  font-weight: 400;
  z-index: 1;
}

#Page6 a p {
  height: auto;
  display: flex;
  align-items: center;
  z-index: 1;
  padding-top: 5px;

}

#footerOthers, #footerLinks {
margin-top: 20px;
  flex-basis: 100%;
  width: 100%;
}

#footerLinks a {

text-decoration: underline;

}

#footerContacts {
      margin-top: 7px;

margin-left: 50px;
}
#footerContacts p {
  color: white;
font-size: 13px;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;

}

#footerContacts a:hover p {
  border-bottom: 2px solid white;


}

#footerContacts a {
display: flex;
flex-direction: row;
justify-content: center;
}


#logoBottomTxt  {
width: 100%;
}

#logoBottomTxt h1 {
text-align: left;
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-size: 17px; 
  font-weight: 700;
  overflow-wrap: break-word;
}

#logoBottomTxt .vorname h1 {
  letter-spacing:3.6px;
  margin-top: 3px;
}

#logoBottomTxt .nachname h1 {
  letter-spacing:3px;
  margin-top: -12px;
}

#logoBottomTxt h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 10px; 
  letter-spacing:4.8px;
  margin-top: 2px;
  margin-bottom: 4px;
}

#footerLogoContainer {
  margin-top: 20px;
  top: 75px;
  width: 200px;

  text-align: left;
  vertical-align: top;
}

#footerContacts .material-symbols-outlined {
  margin-right: 5px;
  color: white;
  font-size: 27px;
  font-variation-settings: 'FILL' 0, 'wght' 250, 'GRAD' 0, 'opsz' 0;
}

#footerLogo {
  height: 60px;
}


/* Entry animations */
.animate__animated {
  animation-name: zoomIn; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1.2s; /* don't forget to set a duration! */
}

nav.animate__animated, #hamburger.animate__animated, #language.animate__animated {
  animation-name: fadeInDown; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.5s; /* don't forget to set a duration! */
  animation-delay: 1.3s;
}

#logoTxt.animate__animated {
  animation-name: fadeIn; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.5s; /* don't forget to set a duration! */
  animation-delay: 0.8s;

}

.introLogo.animate__animated.introDown g {
  animation-name: backInDown; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.5s; /* don't forget to set a duration! */
}

.introLogo.animate__animated.introLeft {
  animation-name: backInLeft; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.5s; /* don't forget to set a duration! */
}

.introLogo.animate__animated.introRight {
  animation-name: backInRight; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.4s; /* don't forget to set a duration! */
}

#contacts.animate__animated {
  animation-name: backInUp; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.5s; /* don't forget to set a duration! */
  animation-delay: 1.3s;
}

#logoSvg1 {
  animation-delay: 0.15s;
}

#logoSvg2 {
  animation-delay: 0.0s;
}

#logoSvg3 {
  animation-delay: 0.35s;
}

#logoSvg4 {
  animation-delay: 0.65s;
}

#logoSvg5 {
  animation-delay: 0.45s;
}


/* Background animation */
canvas#canvas {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
    transform: scale(1.5);
  --gradient-color-1: #BDC8D0; 
  --gradient-color-2: #A6B8CA; 
  --gradient-color-3: #D3DEED;  
  --gradient-color-4: #91A3B0;

  --gradient-speed: 0.000008;
}


/* Section separator */
.editorial {
      background-color: rgba(242, 243, 243, 1);

  display: block;
  width: 100vw;
  height: 30px;
  bottom: 0;
  left: 0px;
  float: left;
}

.parallax1 > use {
  animation: move-forever1 10s linear infinite;
}

.parallax2 > use {
  animation: move-forever2 8s linear infinite;
}

.parallax3 > use {
  animation: move-forever3 6s linear infinite;
}

.parallax4 > use {
  animation: move-forever4 4s linear infinite;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}




/* Responsive */

@media (max-width: 490px) {
  #Page6 {
    flex-direction: column;
justify-content: left;
  }

  #footerLogoContainer {
    margin-right: auto;
  }

  #footerContacts {
    margin-left: 0;
    margin-right: auto;
  }



}



@media (max-width: 700px) {


  /* Moving Background Image */
  #backimg {
    left: -250vw;
  }


  /* Development Banner */
#developmentContainer {

display: flex;
flex-direction: column;
}

#developmentIconContainer {
position: initial;
  margin-left: auto;
margin-right: auto;
}

#developmentTxt {
  width: 100%;
  margin-top: 30px;
}




  /* Section 1 */
  #Page1 {
    flex-direction: column;
  }

  #logoPlaceholder {
    width: 100vw;
    height: 300px;
  }

  #logo {
    top: 75px;
    left: calc(50vw - 135px)
  }

  #logo.fixed {
    left: calc(50vw - 135px)
  }


  #logo.animate__animated {
    animation-name: zoomIn; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 0.5s; /* don't forget to set a duration! */
  }

  #logoTxt {
    width: 100%;
  }

  #logoTxt h1, #logoTxt h2 {
    margin-left: -2px;
  }
  

  #contacts {
    width: 100%;
        padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
    align-items: center;
  }

  #contacts.animate__animated {
    animation-name: backInUp; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 0.75s; /* don't forget to set a duration! */
    animation-delay: 0.5s;
  }

  #formSwitchButton {
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    justify-content: center;
  align-items: center;
  }

  .formIcons {
    width: calc(50% - 20px);
  }

  #forms, #formContainer {
         
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
    justify-content: center;
  align-items: center;
  }
#formContainer {
          width: 100%;
    max-width: 440px;

    
}

  form, #contactLinks {
     width: 100vw;
  }
  
  #contactForm, form {
          width: 100%;
    max-width: 440px;
  }


  /* Section 2 */
  


/* Section 2 */



.teamAbout {

flex-direction: column-reverse !important;

 }

 .teamTxt {

  width: 100% !important;
  padding-left: 0 !important;
    padding-right: 0 !important;

 }

.teamMemberTitle  {

  margin-left: 0 !important;

 }


.teamFotoContainer {


margin-left: auto !important;
margin-right: auto !important;
margin-bottom: 30px;

}




  #aboutHeader h2 {
    padding-right: 0;
  }

  #about {
    flex-direction: column-reverse;
    width: 100%;
    align-items: revert;
  }

  #aboutTxt {
    width: 100%;
    padding-right: 0;
  }

  .teamfotoContainer {
    margin-left: calc(50vw - 130px);
    margin-top: 20px;
    margin-bottom: 50px;
  }




  /* Section 3 */
  .accordionServices {
    width: 100%;
  }

  .accordionServices p {
    width: calc(100% - 15px);
  }

  .panelServices, .accordionServices.active .panelServices {
    transition: max-height 0.5s ease-in-out;
  }

  .accordionServices div.active .arrow {
    transition: all 0.5s ease 0s;
  }

  .accordionServices.active .arrow {
    transition: all 0.5s ease;
  }

}


@media (max-width: 840px) {
  .formIcons {
    flex-direction: column;
  }

  #calendarFormIcon {
    flex-direction: column-reverse;
  }

  .formIconTxt {
display: flex; 
       justify-content: center;
        text-align: center;
        margin-top: 3px;
        font-size: clamp(2px, 3vw, 12px);

  }
.formIcons {
  height: 65px;}

}




.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
