/* Hello bitches. */

body {
background-color: white;
color: black;
margin: 0;
padding: 0;
box-sizing: border-box;
width: 100%;
}

h1 {
	font-weight: 600;
	font-style: normal;
	font-size: 1.7em;
	font-family: neue-haas-grotesk-display, sans-serif;
}

h2 {
	font-weight: 600;
	font-style: normal;
	font-size: 1.3em;
	font-family: neue-haas-grotesk-display, sans-serif;
	display: inline;
	margin: 0px;
}

p {
  font-weight: 600;
  font-style: normal;
  font-size: 1.3em;
  font-family: neue-haas-grotesk-display, sans-serif;
  line-height: 1.5em;
}

.caption {
  font-weight: 600;
  font-style: normal;
  font-size: 1.35em;
  font-family: neue-haas-grotesk-display, sans-serif;
  line-height: 0.8em;
  display: inline;
  margin: 0px;
}

p.navi {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.5em;
  letter-spacing: 0.3em;
}

p.navilogo {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 1000;
  font-style: italic;
  font-size: 1.5em;
  letter-spacing: 0.2em;
}

p.smallcaption {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 0.8em;
  letter-spacing: 0.3em;
}

.pink {
color: #ff1493;
}

.underline {
text-decoration: underline;
text-decoration-thickness: 0.15em;
text-underline-offset: 6px;
}

.light {
 font-weight: 400;
 font-style: normal;
 font-size: 120%;
 line-height: 130%;
 letter-spacing: 0.06em;
 font-family: neue-haas-grotesk-display, sans-serif;
}

.lightitalic {
font-weight: 400;
font-style: italic;
font-size: 120%;
line-height: 130%;
letter-spacing: 0.06em;
font-family: neue-haas-grotesk-display, sans-serif;
}


/* Logo LJB */

.logo {
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 40px;
  padding-right: 20px;
  padding-top: 44px;
  padding-bottom: 10px;
  width: 100%;
  background: white;
  z-index: 98;
}


/* Navigation */

.navigation {
  position: fixed;
  top: 0;
  right: 0;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 10px;
  z-index: 99;
}

.gridnav {
  display: grid;
  grid-template-columns: repeat( auto-fit, );
  grid-template-rows: 1;
  grid-gap: 4em;
  justify-content: start;
  align-content: start;
}

.nav1 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.nav2 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

.nav3 {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
}

.mobilemenue {
  display: none;
}


/* Mobile Menue */

#menuToggle
{
  display: block;
  position: fixed;
  top: 10px;
  right: 10px;
  height: 50px;
  width:  50px;
  background-color: white;
  border: none;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  z-index: 101;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 10px;
  right: 10px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 102; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

#menuToggle span
{
  top: 14px;
  right: -9px;
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: black;
  border-radius: 3px;
  z-index: 101;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

 
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #000000;
}


#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}


#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menuToggle a
{
  text-decoration: none;
  color: black;
}

#menuToggle a:hover
{
  color: black;
  text-decoration: underline;
  text-decoration-thickness: 0.15em;
  text-underline-offset: 4px;
}

#menu
{
  position: fixed;
  width: 100vw;
  height: 100vh;
  margin-top: 0px;
  top: 0;
  left: 0;
  background: white;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  padding-right: 40vw;
  padding-left: 20vw;
  padding-top: 7vh;
  overflow: hidden;
  z-index: 100;
}

#menu li
{
  padding-top: 5vh;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}


/* Link Contact // Social Media */

.contact {
  position: fixed;
  top: 60%;
  left: -40px;
  transform: rotate(270deg);
  z-index: 3;
}


/* Link Datenschutz */

.datenschutz {
  position: fixed;
  top: 80%;
  right: 1%;
  transform: rotate(90deg);
  z-index: 4;
}


/* Container Startseite */

.imgindex {
  position: fixed;
  top: 35%;
  left: 30%;
  z-index: 0;
}

.textindex {
  position:absolute;
  top: 45%;
  left: 50%;
  height: auto;
  width: 30%;
  white-space: nowrap;
  z-index: 7;
}


/* Container Unterseiten */

.imgbox {
  position: fixed;
  top: 35%;
  left: 63%;
  z-index: 1;
}

.imgbg {
  width: 400px;
  height: auto;
}

.text {
  position: absolute;
  top: 20%;
  left: 27%;
  padding-bottom: 60px;
  height: auto;
  width: 45%;
  z-index: 5;
}

.projektcover {
  max-height: 60%;
  max-width: 100%;
  padding-bottom: 5%;
}

.projektimg {
  max-height: 60%;
  max-width: 100%;
  padding-top: 5%;
  padding-bottom: 5%;
}


/* Akkordeon Hire */

.akkordeon {
  max-width: 100%;
}

.toggle {
  display: none;
}

.option {
  position: relative;
  margin-bottom: 1em;
}

.offer,
.description {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  transition: all 0.2s;
}

.offer {
  top: 0%;
  padding-left: 10%;
}

.offer:after, .offer:before {
  content: '';
  position: absolute;
  left: 0%;
  top: 0%;
  width: 2px;
  height: 0.75em;
  background-color: black;
  transition: all 0.2s;
}

.offer:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.description {
  padding-left: 10%;
  max-height: 0;
  overflow: hidden;
}

.toggle:checked + .offer + .description {
  max-height: 40%;
}
.toggle:checked + .offer:before {
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
		  
}


/* Akkordeon Works */


.descriptionw {
  padding-left: 0%;
  max-height: 0;
  overflow: hidden;
}

.toggle:checked + .offer + .descriptionw {
  max-height: 40%;
}



/* Links */

a:link {
color: inherit;
text-decoration: underline;
text-decoration-thickness: 0.15em;
text-underline-offset: 6px;
}

a:visited {
color: inherit;
text-decoration: underline;
text-decoration-thickness: 0.15em;
text-underline-offset: 6px;
}

a:hover {
color: inherit;
text-decoration: underline;
text-decoration-thickness: 0.15em;
text-underline-offset: 6px;
}

a:active {
color: inherit;
text-decoration: underline;
text-decoration-thickness: 0.15em;
text-underline-offset: 6px;
}

a.nav:link {
color: inherit;
text-decoration: none;
}

a.nav:visited {
color: inherit;
text-decoration: none;
}

a.nav:hover {
color: inherit;
text-decoration: underline;
text-decoration-thickness: 0.15em;
text-underline-offset: 6px;
}

a.nav:active {
color: inherit;
text-decoration: none;
}

a.navon:link {
color: inherit;
text-decoration: underline;
text-decoration-thickness: 0.15em;
text-underline-offset: 6px;
}

a.navon:visited {
color: inherit;
text-decoration: underline;
text-decoration-thickness: 0.15em;
text-underline-offset: 6px;
}

a.navon:hover {
color: black;
text-decoration: underline;
text-decoration-thickness: 0.15em;
text-underline-offset: 6px;
}

a.navon:active {
color: inherit;
text-decoration: underline;
text-decoration-thickness: 0.15em;
text-underline-offset: 6px;
}

a.logo:link {
color: #ff1493;
text-decoration: none;
}

a.logo:visited {
color: #ff1493;
text-decoration: none;
}

a.logo:hover {
color: #ff1493;
text-decoration: none;
}

a.logo:active {
color: #ff1493;
text-decoration: none;
}



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


.navigation {
  display: none;
}

.contact {
  display: none;
}

.mobilemenue {
  display: block;
  z-index: 190;
}

.logo {
  position: fixed;
  left: 0;
  top: 0;
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 10px;
  z-index: 97;
  width: 100vw;
  background: white;
}

.datenschutz {
  position: fixed;
  top: 80%;
  right: -15%;
  transform: rotate(90deg);
  z-index: 4;
}

.imgbox {
  position: fixed;
  top: 22%;
  left: 40%;
  z-index: 1;
}

.imgbg {
  width: 250px;
  height: auto;
}

.text {
  position: absolute;
  top: 20%;
  left: 7%;
  padding-bottom: 60px;
  height: auto;
  width: 80%;
  z-index: 5;
}

.projekte {
  position: absolute;
  top: 20%;
  left: 7%;
  padding-bottom: 60px;
  height: auto;
  width: 80%;
  z-index: 5;
}

.imgindex {
  position: fixed;
  top: 30%;
  left: 10%;
  z-index: 0;
}

.textindex {
  position:absolute;
  top: 40%;
  left: 20%;
  height: auto;
  width: 30%;
  white-space: nowrap;
  z-index: 7;
}

p.navilogo {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.3em;
  letter-spacing: 0.3em;
}


}