@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600&family=Teko:wght@300;400;500&display=swap');

body {
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    color: #000;
    font-family: 'Barlow', sans-serif;
    font-size: 1em;
    line-height: 1.4em;
    font-weight: 400;
}
/* ~~ Element/tag selectors ~~ */
p, ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
  padding: 0;
  margin: 0;
}
.content ul, .content ol {
    padding: 0;
}

strong {
    font-weight: 500;
}
p {
    margin-bottom: 6px
}
.projekte {
    color: #000000;
    text-align: left;
    font-weight: 600;
    text-transform: lowercase;
}
.info_black {
  font-size: 0.9em;
  line-height: 120%;
}
.text_smaller {
  font-size: 0.75em;
  line-height: 1.3em;
  font-weight: 400;
}
.text_smaller_bold {
  font-size: 0.75em;
  line-height: 1.3em;
  font-weight: 500;
}
.text_light {
  line-height: 1.3em;
  font-weight: 300;
  margin-right: 2%;
}
.text_light087 {
  font-size: 0.87em;
  line-height: 1.3em;
  font-weight: 300;
}
.header1 {
    font-size: 1.2em;
    font-weight: 600;
}
.header2 {
  font-size: 1.1em;
  font-weight: 500;
}
.header3 {
  font-size: 1em;
  font-weight: 500;
}
.TP {
    text-transform: uppercase;
    font-family: 'Teko', sans-serif;
    font-size: 1.2em;
    line-height: 1em;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    width: auto;
}
.TP_rot {
  text-transform: uppercase;
  font-family: 'Teko', sans-serif;
  font-size: 1.2em;
  line-height: 1em;
  font-style: normal;
  font-weight: 300;
  font-variant: normal;
  color: #F80024;
}
.TP_header {
    text-transform: uppercase;
    font-family: 'Teko', sans-serif;
    font-size: 4.5em;
    font-weight: 400;
    color: #F90023;
    position: absolute;
    margin-top: -62px;
}
#TEKO {
  text-transform: uppercase;
  font-family: 'Teko', sans-serif;
  font-weight: 400;
  font-variant: normal;
}
#TEKO_pfeil {
  font-family: 'Teko', sans-serif;
  font-weight: 400;
  font-variant: normal;
}
.evening {
  color: #000;
  text-transform: lowercase;
  font-size: 0.4em;
  letter-spacing: 0.3em;
  font-weight: 100;
}
.evening1 {
  color: #000;
  text-transform: lowercase;
  font-size: 0.4em;
  letter-spacing: 0.3em;
  font-weight: 100;
}
.evening2 {
  color: #000;
  text-transform: lowercase;
  font-size: 1em;
  letter-spacing: 0.2em;
  font-weight: 100;
  font-family: teko;
  margin-top: 0px;
  line-height: 0.8em;
}
.info {
    font-size: 1.1em;
    color: #FFFFFF;
    border: none;
    background: -webkit-linear-gradient(0deg, rgba(77, 79, 94, 0.9), rgba(194, 202, 214, 1) 100%);
    background: -moz-linear-gradient(90deg, rgba(77, 79, 94, 0.9), rgba(194, 202, 214, 1) 100%);
    background: linear-gradient(90deg, rgba(77, 79, 94, 0.9), rgba(194, 202, 214, 1) 100%);
    background-position: 20% 80%;
    -webkit-background-origin: padding-box;
    background-origin: padding-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-background-size: auto auto;
    background-size: auto auto;
    text-align: left;
    font-weight: 400;
    font-family: Teko;
    text-transform: uppercase;
    text-indent: 6px;
    line-height: 1;
    padding-top: 10px;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
  border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
  color: #F90023;
  text-decoration: none;
}
a:visited {
  text-decoration: none;
  color: #F90023;
}
a:hover {
  text-decoration: none;
  color: #333333;
}
a:active {
    text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
    background-color: #FFF !important; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    margin-top: 0;
    margin-bottom: 2px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 12px;
}
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
    margin-bottom: 20px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border: none;
    background: -webkit-linear-gradient(0deg, rgba(77, 79, 94, 0.9), rgba(194, 202, 214, 1) 100%);
    background: -moz-linear-gradient(90deg, rgba(77, 79, 94, 0.9), rgba(194, 202, 214, 1) 100%);
    background: linear-gradient(90deg, rgba(77, 79, 94, 0.9), rgba(194, 202, 214, 1) 100%);
    background-position: 50% 50%;
    -webkit-background-origin: padding-box;
    background-origin: padding-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-background-size: auto auto;
    background-size: auto auto;
    height: 82px;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
  float: left;
  width: 18%;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-right: 2%;
}
.content {
  float: left;
  padding-top: 10px;
  padding-bottom: 20px;
  width: 80%;
  padding-right: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
}

summary {
    cursor: pointer;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
  padding-top: 0px;
  overflow: v;
}
.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-object iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-object {
  position: relative;
  overflow: hidden;
  clear: both;
  margin-top: 0em;
  margin-right: 0;
  margin-left: 0;
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt { 
  float: right;
  margin-left: 2%;
  width: 48%;
}
.fltlft {
  float: left;
  margin-right: 2%;
  clear: right;
  width: 48%;
}
.fltrt30 {
  float: right;
  margin-left: 2%;
}
.fltlft70 {
  float: left;
  margin-right: 2%;
  clear: right;
  width: 58%;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
  clear: both;
  height: 0;
  line-height: 0px;
}

.zweisp {
  -moz-column-rule-style: dotted;
  -moz-column-rule-width: 1px;
  -moz-column-rule-color: silver;
  -webkit-column-rule-style: dotted;
  -webkit-column-rule-width: 1px;
  -webkit-column-rule-color: silver;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2;
  margin-top: 1.8ex;
  column-gap: 2em;
  column-rule-style: dotted;
  column-rule-width: 1px;
  column-rule-color: silver;
  text-align: left;
  hyphens: auto;
  orphans: 3;
  widows: 3;
  margin-right: 3%;
  margin-left: 3%;
}
.caps {
  text-transform: uppercase;
}

.grey {
  color: #606271;
}
.punkte {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #FE294E;
}
.punkte2 {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #000;
}
.at {
    line-height: 1em;
    font-size: 0.8em;
    margin: 0px;
    vertical-align: 12%;
    padding-right: 2px;
    padding-left: 1px;
    font-family: Barlow;
}
#red {
  color: #FF0F4E;
}

.visi2 {
  display: none;
}
@media screen and (max-width : 585px) {
  .TP_header {
    font-size: 4rem;
    margin-right: auto;
    text-shadow: 0px 0px;
    margin-top: -47px;
    padding-bottom: 0px;
  }
  .sidebar1 {
    font-size: 1em;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
  }
  .content {
    font-size: 1em;
    width: 100%;
  }
  .container {
    background-color: #FFF !important; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    margin-top: -32px;
    margin-bottom: 2px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3%;
    padding-right: 3%;
  }
  /* ~~ miscellaneous float/clear classes ~~ */
  .fltlft {
    width: 100%;
    margin-bottom: 20px;
  }
  .fltrt {
    width: 100%;
    margin-bottom: 20px;
  }
	.fltrt30 {
  float: right;
  margin-left: 2%;
}
.fltlft70 {
  float: left;
  margin-right: 2%;
  clear: right;
  width: 100%;
  margin-bottom: 10px;
}
  .sidebar1 img {
    float: left;
  }
  .visi {
    display: none;
  }
.header {
    margin-bottom: 40px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border: none;
    background: -webkit-linear-gradient(0deg, rgba(77, 79, 94, 0.9), rgba(194, 202, 214, 1) 100%);
    background: -moz-linear-gradient(90deg, rgba(77, 79, 94, 0.9), rgba(194, 202, 214, 1) 100%);
    background: linear-gradient(90deg, rgba(77, 79, 94, 0.9), rgba(194, 202, 214, 1) 100%);
    background-position: 50% 50%;
    -webkit-background-origin: padding-box;
    background-origin: padding-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-background-size: auto auto;
    background-size: auto auto;
    height: 81px;
}
  .projekte {
    font-size: 0.9em;
    color: #000000;
    text-align: left;
    line-height: 1em;
    font-weight: bold;
  }
  .visi2 {
    display: inherit;
  }
  .evening1 {
    color: #000;
    text-transform: lowercase;
    font-size: 0.5em;
    letter-spacing: 0.25em;
    font-weight: 100;
    text-align: right;
    float: right;
    margin-top: 6px;
    margin-left: 6px;
    margin-right: 6px;
}
	.zweisp {
  -moz-column-rule-style: dotted;
  -moz-column-rule-width: 1px;
  -moz-column-rule-color: silver;
  -webkit-column-rule-style: dotted;
  -webkit-column-rule-width: 1px;
  -webkit-column-rule-color: silver;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  -webkit-column-count: 1; /* Chrome, Safari, Opera */
  -moz-column-count: 1; /* Firefox */
  column-count: 1;
  margin-top: 1.8ex;
  column-gap: 2em;
  column-rule-style: dotted;
  column-rule-width: 1px;
  column-rule-color: silver;
  text-align: left;
  hyphens: auto;
  orphans: 3;
  widows: 3;
  margin-right: 0%;
  margin-left: 0%;
}
}
