/* --- amoto.css --- */

/* Grundeinstellungen */
body {
    margin: 0;
    font-family: sans-serif;
    color: rgb(50, 50, 50);
    background-color: rgba(129, 190, 220, 0.5);

	  /* width: 1200px; /* IPAD */
	  /* width: 1365px; /* IPAD PRO */
}

/* Link */
a:link  { text-decoration: none; color:rgb(90, 90, 90); }
a:visited { text-decoration: none; color: rgb(90, 90, 90); }
a:hover { text-decoration: none; color: black; } 


.link_im_text a:link, .link_im_text a:visited  {
    color:rgb(80, 80, 80);
}

.link_im_text:hover {
    color:rgb(50, 50, 50);
    font-style: italic;
    font-weight: bold;
}

/* Tabelle */
table, th, td {
    border: solid silver 1px;
    padding: 2px;
    }

/* Schriftgrößen ------------------- */
h1 { font-size: bold 2em; margin: 0; color: rgb(255,102,0);  }
h2 { font-size: bold 1.5em; margin: 0; color: rgb(51,102,153) ; }
h3 { font-size: bold 1.2em; margin: 0; color:rgb(51, 102, 153); }
h4 { font-size: bold 1em; margin: 0; }
h5 { font-size: italic 1em; margin: 0; }
h6 { font-size: 0.8em; margin: 0; }

/* Liste */
ul {
    list-style-type: none;
    margin: 0 20px;
    padding: 0;
}
.ul_number {
    list-style-type: decimal;
}

/* Scrollbalken  */
::-webkit-scrollbar {
    width: 0px;               /* width of the entire scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background: #F2F2F2;        /* color of the tracking area */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #FFFFFF;    /* color of the scroll thumb */
    border-radius:3px;       /* roundness of the scroll thumb */
    border: 1px solid  #3689B2;  /* creates padding around scroll thumb */
  }

/* Farben */
.rot { color:  red; }
 .gruen { color: green; }

/* Text */  
 .text_gross  { font-size: 1.2em; }
 .text_normal { font-size: 0.85em; }
 .text_klein  { font-size: 0.6em; }
  
 .z_abstand_mittel { line-height: 1.5em; }

 .z_abstand_gross {line-height: 1.3em;}

 .text_zentriert {
    display: flex;
    justify-content: center; 
}

.zentriert {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Linie */
.linie {
    border-bottom: 1px solid  rgb(51,102,153) ;
    width: 95%;
    margin: 10px auto;
}

.linie_50 {
    border-bottom: 1px solid rgb(51,102,153);
    width: 70%;
    margin: 20px auto;
}

/* Abstand */
.abstand_10 {
    height: 20px;
    width: 100%;
}

.abstand_20 {
    position: relative;
    height: 20px;
    width: 100%;
}

/* Formular */
form {
    padding: 0;
    margin: 0;
}

input, select, textarea {
    font-size: 1.2em;
    font-family: inherit;
    font-weight: 500;
    border-radius: 4px;
    border: solid silver 1px;
    padding: 5px 12px;
    height: 30px;
    margin: 10px;
}	  

::placeholder {
color:silver;
opacity:1;
transition: opacity 1s;
font-size: 0.8em;
}

:focus::placeholder { opacity:0  }

form label { 
	cursor: pointer;  /* Mauszeiger wird zur Hand */ 
	font-size: 0.9em;
	font-style: italic;
    margin: 10px;
}

/* Button */
.btn_eintrag {
    position: relative;
    padding: 2px 8px;
    margin: 0 0 0 10px;
    right: 10px;
    border-radius: 4px;
    border: solid #3689B2 1px;
    text-decoration: none;
    font-size: 1.2em;
    background-color: #f8f8f8;
    color: rgb(100, 100, 100);
}
.btn_eintrag:hover {
    background: #FFFFFF;
    border: solid   #333333 1px;
    text-decoration: none;
    color: black;
}  
.btn_liste {
    position: relative;
    padding: 3px 8px;
    border-radius: 2px;
    border: solid #3689B2 1px;
    text-decoration: none;
    font-size: 0.9em;
    min-width: 260px;
    background-color: #f8f8f8;
    color: rgb(100, 100, 100);
    margin: 2px 0 0 20px;
}
.btn_liste:hover {
    background: #FFFFFF;
    border: solid   #333333 1px;
    text-decoration: none;
    color: black;
}  

.btn_tab_liste {
    position: relative;
    padding: 3px 8px;
    border-radius: 4px;
    border: solid #3689B2 1px;
    text-decoration: none;
    font-size: 0.9em;
    min-width: 100px;
    background-color: #f8f8f8;
    color:cornflowerblue ;
    margin: 2px 0 0 20px;
}
.btn_tab_liste:hover {
    background: #FFFFFF;
    border: solid   #333333 1px;
    text-decoration: none;
    color: #333333;
} 


/* Image */
.img_rand_blau {
    border: 2px solid  #3689B2;;
    padding: 2px;
}


/* === Layout ========================================================== */

/* --- Kopfbereich ---------------------- */
.kopf_bereich {
    height: 120px;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.kopf_slider {
    position: absolute;
    top: 0;
    background-color: #3689B2;
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100%;
}


.menu a:link, .menu a:visited  {
    color:silver;
}

.ebeneeins>li a:hover, .ebenezwei>li a:hover  {
    color:white;
}


.menu {
    position: absolute;
    top: 0;
    display: flex;
    font-size: 1.2em;
    justify-content: center;
    background-color: rgba(0,0,0,0.5);
    height: 2vw;
    width: 100%;
}

        .ebeneeins {
            display: flex;
            font-size: 1.2em;
            justify-content: center;
            width: 60%;
        }
        
        .ebeneeins>li {
            width: 20%;
            border-bottom: 1px solid rgb(51,102,153);
            border-right: 1px solid rgb(51,102,153);
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
         }
            
        .ebeneeins>li:hover {
            background: black;
            transition: 0.5s;
        }
            
        .ebeneeins>li:first-child {
            border-left: 1px solid rgb(51,102,153);
        }
        
        
        .ebenezwei {
            z-index: 2;
            position: absolute;
            width: calc(155% + 2px); 
            top: 2vw;
            left: 0px;
            text-align: initial;
            background: rgba(0,0,0,0.5);
            font-size: 1em;
            display: none;
        }
        
        .ebenezwei>li {
            border-bottom: 1px solid rgb(51,102,153);
            padding: 5% 3% 5% 3%;
        }
        
        .ebenezwei>li:hover {
            background: black;
            transition: 0.2s;
        }
        
        .ebenezwei>li:last-child {
            border-bottom: 1px solid rgb(51,102,153);
        }
        
        .clickhover_amoto:hover .ebenezwei {
            display: block;
        }
        .clickhover_amoto {
            position: relative;
        }
        #open_amoto:checked+.clickhover_leistung li:first-of-type {
            border-top: 1px solid white;
        }
        
        
        .clickhover_leistung:hover .ebenezwei {
            display: block;
        }
        .clickhover_leistung {
            position: relative;
        }
        #open_leistung:checked+.clickhover_leistung li:first-of-type {
            border-top: 1px solid white;
        }
        
        .clickhover_beispiele:hover .ebenezwei {
            display: block;
        }
        .clickhover_beispiele {
            position: relative;
        }
        #open_beispiele:checked+.clickhover_beispiele li:first-of-type {
            border-top: 1px solid white;
        }
        
        .clickhover_marketing:hover .ebenezwei {
            display: block;
        }
        .clickhover_marketing {
            position: relative;
        }
        #open_marketing:checked+.clickhover_marketing li:first-of-type {
            border-top: 1px solid white;
        }
        
        .clickhover_tipps:hover .ebenezwei {
            display: block;
        }
        .clickhover_tipps {
            position: relative;
        }
        #open_tipps:checked+.clickhover_tipps li:first-of-type {
            border-top: 1px solid white;
        }
        


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

.inhaltbereich {
    position: relative;
    display: flex;
    justify-content: center;
    width: 1200px;
    margin: 0px auto 40px auto;
    background-color: rgb(223, 223, 223);

}

.infobereich {
    position: relative;
    width: 70%;
}

.infobereich_kopf {
    z-index: 1;
    position: absolute;
    top: -15px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 15px;
    background-color: rgb(248, 248, 248);
    border-radius: 3px 3px 0 0 ;
}

.infobereich_anzeige {
    left: 0px;
    width: 100%;
    box-shadow: 0px 0px 15px 10px rgba(0,0,0,0.3);
    background-color: rgb(248, 248, 248);
    border-radius: 0 0 3px 3px;
}

.info {
    padding: 25px;
}

/* ------------------------------------------ */

.seitenbereich_rechts {
    width: 30%;
}

.seite {
    margin: 30px 20px 20px 30px;
    height: 90%;
    border: 0px solid black;
}

.seitenbereich_unten {
    display: none;
}

/* ---- Fussbereich ---------------------------- */

.fussinhalt {
    display: flex;
    justify-content: center;
    background-color: rgba(129, 190, 220, 0.7);
    width: 100%;
    border-top: 1px solid rgb(51,102,153);
    border-bottom: 1px solid rgb(51,102,153);
    margin: 0 0 20px 0;
}

.fussbereich {
    width: 80%;
    display: flex;
    justify-content: center; 
}

.fuss_menu {
    list-style-type: none;
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 30px;
    margin: 0 0 0 50px;
}

.fuss_menu_punkt {
    user-select: none;
    cursor: pointer;
    padding: 0 0em;
    font-size: 0.8em;
    padding: 0 50px 0 0;
}

/* === Kopf-Slider ============================================================================= */

#kopf_slider {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}


.slider_img {
    position: absolute;
    top: 0;
    left: 0;
}

.klasse_1 { animation: UD_KLASSE_1 infinite 30000ms; }
.klasse_2 { animation: UD_KLASSE_2 infinite 30000ms; }
.klasse_3 { animation: UD_KLASSE_3 infinite 30000ms; }
.klasse_4 { animation: UD_KLASSE_4 infinite 30000ms; }
.klasse_5 { animation: UD_KLASSE_5 infinite 30000ms; }

@keyframes UD_KLASSE_1 {
    0%   {opacity: 1;}
    15%  {opacity: 1;}
    20%  {opacity: 0;}
    95%  {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes UD_KLASSE_2 {
    0%   {opacity: 0;}
    15%  {opacity: 0;}
    20%  {opacity: 1;}
    35%  {opacity: 1;} 
    40%  {opacity: 0;} 
    100% {opacity: 0;}
}

@keyframes UD_KLASSE_3 {
    0%   {opacity: 0;}
    35%  {opacity: 0;}
    40%  {opacity: 1;}
    55%  {opacity: 1;} 
    60%  {opacity: 0;} 
    100% {opacity: 0;}
}

@keyframes UD_KLASSE_4 {
    0%   {opacity: 0;}
    55%  {opacity: 0;}
    60%  {opacity: 1;}
    75%  {opacity: 1;} 
    80%  {opacity: 0;}
    100% {opacity: 0;}
}

@keyframes UD_KLASSE_5 {
    0%   {opacity: 0;}
    5%   {opacity: 0;}
    75%  {opacity: 0;}
    80%  {opacity: 1;}
    95%  {opacity: 1;}
    100% {opacity: 0;}
}


/* === Vertikal-Slider ============================================================================= */

.slider_text_bereich {
    width: 80%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(51,102,153);
    border-radius: 8px;
    padding: 10px;
    background-color: rgb(248, 248, 248);
}

.slider-wrapper {
    color: #aaa;
}

.text_slider {
    height: 160px;
    overflow: hidden;
}

.text_slider div {
    height: 160px;
    margin-bottom: 160px;
    padding: 2px 5px;
    box-sizing: border-box;
   }

.text_slider_text1:hover,
.text_slider_text2:hover,
.text_slider_text3:hover,
.text_slider_text4:hover,
.text_slider_text5:hover,
.text_slider_text6:hover,
.text_slider_text7:hover,
.text_slider_text8:hover {
    background-color:  rgba(129, 190, 220, 0.5);
}

.text_slider_text1 {
    animation: slide 50s linear infinite;
    width: 100%;
}

/* 5 Slides
@keyframes slide {
    0%   {margin-top:   -1600px; }
    5%   {margin-top:   -1280px; }
    20%  {margin-top:   -1280px; }
    25%  {margin-top:    -960px; }
    40%  {margin-top:    -960px; }
    45%  {margin-top:    -640px; }
    60%  {margin-top:    -640px; }
    65%  {margin-top:    -320px; }
    80%  {margin-top:    -320px; }
    85%  {margin-top:       0px; }
    100% {margin-top:       0px; }
} */

/* 8 Slides */
@keyframes slide {
    0%      {margin-top:   -2560px; }
 
    5%      {margin-top:   -2240px; }

    12.5%   {margin-top:   -2240px; }
    17.5%   {margin-top:   -1920px; }

    25%     {margin-top:   -1920px; }
    30%     {margin-top:   -1600px; }

    37.5%   {margin-top:   -1600px; }
    42.5%   {margin-top:   -1280px; }

    50%     {margin-top:   -1280px; }
    55%     {margin-top:    -960px; }    

    62.5%   {margin-top:    -960px; }
    67.5%   {margin-top:    -640px; }

    75%     {margin-top:    -640px; }
    80%     {margin-top:    -320px; }      

    87.5%   {margin-top:    -320px; }
    92.5%   {margin-top:       0px; }

    100%    {margin-top:       0px; }
}

/* === WEB-Seiten ============================================================================= */

/* Startseite */
.home_amoto_logo {
    width: 50%;
}

.flex_einfliegen {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 5%;
    padding: 5%;
}

.text_einfliegen {
    width: 40%;
    padding: 3%;
    font-size: 1em;
    display: flex;
    background-color: white;
    border-radius: 8px;
}

.text_einfliegen:hover {
    background-color: rgba(129, 190, 220, 0.5);;
}

.flex_einfliegen>img {
    padding: 5%;
    transition: transform 2s;
    width: 25%;
}

.flex_einfliegen:nth-child(even) {
    flex-direction: row-reverse;
}

.flex_einfliegen:nth-child(odd)>img {
    transform: translateX(-500px);
}

.flex_einfliegen:nth-child(even)>img {
    transform: translateX(500px);
}

.einfliegen {
    transform: translateX(0);
    transition: transform 2s;
}

/* amoto */
.amoto_ueber_mich {
    width: 60%;
    display: flex;
    justify-content: center;
    margin: auto;
}
.amoto_ueber_mich_links {
    width: 70%;
}
.amoto_ueber_mich_rechts {
    width: 30%;
}

.bild_rund {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 75px;
    overflow: hidden;
}

.logo {
    display: flex;
    justify-content: center; 
    align-items: center;
}

.logo img {
    border: 0px;
}

.xing {
    background-color: white;
    border-radius: 5px;
    padding: 2px;
    border: 1px solid silver;
    margin: 10px;
    padding: 3px;
}
.linkedin {
    background-color: white;
    border-radius: 5px;
    border: 1px solid silver;
    margin: 10px;
    padding: 6px 2px 0px 2px;
}


/* --- NEWS---  */

.news_bilder {
    width: 30%;
}


/* --- Formular: Kontakt---  */
#input_email_user {
    position: relative;
    left:    0px;
    width: 330px;
    border: solid orange 2px;
}

#input_email_betreff {
    position: relative;
    left:   98px;
    height: 40px;
    width: 250px;
    border: solid orange 2px;
}
#input_email_text {
    height: 200px;
    width:  94.5%;
}

/* Beispiele */
.inhalt_beispiele {
    width: 100%;
    display:flex;
    justify-content: center;
}

.inhalt_links {
width: 60%;
}

.bsp_rahmen {
    margin: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 0px solid silver;
    padding: 10px;
}
.bsp_rahmen:hover {
    background-color: rgba(129, 190, 220, 0.5);
}


.inhalt_rechts {
width: 30%;
border:  1px solid  silver;
border-radius: 5px;
padding: 10px 10px;
background-color: #ffffff;
}

.mitte {
    width: 100%;
    margin: 0 auto;
}

/* Leistungen */
.leistungen_rahmen {
    width: 80%;
    background-color: white;
    border: 0px solid silver;
    border-radius: 8px;
    padding: 15px;
    margin: 30px auto;
}


/* Beispiele */
.inhalt_marketing {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 10px 0;
}

.marketing_links_text {
width: 60%;
border:  0px solid  silver;
border-radius: 8px;
padding: 10px 10px;
background-color: #ffffff;
margin: 10px;
}

.marketing_rechts_text {
    width: 60%;
    border:  0px solid  silver;
    border-radius: 8px;
    padding: 10px 10px;
    background-color: #ffffff;
    margin: 10px;
    }

.marketing_links_bild {
    width: 40%;
    padding: 10px 10px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.marketing_rechts_bild {
    width: 40%;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    }

    .marketing_bild_rahmen {
        margin: 10px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        }

    /* Tipps */    
    .w_svg_text {
        width: 50%;
    }

/* Seitenbereich */
.seite_spruch {
    font-size: 1.4em;
    font-weight: bold;
    color: white;
}


/* ---------------------------------------------------------------------- */
/* --- MEDIA Handy | landscape ------------------------------------------ */
/* ---------------------------------------------------------------------- */

@media (max-width: 1360px) {

    body {
        width: 640px;
    }

    /* Schriftgrößen ------------------- */
    h1 { font-size: bold 1.4em; margin: 0; color: rgb(255,102,0);  }
    h2 { font-size: bold 1.2em; margin: 0; color: rgb(51,102,153) ; }
    h3 { font-size: bold 1.0em; margin: 0; color:rgb(51, 102, 153); }
    h4 { font-size: bold 0.9em; margin: 0; }
    h5 { font-size: italic 0.9em; margin: 0; }
    h6 { font-size: 0.7em; margin: 0; }


    .kopf_bereich {
        margin: 0 auto;
        height: 100px;
    }

    nav {
        height: 1.8em;
        width: 360px;
    }
 
    .menu {
     position: absolute;
     top: 0;
     display: flex;
     font-size: 1.2em;
     justify-content: center;
     background-color: rgba(0,0,0,0.5);
     height: 4vw;
     width: 100%;
 }
 
         .ebeneeins {
             display: flex;
             font-size: 0.8em;
             justify-content: center;
             width: 70%;
         }
         
         .ebeneeins>li {
             width: 20%;
             border-bottom: 1px solid rgb(51,102,153);
             border-right: 1px solid rgb(51,102,153);
             text-align: center;
             display: flex;
             justify-content: center;
             align-items: center;
          }
                         
         .ebenezwei {
             z-index: 2;
             position: absolute;
             width: calc(170% + 2px); 
             top: 4vw;
             left: 0px;
             text-align: initial;
             background: rgba(0,0,0,0.5);
             font-size: 1em;
             display: none;
         }
         
         .ebenezwei>li {
             border-bottom: 1px solid rgb(51,102,153);
             padding: 5% 3% 5% 3%;
         }

    form {
        padding: 0;
        margin: 2px 0 0 0;
    }
    input, select, textarea {
        font-size: 1em;
        border-radius: 2px;
        padding: 3px 6px;
        height: 25px;
        margin: 5px;
    }	
    form label { 
        font-size: 1.0em;
        margin: 5px;
    }

    /* Inhalt -------------------------- */
    .inhaltbereich {
        display: block;
        width: 600px;
    }

    .infobereich {
        position: relative;
        width: 100%;
    }
    
    .infobereich_kopf {
        z-index: 1;
        position: absolute;
        top: -15px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        width: 100%;
        height: 15px;
        background-color: rgb(248, 248, 248);
        border-radius: 3px 3px 0 0 ;
    }
    
    .infobereich_anzeige {
        left: 0px;
        width: 100%;
        box-shadow: 0px 0px 15px 10px rgba(0,0,0,0.3);
        background-color: rgb(248, 248, 248);
        border-radius: 0 0 3px 3px;
    }
    
    .info {
        padding: 25px;
    }
    
    /* ------------------------------------------ */
    
    .seitenbereich_rechts {
        display: none;
    }
    
    .seitenbereich_unten {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .seite {
        display: none;
    }

    .seitenbereich_fuss {
        width: 600px;
        margin: 10px 0 30px 0;
    
    }
    
    .slider_text_bereich {
        width: 50%;
    }
    
 
    /* Home */

    .home_amoto_logo {
        width: 50%;
    }

    .flex_einfliegen, .flex_einfliegen:nth-child(even) {
        flex-direction: column-reverse;
    }

    .text_einfliegen {
        width:80%
    }

    .flex_einfliegen>img {
        width: 40%;
    }

    /* --- Formular: kontakt---  */
    #input_email_user {
        left:   0px;
        width: 300px;
    }

    #input_email_betreff {
        left:   75px;
        height: 35px;
        width: 317px;
    }

    #input_email_text {
        height: 140px;
        width:  525px;
    }

    .btn_speichern {
        position: relative;
        left: 100px;
        border-radius: 2px;
        padding: 2px 4px;
        border: solid #3689B2 1px;
        margin: 6px 10px;
    }    

} /* Ende @media (max-width: 1360px)



/* --------------------------------------------------------------------- */
/* --- MEDIA Handy | hochkant ------------------------------------------ */
/* --------------------------------------------------------------------- */

@media (max-width: 610px) {

    body {
       width: 360px;
    }

   /* Schriftgrößen ------------------- */
   h1 { font-size: bold 1.4em; margin: 0; color: rgb(255,102,0);  }
   h2 { font-size: bold 1.2em; margin: 0; color: rgb(51,102,153) ; }
   h3 { font-size: bold 1.0em; margin: 0; color:rgb(51, 102, 153); }
   h4 { font-size: bold 0.9em; margin: 0; }
   h5 { font-size: italic 0.9em; margin: 0; }
   h6 { font-size: 0.7em; margin: 0; }


   .kopf_bereich {
       margin: 0 auto;
       height: 140px;

   }

   #kopf_slider {
    position: relative;
    margin: 0;
    height: 140px;
   }

   nav {
       height: 1.8em;
       width: 360px;
   }

   .menu {
    position: absolute;
    top: 0;
    display: flex;
    font-size: 1.2em;
    justify-content: center;
    background-color: rgba(0,0,0,0.5);
    height: 4vw;
    width: 100%;
}

        .ebeneeins {
            display: flex;
            font-size: 0.7em;
            justify-content: center;
            width: 95%;
        }
        
        .ebeneeins>li {
            width: 20%;
            border-bottom: 1px solid rgb(51,102,153);
            border-right: 1px solid rgb(51,102,153);
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
         }
                        
        .ebenezwei {
            z-index: 2;
            position: absolute;
            width: calc(200% + 2px); 
            top: 4vw;
            left: 0px;
            text-align: initial;
            background: rgba(0,0,0,0.5);
            font-size: 1em;
            display: none;
        }
        
        .ebenezwei>li {
            border-bottom: 1px solid rgb(51,102,153);
            padding: 5% 3% 5% 3%;
        }
        

   form {
       padding: 0;
       margin: 2px 0 0 0;
   }
   input, select, textarea {
       font-size: 1em;
       border-radius: 2px;
       padding: 3px 6px;
       height: 25px;
       margin: 5px;
   }	
   form label { 
       font-size: 1.0em;
       margin: 5px;
   }

   /* Inhalt -------------------------- */
   .inhaltbereich {
       display: block;
       width: 100%;
       background-color: rgba(129, 190, 220, 0);
       top: -65px;
       margin: 0px;
   }

   .infobereich {
       position: relative;
       top: -5px;
       width: 95%;
       margin: auto;
   }
   
   .infobereich_kopf {
    display: none;

   }
   
   .infobereich_anzeige {
       box-shadow: 0px 0px 0 0 white;

   }
   
   .info {
       padding: 25px;
   }
   
   /* ------------------------------------------ */
   
   .seitenbereich_rechts {
       display: none;
   }
   
   .seitenbereich_unten {
       width: 100%;
       display: flex;
       justify-content: center;
       font-size: 0.9em;
   }

   .seite {
       display: none;
   }

   .seitenbereich_fuss {
       width: 100%;
       margin: -20px 0 30px 0;
   
   }
   
   .slider_text_bereich {
       width: 80%;
   }
   
   .fussinhalt {
    display: left;

    }

    .fussbereich {
        margin: 0 auto; 
        margin: 0;
        width: 100%;
    }

    .fuss_menu {
        width: 100%;
        height: 20px;
        margin: 0 auto;

    }

    .fuss_menu_punkt {
        user-select: none;
        cursor: pointer;
        padding: 0 0em;
        font-size: 0.8em;
        padding: 0 5px 0 5px;
    }

   /* Home */

   .home_amoto_logo {
       width: 50%;
   }

   .text_slogan {
        font-size: 1.2em;
        margin: 0 0 0 50px;
   }

   .flex_einfliegen>img {
        padding: 15%;
    }

   .flex_einfliegen, .flex_einfliegen:nth-child(even) {
       flex-direction: column-reverse;
   }

   .text_einfliegen {
       width: 100%;
       margin-bottom: 60px;
   }

   .flex_einfliegen>img {
       width: 70%;
   }

   /* amoto */
   .amoto_ueber_mich {
        display: block;
        margin: 0;
        justify-content: left;
   }

   .amoto_ueber_mich_links {
        width: 300px;
    }
    .amoto_ueber_mich_rechts {
        width: 300px;
        display: flex;
        justify-content: center;
    }

   .bild_rund {
        padding: 20px;
}

   /* leistung */
   .diagramm_leistung {
         width: 400px;
   }

    /* Beispiele */

    .ueberschrift_beispiele {
        font-size: 1.6em;
    }

    .inhalt_beispiele {
        display: block;
    }

    .inhalt_links {
        width: 300px;
        font-size: 0.9em;
    }

    .inhalt_rechts {
        width: 270px;
        margin: 40px 0 0 0;
    }

    /* Marketing */
    
    .inhalt_marketing {
        display: block;
    }

    .marketing_links_text {
        width: 95%;
        margin: 0px;
        }
        
    .marketing_rechts_text {
        width: 95%;
        margin: 0px;
    }

    .marketing_links_bild {
        width: 95%;
        padding: 10px 0;
    }
    
    .marketing_rechts_bild {
        width: 95%;
        padding: 10px 0;
        }

    /* Tipps */    
    .w_svg_text {
        width: 95%;
    }


    /* --- NEWS---  */

    .news_bilder {
     width: 60%;
    }    

   /* --- Formular: kontakt---  */
   #input_email_user {
       left:   0px;
       width: 270px;
   }

   #input_email_betreff {
       left:   10px;
       height: 35px;
       width: 210px;
   }

   #input_email_text {
       height: 240px;
       width:  270px;
   }

   .btn_speichern {
       position: relative;
       left: 100px;
       border-radius: 2px;
       padding: 2px 4px;
       border: solid #3689B2 1px;
       margin: 6px 10px;
   }    

} /* Ende @media (max-width: 600px)

/* ============================================================================================= */

form {
    padding: 0;
    margin: 0;
}

input, select, textarea {
    font-size: 1.2em;
    font-family: inherit;
    font-weight: 500;
    border-radius: 4px;
    border: solid silver 1px;
    padding: 5px 12px;
    height: 30px;
    margin: 10px;
}	

::placeholder {
    color:silver;
    opacity:1;
    transition: opacity 1s;
    font-size: 0.8em;
    }
    
:focus::placeholder { opacity:0  }
    
form label { 
    cursor: pointer;  /* Mauszeiger wird zur Hand */ 
    font-size: 1.2em;
    font-style: italic;
    margin: 10px;
}

#pos_user {
    top:  5px;
    right: 5px;
    font-size: 0.8em;
}

#input_log_user {
    position: relative;
    left:   0px;
    width: 170px;
}

#input_log_passwort {
    position: relative;
    left:   34px;
    width: 170px;
}