.sonstiges_start_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20vh;
}

.sonstiges_start_tabelle a{
    display: block;
    color: #106eb4;
    font-size: 25px;
    background-color: white;
    border: 3px solid #106eb4;
    border-radius: 10px;
    text-decoration: none;
    width: 300px;
    height: auto;
    padding: 20px;
    transition: 0.4s;
}

.sonstiges_start_tabelle a:hover{
    box-shadow: inset 4px 4px 4px 0px #808080;
    transition: 0.4s;
}

.sonstiges_start_tabelle img{
    height: 28px;
    width: auto;
    margin-bottom: -5px;
}

.sonstiges_start_tabelle .sonstiges_start_tabelle_2spalten{
    grid-column: 1/3;
    display: flex;
    justify-content: center;
}


/*Impressum*/
#sonstiges_impressum_haupt{
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 50px;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

#sonstiges_impressum_haupt a{
    display: inline-block;
    position: relative;
    color: #106eb4;
    text-decoration: none;
}

#sonstiges_impressum_haupt a::after{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #106eb4;
    transform-origin: bottom center;
    transition: transform 0.3s ease-out;
}
  
#sonstiges_impressum_haupt a:hover::after{
      background-color: #106eb4;
      transform: scaleX(1);
      transform-origin: bottom center;
}

#sonstiges_impressum_haupt img{
    height: 20px;
    margin-bottom: -3px;
}

.sonstiges_impressum_text{
    margin-bottom: 20px;
}

.sonstiges_impressum_ueberschrift{
    font-size: 25px;
    color: #e3010f;
    font-weight: bold;
}

.sonstiges_impressum_ueberschrift_klein{
    font-size: 18px;
    color: #e3010f;
    font-weight: bold;
    align-items: baseline;
}


/* Kontakt */
#sonstiges_kontakt_haupt{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    column-gap: 10px;
    row-gap: 30px;
    border: 3px solid #106eb4;
    border-radius: 5px;
    padding: 10px;
    margin-left: 50px;
    margin-right: 50px;
}

#sonstiges_kontakt_haupt a{
    display: inline-block;
    position: relative;
    color: #106eb4;
    text-decoration: none;
}

#sonstiges_kontakt_haupt a::after{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #106eb4;
    transform-origin: bottom center;
    transition: transform 0.3s ease-out;
}
  
#sonstiges_kontakt_haupt a:hover::after{
      background-color: #106eb4;
      transform: scaleX(1);
      transform-origin: bottom center;
}

.sonstiges_kontakt_ueberschrift{
    text-align: center;
    font-size: 25px;
    color: #e3010f;
    font-weight: bold;
}

.sonstiges_kontakt_google{
    margin-left: 20px;
    margin-right: 20px;
}

.sonstiges_kontakt_seite{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto) 1fr;
    row-gap: 5px;
    text-align: center;
}

.sonstiges_kontakt_seite img{
    height: 20px;
    margin-bottom: -3px;
}

.sonstiges_kontakt_ueberschrift_2spalten{
    grid-column: 1/3;
    text-align: center;
    font-size: 25px;
    color: #e3010f;
    font-weight: bold;
}

.sonstiges_kontakt_formular{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    row-gap: 10px;
    column-gap: 5px;
}

.sonstiges_kontakt_formular textarea{
    padding: 5px;
    width: 95%;
    height: 100px;
}

.sonstiges_kontakt_formular_2spalten{
    grid-column: 1/3;
}

.sonstiges_kontakt_formular_auswahl{
    border: 2px solid #106eb4;
    border-radius: 5px;
    padding: 5px;
    width: 120px;
}

.sonstiges_kontakt_eingabe{
    border: 2px solid #106eb4;
    border-radius: 5px;
    padding: 5px;
    width: 90%;
}

.sonstiges_kontakt_eingabe_min{
    border-radius: 5px;
    padding: 5px;
    width: 90%;
}

.sonstiges_kontakt_eingabe_min:invalid{
    border: 2px solid #e3010f;
    border-radius: 5px;
}

.sonstiges_kontakt_eingabe_min:valid{
    border: 2px solid #106eb4;
    border-radius: 5px;
}

.sonstiges_kontakt_bestaetigung{
    grid-column: 1/3;
    color: #00b62f;
    font-weight: bold;
}


/*.sonstiges_kontakt_eingabe_min:invalid:focus{
    background-color: #e3010f2b;
}*/