/**
*
* Testing

.include-media-test {
  @include media("<=phone") {
    background-color: #def;

    &:before {
      content: "<=phone";
    }
  }

  @include media(">phone") {
    background-color: #abc;

    &:before {
      content: ">phone";
    }
  }

  @include media(">=815px", "<desktop") {
    background-color: #fed;

    &:before {
      content: ">=815px, <desktop";
    }
  }

  @include media(">=desktop") {
    background-color: #fab;

    &:before {
      content: ">=desktop";
    }
  }

  @include media("retina2x") {
    &:after {
      content: "Retina" !important;
    }
  }
}

*
**/
/**
  Include padding and border in the element's total width and height
*/
* {
  box-sizing: border-box;
}

/**
  :root selector matches the document's root element (HTML).
*/
:root {
  overflow-x: hidden;
  height: 100%;
}

blockquote,
body,
button,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
pre,
ul {
  margin: 0;
  padding: 0;
}

/**
  Get rid of browsers-default list styles
*/
ol,
ul {
  list-style: none;
}

ul,
menu,
dir {
  padding-left: 0;
}

/**
  No auto-link underline
*/
a {
  text-decoration: none;
}

/**
  default button style reset
*/
button {
  outline: none;
  border: 0;
  background: none;
  -webkit-appearance: none;
}

:focus {
  outline: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

:root {
  /* Base colors */
  --color-blue: #45b2e8;
  --color-blue-light: color-mod(var(--color-blue) tint(80%));
  --color-blue-dark: color-mod(var(--color-blue) shade(30%));
  --color-blue-transparent: color-mod(var(--color-blue) alpha(20%));
  --color-green: #00ddc5;
  --color-green-light: color-mod(var(--color-green) tint(50%));
  --color-green-dark: color-mod(var(--color-green) shade(50%));
  --color-purple: #6772e4;
  --color-purple-background: color-mod(var(--color-purple) tint(95%));
  --color-purple-dark: color-mod(var(--color-purple) shade(60%));
  --color-red: #f54086;
  --color-red-light: color-mod(var(--color-red) tint(80%));
  --color-red-dark: color-mod(var(--color-red) shade(30%));
  --color-grey: #8494a5;
  --color-grey-light: var(--color-grey-200);
  --color-grey-dark: var(--color-grey-600);
  --color-grey-100: #f8f9fa;
  --color-grey-200: #e9ecef;
  --color-grey-300: #dee2e6;
  --color-grey-400: #ced4da;
  --color-grey-500: #adb5bd;
  --color-grey-600: #6c757d;
  --color-grey-700: #495057;
  --color-grey-800: #343a40;
  --color-grey-900: #212529;
  --color-white: #fff;
  --color-white-transparent: color-mod(var(--color-white) alpha(80%));
  --color-black: #000;
  --color-black-transparent: color-mod(var(--color-black) alpha(90%));
  /* Primary Color */
  --color-primary: var(--color-suntropy-blue);
  --color-primary-dark: var(--color-suntropy-blue-dark);
  /* Secondary Color */
  --color-secondary: var(--color-green);
  --color-secondary-light: var(--color-green-light);
  --color-secondary-dark: var(--color-green-dark);
  /* Accent Color */
  --color-accent: var(--color-purple);
  --color-accent-dark: var(--color-purple-dark);
  /* Gradients */
  --gradient-background: linear-gradient(45deg, var(--color-suntropy-blue-dark), var(--color-suntropy-blue));
  /* Links */
  --color-link: var(--color-grey);
  --color-link-hover: var(--color-grey-dark);
  --color-link-text: var(--color-purple);
  --color-link-text-hover: var(--color-purple-dark);
  --color-link-white: color-mod(var(--color-white) alpha(70%));
  --color-link-white-hover: color-mod(var(--color-white) alpha(50%));
  /* Text */
  --color-text: var(--color-grey-600);
  --color-list: var(--color-grey);
  /* Border */
  --color-border: var(--color-grey-300);
  /* Form */
  --color-form-background: var(--color-grey-100);
  --color-form-border: var(--color-grey-200);
  --color-form-border-hover: var(--color-grey-400);
  /* Shadow */
  --color-shadow: rgba(106, 139, 241, 0.1);
  --color-shadow-black: rgba(106, 139, 241, 0.2);
  --color-shadow-black-dark: var(--color-black);
  /* Utility */
  --color-utility-green: #38B2AC;
  --color-utility-green-light: color-mod(var(--color-utility-green) tint(85%));
  --color-utility-green-dark: color-mod(var(--color-utility-green) shade(40%));
  --color-utility-yellow: #ED8936;
  --color-utility-yellow-light: color-mod(var(--color-utility-yellow) tint(90%));
  --color-utility-yellow-dark: color-mod(var(--color-utility-yellow) shade(10%));
  --color-utility-red: #F56565;
  --color-utility-red-light: color-mod(var(--color-utility-red) tint(90%));
  --color-utility-red-dark: color-mod(var(--color-utility-red) shade(20%));
}

:root {
  --space-xxxs: 0.25em;
  --space-xxs: 0.375em;
  --space-xs: 0.5em;
  --space-sm: 0.75em;
  --space-md: 1.25em;
  --space-lg: 2em;
  --space-xl: 3.25em;
  --space-xxl: 5.25em;
  --space-xxxl: 8.5em;
  --space-section: var(--space-lg);
}

@media (min-width: 769px) {
  :root {
    --space-section: var(--space-xxl);
  }
}
:root {
  --radius: .5em;
  --radius-sm: calc(var(--radius) - 0.2em);
  --radius-md: calc(var(--radius) + 0.2em);
  --radius-lg: calc(var(--radius) + 0.4em);
  --radius-button: 20px;
}

.radius {
  border-radius: var(--radius);
}
.radius-sm {
  border-radius: var(--radius-sm);
}
.radius-md {
  border-radius: var(--radius-md);
}
.radius-lg {
  border-radius: var(--radius-lg);
}

:root {
  --font-primary: Arial;
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 600;
}

/**
  Font size mixin
*/
/**
  Line height mixin
*/
/**
  REM controller mixin. Combine font-size and line-height
*/
/**
  Set headline sizes and line-heights (Mobile first)
*/
h1,
.h1 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 40px;
  line-height: 2.5rem;
  letter-spacing: -0.01em;
  font-weight: normal;
}
@media (min-width: 769px) {
  h1,
  .h1 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 48px;
    line-height: 3rem;
  }
}

h2,
.h2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 2rem;
  margin-top: 18px;
  margin-bottom: 18px;
  font-weight: normal;
}
@media (min-width: 769px) {
  h2,
  .h2 {
    font-size: 32px;
    font-size: 2rem;
    line-height: 40px;
    line-height: 2.5rem;
  }
}

h3,
.h3 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 30px;
  line-height: 1.875rem;
  margin-top: 9px;
  margin-bottom: 9px;
  font-weight: normal;
}
@media (min-width: 769px) {
  h3,
  .h3 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 32px;
    line-height: 2rem;
  }
}

h4,
.h4 {
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 28px;
  line-height: 1.75rem;
  margin-top: 6px;
  margin-bottom: 6px;
  font-weight: normal;
}
@media (min-width: 769px) {
  h4,
  .h4 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
}

h5,
.h5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  margin-top: 6px;
  margin-bottom: 6px;
  font-weight: var(--font-medium);
}
@media (min-width: 769px) {
  h5,
  .h5 {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 28px;
    line-height: 1.75rem;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  color: var(--color-grey-600);
}

p,
.p,
ol,
li,
label,
a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
}
@media (min-width: 769px) {
  p,
  .p,
  ol,
  li,
  label,
  a {
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}

.title-common {
  margin: 0 0 var(--space-sm) 0;
  max-width: 800px;
}
.title-common-center {
  margin: 0 auto var(--space-sm) auto;
  text-align: center;
}
.title-intro {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 30px;
  line-height: 1.875rem;
  margin: 0 0 var(--space-md) 0;
  font-weight: var(--font-regular);
}
.title-intro-center {
  margin: 0 auto var(--space-md) auto;
  text-align: center;
}

.text-semibold {
  font-weight: var(--font-medium);
}
.text-bold {
  font-weight: var(--font-bold);
}
.text-uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-small {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
}
@media (min-width: 769px) {
  .text-small {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
}
.text-small a {
  font-size: inherit;
  line-height: inherit;
}
.text-pill {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 24px;
  line-height: 1.5rem;
  display: inline-flex;
  padding: 0 var(--space-sm);
  margin: 0 0 var(--space-sm) 0;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: var(--font-bold);
  border: 1px solid var(--color-secondary);
  border-radius: 13px;
}
.text-white {
  color: var(--color-white);
}
.text-grey {
  color: var(--color-grey);
}
.text-blue {
  color: var(--color-blue);
}
.text-purple {
  color: var(--color-purple);
}

p + a,
p .button,
h1 + a,
h1 .button,
h2 + a,
h2 .button,
h3 + a,
h3 .button,
h4 + a,
h4 .button,
h5 + a,
h5 .button {
  display: inline-block;
  margin-top: var(--space-md);
}

p + .list-check {
  margin: 2rem 0;
}

p + p {
  margin-top: 0.5rem;
}

p + a {
  display: block;
  margin-top: 1rem;
}

:root {
  --shadow-sm: 0 2px 5px 0 var(--color-shadow), 0 1px 1px 0 var(--color-shadow-black);
  --shadow-md: 0 7px 14px 0 var(--color-shadow), 0 3px 6px 0 var(--color-shadow-black);
  --shadow-lg: 0 15px 35px 0 var(--color-shadow), 0 5px 15px 0 var(--color-shadow-black);
  --shadow-wide: 27px 62.5px 125px -25px var(--color-shadow), -16px 38px 75px -38px var(--color-shadow-black-dark);
  --shadow-button: 0 7px 13px -3px var(--color-shadow), 0 2px 4px 0 var(--color-shadow-black);
  --shadow-button-hover: 0 11px 16px -3px var(--color-shadow),0 4px 5px 0 var(--color-shadow-black);
}

.container,
.container-fluid,
.container-m,
.container-l,
.container-xl {
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-top: 20px;
  width: 100%;
  position: relative;
  min-height: 90px;
}
@media (min-width: 769px) {
  .container,
  .container-fluid,
  .container-m,
  .container-l,
  .container-xl {
    padding: 0 var(--space-lg);
  }
}

.container-s {
  max-width: 710px;
}
.container-m {
  max-width: 840px;
}
.container-l {
  max-width: 1184px;
}
.container-xl {
  max-width: 100%;
}

.container + .container {
  margin-top: 6rem;
}

body {
  font-family: var(--font-primary);
  font-size: 100%;
  font-style: normal;
  font-variant-numeric: lining-nums;
  font-weight: var(--font-medium);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: none;
  color: var(--color-text);
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#app main {
  flex: 1;
}

img {
  width: 100%;
}

a {
  color: var(--color-link);
  cursor: pointer;
  transition: color 0.25s ease-in-out;
}
a:hover {
  color: var(--color-link-hover);
}
a.text-link {
  position: relative;
  color: var(--color-link-text);
}
a.text-link:hover {
  color: var(--color-link-text-hover);
}

.icon-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto var(--space-lg) auto;
}
.icon-title:before {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}
.icon-title svg {
  position: relative;
  top: -2px;
}

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

.list {
  list-style: square;
}
.list-check, .list-circle, .list-number {
  margin: var(--space-md) 0;
}
.list-check li, .list-circle li, .list-number li {
  position: relative;
}
.list-check li:not(:last-child), .list-circle li:not(:last-child), .list-number li:not(:last-child) {
  margin-bottom: var(--space-sm);
}
.list-check li {
  padding-left: calc(var(--space-lg) + var(--space-xxs));
}
.list-check li::before, .list-check li::after {
  content: "";
  position: absolute;
  transform: translateY(-2px);
}
@media (min-width: 769px) {
  .list-check li::before, .list-check li::after {
    transform: none;
  }
}
.list-check li::before {
  width: 12px;
  height: 12px;
  top: 5px;
  left: 5px;
  -webkit-mask: url("/images/icons/checkmark.svg") no-repeat 100% 100%;
          mask: url("/images/icons/checkmark.svg") no-repeat 100% 100%;
  background-color: var(--color-list);
  z-index: 1;
}
.list-check li::after {
  width: 22px;
  height: 22px;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  border-radius: 50%;
}
.list-circle li {
  padding: 0 0 0 var(--space-md);
}
.list-circle li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  top: 5px;
  background: var(--color-list);
  border-radius: 50%;
}
@media (min-width: 769px) {
  .list-circle li::before {
    top: 8px;
  }
}
.list-number {
  counter-reset: number;
}
.list-number li {
  padding: 0 0 0 var(--space-xl);
}
.list-number li:before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: number;
  content: counter(number);
  font-weight: var(--font-bold);
  text-align: center;
  line-height: var(--space-md);
  color: var(--color-list);
  z-index: 1;
  width: var(--space-md);
  height: var(--space-md);
  border-radius: 50%;
  background-color: var(--color-white);
  padding: var(--space-xxxs);
  box-shadow: var(--shadow-sm);
}

form {
  position: relative;
  flex: 5;
}
@media (max-width: 767px) {
  form {
    padding: 0;
  }
}
form.form-background {
  padding: var(--space-md);
  border-radius: var(--radius);
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
}
form.form-background textarea {
  min-height: 140px;
}
form.form-background .form-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
form.form-background .form-loader p {
  margin: 0 0 var(--space-xs) 0;
  font-weight: var(--font-bold);
  background-color: var(--color-white);
  padding: 0 var(--space-xs);
  border-radius: var(--radius-sm);
}
form.form-background .form-loader-circles span {
  display: inline-block;
  width: var(--space-sm);
  height: var(--space-sm);
  background: var(--color-white);
  margin: 0 0 0 var(--space-xxxs);
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  opacity: 0.5;
  animation: preload 1s infinite;
}
form.form-background .form-loader-circles span:nth-child(1) {
  margin-left: 0;
}
form.form-background .form-loader-circles span:nth-child(2) {
  animation-delay: 0.15s;
}
form.form-background .form-loader-circles span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes preload {
  0%, 100% {
    background: var(--color-accent);
    opacity: 1;
  }
  50% {
    background: var(--color-white);
    opacity: 0.5;
  }
}
form.form-background.isLoading {
  pointer-events: none;
}
form.form-background.isLoading .form-group {
  filter: blur(3px);
}
form.form-background.isLoading .form-loader {
  visibility: visible;
  opacity: 1;
}
form .form-group {
  padding-bottom: var(--space-md);
  transition: filter 0.25s ease-in-out;
}
form .form-group-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
form .form-group-button .button:not(:last-child) {
  margin-right: var(--space-xs);
}
form .form-group-button .button.delete {
  margin-right: auto;
}
form .form-group-textarea label {
  align-self: flex-start;
}
form .form-group.has-error input,
form .form-group.has-error textarea,
form .form-group.has-error pre,
form .form-group.has-error .custom-select,
form .form-group.has-error .checkmark {
  box-shadow: 0 0 0 1px var(--color-utility-red);
}
form .form-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  form .form-row {
    flex-direction: row;
  }
}
form label,
form .label-helper {
  margin-bottom: var(--space-xxs);
  align-self: flex-start;
}
@media (min-width: 769px) {
  form label,
  form .label-helper {
    flex: 47%;
    margin-bottom: 0;
    align-self: initial;
  }
}
@media (min-width: 769px) {
  form label {
    margin-right: var(--space-md);
  }
}
form input,
form textarea,
form pre,
form .custom-select {
  width: 100%;
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 26px;
  background-color: var(--color-form-background);
  box-shadow: 0 0 0 1px var(--color-form-border);
  border-radius: var(--radius-sm);
  padding: var(--space-xs) var(--space-sm);
  border: 0;
  outline: 0;
  transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
@media (min-width: 769px) {
  form input,
  form textarea,
  form pre,
  form .custom-select {
    flex: 68%;
    width: auto;
  }
}
form input:focus,
form textarea:focus,
form pre:focus,
form .custom-select:focus {
  background-color: var(--color-white);
}
form input:hover,
form textarea:hover,
form pre:hover,
form .custom-select:hover {
  box-shadow: 0 0 0 1px var(--color-form-border-hover);
}

.form-error {
  color: var(--color-utility-red);
  margin-top: var(--space-xxxs);
}

.custom-select {
  position: relative;
  cursor: pointer;
  background: url(/images/icons/dropdown.svg);
  background-position-x: calc(100% - 1rem);
  background-repeat: no-repeat;
  background-position-y: 50%;
}
.custom-select select {
  display: none; /*hide original SELECT element: */
}
.custom-select .select-items {
  position: absolute;
  background-color: var(--color-white);
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 0 0 1px var(--color-form-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  z-index: 1;
}
.custom-select .select-items > div {
  padding: var(--space-xs) var(--space-sm);
  transition: background-color 0.25s ease-in-out;
}
.custom-select .select-items > div:hover {
  background-color: var(--color-form-background);
}
.custom-select .select-items.select-hide {
  display: none;
}
.custom-select .select-items .same-as-selected {
  background-color: var(--color-form-background);
}
.custom-select .select-arrow-active svg {
  transform: rotate(-45deg);
}

.custom-radios {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 26px;
}
@media (min-width: 769px) {
  .custom-radios {
    flex: 68%;
    width: auto;
  }
}
.custom-radios .custom-radio {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex: 1;
  height: 39px;
  display: flex;
  align-items: center;
  margin: 0;
}
.custom-radios .custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-radios .custom-radio .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: var(--color-form-background);
  box-shadow: 0 0 0 1px var(--color-form-border);
  transition: box-shadow 0.25s ease-in-out;
}

.custom-radio:hover input ~ .checkmark {
  box-shadow: 0 0 0 1px var(--color-form-border-hover);
}

.custom-radio input:checked ~ .checkmark {
  background-color: var(--color-white);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio .checkmark:after {
  top: 8px;
  left: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
}

.custom-checkmarks {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 26px;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* Style the checkmark/indicator */
}
@media (min-width: 769px) {
  .custom-checkmarks {
    flex: 68%;
    width: auto;
  }
}
.custom-checkmarks .custom-checkmark {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-checkmarks .custom-checkmark input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkmarks .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--color-form-background);
  box-shadow: 0 0 0 1px var(--color-form-border);
  border-radius: 2px;
  transition: box-shadow 0.25s ease-in-out;
}
.custom-checkmarks .custom-checkmark:hover input ~ .checkmark {
  box-shadow: 0 0 0 1px var(--color-form-border-hover);
}
.custom-checkmarks .checkmark:focus {
  background-color: var(--color-white);
  box-shadow: 0 0 0 1px var(--color-form-border-hover);
}
.custom-checkmarks .custom-checkmark input:checked ~ .checkmark {
  background-color: var(--color-white);
  box-shadow: 0 0 0 1px var(--color-primary);
}
.custom-checkmarks .custom-checkmark input:checked ~ .checkmark {
  display: block;
  background: url(/images/icons/checkmark.svg);
  background-position-x: 50%;
  background-repeat: no-repeat;
  background-position-y: 50%;
}

.button {
  background-color: var(--color-white);
  position: relative;
  white-space: nowrap;
  display: inline-block;
  height: 40px;
  padding: 0 var(--space-md);
  cursor: pointer;
  border: 0;
  font-size: 17px;
  font-weight: var(--font-bold);
  font-family: var(--font-primary);
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: var(--radius-button);
  transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, transform 0.25s ease-in-out, color 0.25s ease-in-out;
  box-shadow: var(--shadow-button);
}
.button:hover {
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
}
.button-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.button-primary:hover {
  color: var(--color-white);
}
.button-secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
}
.button-secondary:hover {
  color: var(--color-primary-dark);
}

p + .button,
p + .button-group {
  margin: var(--space-md) 0 0 0;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: var(--space-lg) 0 calc(-1 * var(--space-xs)) 0;
}
@media (min-width: 769px) {
  .button-group {
    justify-content: flex-start;
  }
}
.button-group > * {
  margin-right: var(--space-xs);
  margin-bottom: var(--space-xs);
}
.button-group > *:last-of-type {
  margin-right: 0;
}
.button-group-center {
  justify-content: center;
}
.button-group-right {
  justify-content: right;
}

article section:not(:first-child) {
  margin-top: var(--space-xl);
}
@media (min-width: 769px) {
  article section:not(:first-child) {
    margin-top: var(--space-xxl);
  }
}
article section p + p,
article section ul + p,
article section ul + ul {
  margin-top: var(--space-sm);
}
article section h3 {
  margin-bottom: var(--space-md);
}

.count-article {
  counter-reset: h3;
}
.count-article section.count-section {
  position: relative;
  counter-reset: p;
}
.count-article section.count-section p,
.count-article section.count-section h3,
.count-article section.count-section ul {
  padding-left: 2.75rem;
}
.count-article section.count-section h3 {
  counter-reset: h4;
}
.count-article section.count-section h3::before {
  position: absolute;
  left: 0;
  content: counter(h3) ". ";
  counter-increment: h3;
}
.count-article section.count-section h4::before {
  content: counter(h3) "." counter(h4) ". ";
  counter-increment: h4;
}
.count-article section.count-section h5 {
  margin: 1rem 0 0.5rem;
  padding-left: 2.75rem;
}
.count-article section.count-section p::before {
  position: absolute;
  left: 0;
  content: counter(h3) "." counter(p) ". ";
  counter-increment: p;
}
.count-article section.count-section .important {
  margin: 1rem 0 1rem 2.75rem;
}
.count-article section.count-section section.count-subsection {
  counter-reset: p;
}
.count-article section.count-section section.count-subsection p {
  padding-left: 2.75rem;
}
.count-article section.count-section section.count-subsection p::before {
  position: absolute;
  left: 0;
  content: counter(h3) "." counter(h4-2) "." counter(p3) ". ";
  counter-increment: p3;
}
.count-article section.count-section section.count-subsection h4 {
  counter-reset: p3;
  counter-increment: h4-2;
  margin-top: 2rem;
}

section {
  position: relative;
}

.section-margin {
  margin: var(--space-section) 0;
  padding: var(--space-section) 0;
  background-color: var(--color-white);
}
.section-margin-close-bottom {
  margin-top: var(--space-section);
  padding: var(--space-section) 0;
  background-color: var(--color-white);
}
.section-close {
  padding-bottom: var(--space-section);
  background-color: var(--color-white);
}
.section-background-margin {
  margin: var(--space-section) 0;
  padding: var(--space-section) 0;
  background-color: var(--color-grey-light);
}
.section-background {
  padding: var(--space-section) 0;
  background: var(--gradient-background);
  background-color: var(--color-grey-light);
}
.section-background-close {
  padding-bottom: var(--space-section);
  background-color: var(--color-grey-light);
}

.split {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  /**
   * IMAGE RIGHT
   * Desktop:
   *   text left / image right
   * Mobile:
   *   image top / text bottom
   */
  /**
   * IMAGE LEFT
   * stays image top on mobile automatically
   */
}
@media (min-width: 769px) {
  .split {
    flex-direction: row;
    gap: 0;
  }
}
.split-centered {
  align-items: center;
}
.split-left, .split-right {
  position: relative;
  width: 100%;
  max-width: 100%;
  flex: 1;
}
@media (min-width: 769px) {
  .split-left, .split-right {
    max-width: 50%;
  }
}
@media (min-width: 769px) {
  .split-left {
    margin-right: var(--space-xl);
  }
}
@media (min-width: 769px) {
  .split-right {
    margin-left: var(--space-xl);
  }
}
.split .flex-2 {
  flex: 2;
}
.split.image-right .split-left {
  order: 2;
}
@media (min-width: 769px) {
  .split.image-right .split-left {
    order: 1;
  }
}
.split.image-right .split-right {
  order: 1;
}
@media (min-width: 769px) {
  .split.image-right .split-right {
    order: 2;
  }
}
.split.image-left .split-left {
  order: 1;
}
.split.image-left .split-right {
  order: 2;
}
.split + .split {
  margin-top: var(--space-xxxl);
}

.steps {
  position: relative;
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-gap: var(--space-xxl) 0;
  margin: var(--space-xl) 0 0 0;
  counter-reset: step;
}
@media (min-width: 769px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 0 var(--space-xxl);
  }
}
.steps:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 2px;
  background-color: var(--color-grey-200);
  transform: translateX(-50%);
  z-index: -2;
}
@media (min-width: 769px) {
  .steps:before {
    top: 50%;
    width: calc(100% - var(--space-xxxl) / 2);
    height: 2px;
    transform: translate(-50%, -50%);
  }
}
.steps .step {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.steps .step h5 {
  font-weight: var(--font-bold);
}
.steps .step:before, .steps .step:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.steps .step:before {
  counter-increment: step;
  content: counter(step);
  color: var(--color-white);
  font-size: 70px;
  font-weight: var(--font-bold);
  z-index: -1;
}
@media (min-width: 769px) {
  .steps .step:before {
    font-size: 120px;
  }
}
.steps .step:after {
  content: "";
  width: var(--space-xxl);
  height: var(--space-xxl);
  border-radius: 50%;
  background-color: var(--color-grey-200);
  z-index: -2;
}
@media (min-width: 769px) {
  .steps .step:after {
    width: var(--space-xxxl);
    height: var(--space-xxxl);
  }
}

.team-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.team-card {
  background: var(--color-white);
  border: 2px solid var(--color-grey-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.team-card__image {
  margin: var(--space-md);
  padding: var(--space-sm);
  aspect-ratio: 16/10;
  background: var(--color-grey-light);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.team-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  border-radius: calc(var(--radius-sm) / 2);
}
.team-card__content {
  padding: 0 var(--space-md) var(--space-md);
}

.team-card__name {
  margin-bottom: var(--space-sm);
}
.team-card__name h3 {
  margin: 0;
}
.team-card__name span {
  display: block;
  margin-top: var(--space-xxs);
  color: var(--color-grey-600);
  font-weight: var(--font-medium);
}
.team-card__description, .team-card__email, .team-card__phone {
  margin-top: var(--space-sm);
  color: var(--color-grey-600);
}
.team-card__email a, .team-card__phone a {
  color: var(--color-link);
  text-decoration: none;
}
.team-card__email a:hover, .team-card__phone a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

.nav {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-grey-200);
  z-index: 30;
}
@media (min-width: 769px) {
  .nav {
    position: top;
    top: 0;
  }
}
.nav nav.nav-main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.nav nav.nav-main .nav-section {
  display: flex;
}
.nav nav.nav-main .nav-section-logo {
  flex: 1;
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-logo {
    flex: 0;
  }
}
.nav nav.nav-main .nav-section-logo .nav-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
}
.nav nav.nav-main .nav-section-logo svg.logo {
  width: 170px;
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-logo svg.logo {
    width: 200px;
  }
}
.nav nav.nav-main .nav-section-logo svg.logo path {
  fill: var(--color-primary);
  transition: fill 0.25s ease-in-out;
}
.nav nav.nav-main .nav-section-logo span {
  display: flex;
  align-items: center;
  transform: scale(0.8);
  margin: calc(-1 * var(--space-xs)) 0 0 0;
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-logo span {
    margin: calc(-1 * var(--space-sm)) 0 0 0;
  }
}
.nav nav.nav-main .nav-section-logo:hover svg.logo path {
  fill: var(--color-primary-dark);
}
.nav nav.nav-main .nav-section-primary, .nav nav.nav-main .nav-section-secondary {
  width: 100%;
  display: none;
  flex-direction: column;
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-primary, .nav nav.nav-main .nav-section-secondary {
    display: flex;
    flex-direction: row;
    width: auto;
  }
}
.nav nav.nav-main .nav-section-primary.open, .nav nav.nav-main .nav-section-secondary.open {
  display: flex;
}
@media (min-width: 1025px) {
  .nav nav.nav-main .nav-section-primary {
    margin-left: var(--space-sm);
  }
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-primary {
    order: 2;
    flex: 1;
  }
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-secondary {
    order: 3;
  }
}
.nav nav.nav-main .nav-section-secondary.open {
  order: 1;
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-secondary.open {
    order: 3;
  }
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-language {
    order: 4;
  }
}
.nav nav.nav-main .nav-section-language svg.icon-language {
  width: 26px;
  height: auto;
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-language svg.icon-language {
    width: 22px;
    height: auto;
    margin: 0 var(--space-xxs) 0 0;
  }
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-language .nav-link {
    padding-right: 0;
  }
}
.nav nav.nav-main .nav-section-language .nav-link span {
  display: none;
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-language .nav-link span {
    display: initial;
  }
}
.nav nav.nav-main .nav-section-language .icon-flag {
  margin: 0 var(--space-xs) 0 0;
}
.nav nav.nav-main .nav-section-mobile {
  margin-left: auto;
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-section-mobile {
    display: none;
  }
}
.nav nav.nav-main .nav-section-mobile .mobile-toggle {
  width: 35px;
  height: 26px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.nav nav.nav-main .nav-section-mobile .mobile-toggle span {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--color-link);
  border-radius: 2px;
  transition: background-color 0.3s 0.25s ease-in-out, transform 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4), width 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.nav nav.nav-main .nav-section-mobile .mobile-toggle span:nth-child(1) {
  top: 0;
  left: 0;
}
.nav nav.nav-main .nav-section-mobile .mobile-toggle span:nth-child(2) {
  top: 11px;
  left: 0;
  opacity: 1;
  width: 80%;
}
.nav nav.nav-main .nav-section-mobile .mobile-toggle span:nth-child(3) {
  bottom: 0;
  left: 0;
}
.nav nav.nav-main .nav-section-mobile .mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
}
.nav nav.nav-main .nav-section-mobile .mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav nav.nav-main .nav-section-mobile .mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 13px;
}
.nav nav.nav-main .nav-section-mobile:hover span {
  background-color: var(--color-link-hover);
}
.nav nav.nav-main .nav-section-mobile:hover span:nth-child(2) {
  width: 100%;
}
.nav nav.nav-main .nav-link {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 24px;
  line-height: 1.5rem;
  padding: 0 var(--space-xs);
  display: flex;
  align-items: center;
  height: 48px;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  font-weight: var(--font-medium);
  color: var(--color-link);
  transition: color 0.25s ease-in-out;
}
@media (min-width: 1025px) {
  .nav nav.nav-main .nav-link {
    padding: 0 var(--space-sm);
  }
}
@media (min-width: 769px) {
  .nav nav.nav-main .nav-link {
    height: 100px;
  }
}
.nav nav.nav-main .nav-link.active {
  color: var(--color-grey-dark);
}
.nav nav.nav-main .nav-link:hover {
  color: var(--color-link-hover);
}

.logo {
  height: 80px;
  width: auto;
}

.nav-sub-link {
  display: flex;
  justify-content: center;
  margin: 5px;
}

footer {
  position: relative;
  background-color: var(--color-white);
  padding: var(--space-xxl) 0;
}
footer h5,
footer p,
footer a,
footer li {
  color: var(--color-grey-600);
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 19px;
  line-height: 1.1875rem;
}
footer h5 {
  font-weight: var(--font-bold);
}
footer .footer-columns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
footer .footer-columns > * {
  flex: 0 0 50%;
}
footer .footer-columns .footer-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-columns .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-columns li {
  display: block;
  margin-bottom: var(--space-xs);
}
footer .footer-columns li:first-child {
  margin-bottom: var(--space-md);
}
footer .footer-columns img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  footer .footer-columns {
    flex-direction: column-reverse;
  }
  footer .footer-columns > * {
    flex: none;
    width: 100%;
  }
  footer .footer-columns .footer-content {
    justify-content: center;
    text-align: center;
    margin-bottom: var(--space-xl);
  }
  footer .footer-columns .footer-image {
    justify-content: flex-start;
  }
}

.alert {
  position: fixed;
  top: var(--space-sm);
  right: var(--space-sm);
  left: var(--space-sm);
  background-color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation-name: fadeInRight;
  animation-duration: 6s;
  animation-fill-mode: both;
  z-index: 50;
}
@media (min-width: 769px) {
  .alert {
    top: var(--space-md);
    right: var(--space-md);
    left: auto;
    min-width: 320px;
    max-width: 420px;
  }
}
.alert-header, .alert-body {
  padding: var(--space-sm) var(--space-md);
}
.alert-success {
  color: var(--color-utility-green-dark);
  background-color: var(--color-utility-green-light);
}
.alert-success .alert-header {
  color: var(--color-white);
  border-radius: var(--radius) var(--radius) 0 0;
  background-color: var(--color-utility-green-dark);
}
.alert-error {
  color: var(--color-utility-red-dark);
  background-color: var(--color-utility-red-light);
}
.alert-error .alert-header {
  color: var(--color-white);
  border-radius: var(--radius) var(--radius) 0 0;
  background-color: var(--color-utility-red-dark);
}
.alert-warning {
  color: var(--color-utility-yellow-dark);
  background-color: var(--color-utility-yellow-light);
}
.alert-warning .alert-header {
  color: var(--color-white);
  border-radius: var(--radius) var(--radius) 0 0;
  background-color: var(--color-utility-yellow-dark);
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(200%);
  }
  10% {
    opacity: 1;
    transform: translateX(0);
  }
  90% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0.5;
    transform: translateX(200%);
  }
}
.has-dropdown {
  position: relative;
  z-index: 40;
}

.dropdown {
  position: relative;
  transform: translateY(-1.5rem);
  transition: transform 0.25s ease-in-out;
}
.dropdown-container {
  display: none;
  flex-direction: column;
  top: 5px;
  padding: var(--space-sm);
  min-width: 100px;
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}
@media (min-width: 769px) {
  .dropdown-container {
    position: absolute;
  }
}
.dropdown-container form {
  min-width: 200px;
}
.dropdown-container ul {
  min-width: 250px;
}
.dropdown-container ul li:not(:last-child) {
  margin-bottom: var(--space-sm);
}
.dropdown-container ul li a {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 30px;
  line-height: 1.875rem;
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
}
.dropdown.active {
  transform: translateY(0);
}
.dropdown.active .dropdown-container {
  opacity: 1;
  pointer-events: auto;
  display: block;
}

.header-banner, .page-header, .home-header {
  background: url(/images/jahnplatz.svg) no-repeat center center;
  background-size: cover;
  width: 100%;
  max-width: 1115px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow-md);
}
.header-banner .container, .page-header .container, .home-header .container {
  z-index: 1;
  width: 100%;
  padding: var(--space-md);
}
.header-banner h1, .page-header h1, .home-header h1 {
  margin: 0 0 var(--space-xs) 0;
}

.home-header {
  min-height: 420px;
}
@media (max-width: 767px) {
  .home-header {
    min-height: 260px;
  }
}
.home-header h1 {
  color: red;
}

.page-header {
  min-height: 220px;
}
@media (max-width: 767px) {
  .page-header {
    min-height: 140px;
  }
}
.page-header h1 {
  color: var(--color-grey-800);
}

.index-header {
  min-height: 50vh;
  background: var(--color-grey-light);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-sm);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}
@media (max-width: 767px) {
  .index-header {
    min-height: 20vh;
  }
}
.index-header h1 {
  margin: 0 0 var(--space-xs) 0;
  color: var(--color-grey);
}
.index-header .container {
  z-index: 1;
}

.index-header:hover {
  box-shadow: var(--shadow-lg);
}

.page-title {
  margin-bottom: var(--space-xl);
}
.page-title h1 {
  display: inline-block;
  margin: 0;
  padding-bottom: var(--space-sm);
  color: var(--color-grey-700);
  font-weight: 600;
  border-bottom: 4px solid var(--color-primary);
}

.collapse {
  padding: 0 0 var(--space-md) 0;
}
.collapse-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.collapse-label h3 {
  color: var(--color-primary);
  margin: 0 var(--space-md) 0 0;
  transition: color 0.25s ease-in-out;
}
.collapse-label svg {
  transition: transform 0.25s ease-in-out;
  flex-shrink: 0;
}
.collapse-label svg path {
  fill: var(--color-primary);
  transition: fill 0.25s ease-in-out;
}
.collapse-label:hover h3 {
  color: var(--color-primary-dark);
}
.collapse-label:hover svg path {
  fill: var(--color-primary-dark);
}
.collapse-body {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  transform: translateY(calc(-1 * var(--space-md)));
  transition: max-height 0.25s ease-in-out, opacity 0.25s ease-in-out, transform 0.5s;
}
.collapse-body p {
  margin: var(--space-xs) 0 var(--space-xs) 0;
}
.collapse.is-active .collapse-body {
  overflow: visible;
  opacity: 1;
  max-height: 1200px;
  pointer-events: auto;
  transform: translateY(0);
}
.collapse.is-active svg {
  transform: rotate(225deg);
}
.collapse:first-child {
  margin: var(--space-md) 0 0 0;
}
.collapse:not(:last-child) {
  margin: 0 0 var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.vertical-tabs {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
@media (min-width: 769px) {
  .vertical-tabs {
    flex-direction: row;
  }
}
.vertical-tabs nav {
  position: relative;
  margin: 0 var(--space-lg) var(--space-md);
  white-space: nowrap;
}
@media (min-width: 769px) {
  .vertical-tabs nav {
    margin: 0 var(--space-xl) var(--space-md) 0;
  }
}
.vertical-tabs nav p + ul {
  margin-top: var(--space-lg);
}
.vertical-tabs nav ul {
  position: relative;
}
.vertical-tabs nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 40px;
  padding: 0 var(--space-md);
  transition: color 0.25s ease-in-out;
  color: var(--color-secondary);
  text-transform: uppercase;
  font-weight: var(--font-bold);
  cursor: pointer;
  z-index: 1;
}
@media (min-width: 769px) {
  .vertical-tabs nav ul li {
    justify-content: flex-start;
    text-transform: initial;
  }
}
.vertical-tabs nav ul li.active:hover {
  color: var(--color-white);
}
.vertical-tabs nav ul li:hover {
  color: var(--color-secondary-dark);
}
.vertical-tabs nav .bar {
  position: absolute;
  height: 40px;
  width: 100%;
  top: 0;
  background: var(--color-secondary);
  transition: transform 0.5s cubic-bezier(0.7, -0.2, 0.2, 1.5);
  will-change: transform;
  border-radius: calc(40px / 2);
  box-shadow: var(--shadow-sm);
}
.vertical-tabs--body {
  padding: var(--space-lg);
  min-height: 0;
  transition: min-height 0.5s ease-in-out;
}
@media (min-width: 769px) {
  .vertical-tabs--body {
    padding: var(--space-xl) var(--space-xxl);
  }
}
.vertical-tabs header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 769px) {
  .vertical-tabs header {
    padding: var(--space-xl) var(--space-xxl);
  }
}
.vertical-tabs header h3 {
  margin: 0;
}
.vertical-tabs header svg + h3 {
  margin-top: var(--space-md);
}
.vertical-tabs .sections {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.vertical-tabs .sections .section {
  position: absolute;
  left: var(--space-lg);
  right: var(--space-lg);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  text-align: center;
  transform-origin: center;
}
.vertical-tabs .sections .section p,
.vertical-tabs .sections .section h1,
.vertical-tabs .sections .section h2,
.vertical-tabs .sections .section h3,
.vertical-tabs .sections .section h4 {
  color: var(--color-black);
}
.vertical-tabs .sections .section.active {
  visibility: visible;
  opacity: 1;
  left: 0;
  position: relative;
}

.container-error {
  height: calc(100vh - 100px);
  display: flex;
}

.error {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.error h1 {
  background: -webkit-repeating-linear-gradient(-45deg, #71b7e6, #69a6ce, #b98acc, #ee8176, #b98acc, #69a6ce, #9b59b6);
  -webkit-text-fill-color: transparent;
  font-size: 160px;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.25);
  font-weight: var(--font-bold);
  animation: error alternate 10s infinite;
}

@keyframes error {
  0%, 100% {
    background-size: 300%;
  }
  50% {
    background-size: 100%;
  }
}
.to-top {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  background: var(--color-white);
  border-radius: 14px;
  padding: var(--space-xxxs) var(--space-sm);
  color: var(--color-accent);
  cursor: pointer;
  transform: translateY(200%);
  transition: transform 0.25s cubic-bezier(0.7, -0.2, 0.2, 1.5), color 0.25s ease-in-out;
  box-shadow: var(--shadow-md);
  z-index: 20;
}
.to-top:hover {
  color: var(--color-accent-dark);
}

.scrolled .to-top {
  transform: translateY(0);
}

.expandable-list {
  width: 100%;
}
.expandable-list__title {
  margin: 0 0 var(--space-md) 0;
  color: var(--color-grey-dark);
}
.expandable-list__items {
  margin: 0;
  padding: 0 0 0 var(--space-lg);
}
.expandable-list__items li {
  margin-bottom: var(--space-xs);
  color: var(--color-grey-600);
}
.expandable-list__items.is-scrollable {
  overflow-y: auto;
  padding-right: var(--space-sm);
}
.expandable-list__toggle {
  margin-top: var(--space-sm);
  padding: 0;
  background: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-link);
  font-weight: var(--font-medium);
  cursor: pointer;
}
.expandable-list__toggle:hover {
  color: var(--color-link-hover);
}
.expandable-list__icon {
  display: inline-block;
  transition: transform 0.2s ease;
}
.expandable-list.is-open .expandable-list__icon {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .expandable-list__items {
    max-height: none !important;
    overflow: visible !important;
  }
}

.contact-card {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: #f5f7f8;
  border: 1px solid #d9e0e3;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.contact-card__intro {
  margin-bottom: var(--space-xl);
}
.contact-card__intro h2 {
  margin: 0 0 var(--space-sm) 0;
  color: var(--color-grey-dark);
}
.contact-card__intro p {
  margin: 0;
  color: var(--color-grey-600);
}
.contact-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
@media (max-width: 767px) {
  .contact-card__details {
    grid-template-columns: 1fr;
  }
}
.contact-card__item {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #dde3e6;
  border-radius: var(--radius-sm);
}
.contact-card__item p {
  margin: 0;
}
.contact-card__item strong,
.contact-card__item span,
.contact-card__item a {
  display: block;
}
.contact-card__item a {
  color: var(--color-link);
  text-decoration: none;
}
.contact-card__item a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}
.contact-card__label {
  margin-bottom: var(--space-xxs);
  color: var(--color-grey-600);
  font-size: 0.85rem;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-card__note {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-grey-200);
}
.contact-card__note p {
  margin: 0;
  color: var(--color-grey-600);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item__question {
  width: 100%;
  padding: var(--space-md);
  background: #f1f3f4;
  border: 1px solid #d7dde0;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  text-align: left;
  cursor: pointer;
  color: var(--color-grey-dark);
  font-weight: var(--font-bold);
}
.faq-item__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}
.faq-item__answer {
  margin-top: var(--space-xs);
  padding: var(--space-md);
  background: #f3f7fa;
  border: 1px solid #d7e2ea;
  border-radius: var(--radius-sm);
  color: var(--color-grey-600);
}
.faq-item__answer p {
  margin: 0 0 var(--space-sm) 0;
}
.faq-item__answer p:last-child {
  margin-bottom: 0;
}
.faq-item.is-open .faq-item__question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.section-intro {
  position: relative;
  min-height: 400px;
  padding: var(--space-lg) 0 0 0;
}
@media (min-width: 769px) {
  .section-intro {
    padding: var(--space-xxl) 0 0 0;
  }
}
.section-intro .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
@media (min-width: 769px) {
  .section-intro .container {
    flex-direction: row;
  }
}
.section-intro-text {
  position: relative;
  padding: var(--space-lg) 0 var(--space-lg) 0;
  animation-name: text;
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
  text-align: center;
}
@media (min-width: 769px) {
  .section-intro-text {
    padding: 0 var(--space-lg) 0 0;
    min-width: 420px;
    text-align: initial;
  }
}
.section-intro-text h1 {
  font-weight: var(--font-regular);
}
.section-intro-text h1 + p {
  margin: var(--space-xs) 0 0 0;
}
.section-intro-text p {
  z-index: 1;
}
.section-intro-text ul {
  text-align: left;
}
.section-intro-image-grid {
  display: flex;
}
.section-intro-image-grid .section-intro-image-left,
.section-intro-image-grid .section-intro-image-right {
  height: 368px;
  display: flex;
  align-items: flex-end;
}
.section-intro-image-grid .section-intro-image-left {
  width: 246px;
  background-color: #96CCEA;
  animation-name: section-intro-image-left;
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
}
.section-intro-image-grid .section-intro-image-right {
  width: 292px;
  background-color: #DBAEE7;
  margin: 0 0 0 20px;
  animation-name: section-intro-image-right;
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
}

@keyframes text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes section-intro-image-left {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes section-intro-image-right {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.options {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-gap: var(--space-md) 0;
}
@media (min-width: 769px) {
  .options {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 0 var(--space-md);
  }
}
.options .option {
  text-align: center;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}
.options .option-header {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-purple-dark);
  border-radius: var(--radius) var(--radius) 0 0;
}
.options .option-header h5 {
  color: var(--color-white);
}
.options .option-header p {
  color: var(--color-white-transparent);
}
.options .option-body {
  padding: var(--space-lg) var(--space-md);
}

.legal-page {
  max-width: 1000px;
  margin: 0 auto;
}
.legal-page h1 {
  margin-bottom: var(--space-lg);
  color: var(--color-grey-dark);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
}
@media (max-width: 767px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.legal-group h2 {
  margin: 0 0 var(--space-xs) 0;
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-grey-200);
  color: var(--color-grey-dark);
}
.legal-group p {
  margin: 0 0 var(--space-md) 0;
  color: var(--color-grey-600);
  line-height: 1.7;
}
.legal-group p:last-child {
  margin-bottom: 0;
}
.legal-group a {
  color: var(--color-link);
  text-decoration: none;
}
.legal-group a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

.legal-note {
  margin-top: var(--space-xxl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-grey-200);
}
.legal-note p {
  margin: 0;
  color: var(--color-grey-600);
}
