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

body {
  background-color: #FFFFFF;
  font-family: "Inter", serif;
  padding: 24px 24px 0 24px;
}

.top-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 24px;
}
.top-bar__settings-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.top-bar__logo {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: center;
}
.top-bar__logo-title {
  font-size: 24px;
  font-weight: 500;
}
.top-bar__schedule {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  gap: 6px;
}
.top-bar__schedule-open {
  border-radius: 50%;
  background-color: lightgreen;
  height: 6px;
  width: 6px;
}

.menu {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
}
.menu__bar {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 24px;
  grid-column: 1/span 3;
}
.menu__sidebar {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 24px;
  grid-column: 4;
}

.landing {
  background: radial-gradient(ellipse at center, rgb(246, 232, 218) 40%, rgb(255, 255, 255) 70%);
  height: 60vh;
  border-bottom: 3px solid #EAEAEA;
  padding: 48px 0;
}
.landing__title {
  display: grid;
  grid-template-rows: 3;
  grid-template-columns: 1;
  font-size: 78px;
  font-weight: 300;
}
.landing__title-item1 {
  grid-row: 1;
}
.landing__title-item2 {
  grid-row: 2;
  justify-self: center;
}
.landing__title-item3 {
  grid-row: 3;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.landing__title-links {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.latest-news {
  padding: 12px 0 0 0;
  border-bottom: 3px solid #EAEAEA;
}
.latest-news__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
}
.latest-news__title-secondary {
  font-size: 14px;
}
.latest-news__container {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-between;
  padding: 48px 0;
}
.latest-news__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
.latest-news__category {
  font-weight: 500;
}
.latest-news__headline {
  font-weight: 600;
  font-size: 14px;
}
.latest-news__date {
  font-size: 12px;
  align-items: flex-end;
}
.latest-news__text {
  font-size: 12px;
  padding-bottom: 12px;
}

.guided-tours {
  padding: 12px 0 48px 0;
  border-bottom: 3px solid #EAEAEA;
  width: 100%;
}
.guided-tours__title {
  font-size: 20px;
  font-weight: 500;
  padding: 0 0 48px 0;
}
.guided-tours__content {
  display: grid;
  row-gap: 48px;
  max-width: 100%;
  overflow-wrap: break-word;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
}
.guided-tours__info {
  display: grid;
  grid-column: 3/span 4;
  grid-row: 1;
  gap: 12px;
  padding: 24px;
}
.guided-tours__headline {
  font-size: 48px;
  font-weight: 400;
}
.guided-tours__description {
  font-size: 14px;
  padding: 0 150px 0 0;
}
.guided-tours__button {
  background-color: #FFFFFF;
  padding: 12px 24px;
  max-width: 250px;
  border-radius: 15px;
}
.guided-tours__images {
  display: grid;
  width: 100%;
  gap: 12px;
  grid-row: 2;
  grid-column: 1/span 4;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1.5fr 0.5fr;
  overflow: hidden;
}
.guided-tours__images-first {
  grid-column: 1/span 2;
  object-fit: cover;
  width: 100%;
}
.guided-tours__images-second {
  grid-column: 3/span 1;
  object-fit: cover;
  width: 100%;
}
.guided-tours__images-third {
  grid-column: 4/span 1;
  object-fit: contain;
  width: 100%;
}

.events {
  padding: 12px 0 0 0;
  border-bottom: 3px solid #EAEAEA;
}
.events__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 500;
}
.events__title-secondary {
  font-size: 14px;
}
.events__container {
  display: flex;
  padding: 48px 0;
  flex-direction: row;
  max-width: 100vw;
  overflow: hidden;
  max-height: 100vh;
  gap: 24px;
}
.events__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 100%;
  width: 100%;
  gap: 12px;
}
.events__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.events__category {
  font-weight: 500;
}
.events__headline {
  font-weight: 600;
  font-size: 14px;
}
.events__description {
  font-size: 12px;
}
.events__date {
  font-size: 12px;
  align-items: flex-end;
}

.virtual-reality {
  border-bottom: 3px solid #EAEAEA;
  min-height: 100vh;
}
.virtual-reality__title {
  font-size: 20px;
  font-weight: 500;
  padding: 12px 0 48px 0;
}
.virtual-reality__subtitle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: last baseline;
  font-size: 36px;
  font-weight: 400;
}
.virtual-reality__subtitlecontainer {
  display: flex;
  flex-direction: column;
}
.virtual-reality__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-items: center;
  height: 100vh;
}
.virtual-reality__box {
  display: flex;
  flex-direction: row;
}
.virtual-reality__item {
  font-size: 32px;
  color: #C4C4C4;
  text-decoration: none;
}

.departments {
  padding: 12px 0 0 0;
  border-bottom: 3px solid #EAEAEA;
}
.departments__title {
  font-size: 20px;
  font-weight: 500;
}
.departments__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  gap: 48px;
  padding: 48px 0;
}
.departments__list {
  list-style: none;
  gap: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.departments__item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3rem;
  border-bottom: 3px solid #EAEAEA;
}
.departments__item:hover {
  border-bottom: 3px solid #1C1C1C;
}

.resources {
  border-bottom: 3px solid #EAEAEA;
}
.resources__title {
  padding: 12px 0 0 0;
}
.resources__container {
  display: flex;
  flex-direction: row;
  padding: 48px 0;
}
.resources__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.resources__headline {
  font-weight: 500;
}
.resources__action {
  align-items: flex-end;
  padding: 12px 0 0 0;
  font-size: 12px;
}

.sitemap {
  border-bottom: 3px solid #EAEAEA;
  padding: 48px 0;
  max-width: 100vw;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 48px;
}
.sitemap__info {
  grid-column: 3/span 5;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.sitemap__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 500;
}
.sitemap__numbers {
  color: #C4C4C4;
  font-size: 14px;
}
.sitemap__container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  grid-row: 2;
  grid-column: 1/span 5;
}
.sitemap__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.sitemap__link {
  color: #C4C4C4;
}

.additional {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 14px;
  color: #C4C4C4;
}
.additional__box {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.additional__text {
  font-weight: 500;
}/*# sourceMappingURL=main.css.map */