* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Top navigation*/
nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  color: #fff;
  background-color: #20649B;
  box-shadow: 0px 0px 9px 2px rgb(0 0 0 / 51%);
}

nav ul {
  display: flex;
  font-size: 1.1rem;
  gap: 0.5em;
  flex-wrap: wrap;
}

nav ul a {
  color: #fff;
  text-decoration: none;
}

nav ul li:hover, .navbtn:hover {
  background-color: #629eb58c;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
nav ul li, .navbtn {
  padding: 0.5rem 1rem;
  list-style: none;
  transition: 0.3s ease-in-out;
}

nav .icon {
  font-size: 2rem;
}
nav a:hover{
  text-decoration: none;
}
/* end of navigation*/

.jumbotron {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.icon img {
  width:70px;
  position: absolute;
  top: 15px;
  filter: drop-shadow(0px 1px 3px #00000099);
}

.toggler, .hfix {
  display: none;
}
.hfix {
  pointer-events: none;
}

.toggler span {
  display: block;
  width: 33px;
  height: 4px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
}

.toggler span:first-child {
  transform-origin: 0% 0%;
}

.toggler span:nth-last-child(2){
  transform-origin: 0% 100%;
}

#menutoggle {
  display: none;
}

.container {
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 1rem;
}

.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-row * {
  margin-right: 1rem;
}
.flex-row:last-child {
  margin-left: 0;
}

.grid-cards {
  display: grid;
  column-gap: 0.7rem;
  row-gap: 0.7rem;
}

.grid-cards .long {
  grid-column: auto / span 2;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: #BDD4DF;
  border-radius: 10px;
  /* box-shadow: 1px 1px 12px -6px #000; */
}

.card .card-footer {

}
.card .card-content {
  flex-grow: 1;
}


.muted {
  font-size: 0.9em;
  color: #5a5a5a;
}

a{
  color: #2f51ff;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

a.action {
  text-decoration: none;
  padding: 0.75rem 1.2rem 0.75rem 1.2rem;
  font-size: 1.3rem;
  border-radius: 10px;
  margin: 0.4rem;
  display: inline-block;
  background-color: #294885;
  color: #fff;
  box-shadow: 1px 1px 12px -6px #000;
}

a.action:hover {
  background-color: #5478bf;
  transition: 0.2s ease-in-out;
}

.galerie {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  justify-items: stretch;
  align-items: center;
}
.galerie img {
  max-width: 100%;
  cursor: pointer;
}
.galerie img:hover {
  opacity: 0.7;
  transition: 0.2s ease-in;
}
.main-text {
  display: grid;
  grid-template-areas: 
    "t t t i";
  align-items: start;
}

.main-text article {
  grid-area: t;
}

.main-text .infobox {
  grid-area: i;
  margin-left: 2rem;
  padding: 1rem;
  background-color: #BDD4DF;
  border-radius: 5px;
}

.big {
  font-size: 2.3rem;
}

.minor {
  margin-left: 0.4rem;
  font-size: 1.3rem
}