html {
  height: 100%;
}
body {
  height: 100%;
  display: grid;
  grid-template-rows: 81px 1fr auto;
}

.header {
}

.main {
  padding: 64px 32px 0px 32px;
  margin: 0px;
  background: rgb(255, 255, 255);
}


.container {
    margin: 0;
    padding: 0;
    max-width: 100% !important;
}
.container-fluid {
    margin: 0;
    padding: 0;
    width: 100%;
}

.header-nav-container {
  top: 0;
  position: fixed;
  left: 0;
  margin: 0;
  vertical-align: middle;
  width: 100%;
  height: 80px;
  background: rgb(227, 6, 19);
  z-index: 2;
}

.header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 2;
}

.header-nav-logo a {
  float: left;
  display: block;
  text-align: center;
  padding: 17px;
  text-decoration: none;
  font-size: 20px;
  line-height: 40px;
}

@media only screen and (max-width: 640px) {
  .header-nav-mobile-logo img {
    width: 150px;
  }
}

.header-nav-items {
  display: flex;
  z-index: 2;
}

.header-nav-item-link {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 17px;
  text-decoration: none;
  font-size: 18px;
  line-height: 46px;
}
.header-nav-item-link:hover {
  background-color: white;
  color: rgb(227, 6, 19);
}
.header-nav-item-link:active {
  background-color: black;
  color: white;
}

.header-nav-sub-item-link {
  float: left;
  display: block;
  color: rgb(80, 80, 80);
  text-align: left;
  padding: 0px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  font-size: 16px;
  line-height: 41px;
  width: 100%;
  border-bottom: 1px solid black;
}
.header-nav-sub-item-link.selected {
  color: rgb(227, 6, 19);
}
.header-nav-sub-item-link:hover {
  background-color: rgb(230, 230, 230);
  color: rgb(80, 80, 80);
}
.header-nav-sub-item-link:hover.selected {
  color: rgb(227, 6, 19);
}
.header-nav-sub-item-link:active {
  background-color: black;
  color: white;
}


.header-nav-item:hover .header-nav-item-link {
  background-color: white;
  color: rgb(227, 6, 19);
}
.header-nav-item:hover .header-nav-sub {
  display: flex;
  flex-direction: row;
  background-color: white;
  color: black;
  z-index: 2;  /* check this */
}
.header-nav-item:hover .breadcrumb {
  z-index: -1;
}

.header-nav-sub  {
  display: none;
  position: absolute;
  left: 0px;
  top: 80px;
  width: 100%;
/* height: 436px; */
  height: 352px;
  z-index: 2;
  float: left;
  box-shadow: 1px 1px 8px grey;
}
.header-nav-sub-items {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 0px;
  margin-right: 50px;
  background-color: white;
  width: calc(100vw - 252px);
  z-index: 2;
  transform: scale(1.0);
}
.header-nav-sub-item {
  background-color: white;
  padding-left: 15px;
  width: 50%;
}

.header-nav-sub-teaser {
  flex: 0 0 252px;
  height: 252px;
  float: left;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 50px;
  margin-right: 50px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.header-nav-sub-teaser-content {
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.header-nav-sub-teaser-link {
  color: white;
  font-size: 14px;
  text-align: left;
  text-decoration: none;
  text-shadow: 1px 1px black;
}
.header-nav-sub-teaser-link:hover {
  color: yellow;
}

.header-nav-sub-teaser div {
  padding: 20px 20px 20px;
  position: relative;
  opacity: 0;
  text-align: left;
  transform: translateY(200px);
  transition: all 0.1s ease-in-out;
}
.header-nav-sub-teaser:hover div {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.1s;
}

.header-nav-sub-teaser h2 {
  background: rgba(227, 6, 19, 0.5);
  color: yellow;
  font-size: 18px;
  margin: 0px;
  padding: 15px;
  position: relative;
  text-align: center;
  text-shadow: 1px 1px black;
  transform: translateY(201px);
  transition: all 0.1s ease-in-out;
}
.header-nav-sub-teaser:hover h2 {
  background: rgba(227, 6, 19, 0.75);
  transform: translateY(0px);
  transition-delay: 0.1s;
}
.header-nav-sub-teaser p {
  color: white;
  font-style: italic;
  font-size: 16px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 0px;
  position: relative;
  opacity: 0;
  text-align: left;
  transform: translateY(201px);
  transition: all 0.1s ease-in-out;
}
.header-nav-sub-teaser:hover p {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.1s;
}



.header-nav-lvl3 {
  display: none;
  position: absolute;
  float: left;
  top: 0px;
  width: 50%;
  height: 100%;
  left: 50%;
  background-color: rgb(230, 230, 230);
}

.header-nav-sub-item:hover > .header-nav-lvl3 {
  display: inline-block;
}
.header-nav-sub-item:hover > .header-nav-sub-item-link {
  background-color: rgb(230, 230, 230);
}

.header-nav-lvl3 > .header-nav-sub-item-link:hover {
  background-color: rgb(200, 200, 200);
}



.header-nav-toggle {
  height: 40px;
}

.header-nav-mobile {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header-nav-mobile-logo a {
  float: left;
  display: block;
  text-align: center;
  padding: 17px;
  text-decoration: none;
  font-size: 20px;
  line-height: 40px;
}

.header-nav-mobile-toggle {
  display: flex;
  z-index: 2;
}


.header-nav-mobile-items {
  display: none;
  flex-direction: column;
  /*width: 100%;*/
  width: 100vw;
  top: 80px;
  left: 0px;
  position: fixed;
  background-color: white;
  box-shadow: 1px 1px 8px grey;
  transform: scale(1.0);
  z-index: 2;
}
.header-nav-mobile-items.enabled {
  display: flex;
}
.header-nav-mobile-item {
  display: flex;
}


.header-nav-mobile-sub-items {
  display: flex;
  flex-direction: column;
  /*width: 100%;*/
  width: 100vw;
  top: 0px;
  left: 0px;
  position: fixed;
  background-color: white;
  box-shadow: 1px 1px 8px grey;
  z-index: 2;
  overflow-y: auto;
  height: calc(100vh - 80px); 
  max-height: calc(100vh - 80px);
  /*transform: translateX(-102%);*/
  transform: translateX(-102vw);
  transition: all 0.3s ease-in-out;
}
.header-nav-mobile-sub-item {
  display: flex;
}


/* Mobile navigation: link for menu item */
.header-nav-mobile-item-link {
  float: left;
  display: block;
  color: rgb(80, 80, 80);
  text-align: left;
  padding: 0px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  font-size: 14px;
  line-height: 60px;
  width: 100%;
  border-bottom: 1px solid black;
}
.header-nav-mobile-item-link.selected {
  color: rgb(227, 6, 19);
}
.header-nav-mobile-item-link:hover {
  background-color: rgb(230, 230, 230);
  color: rgb(80, 80, 80);
}
.header-nav-mobile-item-link:hover.selected {
  color: rgb(227, 6, 19);
}
.header-nav-mobile-item-link:active {
  background-color: black;
  color: white;
}



/* Mobile navigation: link to next navigation level */
.header-nav-mobile-item-sub {
  float: left;
  display: block;
  color: rgb(80, 80, 80);
  text-align: center;
  padding: 0px;
  text-decoration: none;
  font-size: 14px;
  line-height: 60px;
  width: 60px;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
}
.header-nav-mobile-item-sub:hover {
  background-color: rgb(230, 230, 230);
  color: rgb(80, 80, 80);
}
.header-nav-mobile-item-sub:active {
  background-color: black;
  color: white;
}




.header-nav-mobile-sub {
  display: block;
  position: fixed;
  top: 80px;
  left: 0px;
  width: 100%;
  background-color: white;
  box-shadow: 1px 1px 8px grey;
  overflow-y: auto;
  height: auto;
  max-height: calc(100vh - 80px);
  transform: translateX(-102vw);
	transition: all 0.3s ease-in-out;
}
.header-nav-mobile-sub-item-link {
  float: left;
  display: block;
  color: rgb(80, 80, 80);
  text-align: left;
  padding: 0px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  font-size: 14px;
  line-height: 60px;
  width: 100%;
  border-bottom: 1px solid black;
}
.header-nav-mobile-sub-item-link.selected {
  color: rgb(227, 6, 19);
}
.header-nav-mobile-sub-item-link:hover {
  background-color: rgb(230, 230, 230);
  color: rgb(80, 80, 80);
}
.header-nav-mobile-sub-item-link:hover.selected {
  color: rgb(227, 6, 19);
}
.header-nav-mobile-sub-item-link:active {
  background-color: black;
  color: white;
}







.breadcrumb {
  top: 0;
  left: 0;
  margin: 0;
  margin-top: 79px;
  z-index: 1;
  padding: 12px;
  width: 100%;
  min-height: 48px;
  line-height: 24px;
  font-size: 14px;
  color: rgb(80, 80, 80);
  position: fixed !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0px 1px 8px grey;
}
.breadcrumb a {
  line-height: 24px;
  color: rgb(80, 80, 80);
  text-decoration: none;
  text-align: left;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb i {
  padding-left: 5px;
  padding-right: 5px;
}


.footer {
  background: rgb(235, 235, 235);
}

.footer-sitemap-container {
  width: 100%;
}
.footer-sitemap-row {
  width: 100%;
  display: flex;
}
.footer-sitemap-group1 {
  width: 60%;
}
.footer-sitemap-group2 {
  width: 40%;
}
.footer-sitemap-group1 > .footer-sitemap-box {
  padding-bottom: 16px;
  padding-top:16px;
  float: left;
  width: 25%;
  /*min-height: 180px;*/
  hyphens: auto;
}
.footer-sitemap-group2 > .footer-sitemap-box {
  padding-bottom: 16px;
  padding-top:16px;
  float: left;
  width: 100%;
}
.footer-sitemap-row:after {
  content: "";
  display: table;
  clear: both;
}
.footer-sitemap-box {
}

@media screen and (max-width: 1160px) {
  .footer-sitemap-row {
    display: block;
  }
  .footer-sitemap-group1 > .footer-sitemap-box  {
    width: 50%;
    min-height: 150px;
  }
  .footer-sitemap-group1 {
    width: 100%;
  }
  .footer-sitemap-group2 {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .footer-sitemap-row {
    display: block;
  }
  .footer-sitemap-group1 > .footer-sitemap-box  {
    width: 100%;
    min-height: 0px;
  }
  .footer-sitemap-group1 {
    width: 100%;
  }
  .footer-sitemap-group2 {
    width: 100%;
  }
}

.footer-sitemap-item-link {
  color: rgb(80, 80, 80);
  text-align: left;
  padding-left: 16px;
  padding-bottom: 8px;
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
}
.footer-sitemap-item-link:hover {
  color: black;
}
.footer-sitemap-subitem-link {
  color: rgb(80, 80, 80);
  text-align: left;
  padding-left: 12px;
  padding-bottom: 4px;
  text-decoration: none;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
}
.footer-sitemap-subitem-link:hover {
  color: black;
}

.footer-sitemap-box > h2 {
  color: rgb(80, 80, 80);
  text-align: left;
  padding-left: 16px;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.footer-sitemap-box > p {
  color: rgb(80, 80, 80);
  text-align: left;
  padding-left: 16px;
  padding-bottom: 8px;
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.footer-sitemap-box > p > a {
  color: rgb(80, 80, 80);
  text-decoration: none;
}
.footer-sitemap-box > p > a:hover {
  color: black;
}
.footer-sitemap-box > p > span {
  color: white;
  text-align: left;
  text-decoration: none;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
  background-color: #0069b4;
}
.footer-sitemap-box > p > span > a {
  color: white;
}


.footer-ribbon-container {
  width: 100%;
  height: 56px;
  padding: 15px;
  text-align: right;
  background: rgb(227, 6, 19);
}
.footer-ribbon-container a {

}
.footer-nav-container {
  padding-left: 8px;
}

.footer-nav-item-link {
  float: left;
  display: block;
  color: rgb(80, 80, 80);
  text-align: left;
  padding: 12px;
  text-decoration: none;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
}
.footer-nav-item-link:hover {
  color: black;
}

.content-element {
	padding: 0px 0px 64px 0px;
	font-size: 18px;
	font-weight: 400;
}

.carousel-large {
  margin: 0px;
  max-width: 1000px;
}
.carousel h5, .carousel p {
  text-decoration: none;
  text-shadow: 1px 1px black;
}
.carousel h5 {
	color: #ffed00;
}

.carousel-indicators {
	z-index: 1;
}

h1 {
  color: rgb(0, 105, 180);
  font-size: 38px;
  font-weight: 700;
  hyphens: auto;
  display: block;
}

h2 {
  color: rgb(0, 105, 180);
  font-size: 32px;
  font-weight: 300;
  display: block;
}


table {
  border-collapse: separate;
  border-spacing: 0.2em;
}

th, td {
  padding: 0.2em 0.5em;
  border-radius: 0.1em;
}

thead th {
  background-color: #cccccc;
  color: rgb(0, 105, 180);
}

table tbody tr:nth-child(even) {
  background-color: #dddddd;
  color: #000000;
}

.person {
  padding: 0px 0px 0px 0px;
  margin-right: 16px;
  margin-bottom: 16px;
  width: 206px;
  height: 275px;
  border: 5px solid white;
  box-shadow: 1px 10px 10px 1px grey; 
  background-color: #aaaaaa;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.person .title {
  padding: 8px 8px 8px 8px;
  background: rgba(227, 6, 19, 0.75);
  color: yellow;
  font-size: 14px;
  margin: 0px;
  position: relative;
  text-shadow: 1px 1px black;
}
.person .content {
  padding: 4px 8px 4px 8px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 14px;
  margin: 0px;
  display: none;
}
.person:hover .content {
  display: block;
}
.person p {
  margin: 0px 0px 8px 0px;
}
.person a {
  color: white;
  font-size: 14px;
  text-align: left;
  text-decoration: none;
  text-shadow: 1px 1px black;
}
.person a:hover {
  color: yellow;
}

.picturebox {
	width: 300px;
	height: 300px;
	background-color: #aaaaaa;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	margin: 8px;
	overflow: hidden;
	border: 5px solid white;
	box-shadow: 1px 10px 10px 1px grey; 
}
.picturebox:hover .content {
	display: block;
}
.picturebox .title {
	background: rgba(227, 6, 19, 1);
	font-size: 14px;
	color: #ffed00;
    text-shadow: 1px 1px black;
	padding: 8px 8px 8px 8px;
	width: fit-content;
}
.picturebox .content {
	background: rgba(255, 255, 255, 1);
	font-size: 14px;
	color: black;
	padding: 8px 8px 8px 8px;
	margin-top: 16px;
	margin-left: 16px;
	margin-right: 16px;
	margin-bottom: 16px;
	width: fit-content;
	display: none;
}


.contentbox {
	background-color: #aaaaaa;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	margin: 8px;
	min-width: 275px;
	height: 275px;
	box-shadow: 1px 10px 10px 1px grey; 
}
.contentbox-xl {
	width: 1148px;
}
.contentbox-l {
	width: 566px;
}
.contentbox-m {
	width: 372px;
}
.contentbox-s {
	width: 275px;
}
.contentbox a {
	text-decoration: none;
}
.contentbox .content {
	width: 100%;
	overflow: hidden;
}
.contentbox .date {
	font-size: 12px;
	color: #ffffff;
    text-shadow: 1px 1px black;
	width: fit-content;
	text-decoration-line: none;
}
.contentbox .title {
	background: rgba(227, 6, 19, 0.8);
	font-size: 15px;
	color: #ffed00;
    text-shadow: 1px 1px black;
	padding: 8px 8px 8px 8px;
	width: fit-content;
	text-decoration-line: none;
}
.contentbox .text {
	background: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	color: black;
	padding: 8px 8px 8px 8px;
	margin-top: 16px;
	margin-left: 16px;
	margin-right: 16px;
	margin-bottom: 16px;
	width: fit-content;
	text-decoration-line: none;
}

.gallery a {
	margin: 8px;
}
.gallery .img-thumbnail {
	box-shadow: 1px 10px 10px 1px grey; 
}

.lightbox-caption {
	background: rgba(227, 6, 19, 1.0);
	font-size: 14px;
    text-shadow: 1px 1px black;
	padding: 8px 8px 8px 8px;
}
.lightbox-caption strong {
	color: #ffed00;
}

.news-copyright {
	margin-bottom: 12px;
	color: darkgrey;
	font-size: 10px;
}

.accordion-item {
    position: relative;
    z-index: 0;
}
.accordion-header {
    position: relative;
    z-index: 0;
}
