h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

body {
  margin: 0;
}

p {
  margin-bottom: 1rem;
}

ul {
  flex: 1;
  padding-left: 0;
}

ul.inset li {
  margin-left: 1.5rem;
}

li {
  list-style: none;
}

li:not(:last-child) {
  margin-bottom: 0.75rem;
}

ul.arrow-bullets li::before {
  content: "\02192";
  /* Unicode right arrow */
  color: rgb(1, 70, 104);
}

a {
  color: rgb(1, 70, 104);
}

.top-bar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 10;
  height: 4rem;
  background-color: rgb(200 198 198 / 0.82);
  box-sizing: border-box;
}

.top-bar > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.logotype {
  flex: 1;
  color: #fff;
  text-align: left;
  padding: 0.5rem 0 0 2rem;
}

.logotype h1 {
  margin: 0;
}

.logotype a {
  text-decoration: none;
  color: inherit;
}

.content-wrapper {
  background-color: #fff;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 4rem auto 0;
  background-color: #fff;
}

nav {
  flex: 1;
  height: 100%;
  width: 100%;
}

nav > ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 1;
}

nav > ul > li {
  padding: 1rem;
  margin-bottom: 0;
}

nav > ul > li > a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  height: fit-content;
  width: fit-content;
  border: none;
  background: none;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 3rem;
  min-width: 160px;
  width: fit-content;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 0 0 auto;
  background-color: #f9f9f9;
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.2);
  z-index: 1;
}

.nav-dropdown-menu li {
  display: block;
  padding: 12px 16px;
  margin-bottom: 0;
}

.nav-dropdown-menu li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.nav-dropdown.show > .nav-dropdown-menu {
  display: block;
}

.mobile-menu-icon {
  display: none;
}

img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  width: 90%;
}


.card {
  flex: 0 1 auto;
  max-width: 100%;
  padding: 1rem;
  display: flex;
}

.card-column {
  flex-direction: column;
  justify-content: center;
}

.card-emphasized {
  border: 1px solid gray;
  border-radius: 6px;
}

.minimal-card {
  flex-shrink: 1;
  flex-grow: 0;
  border-top: 2px solid lightgray;
  border-bottom: 2px solid lightgray;
  box-shadow: none;
  padding: 1rem;
  max-width: 50%;
  /* border-radius: 6px; */
}

.title {
  text-align: center;
  width: 100%;
  /* margin-bottom: 1em; */
}

.subtitle {
  text-align: center;
  width: 100%;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.call-out {
  flex: 1;
  padding: 1rem;
  margin-top: 1rem;
  border: none;
  border-radius: 3px;
  background: rgb(242, 242, 242);
  text-align: center;
}

.call-out.move-left {
  position: relative;
  right: 1rem;
}

.column {
  flex: 1 1 50%;
  padding: 0.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wide-column {
  flex: 1 1 70%;
  max-width: 80%;
}

.narrow-column {
  flex: 0 0 30%;
  justify-content: center;
}

.centered-column {
  align-items: center;
  text-align: center;
}

.sidebar {
  width: 30%;
}

.area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.row {
  flex: 1 1 100%;
  gap: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.wrapped-row {
  flex-wrap: wrap;
}

.carousel-row {
  overflow-y: hidden;
  overflow-x: scroll;
  scroll-snap-type: x proximity;
  white-space: nowrap;
  justify-content: flex-start;

}

.image-wrapper-carousel {
  flex: 1 0 auto;
  height: 100%;
}

.image-card {
  height: 100%;
}


@media screen and (max-width: 768px) {
  .top-bar {
    position: static;
    height: auto;
  }

  .top-bar > div {
    align-items: flex-start;
  }

  .content {
    margin-top: 0;
  }

  .section {
    flex-direction: column;
  }

  .row {
    flex: 1 1 50%;
    padding: 0.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
  }

  .carousel-row {
    display: flex;
    flex-direction: column;
  }

  .image-wrapper-carousel {
    width: 100%;
    height: auto;
  }

  .sidebar {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }

}

@media screen and (max-width: 480px) {
  .top-bar > div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .logotype {
    grid-column: 1;
    grid-row: 1;
  }

  nav {
    display: contents;
  }

  nav > ul {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    background-color: rgb(200 198 198 / 0.82);
    padding-block: 0.5rem 1rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  nav > ul > li {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  nav > ul > li > a,
  .nav-dropdown > button {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 1rem;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
  }

  .nav-dropdown-menu li {
    padding: 0;
  }

  .nav-dropdown-menu li a {
    min-height: 44px;
    padding: 0.75rem 1rem;
    text-align: center;
  }

  .mobile-menu-icon {
    display: block;
    grid-column: 2;
    grid-row: 1;
    border: none;
    color: #fff;
    background: none;
    height: 100%;
    margin-left: auto;
  }
}

@media (max-width: 1000px) {

  .column.wide-column {
    flex-basis: 100%;
  }


  .image-card {
    min-width: 50%;
    overflow: hidden;
  }

  img {
    width: 100%;
    height: auto;
  }
}