@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/* GLOBALS */
html, body {
  position: relative;
  width: 100%;
  height: 100%;
}

body {
  color: #222;
  background-color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", "Helvetica Neue", "Arial", sans-serif;
  font-size: 21px;
  line-height: 1.2;
  word-wrap: break-word;
}

/* COMPONENTS */
a {
  color: #206095;
}

a:hover {
  color: #323132;
}

label {
  display: block;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  -webkit-padding: 0.4em 0;
  padding: 0.4em;
  margin: 0 0 0.5em 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;
}

input:disabled {
  color: #ccc;
}

button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}

button:disabled {
  color: #999;
}

button:not(:disabled):active {
  background-color: #ddd;
}

button:focus {
  border-color: #666;
}

header, section, nav, footer, figure, caption {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 0;
}

footer {
  margin: 60px 0 0 0;
}

h1 {
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 38px;
  line-height: 48px;
  padding: 2px 0 6px 0;
}

h2 {
  font-size: 30px;
  margin: 32px 0 32px 0;
  padding: 24px 0 0 0;
  font-weight: bold;
  line-height: 40px;
  color: #323132;
}

h3 {
  margin: 32px 0 8px 0;
  padding: 0;
  font-weight: bold;
  line-height: 32px;
  font-size: 18px !important;
}

h4 {
  margin: 24px 0 8px 0;
  font-weight: bold;
  line-height: 32px;
  padding: 0;
  font-size: 16px;
}

p {
  font-size: 18px;
  line-height: 32px;
  margin: 0 0 24px 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

blockquote {
  margin: 30px 0 6px 0;
  font-size: 30px;
  color: #777;
}

ul {
  margin-bottom: 32px;
  padding-left: 32px;
}

li {
  margin: 0 0 8px 0;
  line-height: 32px;
  font-weight: 400;
  font-size: 18px;
  padding: 0;
}

/* Components Mobile */
@media (max-width: 30em) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 24px 0 16px 0;
  }

  h3 {
    margin: 24px 0 16px 0;
    line-height: 24px;
  }

  h4 {
    line-height: 24px;
    margin: 16px 0 16px 0;
  }

  p {
    font-size: 16px;
  }

  li{
    font-size: 16px;
  }

  .hidden-on-mobile{
    display:none;
  }
}

/* CLASSES */
.col-full {
  width: 100%;
}

.col-wide {
  width: 100%;
  max-width: 960px;
  margin: 0 24px;
}

.col-medium {
  width: 100%;
  max-width: 736px;
  margin: 0 24px;
}

.height-full {
  min-height: 100vh;
}

.height-half {
  min-height: 50vh;
}

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

.center {
  text-align: center;
}

.middle {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.caption {
  margin-top: 8px;
  text-align: left;
  font-size: 14px;
  color: #777;
}

.inset-medium {
  max-width: 680px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.inset-narrow {
  max-width: 480px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.text-big {
  font-size: 30px;
  margin: 20px 0;
}

.text-small {
  font-size: 14px;
}

.text-bold {
  font-weight: bold;
}

.text-indent {
  margin-left: 30px;
}

.text-shadow {
  text-shadow: 0 0 8px #000;
}

.arrow-down {
  background-color: #222;
  -webkit-mask: url(./img/scroll-down.svg) no-repeat center;
  mask: url(./img/scroll-down.svg) no-repeat center;
  width: 48px;
  height: 48px;
  /* margin: 0 auto; */
}

.mt {
  margin-top: 72px;
}

.mb {
  margin-bottom: 40px;
}

.em {
  padding: 1px 4px 1px 4px;
  border-radius: 5px;
  font-weight: bold;
}

.em-muted {
  background-color: #777;
  color: #fff;
}

.label-block {
  display: inline-block;
  text-align: right;
  width: 85px;
}

.visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* SCROLL-SPECIFIC ELEMENTS */
svelte-scroller-background-container {
  pointer-events: all !important;
}

[slot="foreground"] section {
  padding: 100vh 0 100vh 0;
}

[slot="foreground"] section+section {
  padding: 0 0 100vh 0;
}

[slot="foreground"] section div {
  padding: 12px;
  pointer-events: all;
  position: relative;
}

[slot="foreground"] section div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.8;
  z-index: -1;
}

[slot="foreground"] section div p {
  margin: 0;
}

[slot="foreground"] section div p+p {
  margin-top: 30px;
}

[slot="foreground"] section div h3 {
  margin: 10px 0 20px 0;
}

@media (min-width: 992px) {
  .splitscreen svelte-scroller-background {
    position: absolute !important;
    width: calc(100% - 480px) !important;
    min-width: 60%;
    right: 0;
  }

  .splitscreen [slot="foreground"] section div::before {
    opacity: 0;
  }

  .splitscreen [slot="foreground"] section {
    width: 480px;
    max-width: 35%;
    margin: 0 auto 0 0;
    background-color: #fff;
  }

  .splitscreen [slot="foreground"] .col-medium {
    width: 100%;
    margin: 0;
    padding: 0 30px;
  }
}
