/* standard.css, 2019-10-16, gerald petter */

/* Normalisierung ------------------------------------------------------------------------------------------------------------------------- */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, a, blockquote, pre, abbr, address, button, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, 
canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, main {
  margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

*, *:after, *:before {
  -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}

h1, h2, h3, h4, h5, h6 { 
  font-weight: normal;}

article, aside, button, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main { 
  display: block;}

blockquote, q {
  quotes: none;}
  
address, caption, cite, code, dfn, th, var { 
  font-style: normal; font-weight: normal;}

table {  
  border-collapse: collapse; border-spacing: 0;}

caption, th {  
  text-align: left;}

blockquote:before, blockquote:after, q:before, q:after {
  content: ''; content: none;}

input, select {
  vertical-align: middle; padding: 0 2px;}

img {
  vertical-align: bottom;}
  
.button {
  cursor: pointer; font-family: inherit;}

/* Standardisierung ----------------------------------------------------------------------------------------------------------------- */
small, .small {
  font-size: 0.8em;
  font-weight: 400;
}

.clear {
  clear: both;
}

.hidden {
  display: none;
}

sup, sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Button ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.button {
  padding: 4px 0;
  margin: 2.0em auto;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 600;
  transition: all 0.4s linear;
  width: 140px;
  text-align: center;
  background-color: rgb(77, 77, 77);
  z-index: 10;
  border-radius: 2px;
}

.button:hover {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.6);
}

.button > a {
  color: rgb(230, 230, 230);
  transition: inherit;
  text-decoration: none;
}
  
.button:hover > a {
  color: rgb(255, 255, 255);
}

/* Menü allgemein ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
nav ul, .nav {
  list-style: none;
}

nav a, .nav a {
  text-decoration: none;
}

/* Scroll down ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.scroll a {
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -28px;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: opacity .3s;
  padding-top: 30px;
}

.scroll a:hover {
  opacity: .5;
}

.scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}

/* ArrowTop ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#arrowTop {
  border-width: 12px;
  border-style: solid;
  border-color: transparent transparent rgb(70, 93, 118) transparent;
  position: fixed;
  bottom: 50px;
  right: 20px;
  cursor: pointer;
}

#arrowTop:hover {
  border-color: transparent transparent rgb(44, 59, 75) transparent;
}

#arrowTop::before {
  content: '';
  width: 46px;
  height: 46px;
  border: 6px solid rgb(70, 93, 118);
  position: absolute;
  top: -10px;
  right: -23px;
  border-radius: 50%;
}

#arrowTop:hover::before {
  border: 6px solid rgb(44, 59, 75);
}

#arrowTop::after {
  content: '';
  width: 12px;
  height: 14px;
  background-color: rgb(70, 93, 118);
  position: absolute;
  top: 10px;
  right: -6px;
}

#arrowTop:hover::after {
  background-color: rgb(44, 59, 75);
}

/* Einrücken */
@media screen and (min-width: 900px) {
  .indent {
    padding-left: 40px;
  }
}
  @media screen and (min-width: 1800px) {
    .indent {
      padding-left: 80px;
    }
  }

/* Spalten ~~~~~~~~~~~~~~~~~~~~~~~~~ */
@media screen and (min-width: 1200px) {
  .columns-2 {
    column-count: 2;
    column-gap: 40px;
  }

  .columns-3 {
    column-count: 3;
    column-gap: 40px;
  }
}

/* Bilder ~~~~~~~~~~~~~~~~~~~~~~~~~~ */
main img {
  max-width: 100%;
  vertical-align: bottom;
}

.images {
  margin: 0.5em 0;
  clear: both;
  padding-left: 0;
  list-style: none;
}
  @media screen and (min-width: 900px) {
    .images {
      display: -webkit-box; 
      display: -ms-flexbox;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 0 0 0;
      margin: 0 -0.5em;
      flex-wrap: wrap;
    }
  }
    @media screen and (min-width: 1200px) {
      .images {
        flex-wrap: nowrap;
      }
    }
    
.images > li {
  margin: 1.0em auto;
  padding: 0;
  list-style: none;
  position: relative;
}
  @media screen and (min-width: 900px) {
    .images > li {
      margin: 1.4em .5em;
      text-align: center;
    }
  }
      
.images .caption {
  margin: 0;
  padding: 0.2em 0 0.2em;
  font-size: 0.9rem;
  color: rgb(40, 40, 40);
}
  @media screen and (min-width: 1200px) {
    .images .caption {
      padding-right: 1em;
      text-align: right;
    }
  }
  
@media screen and (min-width: 900px) {
  .images a::before {
    content: url('../images/all/loupe.png');
    position: absolute;
    top: 3px;
    left: 3px;
    opacity: 0.3;
  }

  .images a:hover::before {
    opacity: 1;
  }
}

@media screen and (min-width: 64em) {
  .img--right {
    float: right;
    margin: 0 0 1em 2em;
  }
}

.fancybox-slide--iframe .fancybox-content {
  min-width: 240px;
  max-width: 100% !important;
}
  @media screen and (min-width: 600px) {
    .fancybox-slide--iframe .fancybox-content {
      max-width: 600px !important;
    }
  }