.marketPoint {
  width: 100%;
  min-height: 100%;
}
.marketPoint > body {
  margin: 0;
  background: var(--page-background, #F3F1E2);
}

/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	A function to split a string on periods (.) to
	access a SASS map through a familiar syntax.
*/
/*
	Use:
		config("my.path")
*/
/*
	Use:
		pxToRem([int])
*/
/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	Alignment
	Helps us to align the left and right edges of content.
*/
/*
	XS Breakpoint
	Viewport Width <= 39.99rem (639px)
*/
/*
	S Breakpoint
	Viewport Width >= 40rem (640px)
*/
/*
	M Breakpoint
	Viewport Width >= 64rem (1024px)
*/
/*
	L Breakpoint
	Viewport Width >= 90rem (1440px)
*/
/*
	XL Breakpoint
	Viewport Width >= 120rem (1920px)
*/
/*
	Typography
*/
aside.auth {
  grid-column: full-width;
  height: 44px;
  background: #fff;
  opacity: 0.75;
  color: #131313;
}
aside.auth div, aside.auth p, aside.auth button {
  font-size: 14.4px !important;
}
aside.auth > div {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
aside.auth a {
  color: #fff;
}
aside.auth p {
  margin: 0;
}
aside.auth button {
  appearance: none;
  margin: 0;
  padding: 0;
  outline: none;
  background: none;
  border: none;
  text-decoration: underline;
  font-family: inherit;
  font-size: inherit;
  color: blue;
  cursor: pointer;
}
aside.auth button._toggleCultureDialog {
  border-radius: 6px;
  border: 1px solid;
  padding: 4px;
  display: flex;
  gap: 4px;
  align-items: center;
  color: black;
  background: #fff;
  text-decoration: none;
}

header.header {
  grid-column: full-width;
  background: var(--header-background, #fff);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
  height: 60px;
  z-index: 9999;
}
header.header > div {
  display: flex;
  position: relative;
}
header.header > div > img {
  height: 40px;
  align-self: center;
}
header.header nav {
  margin-left: auto;
  display: flex;
}
header.header ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  height: 100%;
}
header.header li {
  display: flex;
  align-items: center;
  margin: 0;
}
header.header a {
  display: block;
  padding: 0 0.5rem;
}

header.header nav > ul > li > a {
  text-decoration: none;
  color: var(--header-foreground, #333333);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  position: relative;
}
header.header nav > ul > li > a.-active::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  inset: auto 18px 10px 18px;
  background: var(--header-foreground, black);
}
header.header nav > ul > li:hover > a {
  background: #DBDBDB;
}
header.header aside {
  position: absolute;
  inset: 0 0 0 auto;
}
header.header aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
header.header aside ul li {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  display: flex;
  align-items: center;
}

/*
  Dropdown
*/
header .has-dropdown {
  position: relative;
}
header .has-dropdown > .dropdown {
  position: absolute;
  inset: 100% auto auto 0;
  background-color: #DBDBDB;
  width: max-content;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  border-radius: 0 0 0.8rem 0.8rem;
  flex-direction: column;
  height: auto;
}
header .has-dropdown > .dropdown a {
  display: block;
  text-decoration: none;
  padding: 0.75rem 1rem;
  transition: background-color 0.2s;
}
header .has-dropdown > .dropdown a:hover {
  background: rgba(0, 0, 0, 0.4);
}
header .has-dropdown:hover > .dropdown {
  opacity: 1;
  pointer-events: all;
}

/*
  Megamenu
*/
header .has-megamenu .megamenu {
  position: absolute;
  inset: 100% 0 auto 0;
  width: 100vw;
  background-color: #DBDBDB;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center center;
}
header .has-megamenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 54rem;
  margin: auto;
  padding: 1rem;
}
header .has-megamenu ul li {
  margin: 0;
  padding: 1rem;
  border-radius: 6px;
  transition: background-color 0.2s;
}
header .has-megamenu ul li:hover {
  background: rgba(0, 0, 0, 0.75);
}
header .has-megamenu:hover .megamenu {
  opacity: 1;
  pointer-events: all;
}
header .has-megamenu a {
  text-decoration: none;
}
header .has-megamenu a > span {
  display: block;
  margin-top: 0.375rem;
}

/* 
  Mobile 
*/
@media (min-width: 64rem) {
  .hamburger {
    display: none;
  }
}
@media (max-width: 63.999rem) {
  body.-menu-open {
    height: 100%;
    overflow: hidden;
  }
  header.header .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    height: 66px;
    width: 66px;
    outline: none;
    appearance: none;
    border: none;
    background: transparent;
    padding: 1rem;
    color: #fff;
    mix-blend-mode: difference;
  }
  header.header > div > nav {
    box-sizing: border-box;
    position: fixed;
    inset: 0 0 0 auto;
    width: 100%;
    max-width: 420px;
    background: white;
    margin: 0;
    height: auto;
    scrollbar-width: none;
    overflow-y: auto;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
    padding-top: 95px;
    transition: transform 0.375s ease-in-out;
    transform: translateX(100%);
  }
  header.header > div > nav.-active {
    transform: none;
  }
  header.header > div > nav > ul {
    flex-direction: column;
    height: auto;
    flex: 1;
  }
  header.header > div > nav > ul > li {
    height: auto;
    flex-direction: column;
  }
  header.header > div > nav > ul > li > a {
    padding: 0.75rem 1rem;
  }
  header.header > div > nav .megamenu {
    display: block;
    opacity: 1;
    background-image: none;
    position: relative;
  }
  header.header > div > nav .megamenu .edge {
    padding: 0;
  }
  header.header > div > nav .megamenu li {
    list-style: none;
  }
  header.header > div > nav .megamenu a {
    display: block;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    font-family: "Fira Sans", "Open Sans", sans-serif;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
  }
  header.header > div > nav .megamenu a span {
    display: none;
  }
}
header.simple {
  background: var(--header-background);
  color: var(--header-foreground);
}
header.simple > div {
  display: flex;
  padding: 2.5rem 0;
}
header.simple a {
  flex: none;
  margin-right: auto;
  display: block;
  max-width: 100%;
}
header.simple a > img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 100%;
}

/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	A function to split a string on periods (.) to
	access a SASS map through a familiar syntax.
*/
/*
	Use:
		config("my.path")
*/
/*
	Use:
		pxToRem([int])
*/
/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	Alignment
	Helps us to align the left and right edges of content.
*/
/*
	XS Breakpoint
	Viewport Width <= 39.99rem (639px)
*/
/*
	S Breakpoint
	Viewport Width >= 40rem (640px)
*/
/*
	M Breakpoint
	Viewport Width >= 64rem (1024px)
*/
/*
	L Breakpoint
	Viewport Width >= 90rem (1440px)
*/
/*
	XL Breakpoint
	Viewport Width >= 120rem (1920px)
*/
/*
	Typography
*/
footer.footer {
  grid-column: full-width;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  background: var(--footer-background, #161616);
  font-family: var(--font-copy, var(--base-font-family));
}
footer.footer a {
  color: #fff;
}
footer.footer > .copyright {
  box-sizing: border-box;
  width: 400px;
  background: rgba(255, 255, 255, 0.069);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 30px;
  gap: 24px;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}
footer.footer > .copyright > img {
  display: block;
  width: 100%;
  height: 60px;
  object-fit: contain;
  object-position: center center;
}
footer.footer > .copyright p {
  margin: 0;
}
footer.footer > nav {
  flex: 1;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}
footer.footer > nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.footer > nav li {
  margin: 0;
}
footer.footer > nav a {
  color: #fff;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
}
footer.footer > nav > ul {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}
footer.footer > nav > ul > li > a {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  text-decoration: none;
}
@media (max-width: 63.999rem) {
  footer.footer {
    flex-wrap: wrap;
  }
  footer.footer > .copyright {
    order: 2;
    width: 100%;
  }
  footer.footer > nav {
    order: 1;
    width: 100%;
    padding: 2rem 0 0 0;
  }
  footer.footer > nav > ul {
    flex-direction: column;
  }
  footer.footer > nav > ul a {
    padding: 0 1rem;
  }
}

aside.sidebar {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
}
aside.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
aside.sidebar ul ul {
  display: none;
}

main.organization {
  grid-column: full-width;
}
main.organization .intro {
  display: flex;
  gap: 4rem;
  padding: 4rem 0;
  justify-content: center;
  align-items: center;
}
main.organization .intro .logo {
  flex: 1;
  max-width: 260px;
}
main.organization .intro .copy {
  flex: 1;
  max-width: 52ch;
}
main.organization .intro img {
  width: 100%;
}

/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	A function to split a string on periods (.) to
	access a SASS map through a familiar syntax.
*/
/*
	Use:
		config("my.path")
*/
/*
	Use:
		pxToRem([int])
*/
/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	Alignment
	Helps us to align the left and right edges of content.
*/
/*
	XS Breakpoint
	Viewport Width <= 39.99rem (639px)
*/
/*
	S Breakpoint
	Viewport Width >= 40rem (640px)
*/
/*
	M Breakpoint
	Viewport Width >= 64rem (1024px)
*/
/*
	L Breakpoint
	Viewport Width >= 90rem (1440px)
*/
/*
	XL Breakpoint
	Viewport Width >= 120rem (1920px)
*/
/*
	Typography
*/
.faqs {
  display: flex;
  padding: 80px 0;
  gap: 60px;
}
.faqs .copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 40ch;
}
.faqs .copy p {
  margin: 0;
}
.faqs dl {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faqs dl > div {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 30px;
  background: #fff;
  box-shadow: 0px 14px 30px rgba(1, 17, 40, 0.1);
  border-radius: 10px;
}
.faqs dl > div dt {
  display: flex;
  align-items: center;
}
.faqs dl > div dt svg {
  margin-left: auto;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
  transform-origin: center;
}
.faqs dl > div dd {
  margin: 0;
  display: none;
}
.faqs dl > div:hover, .faqs dl > div:focus, .faqs dl > div:focus-within {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
}
.faqs dl > div.-open {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
}
.faqs dl > div.-open dt svg {
  transform: rotate(90deg);
}
.faqs dl > div.-open dd {
  display: block;
}
.-theme-dark .faqs dl > div {
  background: #000;
}
.-theme-dark .faqs dl > div:hover, .-theme-dark .faqs dl > div:focus, .-theme-dark .faqs dl > div:focus-within {
  background-color: rgba(0, 0, 0, 0.375);
  color: #fff;
}
@media (max-width: 63.999rem) {
  .faqs {
    flex-direction: column;
    gap: 40px;
  }
}

/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	A function to split a string on periods (.) to
	access a SASS map through a familiar syntax.
*/
/*
	Use:
		config("my.path")
*/
/*
	Use:
		pxToRem([int])
*/
/*
	SASS Variables
*/
/*
	-------------------------------------------------------
	Updates to this file should not be made directly in the
	framework. Instead, copy this file to the /src/
	directory. Update `app.scss` to point your new file.
	-------------------------------------------------------
*/
/*
	Alignment
	Helps us to align the left and right edges of content.
*/
/*
	XS Breakpoint
	Viewport Width <= 39.99rem (639px)
*/
/*
	S Breakpoint
	Viewport Width >= 40rem (640px)
*/
/*
	M Breakpoint
	Viewport Width >= 64rem (1024px)
*/
/*
	L Breakpoint
	Viewport Width >= 90rem (1440px)
*/
/*
	XL Breakpoint
	Viewport Width >= 120rem (1920px)
*/
/*
	Typography
*/
.highlights {
  padding: 2rem 0;
}
.highlights ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.highlights ul:hover > li > div {
  opacity: 0.8;
}
.highlights ul > li {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.highlights ul > li > div {
  display: flex;
  flex-direction: column;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  height: 100%;
  border: 2px dotted rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  transition: all ease-in-out 0.2s;
  position: relative;
}
.highlights ul > li > div:hover, .highlights ul > li > div:focus, .highlights ul > li > div:focus-within {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 14px 30px rgba(1, 17, 40, 0.1);
  border-color: transparent;
  opacity: 1;
}
.highlights ul > li > div a {
  position: relative;
  z-index: 3;
}
.highlights ul > li > div > a {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.highlights img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 30px;
}
.-theme-dark .highlights ul > li > div:hover, .-theme-dark .highlights ul > li > div:focus, .-theme-dark .highlights ul > li > div:focus-within {
  background: rgba(0, 0, 0, 0.325);
}
@media (max-width: 63.999rem) {
  .highlights ul {
    grid-template-columns: 1fr;
  }
}

dialog {
  border: none;
  opacity: 1;
  transition: opacity 0.2s ease-out, overlay 0.2s ease-out allow-discrete, display 0.2s ease-out allow-discrete;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  transition: filter 0.2s ease-out, display 0.2s allow-discrete, overlay 0.2s allow-discrete, background-color 0.2s;
}
dialog > div {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 20rem;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

dialog.cultures > div {
  display: grid;
  grid-template-columns: 1fr;
  background: transparent;
  border: none;
  box-shadow: none;
}
dialog.cultures > div a {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  box-sizing: border-box;
  border: 1px solid;
  background: #fff;
  text-decoration: none;
  color: black;
  transition: all ease-in-out 0.2s;
}
dialog.cultures > div a:first-of-type {
  border-radius: 6px 6px 0 0;
}
dialog.cultures > div a:last-of-type {
  border-radius: 0 0 6px 6px;
}
dialog.cultures > div a + a {
  border-top: 0;
}
dialog.cultures > div a:hover {
  background: #c4ffc9;
}
dialog.cultures > div form {
  text-align: center;
  margin-top: 1rem;
}

@starting-style {
  dialog:open {
    opacity: 0;
  }
  dialog:open::backdrop {
    background: transparent;
    backdrop-filter: none;
  }
}

/*# sourceMappingURL=marketpoint.css.map */
