/* Default Imports */
:root {
  /* BREAKPOINTS */
  --bp-medium: 700px;
  --bp-large: 920px;
  --bp-huge: 1200px;
}

/* BREAKPOINTS */
/* COMPONENT GENERAL VARIABLES */
/* COMPONENT SPECIFIC VARIABLES */
/* TEXT VARIABLES */
@keyframes FOUTKiller {
  0% {
    visibility: hidden;
    height: 0;
    flex-wrap: nowrap;
  }
  100% {
    visibility: visible;
    height: auto;
    flex-wrap: wrap;
  }
}
@keyframes slide-in {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/*
  10. Remove built-in button styles
*/
button {
  background: none;
  border: none;
}

/*
  11. Remove default list styles.
*/
ul.display, li.display {
  padding: 0;
  list-style: none;
}

/* Default Imports */
/*! Typebase.less v0.1.0 | MIT License */
/* Setup */
html {
  /* Change default typefaces here */
  font-family: work-sans, Helvetica, Arial, sans-serif;
  font-size: 88%;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 1040px) {
  html {
    font-size: 100%;
  }
}
/* Copy & Lists */
* + p {
  margin-top: 12px;
}
* + h3, * + h4, * + h5, * + h6 {
  margin-top: 24px;
}
* + h1, * + h2 {
  margin-top: 3rem;
}

p {
  line-height: 24px;
  margin-bottom: 0;
}

ul,
ol {
  margin-top: 24px;
}

ul li,
ol li {
  line-height: 24px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  line-height: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* Change heading typefaces here */
  font-family: work-sans, Helvetica, Arial, sans-serif;
  margin-bottom: 0;
  line-height: 24px;
}

h1 {
  font-family: mittwoch, serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 2.4rem;
  letter-spacing: -0.1rem;
  /*@include break($bp-medium){
    font-size: 4.242rem;
    line-height: 4rem;
  }*/
}

h2 {
  font-size: 1.8rem;
  line-height: 2.5rem;
  font-family: mittwoch, serif;
  font-weight: 600;
  letter-spacing: -0.02rem;
  /*@include break($bp-medium){
    font-size: 2.828rem;
    line-height: 3rem;
  }*/
}

h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

h4 {
  font-size: 0.707rem;
}

h5 {
  font-size: 0.4713333333rem;
}

h6 {
  font-size: 0.3535rem;
}

/* Tables */
table {
  margin-top: 24px;
  border-spacing: 0px;
  border-collapse: collapse;
}

table td,
table th {
  padding: 0;
  line-height: 33px;
}

/* Code blocks */
code {
  vertical-align: bottom;
}

/* Leading paragraph text */
.lead {
  font-size: 1.414rem;
}

/* Hug the block above you */
.hug {
  margin-top: 0;
}

/* Accent fonts */
.accent {
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.6;
}

/* 
CUSTOM TEXT STYLES BELOW
*/
/* Default Imports */
enc-bp {
  display: none;
}
enc-bp::after {
  content: "small";
}
@media screen and (min-width: 700px) {
  enc-bp::after {
    content: "medium";
  }
}
@media screen and (min-width: 1040px) {
  enc-bp::after {
    content: "large";
  }
}
@media screen and (min-width: 1200px) {
  enc-bp::after {
    content: "huge";
  }
}

html {
  color: #21005C;
  overflow-x: hidden;
}

.a11y-link {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 10;
  top: 0;
  transition: transform 0.2s ease;
  height: 60px;
  padding: 12px;
  transform: translateY(-100%);
  /*
  &--container {
    width: 100%;
    padding: 0;
    margin: 0;
    height: 0;
    visibility: hidden;

    &:focus-within {
      visibility: visible;
      height: auto;
      padding: map-get($responsive-variables, padding-s);

      & .a11y-link:focus {
        width: 100%;
        padding: calc(map-get($responsive-variables, padding-s)/2);
        border: dashed 2px $accent-color;
        border-radius: 5px;
        text-decoration: underline;

        &:hover {
          color: $accent-color;
        }
      }
    }
  }*/
}
.a11y-link:focus-within {
  transform: translateY(0);
  transition: transform 0.2s ease;
}
.a11y-link a {
  position: relative;
  width: 100%;
  background-color: #F5F2EB;
  padding: 6px 12px;
}
.a11y-link a:hover {
  color: #21005C;
}

/* TEXT */
h3 {
  color: #8F8A7C;
}

::-webkit-scrollbar {
  opacity: 0;
  width: 3px;
}

::-webkit-scrollbar-track {
  background-color: #EBE7DD;
}

::-webkit-scrollbar-thumb {
  background-color: #8F8A7C;
  height: 200px;
}

main {
  min-height: 100%;
  width: 100%;
  background-color: #EBE7DD;
}
main:focus {
  outline: none;
}
@media screen and (min-width: 700px) {
  main {
    width: calc(100vw - 60px);
    min-height: 100%;
  }
}
@media screen and (min-width: 1040px) {
  main {
    margin-left: 25vw;
    width: 75vw;
  }
}
@media screen and (min-width: 1200px) {
  main {
    border-top: 3px solid #EBE7DD;
    border-left: 3px solid #EBE7DD;
    background-color: #F5F2EB;
  }
}

.title-container {
  position: relative;
  padding: 48px 24px 0 24px;
  margin: 3px;
  background-image: url("../../assets/img/building-xl.svg");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center center;
}
@media screen and (min-width: 700px) {
  .title-container {
    height: 100%;
    margin: 0;
    margin-top: 3px;
    background-color: #F5F2EB;
    display: flex;
    flex-direction: column;
    background-image: none;
  }
}
@media screen and (min-width: 1200px) {
  .title-container {
    margin-top: 0;
  }
}
.title-container h1 {
  z-index: 2;
  padding-bottom: 24px;
}
@media screen and (min-width: 700px) {
  .title-container h1 {
    font-size: 3.9vw;
  }
}
@media screen and (min-width: 700px) {
  .title-container h1 {
    white-space: nowrap;
    line-height: clamp(2.4rem, 3.4vw, 4rem);
    font-size: clamp(2.4rem, 3.4vw, 4rem);
  }
}

.info {
  padding: 0 3px;
  margin-bottom: 3px;
}
@media screen and (min-width: 700px) {
  .info {
    width: 33%;
    padding: 0;
    margin: 0;
    margin-top: 3px;
  }
}
@media screen and (min-width: 1200px) {
  .info {
    margin-top: 0;
  }
}
.info--title {
  background-color: #F5F2EB;
  padding: 24px;
  margin-bottom: 3px;
}
.info--content {
  background-color: #F5F2EB;
  padding: 24px;
  padding-bottom: 0;
}
.info--content:last-child {
  padding-bottom: 48px;
}
.info--list {
  margin-top: 12px;
  padding: 0;
}
.info--list li {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /*
  &::before {
    content: '';
    align-self: center;
    width: calc(100% - map-get($responsive-variables, padding-m)*2);
    margin-left: 10px;
    position: absolute;
    background-color: $mid-color;
    height: 2px;
    z-index: 0;

    @include break($bp-medium){
      width: calc(30% - map-get($responsive-variables, padding-m)*2);
    }
    @include break($bp-large){
      width: calc(25% - map-get($responsive-variables, padding-m)*2);
    }
  }*/
}
.info--list li + li {
  margin-top: 12px;
}
.info--list li p {
  margin-top: 0;
  background-color: #F5F2EB;
  z-index: 1;
}
.info--list li p:first-child {
  padding-right: 12px;
}
.info--list li p:last-child {
  padding-left: 12px;
}

/* UTILS? */
.js-nojs {
  animation: FOUTKiller;
  animation-duration: 0ms;
  animation-delay: 800ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.container--padding {
  padding: 24px;
}

/* Default Imports */
header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #21005C;
  z-index: 2;
}
@media screen and (min-width: 700px) {
  header {
    position: fixed;
    right: 0;
    width: 60px;
    height: 100vh;
    border: none;
  }
}
@media screen and (min-width: 1040px) {
  header {
    width: 25vw;
    left: 0;
    position: fixed;
    height: 100%;
  }
}

.nav--top {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 24px;
  z-index: 100;
}
@media screen and (min-width: 700px) {
  .nav--top {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 1040px) {
  .nav--top {
    padding-bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 48px;
    gap: 20px;
  }
  .nav--top li + li {
    margin-top: 48px;
  }
}

.nav--logo {
  z-index: 100000;
}
@media screen and (min-width: 700px) {
  .nav--logo {
    transform: translateX(100%);
  }
}
@media screen and (min-width: 1040px) {
  .nav--logo {
    transform: translateX(0);
  }
}
.nav--logo a {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: auto;
  gap: 12px;
  transition: gap 0.2s ease-in-out;
}
.nav--logo a:hover {
  gap: 24px;
  transition: gap 0.2s ease-in-out;
}
.nav--logo img {
  height: 24px;
}
.nav--logo span {
  color: #F5F2EB;
  font-size: 2.2rem;
  font-family: work-sans, serif;
  font-weight: 400;
  letter-spacing: -0.02rem;
}
.nav--logo:hover {
  cursor: pointer;
}

.nav--menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  min-width: 300px;
  height: 100vh;
  background-color: #21005C;
  transform: translateX(100%);
  transition: transform 0.2s ease, visibility 0s ease 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  color: #F5F2EB;
  visibility: hidden;
}
@media screen and (min-width: 1040px) {
  .nav--menu {
    transform: translateX(0);
    visibility: visible;
    z-index: 10000;
    height: auto;
    min-width: 25vw;
  }
}
.nav--menu.js-nojs {
  border-top: solid 3px #F5F2EB;
  width: 100%;
  position: relative;
  min-width: none;
  min-height: auto;
  transform: translateX(0);
  border-left: none;
  background-color: none;
  visibility: hidden;
  height: 0;
}
.nav--menu.active {
  /*animation: slide-in;
  animation-duration: 200ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;*/
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.2s ease, visibility 0s ease;
}
.nav--menu ul {
  position: relative;
  padding-left: 0;
  padding-bottom: 30px;
}
.nav--menu ul li {
  list-style: none;
}
.nav--menu ul li + li {
  margin-top: 12px;
}
@media screen and (min-width: 1040px) {
  .nav--menu ul li + li {
    margin-top: 12px;
  }
}
.nav--menu ul li:hover a {
  position: relative;
}
.nav--menu ul li:hover a span {
  position: relative;
  transform: translateX(2rem);
  transition: transform 0.2s ease;
}
.nav--menu ul li:hover a > span::before {
  opacity: 1;
  transition: opacity 0.2s ease 0.1s;
}
.nav--menu ul li a {
  padding: 12px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.414rem;
}
@media screen and (min-width: 1040px) {
  .nav--menu ul li a {
    font-size: 1.2rem;
  }
}
.nav--menu ul li a > span {
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: transform 0.2s ease;
}
.nav--menu ul li a > span::before {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease;
  content: url("../../assets/img/arrow.svg");
  height: 1rem;
  width: 2rem;
  font-weight: 100;
  margin-left: -2.7rem;
  z-index: 10000;
}
@media screen and (min-width: 1040px) {
  .nav--menu ul li a > span::before {
    width: 1.8rem;
  }
}
@media screen and (min-width: 1040px) {
  .nav--menu ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: auto;
  }
}
@media screen and (min-width: 1040px) {
  .nav--menu ul {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: none;
    height: auto;
    width: auto;
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
  }
}
.nav--menu::before {
  height: 60px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  content: "";
  position: absolute;
  border-bottom: solid 3px #F5F2EB;
}
@media screen and (min-width: 1040px) {
  .nav--menu::before {
    display: none;
  }
}
.nav--menu .container--padding {
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media screen and (min-width: 1040px) {
  .nav--menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    height: 100%;
    width: auto;
    min-width: none;
    min-height: none;
    transform: translateX(0);
    visibility: visible;
    background: none;
  }
}

.nav--button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 3;
  height: 28px;
}
.nav--button:hover {
  cursor: pointer;
}
.nav--button.js-nojs {
  display: none;
}
@media screen and (min-width: 1040px) {
  .nav--button {
    display: none;
  }
}

.hamburger {
  position: absolute;
  height: 2px;
  width: 20px;
  left: 0;
  background-color: #F5F2EB;
  content: "";
  z-index: 3;
}
.hamburger::before {
  position: absolute;
  height: 2px;
  width: 20px;
  left: 0;
  top: -6.6666666px;
  background-color: #F5F2EB;
  content: "";
}
.hamburger::after {
  position: absolute;
  height: 2px;
  width: 20px;
  left: 0;
  top: 6.6666666px;
  background-color: #F5F2EB;
  content: "";
}

.special-menu-item {
  font-weight: 600;
}

/* Default Imports */
.sidebar {
  position: fixed;
  background-color: #21005C;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 10000;
  /*
    & button {
      height: 100%;
      width: 100%;
      cursor: pointer;
      display: flex;
      background-color: $accent-color;
      align-items: center;
      justify-content: center;

      @include break($bp-medium){
        flex-direction: column;
      }

      & span {
        color: $sbf-white;

        @include break($bp-medium){
          writing-mode: vertical-rl;
          text-orientation: mixed;
        }
      }
    }*/
}
@media screen and (min-width: 700px) {
  .sidebar {
    width: 60px;
    right: 0;
    top: 0;
    height: 100vh;
  }
}
@media screen and (min-width: 700px) {
  .sidebar .block {
    height: 100%;
  }
}
.sidebar .block button {
  width: 100%;
}
@media screen and (min-width: 700px) {
  .sidebar .block button {
    height: 100%;
    border-bottom-width: 2px;
  }
}
@media screen and (min-width: 700px) {
  .sidebar .block button a {
    flex-direction: column !important;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
  }
}
@media screen and (min-width: 700px) {
  .sidebar .block button a p {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 0;
  }
}
.sidebar .block button a .button--icon {
  height: 60px;
  position: relative;
}
@media screen and (min-width: 700px) {
  .sidebar .block button a .button--icon {
    background-color: #21005C;
  }
}
.sidebar .block button a .button--icon .button--bg {
  background-color: #EBE7DD;
}

/* Default Imports */
.home {
  background-color: #EBE7DD;
}
@media screen and (min-width: 700px) {
  .home {
    height: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1040px) {
  .home {
    height: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media screen and (min-width: 700px) {
  .home .home-container {
    padding: 0 3px;
    width: 100%;
    display: flex;
    gap: 3px;
  }
}
@media screen and (min-width: 1200px) {
  .home .home-container {
    padding-right: 0;
  }
}
@media screen and (min-width: 700px) {
  .home .hero-container {
    height: 100%;
    width: 33%;
    display: flex;
    flex-direction: column;
    order: 3;
  }
}
.home .title-container {
  position: relative;
  padding: 48px 24px 0 24px;
  margin: 3px;
  background-image: url("../../assets/img/building-xl.svg");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center center;
}
@media screen and (min-width: 700px) {
  .home .title-container {
    height: auto;
    margin: 0;
    margin-top: 3px;
    background-color: #F5F2EB;
    display: flex;
    flex-direction: column;
    background-image: none;
  }
}
@media screen and (min-width: 1200px) {
  .home .title-container {
    margin-top: 0;
  }
}
.home .title-container h1 {
  z-index: 2;
  padding-bottom: 24px;
}
@media screen and (min-width: 700px) {
  .home .title-container h1 {
    font-size: 3.9vw;
  }
}
@media screen and (min-width: 700px) {
  .home .title-container h1 {
    white-space: nowrap;
    line-height: clamp(2.4rem, 3.4vw, 4rem);
    font-size: clamp(2.4rem, 3.4vw, 4rem);
  }
}
@media screen and (min-width: 700px) {
  .home--button {
    background-color: #F5F2EB;
    border-top: 3px solid #EBE7DD;
  }
}
.home .info {
  padding: 0 3px;
  margin-bottom: 3px;
}
@media screen and (min-width: 700px) {
  .home .info {
    width: 33%;
    padding: 0;
    margin: 0;
    margin-top: 3px;
  }
}
@media screen and (min-width: 1200px) {
  .home .info {
    margin-top: 0;
  }
}
.home .info--title {
  background-color: #F5F2EB;
  padding: 24px;
  margin-bottom: 3px;
  line-height: 1.8rem;
}
.home .info--content {
  background-color: #F5F2EB;
  padding: 24px;
}
.home .info--content:last-child {
  padding-bottom: 48px;
}
.home .info--content:has(+ .info--content) {
  padding-bottom: 0;
}
.home .info--list {
  margin-top: 12px;
  padding: 0;
}
.home .info--list li {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /*
  &::before {
    content: '';
    align-self: center;
    width: calc(100% - map-get($responsive-variables, padding-m)*2);
    margin-left: 10px;
    position: absolute;
    background-color: $mid-color;
    height: 2px;
    z-index: 0;

    @include break($bp-medium){
      width: calc(30% - map-get($responsive-variables, padding-m)*2);
    }
    @include break($bp-large){
      width: calc(25% - map-get($responsive-variables, padding-m)*2);
    }
  }*/
}
.home .info--list li + li {
  margin-top: 12px;
}
.home .info--list li p {
  margin-top: 0;
  background-color: #F5F2EB;
  z-index: 1;
}
.home .info--list li p:first-child {
  padding-right: 12px;
}
.home .info--list li p:last-child {
  padding-left: 12px;
}
.home--img {
  display: none;
}
@media screen and (min-width: 700px) {
  .home--img {
    margin: 24px;
    margin-bottom: 0;
    margin-top: -30px;
    height: 100%;
    display: block;
    position: relative;
    background-image: url("../../assets/img/building-xl-blue.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    user-select: none;
    pointer-events: none;
    z-index: 0;
  }
}
@media screen and (min-width: 700px) and (min-width: 1040px) {
  .home--img {
    margin-top: 24px;
    background-position: left center;
  }
}
.home--img img {
  max-height: 100%;
}
/* Default Imports */
.contact {
  height: 100%;
  background-color: #EBE7DD;
}
@media screen and (min-width: 1200px) {
  .contact {
    margin-left: 24px;
  }
}
.contact .info {
  flex-basis: 100%;
  flex: 1;
  margin-top: 0;
}
.contact--area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: #EBE7DD;
  height: auto;
}
@media screen and (min-width: 700px) {
  .contact--area {
    flex-direction: row;
    gap: 3px;
    align-items: stretch;
  }
}
@media screen and (min-width: 1040px) {
  .contact--area {
    padding-left: 3px;
    margin-right: 3px;
  }
}
.contact-form {
  width: 100%;
}
.contact .title-container {
  display: block;
  height: auto;
  padding-bottom: 24px;
  order: 0;
  width: 100%;
  margin-top: 3px;
}
@media screen and (min-width: 1040px) {
  .contact .title-container {
    margin-top: 0;
  }
}

/* Default Imports */
.statement {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: #EBE7DD;
}
.statement--container {
  max-width: 80ch;
}
.statement--title {
  background-color: #F5F2EB;
  margin: 3px;
  padding: 48px 24px;
}
.statement--textwrapper {
  background-color: #F5F2EB;
  margin: 3px;
  padding: 24px;
  padding-bottom: 48px;
  margin-bottom: 24px;
  border-radius: 0 0 5px 5px;
}
.statement--subtitle {
  background-color: #F5F2EB;
  margin: 3px;
  padding: 24px 24px;
}
.statement--body {
  margin-top: 0;
  padding-left: 1rem;
  position: relative;
  list-style: none;
}
@media screen and (min-width: 700px) {
  .statement--body {
    padding-left: 2rem;
  }
}
.statement--body li {
  border-radius: 10px;
}
.statement--body li::before {
  content: url("../../assets/img/arrow-blue.svg");
  height: 1rem;
  width: 1rem;
  padding-top: 0.6rem;
  margin-left: -0.5rem;
  transition: transform 0.2s ease;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 700px) {
  .statement--body li::before {
    margin-left: 0rem;
    left: 1rem;
    margin-right: -1rem;
  }
}
@media screen and (min-width: 700px) {
  .statement--body li {
    padding: 12px;
    padding-left: 1rem;
  }
  .statement--body li:hover {
    background-color: #EBE7DD;
  }
  .statement--body li:hover::before {
    transition: transform 0.2s ease;
    transform: translateX(-1rem);
  }
  .statement--body li::before {
    height: 1rem;
    width: 1.5rem;
    padding-top: 0.4rem;
    margin-left: 0.7rem;
    transition: transform 0.2s ease;
    position: absolute;
    left: 0;
  }
}
.statement--body li + li {
  margin-top: 24px;
}

/* Default Imports */
.messages {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: #F5F2EB;
}
@media screen and (min-width: 700px) {
  .messages {
    padding: 24px;
  }
}
.messages--frame {
  padding: 3px;
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #EBE7DD;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .messages--frame {
    padding: 48px;
    border-radius: 10px;
  }
}
.messages--headTitle {
  padding: 48px;
}
@media screen and (min-width: 700px) {
  .messages--headTitle {
    padding-top: 24px;
  }
}
.messages h2 {
  font-family: work-sans, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 700px) {
  .messages h2 {
    font-size: 1.2rem;
  }
}
.messages h2 a {
  font-weight: 600;
}
.messages h2 a:hover {
  opacity: 0.5;
}
.messages--card {
  width: 100%;
  background-color: #F5F2EB;
  border-bottom: 3px solid #21005C;
}
@media screen and (min-width: 700px) {
  .messages--card {
    border-radius: 8px;
    display: flex;
    flex-direction: row;
  }
}
.messages--content {
  width: 100%;
  height: 100%;
}
.messages--title {
  padding: 12px;
  padding-bottom: 0;
}
@media screen and (min-width: 700px) {
  .messages--title {
    padding: 24px;
    padding-bottom: 0;
  }
}
.messages--body {
  width: 100%;
}
.messages--details {
  padding: 12px;
}
@media screen and (min-width: 700px) {
  .messages--details {
    font-size: 1.2rem;
    padding: 24px;
    padding-top: 12px;
  }
}
.messages--controls {
  width: 100%;
  padding: 3px;
  display: flex;
  flex-direction: row;
  gap: 3px;
}
@media screen and (min-width: 700px) {
  .messages--controls {
    flex-direction: column;
    width: 40px;
    height: auto;
  }
}
.messages--controls button {
  background-color: #EBE7DD;
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 30px;
}
@media screen and (min-width: 700px) {
  .messages--controls button {
    height: 100%;
  }
}
.messages--controls button:hover {
  background-color: #21005C;
}
@media screen and (min-width: 700px) {
  .messages--download {
    border-radius: 0 8px 0 0;
  }
}
.messages--download a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.messages--download a::after {
  content: url("../img/little-arrow-accent.svg");
  width: 13px;
}
.messages--download a:hover::after {
  content: url("../img/little-arrow-secondary.svg");
}
@media screen and (min-width: 700px) {
  .messages--stream {
    border-radius: 0 0 8px 0;
  }
}
.messages--stream a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.messages--stream a::after {
  content: url("../img/little-play-accent.svg");
  width: 13px;
}
.messages--stream a:hover::after {
  content: url("../img/little-play-secondary.svg");
}
.messages--hidden {
  display: none !important;
}
.messages--list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.messages--tools {
  width: 100%;
  background-color: #F5F2EB;
  border-bottom: 3px solid #21005C;
  padding: 12px;
}
@media screen and (min-width: 700px) {
  .messages--tools {
    padding: 24px;
    border-radius: 8px;
  }
}
.messages--toolGrid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 700px) {
  .messages--toolGrid {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
.messages--toolField {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}
.messages--toolField label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  opacity: 0.85;
}
.messages--toolField input,
.messages--toolField select {
  background-color: #EBE7DD;
  border: 1px solid rgba(33, 0, 92, 0.25);
  padding: 10px;
  border-radius: 6px;
}
.messages--toolField input:focus,
.messages--toolField select:focus {
  outline: 2px solid rgba(33, 0, 92, 0.35);
  outline-offset: 2px;
}
.messages--toolActions {
  display: flex;
  align-items: flex-end;
}
.messages--toolClear {
  background-color: #EBE7DD;
  border: 1px solid rgba(33, 0, 92, 0.25);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
}
.messages--toolClear:hover {
  background-color: #21005C;
  color: #F5F2EB;
}
.messages--toolClear:disabled {
  opacity: 0.5;
}
.messages--toolMeta {
  margin-top: 12px;
  font-size: 0.95rem;
  opacity: 0.75;
}
.messages--pager {
  width: 100%;
  background-color: #F5F2EB;
  border-bottom: 3px solid #21005C;
  padding: 12px;
}
@media screen and (min-width: 700px) {
  .messages--pager {
    padding: 24px;
    border-radius: 8px;
  }
}
.messages--pagerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.messages--pagerBtn {
  background-color: #EBE7DD;
  border: 1px solid rgba(33, 0, 92, 0.25);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
}
.messages--pagerBtn:hover {
  opacity: 0.7;
}
.messages--pagerBtn:disabled {
  opacity: 0.4;
  cursor: default;
}
.messages--pagerLink {
  font-weight: 600;
}
.messages--pagerLink:hover {
  opacity: 0.7;
}
.messages--pagerDisabled {
  opacity: 0.4;
}
.messages--pagerInfo {
  opacity: 0.75;
}

/* Default Imports */
@font-face {
  font-family: "Pilowlava";
  src: url("../../assets/fonts/Pilowlava-Regular.eot");
  src: url("../../assets/fonts/Pilowlava-Regular.eot") format("embedded-opentype"), url("../../assets/fonts/Pilowlava-Regular.woff2") format("woff2"), url("../../assets/fonts/Pilowlava-Regular.woff") format("woff");
}
@font-face {
  font-family: "SGB";
  src: url("../../assets/fonts/SpaceGrotesk-Bold.woff2") format("woff2");
  /*src: url('fonts/SpaceGrotesk-Bold.woff2') format('woff2'),
       url('fonts/SpaceGrotesk-Bold.ttf') format('truetype');*/
}
@font-face {
  font-family: "SGR";
  src: url("../../assets/fonts/SpaceGrotesk-Regular.woff2") format("woff2");
  /*src: url('fonts/SpaceGrotesk-Bold.woff2') format('woff2'),
       url('fonts/SpaceGrotesk-Bold.ttf') format('truetype');*/
}
@font-face {
  font-family: "SGL";
  src: url("../../assets/fonts/SpaceGrotesk-Light.woff2") format("woff2");
  /*src: url('fonts/SpaceGrotesk-Bold.woff2') format('woff2'),
       url('fonts/SpaceGrotesk-Bold.ttf') format('truetype');*/
}
.syc {
  margin: 0;
  border: 0;
  font-family: "SGR";
  background-color: black;
  width: 100%;
  background-color: black;
  margin-left: 0;
  padding: 0 24px;
  color: white;
}
.syc h2, .syc h3 {
  font-family: "SGB";
  letter-spacing: -0.3rem;
  font-size: 4rem;
}
@media screen and (min-width: 700px) {
  .syc {
    padding: 0 48px;
  }
}
.syc header {
  position: relative;
  height: auto;
  width: 100%;
  overflow-x: hidden;
}
.syc strong:nth-child(odd) {
  color: #C2FFEF;
}
.syc strong:nth-child(even) {
  color: #FDFFDE;
}
.syc section + section {
  margin-top: 24px;
}
.syc section {
  width: 100%;
}
.syc .hero {
  position: relative;
  padding-top: 24px;
}
.syc .hero--title {
  width: 100%;
  font-size: 10.3vw;
  line-height: 10vw;
  color: white;
  font-family: "Pilowlava";
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media screen and (min-width: 700px) {
  .syc .hero--title {
    font-size: 10.42vw;
  }
}
.syc .hero--button {
  z-index: 99999999;
  height: 28vw;
  width: 28vw;
  position: absolute;
  top: 12px;
  right: 48px;
  transition: transform 0.15s ease-in-out;
}
@media screen and (min-width: 700px) {
  .syc .hero--button {
    right: 72px;
  }
}
.syc .hero--button img {
  position: absolute;
  height: 100%;
  width: 100%;
}
.syc .hero--button .spin {
  animation: spinText 4s linear infinite;
}
.syc .hero--button .click-effect {
  transition: transform 0.15s ease-in-out;
}
.syc .hero--button:hover .click-effect {
  transform: rotate(-5deg) scale(90%) translateY(10px);
  transition: transform 0.15s ease-in-out;
}
.syc .scrolling {
  padding: 24px 0;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  font-family: "SGL";
  font-size: 4rem;
  line-height: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  position: relative;
  width: 100%;
  margin: auto;
  z-index: 1;
}
.syc .scrolling strong {
  font-family: "SGB";
}
@media screen and (min-width: 700px) {
  .syc .scrolling {
    font-size: 8rem;
    line-height: 7.2rem;
  }
}
.syc .scrolling--spacer {
  opacity: 0;
  pointer-events: none;
}
.syc .scrolling--wrapper {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}
.syc .scrolling--wrapper > div {
  display: flex;
  animation: scrollText 3s infinite linear;
}
.syc .info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 0;
  padding-bottom: 48px;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .syc .info {
    /* &::after {
       content: '';
       position: absolute;
       height: 100%;
       width: 2px;
       background-color: $syc-bright;
     }*/
    text-align: left;
    font-size: 1.6rem;
  }
}
.syc .info--block {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .syc .info--block {
    flex-direction: row;
    gap: 48px;
    max-width: 800px;
  }
}
.syc .info--block + * {
  margin-top: 24px;
}
.syc .info--block--img {
  transition: 0.2s ease-in-out;
  margin-bottom: 24px;
}
.syc .info--block--img:hover {
  animation: wiggle 0.5s ease-in-out;
  transition: 0.2s ease-in-out;
}
.syc .info--block--img img {
  height: 150px;
  width: 175px;
}
@media screen and (min-width: 700px) {
  .syc .info--block--img img {
    height: 200px;
    width: 225px;
  }
}
@media screen and (min-width: 700px) {
  .syc .info--block--img {
    margin-bottom: 0;
  }
}
.syc .info--block--text {
  width: 100%;
  text-transform: uppercase;
}
@media screen and (min-width: 700px) {
  .syc .info--block--text {
    max-width: 800px;
  }
}
.syc .info--block--text p {
  line-height: 125%;
}
.syc .info--block--text h2 {
  text-transform: lowercase;
}
.syc .info--block--text ul {
  margin-top: 12px;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
@media screen and (min-width: 700px) {
  .syc .info--block--text ul {
    list-style-type: disc;
  }
}
.syc .info--block--text ul li {
  line-height: 125%;
}
@media screen and (min-width: 700px) {
  .syc .info--block--text ul li {
    margin-left: 1rem;
  }
}
.syc .info--block:nth-child(odd) h2 {
  color: #FDFFDE;
}
.syc .info--block:nth-child(even) h2 {
  color: #C2FFEF;
}
.syc .info--block + .info--block {
  margin-top: 48px;
}
.syc .form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 72px;
  padding-bottom: 48px;
}
@media screen and (min-width: 700px) {
  .syc .form {
    margin-top: 86.4px;
    gap: 72px;
    padding-bottom: 72px;
  }
}
.syc .form .required-notice {
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
  margin: 0;
  margin: -24px auto;
}
.syc .form .required-notice span {
  color: #C2FFEF;
  font-size: 1.2rem;
  line-height: 0rem;
}
.syc .form--decal {
  display: none;
  height: 100%;
}
@media screen and (min-width: 700px) {
  .syc .form--decal {
    display: flex;
    width: 12rem;
    height: 100%;
  }
}
.syc .form--decal img {
  width: 100%;
  height: auto;
}
.syc .form--decal:first-child() {
  justify-content: flex-start;
}
.syc .form--decal:first-child() {
  justify-content: flex-end;
}
.syc .form--wrapper {
  width: 100%;
  max-width: 800px;
  font-size: 1.2rem;
  font-family: "SGR";
  position: relative;
}
@media screen and (min-width: 700px) {
  .syc .form--wrapper {
    font-size: 1.4rem;
  }
}
.syc .form--wrapper form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.syc .form--img {
  position: absolute;
  top: -60px;
  right: 0px;
  height: 150px;
  width: 150px;
  z-index: 0;
}
@media screen and (min-width: 700px) {
  .syc .form--img {
    z-index: 2;
    top: -40px;
    right: 20px;
    height: 180px;
    width: 180px;
  }
}
.syc .form--input--wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 1;
  gap: 0.5rem;
}
.syc .form--input--wrapper .required::after {
  content: "*";
  position: absolute;
  color: #C2FFEF;
  height: 1.2rem;
  width: 1.2rem;
  margin-left: 0.2rem;
}
.syc .form--input--wrapper .input {
  padding: 12px;
  line-height: 2rem;
  font-size: 1.2rem;
  width: 100%;
  background-color: black;
  border: solid 2px white;
  color: #C2FFEF;
}
.syc .form--input--wrapper .input + label {
  background-color: blue;
}
@media screen and (min-width: 700px) {
  .syc .form--input--wrapper .input {
    font-size: 1.4rem;
  }
}
.syc .form--input--wrapper .input:focus {
  background-color: #C2FFEF;
  color: black;
  outline-color: black;
  outline-width: 3px;
  outline-offset: -2px;
  border-radius: 0;
}
.syc .form--input--wrapper .input:focus-visible {
  outline: none;
}
.syc .form--input--wrapper textarea {
  height: 8rem;
}
.syc .form fieldset {
  display: flex;
  flex-direction: column;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
}
.syc .form fieldset input[type=radio]:not(:checked) {
  background-color: black;
}
.syc .form fieldset .form--input--wrapper {
  flex-direction: row;
  line-height: 1.6rem;
}
.syc .form fieldset .form--input--wrapper label {
  width: auto;
}
.syc .form fieldset .form--input--wrapper .radio {
  width: auto;
  background: black;
  color: #C2FFEF;
  accent-color: #C2FFEF;
}
.syc .form fieldset .form--input--wrapper .radio button {
  background-color: black;
}
.syc .form fieldset .form--input--wrapper .radio:focus {
  color: #C2FFEF;
}
.syc .form fieldset .form--input--wrapper .radio button:focus {
  color: #C2FFEF;
}
.syc .form--button-wrapper {
  margin-top: 24px;
  width: auto;
  border: 2px solid white;
  border-radius: 5px;
  position: relative;
}
.syc .form--button-wrapper:hover img {
  transform: translateX(-12px) translateY(-9px);
  transition: transform 0.15s ease-in-out;
}
.syc .form--button-wrapper img {
  width: 100px;
  height: 60px;
  position: absolute;
  right: -40px;
  top: -20px;
  pointer-events: none;
  transition: transform 0.2s ease-in-out;
}
.syc .form--button {
  padding: 12px;
  background-color: #FDFFDE;
  font-family: "SGB";
  text-transform: uppercase;
  width: 120px;
  border: 2px solid black;
  border-radius: 3px;
  color: black;
}
.syc .form--button:hover {
  background-color: black;
  color: #C2FFEF;
  cursor: pointer;
}
.syc .footer {
  font-size: 1.2rem;
  border-top: solid 2px white;
  padding-top: 48px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 700px) {
  .syc .footer {
    font-size: 1.4rem;
    padding-top: 24px;
    flex-direction: row;
    gap: 48px;
  }
}
.syc .footer--button {
  height: 200px;
  width: 200px;
  position: relative;
  right: 0;
  left: 0;
  top: 0;
  margin: -10px;
  margin-bottom: 0;
}
@media screen and (min-width: 700px) {
  .syc .footer--button {
    height: 180px;
    width: 300px;
  }
}
.syc .footer--button a {
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
}
.syc .warning {
  text-align: center;
  padding-bottom: 48px;
  font-size: 1.2rem;
}
@media screen and (min-width: 700px) {
  .syc .warning {
    font-size: 1.4rem;
  }
}
.syc .warning--banner {
  width: 100vw;
  background-color: white;
  margin-left: -24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 123px;
  height: auto;
  gap: 12px;
  padding-bottom: 24px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 700px) {
  .syc .warning--banner {
    margin-left: -48px;
  }
}
.syc .warning--banner img {
  height: 150px;
  width: 150px;
  margin-top: -85px;
}
@media screen and (min-width: 700px) {
  .syc .warning--banner img {
    height: 200px;
    width: 200px;
    margin-top: -110px;
  }
}
.syc .warning--title h2 {
  color: black;
  font-size: 4rem;
  font-family: "SGL";
}
@media screen and (min-width: 700px) {
  .syc .warning--title h2 {
    font-size: 6rem;
    line-height: 5.6rem;
  }
}
.syc .warning--title h2 strong {
  font-family: "SGB";
  color: black;
}
.syc .warning--title h2 span {
  font-family: "SGL";
  color: #FF0D00;
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-33.33333%);
  }
}
@keyframes spinText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-15deg);
  }
  60% {
    transform: rotate(15deg);
  }
  80% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.svg-letters {
  animation: spinText 0.5s linear infinite;
}

/* Default Imports */
.bsw {
  background-color: black;
}
.bsw iframe {
  width: 100%;
  height: 100%;
}

/* Default Imports */
.fdc {
  background-color: #fffbf3;
  font-family: "Gopher", Poppins, Inter, Roboto, sans-serif;
  margin: 0;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #262523;
  border: none;
  /* Components */
  /* Utilities */
}
.fdc h1, .fdc h2, .fdc h3, .fdc h4, .fdc h5, .fdc h6, .fdc p, .fdc a {
  font-family: "Gopher", Poppins, Inter, Roboto, sans-serif;
}
.fdc h2 {
  font-size: 2.2rem;
}
@media screen and (min-width: 700px) {
  .fdc h2 {
    font-size: 3rem;
  }
}
.fdc .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 700px) {
  .fdc .hero {
    padding-bottom: 0;
  }
}
.fdc .hero .hero-logo {
  width: 200px;
  height: auto;
}
.fdc .hero .rotate {
  position: relative;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: spinText 19s linear infinite;
}
.fdc .hero .reg-cta {
  visibility: hidden;
  padding: 12px 24px;
  border-radius: 0 0 20px 20px;
  background-color: #262523;
  font-weight: bold;
  color: #fffbf3;
  position: fixed;
  top: -80px;
  right: 50px;
}
@media screen and (min-width: 700px) {
  .fdc .hero .reg-cta {
    visibility: visible;
    transition: top 0.2s ease-in-out, padding 0.2s ease-in-out;
    top: 0;
  }
  .fdc .hero .reg-cta:hover {
    transition: padding 0.2s ease-in-out;
    padding-top: 24px;
  }
}
.fdc .info {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media screen and (min-width: 700px) {
  .fdc .info {
    flex-direction: row;
    flex: 50%;
    gap: 24px;
    flex-wrap: wrap;
  }
}
.fdc .info--block {
  padding: 24px;
  background: rgb(255, 253, 248);
  background: linear-gradient(297deg, rgb(255, 253, 248) 0%, rgb(255, 255, 255) 100%);
  color: #DB525F;
  font-size: 1.6rem;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fdc .info--block.yellow {
  color: #FFC34A;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(255, 195, 74, 0.1294117647);
  box-shadow: 0px 0px 30px 5px rgba(255, 195, 74, 0.1294117647);
  transition: 0.2s ease-in-out all;
}
.fdc .info--block.yellow:hover {
  outline: 3px solid #FFC34A;
  -webkit-box-shadow: 0px 0px 30px 10px rgba(255, 195, 74, 0.3019607843);
  box-shadow: 0px 0px 30px 10px rgba(255, 195, 74, 0.3019607843);
  transition: 0.2s ease-in-out box-shadow;
}
.fdc .info--block.blue {
  color: #4898FF;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(72, 152, 255, 0.1294117647);
  box-shadow: 0px 0px 30px 5px rgba(72, 152, 255, 0.1294117647);
  transition: 0.2s ease-in-out box-shadow;
}
.fdc .info--block.blue:hover {
  outline: 3px solid #4898FF;
  -webkit-box-shadow: 0px 0px 30px 10px rgba(72, 151, 255, 0.3568627451);
  box-shadow: 0px 0px 30px 10px rgba(72, 151, 255, 0.3568627451);
  transition: 0.2s ease-in-out box-shadow;
}
.fdc .info--block.blue--reverse {
  color: white;
  background: #4898FF;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(72, 152, 255, 0.1294117647);
  box-shadow: 0px 0px 30px 5px rgba(72, 152, 255, 0.1294117647);
  transition: 0.2s ease-in-out all;
}
.fdc .info--block.blue--reverse:hover {
  -webkit-box-shadow: 0px 0px 30px 10px rgba(72, 151, 255, 0.3568627451);
  box-shadow: 0px 0px 30px 10px rgba(72, 151, 255, 0.3568627451);
  transition: 0.2s ease-in-out all;
  transform: scale(1.02);
}
.fdc .info--block.red {
  color: #DB525F;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(219, 82, 95, 0.1294117647);
  box-shadow: 0px 0px 30px 5px rgba(219, 82, 95, 0.1294117647);
  transition: 0.2s ease-in-out box-shadow;
}
.fdc .info--block.red:hover {
  outline: 3px solid #DB525F;
  -webkit-box-shadow: 0px 0px 30px 10px rgba(219, 82, 96, 0.3058823529);
  box-shadow: 0px 0px 30px 10px rgba(219, 82, 96, 0.3058823529);
  transition: 0.2s ease-in-out box-shadow;
}
.fdc .info--block.wide {
  width: 100%;
}
.fdc .info--block p {
  text-align: center;
}
@media screen and (min-width: 700px) {
  .fdc .info--block .big {
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media screen and (min-width: 700px) {
  .fdc .info--block .medium {
    font-size: 3rem;
    line-height: 3rem;
  }
}
@media screen and (min-width: 700px) {
  .fdc .info--block {
    font-size: 2.2rem;
    padding: 48px;
    width: calc(50% - 12px);
  }
  .fdc .info--block p {
    line-height: 2.6rem;
  }
}
.fdc .info--block p + p {
  margin-top: 2rem;
}
.fdc .registration .text-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 700px) {
  .fdc .registration .text-wrapper {
    gap: 1rem;
  }
}
.fdc .registration h2 {
  text-align: center;
}
.fdc .registration p {
  text-align: center;
  max-width: 50ch;
}
.fdc .registration .form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: white;
  border-radius: 20px;
  padding: 12px;
  padding-bottom: 24px;
  margin-top: 1rem;
  transition: 0.2s ease-in-out all;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(255, 195, 74, 0.1294117647);
  box-shadow: 0px 0px 30px 5px rgba(255, 195, 74, 0.1294117647);
  font-size: 1.2rem;
}
@media screen and (min-width: 700px) {
  .fdc .registration .form-wrapper {
    padding: 48px;
    margin-top: 3rem;
  }
}
.fdc .registration .form-wrapper:hover {
  -webkit-box-shadow: 0px 0px 30px 10px rgba(255, 195, 74, 0.3019607843);
  box-shadow: 0px 0px 30px 10px rgba(255, 195, 74, 0.3019607843);
  transition: 0.2s ease-in-out box-shadow;
}
.fdc .registration .form-wrapper form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fdc .registration .input-wrapper {
  width: 100%;
}
.fdc .registration .input-wrapper label {
  display: block;
  padding: 12px;
  font-weight: bold;
}
.fdc .registration .input-wrapper label::after {
  content: ":";
}
.fdc .registration .input-wrapper input, .fdc .registration .input-wrapper textarea {
  display: block;
  width: 100%;
  min-height: 60px;
  padding: 12px;
  border-radius: 20px;
  border: none;
  outline: 2px solid #d8d2cd;
}
.fdc .registration .input-wrapper input:focus, .fdc .registration .input-wrapper textarea:focus {
  outline-color: #FFC34A;
}
.fdc .registration .input-wrapper:has(input:not([required=""])) label::after {
  content: "optional";
}
.fdc .registration .input-wrapper:has(textarea:not([required=""])) label::before {
  content: "Optional";
  margin-right: 1rem;
  font-weight: 200;
  color: #afaba2;
}
.fdc .registration .input-wrapper + .input-wrapper {
  margin-top: 12px;
}
.fdc button {
  background-color: #4898FF;
  border: #4898FF solid 3px;
  border-radius: 20px;
  padding: 12px 24px;
  margin-top: 24px;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.fdc button:hover {
  background-color: white;
  color: #4898FF;
  transition: all 0.1s ease-in-out;
}
.fdc button:active {
  border-color: #2f64a9;
  background-color: rgba(72, 151, 255, 0.3568627451);
  transition: all 0.1s ease-in-out;
  color: #2f64a9;
}
.fdc section {
  width: 100%;
  padding: 24px;
  max-width: 1200px;
}
@media screen and (min-width: 700px) {
  .fdc section {
    /*flex-direction: row;
    flex: 50%;
    gap: $padding-s;
    flex-wrap: wrap;*/
    padding: 48px;
    padding-bottom: 72px;
  }
}

/* Default Imports */
.events {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: #EBE7DD;
  height: 100%;
}
.events--container {
  max-width: 80ch;
}
.events--title {
  background-color: #F5F2EB;
  margin: 3px;
  padding: 48px 24px;
}
.events--textwrapper {
  background-color: #F5F2EB;
  margin: 3px;
  padding: 24px;
  padding-bottom: 48px;
  margin-bottom: 24px;
  border-radius: 0 0 5px 5px;
}
.events--subtitle {
  background-color: #F5F2EB;
  margin: 3px;
  padding: 24px 24px;
}
.events--body {
  margin-top: 0;
  padding-left: 1rem;
  position: relative;
  list-style: none;
}
@media screen and (min-width: 700px) {
  .events--body {
    padding-left: 2rem;
  }
}
.events--body li {
  border-radius: 10px;
}
.events--body li::before {
  content: url("../../assets/img/arrow-blue.svg");
  height: 1rem;
  width: 1rem;
  padding-top: 0.6rem;
  margin-left: -0.5rem;
  transition: transform 0.2s ease;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 700px) {
  .events--body li::before {
    margin-left: 0rem;
    left: 1rem;
    margin-right: -1rem;
  }
}
@media screen and (min-width: 700px) {
  .events--body li {
    padding: 12px;
    padding-left: 1rem;
  }
  .events--body li:hover {
    background-color: #EBE7DD;
  }
  .events--body li:hover::before {
    transition: transform 0.2s ease;
    transform: translateX(-1rem);
  }
  .events--body li::before {
    height: 1rem;
    width: 1.5rem;
    padding-top: 0.4rem;
    margin-left: 0.7rem;
    transition: transform 0.2s ease;
    position: absolute;
    left: 0;
  }
}
.events--body li span {
  font-weight: bold;
  color: #21005C;
}
.events--body li + li {
  margin-top: 24px;
}

.testDiv {
  width: 100%;
  height: 100px;
  background-color: antiquewhite;
}

.testBlock {
  width: 100vw;
  height: 200px;
  padding: 30px;
  background-color: lightblue;
}

/* Default Imports */
.button {
  background-color: #21005C;
  color: #F5F2EB;
  position: relative;
  height: auto;
  min-height: calc(1rem + 24px);
  width: 100%;
  padding: 0;
  border: 3px solid #21005C;
}
.button a {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.button a p {
  display: inline-block;
  padding: 12px 24px;
  padding-right: calc(1rem + 72px);
  transition: transform 0.2s ease;
}
.button--icon {
  background-color: #F5F2EB;
  height: 100%;
  position: absolute;
  right: 0;
  width: calc(1rem - 6px + 48px);
  display: flex;
  align-items: center;
}
.button--icon img {
  width: 100%;
  height: auto;
}
.button--bg {
  width: 100%;
  height: 100%;
  background-color: #21005C;
  transition: transform 0.2s ease;
  mask: url("../../assets/img/arrow.svg") no-repeat center;
  mask-size: calc(100% - 24px);
  -webkit-mask: url("../../assets/img/arrow.svg") no-repeat center;
  -webkit-mask-size: calc(100% - 24px);
}
.button :hover p {
  transition: transform 0.2s ease;
  transform: translateX(-5px);
}
.button :hover .button--icon {
  height: 80%;
  border-left: 1.5px solid #F5F2EB;
  background-color: #21005C;
}
.button :hover .button--bg {
  transition: transform 0.2s ease;
  transform: translateX(3px);
  background-color: #F5F2EB;
}

.inverse {
  background-color: #F5F2EB;
  border-color: #F5F2EB;
  color: #21005C;
}
.inverse .button--icon {
  background-color: #21005C;
}
.inverse .button--bg {
  background-color: #F5F2EB;
}
.inverse :hover .button--icon {
  border-left: 1.5px solid #21005C;
  background-color: #F5F2EB;
}
.inverse :hover .button--bg {
  background-color: #21005C;
}

.small {
  width: auto;
}
.small a p {
  padding: 6px inherit 6px 6px;
}

/* Default Imports */
.verse {
  width: 100%;
  margin-top: 24px;
  border-bottom: 2px solid #F5F2EB;
}
@media screen and (min-width: 700px) {
  .verse {
    margin-top: 0;
  }
}
.verse blockquote {
  padding-top: 24px;
  border-top: 2px solid #F5F2EB;
  margin-bottom: 0;
}
@media screen and (min-width: 700px) {
  .verse blockquote {
    border-top: 3px solid #EBE7DD;
  }
}
.verse p {
  padding-bottom: 24px;
}

/* Default Imports */
.contact-form--wrapper {
  background-color: #F5F2EB;
  padding: 24px;
}
@media screen and (min-width: 700px) {
  .contact-form--wrapper {
    padding: 24px 24px 48px 24px;
  }
}
.contact-form__input-wrapper {
  overflow: auto;
  padding: 6px;
  width: 100%;
  border: solid 2px #F5F2EB;
}
.contact-form__input-wrapper input:focus, .contact-form__input-wrapper textarea:focus {
  outline: none;
}
.contact-form__input-wrapper:focus-within {
  border: solid 2px #8F8A7C;
}
.contact-form__input-wrapper + .contact-form__input-wrapper {
  margin-top: 12px;
}
.contact-form__form__wrapper__input {
  padding: 12px;
  width: 100%;
  border: solid 2px #EBE7DD;
  background-color: #F5F2EB;
}

/* Default Imports */
.info {
  padding: 0 3px;
  margin-bottom: 3px;
}
@media screen and (min-width: 700px) {
  .info {
    width: 33%;
    padding: 0;
    margin: 0;
    margin-top: 3px;
  }
}
@media screen and (min-width: 1200px) {
  .info {
    margin-top: 0;
  }
}
.info--title {
  background-color: #F5F2EB;
  padding: 24px;
  margin-bottom: 3px;
}
.info--content {
  background-color: #F5F2EB;
  padding: 24px;
  padding-bottom: 0;
}
.info--content:last-child {
  padding-bottom: 48px;
}
.info--list {
  margin-top: 12px;
  padding: 0;
}
.info--list li {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /*
        &::before {
          content: '';
          align-self: center;
          width: calc(100% - map-get($responsive-variables, padding-m)*2);
          margin-left: 10px;
          position: absolute;
          background-color: $mid-color;
          height: 2px;
          z-index: 0;

          @include break($bp-medium){
            width: calc(30% - map-get($responsive-variables, padding-m)*2);
          }
          @include break($bp-large){
            width: calc(25% - map-get($responsive-variables, padding-m)*2);
          }
        }*/
}
.info--list li + li {
  margin-top: 12px;
}
.info--list li p {
  margin-top: 0;
  background-color: #F5F2EB;
  z-index: 1;
}
.info--list li p:first-child {
  padding-right: 12px;
}
.info--list li p:last-child {
  padding-left: 12px;
}

/* Default Imports */
.title-container {
  position: relative;
  padding: 48px 24px 0 24px;
  margin: 3px;
  background-image: url("../../assets/img/building-xl.svg");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center center;
}
@media screen and (min-width: 700px) {
  .title-container {
    height: 100%;
    margin: 0;
    margin-top: 3px;
    background-color: #F5F2EB;
    display: flex;
    flex-direction: column;
    background-image: none;
  }
}
@media screen and (min-width: 1200px) {
  .title-container {
    margin-top: 0;
  }
}
.title-container h1 {
  z-index: 2;
  padding-bottom: 24px;
}
@media screen and (min-width: 700px) {
  .title-container h1 {
    font-size: 3.9vw;
  }
}
@media screen and (min-width: 700px) {
  .title-container h1 {
    white-space: nowrap;
    line-height: clamp(2.4rem, 3.4vw, 4rem);
    font-size: clamp(2.4rem, 3.4vw, 4rem);
  }
}

/* Default Imports */
.notice {
  background-color: #21005C;
  width: 100%;
  height: 60px;
}
.notice a {
  color: #F5F2EB;
  height: 100%;
  width: 100%;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.notice a:hover {
  transform: scale(1.05);
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/*******************/

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