:root {
  --it-blue: #123375;
  --it-grey: #e7e7e7;
  --it-green: #006f5f;
  --it-white: white;
  --it-black: black;
}



body {
  margin: 0;
}

/* ===== Seitenlayout ===== */
.it-page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}
.it-container{
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  min-width: 850px;
  
  
}

/* ===== Banner + Footer ===== */
.it-banner,
.it-footer {
  
  color: var(--it-white);
  padding: 0 10px;
}
.it-footer a {
  color: var(--it-white);
  text-decoration: none;
}
.it-footer a:hover {
  text-decoration: underline;
}
.it-footer{
  background: var(--it-blue);
}
.it-banner{
 background: linear-gradient(to right,var(--it-blue) 50%, var(--it-grey) 50% ); 
}
.it-banner > .it-inner{
  background: linear-gradient(to right,var(--it-blue) 0%, var(--it-blue) 60%, var(--it-grey) 90%);
}
.it-headerl{
  transform: rotate(-3deg);
}
.it-headerl1{
  font-size: 28px;
  color: var(--it-white);

}
.it-headerl2{
  font-size: 35px;
  color: var(--it-green);
  -webkit-text-stroke: 1px var(--it-grey); /* Farbe + Dicke des Randes */

}
.it-headerl3{
  font-size: 45px;
  color: var(--it-black);
  -webkit-text-stroke: 1px var(--it-grey); /* Farbe + Dicke des Randes */
}
.it-headerl4{
  font-size: 35px;
  color: var(--it-black);
  -webkit-text-stroke: 1px var(--it-grey); /* Farbe + Dicke des Randes */
}


/* Inhalt zentriert + max Breite */
.it-inner {
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  gap: 0;
}


/* ===== Main Layout ===== */
.it-main {

  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
 
}

.it-content{
    box-shadow: 6px 0 12px -6px rgba(0,0,0,0.25),
              -6px 0 12px -6px rgba(0,0,0,0.25);
}

.it-nav {
  display: flex;
  flex-direction: column;
  background: var(--it-grey);
  box-shadow: 6px 0 12px -6px rgba(0,0,0,0.25),
              -6px 0 12px -6px rgba(0,0,0,0.25);
}
  
.it-nav .menul,
.it-nav .menur{
  cursor:pointer;
  position:relative;
  color:black;
  text-decoration:none;
  background:transparent;
  height:20px;
  margin:2px 10px 2px 10px;
  display:block;
  font-weight:normal;
  font-size:16px;
  
  border:0px solid #aaaaaa;
  border-radius:5px;
  border-top: 1px solid;
	border-color: white;
}
.it-nav .menul{
  text-align:left;
  padding:5px 0 5px 20px;
}
.it-nav .menur{
  text-align:right;
  padding:5px 5px 0 0;
}
.it-nav .menul:hover,
.it-nav .menul:focus,
.it-nav .menur:hover,
.it-nav .menur:focus{
  color:var(--it-white);
  text-decoration:none;
  background:var(--it-green);
}
.it-nav .menul:active,
.it-nav .menur:active{
  color:var(--it-white);
  text-decoration:none;
  background:var(--it-green);
}  
.it-nav .menuactivel,
.it-nav .menuactiver{
  text-decoration:none;
  display:block;
  height:20px;
  margin:0 10px 2px 10px;
  font-size:16px;
  font-weight:normal;
  padding:5px 5px 5px 5px;
  background:var(--it-green);
  color:var(--it-white);
  border:0px solid #aaaaaa;
  border-radius:5px;

  border-top: 1px solid;
	border-color: white;
} 
.it-nav .menuactivel{
  text-align:right;
}  
.it-nav .menuactiver{
  text-align:left;
} 
.it-nav .menutitle{
  display:block;
  font:normal 20px verdana, arial, helvetica, sans-serif;
  padding-top:4px;
  height:24px;
  text-align:left;
  color:var(--it-black);
  border-radius:5px;
  margin:10px 10px 2px 10px;
}
.it-nav .menutitle,
.it-nav .controls,
.it-nav .header{
  background:var(--it-grey);
}

.it-nav-link{
  margin-top: 50px;
}
.it-nav-link p{

}
.it-nav-link a {
  color:var(--it-black);
  text-decoration: none;
  line-height: 30px;
}
.it-nav-link a:hover {
  text-decoration: underline;
}
