@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");
:root {
  --colorBlue300: #23AAE5;
  --colorBlue400: #1870B2;
  --colorBlue500: #0D367F;
  --colorText: #475359;
  --colorBg: #f5f8fa;
  --ffPrimary: "Inter", sans-serif;
  --easeInOut: .25s ease-in-out;
  --containerSize: 77rem;
  --gutterSpace: 1rem;
}

*, :after, :before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--ffPrimary);
  font-weight: 400;
  color: var(--colorText);
  line-height: 1.6;
  overflow: hidden;
  overflow-y: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

b, strong {
  font-weight: 600;
}

a, button {
  text-decoration: none;
  background: none;
  border: none;
  color: currentColor;
  user-select: none !important;
}
a:focus-visible, button:focus-visible {
  outline: black 0.1rem solid;
  outline-offset: 0.1rem;
}

.container {
  max-width: var(--containerSize);
  padding-inline: 1rem;
  margin-inline: auto;
}

body:has(> main[data-min-height=stretch]) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body:has(> main[data-min-height=stretch]) main {
  flex: 1;
}

.page_wrap {
  display: grid;
  grid-template-columns: 1fr;
  place-content: center;
}

.landing_content-wrap {
  padding-block: 3rem;
}

.landing_content-inner {
  padding-inline: 1rem;
  text-align: center;
}
.landing_content-inner .landing_logo {
  display: block;
  margin-inline: auto;
  width: clamp(18rem, 65vw, 36rem);
  height: auto;
}
.landing_content-inner .landing_logo .st0 {
  fill: #23aae5;
}
.landing_content-inner .landing_logo .st1, .landing_content-inner .landing_logo .st2 {
  isolation: isolate;
}
.landing_content-inner .landing_logo .st2 {
  fill: url(#linear-gradient1);
}
.landing_content-inner .landing_logo .st3 {
  fill: #0d367f;
}
.landing_content-inner .landing_logo .st4 {
  fill: url(#linear-gradient);
}
.landing_content-inner h1 {
  text-transform: uppercase;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-block: 1.5em 1em;
  margin-inline: auto;
  max-width: 33em;
}
.landing_content-inner p {
  font-size: clamp(1rem, 3vw, 1.25rem);
}

.footer_wrap {
  background-color: var(--colorBg);
  font-size: 0.85rem;
  font-weight: 300;
  color: black;
  padding-block: 1.5rem 1.25rem;
  text-align: center;
}
.footer_wrap span {
  display: inline-block;
  white-space: nowrap;
}

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