@charset "utf-8";
/* CSS Document */

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  width: 100%;
  background: #ffffff;
  padding: 40px 10px 24px;
}

.main-nav {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.main-nav a {
  position: relative;
  font-family: "Century Gothic", "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  font-size: 28px;
  font-weight: 450;
  color: #111111;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  padding-bottom: 5px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-divider {
  max-width: 800px;
  margin: 30px auto 0;
}

.header-divider img {
  display: block;
  width: 100%;
  height: auto;
}
