p, ul{font-size: 1.2em;}

#logo {
  height: 75px;
  width: auto;
  padding: 0em 2em 0em 2em;
}
.nav-item {
  padding-left: 2em;
}

h1 {
	text-align: center;
	padding: 1em 1em 0.5em 1em;
	margin-bottom: 1em;
	border-bottom: 3px solid rgba(0,0,0,0.2);
}

.titeltext h1{
	padding: 1em 1em 1em 1em;
}

h3 {
	padding: 1em 0 0.5em 0;
	margin-bottom: 0.5em;
}

h2 {
  padding: 1em 0 0.5em 0;
	margin-bottom: 0.5em;
  font-weight: 700;
  text-align: center;
}

span.h4 {
  margin: auto 0 auto 0;
}

img {
  width: 100%;
}



footer p.h4 {
  line-height: 1.5;
  font-size: medium;
}

footer a{
  text-decoration: none;
  color: rgb(39, 56, 129);
}

:target {
  scroll-margin-top: 9rem;
}

a img:hover:not(#logo) {
  border: solid rgb(39, 56, 129);
}
#impressum{
  margin-top: 10%;
}


.titelbild {
  background-image: url("../bilder/titelbild.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: gray;
  height: 800px;
}

.titeltext {
  text-align: center;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255, 0.7);
  padding: 1em;
  border-radius: 15px;
}

.leistungen {
  border: solid;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  justify-content: center; /* align horizontal */
  align-items: center; /* align vertical */
  background-color: rgb(39, 56, 129);
  color: white;
  border-radius: 10px;
  height: 100px;
}

.fax {
	display: none!important;
}

label {
  font-weight: bold;
  font-size: large;
}

.navbar-brand {
  display: flex;
  justify-content: center; /* align horizontal */
  align-items: center; /* align vertical */
}


@media only screen and (max-width: 1400px) {
  .navbar-brand span {
    display: none;
  }
}





/* Inseljobs */

#inseljobs a[href^="tel:"],
#inseljobs a[href^="mailto:"] {
  color:rgb(39, 56, 129);
  font-weight: 400;
  text-decoration: none;
} 

#inseljobs a:hover[href^="tel:"],
#inseljobs a:hover[href^="mailto:"] {
  color:black;
  font-weight: 400;
  text-decoration: none;
} 

#inseljobs .blue {
  color:rgb(39, 56, 129);
}

.inseljobs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.inseljobs-item {
  flex: 0 1 auto;
  width: 49%;
  align-self: stretch;
  line-height: 1.4;
  align-self: center;
}

.jobs-item3,
.jobs-item7 {
  text-align: right;
}



@media (max-width: 768px) {
  .inseljobs-item {
    width: 100%;    
    line-height: 1.4;
  }

  .inseljobs2 .jobs-item4 {order:1;}
  .inseljobs2 .jobs-item3 {order:2;}

  .inseljobs4 .jobs-item8 {order:1;}
  .inseljobs4 .jobs-item7 {order:2;}
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  .inseljobs-item {
    width: 100%;
  }
}

@media (max-width: 1200px) {  
  .inseljobs-item {
    line-height: 1.1;
  }
}




.flexbox-panel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
}

.flexbox-item {
  flex: 0 1 auto;
  width: 25%;
  align-self: stretch;
}

.flex-item {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  text-align: center;
  background-color: rgb(39, 56, 129);
  color: white;
  padding: 1rem;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .flex-item {
    width: 100%;
    margin: .5rem 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 998px) {
  .flex-item {
    width: 30%;
    margin: .5rem 0;
  }
}



.accordion {
	transform: translateZ(0);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  background: white;
  font-family: var(--bs-font-sans-serif);
}

.accordion > .accordion-toggle {
	position: absolute;
	opacity: 0;
	display: none;
}

.accordion > label {
	position: relative;
	display: block;
	height: auto;
	line-height: 1.8rem;
	padding: 0 20px;
	font-size: 1.2rem;
	font-weight: 700;
	border-top: 1px solid #ddd;
	background: rgb(39, 56, 129);
	cursor: pointer;
  color: white;
}

.accordion > label:after {
  content: '\f078';
  position: absolute;
  top: 0px;
  right: 20px;
  font-family: fontawesome;
  transform: rotate(0deg);
  transition: .3s transform;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.accordion > section {
	height: 0;
	transition: .3s all;
	overflow: hidden;  
  border-bottom: 2px solid #ddd;
  margin-bottom: 2rem;
}

.accordion > .accordion-toggle:checked ~ label:after {
  transform: rotate(1.8rem);
  -webkit-transform: rotate(1.8rem);
  -moz-transform: rotate(1.8rem);
  -ms-transform: rotate(1.8rem);
  -o-transform: rotate(1.8rem);
}
 
 .accordion > .accordion-toggle:checked ~ section {
   height: auto;
   font-size: 1.2rem;
 }

.accordion > section p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.accordion > section h3 {
  font-size: 1.6rem;
  line-height: 1.5;
}

.accordion ul {
  padding-left: 2rem;
}

.accordion li {
  font-size: 1.2rem;
}

.small {
  font-size: 12px;
  font-weight: 300;
}
.fa-map-marker {
  padding-right: .5rem;
}
.fa-clock-o {
  padding-right: .5rem;
  padding-left: 2rem;
}

.ausschreibung {
  background-color:rgb(39, 56, 129);
  padding: .5rem;
  margin-bottom: 3rem;
  color: white;
}
.ausschreibung h5 {
  font-weight: 500;
  padding-bottom: .5rem;
}

.table {
	display: table;
	border-collapse:collapse;
	width: 100%;
}

.table-row {
	display: table-row;
}

.table-cell {
	display: table-cell;
	padding: 0;
  color: white;
}

.thead {
	font-weight: 400;
}
 @media only screen and (max-width: 992px) {

	.table {border:none;}
	
	.table-row,
	.table-cell {
		display: block;
    color: white;
	}
	
	.table-row { margin-bottom: .9rem; }
	
}

/* ENDE Inseljobs */