/*
Name: style.css
Description: CSS-Datei für das Webdesign Tutorial.
Version: 1.0
*/

/* ################# STANDARTEINSTELLUNGEN ################# */
body {
    font-family: Comic Sans MS;
    font-style: italic;
    background-color: #ffffff;
}
h1, p {
    margin: 0;
}

/*#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}
*/


#back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 20px;
    padding: 0 0 0 0;
  right: 20px;
  font-size: 26px;
  width: 50px;
  height: 50px;
  background-color: #ff0000;
  color: #333;
  cursor: pointer;
  outline: none;
  border: 3px solid #333;
  border-radius: 50%;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-property: background-color, color;
}
#back-to-top-btn:hover, #back-to-top-btn:focus {
  background-color: #333;
  color: #fff;  
}

@media(max-width: 992px) {
  .container { padding: 20px 109px; }
  #back-to-top-btn { font-size: 22px; width: 40px; height: 40px; bottom: 15px; right: 15px; }
}
@media(max-width:768px) {
  body { font-size: 16px; }
  .container { padding: 10px 50px; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  hr { margin: 30px 0; }
  #back-to-top-btn { font-size: 18px; width: 32px; height: 32px; bottom: 50px; right: 3px; }
}

/* Animations */
.btnEntrance {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: btnEntrance;
}
/* zoomIn */
/* @keyframes btnEntrance { 
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }    
} */

/* fadeInUp */
@keyframes btnEntrance {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.btnExit {
  animation-duration: 0.25s;
  animation-fill-mode: both;  
  animation-name: btnExit;
}
/* zoomOut */
/* @keyframes btnExit {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
} */

/* fadeOutDown */
@keyframes btnExit {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}


/* ################# HEADER ################# */

/* Header ----------- */
header {
    width: 100%;
    background-color: #ff000a;
}
header .flex-box-sm {
    height: 90px;
    align-items: center;
}

/* Logo ----------- */
header .logo img {
    height: 180px;
    margin: 95px 0 0 0;
    padding-top: 20px;
}
header .logo2 img {
    margin-left: 20px;
    margin-right: 10px;
    margin-bottom: 15px;
    padding-top: 22px;
     cursor: pointer;
}

header .logo3 img {
    margin-right: 10px;
    margin-bottom: 15px;
    padding-top: 22px;
     cursor: pointer;
}

/* Menu-Button ----------- */
header .menu .menu-button {
    display: none;
}

header .menu .menu-button2 {
        
    position: absolute;
    top: 17px;
    right:20px;
    cursor: pointer;
    z-index: 20;
}
header .menu .menu-button3 {
        
    position: absolute;
    top: 17px;
    right:20px;
    cursor: pointer;
    z-index: 20;
}


/* ----------- Menu ----------- */


header nav {
    float: right;
    font-size: 20px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    display: block;
}

header nav ul li a:hover {
    background: #ffffff;
    color: #ff0000;
}

header nav ul ul {
    position: absolute;
    min-width: 200px;
    display: none;
}

header nav ul ul li {
    display: block;
    background: rgba(0, 0, 0, 0.87);
}

header nav ul li:hover ul {
    display: block;
}

header nav ul li i {
    color: #292929;
    /*float: right;*/
    padding-left: 20px;
}


header nav div {
    color: #292929;
    font-size: 24px;
    padding: 0.6em;
    cursor: pointer;
    display: none;
}


/* ---------- Menu Ende ------------- */



/* ################# BANNER & INHALT ################# */

/* Banner ----------- */
.banner {
    width: 100%;
    height: 500px;
    background-image: url(../imag/para.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}
.banner .overlay {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 100%, rgb(255, 255, 255) 100%);
}
.banner h1 {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Satisfy', cursive;
    font-size: 50px;
    padding-top: 5px;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
}

/* Inhalt ----------- */

.inhalt .flex-box-sm {
    background-color: #fff;
    margin: -15px 15px 50px 15px;
    padding: 30px 15px 30px 15px;
    width: auto;
    box-shadow: 0 0 10px 0 rgba(255, 0, 0, 0.25);
    font-size: 20px;
}
.inhalt p {
    text-align: justify;
    color: #444444;
    line-height: 1.5;
    padding-top: 15px;
}
.inhalt h1 {
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    font-size: 30px;
    padding-bottom: 15px;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
}

.inhalt titel {
    text-align: left;
    font-weight: bold;
    color: #000000;
    padding-bottom: 20px;
}

#testa {
    text-align: left;
    font-weight: bold;
    font-size: 17px;
    color: #000;
    padding-top: 15px;
    
}


/*img  {
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}*/
.inhalt .myimg {
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;  
}

.infotext {
    text-align: center;
}


/*table {

    margin-left: auto;
    margin-right: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
    font-size: 15px;
  text-align: center;
  padding:8px;
}

tr:nth-child(even){background-color: #f2f2f2}*/

.mytable {
    margin-left: 0px;
    border-collapse: collapse;
    border-spacing: 0;
    width: 60%;
    margin-top: -50px;
    border: 0px;
}

.mytable .myth{
    height: 50px;
}
.mytable .mytd {
    text-align: left;
    padding: 8px;
    border: 1px solid #fff;
}



.mytable tr:nth-child(even){background-color: #fff}


.mantable {
    margin-left: auto;
    margin-right: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: 10%;
  border: 1px solid #f3467e;
}

.mantable .mantd {
  text-align: left;
  padding: 8px;
  font-family: Times New Roman;
  font-size: 1.2em;
}

.mantable .mantr{
    border-bottom: 1px solid #f3467e;
}




.mantable tr:nth-child(even){background-color: #f2f2f2}

video {
  width: auto;
  height: auto;
  
}

[class*="col-"] {
  
  padding: 15px;
  width: 100%;
margin-left: auto;
    margin-right: auto;
}

/*############# Table ##############*/

table {
    width: 60%;
    border: 1px solid #ff0000;
  border-collapse: collapse;
    table-layout: fixed; 
}

th, td {
    padding: 15px;
}

/*############# Table Ende ##############*/

/*############ Bilder ###############*/

.container {
  position: relative;
  text-align: center;
  color: white;
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

.centered {
    font-size: 30px;
    font-weight: bold;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #ff0000;
   color: #fcfcfc;
  position: absolute;
    top: 87%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bilderdiv{
    width: 100%;
    text-align: center;
}


#aussendiv {
    display: flex;
    justify-content: center;/*space-between;*/
    width: 100%;
    padding: 0px;
}
.innendiv { }

.containerinfo {
  position: relative;
  width: 100%;
    padding: 5px;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 86%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
    width: 80%;
}

.containerinfo:hover .image {
  opacity: 0.3;
}

.containerinfo:hover .middle {
  opacity: 1;
}

.text {
  background-color: #ff0000;
  color: white;
  font-size: 30px;
    padding: 5px;
}

/*############Bilder Ende ###############*/

/*############ INFO ###############*/



.info {
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, #ff0000, white, #ff0000);
    text-align: center;
    padding-top: 5px;
}

.info .myimg {
    margin-left: 20px;
    margin-right: 5px;
}

.imagemap {
    width: 40%;
    margin-top: -20px;
}

/*########### END INFO ############*/


/* ################# FOOTER ################# */

footer {
    width: 100%;
    background-color: #ff0000;
    color: #fff;
}

footer .flex-box-sm {
    height: 45px;
    align-items: center;
}
footer .rechtliches {
    text-align: right;
}
footer .rechtliches ul li {
    list-style: none;
    display: inline;
}
footer .rechtliches ul li:last-child {
    margin-left: 10px;
}
footer .rechtliches ul li a {
    color: #fff;
    text-decoration: none;
}
footer .rechtliches ul li a:hover {
    text-decoration: underline;
}


/* ################### MOBILE ANPASSUNG ################################## 768*/

@media screen and (max-width: 991px)
/*@media screen and (max-width: 350)*/
/*@media only screen and (min-device-width : 768px) and (max-device-width : 1024px)*/ {
    /* ####### HEADER ####### */
    /* Header ----------- */
    header {
        background-color: transparent;
        position: absolute;
        top: 0;
        left: 0;
    }
    header .flex-box-sm {
        height: auto;
    }
    /* Logo ----------- */
    header .logo {
        background-color: #ff0000;
        height: 50px;
        z-index: 10;
    }
    header .logo img {
        height: 80px;
        margin: -10px 0px 0px 15px;
    }
        header .logo2 img {
        display: block;
        position: absolute;
        top: -4px;
        right: 100px;
        height: 20px;
        cursor: pointer;
        z-index: 20;
    }
            header .logo3 img {
        display: block;
        position: absolute;
        top: -4px;
        right: 60px;
        height: 20px;
        cursor: pointer;
        z-index: 20;
    }

    /* Menu-Button ----------- */
    header .menu .menu {
        display: block;
        position: absolute;
        top: 18px;
        right: 15px;
        height: 20px;
        cursor: pointer;
        z-index: 20;
    }
        header .menu .menu-button2 {
        display: block;
        position: absolute;
        right: 20px;
        height: 20px;
        cursor: pointer;
        z-index: 20;
    }
    
    /* ------------ Menu ----------- */
    
    
    header nav {
        width: 100%;
    }
       
    header nav div {
        display: block;
        cursor: pointer;
        margin: -15px
    }
    
    header nav div .menu {
        top: -3px;
        display: block;
        position: absolute;
        right: 15px;
        height: 20px;
        cursor: pointer;
        z-index: 20;
    }
    
   header nav ul {
       text-align: center;
        display: none;
        position: static;
        background-color: rgba(0, 0, 0, 0.88);
    }
    
    header nav ul li {
        display: block;
    }
    
    header nav ul li ul a {
        color: #000;
    }
    
    header nav ul ul {
        position: static;
        /*background: #e3e3e3;*/
    }
    
header nav ul ul li {
    display: block;
    background: rgba(253, 66, 66, 0.83);
}
    
/* ----------- Menu Ende ----------- */
    
    /* ####### BANNER & INHALT ####### */
    /* Banner ----------- */
    
    
    /*.banner {
        background-size:115%;
        margin-top: -20px
        
    }
    .banner .overlay {
        background-image: linear-gradient(rgba(171, 214, 252, 0.01) 60%, rgb(171, 214, 252, 1) 100%);
    }*/
    
    .banner {
    width: 100%;
    height: 47vw;
    margin-top: 30px;

}
.banner .overlay {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 100%, rgb(255, 255, 255) 100%);
}
    
    .banner h1 {
        font-size: 32px;
        padding-top: 25px;
    }
    /* Inhalt ----------- */
    .inhalt .flex-box-sm {
        margin: -15px 15px 50px 15px;
        padding: 20px;
        box-shadow: 0 0 7px 0 rgba(255, 0, 0, 0.25);
        font-size: 15px;
    }
    
    .inhalt h1 {
    text-align: center;
    font-size: 20px;
}
    
/*********** Bilder *************/
#aussendiv {
    display: flow-root;
    justify-content: center;/*space-between;*/
    width: 99%;
}
    
.containerinfo {
  position: relative;
  width: 100%;
}
    
    
.centered {
    font-size: 30px;
    font-weight: bold;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ff0000;
   color: #fcfcfc;
  position: absolute;
    top: 87%;
  left: 50%;
  transform: translate(-50%, -50%);
}
    
  
/*********** Bilder Ende *************/
    
    
.info {
    font-size: 11px;
}
.info .myimg {
    width: 9px;
    margin-left: 5px;
}
    
.infotext {
    text-align: left;
    
    }
    
    
.imagemap {
    width: 100%
        
    }   
    
table {
  width: 100%;
}

th, td {
    font-size: 15px;
  text-align: center;
  padding:8px;
}

    /* ####### FOOTER ####### */
    footer .flex-box-sm {
        height: auto;
        padding: 10px 0;
        flex-direction: column-reverse;
    }
    footer .copyright, footer .rechtliches {
        text-align: center;
        margin-bottom: 5px;
    }
}

@media only screen and (min-width: 600px) {
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}

@media only screen and (min-width: 768px) {
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}
