:root {
  --background-height: 100vh;
  --viewport-height: 100vh;
}

/* Reset (Carrd-like minimal reset) */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

html {
  font-size: 18pt;
}

@media (max-width: 1680px) {
  html {
    font-size: 13pt;
  }
}
@media (max-width: 980px) {
  html {
    font-size: 11pt;
  }
}
@media (max-width: 736px) {
  html {
    font-size: 11pt;
  }
}

body {
  -webkit-text-size-adjust: none;
  line-height: 1;
  min-height: var(--viewport-height);
  min-width: 320px;
  overflow-x: hidden;
  word-wrap: break-word;
  font-family: "Source Sans Pro", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Background gradient */
body:before {
  background-attachment: scroll;
  content: "";
  display: block;
  height: var(--background-height);
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: scale(1);
  width: 100vw;
  z-index: 0;
  background-image: linear-gradient(40deg, #88baa2 0%, #4e7db5 100%);
  background-position: 0% 0%;
  background-repeat: repeat;
  background-size: auto;
}

/* Loading overlay */
body:after {
  background-color: #313547;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: scale(1);
  transition:
    opacity 1.25s ease-in-out 0s,
    visibility 1.25s 0s;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}
body.is-loading:after {
  opacity: 1;
  visibility: visible;
}

#wrapper {
  -webkit-overflow-scrolling: touch;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--viewport-height);
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}

#main {
  --border-radius: 0.375rem;
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 100%;
  position: relative;
  text-align: center;
  z-index: 1;
  background-color: #ffffff;
  box-shadow: 0rem 1.375rem 1.75rem 0rem rgba(27, 54, 74, 0.09);
  border-radius: var(--border-radius);
  transition:
    opacity 1s ease 0s,
    transform 1s ease 0s;
}

#main > .inner {
  --padding-horizontal: 2rem;
  --padding-vertical: 3rem;
  --spacing: 1rem;
  --width: 30rem;

  max-width: 100%;
  position: relative;
  width: var(--width);
  z-index: 1;
  padding: var(--padding-vertical) var(--padding-horizontal);
}

#main > .inner > * {
  margin-top: var(--spacing);
  margin-bottom: var(--spacing);
}
#main > .inner > :first-child {
  margin-top: 0 !important;
}
#main > .inner > :last-child {
  margin-bottom: 0 !important;
}

body.is-loading #main {
  opacity: 0;
  transform: translateY(1.6875rem);
}

/* Image */
.image {
  display: block;
  line-height: 0;
  max-width: 100%;
  position: relative;
}
.image .frame {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  vertical-align: top;
  width: 100%;
  position: relative;
}
#image01 .frame {
  width: 15rem;
}
#image01 .frame img {
  border-radius: 0 !important;
  max-width: 100%;
  vertical-align: top;
  width: inherit;
  display: block;
}

#image01 .logo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: rgba(79, 92, 99, 0.9);
  background: rgba(228, 235, 240, 0.35);
}
html.no-logo #image01 .logo-fallback {
  display: flex;
}
html.no-logo #image01 img {
  display: none;
}

hr {
  align-items: center;
  border: 0;
  display: flex;
  justify-content: center;
  min-height: 1rem;
  padding: 0;
  position: relative;
  width: 100%;
}
hr:before {
  content: "";
}

#divider01:not(:first-child) {
  margin-top: 0.625rem !important;
}
#divider01:not(:last-child) {
  margin-bottom: 0.625rem !important;
}
#divider01:before {
  width: 100%;
  background-color: #e4ebf0;
  height: 1px;
}

#text01 {
  color: #4f5c63;
  letter-spacing: -0.025rem;
  width: 100%;
  font-size: 2.25em;
  line-height: 1.25;
  font-weight: 300;
}

#text02 {
  color: #8797a1;
  letter-spacing: 0.025rem;
  width: calc(100% + 0.025rem);
  font-size: 1em;
  line-height: 1.5;
  font-weight: 300;
}

@media (max-width: 736px) {
  #wrapper {
    padding: 2.375rem;
  }
  #main > .inner {
    --padding-horizontal: 2rem;
    --padding-vertical: 3rem;
    --spacing: 1rem;
  }
  #image01 .frame {
    width: 15rem;
  }
  #divider01:before {
    width: 100rem;
  }
  #text01 {
    letter-spacing: -0.021875rem;
    font-size: 2.25em;
    line-height: 1.25;
  }
  #text02 {
    letter-spacing: 0.021875rem;
    width: calc(100% + 0.021875rem);
  }
}

@media (max-width: 480px) {
  #wrapper {
    padding: 1.375rem;
  }
  #main > .inner {
    --spacing: 0.875rem;
  }
}

@media (max-width: 360px) {
  #wrapper {
    padding: 0.875rem;
  }
  #main > .inner {
    --padding-horizontal: 1.5rem;
    --padding-vertical: 2.25rem;
    --spacing: 0.75rem;
  }
  #text01 {
    font-size: 2em;
  }
}


