
p,
h1,
h2,
h3,
h4,
h5,
h6{
  font-family: var(--absatz);
}

h1,
h2,
h3,
h4,
h5,
h6{
  color: var(--color-yellow-100);
  margin: 0;
  padding: 0;
  font-weight: 700;
}

a{
  color: var(--color-yellow-100);
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

h1 ,.h1{
 font-size: var(--font-size-xxl);
}
h2 ,.h2{
  font-size: var(--font-size-xl);
  margin-bottom: 30px;
}
h3 ,.h3{
  font-size: var(--font-size-l);
  font-weight: 500;
  margin: 40px 0 20px 0;
}
h4 ,.h4{
  font-size: var(--font-size-m);
  font-weight: 500;
}
h5, .h5{
  font-size: var(--font-size-base);
  font-weight: 500;
}
h6, .h6{
  font-size: var(--font-size-xs);
  font-weight: 500;
}

@media screen and (max-width: 630px) {

  h1 ,.h1{
    font-size: var(--font-size-xxl-smal);
   }
   h2 ,.h2{
     font-size: var(--font-size-xl-small);
   }
   h3 ,.h3{
     font-size: var(--font-size-l-small);
     font-weight: 500;
   }
   h4 ,.h4{
     font-size: var(--font-size-m);
     font-weight: 500;
   }
   h5, .h5{
     font-size: var(--font-size-base);
     font-weight: 500;
   }
   h6, .h6{
     font-size: var(--font-size-xs);
     font-weight: 500;
   }

}

@media screen and (max-width: 414px) {

  h1 ,.h1{
    font-size: var(--font-size-xl);
   }
   h2 ,.h2{
     font-size: var(--font-size-l);
   }
   h3 ,.h3{
     font-size: var(--font-size-m);
     font-weight: 500;
   }
   h4 ,.h4{
     font-size: var(--font-size-m);
     font-weight: 500;
   }
   h5, .h5{
     font-size: var(--font-size-base);
     font-weight: 500;
   }
   h6, .h6{
     font-size: var(--font-size-xs);
     font-weight: 500;
   }

}



p{
  font-size: var(--font-size-base);
}

section{
  width: 100%;
}
.content{
  max-width: 2000px;
  margin: auto;
  padding: 50px;
}


.text-higlight {
  color: var(--color-yellow-100);
}


.button {
  text-decoration: none;
  border-radius: var(--br-12xs);
  background-color: var(--color-yellow-100);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  gap: var(--gap-xl);
  color: inherit;
  min-width: 150px;
  font-size: var(--font-size-lg);
  color: var(--color-gray);
  font-family: var(--absatz);
}

.rotate-left{
  transform: rotate(-26deg); 
}
.rotate-right{
  transform: rotate(-26deg);
}

.icon {
  height: 24px;
  width: 24px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: contain;
  min-height: 24px;
}

.button:hover {
  background-color: var(--color-yellow-200);
  text-decoration: none;
  animation: rotate 0.7s ease-in-out both
}

.button.black{
  background-color: var( --color-gray);
  color: var(  --color-yellow-100);
}

.button.black:hover{
  background-color: var(   --color-dimgray-100);
  color: var(  --color-yellow-100);

}



/* Navigation */

nav {
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
  min-height: 50px;
  background-color: var(--color-gray);
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  height: 25px;
  width: auto;
  margin-right: 10px;
}


nav ul {
  list-style: none;
  flex-direction: row;
  display: flex;
  justify-content: center;
}
nav ul li {
  margin-left: 1.5rem;
  justify-content: center;
}
nav ul li a {
  text-decoration: none;
  color: var(--color-darkgray);
  font-size: var(--font-size-m);
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: var(  --color-yellow-100);
  color: var(--color-gray);
  text-decoration: none !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: row;
  justify-content:  flex-end;
  z-index: 11;
  float: right;
}
.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: var(--color-yellow-100);
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: absolute;
  top: 0;
  left: -80%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  height: 100vh;
  padding: 20% 0;
  background-color: var(--color-gray);
  transition: all 0.5s ease-in;
  z-index: 10;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: var(--color-darkgray);
  font-size: var(--font-size-m);
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: var(  --color-yellow-100);
  color: var(--color-gray);
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
  nav ul {
    display: none;
  }
}

/* > Navigation */

.home {
  width: 100%;
  position: relative;
  background-color: var(--color-gray);
  overflow: hidden;
  flex-direction: column;
  letter-spacing: normal;
  line-height: normal;
}



/* Welcom */

.welcome {
  align-self: stretch;
  min-height: 800px;
  position: relative;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  background-image: url(./public/welcome@3x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  max-width: 100%;
  text-align: center;
  
  display: flex;
  align-items: center;
  justify-content: center;

}


.new-work,
.span {
  color: var(--color-yellow-100);
  white-space: pre-wrap;
}
.span {
  color: var(--color-darkgray);
}

.sloagen2{
  color: var(--color-darkgray);
}

.sloagen {
  min-height: 307px;
  max-width: 900px;
  margin: 0 auto;
  z-index: 5;
  color: var( --color-yellow-100);
  position: relative;
  z-index: 5;
}


.label-text {
  font-weight: 600;
  min-width: 56px;
}


.get-in-contact {
  align-self: stretch;
  height: 20px;
  position: relative;
  display: inline-block;
  transform: rotate(14.8deg);
}
.higlight-child {
  width: 60.8px;
  height: 50px;
  position: relative;
  border-radius: var(--br-19xl);
  object-fit: contain;
  z-index: 1;
  margin-top: -9px;
}

.cta{
  height: 140px;
}

.cta,
.higlight {
  display: flex;
  justify-content: center;
  
  position: relative;
  z-index: 5;
}

.higlight {
  height: 76px;
  width: 94.8px;
  margin: 0 !important;
  position: absolute;
  top: 15px;
  left: 55%;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-white);

  font-family: var(--font-caveat);
}
.content,
.cta {
  align-items: center;
}
.cta {
  flex-direction: row;
  position: relative;
  gap: 65px;
}

.rectangle-parent {
  position: absolute;
  bottom: -95px;
  right: 10px;
  width: 450px;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.frame-child,
.frame-item {
  position: absolute;
  height: 68px;
  transform: rotate(-45deg);
  transform-origin: 0 0;
}
.frame-child {
  bottom: 0px;
  left: 181px;
  background-color: rgba(78, 82, 85, 0.4);
  width: 100%;
  z-index: 1;
}
.frame-item {
  bottom: 0px;
  left: 0;
  background: linear-gradient(90deg, #e4f904, #080900, #0a0b01);
  width: 817.1px;
  z-index: 2;
}

/* About */

.lines{
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}


.about {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  align-self: stretch;
  background-color: var(--color-yellow-100);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: var(  --padding-xl) var(--padding-l);
  position: relative;
  gap: 8px 6px;
  max-width: 100%;
  text-align: left;
  color: var(--color-gray);
  font-family: var(--absatz);
  z-index: 2;
  overflow: hidden;
  display: flow-root; 
}

.about .headline{
  color: var(--color-gray);
}

.about-content{
  z-index: 10;
  position: relative;
}

.max {
  width: 350px;
  height: 350px;
  display: block;
  shape-outside: circle();
	clip-path: circle();
	float: right;
  margin: 0 !important;
  border-radius: var(--br-481xl);
  object-fit: contain;
}



.sprechblase {
  height: 120px;
  width: 270px;
  z-index: 2;
  position: absolute;
  top: 150px;
  right: 20px;
  transform: rotate(14.8deg);
  font-weight: normal;
}

.sprechblase-arrow {
  height: 80px;
  position: absolute;
  margin: 0 !important;
  bottom: 0px;
  left: -40px;
}


/* Digitalisierung */

.digitalisierung {
  background-color: var(--color-darkgray);
  padding: var(  --padding-xl) var(--padding-l); 
}


/* Methoden */

.methoden{
  align-self: stretch;
  background-color: var(--color-gray);
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: flex-start;
  padding: var(  --padding-xl) var(--padding-l); 
  box-sizing: border-box;
  gap: var(--gap-21xl);
  max-width: 100%;
  text-align: left;
  color: var(--color-white);
}

.methoden-boxen{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 40px;
  margin: 100px 0;
}


.methoden-boxen .box{
  width: 350px;
  height: 350px;
  padding: 50px;
  background-color: var(--color-dimgray-300);
  background: linear-gradient(
    180deg,
    rgba(78, 82, 85, 0.4),
    rgba(94, 97, 100, 0.4)
  );
}

.methoden-boxen .box p{
  font-size: var( --font-size-xs);
}


.lego-serious-play1 {
  margin: 0;
  white-space: pre-wrap;
}
.die-methode-frdert {
  margin: 0;
}




.methoden-boxen .box.breit{
  width: 450px;
  min-height: 150px;
  background: linear-gradient(
    140.63deg,
    rgba(166, 175, 181, 0.8) 28.5%,
    rgba(94, 97, 100, 0.8)
  );
  border-top: 11px solid var(--color-yellow-100);
}

.methoden-boxen .box.breit p{
  min-height: 150px;
}






/* Section Kontakt */

.kontakt {
  align-self: stretch;
  background-color: var(--color-yellow-100);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: var(  --padding-xl) var(--padding-l); 
  box-sizing: border-box;
  gap: var(--gap-17xl);
  text-align: center;
  
  color: var(--color-gray);
  font-family: var(--absatz);
}

.kontakt .content{
    max-width: 800px;
}

.kontakt-headline{
  color: var(--color-gray);
}


/* Text Content */

.lines-black{
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  height: 100%;
}


.text-content {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  align-self: stretch;
  background-color: var(--color-dimgray-100);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: var(  --padding-xl) var(--padding-l);
  position: relative;
  gap: 8px 6px;
  max-width: 100%;
  text-align: left;
  color: var(--color-gray);
  font-family: var(--absatz);
  z-index: 2;
  overflow: hidden;
  display: flow-root; 
}


.text-content-content{
  z-index: 10;
  position: relative;
  color: var(--color-white);
}




/* Footer */
.footer { 
  justify-content: flex-start;
  align-self: stretch;
  background-color: var(--color-dimgray-200);
  flex-direction: row;
  flex-wrap: wrap;
  padding: var(--padding-13xl-5) var(--padding-21xl);
  box-sizing: border-box;
  max-width: 100%;
  row-gap: 20px;
  text-align: left;

  color: var(--color-whitesmoke);
  font-family: var(--absatz);
}

.datenschutz,
.impressum,
.made-with {
  position: relative;
  font-weight: 500;
  display: inline-block;
}

.made-with {
  flex: 1;
  min-width: 186px;
  max-width: 100%;
}

.datenschutz,
.impressum {
  text-decoration: none;
  color: inherit;
  min-width: 96px;
}
.datenschutz {
  min-width: 109px;
}
.footer,
.legal-links {
  display: flex;
  align-items: flex-start;
}
.legal-links {
  flex-direction: row;
  justify-content: space-between;
  gap: var(--gap-xl);
}

.legal-links a:hover{
  color: var(  --color-yellow-100);
}



@media screen and (max-width: 1309px) {

  .kontakt,
  .methoden{
    padding-left: 0;
    padding-right: 0;
  }
  .methoden-boxen{
    gap: 20px;
  }
 
}



@media screen and (max-width: 1200px) {
  .higlight{
    left: 58%;
  }

  .methoden-boxen .box{
    padding: 40px;
    width: 330px;
    height: 330px;
  }
 
}

@media screen and (max-width: 1105px) {
 
  .methoden-boxen{
    justify-content: center;
    gap: 40px;
  }
 
}

@media screen and (max-width: 1039px) {

  .methoden-boxen .box.breit{
    width: 100%;
    height: 100%;
  }

  .methoden-boxen .box.breit p{
    min-height: 100px;
  }
}

@media screen and (max-width: 800px) {

  .methoden-boxen{
    gap: 20px;
  }
  

}



@media screen and (max-width: 970px) {
  
  .cta{
    gap: 23px;

  }
  .about,
  .kontakt,
  .digitalisierung,
  .text-content{
    padding: 0;
  }
  .sprechblase{
    top: 70px;
  }

  
}
@media screen and (max-width: 790px) {

  .higlight {
    left: 62%;
  }

  .methoden-boxen .box{
    padding: 35px;
    width: 300px;
    height: 300px;
  }

}
@media screen and (max-width: 720px) {

  .higlight {
    left: 62%;
  }

  .methoden-boxen .box{
    padding: 35px;
    width: 100%;
    height: 100%;
    min-height: 200px;
  }

}

@media screen and (max-width: 650px) {

  section .content{
    padding: 20px;
  }

  .sprechblase-arrow{
   display: none;
  }
}

@media screen and (max-width: 590px) {

  .sprechblase{
    display: none;
  }
  .max{
    width: 250px;
    height: 250px;
  }
  
}


@media screen and (max-width: 550px) {
  
  .cta{
    gap: 33px;
    flex-direction: column;
    height: 350px;
  }
  .rotate-right {
    transform: rotate(-10deg);
  }
  .rotate-left {
    transform: rotate(10deg);
  }
  .higlight{
    top: 122px;
    left: 70%;
  }

}


@media screen and (max-width: 440px) {

  .max{
    float: none;
  }

}
