html,
body {
  padding: 0;
  margin: 0;
}

html {
  text-align: center;
}

body {
  position: relative;
  text-align: center;
  font-family: 'Noto Sans', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #111;
}

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

body .overlay {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 500ms;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, .95);
  z-index: 999;
}

body > header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, .95);
}

body .overlay-body {
  fill: #555;
  color: #555;
  padding: 25px;
}

body .overlay-body i {
  display: block;
  text-align: center;
  margin-bottom: 5px;
}

body .overlay-body i svg {
  display: inline-block;
}

body .overlay-body h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 5px;
}

body .overlay-body p {
  font-size: 20px;
  line-height: 30px;
}

/**
 * Form
 */
form {
  display: block;
  text-align: left;
}

form section {
  display: block;
  border: none;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  margin: 0;
  margin-bottom: 25px;
}

form section > *:last-child{
  margin-bottom: 0;
}

form section h2 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  color: #555;
  margin-top: -10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

form section hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 20px;
}

form group {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  border: none;
  padding: 0;
  margin: 0;
  gap: 15px;
  flex-wrap: wrap;
}

form group > fieldset {
  display: block;
  flex: 1 1 0;
  min-width: 220px;
}

form group > fieldset > * {
  display: block;
  width: 100%;
}

form group > *:not(:first-child) {
  margin-left: 0;
}

form fieldset {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}

form fieldset > * {
  display: block;
}

form fieldset.submit {
  margin-top: 20px;
}

form fieldset label {
  display: block;
  font-family: inherit;
  font-size: 90%;
  font-weight: normal;
  line-height: 1.5;
  color: inherit;
  padding: 5px;
  margin: 0;
}

form fieldset p {
  font-size: 90%;
  font-style: italic;
  line-height: 1.5;
  padding: 5px;
  color: #999;
}

form fieldset.consent {
  display: flex;
  font-size: inherit;
  align-items: flex-start;
  gap: 12px;
  color: inherit;
}

form fieldset input[type="text"],
form fieldset input[type="email"],
form fieldset input[type="url"],
form fieldset input[type="number"],
form fieldset input[type="tel"],
form fieldset input[type="password"],
form fieldset select,
form fieldset textarea {
  display: block;
  font-size: 90%;
  line-height: 1.5;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  color: inherit;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

form fieldset ui-select,
form fieldset ui-label {
  font-size: 90%;
  line-height: 1.5;
  width: 100%;
}

form fieldset ui-toggle,
form fieldset ui-checkbox,
form fieldset ui-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

form fieldset ui-toggle .ui-label,
form fieldset ui-checkbox .ui-label,
form fieldset ui-radio .ui-label {
  width: auto;
  min-width: 0;
  margin-left: 0.45rem;
}

form fieldset input[type="text"]:focus,
form fieldset input[type="email"]:focus,
form fieldset input[type="url"]:focus,
form fieldset input[type="number"]:focus,
form fieldset input[type="tel"]:focus,
form fieldset input[type="password"]:focus,
form fieldset select:focus,
form fieldset textarea:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 4px rgba(0, 120, 212, 0.12);
}

form fieldset input[type="text"]::placeholder,
form fieldset input[type="email"]::placeholder,
form fieldset input[type="url"]::placeholder,
form fieldset input[type="number"]::placeholder,
form fieldset input[type="tel"]::placeholder,
form fieldset input[type="password"]::placeholder,
form fieldset select::placeholder,
form fieldset textarea::placeholder {
  color: #999;
}

form fieldset input[type="text"][disabled],
form fieldset input[type="email"][disabled],
form fieldset input[type="url"][disabled],
form fieldset input[type="number"][disabled],
form fieldset input[type="tel"][disabled],
form fieldset input[type="password"][disabled],
form fieldset select[disabled],
form fieldset textarea[disabled] {
	opacity: .55;
	filter: grayscale(1);
  cursor: not-allowed;
}

form fieldset input[type="text"][readonly],
form fieldset input[type="email"][readonly],
form fieldset input[type="url"][readonly],
form fieldset input[type="number"][readonly],
form fieldset input[type="tel"][readonly],
form fieldset input[type="password"][readonly],
form fieldset select[readonly],
form fieldset textarea[readonly] {
	opacity: .72;
  background-color: #f9f9f9;
	filter: grayscale(.65);
  cursor: not-allowed;
}

form fieldset input[type="text"].error,
form fieldset input[type="email"].error,
form fieldset input[type="url"].error,
form fieldset input[type="number"].error,
form fieldset input[type="tel"].error,
form fieldset input[type="password"].error,
form fieldset select.error,
form fieldset textarea.error {
  border-color: #d68e8e;
  background-color: #fff7f7;
}

form fieldset input[type="text"].error:focus,
form fieldset input[type="email"].error:focus,
form fieldset input[type="url"].error:focus,
form fieldset input[type="number"].error:focus,
form fieldset input[type="tel"].error:focus,
form fieldset input[type="password"].error:focus,
form fieldset select.error:focus,
form fieldset textarea.error:focus {
  border-color: #d68e8e;
  box-shadow: 0 0 0 4px rgba(156, 37, 37, 0.10);
}

form fieldset textarea {
  height: 250px;
  resize: vertical;
}

form fieldset .button,
form fieldset button,
form fieldset input[type="submit"] {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 90%;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 15px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 5px;
  color: #fff;
  fill: #fff;
  background-color: #111;
  border: none;
  box-shadow: 0 6px 14px rgba(17, 17, 17, 0.04);
  cursor: pointer;
  user-select: none;
  transition: all 150ms ease;
  outline: none;
}

form fieldset .button:hover,
form fieldset button:hover,
form fieldset input[type="submit"]:hover {
  color: #fff;
  fill: #fff;
  background-color: #111;
}

form fieldset .button:active,
form fieldset button:active,
form fieldset input[type="submit"]:active {
  background-color: #333;
}

form fieldset .button:focus-visible,
form fieldset button:focus-visible,
form fieldset input[type="submit"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
}

form fieldset .button:disabled,
form fieldset button:disabled,
form fieldset input[type="submit"]:disabled {
  opacity: 0.55;
  box-shadow: none;
  transform: none;
  pointer-events: none;
  cursor: not-allowed;
}

/**
 * Toggle using  checkbox
 */
.toggle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  cursor: pointer;
  vertical-align: middle;
}

.toggle-input {
  /* keep the native input for accessibility/keyboard, but hide its native visuals */
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 40px;
  height: 20px;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

/*
 * Lightbox styles
 */
.lightbox {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  padding: 40px 20px;
  background: rgba(0,0,0,0.90);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity 100ms ease;
}

.lightbox.open {
  opacity: 1;
}

/* &times; */
.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  fill: #fff;
  cursor: pointer;
  background: transparent;
  border: none;
}

.lightbox-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lightbox-body {
  text-align: left;
}

.lightbox-image {
  max-width: calc(100% - 40px);
  max-height: calc(100vh - 160px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  object-fit: contain;
  background-color: #fff;
  padding: 10px;
}

.lightbox-caption {
  color: #ddd;
  font-size: 14px;
  line-height: 1.3;
  max-width: 100%;
  text-align: center;
}

.lightbox-caption a {
  color: #fff;
  text-decoration: underline;
}

.lightbox-caption a:hover {
  text-decoration: none;
}

header > div,
main > div,
footer > div {
  display: inline-flex;
  justify-content: center;
  text-align: left;
  width: 100%;
  max-width: 1680px;
}

header {
  padding: 25px;
}

header .logo {
  width: auto;
  min-width: auto;
  height: 35px;
  min-height: 35px;
  max-height: 35px;
  margin-top: 5px;
}

header .logo img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 35px;
}

header nav {
  display: flex;
  align-items: center;
  margin-left: 50px;
  fill: #555;
}

header nav .toggle-menu {
  display: none;
  text-align: center;
  cursor: pointer;
}

header nav .toggle-menu i {
  display: inline-block;
}

header nav .toggle-menu i hr {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 35px;
  height: 0;
  border: none;
  border-bottom: 3px solid #555;
}

header nav .toggle-menu i.close hr {
  width: 40px;
}

header nav .toggle-menu i.close hr:nth-child(1) {
  transform: rotate(-45deg);
  margin-top: -10px;
}

header nav .toggle-menu i.close hr:nth-child(2) {
  transform: rotate(45deg);
  margin-top: -12px;
}

header nav .toggle-menu i.close hr:nth-child(3) {
  display: none;
}

header nav ul {
  display: flex;
  align-items: center;
  list-style: none;
}

header nav ul li {
  padding-left: 5px;
  padding-right: 5px;
}

header nav ul li a {
  all: reset;
  font-size: inherit;
  line-height: normal;
  color: #555;
  text-decoration: none;
  transition: color .2s;
}

header nav > ul li a .chevron {
  width: 16px;
  height: 16px;
  margin-bottom: -3px;
}

header nav ul li > a {
  padding-left: 10px;
  padding-right: 10px;
}

header nav ul li a:hover {
  color: #111;
}

header nav ul li svg {
  transition: fill 250ms;
  fill: #555;
  cursor: pointer;
}

header nav ul li.active svg,
header nav ul li:active svg {
  fill: #111;
}

header nav ul li.has-submenu {
  position: relative;
}

header nav ul li.has-submenu.active > a {
  color: #111;
}

header nav ul li ul {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -5px;
  padding: 5px;
  padding-top: 7px;
  padding-bottom: 10px;
  margin-top: 10px;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 3px;
  transition: visibility .2s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

header nav ul li.has-submenu.active > ul {
  display: block;
  visibility: visible;
}

header nav.is-desktop > ul > li.has-submenu:hover > ul {
  display: block;
  visibility: visible;
}

header nav ul li.has-submenu > ul {
  min-width: 220px;
  text-align: left;
}

header nav ul li.has-submenu > ul li a {
  display: block;
  padding: 4px 8px;
  white-space: nowrap;
}

header nav ul li.has-submenu > ul li a:hover {
  color: #111;
}

header nav:not(.is-mobile) ul li.has-submenu > ul li.has-submenu > a .chevron {
  position: relative;
  top: -1px;
  transform: rotate(-90deg);
}

header nav ul li.has-submenu > ul li ul {
  left: 100%;
  top: -5px;
  margin-top: 0;
}

header nav ul li ul:after {
  display: inline-block;
  position: absolute;
  top: -6px;
  left: 18px;
  width: 0; 
  height: 0; 
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  content: '';
}

header nav ul li ul li {
  padding: 5px;
  font-size: 95%;
}

header .search {
  margin-left: auto;
}

header .search fieldset {
  display: inline-flex;
  position: relative;
  align-items: center;
  border: none;
}

header .search fieldset input {
  font-family: inherit;
  font-size: 90%;
  font-weight: normal;
  line-height: normal;
  width: 250px;
  min-width: 250px;
  height: 35px;
  padding-left: 10px;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.10);
}

header .search fieldset button {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  fill: #fff;
  width: 45px;
  height: 35px;
  margin-left: -1px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border: none;
  background-color: #111;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.10);
  transition: background .1s;
  cursor: pointer;
}

header .search fieldset button:hover {
  background-color: #222;
}

header .search fieldset button:active {
  background-color: #444;
}

header .search fieldset input:focus,
header .search fieldset input:focus + button {
  /* border: 1px solid #bbb; */
}

header .search fieldset button svg {
  display: block;
  margin-top: -2px;
  margin-left: -2px;
}

header .search fieldset .suggestions {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  padding: 0;
  padding-bottom: 10px;
  margin: 0;
  min-width: 360px;
  border: 1px solid #ddd;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  text-align: left;
  max-height: 250px;
  overflow: auto;
  z-index: 10;
}

header .search fieldset .suggestions.active {
  display: block;
}

header .search fieldset .suggestions table,
header .search fieldset .suggestions table tr {
  width: 100%;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
  list-style: none;
}

header .search fieldset .suggestions table tr {
  white-space: nowrap;
  transition: background-color 250ms;
}

header .search fieldset .suggestions table tr td {
  font-size: 90%;
  line-height: normal;
  padding: 5px;
  user-select: none;
}

header .search fieldset .suggestions table tr td:nth-child(2) {
  width: 100%;
}

header .search fieldset .suggestions table tr td a {
  display: block;
  color: inherit;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}

header .search fieldset .suggestions table li td a svg {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

header .search fieldset .suggestions table tr a:hover {
  color: #555;
}

header .search fieldset .suggestions table tr a:active {
  color: #111;
}

header .search fieldset .suggestions table tr a:active label {
  color: #fff;
  background-color: #aaa;
}

header .search fieldset .suggestions table tr label {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  line-height: 13px;
  padding: 4px;
  padding-left: 8px;
  padding-right: 8px;
  color: #fff;
  border-radius: 25px;
  background-color: #bbb;
}

footer {
  padding: 25px;
  color: #999;
  fill: #999;
  text-align: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  background-color: #fff;
}

footer > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

footer > div > * {
  width: 100%;
}

footer .logo img {
  display: inline-block;
  width: auto;
  height: 100%;
  max-height: 35px;
}

footer .links ul,
footer .links ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer .links ul li a {
  font-size: 90%;
  line-height: 125%;
  white-space: nowrap;
  padding: 10px;
  color: inherit;
  text-decoration: none;
  transition: color 250ms;
}

footer .links ul li a:active {
  color: #111;
}

footer .links ul {
  display: flex;
  align-items: center;
}

footer .scroll-top {
  text-align: right;
}

footer .scroll-top div {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 40px;
  fill: #999;
  background-color: #fff;
  transition: all .2s ease-in;
}

footer .scroll-top div svg {
  margin-top: -4px;
}

footer .scroll-top div:active {
  background-color: #eee;
}

/**
 * Responsive styles
 */
@media (max-width:680px) {
  .lightbox-inner {
    padding: 12px;
  }

  .lightbox-image {
    max-height: calc(100vh - 120px);
  }

  .lightbox-close {
    font-size: 24px;
  }
}