/* Stylesheet für WTEED.com */
/*
@import url(basic.css);
@import url(layout.css);
@import url(layout-modern.css);
@import url(navi-responsive.css);
@import url(content.css);
*/

/* 1) Globale Einstellungen für die gesamte Wenbseite */

/* Variablen */

:root {
    --bars_bg_color: #2E88C8;
    --bars_bg_color_dark: #3E3E3E;
    --page_bg_color: white;
    --section_bg_color: white;
    --section_shadow_color: lightgrey;
    --headline_color: #268BD2;
}


/* Schriften Fonts */

@font-face {
    font-family: "PT Sans";
    src: url('../fonts/PT_Sans-Web-Italic.woff2') format('woff2'), url('../fonts/PT_Sans-Web-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic
}


/* border-box aktivieren */
*,
*::before,
*::after {
    box-sizing: border-box;
}


.visually-hidden {
    position: absolute !important;
    clip: rect(0, 0, 0, 0) !important;
    overflow: hidden !important;
    white-space: nowrap !important;

    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    margin: -1px !important;
}

html {
    /* sanftest scrollen aktivieren */
    scroll-behavior: smooth;
    font-size: 16px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}


html {
    /* sanftest scrollen aktivieren */
    scroll-behavior: smooth;
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    scroll-padding-top: 4.5rem;
    /* height of sticky header + 1.5rem */
}

body {
    background-color: var(--page_bg_color);
    background-image: url(../pictures/stucco.png);
    margin: 0rem;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header,
main {
    /* max-width: 60%;*/
    margin-left: auto;
    margin-right: auto;
    /* border: green 2px solid; */
}

img,
video {
    max-width: 100%;
    height: auto;
}

/*
#set-headerpic>img {
    object-fit: scale-down;
    width: 100%;
    max-height: 100%;

}
*/
figure,
blockquote {
    margin-right: 0;
    margin-left: 0;
}


h1,
h2,
h3,
h4,
h5,
h6,
blockquote {
    margin-top: 0;
}

/* -------------------- Begin Menüleiste Gestaltung */

.site-nav {
    position: sticky;
    top: 0;
    background-image: linear-gradient(var(--bars_bg_color_dark), var(--bars_bg_color));
    opacity: 0.7;
    color: white;
    padding: 0.5rem;
    z-index: 10;
    /* Menu on Top */
}

.site-nav .inside {
    padding: 0;
}
.site-nav ul {
    display: flex;
    flex-flow: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav a {
    display: block;
    text-decoration: none;
    color: white;
}

.site-nav a:hover,
.site-nav a:focus {
    background-color: #07b;
}

.no-js .menubutton {
    display: none;
}

.js .menubutton {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: inherit;
    color: white;
    font: inherit;
    text-align: center;

    padding: 0.5rem 1rem;
    border: 0;
    margin: 0;
}

.js .menubutton::before {
    content: url(../pictures/menuburger.svg);
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
}

.js .site-nav ul {
    max-height: 0;
    overflow: hidden;
    padding: 0;
}

.js .showmenu+ul {
    max-height: 100rem;
    transition: max-height 03s ease;
    overflow: auto;
}

.js .showmenu.menubutton::before {
    content: url(../pictures/menuclose.svg);

}

@media screen and (min-width: 600px) {
    .menubutton {
        display: none !important;
    }

    .site-nav {
        position: sticky;
        top: 0;
    }

    .site-nav .inside {
        padding: 0 1rem;
    }

    .site-nav ul {
        max-height: none !important;
        flex-flow: row;
        padding: 0;
        margin: 0;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .site-nav li {
        flex: 1;
        text-align: center;
        margin: auto;
    }
}

@media screen and (max-width: 600px) {
    .site-nav li:first-child {
        display: none;
    }
}

/* -------------------- End Menüleiste Gestaltung */

/* -------------------- Headerbereich mit Einzelbildern */


header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

header h1 {
    margin: 0;
}


.wteed_logo, .versiled_logo {
    max-height: 3rem;
}


.set-headerpic {
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    place-items: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

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

.wteed_logo {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
    position: absolute;
    top: 0;
    left: 0;
    margin: 1rem;
    border-radius: 0 0 10px 10px;
}


@keyframes text_effektivitaet {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.text_headline {
    /*
    flex: 1;
    grid-column: 4 / span 10;
    grid-row: 9 / span 1;
    position: absolute;
    top: 0;
    left: 0;
    */
    font-family: "PT Sans";
    color: var(--headline_color);
    font-size: clamp(0.5rem, 3vw, 3rem);
    text-align: center;
    margin-top: 2rem;
}

h3 {
    font-family: "PT Sans";
    color: var(--headline_color);
}

/* -------------------- End Headerbereich */


.section_row {
    display: flex;
    gap: 5em;
    /*flex-flow: row;*/
    /*justify-content: space-between;*/
    justify-content: space-evenly;
    flex-direction: row;
    overflow: auto;
    margin: 0.5rem;
    padding: 1rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--section_bg_color);
    border: rgba(0, 0, 0, 0.265) 2px solid;
    border-radius: 1rem;
    box-shadow: 0.3rem 0.3rem var(--section_shadow_color);
}

.box_with_headline {
        display: flex;

    object-fit: contain;
        flex-direction: column;
        margin-top: auto;
        margin-bottom: auto;
        min-width: 50px;
    /*width: 30vw;*/
}

h3 {
    font-size: larger;

}

span {
    align-self: center;
}

.section_row>img {
    margin-top: auto;
    margin-bottom: auto;
    min-height: 100px;
    max-height: min-content;
}

.video_poster {

    object-fit: contain;
    border-radius: 10px;

}

main p {
    margin-bottom: 0;
}

.versi_wteed_img {
    min-height: 100px;
    margin-bottom: 0;
}

.img_decoration{
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
/* -------------------- Begin der Tabellengestaltung */
/*
table, th, td {
    border: 1px solid black;
  }
  */
table {

    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 80%;
    border-collapse: collapse;
}

thead {
    background-color: #9EAFB9;
    border: none;
    display: table-header-group;
    vertical-align: middle;
    text-align: left;
    font-size: larger;
}

tbody {
    background-color: #CDDEE8;
}

tr:nth-child(even) {
    background-color: #DDEDF7;
}
td:nth-child(2) {
    border-right: medium;
    border-left: medium;
    border-top: 0;
    border-bottom: 0;
   /* border: 1px solid black;*/
    border-color: black;
    border-style: solid;
}
td, th {
    padding: 1rem;
}

/* ENDE -------------------- der Tabellengestaltung */

/* -------------------- Begin Navigation im Fußbereich gestalten */

.site-footer {
    font-size: smaller;
    /*   background-color: #333333; */
    background-image: linear-gradient(var(--bars_bg_color), var(--bars_bg_color_dark));
    opacity: 0.7;
    padding: 0.8rem 2rem;
}

.footer-nav ul {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.footer-nav li {
    /* display: inline; */
    margin-right: 00.5rem;
}

.footer-nav li:first-child {
    padding-right: 00.5rem;
    border-right: 1px solid #eee;
}

.footer-nav li:last-child {
    margin-right: 00rem;
    margin-left: auto;
}

.site-footer a {
    display: block;
    color: white;
    text-decoration: none;
    padding-top: 0;
    margin-top: 0px;
}

.footer-nav li:first-child {
    padding-right: 00.5rem;
    border-right: 1px solid #eee;
}

.footer-nav li:last-child {
    margin-right: 00rem;
    margin-left: auto;
}

/* -------------------- End Fussleiste Gestaltung */


@media screen and (max-width: 1920px) {

    header,
    main,
    .site-nav ul,
    .footer-nav ul {
        max-width: 100%;
    }
}

@media screen and (max-width: 1200px) {

    header,
    main,
    .site-nav ul,
    .footer-nav ul {
        max-width: 95%;
    }

    .section_row {
        gap: 1rem;
    }
}


@media screen and (max-width: 800px) {
    .section_row {
        flex-direction: column;
    }

}

/* ---------- Animationen */

/* Animaiton klappt nicht wirklich da die Biler nicht im sichtbaren Bereicht sind*/

.anim_img_left_center {
    position: relative;
    animation: anim_img_left_center 2s ease-out;
  }

@keyframes anim_img_left_center {
    0% {
      opacity: 0;
      left: -1000px;
    }

    100% {
      opacity: 1;
      left: 0;
    }
  }

  .anim_img_right_center {
    position: relative;
    animation: anim_img_right_center 2s ease-out;
  }

@keyframes anim_img_right_center {
    0% {
      opacity: 0;
      right: -1000px;
    }

    100% {
      opacity: 1;
      right: 0;
    }
  }

/* END ---------- Animationen */
