.seeschlogo{
	max-height:180px;
	padding-top:20px;
	padding-bottom:20px;
	max-width:95%;
}
.midsslogo{
	max-height:130px;
	padding-top:20px;
	padding-bottom:20px;
}
.highlight{
	color:#95C11F;
}
.footerlink {
  color: #95c11f !important;
  text-decoration: none;
  font-weight: 500;                /* etwas kräftiger */
  position: relative;              /* Basis für den Balken-Effekt */
  transition: color 0.3s ease;     /* sanfter Farbwechsel */
}

.footerlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;                    /* Abstand unterhalb der Schrift */
  width: 0%;
  height: 2px;
  background-color: #95c11f;       /* Akzentfarbe */
  transition: width 0.3s ease;
}

.footerlink:hover {
  color: #000 !important;                     /* Schriftfarbe beim Hover */
}

.footerlink:hover::after {
  width: 100%;                     /* animierter Unterstrich fährt rein */
}
.bg-light{
	background-color:#fff !important;
}