html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

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

html {
  font-family: var(--font-main);
  font-size: 85%;
}

body {
  min-width: 320px;
  background-color: var(--color-base);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: var(--size-base);
  font-weight: 400;
  line-height: var(--line-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

sup {
  font-size: 0.75em;
  vertical-align: super;
  text-decoration: none;
}

sub {
  font-size: 0.75em;
  vertical-align: sub;
  text-decoration: none;
}

b, strong {
  font-weight: 500;
}

i, em {
  font-style: italic;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

h1, h2, h3, h4, h5, h6 {
  display: block;
  position: relative;
  margin: 0 0 var(--gap-heading);
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: var(--size-h1);
  line-height: var(--line-h1);
}

h2 {
  font-size: var(--size-h2);
  line-height: var(--line-h2);
}

h3 {
  font-size: var(--size-h3);
  line-height: var(--line-h3);
}

h4 {
  font-size: var(--size-h4);
  line-height: var(--line-h4);
}

h5 {
  font-size: var(--size-h5);
  line-height: var(--line-h5);
}

h6 {
  font-size: var(--size-h6);
  line-height: var(--line-h6);
}

p {
  margin: 0 0 var(--gap-content);
}

a {
  color: currentColor;
  text-decoration: none;
  transition: color 0.2s;
}
a img {
  transition: opacity 0.2s;
}
@media (hover: hover) {
  a:hover {
    text-decoration: none;
  }
  a:hover img {
    opacity: 0.9;
  }
}

button {
  padding: 0;
  border: none;
  background: none;
  color: currentColor;
  font-family: var(--font-main);
  font-size: var(--size-base);
  transition: 0.2s;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

input, select, textarea {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: calc(0.5 * var(--height-field) - 0.5 * var(--line-field) - 1px) var(--gap-field);
  margin: 0;
  border: 1px solid var(--field-border);
  border-radius: var(--radius-small);
  background: var(--field-base);
  color: var(--field-text);
  font-family: var(--font-main);
  font-size: var(--size-field);
  font-weight: 400;
  line-height: var(--line-field);
  transition: 0.2s;
  z-index: 2;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--color-muted);
}
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--color-muted);
}
input:focus, input:active, select:focus, select:active, textarea:focus, textarea:active {
  border-color: var(--field-border-active);
  outline: none;
  background-color: var(--field-base-active);
  color: var(--field-text-active);
}
input:disabled, select:disabled, textarea:disabled {
  border-color: var(--field-border-disabled);
  outline: none;
  background-color: var(--field-base-disabled);
  color: var(--field-text-disabled);
}

textarea {
  overflow: auto;
  height: 120px;
  resize: vertical;
}

select {
  padding-right: 30px;
  background: var(--field-base) url(../images/ico_select.svg) right calc(0.5 * var(--line-field) - 1px) top 50% no-repeat;
}
select::-ms-expand {
  display: none;
}

input[type=checkbox], input[type=radio] {
  display: inline-block;
  position: relative;
  top: 0;
  flex-grow: 0;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  margin: 0 0.375rem 0 0;
  border: 1px solid var(--field-border);
  border-radius: var(--radius-small);
  background: var(--field-base) 55% 50% no-repeat;
  vertical-align: middle;
  visibility: visible;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=checkbox]:focus, input[type=checkbox]:active, input[type=radio]:focus, input[type=radio]:active {
  border-color: var(--field-border-active);
}
input[type=checkbox]:checked, input[type=radio]:checked {
  border-color: var(--field-border-active);
  background-color: var(--field-border-active);
  background-image: url(../images/ico_check.svg);
  color: var(--field-text-active);
}

input[type=radio] {
  border-radius: 50%;
}
input[type=radio]:checked {
  background-image: none;
  box-shadow: 0 0 0 5px var(--field-base) inset;
}

html {
  word-break: break-word;
  hyphens: auto;
  scroll-behavior: smooth;
  --wp-admin--admin-bar--height: 0px !important;
}
html.bp-lock {
  overflow: auto;
}
html.bp-lock body {
  overflow: unset;
  touch-action: none;
}

body.is_locked {
  overflow: hidden;
  padding-right: var(--width-scrollbar);
  touch-action: none;
}

.admin-bar {
  --height-bar: 32px;
}
@media (max-width: 48.875rem) {
  .admin-bar {
    --height-bar: 46px;
  }
}
@media (max-width: 37.5rem) {
  .admin-bar {
    --height-bar: 0px;
  }
  .admin-bar #wpadminbar {
    display: none;
  }
}

#site {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 100dvh;
  padding-top: var(--height-bar);
}
#site > main {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  align-items: stretch;
  width: 100%;
}

.fixed {
  position: relative;
  width: 100%;
  max-width: var(--width-fixed);
  margin: 0 auto;
}
.fixed .fixed {
  padding: 0;
}

.tw {
  --gap-section: 40px;
  --gap-section-side: rem(80);
}
.tw > section:first-child:not(.box_no_top) {
  --gap-section-top: var(--gap-section);
}
.tw > section:last-child:not(.box_no_bottom) {
  --gap-section-bottom: var(--gap-section);
}
.tw iframe {
  max-height: 1000px;
}

section {
  position: relative;
  overflow-x: clip;
  background-color: var(--color-section);
  color: var(--color-text);
  scroll-margin-top: calc(var(--offset-scroll) + var(--gap-section) - var(--gap-section-top));
  --gap-section-top: 0px;
  --gap-section-bottom: var(--gap-section);
}
section:first-of-type {
  --gap-section-top: var(--gap-section);
}
section section {
  padding-right: 0;
  padding-left: 0;
}
section:where(.box_dark, .box_light) {
  --gap-section-top: var(--gap-section);
}
section:where(.box_dark, .box_light) + section:where(:not(.box_top_half, .box_no_top)) {
  --gap-section-top: var(--gap-section);
}

.box_light {
  --color-section: var(--theme-background);
  --color-background: var(--theme-white);
}
.box_dark {
  color: var(--theme-white);
  --color-base: var(--theme-black);
  --color-section: #1a003e;
  --color-background: var(--theme-text);
  --color-text: rgb(from var(--theme-white) r g b / 90%);
  --color-muted: rgb(from var(--theme-white) r g b / 80%);
  --color-heading: var(--theme-white);
  --color-border: rgb(from var(--theme-white) r g b / 10%);
  --color-field: rgb(from var(--theme-white) r g b / 10%);
  --color-icon: var(--theme-white);
}
.box_top {
  --gap-section-top: var(--gap-section);
}
.box_top_half {
  --gap-section-top: calc(0.5 * var(--gap-section));
}
.box_bottom {
  --gap-section-bottom: var(--gap-section);
}
.box_bottom_half {
  --gap-section-bottom: calc(0.5 * var(--gap-section));
}
.box_no_top {
  --gap-section-top: 0px;
}
.box_no_bottom {
  --gap-section-bottom: 0px;
}
.box_border {
  border-bottom: 1px solid var(--color-border);
}
.box_border + section {
  --gap-section-top: var(--gap-section);
}

.button {
  display: inline-flex;
  position: relative;
  align-items: center;
  align-content: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto;
  height: auto;
  min-height: var(--height-button);
  padding: 0 var(--gap-button);
  margin: 0;
  border: 1px solid var(--button-border);
  border-radius: var(--radius-small);
  background: var(--button-base) 50% 50% no-repeat;
  background-size: 1.1875rem 1.1875rem;
  color: var(--button-text);
  font-family: var(--font-main);
  font-size: var(--size-button);
  font-weight: 500;
  line-height: var(--line-button);
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  z-index: 2;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  gap: 0.5rem;
}
@media (hover: hover) {
  .button:hover {
    border-color: var(--button-border-active);
    background-color: var(--button-base-active);
    color: var(--button-text-active);
  }
}

.button_white {
  --button-border: var(--theme-border);
  --button-base: var(--theme-white);
  --button-text: var(--theme-heading);
  --button-border-active: var(--color-primary);
  --button-base-active: var(--color-primary);
  --button-text-active: var(--color-primary-text);
}

.button_black {
  --button-border: var(--theme-black);
  --button-base: var(--theme-black);
  --button-text: var(--theme-white);
  --button-border-active: var(--color-primary);
  --button-base-active: var(--color-primary);
  --button-text-active: var(--color-primary-text);
}

.button_secondary {
  --button-border: var(--color-secondary);
  --button-base: var(--color-secondary);
  --button-text: var(--color-secondary-text);
  --button-border-active: var(--color-primary);
  --button-base-active: var(--color-primary);
  --button-text-active: var(--color-primary-text);
}

.button_tertiary {
  --button-border: var(--color-tertiary);
  --button-base: var(--color-tertiary);
  --button-text: var(--color-tertiary-text);
  --button-border-active: var(--color-primary);
  --button-base-active: var(--color-primary);
  --button-text-active: var(--color-primary-text);
}

.button_outline {
  --button-border: var(--color-heading);
  --button-base: var(--color-base);
  --button-text: var(--color-heading);
  --button-border-active: var(--color-primary);
  --button-base-active: var(--color-primary-text);
  --button-text-active: var(--color-primary);
}

.button:disabled {
  --button-base: var(--color-background);
  --button-text: var(--color-muted);
  --button-border: var(--color-border);
  --button-border-active: var(--color-border);
  --button-base-active: var(--color-background);
  --button-text-active: var(--color-muted);
}

.buttons {
  display: block;
  margin: 0 calc(-1 * var(--gap-buttons-x)) var(--gap-buttons-y) 0;
  font-size: 0;
  line-height: 0;
}
.buttons:last-child {
  margin-bottom: calc(-1 * var(--gap-buttons-y));
}
.buttons .button {
  flex-basis: auto;
  flex-grow: 1;
  margin: 0 var(--gap-buttons-x) var(--gap-buttons-y) 0;
}

.contents {
  max-width: var(--width-contents);
  margin: 0 auto var(--gap-contents);
  text-align: center;
}
.contents:last-child {
  margin-bottom: 0;
}
.contents .content {
  display: inline-block;
  max-width: var(--width-content);
}

.content {
  display: block;
  position: relative;
  margin: -5px 0 calc(var(--gap-contents) - 5px);
  color: var(--color-text);
  font-size: var(--size-content);
  font-weight: 300;
  line-height: var(--line-content);
}
.content:last-child {
  margin-bottom: 0;
}
.content:after {
  display: table;
  content: "";
  clear: both;
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  margin-top: var(--gap-content);
}
.content h1:first-child, .content h2:first-child, .content h3:first-child, .content h4:first-child, .content h5:first-child, .content h6:first-child {
  margin-top: 0;
}
.content p, .content > table, .content ul, .content ol, .content .table {
  margin-bottom: var(--gap-content);
}
.content p:last-child, .content > table:last-child, .content ul:last-child, .content ol:last-child, .content .table:last-child {
  margin-bottom: 0;
}
.content a:not(.button) {
  color: var(--color-link);
  text-decoration: underline;
}
@media (hover: hover) {
  .content a:not(.button):hover {
    text-decoration: none;
  }
}
.content ul, .content ol {
  display: block;
}
.content ul ul, .content ul ol, .content ol ul, .content ol ol {
  padding-top: var(--gap-list);
}
.content ul li, .content ol li {
  display: block;
  position: relative;
  padding: 0 0 0 1.333em;
  margin-bottom: var(--gap-list);
  --gap-content: var(--gap-list);
}
.content ul li:last-child, .content ol li:last-child {
  margin-bottom: 0;
}
.content ul > li:before {
  content: "";
  position: absolute;
  top: calc(0.75 * var(--size-content) - 3px);
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.content ol {
  counter-reset: list;
}
.content ol > li {
  counter-increment: list;
}
.content ol > li:before {
  content: counter(list) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
}
.content img {
  max-width: 100%;
  height: auto;
  margin-inline: 5px 0;
}
.content iframe {
  max-width: 100%;
}
.content table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
}
.content thead {
  background-color: var(--color-background);
}
.content tbody tr:nth-child(2n) {
  background-color: var(--color-background);
}
.content td, .content th {
  padding: var(--gap-table-y) var(--gap-table-x);
  border-bottom: 1px solid var(--color-border);
}
.content th {
  font-weight: 500;
  text-align: left;
}
.content hr {
  height: 1px;
  margin: calc(var(--gap-content) + 5px) 0;
  border-width: 0;
  background-color: var(--color-border);
}
.content hr:first-child {
  margin-top: 0;
}
.content hr:last-child {
  margin-bottom: 0;
}
.content blockquote {
  display: block;
  padding: 10px 0 10px var(--gap-content);
  margin: 0 0 var(--gap-content);
  border-left: 3px solid var(--color-primary);
  font-size: var(--size-large);
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
}
.content blockquote:last-child {
  margin-bottom: 0;
}
.content .alignleft {
  float: left;
  margin: 0 var(--gap-content) var(--gap-content) 0;
}
.content .alignright {
  float: right;
  margin: 0 0 var(--gap-content) var(--gap-content);
}
.content .alignnone {
  height: auto;
  margin: 0 0 var(--gap-content);
}
.content .aligncenter {
  display: block;
  max-width: 100%;
  margin: 0 auto var(--gap-content);
}
.content p:not(:first-child) img {
  margin-top: 5px;
}
.content p:not(:last-child) img {
  margin-bottom: 5px;
}
.content > table, .content .table {
  margin: calc(var(--gap-content) + 5px) 0;
  overflow: auto;
}
.content > table:first-child, .content .table:first-child {
  margin-top: 0;
}
.content > table:last-child, .content .table:last-child {
  margin-bottom: 0;
}
@media (max-width: 48rem) {
  .content .alignright, .content .alignleft {
    display: block;
    float: none;
    margin: 0 0 var(--gap-content);
    text-align: center;
  }
}

.screen-reader-text, .sr-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal;
}

.items {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  width: calc(100% + var(--gap-grid-x));
  margin: 0 calc(-1 * var(--gap-grid-x)) calc(-1 * var(--gap-grid-y)) 0;
  z-index: 2;
}

.items .item {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  width: calc(var(--width-item) - var(--gap-grid-x));
  margin: 0 var(--gap-grid-x) var(--gap-grid-y) 0;
}

.button.is_hidden {
  display: none;
}
.button.is_loading, .button.is_loading:hover {
  border-color: var(--color-border);
  background-color: transparent;
  background-image: url(../images/ico_loading.svg);
  color: transparent;
}

body.is_scrolled {
  padding-top: 4rem;
}

h1 + .buttons, h2 + .buttons, h3 + .buttons {
  padding-top: 5px;
}
.items + .buttons, .contents + .buttons {
  text-align: center;
}
.items + .buttons:has(.button:not(.is_hidden)) {
  margin-top: var(--gap-contents);
}

.fixed:has(> .contents.is_split), .fixed:has(> .contents.is_heading) {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.contents.is_split:has(.buttons) {
  display: contents;
}
.contents.is_split:has(.buttons) > :not(.buttons) {
  margin-right: inherit;
  margin-left: inherit;
  text-align: inherit;
}
.contents.is_split > .buttons {
  order: 10;
  margin-top: var(--gap-contents);
}
.contents.is_split > :has(+ .buttons) {
  margin-bottom: var(--gap-contents);
}
.contents.is_heading {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}
.contents.is_heading:has(.buttons) {
  display: grid;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  grid-template-columns: 1fr max-content;
  gap: 0 20px;
}
.contents.is_heading:has(.buttons) > :not(.buttons) {
  max-width: var(--width-contents);
  grid-column-start: 1;
}
.contents.is_heading > .buttons {
  grid-column-start: 2;
}
.contents.is_heading > :has(+ .buttons) {
  margin-bottom: 0;
}
@media (max-width: 64rem) {
  .contents.is_heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  .contents.is_heading:has(.buttons) {
    display: contents;
    gap: 0;
  }
  .contents.is_heading:has(.buttons) > :not(.buttons) {
    max-width: none;
    margin-right: inherit;
    margin-left: inherit;
    text-align: inherit;
  }
  .contents.is_heading > .buttons {
    order: 10;
    margin-top: var(--gap-contents);
  }
  .contents.is_heading > :has(+ .buttons) {
    max-width: none;
    margin-bottom: var(--gap-contents);
  }
}

.content > [class^=wp-block-]:not([class*=menzel]):not(:has(.menzel-custom-map-wrapper)), .content > [class*=" wp-block-"]:not([class*=menzel]):not(:has(.menzel-custom-map-wrapper)) {
  margin: 0 auto;
  max-width: 95rem;
  min-height: 1rem;
}
.content .wp-block-contact-form-7-contact-form-selector {
  max-width: 100%;
}
.content .wp-block-contact-form-7-contact-form-selector form {
  margin: 0 auto;
  max-width: 95rem;
}
.content > .wp-block-heading {
  margin-top: 3rem !important;
}
.content .wp-block-paragraph, .content ul li {
  color: #214085;
  font-size: 1.5rem;
}

.items.carousel {
  flex-wrap: nowrap;
}
@media (min-width: 64rem) {
  .items_1 {
    --width-item: 100%;
  }
  .items_2 {
    --width-item: 50%;
  }
  .items_3 {
    --width-item: 33.33333%;
  }
  .items_4, .items_5, .items_6 {
    --width-item: 25%;
  }
}
@media (min-width: 100rem) {
  .items_5 {
    --width-item: 20%;
  }
  .items_6 {
    --width-item: 16.66666%;
  }
}

.embla {
  display: block;
  position: relative;
}
.embla_horizontal .embla_container {
  overflow: visible;
  --gap-grid-y: 0px;
}
.embla_vertical .embla_viewport {
  height: 100%;
}
.embla_vertical .embla_container {
  overflow: visible;
  height: calc(100% + var(--gap-grid-y));
  margin-bottom: calc(-1 * var(--gap-grid-y));
  --gap-grid-x: 0px;
}
.embla_vertical .embla_button {
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 30px;
  margin: 0;
}
.embla_vertical .embla_button:before {
  transform: rotate(90deg);
}
.embla_vertical .embla_prev {
  top: 0;
  bottom: auto;
}
.embla_vertical .embla_prev:before {
  transform: rotate(-90deg);
}
.embla_vertical .embla_dots {
  flex-direction: column;
}
.embla_viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  z-index: 1;
}
.embla_viewport.is_right .embla_container {
  left: calc(-1 * var(--gap-grid-x));
}
.embla_viewport.is_center .embla_container {
  left: calc(-0.5 * var(--gap-grid-x));
}
.embla_viewport.is_bottom {
  top: calc(-1 * var(--gap-grid-y));
}
.embla_viewport.is_middle {
  top: calc(-0.5 * var(--gap-grid-y));
}
.embla_dynamic .embla_container {
  justify-content: flex-start !important;
}
.embla_button {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: var(--height-button);
  height: var(--height-button);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-regular);
  background-color: var(--color-background);
  color: var(--color-heading);
  transition: 0.2s;
  cursor: pointer;
  z-index: 5;
  --height-button: 2.5rem;
}
.embla_button:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.75rem;
  margin: -0.375rem 0 0 -0.25rem;
  background-color: currentColor;
  -webkit-mask: url(../images/ico_arrow.svg) 50% 50% no-repeat;
}
@media (hover: hover) {
  .embla_button:hover {
    border-color: var(--button-border-active);
    background-color: var(--button-base-active);
    color: var(--button-text-active);
  }
}
.embla_button:disabled {
  border-color: var(--button-border-disabled);
  background-color: var(--button-base-disabled);
  color: var(--button-text-disabled);
  cursor: default;
}
.embla_prev {
  right: auto;
  left: 0;
}
.embla_prev:before {
  transform: scaleX(-1);
}
.embla_dots {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: var(--height-button);
  margin: var(--gap-grid-y) calc(var(--height-button) + 8px) 0;
  z-index: 3;
  --height-button: 2.5rem;
}
.embla_dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  color: var(--color-border);
  transition: 0.2s;
  cursor: pointer;
}
.embla_dot[class*=is_] {
  width: 1.5rem;
  height: 1.5rem;
}
.embla_dot:before {
  content: "";
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: currentColor;
  transition: 0.2s;
  transform: scale(0);
}
.embla_dot.is_last:before, .embla_dot.is_first:before {
  transform: scale(0.333);
}
.embla_dot.is_prev:before, .embla_dot.is_next:before {
  transform: scale(0.666);
}
.embla_dot.is_current:before {
  background-color: var(--color-primary);
  transform: scale(1);
}
@media (hover: hover) {
  .embla_dot:hover {
    color: var(--button-base-active);
  }
}

.skip-link {
  position: fixed;
  top: var(--height-bar);
  left: 0;
  width: auto;
  padding: 5px 15px;
  border-radius: 0;
  background: var(--color-primary);
  color: var(--color-primary-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  transform: translateX(-100%);
  opacity: 0;
  z-index: 25;
}
.skip-link:focus {
  transform: translateX(0%);
  opacity: 1;
}

.gradient-divider {
  width: 100%;
  height: 14.5px;
  background: linear-gradient(90deg, #46b7d8 0%, #d35bb7 100%);
  z-index: 100;
}
/*# sourceMappingURL=base.css.map */
