@import "reset.css";
html {
  line-height: 1.5;
  font-size: 16px;
}

body {
  font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, system-ui, "Segoe UI", Roboto, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: 0.4px;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  margin: 0;
  padding: 0;
}

section {
  padding: 1.5rem 0;
  margin: 2rem 0;
  background-color: #fff;
}
section h1, section h2, section h3, section h4, section h5, section h6 {
  margin-top: 0;
}
section p {
  margin-bottom: 1rem;
}
@media screen and (max-width: 820px) {
  section {
    padding: 1rem 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.grid2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .grid2col {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 820px) {
  .grid2col {
    grid-template-columns: 1fr;
  }
}

.readable-width {
  max-width: 800px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, system-ui, "Segoe UI", Roboto, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h1 {
  font-size: 3.9375rem;
  line-height: 1.1;
  letter-spacing: -0.0625rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1000px) {
  h1 {
    font-size: 3.54375rem;
  }
}
@media screen and (max-width: 820px) {
  h1 {
    font-size: 3.15rem;
  }
}

h2 {
  font-size: 2.975rem;
  line-height: 1.2;
  letter-spacing: -0.04rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1000px) {
  h2 {
    font-size: 2.6775rem;
  }
}
@media screen and (max-width: 820px) {
  h2 {
    font-size: 2.38rem;
  }
}

h3 {
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.02rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1000px) {
  h3 {
    font-size: 2.025rem;
  }
}
@media screen and (max-width: 820px) {
  h3 {
    font-size: 1.8rem;
  }
}

h4 {
  font-size: 1.66625rem;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 820px) {
  h4 {
    font-size: 1.499625rem;
  }
}

h5 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.5em;
}

p, ol, ul, dl, blockquote, pre, table, figure {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 820px) {
  p, ol, ul, dl, blockquote, pre, table, figure {
    font-size: 1rem;
  }
}

p.tiny {
  font-size: 0.703125rem;
  line-height: 1.5;
}

ul {
  padding-left: 2.5rem;
  margin: 2rem 0;
}

ol {
  padding-left: 2.75rem;
  margin: 2rem 0;
}

li {
  margin-bottom: 0.75em;
}

a {
  color: #1268C5;
  text-decoration-color: #60A9F7;
  text-decoration-thickness: 0.0555555556em;
  text-underline-offset: 0.1111111em;
  transition: all 0.3s;
}
a:hover {
  color: #003E80;
  text-decoration-color: #fff;
}

a.btn, button.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  background: #1268C5;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
a.btn:hover, button.btn:hover {
  background: #003E80;
}

[role=button],
button {
  cursor: pointer;
}

button.icon {
  display: inline-flex;
  justify-items: center;
  align-items: center;
  border: none;
  background: transparent;
  transition: opacity 0.3s;
  padding: 0.5rem;
}
button.icon:hover, button.icon.active {
  opacity: 0.5;
}

.box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  box-shadow: 0 9px 7px -8px #eee;
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 1000px) {
  .box {
    padding: 1.25rem 1.5rem;
  }
}
.box h1, .box h2, .box h3, .box h4, .box h5, .box h6 {
  margin-top: 0;
}
.box p {
  margin-bottom: 1rem;
}
.box p:last-child {
  margin-bottom: 0.25rem;
}

.action-buttons {
  margin: 1.5rem 0;
}

.place-self-start {
  place-self: start;
}

.place-self-center {
  place-self: center;
}

.order-first-md {
  order: 9999;
}
@media screen and (max-width: 820px) {
  .order-first-md {
    order: -9999;
  }
}

.order-last-md {
  order: -9999;
}
@media screen and (max-width: 820px) {
  .order-last-md {
    order: 9999;
  }
}

.top-nav {
  display: flex;
  background-color: #fff;
  background-image: url(/assets/images/bg.png);
  background-repeat: repeat-x;
  margin-top: 0px;
  background-size: auto 103px;
}
.top-nav nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .top-nav nav {
    padding: 0 20px;
  }
}
.top-nav nav .logo {
  max-width: 186px;
  padding: 1.875rem 0;
}
.top-nav nav .links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-left: 3.5rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 1000px) {
  .top-nav nav .links {
    display: none;
  }
}
.top-nav nav .links .menus {
  display: flex;
}
.top-nav nav .links .menus .dropdown-wrapper {
  position: relative;
}
.top-nav nav .links .menus button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 1.25rem;
  border: none;
  background: transparent;
  transition: color 0.3s;
}
.top-nav nav .links .menus button:hover, .top-nav nav .links .menus button.active {
  color: #1268C5;
}
.top-nav nav .links .menus button svg {
  color: #333;
  width: 1.25rem;
  height: 1.25rem;
}
.top-nav nav .links .menus .menu-items {
  position: absolute;
  margin-top: 1rem;
  z-index: 10;
  left: 0;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  background: #fff;
  padding: 1rem 1.5rem;
  box-shadow: 0 9px 7px -8px #eee;
}
.top-nav nav .links .menus .menu-items a {
  display: block;
  margin-right: 0;
  padding: 0.4rem 0;
  font-weight: 400;
}
.top-nav nav .links a {
  color: #333;
  text-decoration: none;
  margin-right: 1.5rem;
  transition: color 0.3s;
  text-wrap: none;
  white-space: nowrap;
  font-weight: 400;
}
.top-nav nav .links a:hover {
  color: #1268C5;
}
.top-nav nav a#showsearch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 0;
  border: none;
  background: transparent;
  transition: color 0.3s;
  cursor: pointer;
}
.top-nav nav a#showsearch:hover, .top-nav nav a#showsearch.active {
  color: #1268C5;
}
.top-nav nav a#showsearch svg {
  color: #333;
  width: 1.25rem;
  height: 1.25rem;
}
.top-nav nav .burger {
  display: none;
}
@media screen and (max-width: 1000px) {
  .top-nav nav .burger {
    display: flex;
  }
}
.top-nav nav .burger svg {
  width: 2rem;
  height: 2rem;
}
@media (min-width: 1000px) {
  .top-nav .mobile-menu {
    display: none;
  }
}
.top-nav .mobile-menu .backdrop {
  z-index: 10;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
}
.top-nav .mobile-menu .panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 384px;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 1.25rem 1.3rem 1.25rem 2rem;
  z-index: 10;
}
.top-nav .mobile-menu .panel .close {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}
.top-nav .mobile-menu .panel nav {
  padding: 0;
}
.top-nav .mobile-menu .panel nav :first-child {
  margin-top: 0;
}
.top-nav .mobile-menu .panel nav p {
  margin-bottom: 0.5rem;
}
.top-nav .mobile-menu .panel nav p span {
  color: #666;
}
.top-nav .mobile-menu .panel nav p.item-title {
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.top-nav .mobile-menu .panel nav p.item-title:not(:first-child) {
  margin-top: 1rem;
}
.top-nav .mobile-menu .panel nav a {
  line-height: 1.75rem;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
}

.big-logo {
  width: auto;
  max-width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .big-logo {
    max-width: 80%;
  }
}
@media screen and (max-width: 820px) {
  .big-logo {
    max-width: 60%;
  }
}
@media screen and (max-width: 576px) {
  .big-logo {
    max-width: 100%;
  }
}

.current {
  color: green;
}

#search {
  display: none;
}

.search-active {
  display: block !important;
}

[x-cloak] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 300ms;
}

.translate-x-full {
  transform: translateX(100%);
}

.translate-x-0 {
  transform: translateX(0px);
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.flow-root {
  display: flow-root;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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